blob: 24b0706e2f92f3b873bbd7885099f3fdb973ea7e [file] [log] [blame]
Willy Tarreau91861262007-10-17 17:06:05 +02001/*
2 * Functions dedicated to statistics output
3 *
Willy Tarreaua206fa92009-01-25 14:02:00 +01004 * Copyright 2000-2009 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 Tarreaua206fa92009-01-25 14:02:00 +010047#include <proto/pipe.h>
Willy Tarreaufbee7132007-10-18 13:53:22 +020048#include <proto/proto_uxst.h>
Willy Tarreau89a63132009-08-16 17:41:45 +020049#include <proto/proxy.h>
Willy Tarreau91861262007-10-17 17:06:05 +020050#include <proto/session.h>
Krzysztof Oledzki85130942007-10-22 16:21:10 +020051#include <proto/server.h>
Willy Tarreaudded32d2008-11-30 19:48:07 +010052#include <proto/stream_interface.h>
Willy Tarreau4726f532009-03-07 17:25:21 +010053#include <proto/task.h>
Willy Tarreau91861262007-10-17 17:06:05 +020054
Willy Tarreau5ca791d2009-08-16 19:06:42 +020055const char stats_sock_usage_msg[] =
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +020056 "Unknown command. Please enter one of the following commands only :\n"
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +020057 " clear counters : clear max statistics counters (add 'all' for all counters)\n"
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +020058 " help : this message\n"
59 " prompt : toggle interactive mode with prompt\n"
60 " quit : disconnect\n"
61 " show info : report information about the running process\n"
62 " show stat : report counters for each proxy and server\n"
63 " show errors : report last request and response errors for each proxy\n"
64 " show sess : report the list of current sessions\n"
Willy Tarreau38338fa2009-10-10 18:37:29 +020065 " get weight : report a server's current weight\n"
Willy Tarreau4483d432009-10-10 19:30:08 +020066 " set weight : change a server's weight\n"
Willy Tarreau7aabd112010-01-26 10:59:06 +010067 " set timeout : change a timeout setting\n"
Willy Tarreau9a42c0d2009-09-22 19:31:03 +020068 "";
Willy Tarreau5ca791d2009-08-16 19:06:42 +020069
Willy Tarreau6162db22009-10-10 17:13:00 +020070const char stats_permission_denied_msg[] =
71 "Permission denied\n"
72 "";
73
Willy Tarreaufbee7132007-10-18 13:53:22 +020074/* This function parses a "stats" statement in the "global" section. It returns
75 * -1 if there is any error, otherwise zero. If it returns -1, it may write an
76 * error message into ther <err> buffer, for at most <errlen> bytes, trailing
77 * zero included. The trailing '\n' must not be written. The function must be
78 * called with <args> pointing to the first word after "stats".
79 */
Willy Tarreau10522fd2008-07-09 20:12:41 +020080static int stats_parse_global(char **args, int section_type, struct proxy *curpx,
81 struct proxy *defpx, char *err, int errlen)
Willy Tarreaufbee7132007-10-18 13:53:22 +020082{
Willy Tarreau10522fd2008-07-09 20:12:41 +020083 args++;
Willy Tarreaufbee7132007-10-18 13:53:22 +020084 if (!strcmp(args[0], "socket")) {
85 struct sockaddr_un su;
86 int cur_arg;
87
88 if (*args[1] == 0) {
89 snprintf(err, errlen, "'stats socket' in global section expects a path to a UNIX socket");
90 return -1;
91 }
92
93 if (global.stats_sock.state != LI_NEW) {
94 snprintf(err, errlen, "'stats socket' already specified in global section");
95 return -1;
96 }
97
98 su.sun_family = AF_UNIX;
99 strncpy(su.sun_path, args[1], sizeof(su.sun_path));
100 su.sun_path[sizeof(su.sun_path) - 1] = 0;
101 memcpy(&global.stats_sock.addr, &su, sizeof(su)); // guaranteed to fit
102
Willy Tarreau89a63132009-08-16 17:41:45 +0200103 if (!global.stats_fe) {
104 if ((global.stats_fe = (struct proxy *)calloc(1, sizeof(struct proxy))) == NULL) {
105 snprintf(err, errlen, "out of memory");
106 return -1;
107 }
108
109 LIST_INIT(&global.stats_fe->pendconns);
110 LIST_INIT(&global.stats_fe->acl);
111 LIST_INIT(&global.stats_fe->block_cond);
112 LIST_INIT(&global.stats_fe->redirect_rules);
113 LIST_INIT(&global.stats_fe->mon_fail_cond);
114 LIST_INIT(&global.stats_fe->switching_rules);
115 LIST_INIT(&global.stats_fe->tcp_req.inspect_rules);
116
117 /* Timeouts are defined as -1, so we cannot use the zeroed area
118 * as a default value.
119 */
120 proxy_reset_timeouts(global.stats_fe);
121
122 global.stats_fe->last_change = now.tv_sec;
123 global.stats_fe->id = strdup("GLOBAL");
124 global.stats_fe->cap = PR_CAP_FE;
125 }
126
Willy Tarreaufbee7132007-10-18 13:53:22 +0200127 global.stats_sock.state = LI_INIT;
Willy Tarreau6fb42e02007-10-28 17:02:33 +0100128 global.stats_sock.options = LI_O_NONE;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200129 global.stats_sock.accept = uxst_event_accept;
Willy Tarreau104eb362009-08-16 18:51:29 +0200130 global.stats_sock.handler = process_session;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200131 global.stats_sock.analysers = 0;
Willy Tarreau2c9f5b12009-08-16 19:12:36 +0200132 global.stats_sock.nice = -64; /* we want to boost priority for local stats */
Willy Tarreau89a63132009-08-16 17:41:45 +0200133 global.stats_sock.private = global.stats_fe; /* must point to the frontend */
Willy Tarreau6162db22009-10-10 17:13:00 +0200134 global.stats_sock.perm.ux.level = ACCESS_LVL_OPER; /* default access level */
Willy Tarreau89a63132009-08-16 17:41:45 +0200135
136 global.stats_fe->timeout.client = MS_TO_TICKS(10000); /* default timeout of 10 seconds */
137 global.stats_sock.timeout = &global.stats_fe->timeout.client;
138
139 global.stats_sock.next = global.stats_fe->listen;
140 global.stats_fe->listen = &global.stats_sock;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200141
142 cur_arg = 2;
143 while (*args[cur_arg]) {
144 if (!strcmp(args[cur_arg], "uid")) {
145 global.stats_sock.perm.ux.uid = atol(args[cur_arg + 1]);
146 cur_arg += 2;
147 }
148 else if (!strcmp(args[cur_arg], "gid")) {
149 global.stats_sock.perm.ux.gid = atol(args[cur_arg + 1]);
150 cur_arg += 2;
151 }
152 else if (!strcmp(args[cur_arg], "mode")) {
153 global.stats_sock.perm.ux.mode = strtol(args[cur_arg + 1], NULL, 8);
154 cur_arg += 2;
155 }
156 else if (!strcmp(args[cur_arg], "user")) {
157 struct passwd *user;
158 user = getpwnam(args[cur_arg + 1]);
159 if (!user) {
160 snprintf(err, errlen, "unknown user '%s' in 'global' section ('stats user')",
161 args[cur_arg + 1]);
162 return -1;
163 }
164 global.stats_sock.perm.ux.uid = user->pw_uid;
165 cur_arg += 2;
166 }
167 else if (!strcmp(args[cur_arg], "group")) {
168 struct group *group;
169 group = getgrnam(args[cur_arg + 1]);
170 if (!group) {
171 snprintf(err, errlen, "unknown group '%s' in 'global' section ('stats group')",
172 args[cur_arg + 1]);
173 return -1;
174 }
175 global.stats_sock.perm.ux.gid = group->gr_gid;
176 cur_arg += 2;
177 }
Willy Tarreau6162db22009-10-10 17:13:00 +0200178 else if (!strcmp(args[cur_arg], "level")) {
179 if (!strcmp(args[cur_arg+1], "user"))
180 global.stats_sock.perm.ux.level = ACCESS_LVL_USER;
181 else if (!strcmp(args[cur_arg+1], "operator"))
182 global.stats_sock.perm.ux.level = ACCESS_LVL_OPER;
183 else if (!strcmp(args[cur_arg+1], "admin"))
184 global.stats_sock.perm.ux.level = ACCESS_LVL_ADMIN;
185 else {
186 snprintf(err, errlen, "'stats socket level' only supports 'user', 'operator', and 'admin'");
187 return -1;
188 }
189 cur_arg += 2;
190 }
Willy Tarreaufbee7132007-10-18 13:53:22 +0200191 else {
Willy Tarreau6162db22009-10-10 17:13:00 +0200192 snprintf(err, errlen, "'stats socket' only supports 'user', 'uid', 'group', 'gid', 'level', and 'mode'");
Willy Tarreaufbee7132007-10-18 13:53:22 +0200193 return -1;
194 }
195 }
Willy Tarreaub1356cf2008-12-07 16:06:43 +0100196
Willy Tarreaufbee7132007-10-18 13:53:22 +0200197 uxst_add_listener(&global.stats_sock);
198 global.maxsock++;
199 }
200 else if (!strcmp(args[0], "timeout")) {
Willy Tarreaub3f32f52007-12-02 22:15:14 +0100201 unsigned timeout;
202 const char *res = parse_time_err(args[1], &timeout, TIME_UNIT_MS);
203
204 if (res) {
205 snprintf(err, errlen, "unexpected character '%c' in 'stats timeout' in 'global' section", *res);
206 return -1;
207 }
Willy Tarreaufbee7132007-10-18 13:53:22 +0200208
Willy Tarreaub3f32f52007-12-02 22:15:14 +0100209 if (!timeout) {
Willy Tarreaufbee7132007-10-18 13:53:22 +0200210 snprintf(err, errlen, "a positive value is expected for 'stats timeout' in 'global section'");
211 return -1;
212 }
Willy Tarreau89a63132009-08-16 17:41:45 +0200213 global.stats_fe->timeout.client = MS_TO_TICKS(timeout);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200214 }
215 else if (!strcmp(args[0], "maxconn")) {
216 int maxconn = atol(args[1]);
217
218 if (maxconn <= 0) {
219 snprintf(err, errlen, "a positive value is expected for 'stats maxconn' in 'global section'");
220 return -1;
221 }
222 global.maxsock -= global.stats_sock.maxconn;
223 global.stats_sock.maxconn = maxconn;
224 global.maxsock += global.stats_sock.maxconn;
225 }
226 else {
227 snprintf(err, errlen, "'stats' only supports 'socket', 'maxconn' and 'timeout' in 'global' section");
228 return -1;
229 }
230 return 0;
231}
232
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200233int print_csv_header(struct chunk *msg)
Willy Tarreau4bab24d2007-11-30 18:16:29 +0100234{
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200235 return chunk_printf(msg,
Willy Tarreau4bab24d2007-11-30 18:16:29 +0100236 "# pxname,svname,"
237 "qcur,qmax,"
238 "scur,smax,slim,stot,"
239 "bin,bout,"
240 "dreq,dresp,"
241 "ereq,econ,eresp,"
242 "wretr,wredis,"
243 "status,weight,act,bck,"
244 "chkfail,chkdown,lastchg,downtime,qlimit,"
Willy Tarreau8f208ec2009-05-10 19:01:49 +0200245 "pid,iid,sid,throttle,lbtot,tracked,type,"
246 "rate,rate_lim,rate_max,"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200247 "check_status,check_code,check_duration,"
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100248 "hrsp_1xx,hrsp_2xx,hrsp_3xx,hrsp_4xx,hrsp_5xx,hrsp_other,hanafail,"
Willy Tarreau4bab24d2007-11-30 18:16:29 +0100249 "\n");
250}
251
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200252/* Processes the stats interpreter on the statistics socket. This function is
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200253 * called from an applet running in a stream interface. The function returns 1
254 * if the request was understood, otherwise zero. It sets si->st0 to a value
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200255 * designating the function which will have to process the request, which can
256 * also be the print function to display the return message set into cli.msg.
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200257 */
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200258int stats_sock_parse_request(struct stream_interface *si, char *line)
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200259{
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200260 struct session *s = si->private;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200261 char *args[MAX_STATS_ARGS + 1];
262 int arg;
263
264 while (isspace((unsigned char)*line))
265 line++;
266
267 arg = 0;
268 args[arg] = line;
269
270 while (*line && arg < MAX_STATS_ARGS) {
271 if (isspace((unsigned char)*line)) {
272 *line++ = '\0';
273
274 while (isspace((unsigned char)*line))
275 line++;
276
277 args[++arg] = line;
278 continue;
279 }
280
281 line++;
282 }
283
284 while (++arg <= MAX_STATS_ARGS)
285 args[arg] = line;
286
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200287 s->data_ctx.stats.flags = 0;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200288 if (strcmp(args[0], "show") == 0) {
289 if (strcmp(args[1], "stat") == 0) {
290 if (*args[2] && *args[3] && *args[4]) {
291 s->data_ctx.stats.flags |= STAT_BOUND;
292 s->data_ctx.stats.iid = atoi(args[2]);
293 s->data_ctx.stats.type = atoi(args[3]);
294 s->data_ctx.stats.sid = atoi(args[4]);
295 }
296
297 s->data_ctx.stats.flags |= STAT_SHOW_STAT;
298 s->data_ctx.stats.flags |= STAT_FMT_CSV;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200299 s->data_state = DATA_ST_INIT;
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200300 si->st0 = STAT_CLI_O_INFO; // stats_dump_raw_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200301 }
302 else if (strcmp(args[1], "info") == 0) {
303 s->data_ctx.stats.flags |= STAT_SHOW_INFO;
304 s->data_ctx.stats.flags |= STAT_FMT_CSV;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200305 s->data_state = DATA_ST_INIT;
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200306 si->st0 = STAT_CLI_O_INFO; // stats_dump_raw_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200307 }
308 else if (strcmp(args[1], "sess") == 0) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200309 s->data_state = DATA_ST_INIT;
Willy Tarreau6162db22009-10-10 17:13:00 +0200310 if (s->listener->perm.ux.level < ACCESS_LVL_OPER) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200311 s->data_ctx.cli.msg = stats_permission_denied_msg;
312 si->st0 = STAT_CLI_PRINT;
Willy Tarreau6162db22009-10-10 17:13:00 +0200313 return 1;
314 }
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200315 si->st0 = STAT_CLI_O_SESS; // stats_dump_sess_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200316 }
317 else if (strcmp(args[1], "errors") == 0) {
Willy Tarreau6162db22009-10-10 17:13:00 +0200318 if (s->listener->perm.ux.level < ACCESS_LVL_OPER) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200319 s->data_ctx.cli.msg = stats_permission_denied_msg;
320 si->st0 = STAT_CLI_PRINT;
Willy Tarreau6162db22009-10-10 17:13:00 +0200321 return 1;
322 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200323 if (*args[2])
324 s->data_ctx.errors.iid = atoi(args[2]);
325 else
326 s->data_ctx.errors.iid = -1;
327 s->data_ctx.errors.px = NULL;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200328 s->data_state = DATA_ST_INIT;
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200329 si->st0 = STAT_CLI_O_ERR; // stats_dump_errors_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200330 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200331 else { /* neither "stat" nor "info" nor "sess" nor "errors"*/
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200332 return 0;
333 }
334 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200335 else if (strcmp(args[0], "clear") == 0) {
336 if (strcmp(args[1], "counters") == 0) {
337 struct proxy *px;
338 struct server *sv;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200339 struct listener *li;
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +0200340 int clrall = 0;
341
342 if (strcmp(args[2], "all") == 0)
343 clrall = 1;
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200344
Willy Tarreau6162db22009-10-10 17:13:00 +0200345 /* check permissions */
346 if (s->listener->perm.ux.level < ACCESS_LVL_OPER ||
347 (clrall && s->listener->perm.ux.level < ACCESS_LVL_ADMIN)) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200348 s->data_ctx.cli.msg = stats_permission_denied_msg;
349 si->st0 = STAT_CLI_PRINT;
Willy Tarreau6162db22009-10-10 17:13:00 +0200350 return 1;
351 }
352
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200353 for (px = proxy; px; px = px->next) {
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +0200354 if (clrall)
355 memset(&px->counters, 0, sizeof(px->counters));
356 else {
357 px->counters.feconn_max = 0;
358 px->counters.beconn_max = 0;
359 px->counters.fe_sps_max = 0;
360 px->counters.be_sps_max = 0;
361 px->counters.nbpend_max = 0;
362 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200363
364 for (sv = px->srv; sv; sv = sv->next)
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +0200365 if (clrall)
366 memset(&sv->counters, 0, sizeof(sv->counters));
367 else {
368 sv->counters.cur_sess_max = 0;
369 sv->counters.nbpend_max = 0;
370 sv->counters.sps_max = 0;
371 }
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200372
373 for (li = px->listen; li; li = li->next)
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +0200374 if (li->counters) {
375 if (clrall)
376 memset(li->counters, 0, sizeof(*li->counters));
377 else
378 li->counters->conn_max = 0;
379 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200380 }
381
382 return 1;
383 }
384 else {
385 return 0;
386 }
387 }
Willy Tarreau38338fa2009-10-10 18:37:29 +0200388 else if (strcmp(args[0], "get") == 0) {
389 if (strcmp(args[1], "weight") == 0) {
390 struct proxy *px;
391 struct server *sv;
392
393 /* split "backend/server" and make <line> point to server */
394 for (line = args[2]; *line; line++)
395 if (*line == '/') {
396 *line++ = '\0';
397 break;
398 }
399
400 if (!*line) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200401 s->data_ctx.cli.msg = "Require 'backend/server'.\n";
402 si->st0 = STAT_CLI_PRINT;
Willy Tarreau38338fa2009-10-10 18:37:29 +0200403 return 1;
404 }
405
406 if (!get_backend_server(args[2], line, &px, &sv)) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200407 s->data_ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
408 si->st0 = STAT_CLI_PRINT;
Willy Tarreau38338fa2009-10-10 18:37:29 +0200409 return 1;
410 }
411
412 /* return server's effective weight at the moment */
413 snprintf(trash, sizeof(trash), "%d (initial %d)\n", sv->uweight, sv->iweight);
414 buffer_feed(si->ib, trash);
415 return 1;
416 }
417 else { /* not "get weight" */
418 return 0;
419 }
420 }
Willy Tarreau4483d432009-10-10 19:30:08 +0200421 else if (strcmp(args[0], "set") == 0) {
422 if (strcmp(args[1], "weight") == 0) {
423 struct proxy *px;
424 struct server *sv;
425 int w;
426
427 if (s->listener->perm.ux.level < ACCESS_LVL_ADMIN) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200428 s->data_ctx.cli.msg = stats_permission_denied_msg;
429 si->st0 = STAT_CLI_PRINT;
Willy Tarreau4483d432009-10-10 19:30:08 +0200430 return 1;
431 }
432
433 /* split "backend/server" and make <line> point to server */
434 for (line = args[2]; *line; line++)
435 if (*line == '/') {
436 *line++ = '\0';
437 break;
438 }
439
440 if (!*line || !*args[3]) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200441 s->data_ctx.cli.msg = "Require 'backend/server' and 'weight' or 'weight%'.\n";
442 si->st0 = STAT_CLI_PRINT;
Willy Tarreau4483d432009-10-10 19:30:08 +0200443 return 1;
444 }
445
446 if (!get_backend_server(args[2], line, &px, &sv)) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200447 s->data_ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
448 si->st0 = STAT_CLI_PRINT;
Willy Tarreau4483d432009-10-10 19:30:08 +0200449 return 1;
450 }
451
452 /* if the weight is terminated with '%', it is set relative to
453 * the initial weight, otherwise it is absolute.
454 */
455 w = atoi(args[3]);
456 if (strchr(args[3], '%') != NULL) {
457 if (w < 0 || w > 100) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200458 s->data_ctx.cli.msg = "Relative weight can only be set between 0 and 100% inclusive.\n";
459 si->st0 = STAT_CLI_PRINT;
Willy Tarreau4483d432009-10-10 19:30:08 +0200460 return 1;
461 }
462 w = sv->iweight * w / 100;
463 }
464 else {
465 if (w < 0 || w > 256) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200466 s->data_ctx.cli.msg = "Absolute weight can only be between 0 and 256 inclusive.\n";
467 si->st0 = STAT_CLI_PRINT;
Willy Tarreau4483d432009-10-10 19:30:08 +0200468 return 1;
469 }
470 }
471
472 if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN)) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200473 s->data_ctx.cli.msg = "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n";
474 si->st0 = STAT_CLI_PRINT;
Willy Tarreau4483d432009-10-10 19:30:08 +0200475 return 1;
476 }
477
478 sv->uweight = w;
479
480 if (px->lbprm.algo & BE_LB_PROP_DYN) {
481 /* we must take care of not pushing the server to full throttle during slow starts */
482 if ((sv->state & SRV_WARMINGUP) && (px->lbprm.algo & BE_LB_PROP_DYN))
483 sv->eweight = (BE_WEIGHT_SCALE * (now.tv_sec - sv->last_change) + sv->slowstart - 1) / sv->slowstart;
484 else
485 sv->eweight = BE_WEIGHT_SCALE;
486 sv->eweight *= sv->uweight;
487 } else {
488 sv->eweight = sv->uweight;
489 }
490
491 /* static LB algorithms are a bit harder to update */
492 if (px->lbprm.update_server_eweight)
493 px->lbprm.update_server_eweight(sv);
494 else if (sv->eweight)
495 px->lbprm.set_server_status_up(sv);
496 else
497 px->lbprm.set_server_status_down(sv);
498
499 return 1;
500 }
Willy Tarreau7aabd112010-01-26 10:59:06 +0100501 else if (strcmp(args[1], "timeout") == 0) {
502 if (strcmp(args[2], "cli") == 0) {
503 unsigned timeout;
504 const char *res;
505
506 if (!*args[3]) {
507 s->data_ctx.cli.msg = "Expects an integer value.\n";
508 si->st0 = STAT_CLI_PRINT;
509 return 1;
510 }
511
512 res = parse_time_err(args[3], &timeout, TIME_UNIT_S);
513 if (res || timeout < 1) {
514 s->data_ctx.cli.msg = "Invalid timeout value.\n";
515 si->st0 = STAT_CLI_PRINT;
516 return 1;
517 }
518
519 s->req->rto = s->rep->wto = 1 + MS_TO_TICKS(timeout*1000);
520 return 1;
521 }
522 else {
523 s->data_ctx.cli.msg = "'set timeout' only supports 'cli'.\n";
524 si->st0 = STAT_CLI_PRINT;
525 return 1;
526 }
527 }
528 else { /* unknown "set" parameter */
Willy Tarreau4483d432009-10-10 19:30:08 +0200529 return 0;
530 }
531 }
532 else { /* not "show" nor "clear" nor "get" nor "set" */
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200533 return 0;
534 }
535 return 1;
536}
537
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200538/* This I/O handler runs as an applet embedded in a stream interface. It is
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200539 * used to processes I/O from/to the stats unix socket. The system relies on a
540 * state machine handling requests and various responses. We read a request,
541 * then we process it and send the response, and we possibly display a prompt.
542 * Then we can read again. The state is stored in si->st0 and is one of the
543 * STAT_CLI_* constants. si->st1 is used to indicate whether prompt is enabled
544 * or not.
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200545 */
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200546void stats_io_handler(struct stream_interface *si)
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200547{
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200548 struct session *s = si->private;
549 struct buffer *req = si->ob;
550 struct buffer *res = si->ib;
551 int reql;
552 int len;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200553
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200554 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
555 goto out;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200556
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200557 while (1) {
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200558 if (si->st0 == STAT_CLI_INIT) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200559 /* Stats output not initialized yet */
560 memset(&s->data_ctx.stats, 0, sizeof(s->data_ctx.stats));
561 s->data_source = DATA_SRC_STATS;
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200562 si->st0 = STAT_CLI_GETREQ;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200563 }
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200564 else if (si->st0 == STAT_CLI_END) {
565 /* Let's close for real now. We just close the request
566 * side, the conditions below will complete if needed.
567 */
568 si->shutw(si);
569 break;
570 }
571 else if (si->st0 == STAT_CLI_GETREQ) {
Willy Tarreau4e33d862009-10-11 23:35:10 +0200572 /* ensure we have some output room left in the event we
573 * would want to return some info right after parsing.
574 */
575 if (buffer_almost_full(si->ib))
576 break;
577
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200578 reql = buffer_si_peekline(si->ob, trash, sizeof(trash));
579 if (reql <= 0) { /* closed or EOL not found */
580 if (reql == 0)
581 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200582 si->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200583 continue;
584 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200585
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200586 /* seek for a possible semi-colon. If we find one, we
587 * replace it with an LF and skip only this part.
588 */
589 for (len = 0; len < reql; len++)
590 if (trash[len] == ';') {
591 trash[len] = '\n';
592 reql = len + 1;
593 break;
594 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200595
Willy Tarreau816fc222009-10-04 07:36:58 +0200596 /* now it is time to check that we have a full line,
597 * remove the trailing \n and possibly \r, then cut the
598 * line.
599 */
600 len = reql - 1;
601 if (trash[len] != '\n') {
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200602 si->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200603 continue;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200604 }
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200605
Willy Tarreau816fc222009-10-04 07:36:58 +0200606 if (len && trash[len-1] == '\r')
607 len--;
608
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200609 trash[len] = '\0';
610
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200611 si->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200612 if (len) {
613 if (strcmp(trash, "quit") == 0) {
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200614 si->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200615 continue;
616 }
617 else if (strcmp(trash, "prompt") == 0)
618 si->st1 = !si->st1;
619 else if (strcmp(trash, "help") == 0 ||
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200620 !stats_sock_parse_request(si, trash)) {
621 s->data_ctx.cli.msg = stats_sock_usage_msg;
622 si->st0 = STAT_CLI_PRINT;
623 }
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200624 /* NB: stats_sock_parse_request() may have put
625 * another STAT_CLI_O_* into si->st0.
626 */
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200627 }
628 else if (!si->st1) {
629 /* if prompt is disabled, print help on empty lines,
630 * so that the user at least knows how to enable
631 * prompt and find help.
632 */
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200633 s->data_ctx.cli.msg = stats_sock_usage_msg;
634 si->st0 = STAT_CLI_PRINT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200635 }
636
637 /* re-adjust req buffer */
638 buffer_skip(si->ob, reql);
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200639 req->flags |= BF_READ_DONTWAIT; /* we plan to read small requests */
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200640 }
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200641 else { /* output functions: first check if the output buffer is closed then abort */
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200642 if (res->flags & (BF_SHUTR_NOW|BF_SHUTR)) {
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200643 si->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200644 continue;
645 }
646
647 switch (si->st0) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200648 case STAT_CLI_PRINT:
649 if (buffer_feed(si->ib, s->data_ctx.cli.msg) < 0)
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200650 si->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200651 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200652 case STAT_CLI_O_INFO:
Willy Tarreau24955a12009-10-04 11:54:04 +0200653 if (stats_dump_raw_to_buffer(s, res))
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200654 si->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200655 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200656 case STAT_CLI_O_SESS:
Willy Tarreau7e72a8f2009-10-03 23:55:14 +0200657 if (stats_dump_sess_to_buffer(s, res))
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200658 si->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200659 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200660 case STAT_CLI_O_ERR: /* errors dump */
Willy Tarreau61b34732009-10-03 23:49:35 +0200661 if (stats_dump_errors_to_buffer(s, res))
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200662 si->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200663 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200664 default: /* abnormal state */
665 si->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200666 break;
667 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200668
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200669 /* The post-command prompt is either LF alone or LF + '> ' in interactive mode */
670 if (si->st0 == STAT_CLI_PROMPT) {
Willy Tarreau9bcc91e2009-10-10 18:01:44 +0200671 if (buffer_feed(si->ib, si->st1 ? "\n> " : "\n") < 0)
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200672 si->st0 = STAT_CLI_GETREQ;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200673 }
674
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200675 /* If the output functions are still there, it means they require more room. */
Willy Tarreau96fd4b52009-10-04 17:18:35 +0200676 if (si->st0 >= STAT_CLI_OUTPUT)
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200677 break;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200678
679 /* Now we close the output if one of the writers did so,
680 * or if we're not in interactive mode and the request
681 * buffer is empty. This still allows pipelined requests
682 * to be sent in non-interactive mode.
683 */
684 if ((res->flags & (BF_SHUTW|BF_SHUTW_NOW)) || (!si->st1 && !req->send_max)) {
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200685 si->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200686 continue;
687 }
688
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200689 /* switch state back to GETREQ to read next requests */
690 si->st0 = STAT_CLI_GETREQ;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200691 }
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200692 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200693
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200694 if ((res->flags & BF_SHUTR) && (si->state == SI_ST_EST) && (si->st0 != STAT_CLI_GETREQ)) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200695 DPRINTF(stderr, "%s@%d: si to buf closed. req=%08x, res=%08x, st=%d\n",
696 __FUNCTION__, __LINE__, req->flags, res->flags, si->state);
697 /* Other size has closed, let's abort if we have no more processing to do
698 * and nothing more to consume. This is comparable to a broken pipe, so
699 * we forward the close to the request side so that it flows upstream to
700 * the client.
701 */
702 si->shutw(si);
703 }
704
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200705 if ((req->flags & BF_SHUTW) && (si->state == SI_ST_EST) && (si->st0 < STAT_CLI_OUTPUT)) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200706 DPRINTF(stderr, "%s@%d: buf to si closed. req=%08x, res=%08x, st=%d\n",
707 __FUNCTION__, __LINE__, req->flags, res->flags, si->state);
708 /* We have no more processing to do, and nothing more to send, and
709 * the client side has closed. So we'll forward this state downstream
710 * on the response buffer.
711 */
712 si->shutr(si);
713 res->flags |= BF_READ_NULL;
714 }
715
716 /* update all other flags and resync with the other side */
717 si->update(si);
718
719 /* we don't want to expire timeouts while we're processing requests */
720 si->ib->rex = TICK_ETERNITY;
721 si->ob->wex = TICK_ETERNITY;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200722
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200723 out:
724 DPRINTF(stderr, "%s@%d: st=%d, rqf=%x, rpf=%x, rql=%d, rqs=%d, rl=%d, rs=%d\n",
725 __FUNCTION__, __LINE__,
726 si->state, req->flags, res->flags, req->l, req->send_max, res->l, res->send_max);
727
728 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) {
729 /* check that we have released everything then unregister */
730 stream_int_unregister_handler(si);
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200731 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200732}
733
Willy Tarreau24955a12009-10-04 11:54:04 +0200734/* This function is called to send output to the response buffer.
735 * It dumps statistics onto the output buffer <rep> owned by session <s>.
736 * s->data_ctx must have been zeroed first, and the flags properly set.
737 * It returns 0 as long as it does not complete, non-zero upon completion.
738 * Some states are not used but it makes the code more similar to other
739 * functions which handle stats too.
Willy Tarreau3e76e722007-10-17 18:57:38 +0200740 */
Willy Tarreau24955a12009-10-04 11:54:04 +0200741int stats_dump_raw_to_buffer(struct session *s, struct buffer *rep)
Willy Tarreau3e76e722007-10-17 18:57:38 +0200742{
Willy Tarreau3e76e722007-10-17 18:57:38 +0200743 struct proxy *px;
744 struct chunk msg;
Willy Tarreaua8efd362008-01-03 10:19:15 +0100745 unsigned int up;
Willy Tarreau3e76e722007-10-17 18:57:38 +0200746
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200747 chunk_init(&msg, trash, sizeof(trash));
Willy Tarreau3e76e722007-10-17 18:57:38 +0200748
749 switch (s->data_state) {
750 case DATA_ST_INIT:
Willy Tarreau24955a12009-10-04 11:54:04 +0200751 /* the function had not been called yet */
Willy Tarreau3e76e722007-10-17 18:57:38 +0200752 s->data_state = DATA_ST_HEAD;
753 /* fall through */
754
755 case DATA_ST_HEAD:
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100756 if (s->data_ctx.stats.flags & STAT_SHOW_STAT) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200757 print_csv_header(&msg);
Willy Tarreau24955a12009-10-04 11:54:04 +0200758 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreaua8efd362008-01-03 10:19:15 +0100759 return 0;
760 }
Willy Tarreau3e76e722007-10-17 18:57:38 +0200761
762 s->data_state = DATA_ST_INFO;
763 /* fall through */
764
765 case DATA_ST_INFO:
Willy Tarreaua8efd362008-01-03 10:19:15 +0100766 up = (now.tv_sec - start_date.tv_sec);
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100767 if (s->data_ctx.stats.flags & STAT_SHOW_INFO) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200768 chunk_printf(&msg,
Willy Tarreaua8efd362008-01-03 10:19:15 +0100769 "Name: " PRODUCT_NAME "\n"
770 "Version: " HAPROXY_VERSION "\n"
771 "Release_date: " HAPROXY_DATE "\n"
772 "Nbproc: %d\n"
773 "Process_num: %d\n"
774 "Pid: %d\n"
775 "Uptime: %dd %dh%02dm%02ds\n"
776 "Uptime_sec: %d\n"
777 "Memmax_MB: %d\n"
778 "Ulimit-n: %d\n"
779 "Maxsock: %d\n"
780 "Maxconn: %d\n"
Willy Tarreaua206fa92009-01-25 14:02:00 +0100781 "Maxpipes: %d\n"
Willy Tarreaua8efd362008-01-03 10:19:15 +0100782 "CurrConns: %d\n"
Willy Tarreaua206fa92009-01-25 14:02:00 +0100783 "PipesUsed: %d\n"
784 "PipesFree: %d\n"
Willy Tarreauc7bdf092009-03-21 18:33:52 +0100785 "Tasks: %d\n"
786 "Run_queue: %d\n"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200787 "node: %s\n"
788 "description: %s\n"
Willy Tarreaua8efd362008-01-03 10:19:15 +0100789 "",
790 global.nbproc,
791 relative_pid,
792 pid,
793 up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60),
794 up,
795 global.rlimit_memmax,
796 global.rlimit_nofile,
Willy Tarreaua206fa92009-01-25 14:02:00 +0100797 global.maxsock, global.maxconn, global.maxpipes,
Willy Tarreauc7bdf092009-03-21 18:33:52 +0100798 actconn, pipes_used, pipes_free,
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200799 nb_tasks_cur, run_queue_cur,
800 global.node, global.desc?global.desc:""
Willy Tarreaua8efd362008-01-03 10:19:15 +0100801 );
Willy Tarreau24955a12009-10-04 11:54:04 +0200802 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreaua8efd362008-01-03 10:19:15 +0100803 return 0;
804 }
805
Willy Tarreau3e76e722007-10-17 18:57:38 +0200806 s->data_ctx.stats.px = proxy;
807 s->data_ctx.stats.px_st = DATA_ST_PX_INIT;
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +0100808
809 s->data_ctx.stats.sv = NULL;
810 s->data_ctx.stats.sv_st = 0;
811
Willy Tarreau3e76e722007-10-17 18:57:38 +0200812 s->data_state = DATA_ST_LIST;
813 /* fall through */
814
815 case DATA_ST_LIST:
816 /* dump proxies */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100817 if (s->data_ctx.stats.flags & STAT_SHOW_STAT) {
Willy Tarreaua8efd362008-01-03 10:19:15 +0100818 while (s->data_ctx.stats.px) {
819 px = s->data_ctx.stats.px;
820 /* skip the disabled proxies and non-networked ones */
821 if (px->state != PR_STSTOPPED &&
Willy Tarreau24955a12009-10-04 11:54:04 +0200822 (px->cap & (PR_CAP_FE | PR_CAP_BE))) {
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100823 if (stats_dump_proxy(s, px, NULL) == 0)
Willy Tarreaua8efd362008-01-03 10:19:15 +0100824 return 0;
Willy Tarreau24955a12009-10-04 11:54:04 +0200825 }
Willy Tarreau3e76e722007-10-17 18:57:38 +0200826
Willy Tarreaua8efd362008-01-03 10:19:15 +0100827 s->data_ctx.stats.px = px->next;
828 s->data_ctx.stats.px_st = DATA_ST_PX_INIT;
829 }
830 /* here, we just have reached the last proxy */
Willy Tarreau3e76e722007-10-17 18:57:38 +0200831 }
Willy Tarreau3e76e722007-10-17 18:57:38 +0200832
833 s->data_state = DATA_ST_END;
834 /* fall through */
835
836 case DATA_ST_END:
837 s->data_state = DATA_ST_FIN;
Willy Tarreau0a464892008-12-07 18:30:00 +0100838 /* fall through */
Willy Tarreau3e76e722007-10-17 18:57:38 +0200839
840 case DATA_ST_FIN:
841 return 1;
842
843 default:
844 /* unknown state ! */
Willy Tarreau24955a12009-10-04 11:54:04 +0200845 s->data_state = DATA_ST_FIN;
846 return 1;
Willy Tarreau3e76e722007-10-17 18:57:38 +0200847 }
Willy Tarreaub1356cf2008-12-07 16:06:43 +0100848}
849
850
Willy Tarreaub0c9bc42009-10-04 15:56:38 +0200851/* This I/O handler runs as an applet embedded in a stream interface. It is
852 * used to send HTTP stats over a TCP socket. The mechanism is very simple.
853 * si->st0 becomes non-zero once the transfer is finished. The handler
854 * automatically unregisters itself once transfer is complete.
855 */
856void http_stats_io_handler(struct stream_interface *si)
857{
858 struct session *s = si->private;
859 struct buffer *req = si->ob;
860 struct buffer *res = si->ib;
861
862 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
863 goto out;
864
865 /* check that the output is not closed */
866 if (res->flags & (BF_SHUTW|BF_SHUTW_NOW))
867 si->st0 = 1;
868
869 if (!si->st0) {
870 if (stats_dump_http(s, res, s->be->uri_auth)) {
871 si->st0 = 1;
872 si->shutw(si);
Willy Tarreaub0c9bc42009-10-04 15:56:38 +0200873 }
874 }
875
876 if ((res->flags & BF_SHUTR) && (si->state == SI_ST_EST))
877 si->shutw(si);
878
879 if ((req->flags & BF_SHUTW) && (si->state == SI_ST_EST) && si->st0) {
880 si->shutr(si);
881 res->flags |= BF_READ_NULL;
882 }
883
884 /* update all other flags and resync with the other side */
885 si->update(si);
886
887 /* we don't want to expire timeouts while we're processing requests */
888 si->ib->rex = TICK_ETERNITY;
889 si->ob->wex = TICK_ETERNITY;
890
891 out:
892 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) {
893 /* check that we have released everything then unregister */
894 stream_int_unregister_handler(si);
895 }
896}
897
898
Willy Tarreau3e76e722007-10-17 18:57:38 +0200899/*
900 * Produces statistics data for the session <s>. Expects to be called with
Willy Tarreau1ae3a052008-08-16 10:56:30 +0200901 * client socket shut down on input. It stops by itself by unsetting the
Willy Tarreau72b179a2008-08-28 16:01:32 +0200902 * BF_HIJACK flag from the buffer, which it uses to keep on being called
Willy Tarreau1ae3a052008-08-16 10:56:30 +0200903 * when there is free space in the buffer, of simply by letting an empty buffer
904 * upon return.s->data_ctx must have been zeroed before the first call, and the
905 * flags set. It returns 0 if it had to stop writing data and an I/O is needed,
906 * 1 if the dump is finished and the session must be closed, or -1 in case of
907 * any error.
Willy Tarreau91861262007-10-17 17:06:05 +0200908 */
Willy Tarreau0a464892008-12-07 18:30:00 +0100909int stats_dump_http(struct session *s, struct buffer *rep, struct uri_auth *uri)
Willy Tarreau91861262007-10-17 17:06:05 +0200910{
Willy Tarreau91861262007-10-17 17:06:05 +0200911 struct proxy *px;
912 struct chunk msg;
913 unsigned int up;
914
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200915 chunk_init(&msg, trash, sizeof(trash));
Willy Tarreau91861262007-10-17 17:06:05 +0200916
917 switch (s->data_state) {
918 case DATA_ST_INIT:
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200919 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +0200920 "HTTP/1.0 200 OK\r\n"
921 "Cache-Control: no-cache\r\n"
922 "Connection: close\r\n"
Willy Tarreau55bb8452007-10-17 18:44:57 +0200923 "Content-Type: %s\r\n",
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100924 (s->data_ctx.stats.flags & STAT_FMT_CSV) ? "text/plain" : "text/html");
Willy Tarreau91861262007-10-17 17:06:05 +0200925
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100926 if (uri->refresh > 0 && !(s->data_ctx.stats.flags & STAT_NO_REFRESH))
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200927 chunk_printf(&msg, "Refresh: %d\r\n",
Willy Tarreau91861262007-10-17 17:06:05 +0200928 uri->refresh);
929
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200930 chunk_printf(&msg, "\r\n");
Willy Tarreau91861262007-10-17 17:06:05 +0200931
932 s->txn.status = 200;
Willy Tarreaub0c9bc42009-10-04 15:56:38 +0200933 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreau56a560a2009-09-22 19:27:35 +0200934 return 0;
935
Willy Tarreau91861262007-10-17 17:06:05 +0200936 if (!(s->flags & SN_ERR_MASK)) // this is not really an error but it is
937 s->flags |= SN_ERR_PRXCOND; // to mark that it comes from the proxy
938 if (!(s->flags & SN_FINST_MASK))
939 s->flags |= SN_FINST_R;
940
941 if (s->txn.meth == HTTP_METH_HEAD) {
942 /* that's all we return in case of HEAD request */
943 s->data_state = DATA_ST_FIN;
Willy Tarreau91861262007-10-17 17:06:05 +0200944 return 1;
945 }
946
947 s->data_state = DATA_ST_HEAD; /* let's start producing data */
948 /* fall through */
949
950 case DATA_ST_HEAD:
Willy Tarreau39f7e6d2008-03-17 21:38:24 +0100951 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki034550b2010-01-05 18:44:44 +0100952 /* WARNING! This must fit in the first buffer !!! */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200953 chunk_printf(&msg,
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +0200954 "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\n"
955 "\"http://www.w3.org/TR/html4/loose.dtd\">\n"
Willy Tarreau1d45b7c2009-08-16 10:29:18 +0200956 "<html><head><title>Statistics Report for " PRODUCT_NAME "%s%s</title>\n"
Willy Tarreau91861262007-10-17 17:06:05 +0200957 "<meta http-equiv=\"content-type\" content=\"text/html; charset=iso-8859-1\">\n"
958 "<style type=\"text/css\"><!--\n"
959 "body {"
Willy Tarreaua94f2d22009-05-10 20:08:10 +0200960 " font-family: arial, helvetica, sans-serif;"
Willy Tarreau91861262007-10-17 17:06:05 +0200961 " font-size: 12px;"
962 " font-weight: normal;"
963 " color: black;"
964 " background: white;"
965 "}\n"
966 "th,td {"
Willy Tarreaua94f2d22009-05-10 20:08:10 +0200967 " font-size: 10px;"
Willy Tarreau91861262007-10-17 17:06:05 +0200968 "}\n"
969 "h1 {"
Willy Tarreauda6721b2009-07-15 10:07:05 +0200970 " font-size: x-large;"
Willy Tarreau91861262007-10-17 17:06:05 +0200971 " margin-bottom: 0.5em;"
972 "}\n"
973 "h2 {"
974 " font-family: helvetica, arial;"
975 " font-size: x-large;"
976 " font-weight: bold;"
977 " font-style: italic;"
978 " color: #6020a0;"
979 " margin-top: 0em;"
980 " margin-bottom: 0em;"
981 "}\n"
982 "h3 {"
983 " font-family: helvetica, arial;"
984 " font-size: 16px;"
985 " font-weight: bold;"
986 " color: #b00040;"
987 " background: #e8e8d0;"
988 " margin-top: 0em;"
989 " margin-bottom: 0em;"
990 "}\n"
991 "li {"
992 " margin-top: 0.25em;"
993 " margin-right: 2em;"
994 "}\n"
995 ".hr {margin-top: 0.25em;"
996 " border-color: black;"
997 " border-bottom-style: solid;"
998 "}\n"
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +0200999 ".titre {background: #20D0D0;color: #000000; font-weight: bold; text-align: center;}\n"
Willy Tarreau91861262007-10-17 17:06:05 +02001000 ".total {background: #20D0D0;color: #ffff80;}\n"
1001 ".frontend {background: #e8e8d0;}\n"
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001002 ".socket {background: #d0d0d0;}\n"
Willy Tarreau91861262007-10-17 17:06:05 +02001003 ".backend {background: #e8e8d0;}\n"
1004 ".active0 {background: #ff9090;}\n"
1005 ".active1 {background: #ffd020;}\n"
1006 ".active2 {background: #ffffa0;}\n"
1007 ".active3 {background: #c0ffc0;}\n"
Willy Tarreau2ea81932007-11-30 12:04:38 +01001008 ".active4 {background: #ffffa0;}\n" /* NOLB state shows same as going down */
1009 ".active5 {background: #a0e0a0;}\n" /* NOLB state shows darker than up */
1010 ".active6 {background: #e0e0e0;}\n"
Willy Tarreau91861262007-10-17 17:06:05 +02001011 ".backup0 {background: #ff9090;}\n"
1012 ".backup1 {background: #ff80ff;}\n"
1013 ".backup2 {background: #c060ff;}\n"
1014 ".backup3 {background: #b0d0ff;}\n"
Willy Tarreau2ea81932007-11-30 12:04:38 +01001015 ".backup4 {background: #c060ff;}\n" /* NOLB state shows same as going down */
1016 ".backup5 {background: #90b0e0;}\n" /* NOLB state shows same as going down */
1017 ".backup6 {background: #e0e0e0;}\n"
Willy Tarreauda6721b2009-07-15 10:07:05 +02001018 ".rls {letter-spacing: 0.2em; margin-right: 1px;}\n" /* right letter spacing (used for grouping digits) */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001019 "\n"
Krzysztof Piotr Oledzki1f672852009-10-24 14:24:30 +02001020 "a.px:link {color: #ffff40; text-decoration: none;}"
1021 "a.px:visited {color: #ffff40; text-decoration: none;}"
1022 "a.px:hover {color: #ffffff; text-decoration: none;}"
1023 "a.lfsb:link {color: #000000; text-decoration: none;}"
1024 "a.lfsb:visited {color: #000000; text-decoration: none;}"
1025 "a.lfsb:hover {color: #505050; text-decoration: none;}"
1026 "\n"
Willy Tarreau91861262007-10-17 17:06:05 +02001027 "table.tbl { border-collapse: collapse; border-style: none;}\n"
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001028 "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"
1029 "table.tbl td.ac { text-align: center;}\n"
Willy Tarreau91861262007-10-17 17:06:05 +02001030 "table.tbl th { border-width: 1px; border-style: solid solid solid solid; border-color: gray;}\n"
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001031 "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 +02001032 "table.tbl th.empty { border-style: none; empty-cells: hide; background: white;}\n"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001033 "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 +02001034 "\n"
Willy Tarreau91861262007-10-17 17:06:05 +02001035 "table.lgd { border-collapse: collapse; border-width: 1px; border-style: none none none solid; border-color: black;}\n"
1036 "table.lgd td { border-width: 1px; border-style: solid solid solid solid; border-color: gray; padding: 2px;}\n"
1037 "table.lgd td.noborder { border-style: none; padding: 2px; white-space: nowrap;}\n"
1038 "-->\n"
Willy Tarreau1d45b7c2009-08-16 10:29:18 +02001039 "</style></head>\n",
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001040 (uri->flags&ST_SHNODE) ? " on " : "",
1041 (uri->flags&ST_SHNODE) ? (uri->node ? uri->node : global.node) : ""
Willy Tarreau1d45b7c2009-08-16 10:29:18 +02001042 );
Willy Tarreau55bb8452007-10-17 18:44:57 +02001043 } else {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001044 print_csv_header(&msg);
Willy Tarreau55bb8452007-10-17 18:44:57 +02001045 }
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001046 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreau91861262007-10-17 17:06:05 +02001047 return 0;
1048
1049 s->data_state = DATA_ST_INFO;
1050 /* fall through */
1051
1052 case DATA_ST_INFO:
1053 up = (now.tv_sec - start_date.tv_sec);
1054
1055 /* WARNING! this has to fit the first packet too.
1056 * We are around 3.5 kB, add adding entries will
1057 * become tricky if we want to support 4kB buffers !
1058 */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001059 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001060 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001061 "<body><h1><a href=\"" PRODUCT_URL "\" style=\"text-decoration: none;\">"
1062 PRODUCT_NAME "%s</a></h1>\n"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001063 "<h2>Statistics Report for pid %d%s%s%s%s</h2>\n"
Willy Tarreau91861262007-10-17 17:06:05 +02001064 "<hr width=\"100%%\" class=\"hr\">\n"
1065 "<h3>&gt; General process information</h3>\n"
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001066 "<table border=0><tr><td align=\"left\" nowrap width=\"1%%\">\n"
Willy Tarreaua8efd362008-01-03 10:19:15 +01001067 "<p><b>pid = </b> %d (process #%d, nbproc = %d)<br>\n"
Willy Tarreau91861262007-10-17 17:06:05 +02001068 "<b>uptime = </b> %dd %dh%02dm%02ds<br>\n"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001069 "<b>system limits:</b> memmax = %s%s; ulimit-n = %d<br>\n"
1070 "<b>maxsock = </b> %d; <b>maxconn = </b> %d; <b>maxpipes = </b> %d<br>\n"
1071 "current conns = %d; current pipes = %d/%d<br>\n"
1072 "Running tasks: %d/%d<br>\n"
Willy Tarreau91861262007-10-17 17:06:05 +02001073 "</td><td align=\"center\" nowrap>\n"
1074 "<table class=\"lgd\"><tr>\n"
1075 "<td class=\"active3\">&nbsp;</td><td class=\"noborder\">active UP </td>"
1076 "<td class=\"backup3\">&nbsp;</td><td class=\"noborder\">backup UP </td>"
1077 "</tr><tr>\n"
1078 "<td class=\"active2\"></td><td class=\"noborder\">active UP, going down </td>"
1079 "<td class=\"backup2\"></td><td class=\"noborder\">backup UP, going down </td>"
1080 "</tr><tr>\n"
1081 "<td class=\"active1\"></td><td class=\"noborder\">active DOWN, going up </td>"
1082 "<td class=\"backup1\"></td><td class=\"noborder\">backup DOWN, going up </td>"
1083 "</tr><tr>\n"
1084 "<td class=\"active0\"></td><td class=\"noborder\">active or backup DOWN &nbsp;</td>"
Willy Tarreau2ea81932007-11-30 12:04:38 +01001085 "<td class=\"active6\"></td><td class=\"noborder\">not checked </td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001086 "</tr></table>\n"
Willy Tarreau2ea81932007-11-30 12:04:38 +01001087 "Note: UP with load-balancing disabled is reported as \"NOLB\"."
Willy Tarreau91861262007-10-17 17:06:05 +02001088 "</td>"
1089 "<td align=\"left\" valign=\"top\" nowrap width=\"1%%\">"
1090 "<b>Display option:</b><ul style=\"margin-top: 0.25em;\">"
1091 "",
1092 (uri->flags&ST_HIDEVER)?"":(STATS_VERSION_STRING),
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001093 pid, (uri->flags&ST_SHNODE) ? " on " : "", (uri->flags&ST_SHNODE) ? (uri->node ? uri->node : global.node) : "",
1094 (uri->flags&ST_SHDESC)? ": " : "", (uri->flags&ST_SHDESC) ? (uri->desc ? uri->desc : global.desc) : "",
1095 pid, relative_pid, global.nbproc,
Willy Tarreau91861262007-10-17 17:06:05 +02001096 up / 86400, (up % 86400) / 3600,
1097 (up % 3600) / 60, (up % 60),
1098 global.rlimit_memmax ? ultoa(global.rlimit_memmax) : "unlimited",
1099 global.rlimit_memmax ? " MB" : "",
1100 global.rlimit_nofile,
Willy Tarreaua206fa92009-01-25 14:02:00 +01001101 global.maxsock, global.maxconn, global.maxpipes,
Willy Tarreauc7bdf092009-03-21 18:33:52 +01001102 actconn, pipes_used, pipes_used+pipes_free,
1103 run_queue_cur, nb_tasks_cur
Willy Tarreau91861262007-10-17 17:06:05 +02001104 );
Willy Tarreaub1356cf2008-12-07 16:06:43 +01001105
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001106 if (s->data_ctx.stats.flags & STAT_HIDE_DOWN)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001107 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001108 "<li><a href=\"%s%s%s\">Show all servers</a><br>\n",
1109 uri->uri_prefix,
1110 "",
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001111 (s->data_ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "");
Willy Tarreau55bb8452007-10-17 18:44:57 +02001112 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001113 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001114 "<li><a href=\"%s%s%s\">Hide 'DOWN' servers</a><br>\n",
1115 uri->uri_prefix,
1116 ";up",
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001117 (s->data_ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "");
Willy Tarreau91861262007-10-17 17:06:05 +02001118
Willy Tarreau55bb8452007-10-17 18:44:57 +02001119 if (uri->refresh > 0) {
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001120 if (s->data_ctx.stats.flags & STAT_NO_REFRESH)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001121 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001122 "<li><a href=\"%s%s%s\">Enable refresh</a><br>\n",
1123 uri->uri_prefix,
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001124 (s->data_ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
Willy Tarreau91861262007-10-17 17:06:05 +02001125 "");
Willy Tarreau55bb8452007-10-17 18:44:57 +02001126 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001127 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001128 "<li><a href=\"%s%s%s\">Disable refresh</a><br>\n",
1129 uri->uri_prefix,
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001130 (s->data_ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
Willy Tarreau91861262007-10-17 17:06:05 +02001131 ";norefresh");
Willy Tarreau55bb8452007-10-17 18:44:57 +02001132 }
Willy Tarreau91861262007-10-17 17:06:05 +02001133
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001134 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001135 "<li><a href=\"%s%s%s\">Refresh now</a><br>\n",
1136 uri->uri_prefix,
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001137 (s->data_ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
1138 (s->data_ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "");
Willy Tarreau91861262007-10-17 17:06:05 +02001139
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001140 chunk_printf(&msg,
Willy Tarreau5031e6a2007-10-18 11:05:48 +02001141 "<li><a href=\"%s;csv%s\">CSV export</a><br>\n",
1142 uri->uri_prefix,
1143 (uri->refresh > 0) ? ";norefresh" : "");
1144
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001145 chunk_printf(&msg,
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001146 "</ul></td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001147 "<td align=\"left\" valign=\"top\" nowrap width=\"1%%\">"
1148 "<b>External ressources:</b><ul style=\"margin-top: 0.25em;\">\n"
1149 "<li><a href=\"" PRODUCT_URL "\">Primary site</a><br>\n"
1150 "<li><a href=\"" PRODUCT_URL_UPD "\">Updates (v" PRODUCT_BRANCH ")</a><br>\n"
1151 "<li><a href=\"" PRODUCT_URL_DOC "\">Online manual</a><br>\n"
1152 "</ul>"
1153 "</td>"
1154 "</tr></table>\n"
1155 ""
1156 );
Willy Tarreaub1356cf2008-12-07 16:06:43 +01001157
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001158 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreau55bb8452007-10-17 18:44:57 +02001159 return 0;
1160 }
Willy Tarreau91861262007-10-17 17:06:05 +02001161
Willy Tarreau91861262007-10-17 17:06:05 +02001162 s->data_ctx.stats.px = proxy;
1163 s->data_ctx.stats.px_st = DATA_ST_PX_INIT;
1164 s->data_state = DATA_ST_LIST;
1165 /* fall through */
1166
1167 case DATA_ST_LIST:
1168 /* dump proxies */
1169 while (s->data_ctx.stats.px) {
Willy Tarreau4e33d862009-10-11 23:35:10 +02001170 if (buffer_almost_full(rep))
1171 return 0;
Willy Tarreau91861262007-10-17 17:06:05 +02001172 px = s->data_ctx.stats.px;
1173 /* skip the disabled proxies and non-networked ones */
1174 if (px->state != PR_STSTOPPED && (px->cap & (PR_CAP_FE | PR_CAP_BE)))
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001175 if (stats_dump_proxy(s, px, uri) == 0)
Willy Tarreau91861262007-10-17 17:06:05 +02001176 return 0;
1177
1178 s->data_ctx.stats.px = px->next;
1179 s->data_ctx.stats.px_st = DATA_ST_PX_INIT;
1180 }
1181 /* here, we just have reached the last proxy */
1182
1183 s->data_state = DATA_ST_END;
1184 /* fall through */
1185
1186 case DATA_ST_END:
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001187 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001188 chunk_printf(&msg, "</body></html>\n");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001189 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreau55bb8452007-10-17 18:44:57 +02001190 return 0;
1191 }
Willy Tarreau91861262007-10-17 17:06:05 +02001192
1193 s->data_state = DATA_ST_FIN;
1194 /* fall through */
1195
1196 case DATA_ST_FIN:
Willy Tarreau91861262007-10-17 17:06:05 +02001197 return 1;
1198
1199 default:
1200 /* unknown state ! */
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001201 s->data_state = DATA_ST_FIN;
Willy Tarreau91861262007-10-17 17:06:05 +02001202 return -1;
1203 }
1204}
1205
1206
1207/*
1208 * Dumps statistics for a proxy.
1209 * Returns 0 if it had to stop dumping data because of lack of buffer space,
1210 * ot non-zero if everything completed.
1211 */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001212int stats_dump_proxy(struct session *s, struct proxy *px, struct uri_auth *uri)
Willy Tarreau91861262007-10-17 17:06:05 +02001213{
1214 struct buffer *rep = s->rep;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001215 struct server *sv, *svs; /* server and server-state, server-state=server or server->tracked */
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001216 struct listener *l;
Willy Tarreau91861262007-10-17 17:06:05 +02001217 struct chunk msg;
1218
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001219 chunk_init(&msg, trash, sizeof(trash));
Willy Tarreau91861262007-10-17 17:06:05 +02001220
1221 switch (s->data_ctx.stats.px_st) {
1222 case DATA_ST_PX_INIT:
1223 /* we are on a new proxy */
1224
1225 if (uri && uri->scope) {
1226 /* we have a limited scope, we have to check the proxy name */
1227 struct stat_scope *scope;
1228 int len;
1229
1230 len = strlen(px->id);
1231 scope = uri->scope;
1232
1233 while (scope) {
1234 /* match exact proxy name */
1235 if (scope->px_len == len && !memcmp(px->id, scope->px_id, len))
1236 break;
1237
1238 /* match '.' which means 'self' proxy */
Willy Tarreau1388a3a2007-10-18 16:38:37 +02001239 if (!strcmp(scope->px_id, ".") && px == s->be)
Willy Tarreau91861262007-10-17 17:06:05 +02001240 break;
1241 scope = scope->next;
1242 }
1243
1244 /* proxy name not found : don't dump anything */
1245 if (scope == NULL)
1246 return 1;
1247 }
1248
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001249 if ((s->data_ctx.stats.flags & STAT_BOUND) && (s->data_ctx.stats.iid != -1) &&
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01001250 (px->uuid != s->data_ctx.stats.iid))
1251 return 1;
1252
Willy Tarreau91861262007-10-17 17:06:05 +02001253 s->data_ctx.stats.px_st = DATA_ST_PX_TH;
1254 /* fall through */
1255
1256 case DATA_ST_PX_TH:
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001257 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Willy Tarreau55bb8452007-10-17 18:44:57 +02001258 /* print a new table */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001259 chunk_printf(&msg,
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001260 "<table class=\"tbl\" width=\"100%%\">\n"
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001261 "<tr class=\"titre\">"
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001262 "<th class=\"pxname\" width=\"10%%\"");
1263
1264 if (uri->flags&ST_SHLGNDS) {
1265 /* cap, mode, id */
1266 chunk_printf(&msg, " title=\"cap: %s, mode: %s, id: %d",
1267 proxy_cap_str(px->cap), proxy_mode_str(px->mode),
1268 px->uuid);
1269
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001270 chunk_printf(&msg, "\"");
1271 }
1272
1273 chunk_printf(&msg,
1274 "><a name=\"%s\"></a>"
Krzysztof Piotr Oledzki1f672852009-10-24 14:24:30 +02001275 "<a class=px href=\"#%s\">%s</a></th>"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001276 "<th class=\"%s\" width=\"90%%\">%s</th>"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001277 "</tr>\n"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001278 "</table>\n"
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001279 "<table class=\"tbl\" width=\"100%%\">\n"
1280 "<tr class=\"titre\">"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001281 "<th rowspan=2></th>"
Willy Tarreaua3e49422009-05-10 19:19:41 +02001282 "<th colspan=3>Queue</th>"
1283 "<th colspan=3>Session rate</th><th colspan=5>Sessions</th>"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001284 "<th colspan=2>Bytes</th><th colspan=2>Denied</th>"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001285 "<th colspan=3>Errors</th><th colspan=2>Warnings</th>"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001286 "<th colspan=9>Server</th>"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001287 "</tr>\n"
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001288 "<tr class=\"titre\">"
Willy Tarreaua3e49422009-05-10 19:19:41 +02001289 "<th>Cur</th><th>Max</th><th>Limit</th>"
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02001290 "<th>Cur</th><th>Max</th><th>Limit</th><th>Cur</th><th>Max</th>"
Willy Tarreaua3e49422009-05-10 19:19:41 +02001291 "<th>Limit</th><th>Total</th><th>LbTot</th><th>In</th><th>Out</th>"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001292 "<th>Req</th><th>Resp</th><th>Req</th><th>Conn</th>"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001293 "<th>Resp</th><th>Retr</th><th>Redis</th>"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001294 "<th>Status</th><th>LastChk</th><th>Wght</th><th>Act</th>"
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001295 "<th>Bck</th><th>Chk</th><th>Dwn</th><th>Dwntme</th>"
1296 "<th>Thrtle</th>\n"
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001297 "</tr>",
Krzysztof Piotr Oledzki1f672852009-10-24 14:24:30 +02001298 px->id, px->id, px->id,
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001299 px->desc ? "desc" : "empty", px->desc ? px->desc : "");
Willy Tarreau55bb8452007-10-17 18:44:57 +02001300
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001301 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreau55bb8452007-10-17 18:44:57 +02001302 return 0;
1303 }
Willy Tarreau91861262007-10-17 17:06:05 +02001304
1305 s->data_ctx.stats.px_st = DATA_ST_PX_FE;
1306 /* fall through */
1307
1308 case DATA_ST_PX_FE:
1309 /* print the frontend */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001310 if ((px->cap & PR_CAP_FE) &&
1311 (!(s->data_ctx.stats.flags & STAT_BOUND) || (s->data_ctx.stats.type & (1 << STATS_TYPE_FE)))) {
1312 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001313 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001314 /* name, queue */
Krzysztof Piotr Oledzki516ed492009-10-22 22:48:09 +02001315 "<tr class=\"frontend\"><td class=ac>"
Krzysztof Piotr Oledzki1f672852009-10-24 14:24:30 +02001316 "<a name=\"%s/Frontend\"></a>"
1317 "<a class=lfsb href=\"#%s/Frontend\">Frontend</a></td><td colspan=3></td>"
Willy Tarreaua3e49422009-05-10 19:19:41 +02001318 /* sessions rate : current, max, limit */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001319 "<td>%s</td><td>%s</td><td>%s</td>"
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02001320 /* sessions: current, max, limit */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001321 "<td>%s</td><td>%s</td><td>%s</td>"
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02001322 "<td"
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001323 "",
Krzysztof Piotr Oledzki1f672852009-10-24 14:24:30 +02001324 px->id, px->id,
Willy Tarreaua3e49422009-05-10 19:19:41 +02001325 U2H0(read_freq_ctr(&px->fe_sess_per_sec)),
Willy Tarreauac68c5d2009-10-04 23:12:44 +02001326 U2H1(px->counters.fe_sps_max), LIM2A2(px->fe_sps_lim, "-"),
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02001327 U2H3(px->feconn), U2H4(px->counters.feconn_max), U2H5(px->maxconn));
1328
1329 /* http response (via td title): 1xx, 2xx, 3xx, 4xx, 5xx, other */
1330 if (px->mode == PR_MODE_HTTP) {
1331 int i;
1332
1333 chunk_printf(&msg, " title=\"rsp codes:");
1334
1335 for (i = 1; i < 6; i++)
1336 chunk_printf(&msg, " %dxx=%lld,", i, px->counters.p.http.rsp[i]);
1337
1338 chunk_printf(&msg, " other=%lld\"", px->counters.p.http.rsp[0]);
1339 }
1340
1341 chunk_printf(&msg,
1342 /* sessions: total, lbtot */
1343 ">%s</td><td></td>"
1344 /* bytes : in, out */
1345 "<td>%s</td><td>%s</td>"
1346 "",
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02001347 U2H6(px->counters.cum_feconn), U2H7(px->counters.bytes_in), U2H8(px->counters.bytes_out));
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001348
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001349 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001350 /* denied: req, resp */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001351 "<td>%s</td><td>%s</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001352 /* errors : request, connect, response */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001353 "<td>%s</td><td></td><td></td>"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001354 /* warnings: retries, redispatches */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001355 "<td></td><td></td>"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001356 /* server status : reflect frontend status */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001357 "<td class=ac>%s</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001358 /* rest of server: nothing */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001359 "<td class=ac colspan=8></td></tr>"
Willy Tarreau91861262007-10-17 17:06:05 +02001360 "",
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02001361 U2H0(px->counters.denied_req), U2H1(px->counters.denied_resp),
1362 U2H2(px->counters.failed_req),
Willy Tarreau91861262007-10-17 17:06:05 +02001363 px->state == PR_STRUN ? "OPEN" :
1364 px->state == PR_STIDLE ? "FULL" : "STOP");
Willy Tarreau55bb8452007-10-17 18:44:57 +02001365 } else {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001366 chunk_printf(&msg,
Willy Tarreau55bb8452007-10-17 18:44:57 +02001367 /* pxid, name, queue cur, queue max, */
1368 "%s,FRONTEND,,,"
Willy Tarreauddbb82f2007-12-05 10:34:49 +01001369 /* sessions : current, max, limit, total */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001370 "%d,%d,%d,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001371 /* bytes : in, out */
1372 "%lld,%lld,"
1373 /* denied: req, resp */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001374 "%lld,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001375 /* errors : request, connect, response */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001376 "%lld,,,"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001377 /* warnings: retries, redispatches */
1378 ",,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001379 /* server status : reflect frontend status */
1380 "%s,"
1381 /* rest of server: nothing */
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02001382 ",,,,,,,,"
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01001383 /* pid, iid, sid, throttle, lbtot, tracked, type */
1384 "%d,%d,0,,,,%d,"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001385 /* rate, rate_lim, rate_max */
Willy Tarreau8f208ec2009-05-10 19:01:49 +02001386 "%u,%u,%u,"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001387 /* check_status, check_code, check_duration */
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02001388 ",,,",
Willy Tarreau55bb8452007-10-17 18:44:57 +02001389 px->id,
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02001390 px->feconn, px->counters.feconn_max, px->maxconn, px->counters.cum_feconn,
1391 px->counters.bytes_in, px->counters.bytes_out,
1392 px->counters.denied_req, px->counters.denied_resp,
1393 px->counters.failed_req,
Willy Tarreau55bb8452007-10-17 18:44:57 +02001394 px->state == PR_STRUN ? "OPEN" :
Willy Tarreaudcd47712007-11-04 23:35:08 +01001395 px->state == PR_STIDLE ? "FULL" : "STOP",
Willy Tarreau7f062c42009-03-05 18:43:00 +01001396 relative_pid, px->uuid, STATS_TYPE_FE,
Willy Tarreau8f208ec2009-05-10 19:01:49 +02001397 read_freq_ctr(&px->fe_sess_per_sec),
Willy Tarreauac68c5d2009-10-04 23:12:44 +02001398 px->fe_sps_lim, px->counters.fe_sps_max);
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02001399
1400 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
1401 if (px->mode == PR_MODE_HTTP) {
1402 int i;
1403
1404 for (i=1; i<6; i++)
1405 chunk_printf(&msg, "%lld,", px->counters.p.http.rsp[i]);
1406
1407 chunk_printf(&msg, "%lld,", px->counters.p.http.rsp[0]);
1408 } else {
1409 chunk_printf(&msg, ",,,,,,");
1410 }
1411
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01001412 /* failed health analyses */
1413 chunk_printf(&msg, ",");
1414
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02001415 /* finish with EOL */
1416 chunk_printf(&msg, "\n");
Willy Tarreau55bb8452007-10-17 18:44:57 +02001417 }
Willy Tarreau91861262007-10-17 17:06:05 +02001418
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001419 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreau91861262007-10-17 17:06:05 +02001420 return 0;
1421 }
1422
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001423 s->data_ctx.stats.l = px->listen; /* may be NULL */
1424 s->data_ctx.stats.px_st = DATA_ST_PX_LI;
1425 /* fall through */
1426
1427 case DATA_ST_PX_LI:
1428 /* stats.l has been initialized above */
1429 for (; s->data_ctx.stats.l != NULL; s->data_ctx.stats.l = l->next) {
Willy Tarreau4e33d862009-10-11 23:35:10 +02001430 if (buffer_almost_full(rep))
1431 return 0;
1432
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001433 l = s->data_ctx.stats.l;
1434 if (!l->counters)
1435 continue;
1436
1437 if (s->data_ctx.stats.flags & STAT_BOUND) {
1438 if (!(s->data_ctx.stats.type & (1 << STATS_TYPE_SO)))
1439 break;
1440
1441 if (s->data_ctx.stats.sid != -1 && l->luid != s->data_ctx.stats.sid)
1442 continue;
1443 }
1444
1445 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001446 chunk_printf(&msg, "<tr class=socket><td class=ac");
1447
1448 if (uri->flags&ST_SHLGNDS) {
1449 char str[INET6_ADDRSTRLEN], *fmt = NULL;
1450 int port;
1451
1452 chunk_printf(&msg, " title=\"IP: ");
1453
1454 port = (l->addr.ss_family == AF_INET6)
1455 ? ntohs(((struct sockaddr_in6 *)(&l->addr))->sin6_port)
1456 : ntohs(((struct sockaddr_in *)(&l->addr))->sin_port);
1457
1458 if (l->addr.ss_family == AF_INET) {
1459 if (inet_ntop(AF_INET,
1460 (const void *)&((struct sockaddr_in *)&l->addr)->sin_addr,
1461 str, sizeof(str)))
1462 fmt = "%s:%d";
1463 } else {
1464 if (inet_ntop(AF_INET6,
1465 (const void *)&((struct sockaddr_in6 *)(&l->addr))->sin6_addr,
1466 str, sizeof(str)))
1467 fmt = "[%s]:%d";
1468 }
1469
1470 if (fmt)
1471 chunk_printf(&msg, fmt, str, port);
1472 else
1473 chunk_printf(&msg, "(%s)", strerror(errno));
1474
1475 /* id */
1476 chunk_printf(&msg, ", id: %d", l->luid);
1477
1478 chunk_printf(&msg, "\"");
1479 }
1480
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001481 chunk_printf(&msg,
1482 /* name, queue */
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001483 "><a name=\"%s/+%s\"></a>"
Krzysztof Piotr Oledzki2ec025d2010-01-04 11:33:32 +01001484 "<a class=lfsb href=\"#%s/+%s\">%s</a></td><td colspan=3></td>"
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001485 /* sessions rate: current, max, limit */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001486 "<td colspan=3>&nbsp;</td>"
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001487 /* sessions: current, max, limit, total, lbtot */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001488 "<td>%s</td><td>%s</td><td>%s</td>"
1489 "<td>%s</td><td>&nbsp;</td>"
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001490 /* bytes: in, out */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001491 "<td>%s</td><td>%s</td>"
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001492 "",
Krzysztof Piotr Oledzki2ec025d2010-01-04 11:33:32 +01001493 px->id, l->name, px->id, l->name, l->name,
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001494 U2H3(l->nbconn), U2H4(l->counters->conn_max), U2H5(l->maxconn),
1495 U2H6(l->counters->cum_conn), U2H7(l->counters->bytes_in), U2H8(l->counters->bytes_out));
1496
1497 chunk_printf(&msg,
1498 /* denied: req, resp */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001499 "<td>%s</td><td>%s</td>"
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001500 /* errors: request, connect, response */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001501 "<td>%s</td><td></td><td></td>"
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001502 /* warnings: retries, redispatches */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001503 "<td></td><td></td>"
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001504 /* server status: reflect listener status */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001505 "<td class=ac>%s</td>"
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001506 /* rest of server: nothing */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001507 "<td class=ac colspan=8></td></tr>"
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001508 "",
1509 U2H0(l->counters->denied_req), U2H1(l->counters->denied_resp),
1510 U2H2(l->counters->failed_req),
1511 (l->nbconn < l->maxconn) ? "OPEN" : "FULL");
1512 } else {
1513 chunk_printf(&msg,
1514 /* pxid, name, queue cur, queue max, */
1515 "%s,%s,,,"
1516 /* sessions: current, max, limit, total */
1517 "%d,%d,%d,%lld,"
1518 /* bytes: in, out */
1519 "%lld,%lld,"
1520 /* denied: req, resp */
1521 "%lld,%lld,"
1522 /* errors: request, connect, response */
1523 "%lld,,,"
1524 /* warnings: retries, redispatches */
1525 ",,"
1526 /* server status: reflect listener status */
1527 "%s,"
1528 /* rest of server: nothing */
1529 ",,,,,,,,"
1530 /* pid, iid, sid, throttle, lbtot, tracked, type */
1531 "%d,%d,%d,,,,%d,"
1532 /* rate, rate_lim, rate_max */
1533 ",,,"
1534 /* check_status, check_code, check_duration */
1535 ",,,"
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02001536 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
1537 ",,,,,,"
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01001538 /* failed health analyses */
1539 ","
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001540 "\n",
1541 px->id, l->name,
1542 l->nbconn, l->counters->conn_max,
1543 l->maxconn, l->counters->cum_conn,
1544 l->counters->bytes_in, l->counters->bytes_out,
1545 l->counters->denied_req, l->counters->denied_resp,
1546 l->counters->failed_req,
1547 (l->nbconn < l->maxconn) ? "OPEN" : "FULL",
1548 relative_pid, px->uuid, l->luid, STATS_TYPE_SO);
1549 }
1550
1551 if (buffer_feed_chunk(rep, &msg) >= 0)
1552 return 0;
1553 }
1554
Willy Tarreau91861262007-10-17 17:06:05 +02001555 s->data_ctx.stats.sv = px->srv; /* may be NULL */
1556 s->data_ctx.stats.px_st = DATA_ST_PX_SV;
1557 /* fall through */
1558
1559 case DATA_ST_PX_SV:
1560 /* stats.sv has been initialized above */
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01001561 for (; s->data_ctx.stats.sv != NULL; s->data_ctx.stats.sv = sv->next) {
Willy Tarreau2ea81932007-11-30 12:04:38 +01001562 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 +02001563
Willy Tarreau4e33d862009-10-11 23:35:10 +02001564 if (buffer_almost_full(rep))
1565 return 0;
1566
Willy Tarreau91861262007-10-17 17:06:05 +02001567 sv = s->data_ctx.stats.sv;
1568
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001569 if (s->data_ctx.stats.flags & STAT_BOUND) {
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01001570 if (!(s->data_ctx.stats.type & (1 << STATS_TYPE_SV)))
1571 break;
1572
1573 if (s->data_ctx.stats.sid != -1 && sv->puid != s->data_ctx.stats.sid)
1574 continue;
1575 }
1576
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001577 if (sv->tracked)
1578 svs = sv->tracked;
1579 else
1580 svs = sv;
1581
Willy Tarreau91861262007-10-17 17:06:05 +02001582 /* FIXME: produce some small strings for "UP/DOWN x/y &#xxxx;" */
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001583 if (!(svs->state & SRV_CHECKED))
Willy Tarreau2ea81932007-11-30 12:04:38 +01001584 sv_state = 6;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001585 else if (svs->state & SRV_RUNNING) {
1586 if (svs->health == svs->rise + svs->fall - 1)
Willy Tarreau91861262007-10-17 17:06:05 +02001587 sv_state = 3; /* UP */
1588 else
1589 sv_state = 2; /* going down */
Willy Tarreau2ea81932007-11-30 12:04:38 +01001590
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001591 if (svs->state & SRV_GOINGDOWN)
Willy Tarreau2ea81932007-11-30 12:04:38 +01001592 sv_state += 2;
1593 }
Willy Tarreau91861262007-10-17 17:06:05 +02001594 else
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001595 if (svs->health)
Willy Tarreau91861262007-10-17 17:06:05 +02001596 sv_state = 1; /* going up */
1597 else
1598 sv_state = 0; /* DOWN */
1599
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001600 if ((sv_state == 0) && (s->data_ctx.stats.flags & STAT_HIDE_DOWN)) {
Willy Tarreau91861262007-10-17 17:06:05 +02001601 /* do not report servers which are DOWN */
1602 s->data_ctx.stats.sv = sv->next;
1603 continue;
1604 }
1605
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001606 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Willy Tarreau2ea81932007-11-30 12:04:38 +01001607 static char *srv_hlt_st[7] = { "DOWN", "DN %d/%d &uarr;",
1608 "UP %d/%d &darr;", "UP",
1609 "NOLB %d/%d &darr;", "NOLB",
1610 "<i>no check</i>" };
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001611 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001612 /* name */
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001613 "<tr class=\"%s%d\"><td class=ac",
1614 (sv->state & SRV_BACKUP) ? "backup" : "active", sv_state);
1615
1616 if (uri->flags&ST_SHLGNDS) {
1617 char str[INET6_ADDRSTRLEN];
1618
1619 chunk_printf(&msg, " title=\"IP: ");
1620
1621 /* IP */
1622 if (inet_ntop(sv->addr.sin_family, &sv->addr.sin_addr, str, sizeof(str)))
1623 chunk_printf(&msg, "%s:%d", str, htons(sv->addr.sin_port));
1624 else
1625 chunk_printf(&msg, "(%s)", strerror(errno));
1626
1627 /* id */
1628 chunk_printf(&msg, ", id: %d", sv->puid);
1629
1630 /* cookie */
1631 if (sv->cookie) {
1632 struct chunk src;
1633
1634 chunk_printf(&msg, ", cookie: '");
1635
1636 chunk_initlen(&src, sv->cookie, 0, strlen(sv->cookie));
1637 chunk_htmlencode(&msg, &src);
1638
1639 chunk_printf(&msg, "'");
1640 }
1641
1642 chunk_printf(&msg, "\"");
1643 }
1644
1645 chunk_printf(&msg,
1646 "><a name=\"%s/%s\"></a>"
Krzysztof Piotr Oledzki1f672852009-10-24 14:24:30 +02001647 "<a class=lfsb href=\"#%s/%s\">%s</a></td>"
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02001648 /* queue : current, max, limit */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001649 "<td>%s</td><td>%s</td><td>%s</td>"
Willy Tarreaua3e49422009-05-10 19:19:41 +02001650 /* sessions rate : current, max, limit */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001651 "<td>%s</td><td>%s</td><td></td>"
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02001652 /* sessions: current, max, limit */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001653 "<td>%s</td><td>%s</td><td>%s</td>"
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02001654 "<td"
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001655 "",
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001656 px->id, sv->id, px->id, sv->id, sv->id,
Willy Tarreauac68c5d2009-10-04 23:12:44 +02001657 U2H0(sv->nbpend), U2H1(sv->counters.nbpend_max), LIM2A2(sv->maxqueue, "-"),
1658 U2H3(read_freq_ctr(&sv->sess_per_sec)), U2H4(sv->counters.sps_max),
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02001659 U2H5(sv->cur_sess), U2H6(sv->counters.cur_sess_max), LIM2A7(sv->maxconn, "-"));
1660
1661 /* http response (via td title): 1xx, 2xx, 3xx, 4xx, 5xx, other */
1662 if (px->mode == PR_MODE_HTTP) {
1663 int i;
1664
1665 chunk_printf(&msg, " title=\"rsp codes:");
1666
1667 for (i = 1; i < 6; i++)
1668 chunk_printf(&msg, " %dxx=%lld,", i, sv->counters.p.http.rsp[i]);
1669
1670 chunk_printf(&msg, " other=%lld\"", sv->counters.p.http.rsp[0]);
1671 }
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001672
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001673 chunk_printf(&msg,
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02001674 /* sessions: total, lbtot */
1675 ">%s</td><td>%s</td>",
1676 U2H0(sv->counters.cum_sess), U2H1(sv->counters.cum_lbconn));
1677
1678 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001679 /* bytes : in, out */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001680 "<td>%s</td><td>%s</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001681 /* denied: req, resp */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001682 "<td></td><td>%s</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001683 /* errors : request, connect, response */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001684 "<td></td><td>%s</td><td>%s</td>\n"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001685 /* warnings: retries, redispatches */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001686 "<td>%lld</td><td>%lld</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001687 "",
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02001688 U2H0(sv->counters.bytes_in), U2H1(sv->counters.bytes_out),
1689 U2H2(sv->counters.failed_secu),
1690 U2H3(sv->counters.failed_conns), U2H4(sv->counters.failed_resp),
1691 sv->counters.retries, sv->counters.redispatches);
Willy Tarreaub1356cf2008-12-07 16:06:43 +01001692
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001693 /* status, lest check */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001694 chunk_printf(&msg, "<td class=ac>");
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001695
Krzysztof Piotr Oledzki034550b2010-01-05 18:44:44 +01001696 if (svs->state & SRV_CHECKED) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001697 chunk_printf(&msg, "%s ",
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001698 human_time(now.tv_sec - sv->last_change, 1));
1699
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001700 chunk_printf(&msg,
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001701 srv_hlt_st[sv_state],
1702 (svs->state & SRV_RUNNING) ? (svs->health - svs->rise + 1) : (svs->health),
1703 (svs->state & SRV_RUNNING) ? (svs->fall) : (svs->rise));
Krzysztof Piotr Oledzki034550b2010-01-05 18:44:44 +01001704 }
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +02001705
Krzysztof Piotr Oledzki034550b2010-01-05 18:44:44 +01001706 if (sv->state & SRV_CHECKED) {
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001707 chunk_printf(&msg, "</td><td class=ac title=\"%s",
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +02001708 get_check_status_description(sv->check_status));
1709
1710 if (*sv->check_desc) {
1711 struct chunk src;
1712
1713 chunk_printf(&msg, ": ");
1714
1715 chunk_initlen(&src, sv->check_desc, 0, strlen(sv->check_desc));
1716 chunk_htmlencode(&msg, &src);
1717 }
Krzysztof Piotr Oledzki034550b2010-01-05 18:44:44 +01001718
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001719 chunk_printf(&msg, "\"> %s%s",
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001720 tv_iszero(&sv->check_start)?"":"* ",
1721 get_check_status_info(sv->check_status));
1722
1723 if (sv->check_status >= HCHK_STATUS_L57DATA)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001724 chunk_printf(&msg, "/%d", sv->check_code);
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001725
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01001726 if (sv->check_status >= HCHK_STATUS_CHECKED && sv->check_duration >= 0)
Krzysztof Piotr Oledzki034550b2010-01-05 18:44:44 +01001727 chunk_printf(&msg, " in %lums", sv->check_duration);
1728 } else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001729 chunk_printf(&msg, "</td><td>");
Willy Tarreau91861262007-10-17 17:06:05 +02001730
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001731 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001732 /* weight */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001733 "</td><td class=ac>%d</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001734 /* act, bck */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001735 "<td class=ac>%s</td><td class=ac>%s</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001736 "",
Willy Tarreau5542af62007-12-03 02:04:00 +01001737 (sv->eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
Willy Tarreau91861262007-10-17 17:06:05 +02001738 (sv->state & SRV_BACKUP) ? "-" : "Y",
1739 (sv->state & SRV_BACKUP) ? "Y" : "-");
1740
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001741 /* check failures: unique, fatal, down time */
Krzysztof Piotr Oledzki748196e2010-01-04 00:48:43 +01001742 if (sv->state & SRV_CHECKED) {
1743 chunk_printf(&msg, "<td title=\"Failed Health Checks%s\">%lld",
1744 svs->observe?"/Health Analyses":"", svs->counters.failed_checks);
1745
1746 if (svs->observe)
1747 chunk_printf(&msg, "/%lld", svs->counters.failed_hana);
1748
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001749 chunk_printf(&msg,
Krzysztof Piotr Oledzki748196e2010-01-04 00:48:43 +01001750 "</td>"
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01001751 "<td>%lld</td><td>%s</td>"
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001752 "",
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01001753 svs->counters.down_trans, human_time(srv_downtime(sv), 1));
Krzysztof Piotr Oledzki748196e2010-01-04 00:48:43 +01001754 } else if (sv != svs)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001755 chunk_printf(&msg,
Krzysztof Piotr Oledzki88a14af2010-01-05 18:33:01 +01001756 "<td class=ac colspan=3><a class=lfsb href=\"#%s/%s\">via %s/%s<a></td>",
1757 svs->proxy->id, svs->id, svs->proxy->id, svs->id);
Willy Tarreau55bb8452007-10-17 18:44:57 +02001758 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001759 chunk_printf(&msg,
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001760 "<td colspan=3></td>");
1761
1762 /* throttle */
1763 if ((sv->state & SRV_WARMINGUP) &&
1764 now.tv_sec < sv->last_change + sv->slowstart &&
1765 now.tv_sec >= sv->last_change) {
1766 unsigned int ratio;
1767 ratio = MAX(1, 100 * (now.tv_sec - sv->last_change) / sv->slowstart);
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001768 chunk_printf(&msg,
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001769 "<td class=ac>%d %%</td></tr>\n", ratio);
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001770 } else {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001771 chunk_printf(&msg,
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001772 "<td class=ac>-</td></tr>\n");
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001773 }
Willy Tarreau55bb8452007-10-17 18:44:57 +02001774 } else {
Willy Tarreau2ea81932007-11-30 12:04:38 +01001775 static char *srv_hlt_st[7] = { "DOWN,", "DOWN %d/%d,",
1776 "UP %d/%d,", "UP,",
1777 "NOLB %d/%d,", "NOLB,",
1778 "no check," };
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001779 chunk_printf(&msg,
Willy Tarreau55bb8452007-10-17 18:44:57 +02001780 /* pxid, name */
1781 "%s,%s,"
1782 /* queue : current, max */
1783 "%d,%d,"
Willy Tarreauddbb82f2007-12-05 10:34:49 +01001784 /* sessions : current, max, limit, total */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001785 "%d,%d,%s,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001786 /* bytes : in, out */
1787 "%lld,%lld,"
1788 /* denied: req, resp */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001789 ",%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001790 /* errors : request, connect, response */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001791 ",%lld,%lld,"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001792 /* warnings: retries, redispatches */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001793 "%lld,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001794 "",
1795 px->id, sv->id,
Willy Tarreauac68c5d2009-10-04 23:12:44 +02001796 sv->nbpend, sv->counters.nbpend_max,
1797 sv->cur_sess, sv->counters.cur_sess_max, LIM2A0(sv->maxconn, ""), sv->counters.cum_sess,
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02001798 sv->counters.bytes_in, sv->counters.bytes_out,
1799 sv->counters.failed_secu,
1800 sv->counters.failed_conns, sv->counters.failed_resp,
1801 sv->counters.retries, sv->counters.redispatches);
Willy Tarreaub1356cf2008-12-07 16:06:43 +01001802
Willy Tarreau55bb8452007-10-17 18:44:57 +02001803 /* status */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001804 chunk_printf(&msg,
Willy Tarreau55bb8452007-10-17 18:44:57 +02001805 srv_hlt_st[sv_state],
1806 (sv->state & SRV_RUNNING) ? (sv->health - sv->rise + 1) : (sv->health),
1807 (sv->state & SRV_RUNNING) ? (sv->fall) : (sv->rise));
Willy Tarreau91861262007-10-17 17:06:05 +02001808
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001809 chunk_printf(&msg,
Willy Tarreau55bb8452007-10-17 18:44:57 +02001810 /* weight, active, backup */
1811 "%d,%d,%d,"
1812 "",
Willy Tarreau5542af62007-12-03 02:04:00 +01001813 (sv->eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
Willy Tarreau55bb8452007-10-17 18:44:57 +02001814 (sv->state & SRV_BACKUP) ? 0 : 1,
1815 (sv->state & SRV_BACKUP) ? 1 : 0);
1816
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001817 /* check failures: unique, fatal; last change, total downtime */
Willy Tarreau55bb8452007-10-17 18:44:57 +02001818 if (sv->state & SRV_CHECKED)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001819 chunk_printf(&msg,
Willy Tarreau3b88d442009-04-11 20:44:08 +02001820 "%lld,%lld,%d,%d,",
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02001821 sv->counters.failed_checks, sv->counters.down_trans,
Willy Tarreau1772ece2009-04-03 14:49:12 +02001822 (int)(now.tv_sec - sv->last_change), srv_downtime(sv));
Willy Tarreau55bb8452007-10-17 18:44:57 +02001823 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001824 chunk_printf(&msg,
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02001825 ",,,,");
1826
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001827 /* queue limit, pid, iid, sid, */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001828 chunk_printf(&msg,
Willy Tarreaudcd47712007-11-04 23:35:08 +01001829 "%s,"
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001830 "%d,%d,%d,",
Willy Tarreaudcd47712007-11-04 23:35:08 +01001831 LIM2A0(sv->maxqueue, ""),
1832 relative_pid, px->uuid, sv->puid);
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001833
1834 /* throttle */
1835 if ((sv->state & SRV_WARMINGUP) &&
1836 now.tv_sec < sv->last_change + sv->slowstart &&
1837 now.tv_sec >= sv->last_change) {
1838 unsigned int ratio;
1839 ratio = MAX(1, 100 * (now.tv_sec - sv->last_change) / sv->slowstart);
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001840 chunk_printf(&msg, "%d", ratio);
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001841 }
1842
Willy Tarreauddbb82f2007-12-05 10:34:49 +01001843 /* sessions: lbtot */
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02001844 chunk_printf(&msg, ",%lld,", sv->counters.cum_lbconn);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001845
1846 /* tracked */
1847 if (sv->tracked)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001848 chunk_printf(&msg, "%s/%s,",
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001849 sv->tracked->proxy->id, sv->tracked->id);
1850 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001851 chunk_printf(&msg, ",");
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001852
Willy Tarreau7f062c42009-03-05 18:43:00 +01001853 /* type */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001854 chunk_printf(&msg, "%d,", STATS_TYPE_SV);
Willy Tarreau7f062c42009-03-05 18:43:00 +01001855
1856 /* rate */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001857 chunk_printf(&msg, "%u,,%u,",
Willy Tarreau8f208ec2009-05-10 19:01:49 +02001858 read_freq_ctr(&sv->sess_per_sec),
Willy Tarreauac68c5d2009-10-04 23:12:44 +02001859 sv->counters.sps_max);
Willy Tarreau7f062c42009-03-05 18:43:00 +01001860
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001861 if (sv->state & SRV_CHECKED) {
1862 /* check_status */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001863 chunk_printf(&msg, "%s,", get_check_status_info(sv->check_status));
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001864
1865 /* check_code */
1866 if (sv->check_status >= HCHK_STATUS_L57DATA)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001867 chunk_printf(&msg, "%u,", sv->check_code);
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001868 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001869 chunk_printf(&msg, ",");
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001870
1871 /* check_duration */
Krzysztof Piotr Oledzki034550b2010-01-05 18:44:44 +01001872 if (sv->check_status >= HCHK_STATUS_CHECKED)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001873 chunk_printf(&msg, "%lu,", sv->check_duration);
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001874 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001875 chunk_printf(&msg, ",");
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001876
1877 } else {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001878 chunk_printf(&msg, ",,,");
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001879 }
1880
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02001881 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
1882 if (px->mode == PR_MODE_HTTP) {
1883 int i;
1884
1885 for (i=1; i<6; i++)
1886 chunk_printf(&msg, "%lld,", sv->counters.p.http.rsp[i]);
1887
1888 chunk_printf(&msg, "%lld,", sv->counters.p.http.rsp[0]);
1889 } else {
1890 chunk_printf(&msg, ",,,,,,");
1891 }
1892
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01001893 /* failed health analyses */
1894 chunk_printf(&msg, "%lld,", sv->counters.failed_hana);
1895
Willy Tarreau7f062c42009-03-05 18:43:00 +01001896 /* finish with EOL */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001897 chunk_printf(&msg, "\n");
Willy Tarreau55bb8452007-10-17 18:44:57 +02001898 }
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001899 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreau91861262007-10-17 17:06:05 +02001900 return 0;
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01001901 } /* for sv */
Willy Tarreau91861262007-10-17 17:06:05 +02001902
1903 s->data_ctx.stats.px_st = DATA_ST_PX_BE;
1904 /* fall through */
1905
1906 case DATA_ST_PX_BE:
1907 /* print the backend */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001908 if ((px->cap & PR_CAP_BE) &&
1909 (!(s->data_ctx.stats.flags & STAT_BOUND) || (s->data_ctx.stats.type & (1 << STATS_TYPE_BE)))) {
1910 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001911 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001912 /* name */
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001913 "<tr class=\"backend\"><td class=ac");
1914
1915 if (uri->flags&ST_SHLGNDS) {
1916 /* balancing */
Krzysztof Piotr Oledzkic0f0c862010-01-06 15:03:18 +01001917 chunk_printf(&msg, " title=\"balancing: %s",
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001918 backend_lb_algo_str(px->lbprm.algo & BE_LB_ALGO));
Krzysztof Piotr Oledzkic0f0c862010-01-06 15:03:18 +01001919
1920 /* cookie */
1921 if (px->cookie_name) {
1922 struct chunk src;
1923
1924 chunk_printf(&msg, ", cookie: '");
1925
1926 chunk_initlen(&src, px->cookie_name, 0, strlen(px->cookie_name));
1927 chunk_htmlencode(&msg, &src);
1928
1929 chunk_printf(&msg, "'");
1930 }
1931
1932 chunk_printf(&msg, "\"");
1933
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001934 }
1935
1936 chunk_printf(&msg,
1937 "><a name=\"%s/Backend\"></a>"
Krzysztof Piotr Oledzki1f672852009-10-24 14:24:30 +02001938 "<a class=lfsb href=\"#%s/Backend\">Backend</a></td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001939 /* queue : current, max */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001940 "<td>%s</td><td>%s</td><td></td>"
Willy Tarreaua3e49422009-05-10 19:19:41 +02001941 /* sessions rate : current, max, limit */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001942 "<td>%s</td><td>%s</td><td></td>"
Willy Tarreaua3e49422009-05-10 19:19:41 +02001943 "",
Krzysztof Piotr Oledzki1f672852009-10-24 14:24:30 +02001944 px->id, px->id,
Willy Tarreauac68c5d2009-10-04 23:12:44 +02001945 U2H0(px->nbpend) /* or px->totpend ? */, U2H1(px->counters.nbpend_max),
1946 U2H2(read_freq_ctr(&px->be_sess_per_sec)), U2H3(px->counters.be_sps_max));
Willy Tarreaua3e49422009-05-10 19:19:41 +02001947
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001948 chunk_printf(&msg,
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02001949 /* sessions: current, max, limit */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001950 "<td>%s</td><td>%s</td><td>%s</td>"
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02001951 "<td"
1952 "",
1953 U2H2(px->beconn), U2H3(px->counters.beconn_max), U2H4(px->fullconn));
1954
1955 /* http response (via td title): 1xx, 2xx, 3xx, 4xx, 5xx, other */
1956 if (px->mode == PR_MODE_HTTP) {
1957 int i;
1958
1959 chunk_printf(&msg, " title=\"rsp codes:");
1960
1961 for (i = 1; i < 6; i++)
1962 chunk_printf(&msg, " %dxx=%lld", i, px->counters.p.http.rsp[i]);
1963
1964 chunk_printf(&msg, " other=%lld\"", px->counters.p.http.rsp[0]);
1965 }
1966
1967 chunk_printf(&msg,
1968 /* sessions: total, lbtot */
1969 ">%s</td><td>%s</td>"
1970 /* bytes: in, out */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001971 "<td>%s</td><td>%s</td>"
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001972 "",
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02001973 U2H6(px->counters.cum_beconn), U2H7(px->counters.cum_lbconn),
1974 U2H8(px->counters.bytes_in), U2H9(px->counters.bytes_out));
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001975
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001976 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001977 /* denied: req, resp */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001978 "<td>%s</td><td>%s</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001979 /* errors : request, connect, response */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001980 "<td></td><td>%s</td><td>%s</td>\n"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001981 /* warnings: retries, redispatches */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001982 "<td>%lld</td><td>%lld</td>"
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001983 /* backend status: reflect backend status (up/down): we display UP
Willy Tarreau91861262007-10-17 17:06:05 +02001984 * if the backend has known working servers or if it has no server at
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001985 * all (eg: for stats). Then we display the total weight, number of
Willy Tarreau91861262007-10-17 17:06:05 +02001986 * active and backups. */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001987 "<td class=ac>%s %s</td><td class=ac>&nbsp;</td><td class=ac>%d</td>"
1988 "<td class=ac>%d</td><td class=ac>%d</td>"
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001989 "",
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02001990 U2H0(px->counters.denied_req), U2H1(px->counters.denied_resp),
1991 U2H2(px->counters.failed_conns), U2H3(px->counters.failed_resp),
1992 px->counters.retries, px->counters.redispatches,
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001993 human_time(now.tv_sec - px->last_change, 1),
Willy Tarreau2ea81932007-11-30 12:04:38 +01001994 (px->lbprm.tot_weight > 0 || !px->srv) ? "UP" :
1995 "<font color=\"red\"><b>DOWN</b></font>",
Willy Tarreau5542af62007-12-03 02:04:00 +01001996 (px->lbprm.tot_weight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
Willy Tarreau20697042007-11-15 23:26:18 +01001997 px->srv_act, px->srv_bck);
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001998
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001999 chunk_printf(&msg,
Willy Tarreau4bab24d2007-11-30 18:16:29 +01002000 /* rest of backend: nothing, down transitions, total downtime, throttle */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002001 "<td class=ac>&nbsp;</td><td>%d</td>"
2002 "<td>%s</td>"
Willy Tarreau4bab24d2007-11-30 18:16:29 +01002003 "<td></td>"
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002004 "</tr>",
2005 px->down_trans,
2006 px->srv?human_time(be_downtime(px), 1):"&nbsp;");
Willy Tarreau55bb8452007-10-17 18:44:57 +02002007 } else {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002008 chunk_printf(&msg,
Willy Tarreau55bb8452007-10-17 18:44:57 +02002009 /* pxid, name */
2010 "%s,BACKEND,"
2011 /* queue : current, max */
2012 "%d,%d,"
Willy Tarreauddbb82f2007-12-05 10:34:49 +01002013 /* sessions : current, max, limit, total */
Willy Tarreau3b88d442009-04-11 20:44:08 +02002014 "%d,%d,%d,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02002015 /* bytes : in, out */
2016 "%lld,%lld,"
2017 /* denied: req, resp */
Willy Tarreau3b88d442009-04-11 20:44:08 +02002018 "%lld,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02002019 /* errors : request, connect, response */
Willy Tarreau3b88d442009-04-11 20:44:08 +02002020 ",%lld,%lld,"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02002021 /* warnings: retries, redispatches */
Willy Tarreau3b88d442009-04-11 20:44:08 +02002022 "%lld,%lld,"
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002023 /* backend status: reflect backend status (up/down): we display UP
Willy Tarreau55bb8452007-10-17 18:44:57 +02002024 * if the backend has known working servers or if it has no server at
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002025 * all (eg: for stats). Then we display the total weight, number of
Willy Tarreau55bb8452007-10-17 18:44:57 +02002026 * active and backups. */
2027 "%s,"
2028 "%d,%d,%d,"
Willy Tarreau4bab24d2007-11-30 18:16:29 +01002029 /* rest of backend: nothing, down transitions, last change, total downtime */
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02002030 ",%d,%d,%d,,"
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01002031 /* pid, iid, sid, throttle, lbtot, tracked, type */
Willy Tarreau3b88d442009-04-11 20:44:08 +02002032 "%d,%d,0,,%lld,,%d,"
Willy Tarreau8f208ec2009-05-10 19:01:49 +02002033 /* rate, rate_lim, rate_max, */
2034 "%u,,%u,"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02002035 /* check_status, check_code, check_duration */
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02002036 ",,,",
Willy Tarreau55bb8452007-10-17 18:44:57 +02002037 px->id,
Willy Tarreauac68c5d2009-10-04 23:12:44 +02002038 px->nbpend /* or px->totpend ? */, px->counters.nbpend_max,
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02002039 px->beconn, px->counters.beconn_max, px->fullconn, px->counters.cum_beconn,
2040 px->counters.bytes_in, px->counters.bytes_out,
2041 px->counters.denied_req, px->counters.denied_resp,
2042 px->counters.failed_conns, px->counters.failed_resp,
2043 px->counters.retries, px->counters.redispatches,
Willy Tarreau20697042007-11-15 23:26:18 +01002044 (px->lbprm.tot_weight > 0 || !px->srv) ? "UP" : "DOWN",
Willy Tarreau5542af62007-12-03 02:04:00 +01002045 (px->lbprm.tot_weight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
Willy Tarreau20697042007-11-15 23:26:18 +01002046 px->srv_act, px->srv_bck,
Willy Tarreau1772ece2009-04-03 14:49:12 +02002047 px->down_trans, (int)(now.tv_sec - px->last_change),
Willy Tarreau20697042007-11-15 23:26:18 +01002048 px->srv?be_downtime(px):0,
Willy Tarreauddbb82f2007-12-05 10:34:49 +01002049 relative_pid, px->uuid,
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02002050 px->counters.cum_lbconn, STATS_TYPE_BE,
Willy Tarreau8f208ec2009-05-10 19:01:49 +02002051 read_freq_ctr(&px->be_sess_per_sec),
Willy Tarreauac68c5d2009-10-04 23:12:44 +02002052 px->counters.be_sps_max);
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02002053
2054 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
2055 if (px->mode == PR_MODE_HTTP) {
2056 int i;
2057
2058 for (i=1; i<6; i++)
2059 chunk_printf(&msg, "%lld,", px->counters.p.http.rsp[i]);
2060
2061 chunk_printf(&msg, "%lld,", px->counters.p.http.rsp[0]);
2062 } else {
2063 chunk_printf(&msg, ",,,,,,");
2064 }
2065
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01002066 /* failed health analyses */
2067 chunk_printf(&msg, ",");
2068
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02002069 /* finish with EOL */
2070 chunk_printf(&msg, "\n");
2071
Willy Tarreau55bb8452007-10-17 18:44:57 +02002072 }
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002073 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreau91861262007-10-17 17:06:05 +02002074 return 0;
2075 }
Willy Tarreaub1356cf2008-12-07 16:06:43 +01002076
Willy Tarreau91861262007-10-17 17:06:05 +02002077 s->data_ctx.stats.px_st = DATA_ST_PX_END;
2078 /* fall through */
2079
2080 case DATA_ST_PX_END:
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01002081 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002082 chunk_printf(&msg, "</table><p>\n");
Willy Tarreau91861262007-10-17 17:06:05 +02002083
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002084 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreau55bb8452007-10-17 18:44:57 +02002085 return 0;
2086 }
Willy Tarreau91861262007-10-17 17:06:05 +02002087
2088 s->data_ctx.stats.px_st = DATA_ST_PX_FIN;
2089 /* fall through */
2090
2091 case DATA_ST_PX_FIN:
2092 return 1;
2093
2094 default:
2095 /* unknown state, we should put an abort() here ! */
2096 return 1;
2097 }
2098}
2099
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002100
2101/* This function is called to send output to the response buffer.
2102 * It dumps the sessions states onto the output buffer <rep>.
2103 * Expects to be called with client socket shut down on input.
2104 * s->data_ctx must have been zeroed first, and the flags properly set.
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02002105 * It returns 0 as long as it does not complete, non-zero upon completion.
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002106 */
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02002107int stats_dump_sess_to_buffer(struct session *s, struct buffer *rep)
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002108{
2109 struct chunk msg;
2110
2111 if (unlikely(rep->flags & (BF_WRITE_ERROR|BF_SHUTW))) {
2112 /* If we're forced to shut down, we might have to remove our
2113 * reference to the last session being dumped.
2114 */
2115 if (s->data_state == DATA_ST_LIST) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +01002116 if (!LIST_ISEMPTY(&s->data_ctx.sess.bref.users)) {
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002117 LIST_DEL(&s->data_ctx.sess.bref.users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +01002118 LIST_INIT(&s->data_ctx.sess.bref.users);
2119 }
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002120 }
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02002121 return 1;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002122 }
2123
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002124 chunk_init(&msg, trash, sizeof(trash));
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002125
2126 switch (s->data_state) {
2127 case DATA_ST_INIT:
2128 /* the function had not been called yet, let's prepare the
2129 * buffer for a response. We initialize the current session
Willy Tarreaufd3828e2009-02-22 15:17:24 +01002130 * pointer to the first in the global list. When a target
2131 * session is being destroyed, it is responsible for updating
2132 * this pointer. We know we have reached the end when this
2133 * pointer points back to the head of the sessions list.
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002134 */
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002135 LIST_INIT(&s->data_ctx.sess.bref.users);
2136 s->data_ctx.sess.bref.ref = sessions.n;
2137 s->data_state = DATA_ST_LIST;
2138 /* fall through */
2139
2140 case DATA_ST_LIST:
Willy Tarreaufd3828e2009-02-22 15:17:24 +01002141 /* first, let's detach the back-ref from a possible previous session */
2142 if (!LIST_ISEMPTY(&s->data_ctx.sess.bref.users)) {
2143 LIST_DEL(&s->data_ctx.sess.bref.users);
2144 LIST_INIT(&s->data_ctx.sess.bref.users);
2145 }
2146
2147 /* and start from where we stopped */
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002148 while (s->data_ctx.sess.bref.ref != &sessions) {
2149 char pn[INET6_ADDRSTRLEN + strlen(":65535")];
2150 struct session *curr_sess;
2151
2152 curr_sess = LIST_ELEM(s->data_ctx.sess.bref.ref, struct session *, list);
2153
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002154 chunk_printf(&msg,
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002155 "%p: proto=%s",
2156 curr_sess,
2157 curr_sess->listener->proto->name);
2158
2159 switch (curr_sess->listener->proto->sock_family) {
2160 case AF_INET:
2161 inet_ntop(AF_INET,
2162 (const void *)&((struct sockaddr_in *)&curr_sess->cli_addr)->sin_addr,
2163 pn, sizeof(pn));
2164
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002165 chunk_printf(&msg,
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002166 " src=%s:%d fe=%s be=%s srv=%s",
2167 pn,
2168 ntohs(((struct sockaddr_in *)&curr_sess->cli_addr)->sin_port),
2169 curr_sess->fe->id,
2170 curr_sess->be->id,
2171 curr_sess->srv ? curr_sess->srv->id : "<none>"
2172 );
2173 break;
2174 case AF_INET6:
2175 inet_ntop(AF_INET6,
2176 (const void *)&((struct sockaddr_in6 *)(&curr_sess->cli_addr))->sin6_addr,
2177 pn, sizeof(pn));
2178
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002179 chunk_printf(&msg,
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002180 " src=%s:%d fe=%s be=%s srv=%s",
2181 pn,
2182 ntohs(((struct sockaddr_in6 *)&curr_sess->cli_addr)->sin6_port),
2183 curr_sess->fe->id,
2184 curr_sess->be->id,
2185 curr_sess->srv ? curr_sess->srv->id : "<none>"
2186 );
2187
2188 break;
2189 case AF_UNIX:
2190 /* no more information to print right now */
2191 break;
2192 }
2193
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002194 chunk_printf(&msg,
Willy Tarreau65671ab2009-10-04 14:24:59 +02002195 " ts=%02x age=%s calls=%d",
2196 curr_sess->task->state,
Willy Tarreau3884cba2009-03-28 17:54:35 +01002197 human_time(now.tv_sec - curr_sess->logs.tv_accept.tv_sec, 1),
2198 curr_sess->task->calls);
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002199
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002200 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01002201 " rq[f=%06xh,l=%d,an=%02xh,rx=%s",
2202 curr_sess->req->flags,
2203 curr_sess->req->l,
2204 curr_sess->req->analysers,
2205 curr_sess->req->rex ?
2206 human_time(TICKS_TO_MS(curr_sess->req->rex - now_ms),
2207 TICKS_TO_MS(1000)) : "");
2208
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002209 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01002210 ",wx=%s",
2211 curr_sess->req->wex ?
2212 human_time(TICKS_TO_MS(curr_sess->req->wex - now_ms),
2213 TICKS_TO_MS(1000)) : "");
2214
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002215 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01002216 ",ax=%s]",
2217 curr_sess->req->analyse_exp ?
2218 human_time(TICKS_TO_MS(curr_sess->req->analyse_exp - now_ms),
2219 TICKS_TO_MS(1000)) : "");
2220
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002221 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01002222 " rp[f=%06xh,l=%d,an=%02xh,rx=%s",
2223 curr_sess->rep->flags,
2224 curr_sess->rep->l,
2225 curr_sess->rep->analysers,
2226 curr_sess->rep->rex ?
2227 human_time(TICKS_TO_MS(curr_sess->rep->rex - now_ms),
2228 TICKS_TO_MS(1000)) : "");
2229
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002230 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01002231 ",wx=%s",
2232 curr_sess->rep->wex ?
2233 human_time(TICKS_TO_MS(curr_sess->rep->wex - now_ms),
2234 TICKS_TO_MS(1000)) : "");
2235
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002236 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01002237 ",ax=%s]",
2238 curr_sess->rep->analyse_exp ?
2239 human_time(TICKS_TO_MS(curr_sess->rep->analyse_exp - now_ms),
2240 TICKS_TO_MS(1000)) : "");
2241
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002242 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01002243 " s0=[%d,%1xh,fd=%d,ex=%s]",
2244 curr_sess->si[0].state,
2245 curr_sess->si[0].flags,
2246 curr_sess->si[0].fd,
2247 curr_sess->si[0].exp ?
2248 human_time(TICKS_TO_MS(curr_sess->si[0].exp - now_ms),
2249 TICKS_TO_MS(1000)) : "");
2250
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002251 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01002252 " s1=[%d,%1xh,fd=%d,ex=%s]",
2253 curr_sess->si[1].state,
2254 curr_sess->si[1].flags,
2255 curr_sess->si[1].fd,
2256 curr_sess->si[1].exp ?
2257 human_time(TICKS_TO_MS(curr_sess->si[1].exp - now_ms),
2258 TICKS_TO_MS(1000)) : "");
2259
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002260 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01002261 " exp=%s",
2262 curr_sess->task->expire ?
2263 human_time(TICKS_TO_MS(curr_sess->task->expire - now_ms),
2264 TICKS_TO_MS(1000)) : "");
Willy Tarreau4726f532009-03-07 17:25:21 +01002265 if (task_in_rq(curr_sess->task))
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002266 chunk_printf(&msg, " run(nice=%d)", curr_sess->task->nice);
Willy Tarreauc6dcad62009-03-29 00:18:14 +01002267
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002268 chunk_printf(&msg, "\n");
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002269
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02002270 if (buffer_feed_chunk(rep, &msg) >= 0) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +01002271 /* let's try again later from this session. We add ourselves into
2272 * this session's users so that it can remove us upon termination.
2273 */
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002274 LIST_ADDQ(&curr_sess->back_refs, &s->data_ctx.sess.bref.users);
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02002275 return 0;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002276 }
2277
2278 s->data_ctx.sess.bref.ref = curr_sess->list.n;
2279 }
2280 s->data_state = DATA_ST_FIN;
2281 /* fall through */
2282
2283 default:
2284 s->data_state = DATA_ST_FIN;
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02002285 return 1;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002286 }
2287}
2288
Willy Tarreau74808cb2009-03-04 15:53:18 +01002289/* print a line of error buffer (limited to 70 bytes) to <out>. The format is :
2290 * <2 spaces> <offset=5 digits> <space or plus> <space> <70 chars max> <\n>
2291 * which is 60 chars per line. Non-printable chars \t, \n, \r and \e are
2292 * encoded in C format. Other non-printable chars are encoded "\xHH". Original
2293 * lines are respected within the limit of 70 output chars. Lines that are
2294 * continuation of a previous truncated line begin with "+" instead of " "
2295 * after the offset. The new pointer is returned.
2296 */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002297static int dump_error_line(struct chunk *out, struct error_snapshot *err,
2298 int *line, int ptr)
Willy Tarreau74808cb2009-03-04 15:53:18 +01002299{
2300 int end;
2301 unsigned char c;
2302
2303 end = out->len + 80;
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002304 if (end > out->size)
Willy Tarreau74808cb2009-03-04 15:53:18 +01002305 return ptr;
2306
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002307 chunk_printf(out, " %05d%c ", ptr, (ptr == *line) ? ' ' : '+');
Willy Tarreau74808cb2009-03-04 15:53:18 +01002308
Willy Tarreau61b34732009-10-03 23:49:35 +02002309 while (ptr < err->len && ptr < sizeof(err->buf)) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01002310 c = err->buf[ptr];
Willy Tarreau787bbd92009-03-12 08:18:33 +01002311 if (isprint(c) && isascii(c) && c != '\\') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01002312 if (out->len > end - 2)
2313 break;
2314 out->str[out->len++] = c;
Willy Tarreau787bbd92009-03-12 08:18:33 +01002315 } else if (c == '\t' || c == '\n' || c == '\r' || c == '\e' || c == '\\') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01002316 if (out->len > end - 3)
2317 break;
2318 out->str[out->len++] = '\\';
2319 switch (c) {
2320 case '\t': c = 't'; break;
2321 case '\n': c = 'n'; break;
2322 case '\r': c = 'r'; break;
2323 case '\e': c = 'e'; break;
Willy Tarreau787bbd92009-03-12 08:18:33 +01002324 case '\\': c = '\\'; break;
Willy Tarreau74808cb2009-03-04 15:53:18 +01002325 }
2326 out->str[out->len++] = c;
2327 } else {
2328 if (out->len > end - 5)
2329 break;
2330 out->str[out->len++] = '\\';
2331 out->str[out->len++] = 'x';
2332 out->str[out->len++] = hextab[(c >> 4) & 0xF];
2333 out->str[out->len++] = hextab[c & 0xF];
2334 }
2335 if (err->buf[ptr++] == '\n') {
2336 /* we had a line break, let's return now */
2337 out->str[out->len++] = '\n';
2338 *line = ptr;
2339 return ptr;
2340 }
2341 }
2342 /* we have an incomplete line, we return it as-is */
2343 out->str[out->len++] = '\n';
2344 return ptr;
2345}
2346
2347/* This function is called to send output to the response buffer.
2348 * It dumps the errors logged in proxies onto the output buffer <rep>.
2349 * Expects to be called with client socket shut down on input.
2350 * s->data_ctx must have been zeroed first, and the flags properly set.
Willy Tarreau61b34732009-10-03 23:49:35 +02002351 * It returns 0 as long as it does not complete, non-zero upon completion.
Willy Tarreau74808cb2009-03-04 15:53:18 +01002352 */
Willy Tarreau61b34732009-10-03 23:49:35 +02002353int stats_dump_errors_to_buffer(struct session *s, struct buffer *rep)
Willy Tarreau74808cb2009-03-04 15:53:18 +01002354{
2355 extern const char *monthname[12];
2356 struct chunk msg;
2357
Willy Tarreau61b34732009-10-03 23:49:35 +02002358 if (unlikely(rep->flags & (BF_WRITE_ERROR|BF_SHUTW)))
2359 return 1;
Willy Tarreau74808cb2009-03-04 15:53:18 +01002360
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002361 chunk_init(&msg, trash, sizeof(trash));
Willy Tarreau74808cb2009-03-04 15:53:18 +01002362
2363 if (!s->data_ctx.errors.px) {
2364 /* the function had not been called yet, let's prepare the
2365 * buffer for a response.
2366 */
Willy Tarreau74808cb2009-03-04 15:53:18 +01002367 s->data_ctx.errors.px = proxy;
2368 s->data_ctx.errors.buf = 0;
2369 s->data_ctx.errors.bol = 0;
2370 s->data_ctx.errors.ptr = -1;
2371 }
2372
2373 /* we have two inner loops here, one for the proxy, the other one for
2374 * the buffer.
2375 */
2376 while (s->data_ctx.errors.px) {
2377 struct error_snapshot *es;
2378
2379 if (s->data_ctx.errors.buf == 0)
2380 es = &s->data_ctx.errors.px->invalid_req;
2381 else
2382 es = &s->data_ctx.errors.px->invalid_rep;
2383
2384 if (!es->when.tv_sec)
2385 goto next;
2386
2387 if (s->data_ctx.errors.iid >= 0 &&
2388 s->data_ctx.errors.px->uuid != s->data_ctx.errors.iid &&
2389 es->oe->uuid != s->data_ctx.errors.iid)
2390 goto next;
2391
2392 if (s->data_ctx.errors.ptr < 0) {
2393 /* just print headers now */
2394
2395 char pn[INET6_ADDRSTRLEN];
2396 struct tm tm;
2397
2398 get_localtime(es->when.tv_sec, &tm);
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002399 chunk_printf(&msg, "\n[%02d/%s/%04d:%02d:%02d:%02d.%03d]",
Willy Tarreau74808cb2009-03-04 15:53:18 +01002400 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
Willy Tarreau1772ece2009-04-03 14:49:12 +02002401 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(es->when.tv_usec/1000));
Willy Tarreau74808cb2009-03-04 15:53:18 +01002402
2403
2404 if (es->src.ss_family == AF_INET)
2405 inet_ntop(AF_INET,
2406 (const void *)&((struct sockaddr_in *)&es->src)->sin_addr,
2407 pn, sizeof(pn));
2408 else
2409 inet_ntop(AF_INET6,
2410 (const void *)&((struct sockaddr_in6 *)(&es->src))->sin6_addr,
2411 pn, sizeof(pn));
2412
2413 switch (s->data_ctx.errors.buf) {
2414 case 0:
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002415 chunk_printf(&msg,
Willy Tarreau74808cb2009-03-04 15:53:18 +01002416 " frontend %s (#%d): invalid request\n"
2417 " src %s, session #%d, backend %s (#%d), server %s (#%d)\n"
2418 " request length %d bytes, error at position %d:\n\n",
2419 s->data_ctx.errors.px->id, s->data_ctx.errors.px->uuid,
2420 pn, es->sid, es->oe->id, es->oe->uuid,
2421 es->srv ? es->srv->id : "<NONE>",
2422 es->srv ? es->srv->puid : -1,
2423 es->len, es->pos);
2424 break;
2425 case 1:
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002426 chunk_printf(&msg,
Willy Tarreau74808cb2009-03-04 15:53:18 +01002427 " backend %s (#%d) : invalid response\n"
2428 " src %s, session #%d, frontend %s (#%d), server %s (#%d)\n"
2429 " response length %d bytes, error at position %d:\n\n",
2430 s->data_ctx.errors.px->id, s->data_ctx.errors.px->uuid,
2431 pn, es->sid, es->oe->id, es->oe->uuid,
2432 es->srv ? es->srv->id : "<NONE>",
2433 es->srv ? es->srv->puid : -1,
2434 es->len, es->pos);
2435 break;
2436 }
2437
Willy Tarreau61b34732009-10-03 23:49:35 +02002438 if (buffer_feed_chunk(rep, &msg) >= 0) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01002439 /* Socket buffer full. Let's try again later from the same point */
Willy Tarreau61b34732009-10-03 23:49:35 +02002440 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01002441 }
2442 s->data_ctx.errors.ptr = 0;
2443 s->data_ctx.errors.sid = es->sid;
2444 }
2445
2446 if (s->data_ctx.errors.sid != es->sid) {
2447 /* the snapshot changed while we were dumping it */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002448 chunk_printf(&msg,
Willy Tarreau74808cb2009-03-04 15:53:18 +01002449 " WARNING! update detected on this snapshot, dump interrupted. Please re-check!\n");
Willy Tarreau61b34732009-10-03 23:49:35 +02002450 if (buffer_feed_chunk(rep, &msg) >= 0)
2451 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01002452 goto next;
2453 }
2454
2455 /* OK, ptr >= 0, so we have to dump the current line */
Willy Tarreau61b34732009-10-03 23:49:35 +02002456 while (s->data_ctx.errors.ptr < es->len && s->data_ctx.errors.ptr < sizeof(es->buf)) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01002457 int newptr;
2458 int newline;
2459
2460 newline = s->data_ctx.errors.bol;
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002461 newptr = dump_error_line(&msg, es, &newline, s->data_ctx.errors.ptr);
Willy Tarreau74808cb2009-03-04 15:53:18 +01002462 if (newptr == s->data_ctx.errors.ptr)
Willy Tarreau61b34732009-10-03 23:49:35 +02002463 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01002464
Willy Tarreau61b34732009-10-03 23:49:35 +02002465 if (buffer_feed_chunk(rep, &msg) >= 0) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01002466 /* Socket buffer full. Let's try again later from the same point */
Willy Tarreau61b34732009-10-03 23:49:35 +02002467 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01002468 }
2469 s->data_ctx.errors.ptr = newptr;
2470 s->data_ctx.errors.bol = newline;
2471 };
2472 next:
2473 s->data_ctx.errors.bol = 0;
2474 s->data_ctx.errors.ptr = -1;
2475 s->data_ctx.errors.buf++;
2476 if (s->data_ctx.errors.buf > 1) {
2477 s->data_ctx.errors.buf = 0;
2478 s->data_ctx.errors.px = s->data_ctx.errors.px->next;
2479 }
2480 }
2481
2482 /* dump complete */
Willy Tarreau61b34732009-10-03 23:49:35 +02002483 return 1;
Willy Tarreau74808cb2009-03-04 15:53:18 +01002484}
2485
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002486
Willy Tarreau10522fd2008-07-09 20:12:41 +02002487static struct cfg_kw_list cfg_kws = {{ },{
2488 { CFG_GLOBAL, "stats", stats_parse_global },
2489 { 0, NULL, NULL },
2490}};
2491
2492__attribute__((constructor))
2493static void __dumpstats_module_init(void)
2494{
2495 cfg_register_keywords(&cfg_kws);
2496}
2497
Willy Tarreau91861262007-10-17 17:06:05 +02002498/*
2499 * Local variables:
2500 * c-indent-level: 8
2501 * c-basic-offset: 8
2502 * End:
2503 */