blob: a72481736045067f1e2ec104add356a304e176cb [file] [log] [blame]
Willy Tarreau72c28532009-01-22 18:56:50 +01001/*
Willy Tarreaud8fc1102010-09-12 17:56:16 +02002 * haproxy log statistics reporter
Willy Tarreau72c28532009-01-22 18:56:50 +01003 *
Willy Tarreau8a09b662012-10-10 10:26:22 +02004 * Copyright 2000-2012 Willy Tarreau <w@1wt.eu>
Willy Tarreau72c28532009-01-22 18:56:50 +01005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
Willy Tarreau72c28532009-01-22 18:56:50 +010013#include <errno.h>
14#include <fcntl.h>
15#include <stdio.h>
16#include <stdlib.h>
17#include <syslog.h>
18#include <string.h>
19#include <unistd.h>
20#include <ctype.h>
Olivier Burgarde97b9042014-05-22 16:44:59 +020021#include <time.h>
Willy Tarreau72c28532009-01-22 18:56:50 +010022
Willy Tarreau45cb4fb2009-10-26 21:10:04 +010023#include <eb32tree.h>
Willy Tarreauabe45b62010-10-28 20:33:46 +020024#include <eb64tree.h>
25#include <ebistree.h>
Willy Tarreaud2201062010-05-27 18:17:30 +020026#include <ebsttree.h>
Willy Tarreau72c28532009-01-22 18:56:50 +010027
Willy Tarreaud2201062010-05-27 18:17:30 +020028#define SOURCE_FIELD 5
Willy Tarreau72c28532009-01-22 18:56:50 +010029#define ACCEPT_FIELD 6
Willy Tarreaud2201062010-05-27 18:17:30 +020030#define SERVER_FIELD 8
Willy Tarreau72c28532009-01-22 18:56:50 +010031#define TIME_FIELD 9
32#define STATUS_FIELD 10
Baptiste61aaad02012-09-08 23:10:03 +020033#define BYTES_SENT_FIELD 11
Willy Tarreaud8fc1102010-09-12 17:56:16 +020034#define TERM_CODES_FIELD 14
Willy Tarreau72c28532009-01-22 18:56:50 +010035#define CONN_FIELD 15
Willy Tarreau08911ff2011-10-13 13:28:36 +020036#define QUEUE_LEN_FIELD 16
Willy Tarreauabe45b62010-10-28 20:33:46 +020037#define METH_FIELD 17
38#define URL_FIELD 18
Willy Tarreau72c28532009-01-22 18:56:50 +010039#define MAXLINE 16384
40#define QBITS 4
41
Willy Tarreaudf6f0d12011-07-10 18:15:08 +020042#define SEP(c) ((unsigned char)(c) <= ' ')
43#define SKIP_CHAR(p,c) do { while (1) { int __c = (unsigned char)*p++; if (__c == c) break; if (__c <= ' ') { p--; break; } } } while (0)
Willy Tarreau72c28532009-01-22 18:56:50 +010044
45/* [0] = err/date, [1] = req, [2] = conn, [3] = resp, [4] = data */
46static struct eb_root timers[5] = {
47 EB_ROOT_UNIQUE, EB_ROOT_UNIQUE, EB_ROOT_UNIQUE,
48 EB_ROOT_UNIQUE, EB_ROOT_UNIQUE,
49};
50
51struct timer {
52 struct eb32_node node;
53 unsigned int count;
54};
55
Willy Tarreaud2201062010-05-27 18:17:30 +020056struct srv_st {
57 unsigned int st_cnt[6]; /* 0xx to 5xx */
58 unsigned int nb_ct, nb_rt, nb_ok;
59 unsigned long long cum_ct, cum_rt;
60 struct ebmb_node node;
61 /* don't put anything else here, the server name will be there */
62};
Willy Tarreau72c28532009-01-22 18:56:50 +010063
Willy Tarreauabe45b62010-10-28 20:33:46 +020064struct url_stat {
65 union {
66 struct ebpt_node url;
67 struct eb64_node val;
68 } node;
69 char *url;
70 unsigned long long total_time; /* sum(all reqs' times) */
71 unsigned long long total_time_ok; /* sum(all OK reqs' times) */
Baptiste61aaad02012-09-08 23:10:03 +020072 unsigned long long total_bytes_sent; /* sum(all bytes sent) */
Willy Tarreauabe45b62010-10-28 20:33:46 +020073 unsigned int nb_err, nb_req;
74};
75
Willy Tarreau72c28532009-01-22 18:56:50 +010076#define FILT_COUNT_ONLY 0x01
77#define FILT_INVERT 0x02
78#define FILT_QUIET 0x04
79#define FILT_ERRORS_ONLY 0x08
80#define FILT_ACC_DELAY 0x10
81#define FILT_ACC_COUNT 0x20
82#define FILT_GRAPH_TIMERS 0x40
Willy Tarreau214c2032009-02-20 11:02:32 +010083#define FILT_PERCENTILE 0x80
Willy Tarreau5bdfd962009-10-14 15:16:29 +020084#define FILT_TIME_RESP 0x100
85
86#define FILT_INVERT_ERRORS 0x200
87#define FILT_INVERT_TIME_RESP 0x400
Willy Tarreau72c28532009-01-22 18:56:50 +010088
Willy Tarreau0f423a72010-05-03 10:50:54 +020089#define FILT_COUNT_STATUS 0x800
Willy Tarreaud2201062010-05-27 18:17:30 +020090#define FILT_COUNT_SRV_STATUS 0x1000
Willy Tarreaud8fc1102010-09-12 17:56:16 +020091#define FILT_COUNT_TERM_CODES 0x2000
Willy Tarreau0f423a72010-05-03 10:50:54 +020092
Willy Tarreauabe45b62010-10-28 20:33:46 +020093#define FILT_COUNT_URL_ONLY 0x004000
94#define FILT_COUNT_URL_COUNT 0x008000
95#define FILT_COUNT_URL_ERR 0x010000
96#define FILT_COUNT_URL_TTOT 0x020000
97#define FILT_COUNT_URL_TAVG 0x040000
98#define FILT_COUNT_URL_TTOTO 0x080000
99#define FILT_COUNT_URL_TAVGO 0x100000
Willy Tarreauabe45b62010-10-28 20:33:46 +0200100
Willy Tarreau70c428f2011-07-10 17:27:40 +0200101#define FILT_HTTP_ONLY 0x200000
Willy Tarreaud3007ff2011-09-05 02:07:23 +0200102#define FILT_TERM_CODE_NAME 0x400000
Hervé COMMOWICK927cddd2011-08-10 17:42:41 +0200103#define FILT_INVERT_TERM_CODE_NAME 0x800000
Willy Tarreau70c428f2011-07-10 17:27:40 +0200104
Willy Tarreaud3007ff2011-09-05 02:07:23 +0200105#define FILT_HTTP_STATUS 0x1000000
106#define FILT_INVERT_HTTP_STATUS 0x2000000
Willy Tarreau08911ff2011-10-13 13:28:36 +0200107#define FILT_QUEUE_ONLY 0x4000000
108#define FILT_QUEUE_SRV_ONLY 0x8000000
Willy Tarreaud3007ff2011-09-05 02:07:23 +0200109
Baptiste61aaad02012-09-08 23:10:03 +0200110#define FILT_COUNT_URL_BAVG 0x10000000
111#define FILT_COUNT_URL_BTOT 0x20000000
112
113#define FILT_COUNT_URL_ANY (FILT_COUNT_URL_ONLY|FILT_COUNT_URL_COUNT|FILT_COUNT_URL_ERR| \
114 FILT_COUNT_URL_TTOT|FILT_COUNT_URL_TAVG|FILT_COUNT_URL_TTOTO|FILT_COUNT_URL_TAVGO| \
115 FILT_COUNT_URL_BAVG|FILT_COUNT_URL_BTOT)
116
Willy Tarreau8a09b662012-10-10 10:26:22 +0200117#define FILT_COUNT_COOK_CODES 0x40000000
Willy Tarreau7cf479c2013-02-16 23:49:04 +0100118#define FILT_COUNT_IP_COUNT 0x80000000
Willy Tarreau8a09b662012-10-10 10:26:22 +0200119
Olivier Burgarde97b9042014-05-22 16:44:59 +0200120#define FILT2_TIMESTAMP 0x01
121
Willy Tarreau72c28532009-01-22 18:56:50 +0100122unsigned int filter = 0;
Olivier Burgarde97b9042014-05-22 16:44:59 +0200123unsigned int filter2 = 0;
Willy Tarreau72c28532009-01-22 18:56:50 +0100124unsigned int filter_invert = 0;
Willy Tarreau214c2032009-02-20 11:02:32 +0100125const char *line;
Willy Tarreaua2b39fb2011-07-10 21:39:35 +0200126int linenum = 0;
127int parse_err = 0;
128int lines_out = 0;
Willy Tarreau667c9052012-10-10 16:49:28 +0200129int lines_max = -1;
Willy Tarreau72c28532009-01-22 18:56:50 +0100130
Willy Tarreau214c2032009-02-20 11:02:32 +0100131const char *fgets2(FILE *stream);
Willy Tarreau72c28532009-01-22 18:56:50 +0100132
Willy Tarreaua2b39fb2011-07-10 21:39:35 +0200133void filter_count_url(const char *accept_field, const char *time_field, struct timer **tptr);
Willy Tarreau7cf479c2013-02-16 23:49:04 +0100134void filter_count_ip(const char *source_field, const char *accept_field, const char *time_field, struct timer **tptr);
Willy Tarreaua2b39fb2011-07-10 21:39:35 +0200135void filter_count_srv_status(const char *accept_field, const char *time_field, struct timer **tptr);
Willy Tarreau8a09b662012-10-10 10:26:22 +0200136void filter_count_cook_codes(const char *accept_field, const char *time_field, struct timer **tptr);
Willy Tarreaua2b39fb2011-07-10 21:39:35 +0200137void filter_count_term_codes(const char *accept_field, const char *time_field, struct timer **tptr);
138void filter_count_status(const char *accept_field, const char *time_field, struct timer **tptr);
139void filter_graphs(const char *accept_field, const char *time_field, struct timer **tptr);
140void filter_output_line(const char *accept_field, const char *time_field, struct timer **tptr);
141void filter_accept_holes(const char *accept_field, const char *time_field, struct timer **tptr);
142
Willy Tarreau615674c2012-01-23 08:15:51 +0100143void usage(FILE *output, const char *msg)
Willy Tarreau72c28532009-01-22 18:56:50 +0100144{
Willy Tarreau615674c2012-01-23 08:15:51 +0100145 fprintf(output,
Willy Tarreau72c28532009-01-22 18:56:50 +0100146 "%s"
Willy Tarreau615674c2012-01-23 08:15:51 +0100147 "Usage: halog [-h|--help] for long help\n"
Willy Tarreau667c9052012-10-10 16:49:28 +0200148 " halog [-q] [-c] [-m <lines>]\n"
Willy Tarreau7cf479c2013-02-16 23:49:04 +0100149 " {-cc|-gt|-pct|-st|-tc|-srv|-u|-uc|-ue|-ua|-ut|-uao|-uto|-uba|-ubt|-ic}\n"
Hervé COMMOWICK927cddd2011-08-10 17:42:41 +0200150 " [-s <skip>] [-e|-E] [-H] [-rt|-RT <time>] [-ad <delay>] [-ac <count>]\n"
Olivier Burgarde97b9042014-05-22 16:44:59 +0200151 " [-v] [-Q|-QS] [-tcn|-TCN <termcode>] [ -hs|-HS [min][:[max]] ] [ -time [min][:[max]] ] < log\n"
Willy Tarreau72c28532009-01-22 18:56:50 +0100152 "\n",
153 msg ? msg : ""
154 );
Willy Tarreau615674c2012-01-23 08:15:51 +0100155}
156
157void die(const char *msg)
158{
159 usage(stderr, msg);
Willy Tarreau72c28532009-01-22 18:56:50 +0100160 exit(1);
161}
162
Willy Tarreau615674c2012-01-23 08:15:51 +0100163void help()
164{
165 usage(stdout, NULL);
166 printf(
167 "Input filters (several filters may be combined) :\n"
168 " -H only match lines containing HTTP logs (ignore TCP)\n"
169 " -E only match lines without any error (no 5xx status)\n"
170 " -e only match lines with errors (status 5xx or negative)\n"
171 " -rt|-RT <time> only match response times larger|smaller than <time>\n"
172 " -Q|-QS only match queued requests (any queue|server queue)\n"
173 " -tcn|-TCN <code> only match requests with/without termination code <code>\n"
174 " -hs|-HS <[min][:][max]> only match requests with HTTP status codes within/not\n"
175 " within min..max. Any of them may be omitted. Exact\n"
176 " code is checked for if no ':' is specified.\n"
Olivier Burgarde97b9042014-05-22 16:44:59 +0200177 " -time <[min][:max]> only match requests recorded between timestamps.\n"
178 " Any of them may be omitted.\n"
Willy Tarreau615674c2012-01-23 08:15:51 +0100179 "Modifiers\n"
180 " -v invert the input filtering condition\n"
181 " -q don't report errors/warnings\n"
Willy Tarreau667c9052012-10-10 16:49:28 +0200182 " -m <lines> limit output to the first <lines> lines\n"
Aleksandar Lazicf2b5d752017-12-05 01:35:21 +0100183 " -s <skip_n_fields> skip n fields from the beginning of a line (default %d)\n"
184 " you can also use -n to start from earlier then field %d\n"
185 "\n"
Willy Tarreau615674c2012-01-23 08:15:51 +0100186 "Output filters - only one may be used at a time\n"
187 " -c only report the number of lines that would have been printed\n"
188 " -pct output connect and response times percentiles\n"
189 " -st output number of requests per HTTP status code\n"
Willy Tarreau8a09b662012-10-10 10:26:22 +0200190 " -cc output number of requests per cookie code (2 chars)\n"
Willy Tarreau615674c2012-01-23 08:15:51 +0100191 " -tc output number of requests per termination code (2 chars)\n"
192 " -srv output statistics per server (time, requests, errors)\n"
193 " -u* output statistics per URL (time, requests, errors)\n"
194 " Additional characters indicate the output sorting key :\n"
195 " -u : by URL, -uc : request count, -ue : error count\n"
Willy Tarreau4201df72012-10-10 14:57:35 +0200196 " -ua : average response time, -ut : average total time\n"
Willy Tarreau615674c2012-01-23 08:15:51 +0100197 " -uao, -uto: average times computed on valid ('OK') requests\n"
Aleksandar Lazicf2b5d752017-12-05 01:35:21 +0100198 " -uba, -ubt: average bytes returned, total bytes returned\n",
199 SOURCE_FIELD,SOURCE_FIELD
Willy Tarreau615674c2012-01-23 08:15:51 +0100200 );
201 exit(0);
202}
203
Willy Tarreau72c28532009-01-22 18:56:50 +0100204
205/* return pointer to first char not part of current field starting at <p>. */
Willy Tarreauf9042062011-09-10 12:26:35 +0200206
207#if defined(__i386__)
208/* this one is always faster on 32-bits */
209static inline const char *field_stop(const char *p)
210{
211 asm(
212 /* Look for spaces */
213 "4: \n\t"
214 "inc %0 \n\t"
215 "cmpb $0x20, -1(%0) \n\t"
216 "ja 4b \n\t"
217 "jz 3f \n\t"
218
219 /* we only get there for control chars 0..31. Leave if we find '\0' */
220 "cmpb $0x0, -1(%0) \n\t"
221 "jnz 4b \n\t"
222
223 /* return %0-1 = position of the last char we checked */
224 "3: \n\t"
225 "dec %0 \n\t"
226 : "=r" (p)
227 : "0" (p)
228 );
229 return p;
230}
231#else
Willy Tarreau72c28532009-01-22 18:56:50 +0100232const char *field_stop(const char *p)
233{
234 unsigned char c;
235
236 while (1) {
237 c = *(p++);
238 if (c > ' ')
239 continue;
Willy Tarreau14389e72011-07-10 22:11:17 +0200240 if (c == ' ' || c == 0)
Willy Tarreau72c28532009-01-22 18:56:50 +0100241 break;
242 }
243 return p - 1;
244}
Willy Tarreauf9042062011-09-10 12:26:35 +0200245#endif
Willy Tarreau72c28532009-01-22 18:56:50 +0100246
247/* return field <field> (starting from 1) in string <p>. Only consider
248 * contiguous spaces (or tabs) as one delimiter. May return pointer to
249 * last char if field is not found. Equivalent to awk '{print $field}'.
250 */
251const char *field_start(const char *p, int field)
252{
Willy Tarreauf9042062011-09-10 12:26:35 +0200253#ifndef PREFER_ASM
Willy Tarreau72c28532009-01-22 18:56:50 +0100254 unsigned char c;
255 while (1) {
256 /* skip spaces */
257 while (1) {
Willy Tarreauf9042062011-09-10 12:26:35 +0200258 c = *(p++);
Willy Tarreau72c28532009-01-22 18:56:50 +0100259 if (c > ' ')
260 break;
Willy Tarreau14389e72011-07-10 22:11:17 +0200261 if (c == ' ')
Willy Tarreauf9042062011-09-10 12:26:35 +0200262 continue;
Willy Tarreau72c28532009-01-22 18:56:50 +0100263 if (!c) /* end of line */
Willy Tarreauf9042062011-09-10 12:26:35 +0200264 return p-1;
Willy Tarreau72c28532009-01-22 18:56:50 +0100265 /* other char => new field */
266 break;
Willy Tarreau72c28532009-01-22 18:56:50 +0100267 }
268
269 /* start of field */
270 field--;
271 if (!field)
Willy Tarreauf9042062011-09-10 12:26:35 +0200272 return p-1;
Willy Tarreau72c28532009-01-22 18:56:50 +0100273
274 /* skip this field */
275 while (1) {
276 c = *(p++);
Willy Tarreau14389e72011-07-10 22:11:17 +0200277 if (c == ' ')
Willy Tarreau72c28532009-01-22 18:56:50 +0100278 break;
Willy Tarreauf9042062011-09-10 12:26:35 +0200279 if (c > ' ')
280 continue;
Willy Tarreau72c28532009-01-22 18:56:50 +0100281 if (c == '\0')
Willy Tarreauf9042062011-09-10 12:26:35 +0200282 return p - 1;
Willy Tarreau72c28532009-01-22 18:56:50 +0100283 }
284 }
Willy Tarreauf9042062011-09-10 12:26:35 +0200285#else
286 /* This version works optimally on i386 and x86_64 but the code above
287 * shows similar performance. However, depending on the version of GCC
288 * used, inlining rules change and it may have difficulties to make
289 * efficient use of this code at other locations and could result in
290 * worse performance (eg: gcc 4.4). You may want to experience.
291 */
292 asm(
293 /* skip spaces */
294 "1: \n\t"
295 "inc %0 \n\t"
296 "cmpb $0x20, -1(%0) \n\t"
297 "ja 2f \n\t"
298 "jz 1b \n\t"
299
300 /* we only get there for control chars 0..31. Leave if we find '\0' */
301 "cmpb $0x0, -1(%0) \n\t"
302 "jz 3f \n\t"
303
304 /* start of field at [%0-1]. Check if we need to skip more fields */
305 "2: \n\t"
306 "dec %1 \n\t"
307 "jz 3f \n\t"
308
309 /* Look for spaces */
310 "4: \n\t"
311 "inc %0 \n\t"
312 "cmpb $0x20, -1(%0) \n\t"
313 "jz 1b \n\t"
314 "ja 4b \n\t"
315
316 /* we only get there for control chars 0..31. Leave if we find '\0' */
317 "cmpb $0x0, -1(%0) \n\t"
318 "jnz 4b \n\t"
319
320 /* return %0-1 = position of the last char we checked */
321 "3: \n\t"
322 "dec %0 \n\t"
323 : "=r" (p)
324 : "r" (field), "0" (p)
325 );
326 return p;
327#endif
Willy Tarreau72c28532009-01-22 18:56:50 +0100328}
329
330/* keep only the <bits> higher bits of <i> */
331static inline unsigned int quantify_u32(unsigned int i, int bits)
332{
333 int high;
334
335 if (!bits)
336 return 0;
337
338 if (i)
339 high = fls_auto(i); // 1 to 32
340 else
341 high = 0;
342
343 if (high <= bits)
344 return i;
345
346 return i & ~((1 << (high - bits)) - 1);
347}
348
349/* keep only the <bits> higher bits of the absolute value of <i>, as well as
350 * its sign. */
351static inline int quantify(int i, int bits)
352{
353 if (i >= 0)
354 return quantify_u32(i, bits);
355 else
356 return -quantify_u32(-i, bits);
357}
358
359/* Insert timer value <v> into tree <r>. A pre-allocated node must be passed
360 * in <alloc>. It may be NULL, in which case the function will allocate it
361 * itself. It will be reset to NULL once consumed. The caller is responsible
362 * for freeing the node once not used anymore. The node where the value was
363 * inserted is returned.
364 */
365struct timer *insert_timer(struct eb_root *r, struct timer **alloc, int v)
366{
367 struct timer *t = *alloc;
368 struct eb32_node *n;
369
370 if (!t) {
371 t = calloc(sizeof(*t), 1);
372 if (unlikely(!t)) {
373 fprintf(stderr, "%s: not enough memory\n", __FUNCTION__);
374 exit(1);
375 }
376 }
377 t->node.key = quantify(v, QBITS); // keep only the higher QBITS bits
378
379 n = eb32i_insert(r, &t->node);
380 if (n == &t->node)
381 t = NULL; /* node inserted, will malloc next time */
382
383 *alloc = t;
384 return container_of(n, struct timer, node);
385}
386
387/* Insert value value <v> into tree <r>. A pre-allocated node must be passed
388 * in <alloc>. It may be NULL, in which case the function will allocate it
389 * itself. It will be reset to NULL once consumed. The caller is responsible
390 * for freeing the node once not used anymore. The node where the value was
391 * inserted is returned.
392 */
393struct timer *insert_value(struct eb_root *r, struct timer **alloc, int v)
394{
395 struct timer *t = *alloc;
396 struct eb32_node *n;
397
398 if (!t) {
399 t = calloc(sizeof(*t), 1);
400 if (unlikely(!t)) {
401 fprintf(stderr, "%s: not enough memory\n", __FUNCTION__);
402 exit(1);
403 }
404 }
405 t->node.key = v;
406
407 n = eb32i_insert(r, &t->node);
408 if (n == &t->node)
409 t = NULL; /* node inserted, will malloc next time */
410
411 *alloc = t;
412 return container_of(n, struct timer, node);
413}
414
415int str2ic(const char *s)
416{
417 int i = 0;
418 int j, k;
419
420 if (*s != '-') {
421 /* positive number */
422 while (1) {
423 j = (*s++) - '0';
424 k = i * 10;
425 if ((unsigned)j > 9)
426 break;
427 i = k + j;
428 }
429 } else {
430 /* negative number */
431 s++;
432 while (1) {
433 j = (*s++) - '0';
434 k = i * 10;
435 if ((unsigned)j > 9)
436 break;
437 i = k - j;
438 }
439 }
440
441 return i;
442}
443
444
445/* Equivalent to strtoul with a length. */
446static inline unsigned int __strl2ui(const char *s, int len)
447{
448 unsigned int i = 0;
449 while (len-- > 0) {
450 i = i * 10 - '0';
451 i += (unsigned char)*s++;
452 }
453 return i;
454}
455
456unsigned int strl2ui(const char *s, int len)
457{
458 return __strl2ui(s, len);
459}
460
461/* Convert "[04/Dec/2008:09:49:40.555]" to an integer equivalent to the time of
462 * the day in milliseconds. It returns -1 for all unparsable values. The parser
463 * looks ugly but gcc emits far better code that way.
464 */
465int convert_date(const char *field)
466{
467 unsigned int h, m, s, ms;
468 unsigned char c;
Ryan O'Hara8cb99932017-12-15 10:21:39 -0600469 const char *e;
Willy Tarreau72c28532009-01-22 18:56:50 +0100470
471 h = m = s = ms = 0;
472 e = field;
473
474 /* skip the date */
475 while (1) {
476 c = *(e++);
477 if (c == ':')
478 break;
479 if (!c)
480 goto out_err;
481 }
482
483 /* hour + ':' */
Willy Tarreau72c28532009-01-22 18:56:50 +0100484 while (1) {
485 c = *(e++) - '0';
486 if (c > 9)
487 break;
488 h = h * 10 + c;
489 }
490 if (c == (unsigned char)(0 - '0'))
491 goto out_err;
492
493 /* minute + ':' */
Willy Tarreau72c28532009-01-22 18:56:50 +0100494 while (1) {
495 c = *(e++) - '0';
496 if (c > 9)
497 break;
498 m = m * 10 + c;
499 }
500 if (c == (unsigned char)(0 - '0'))
501 goto out_err;
502
503 /* second + '.' or ']' */
Willy Tarreau72c28532009-01-22 18:56:50 +0100504 while (1) {
505 c = *(e++) - '0';
506 if (c > 9)
507 break;
508 s = s * 10 + c;
509 }
510 if (c == (unsigned char)(0 - '0'))
511 goto out_err;
512
513 /* if there's a '.', we have milliseconds */
514 if (c == (unsigned char)('.' - '0')) {
515 /* millisecond second + ']' */
Willy Tarreau72c28532009-01-22 18:56:50 +0100516 while (1) {
517 c = *(e++) - '0';
518 if (c > 9)
519 break;
520 ms = ms * 10 + c;
521 }
522 if (c == (unsigned char)(0 - '0'))
523 goto out_err;
524 }
525 return (((h * 60) + m) * 60 + s) * 1000 + ms;
526 out_err:
527 return -1;
528}
529
Olivier Burgarde97b9042014-05-22 16:44:59 +0200530/* Convert "[04/Dec/2008:09:49:40.555]" to an unix timestamp.
531 * It returns -1 for all unparsable values. The parser
532 * looks ugly but gcc emits far better code that way.
533 */
534int convert_date_to_timestamp(const char *field)
535{
536 unsigned int d, mo, y, h, m, s;
537 unsigned char c;
Ryan O'Hara8cb99932017-12-15 10:21:39 -0600538 const char *e;
Olivier Burgarde97b9042014-05-22 16:44:59 +0200539 time_t rawtime;
Willy Tarreau9f66aa92014-05-23 16:36:56 +0200540 static struct tm * timeinfo;
541 static int last_res;
Olivier Burgarde97b9042014-05-22 16:44:59 +0200542
543 d = mo = y = h = m = s = 0;
544 e = field;
545
546 c = *(e++); // remove '['
547 /* day + '/' */
548 while (1) {
549 c = *(e++) - '0';
550 if (c > 9)
551 break;
552 d = d * 10 + c;
553 if (c == (unsigned char)(0 - '0'))
554 goto out_err;
555 }
556
557 /* month + '/' */
558 c = *(e++);
559 if (c =='F') {
560 mo = 2;
561 e = e+3;
562 } else if (c =='S') {
563 mo = 9;
564 e = e+3;
565 } else if (c =='O') {
566 mo = 10;
567 e = e+3;
568 } else if (c =='N') {
569 mo = 11;
570 e = e+3;
571 } else if (c == 'D') {
572 mo = 12;
573 e = e+3;
574 } else if (c == 'A') {
575 c = *(e++);
576 if (c == 'p') {
577 mo = 4;
578 e = e+2;
579 } else if (c == 'u') {
580 mo = 8;
581 e = e+2;
582 } else
583 goto out_err;
584 } else if (c == 'J') {
585 c = *(e++);
586 if (c == 'a') {
587 mo = 1;
588 e = e+2;
589 } else if (c == 'u') {
590 c = *(e++);
591 if (c == 'n') {
592 mo = 6;
593 e = e+1;
594 } else if (c == 'l') {
595 mo = 7;
596 e++;
597 }
598 } else
599 goto out_err;
600 } else if (c == 'M') {
601 e++;
602 c = *(e++);
603 if (c == 'r') {
604 mo = 3;
605 e = e+1;
606 } else if (c == 'y') {
607 mo = 5;
608 e = e+1;
609 } else
610 goto out_err;
611 } else
612 goto out_err;
613
614 /* year + ':' */
615 while (1) {
616 c = *(e++) - '0';
617 if (c > 9)
618 break;
619 y = y * 10 + c;
620 if (c == (unsigned char)(0 - '0'))
621 goto out_err;
622 }
623
624 /* hour + ':' */
Olivier Burgarde97b9042014-05-22 16:44:59 +0200625 while (1) {
626 c = *(e++) - '0';
627 if (c > 9)
628 break;
629 h = h * 10 + c;
630 }
631 if (c == (unsigned char)(0 - '0'))
632 goto out_err;
633
634 /* minute + ':' */
Olivier Burgarde97b9042014-05-22 16:44:59 +0200635 while (1) {
636 c = *(e++) - '0';
637 if (c > 9)
638 break;
639 m = m * 10 + c;
640 }
641 if (c == (unsigned char)(0 - '0'))
642 goto out_err;
643
644 /* second + '.' or ']' */
Olivier Burgarde97b9042014-05-22 16:44:59 +0200645 while (1) {
646 c = *(e++) - '0';
647 if (c > 9)
648 break;
649 s = s * 10 + c;
650 }
651
Willy Tarreau9f66aa92014-05-23 16:36:56 +0200652 if (likely(timeinfo)) {
653 if (timeinfo->tm_min == m &&
654 timeinfo->tm_hour == h &&
655 timeinfo->tm_mday == d &&
656 timeinfo->tm_mon == mo - 1 &&
657 timeinfo->tm_year == y - 1900)
658 return last_res + s;
659 }
660 else {
661 time(&rawtime);
662 timeinfo = localtime(&rawtime);
663 }
Olivier Burgarde97b9042014-05-22 16:44:59 +0200664
Willy Tarreau9f66aa92014-05-23 16:36:56 +0200665 timeinfo->tm_sec = 0;
Olivier Burgarde97b9042014-05-22 16:44:59 +0200666 timeinfo->tm_min = m;
667 timeinfo->tm_hour = h;
668 timeinfo->tm_mday = d;
669 timeinfo->tm_mon = mo - 1;
670 timeinfo->tm_year = y - 1900;
Willy Tarreau9f66aa92014-05-23 16:36:56 +0200671 last_res = mktime(timeinfo);
Olivier Burgarde97b9042014-05-22 16:44:59 +0200672
Willy Tarreau9f66aa92014-05-23 16:36:56 +0200673 return last_res + s;
Olivier Burgarde97b9042014-05-22 16:44:59 +0200674 out_err:
675 return -1;
676}
677
Willy Tarreau72c28532009-01-22 18:56:50 +0100678void truncated_line(int linenum, const char *line)
679{
680 if (!(filter & FILT_QUIET))
681 fprintf(stderr, "Truncated line %d: %s\n", linenum, line);
682}
683
684int main(int argc, char **argv)
685{
Ryan O'Hara8cb99932017-12-15 10:21:39 -0600686 const char *b, *p, *time_field, *accept_field, *source_field;
Hervé COMMOWICK927cddd2011-08-10 17:42:41 +0200687 const char *filter_term_code_name = NULL;
Willy Tarreau72c28532009-01-22 18:56:50 +0100688 const char *output_file = NULL;
Ryan O'Hara8cb99932017-12-15 10:21:39 -0600689 int f, last;
Willy Tarreaua2b39fb2011-07-10 21:39:35 +0200690 struct timer *t = NULL;
Willy Tarreau72c28532009-01-22 18:56:50 +0100691 struct eb32_node *n;
Willy Tarreauabe45b62010-10-28 20:33:46 +0200692 struct url_stat *ustat = NULL;
Willy Tarreau72c28532009-01-22 18:56:50 +0100693 int val, test;
Willy Tarreauc8746532014-05-28 23:05:07 +0200694 unsigned int uval;
Willy Tarreau72c28532009-01-22 18:56:50 +0100695 int filter_acc_delay = 0, filter_acc_count = 0;
Willy Tarreau5bdfd962009-10-14 15:16:29 +0200696 int filter_time_resp = 0;
Willy Tarreaud3007ff2011-09-05 02:07:23 +0200697 int filt_http_status_low = 0, filt_http_status_high = 0;
Olivier Burgarde97b9042014-05-22 16:44:59 +0200698 int filt2_timestamp_low = 0, filt2_timestamp_high = 0;
Willy Tarreau72c28532009-01-22 18:56:50 +0100699 int skip_fields = 1;
700
Willy Tarreaua2b39fb2011-07-10 21:39:35 +0200701 void (*line_filter)(const char *accept_field, const char *time_field, struct timer **tptr) = NULL;
702
Willy Tarreau72c28532009-01-22 18:56:50 +0100703 argc--; argv++;
704 while (argc > 0) {
705 if (*argv[0] != '-')
706 break;
707
708 if (strcmp(argv[0], "-ad") == 0) {
709 if (argc < 2) die("missing option for -ad");
710 argc--; argv++;
711 filter |= FILT_ACC_DELAY;
712 filter_acc_delay = atol(*argv);
713 }
714 else if (strcmp(argv[0], "-ac") == 0) {
715 if (argc < 2) die("missing option for -ac");
716 argc--; argv++;
717 filter |= FILT_ACC_COUNT;
718 filter_acc_count = atol(*argv);
719 }
Willy Tarreau5bdfd962009-10-14 15:16:29 +0200720 else if (strcmp(argv[0], "-rt") == 0) {
721 if (argc < 2) die("missing option for -rt");
722 argc--; argv++;
723 filter |= FILT_TIME_RESP;
724 filter_time_resp = atol(*argv);
725 }
726 else if (strcmp(argv[0], "-RT") == 0) {
727 if (argc < 2) die("missing option for -RT");
728 argc--; argv++;
729 filter |= FILT_TIME_RESP | FILT_INVERT_TIME_RESP;
730 filter_time_resp = atol(*argv);
731 }
Willy Tarreau72c28532009-01-22 18:56:50 +0100732 else if (strcmp(argv[0], "-s") == 0) {
733 if (argc < 2) die("missing option for -s");
734 argc--; argv++;
735 skip_fields = atol(*argv);
736 }
Willy Tarreau667c9052012-10-10 16:49:28 +0200737 else if (strcmp(argv[0], "-m") == 0) {
738 if (argc < 2) die("missing option for -m");
739 argc--; argv++;
740 lines_max = atol(*argv);
741 }
Willy Tarreau72c28532009-01-22 18:56:50 +0100742 else if (strcmp(argv[0], "-e") == 0)
743 filter |= FILT_ERRORS_ONLY;
Willy Tarreau5bdfd962009-10-14 15:16:29 +0200744 else if (strcmp(argv[0], "-E") == 0)
745 filter |= FILT_ERRORS_ONLY | FILT_INVERT_ERRORS;
Willy Tarreau70c428f2011-07-10 17:27:40 +0200746 else if (strcmp(argv[0], "-H") == 0)
747 filter |= FILT_HTTP_ONLY;
Willy Tarreau08911ff2011-10-13 13:28:36 +0200748 else if (strcmp(argv[0], "-Q") == 0)
749 filter |= FILT_QUEUE_ONLY;
750 else if (strcmp(argv[0], "-QS") == 0)
751 filter |= FILT_QUEUE_SRV_ONLY;
Willy Tarreau72c28532009-01-22 18:56:50 +0100752 else if (strcmp(argv[0], "-c") == 0)
753 filter |= FILT_COUNT_ONLY;
754 else if (strcmp(argv[0], "-q") == 0)
755 filter |= FILT_QUIET;
756 else if (strcmp(argv[0], "-v") == 0)
757 filter_invert = !filter_invert;
758 else if (strcmp(argv[0], "-gt") == 0)
759 filter |= FILT_GRAPH_TIMERS;
Willy Tarreau214c2032009-02-20 11:02:32 +0100760 else if (strcmp(argv[0], "-pct") == 0)
761 filter |= FILT_PERCENTILE;
Willy Tarreau0f423a72010-05-03 10:50:54 +0200762 else if (strcmp(argv[0], "-st") == 0)
763 filter |= FILT_COUNT_STATUS;
Willy Tarreaud2201062010-05-27 18:17:30 +0200764 else if (strcmp(argv[0], "-srv") == 0)
765 filter |= FILT_COUNT_SRV_STATUS;
Willy Tarreau8a09b662012-10-10 10:26:22 +0200766 else if (strcmp(argv[0], "-cc") == 0)
767 filter |= FILT_COUNT_COOK_CODES;
Willy Tarreaud8fc1102010-09-12 17:56:16 +0200768 else if (strcmp(argv[0], "-tc") == 0)
769 filter |= FILT_COUNT_TERM_CODES;
Hervé COMMOWICK927cddd2011-08-10 17:42:41 +0200770 else if (strcmp(argv[0], "-tcn") == 0) {
771 if (argc < 2) die("missing option for -tcn");
772 argc--; argv++;
773 filter |= FILT_TERM_CODE_NAME;
774 filter_term_code_name = *argv;
775 }
776 else if (strcmp(argv[0], "-TCN") == 0) {
777 if (argc < 2) die("missing option for -TCN");
778 argc--; argv++;
779 filter |= FILT_TERM_CODE_NAME | FILT_INVERT_TERM_CODE_NAME;
780 filter_term_code_name = *argv;
781 }
Willy Tarreaud3007ff2011-09-05 02:07:23 +0200782 else if (strcmp(argv[0], "-hs") == 0 || strcmp(argv[0], "-HS") == 0) {
783 char *sep, *str;
784
785 if (argc < 2) die("missing option for -hs/-HS ([min]:[max])");
786 filter |= FILT_HTTP_STATUS;
787 if (argv[0][1] == 'H')
788 filter |= FILT_INVERT_HTTP_STATUS;
789
790 argc--; argv++;
791 str = *argv;
792 sep = strchr(str, ':'); /* [min]:[max] */
793 if (!sep)
794 sep = str; /* make max point to min */
795 else
796 *sep++ = 0;
797 filt_http_status_low = *str ? atol(str) : 0;
798 filt_http_status_high = *sep ? atol(sep) : 65535;
799 }
Olivier Burgarde97b9042014-05-22 16:44:59 +0200800 else if (strcmp(argv[0], "-time") == 0) {
801 char *sep, *str;
802
803 if (argc < 2) die("missing option for -time ([min]:[max])");
804 filter2 |= FILT2_TIMESTAMP;
805
806 argc--; argv++;
807 str = *argv;
808 sep = strchr(str, ':'); /* [min]:[max] */
809 filt2_timestamp_low = *str ? atol(str) : 0;
810 if (!sep)
811 filt2_timestamp_high = 0xFFFFFFFF;
812 else
813 filt2_timestamp_high = atol(++sep);
814 }
Willy Tarreauabe45b62010-10-28 20:33:46 +0200815 else if (strcmp(argv[0], "-u") == 0)
816 filter |= FILT_COUNT_URL_ONLY;
817 else if (strcmp(argv[0], "-uc") == 0)
818 filter |= FILT_COUNT_URL_COUNT;
819 else if (strcmp(argv[0], "-ue") == 0)
820 filter |= FILT_COUNT_URL_ERR;
821 else if (strcmp(argv[0], "-ua") == 0)
822 filter |= FILT_COUNT_URL_TAVG;
823 else if (strcmp(argv[0], "-ut") == 0)
824 filter |= FILT_COUNT_URL_TTOT;
825 else if (strcmp(argv[0], "-uao") == 0)
826 filter |= FILT_COUNT_URL_TAVGO;
827 else if (strcmp(argv[0], "-uto") == 0)
828 filter |= FILT_COUNT_URL_TTOTO;
Baptiste61aaad02012-09-08 23:10:03 +0200829 else if (strcmp(argv[0], "-uba") == 0)
830 filter |= FILT_COUNT_URL_BAVG;
831 else if (strcmp(argv[0], "-ubt") == 0)
832 filter |= FILT_COUNT_URL_BTOT;
Willy Tarreau7cf479c2013-02-16 23:49:04 +0100833 else if (strcmp(argv[0], "-ic") == 0)
834 filter |= FILT_COUNT_IP_COUNT;
Willy Tarreau72c28532009-01-22 18:56:50 +0100835 else if (strcmp(argv[0], "-o") == 0) {
836 if (output_file)
837 die("Fatal: output file name already specified.\n");
838 if (argc < 2)
839 die("Fatal: missing output file name.\n");
840 output_file = argv[1];
841 }
Willy Tarreau615674c2012-01-23 08:15:51 +0100842 else if (strcmp(argv[0], "-h") == 0 || strcmp(argv[0], "--help") == 0)
843 help();
Willy Tarreau72c28532009-01-22 18:56:50 +0100844 argc--;
845 argv++;
846 }
847
848 if (!filter)
849 die("No action specified.\n");
850
851 if (filter & FILT_ACC_COUNT && !filter_acc_count)
852 filter_acc_count=1;
853
854 if (filter & FILT_ACC_DELAY && !filter_acc_delay)
855 filter_acc_delay = 1;
856
Willy Tarreaua2b39fb2011-07-10 21:39:35 +0200857
858 /* by default, all lines are printed */
859 line_filter = filter_output_line;
860 if (filter & (FILT_ACC_COUNT|FILT_ACC_DELAY))
861 line_filter = filter_accept_holes;
862 else if (filter & (FILT_GRAPH_TIMERS|FILT_PERCENTILE))
863 line_filter = filter_graphs;
864 else if (filter & FILT_COUNT_STATUS)
865 line_filter = filter_count_status;
Willy Tarreau8a09b662012-10-10 10:26:22 +0200866 else if (filter & FILT_COUNT_COOK_CODES)
867 line_filter = filter_count_cook_codes;
Willy Tarreaua2b39fb2011-07-10 21:39:35 +0200868 else if (filter & FILT_COUNT_TERM_CODES)
869 line_filter = filter_count_term_codes;
870 else if (filter & FILT_COUNT_SRV_STATUS)
871 line_filter = filter_count_srv_status;
872 else if (filter & FILT_COUNT_URL_ANY)
873 line_filter = filter_count_url;
874 else if (filter & FILT_COUNT_ONLY)
875 line_filter = NULL;
Willy Tarreau72c28532009-01-22 18:56:50 +0100876
Willy Tarreauf8c95d22012-06-12 09:16:56 +0200877#if defined(POSIX_FADV_SEQUENTIAL)
878 /* around 20% performance improvement is observed on Linux with this
879 * on cold-cache. Surprizingly, WILLNEED is less performant. Don't
880 * use NOREUSE as it flushes the cache and prevents easy data
881 * manipulation on logs!
882 */
883 posix_fadvise(0, 0, 0, POSIX_FADV_SEQUENTIAL);
884#endif
885
Willy Tarreaua1629a52012-11-13 20:48:15 +0100886 if (!line_filter && /* FILT_COUNT_ONLY ( see above), and no input filter (see below) */
Olivier Burgarde97b9042014-05-22 16:44:59 +0200887 !(filter & (FILT_HTTP_ONLY|FILT_TIME_RESP|FILT_ERRORS_ONLY|FILT_HTTP_STATUS|FILT_QUEUE_ONLY|FILT_QUEUE_SRV_ONLY|FILT_TERM_CODE_NAME)) &&
888 !(filter2 & (FILT2_TIMESTAMP))) {
Willy Tarreaua1629a52012-11-13 20:48:15 +0100889 /* read the whole file at once first, ignore it if inverted output */
Willy Tarreaue1a908c2012-01-03 09:23:03 +0100890 if (!filter_invert)
Willy Tarreaua1629a52012-11-13 20:48:15 +0100891 while ((lines_max < 0 || lines_out < lines_max) && fgets2(stdin) != NULL)
Willy Tarreaue1a908c2012-01-03 09:23:03 +0100892 lines_out++;
893
894 goto skip_filters;
895 }
896
Willy Tarreau214c2032009-02-20 11:02:32 +0100897 while ((line = fgets2(stdin)) != NULL) {
Willy Tarreau72c28532009-01-22 18:56:50 +0100898 linenum++;
Willy Tarreau26deaf52011-07-10 19:47:48 +0200899 time_field = NULL; accept_field = NULL;
Willy Tarreau7cf479c2013-02-16 23:49:04 +0100900 source_field = NULL;
Willy Tarreau72c28532009-01-22 18:56:50 +0100901
Willy Tarreau5bdfd962009-10-14 15:16:29 +0200902 test = 1;
Willy Tarreau26deaf52011-07-10 19:47:48 +0200903
904 /* for any line we process, we first ensure that there is a field
905 * looking like the accept date field (beginning with a '[').
906 */
Willy Tarreau7cf479c2013-02-16 23:49:04 +0100907 if (filter & FILT_COUNT_IP_COUNT) {
908 /* we need the IP first */
909 source_field = field_start(line, SOURCE_FIELD + skip_fields);
910 accept_field = field_start(source_field, ACCEPT_FIELD - SOURCE_FIELD + 1);
911 }
912 else
913 accept_field = field_start(line, ACCEPT_FIELD + skip_fields);
914
Willy Tarreaua2b39fb2011-07-10 21:39:35 +0200915 if (unlikely(*accept_field != '[')) {
Willy Tarreau26deaf52011-07-10 19:47:48 +0200916 parse_err++;
917 continue;
918 }
919
920 /* the day of month field is begin 01 and 31 */
Willy Tarreaua2b39fb2011-07-10 21:39:35 +0200921 if (accept_field[1] < '0' || accept_field[1] > '3') {
Willy Tarreau26deaf52011-07-10 19:47:48 +0200922 parse_err++;
923 continue;
924 }
925
Olivier Burgarde97b9042014-05-22 16:44:59 +0200926 if (filter2 & FILT2_TIMESTAMP) {
927 uval = convert_date_to_timestamp(accept_field);
928 test &= (uval>=filt2_timestamp_low && uval<=filt2_timestamp_high) ;
929 }
930
Willy Tarreaua2b39fb2011-07-10 21:39:35 +0200931 if (filter & FILT_HTTP_ONLY) {
Willy Tarreau70c428f2011-07-10 17:27:40 +0200932 /* only report lines with at least 4 timers */
Willy Tarreaua2b39fb2011-07-10 21:39:35 +0200933 if (!time_field) {
Willy Tarreau26deaf52011-07-10 19:47:48 +0200934 time_field = field_start(accept_field, TIME_FIELD - ACCEPT_FIELD + 1);
Willy Tarreaua2b39fb2011-07-10 21:39:35 +0200935 if (unlikely(!*time_field)) {
Willy Tarreau26deaf52011-07-10 19:47:48 +0200936 truncated_line(linenum, line);
937 continue;
938 }
Willy Tarreau70c428f2011-07-10 17:27:40 +0200939 }
940
Ryan O'Hara8cb99932017-12-15 10:21:39 -0600941 field_stop(time_field + 1);
Willy Tarreau758a6ea2011-07-10 18:53:44 +0200942 /* we have field TIME_FIELD in [time_field]..[e-1] */
943 p = time_field;
Willy Tarreau70c428f2011-07-10 17:27:40 +0200944 f = 0;
Willy Tarreaudf6f0d12011-07-10 18:15:08 +0200945 while (!SEP(*p)) {
Willy Tarreau70c428f2011-07-10 17:27:40 +0200946 if (++f == 4)
947 break;
948 SKIP_CHAR(p, '/');
949 }
950 test &= (f >= 4);
951 }
952
Willy Tarreaua2b39fb2011-07-10 21:39:35 +0200953 if (filter & FILT_TIME_RESP) {
Willy Tarreau5bdfd962009-10-14 15:16:29 +0200954 int tps;
955
956 /* only report lines with response times larger than filter_time_resp */
Willy Tarreaua2b39fb2011-07-10 21:39:35 +0200957 if (!time_field) {
Willy Tarreau26deaf52011-07-10 19:47:48 +0200958 time_field = field_start(accept_field, TIME_FIELD - ACCEPT_FIELD + 1);
Willy Tarreaua2b39fb2011-07-10 21:39:35 +0200959 if (unlikely(!*time_field)) {
Willy Tarreau26deaf52011-07-10 19:47:48 +0200960 truncated_line(linenum, line);
961 continue;
962 }
Willy Tarreau5bdfd962009-10-14 15:16:29 +0200963 }
964
Ryan O'Hara8cb99932017-12-15 10:21:39 -0600965 field_stop(time_field + 1);
Willy Tarreau758a6ea2011-07-10 18:53:44 +0200966 /* we have field TIME_FIELD in [time_field]..[e-1], let's check only the response time */
Willy Tarreau5bdfd962009-10-14 15:16:29 +0200967
Willy Tarreau758a6ea2011-07-10 18:53:44 +0200968 p = time_field;
Willy Tarreau24bcb4f2010-10-28 20:39:50 +0200969 f = 0;
Willy Tarreaudf6f0d12011-07-10 18:15:08 +0200970 while (!SEP(*p)) {
Willy Tarreau5bdfd962009-10-14 15:16:29 +0200971 tps = str2ic(p);
972 if (tps < 0) {
973 tps = -1;
Willy Tarreau5bdfd962009-10-14 15:16:29 +0200974 }
Willy Tarreau24bcb4f2010-10-28 20:39:50 +0200975 if (++f == 4)
976 break;
Willy Tarreau5bdfd962009-10-14 15:16:29 +0200977 SKIP_CHAR(p, '/');
978 }
979
Willy Tarreaua2b39fb2011-07-10 21:39:35 +0200980 if (unlikely(f < 4)) {
Willy Tarreau5bdfd962009-10-14 15:16:29 +0200981 parse_err++;
982 continue;
983 }
984
985 test &= (tps >= filter_time_resp) ^ !!(filter & FILT_INVERT_TIME_RESP);
986 }
987
Willy Tarreaud3007ff2011-09-05 02:07:23 +0200988 if (filter & (FILT_ERRORS_ONLY | FILT_HTTP_STATUS)) {
989 /* Check both error codes (-1, 5xx) and status code ranges */
Willy Tarreau26deaf52011-07-10 19:47:48 +0200990 if (time_field)
991 b = field_start(time_field, STATUS_FIELD - TIME_FIELD + 1);
992 else
993 b = field_start(accept_field, STATUS_FIELD - ACCEPT_FIELD + 1);
994
Willy Tarreaua2b39fb2011-07-10 21:39:35 +0200995 if (unlikely(!*b)) {
Willy Tarreau72c28532009-01-22 18:56:50 +0100996 truncated_line(linenum, line);
997 continue;
998 }
Willy Tarreaua2b39fb2011-07-10 21:39:35 +0200999
Willy Tarreaud3007ff2011-09-05 02:07:23 +02001000 val = str2ic(b);
1001 if (filter & FILT_ERRORS_ONLY)
1002 test &= (val < 0 || (val >= 500 && val <= 599)) ^ !!(filter & FILT_INVERT_ERRORS);
1003
1004 if (filter & FILT_HTTP_STATUS)
1005 test &= (val >= filt_http_status_low && val <= filt_http_status_high) ^ !!(filter & FILT_INVERT_HTTP_STATUS);
Willy Tarreau72c28532009-01-22 18:56:50 +01001006 }
1007
Willy Tarreau08911ff2011-10-13 13:28:36 +02001008 if (filter & (FILT_QUEUE_ONLY|FILT_QUEUE_SRV_ONLY)) {
1009 /* Check if the server's queue is non-nul */
1010 if (time_field)
1011 b = field_start(time_field, QUEUE_LEN_FIELD - TIME_FIELD + 1);
1012 else
1013 b = field_start(accept_field, QUEUE_LEN_FIELD - ACCEPT_FIELD + 1);
1014
1015 if (unlikely(!*b)) {
1016 truncated_line(linenum, line);
1017 continue;
1018 }
1019
1020 if (*b == '0') {
1021 if (filter & FILT_QUEUE_SRV_ONLY) {
1022 test = 0;
1023 }
1024 else {
1025 do {
1026 b++;
1027 if (*b == '/') {
1028 b++;
1029 break;
1030 }
1031 } while (*b);
1032 test &= ((unsigned char)(*b - '1') < 9);
1033 }
1034 }
1035 }
1036
Hervé COMMOWICK927cddd2011-08-10 17:42:41 +02001037 if (filter & FILT_TERM_CODE_NAME) {
1038 /* only report corresponding termination code name */
1039 if (time_field)
1040 b = field_start(time_field, TERM_CODES_FIELD - TIME_FIELD + 1);
1041 else
1042 b = field_start(accept_field, TERM_CODES_FIELD - ACCEPT_FIELD + 1);
1043
1044 if (unlikely(!*b)) {
1045 truncated_line(linenum, line);
1046 continue;
1047 }
1048
1049 test &= (b[0] == filter_term_code_name[0] && b[1] == filter_term_code_name[1]) ^ !!(filter & FILT_INVERT_TERM_CODE_NAME);
1050 }
1051
1052
Willy Tarreau0f423a72010-05-03 10:50:54 +02001053 test ^= filter_invert;
1054 if (!test)
1055 continue;
1056
Willy Tarreaua2b39fb2011-07-10 21:39:35 +02001057 /************** here we process inputs *******************/
Willy Tarreau72c28532009-01-22 18:56:50 +01001058
Willy Tarreau7cf479c2013-02-16 23:49:04 +01001059 if (line_filter) {
1060 if (filter & FILT_COUNT_IP_COUNT)
1061 filter_count_ip(source_field, accept_field, time_field, &t);
1062 else
1063 line_filter(accept_field, time_field, &t);
1064 }
Willy Tarreaua2b39fb2011-07-10 21:39:35 +02001065 else
Willy Tarreaua1629a52012-11-13 20:48:15 +01001066 lines_out++; /* FILT_COUNT_ONLY was used, so we're just counting lines */
1067 if (lines_max >= 0 && lines_out >= lines_max)
Willy Tarreau667c9052012-10-10 16:49:28 +02001068 break;
Willy Tarreaua2b39fb2011-07-10 21:39:35 +02001069 }
Willy Tarreauabe45b62010-10-28 20:33:46 +02001070
Willy Tarreaue1a908c2012-01-03 09:23:03 +01001071 skip_filters:
Willy Tarreaua2b39fb2011-07-10 21:39:35 +02001072 /*****************************************************
1073 * Here we've finished reading all input. Depending on the
1074 * filters, we may still have some analysis to run on the
1075 * collected data and to output data in a new format.
1076 *************************************************** */
Willy Tarreau72c28532009-01-22 18:56:50 +01001077
1078 if (t)
1079 free(t);
1080
1081 if (filter & FILT_COUNT_ONLY) {
Willy Tarreaua2b39fb2011-07-10 21:39:35 +02001082 printf("%d\n", lines_out);
Willy Tarreau72c28532009-01-22 18:56:50 +01001083 exit(0);
1084 }
1085
Willy Tarreau72c28532009-01-22 18:56:50 +01001086 if (filter & (FILT_ACC_COUNT|FILT_ACC_DELAY)) {
1087 /* sort and count all timers. Output will look like this :
1088 * <accept_date> <delta_ms from previous one> <nb entries>
1089 */
1090 n = eb32_first(&timers[0]);
1091
1092 if (n)
1093 last = n->key;
1094 while (n) {
1095 unsigned int d, h, m, s, ms;
1096
1097 t = container_of(n, struct timer, node);
1098 h = n->key;
1099 d = h - last;
1100 last = h;
1101
1102 if (d >= filter_acc_delay && t->count >= filter_acc_count) {
1103 ms = h % 1000; h = h / 1000;
1104 s = h % 60; h = h / 60;
1105 m = h % 60; h = h / 60;
Willy Tarreau72c28532009-01-22 18:56:50 +01001106 printf("%02d:%02d:%02d.%03d %d %d %d\n", h, m, s, ms, last, d, t->count);
Willy Tarreau667c9052012-10-10 16:49:28 +02001107 lines_out++;
Willy Tarreaua1629a52012-11-13 20:48:15 +01001108 if (lines_max >= 0 && lines_out >= lines_max)
Willy Tarreau667c9052012-10-10 16:49:28 +02001109 break;
Willy Tarreau72c28532009-01-22 18:56:50 +01001110 }
1111 n = eb32_next(n);
1112 }
1113 }
1114 else if (filter & FILT_GRAPH_TIMERS) {
1115 /* sort all timers */
1116 for (f = 0; f < 5; f++) {
1117 struct eb32_node *n;
1118 int val;
1119
1120 val = 0;
1121 n = eb32_first(&timers[f]);
1122 while (n) {
1123 int i;
1124 double d;
1125
1126 t = container_of(n, struct timer, node);
1127 last = n->key;
1128 val = t->count;
1129
1130 i = (last < 0) ? -last : last;
1131 i = fls_auto(i) - QBITS;
1132
1133 if (i > 0)
1134 d = val / (double)(1 << i);
1135 else
1136 d = val;
1137
Willy Tarreaua1629a52012-11-13 20:48:15 +01001138 if (d > 0.0)
Willy Tarreau72c28532009-01-22 18:56:50 +01001139 printf("%d %d %f\n", f, last, d+1.0);
Willy Tarreau72c28532009-01-22 18:56:50 +01001140
1141 n = eb32_next(n);
1142 }
Willy Tarreau214c2032009-02-20 11:02:32 +01001143 }
1144 }
1145 else if (filter & FILT_PERCENTILE) {
1146 /* report timers by percentile :
1147 * <percent> <total> <max_req_time> <max_conn_time> <max_resp_time> <max_data_time>
1148 * We don't count errs.
1149 */
1150 struct eb32_node *n[5];
1151 unsigned long cum[5];
1152 double step;
1153
Willy Tarreaua2b39fb2011-07-10 21:39:35 +02001154 if (!lines_out)
Willy Tarreau910ba4b2009-11-17 10:16:19 +01001155 goto empty;
1156
Willy Tarreau214c2032009-02-20 11:02:32 +01001157 for (f = 1; f < 5; f++) {
1158 n[f] = eb32_first(&timers[f]);
1159 cum[f] = container_of(n[f], struct timer, node)->count;
1160 }
1161
1162 for (step = 1; step <= 1000;) {
Willy Tarreaua2b39fb2011-07-10 21:39:35 +02001163 unsigned int thres = lines_out * (step / 1000.0);
Willy Tarreau214c2032009-02-20 11:02:32 +01001164
1165 printf("%3.1f %d ", step/10.0, thres);
1166 for (f = 1; f < 5; f++) {
1167 struct eb32_node *next;
1168 while (cum[f] < thres) {
1169 /* need to find other keys */
1170 next = eb32_next(n[f]);
1171 if (!next)
1172 break;
1173 n[f] = next;
1174 cum[f] += container_of(next, struct timer, node)->count;
1175 }
1176
1177 /* value still within $step % of total */
1178 printf("%d ", n[f]->key);
1179 }
1180 putchar('\n');
1181 if (step >= 100 && step < 900)
1182 step += 50; // jump 5% by 5% between those steps.
1183 else if (step >= 20 && step < 980)
1184 step += 10;
1185 else
1186 step += 1;
Willy Tarreau72c28532009-01-22 18:56:50 +01001187 }
1188 }
Willy Tarreau0f423a72010-05-03 10:50:54 +02001189 else if (filter & FILT_COUNT_STATUS) {
1190 /* output all statuses in the form of <status> <occurrences> */
1191 n = eb32_first(&timers[0]);
1192 while (n) {
1193 t = container_of(n, struct timer, node);
1194 printf("%d %d\n", n->key, t->count);
Willy Tarreaua2b39fb2011-07-10 21:39:35 +02001195 lines_out++;
Willy Tarreaua1629a52012-11-13 20:48:15 +01001196 if (lines_max >= 0 && lines_out >= lines_max)
Willy Tarreau667c9052012-10-10 16:49:28 +02001197 break;
Willy Tarreau0f423a72010-05-03 10:50:54 +02001198 n = eb32_next(n);
1199 }
1200 }
Willy Tarreaua2b39fb2011-07-10 21:39:35 +02001201 else if (filter & FILT_COUNT_SRV_STATUS) {
Willy Tarreaud2201062010-05-27 18:17:30 +02001202 struct ebmb_node *srv_node;
1203 struct srv_st *srv;
1204
1205 printf("#srv_name 1xx 2xx 3xx 4xx 5xx other tot_req req_ok pct_ok avg_ct avg_rt\n");
1206
1207 srv_node = ebmb_first(&timers[0]);
1208 while (srv_node) {
1209 int tot_rq;
1210
1211 srv = container_of(srv_node, struct srv_st, node);
1212
1213 tot_rq = 0;
1214 for (f = 0; f <= 5; f++)
1215 tot_rq += srv->st_cnt[f];
1216
1217 printf("%s %d %d %d %d %d %d %d %d %.1f %d %d\n",
1218 srv_node->key, srv->st_cnt[1], srv->st_cnt[2],
1219 srv->st_cnt[3], srv->st_cnt[4], srv->st_cnt[5], srv->st_cnt[0],
1220 tot_rq,
1221 srv->nb_ok, (double)srv->nb_ok * 100.0 / (tot_rq?tot_rq:1),
1222 (int)(srv->cum_ct / (srv->nb_ct?srv->nb_ct:1)), (int)(srv->cum_rt / (srv->nb_rt?srv->nb_rt:1)));
1223 srv_node = ebmb_next(srv_node);
Willy Tarreaua2b39fb2011-07-10 21:39:35 +02001224 lines_out++;
Willy Tarreaua1629a52012-11-13 20:48:15 +01001225 if (lines_max >= 0 && lines_out >= lines_max)
Willy Tarreau667c9052012-10-10 16:49:28 +02001226 break;
Willy Tarreaud2201062010-05-27 18:17:30 +02001227 }
1228 }
Willy Tarreau8a09b662012-10-10 10:26:22 +02001229 else if (filter & (FILT_COUNT_TERM_CODES|FILT_COUNT_COOK_CODES)) {
Willy Tarreaud8fc1102010-09-12 17:56:16 +02001230 /* output all statuses in the form of <code> <occurrences> */
1231 n = eb32_first(&timers[0]);
1232 while (n) {
1233 t = container_of(n, struct timer, node);
1234 printf("%c%c %d\n", (n->key >> 8), (n->key) & 255, t->count);
Willy Tarreaua2b39fb2011-07-10 21:39:35 +02001235 lines_out++;
Willy Tarreaua1629a52012-11-13 20:48:15 +01001236 if (lines_max >= 0 && lines_out >= lines_max)
Willy Tarreau667c9052012-10-10 16:49:28 +02001237 break;
Willy Tarreaud8fc1102010-09-12 17:56:16 +02001238 n = eb32_next(n);
1239 }
1240 }
Willy Tarreau7cf479c2013-02-16 23:49:04 +01001241 else if (filter & (FILT_COUNT_URL_ANY|FILT_COUNT_IP_COUNT)) {
Willy Tarreauabe45b62010-10-28 20:33:46 +02001242 struct eb_node *node, *next;
1243
1244 if (!(filter & FILT_COUNT_URL_ONLY)) {
1245 /* we have to sort on another criterion. We'll use timers[1] for the
1246 * destination tree.
1247 */
1248
1249 timers[1] = EB_ROOT; /* reconfigure to accept duplicates */
1250 for (node = eb_first(&timers[0]); node; node = next) {
1251 next = eb_next(node);
1252 eb_delete(node);
1253
1254 ustat = container_of(node, struct url_stat, node.url.node);
1255
Willy Tarreau7cf479c2013-02-16 23:49:04 +01001256 if (filter & (FILT_COUNT_URL_COUNT|FILT_COUNT_IP_COUNT))
Willy Tarreauabe45b62010-10-28 20:33:46 +02001257 ustat->node.val.key = ustat->nb_req;
1258 else if (filter & FILT_COUNT_URL_ERR)
1259 ustat->node.val.key = ustat->nb_err;
1260 else if (filter & FILT_COUNT_URL_TTOT)
1261 ustat->node.val.key = ustat->total_time;
1262 else if (filter & FILT_COUNT_URL_TAVG)
1263 ustat->node.val.key = ustat->nb_req ? ustat->total_time / ustat->nb_req : 0;
1264 else if (filter & FILT_COUNT_URL_TTOTO)
1265 ustat->node.val.key = ustat->total_time_ok;
1266 else if (filter & FILT_COUNT_URL_TAVGO)
1267 ustat->node.val.key = (ustat->nb_req - ustat->nb_err) ? ustat->total_time_ok / (ustat->nb_req - ustat->nb_err) : 0;
Baptiste61aaad02012-09-08 23:10:03 +02001268 else if (filter & FILT_COUNT_URL_BAVG)
1269 ustat->node.val.key = ustat->nb_req ? ustat->total_bytes_sent / ustat->nb_req : 0;
1270 else if (filter & FILT_COUNT_URL_BTOT)
1271 ustat->node.val.key = ustat->total_bytes_sent;
Willy Tarreauabe45b62010-10-28 20:33:46 +02001272 else
1273 ustat->node.val.key = 0;
1274
1275 eb64_insert(&timers[1], &ustat->node.val);
1276 }
1277 /* switch trees */
1278 timers[0] = timers[1];
1279 }
1280
Willy Tarreau7cf479c2013-02-16 23:49:04 +01001281 if (FILT_COUNT_IP_COUNT)
1282 printf("#req err ttot tavg oktot okavg bavg btot src\n");
1283 else
1284 printf("#req err ttot tavg oktot okavg bavg btot url\n");
Willy Tarreauabe45b62010-10-28 20:33:46 +02001285
1286 /* scan the tree in its reverse sorting order */
1287 node = eb_last(&timers[0]);
1288 while (node) {
1289 ustat = container_of(node, struct url_stat, node.url.node);
Baptiste61aaad02012-09-08 23:10:03 +02001290 printf("%d %d %Ld %Ld %Ld %Ld %Ld %Ld %s\n",
Willy Tarreauabe45b62010-10-28 20:33:46 +02001291 ustat->nb_req,
1292 ustat->nb_err,
1293 ustat->total_time,
1294 ustat->nb_req ? ustat->total_time / ustat->nb_req : 0,
1295 ustat->total_time_ok,
1296 (ustat->nb_req - ustat->nb_err) ? ustat->total_time_ok / (ustat->nb_req - ustat->nb_err) : 0,
Baptiste61aaad02012-09-08 23:10:03 +02001297 ustat->nb_req ? ustat->total_bytes_sent / ustat->nb_req : 0,
1298 ustat->total_bytes_sent,
Willy Tarreauabe45b62010-10-28 20:33:46 +02001299 ustat->url);
1300
1301 node = eb_prev(node);
Willy Tarreaua2b39fb2011-07-10 21:39:35 +02001302 lines_out++;
Willy Tarreaua1629a52012-11-13 20:48:15 +01001303 if (lines_max >= 0 && lines_out >= lines_max)
Willy Tarreau667c9052012-10-10 16:49:28 +02001304 break;
Willy Tarreauabe45b62010-10-28 20:33:46 +02001305 }
1306 }
Willy Tarreaud2201062010-05-27 18:17:30 +02001307
Willy Tarreau910ba4b2009-11-17 10:16:19 +01001308 empty:
Willy Tarreau72c28532009-01-22 18:56:50 +01001309 if (!(filter & FILT_QUIET))
1310 fprintf(stderr, "%d lines in, %d lines out, %d parsing errors\n",
Willy Tarreaua2b39fb2011-07-10 21:39:35 +02001311 linenum, lines_out, parse_err);
Willy Tarreau72c28532009-01-22 18:56:50 +01001312 exit(0);
1313}
1314
Willy Tarreaua2b39fb2011-07-10 21:39:35 +02001315void filter_output_line(const char *accept_field, const char *time_field, struct timer **tptr)
1316{
1317 puts(line);
1318 lines_out++;
1319}
1320
1321void filter_accept_holes(const char *accept_field, const char *time_field, struct timer **tptr)
1322{
1323 struct timer *t2;
1324 int val;
1325
1326 val = convert_date(accept_field);
1327 if (unlikely(val < 0)) {
1328 truncated_line(linenum, line);
1329 return;
1330 }
1331
1332 t2 = insert_value(&timers[0], tptr, val);
1333 t2->count++;
Willy Tarreaua2b39fb2011-07-10 21:39:35 +02001334 return;
1335}
1336
1337void filter_count_status(const char *accept_field, const char *time_field, struct timer **tptr)
1338{
1339 struct timer *t2;
1340 const char *b;
1341 int val;
1342
1343 if (time_field)
1344 b = field_start(time_field, STATUS_FIELD - TIME_FIELD + 1);
1345 else
1346 b = field_start(accept_field, STATUS_FIELD - ACCEPT_FIELD + 1);
1347
1348 if (unlikely(!*b)) {
1349 truncated_line(linenum, line);
1350 return;
1351 }
1352
1353 val = str2ic(b);
1354
1355 t2 = insert_value(&timers[0], tptr, val);
1356 t2->count++;
1357}
1358
Willy Tarreau8a09b662012-10-10 10:26:22 +02001359void filter_count_cook_codes(const char *accept_field, const char *time_field, struct timer **tptr)
1360{
1361 struct timer *t2;
1362 const char *b;
1363 int val;
1364
1365 if (time_field)
1366 b = field_start(time_field, TERM_CODES_FIELD - TIME_FIELD + 1);
1367 else
1368 b = field_start(accept_field, TERM_CODES_FIELD - ACCEPT_FIELD + 1);
1369
1370 if (unlikely(!*b)) {
1371 truncated_line(linenum, line);
1372 return;
1373 }
1374
1375 val = 256 * b[2] + b[3];
1376
1377 t2 = insert_value(&timers[0], tptr, val);
1378 t2->count++;
1379}
1380
Willy Tarreaua2b39fb2011-07-10 21:39:35 +02001381void filter_count_term_codes(const char *accept_field, const char *time_field, struct timer **tptr)
1382{
1383 struct timer *t2;
1384 const char *b;
1385 int val;
1386
1387 if (time_field)
1388 b = field_start(time_field, TERM_CODES_FIELD - TIME_FIELD + 1);
1389 else
1390 b = field_start(accept_field, TERM_CODES_FIELD - ACCEPT_FIELD + 1);
1391
1392 if (unlikely(!*b)) {
1393 truncated_line(linenum, line);
1394 return;
1395 }
1396
1397 val = 256 * b[0] + b[1];
1398
1399 t2 = insert_value(&timers[0], tptr, val);
1400 t2->count++;
1401}
1402
1403void filter_count_srv_status(const char *accept_field, const char *time_field, struct timer **tptr)
1404{
1405 const char *b, *e, *p;
1406 int f, err, array[5];
1407 struct ebmb_node *srv_node;
1408 struct srv_st *srv;
1409 int val;
1410
1411 /* the server field is before the status field, so let's
1412 * parse them in the proper order.
1413 */
1414 b = field_start(accept_field, SERVER_FIELD - ACCEPT_FIELD + 1);
1415 if (unlikely(!*b)) {
1416 truncated_line(linenum, line);
1417 return;
1418 }
1419
1420 e = field_stop(b + 1); /* we have the server name in [b]..[e-1] */
1421
1422 /* the chance that a server name already exists is extremely high,
1423 * so let's perform a normal lookup first.
1424 */
1425 srv_node = ebst_lookup_len(&timers[0], b, e - b);
1426 srv = container_of(srv_node, struct srv_st, node);
1427
1428 if (!srv_node) {
1429 /* server not yet in the tree, let's create it */
1430 srv = (void *)calloc(1, sizeof(struct srv_st) + e - b + 1);
1431 srv_node = &srv->node;
1432 memcpy(&srv_node->key, b, e - b);
1433 srv_node->key[e - b] = '\0';
1434 ebst_insert(&timers[0], srv_node);
1435 }
1436
1437 /* let's collect the connect and response times */
1438 if (!time_field) {
1439 time_field = field_start(e, TIME_FIELD - SERVER_FIELD);
1440 if (unlikely(!*time_field)) {
1441 truncated_line(linenum, line);
1442 return;
1443 }
1444 }
1445
1446 e = field_stop(time_field + 1);
1447 /* we have field TIME_FIELD in [time_field]..[e-1] */
1448
1449 p = time_field;
1450 err = 0;
1451 f = 0;
1452 while (!SEP(*p)) {
1453 array[f] = str2ic(p);
1454 if (array[f] < 0) {
1455 array[f] = -1;
1456 err = 1;
1457 }
1458 if (++f == 5)
1459 break;
1460 SKIP_CHAR(p, '/');
1461 }
1462
1463 if (unlikely(f < 5)){
1464 parse_err++;
1465 return;
1466 }
1467
1468 /* OK we have our timers in array[2,3] */
1469 if (!err)
1470 srv->nb_ok++;
1471
1472 if (array[2] >= 0) {
1473 srv->cum_ct += array[2];
1474 srv->nb_ct++;
1475 }
1476
1477 if (array[3] >= 0) {
1478 srv->cum_rt += array[3];
1479 srv->nb_rt++;
1480 }
1481
1482 /* we're interested in the 5 HTTP status classes (1xx ... 5xx), and
1483 * the invalid ones which will be reported as 0.
1484 */
1485 b = field_start(e, STATUS_FIELD - TIME_FIELD);
1486 if (unlikely(!*b)) {
1487 truncated_line(linenum, line);
1488 return;
1489 }
1490
1491 val = 0;
1492 if (*b >= '1' && *b <= '5')
1493 val = *b - '0';
1494
1495 srv->st_cnt[val]++;
1496}
1497
1498void filter_count_url(const char *accept_field, const char *time_field, struct timer **tptr)
1499{
1500 struct url_stat *ustat = NULL;
1501 struct ebpt_node *ebpt_old;
1502 const char *b, *e;
1503 int f, err, array[5];
Baptiste61aaad02012-09-08 23:10:03 +02001504 int val;
Willy Tarreaua2b39fb2011-07-10 21:39:35 +02001505
1506 /* let's collect the response time */
1507 if (!time_field) {
1508 time_field = field_start(accept_field, TIME_FIELD - ACCEPT_FIELD + 1); // avg 115 ns per line
1509 if (unlikely(!*time_field)) {
1510 truncated_line(linenum, line);
1511 return;
1512 }
1513 }
1514
1515 /* we have the field TIME_FIELD starting at <time_field>. We'll
1516 * parse the 5 timers to detect errors, it takes avg 55 ns per line.
1517 */
1518 e = time_field; err = 0; f = 0;
1519 while (!SEP(*e)) {
1520 array[f] = str2ic(e);
1521 if (array[f] < 0) {
1522 array[f] = -1;
1523 err = 1;
1524 }
1525 if (++f == 5)
1526 break;
1527 SKIP_CHAR(e, '/');
1528 }
1529 if (f < 5) {
1530 parse_err++;
1531 return;
1532 }
1533
1534 /* OK we have our timers in array[3], and err is >0 if at
1535 * least one -1 was seen. <e> points to the first char of
1536 * the last timer. Let's prepare a new node with that.
1537 */
1538 if (unlikely(!ustat))
1539 ustat = calloc(1, sizeof(*ustat));
1540
1541 ustat->nb_err = err;
1542 ustat->nb_req = 1;
1543
1544 /* use array[4] = total time in case of error */
1545 ustat->total_time = (array[3] >= 0) ? array[3] : array[4];
1546 ustat->total_time_ok = (array[3] >= 0) ? array[3] : 0;
1547
Baptiste61aaad02012-09-08 23:10:03 +02001548 e = field_start(e, BYTES_SENT_FIELD - TIME_FIELD + 1);
1549 val = str2ic(e);
1550 ustat->total_bytes_sent = val;
1551
Willy Tarreaua2b39fb2011-07-10 21:39:35 +02001552 /* the line may be truncated because of a bad request or anything like this,
1553 * without a method. Also, if it does not begin with an quote, let's skip to
1554 * the next field because it's a capture. Let's fall back to the "method" itself
1555 * if there's nothing else.
1556 */
Baptiste61aaad02012-09-08 23:10:03 +02001557 e = field_start(e, METH_FIELD - BYTES_SENT_FIELD + 1);
Willy Tarreau61a40c72011-09-06 08:11:27 +02001558 while (*e != '"' && *e) {
1559 /* Note: some syslog servers escape quotes ! */
1560 if (*e == '\\' && e[1] == '"')
1561 break;
Willy Tarreaua2b39fb2011-07-10 21:39:35 +02001562 e = field_start(e, 2);
Willy Tarreau61a40c72011-09-06 08:11:27 +02001563 }
Willy Tarreaua2b39fb2011-07-10 21:39:35 +02001564
1565 if (unlikely(!*e)) {
1566 truncated_line(linenum, line);
Ilya Shipitsin4473a2e2017-09-22 22:33:16 +05001567 free(ustat);
Willy Tarreaua2b39fb2011-07-10 21:39:35 +02001568 return;
1569 }
1570
1571 b = field_start(e, URL_FIELD - METH_FIELD + 1); // avg 40 ns per line
1572 if (!*b)
1573 b = e;
1574
1575 /* stop at end of field or first ';' or '?', takes avg 64 ns per line */
1576 e = b;
1577 do {
Willy Tarreau14389e72011-07-10 22:11:17 +02001578 if (*e == ' ' || *e == '?' || *e == ';') {
Willy Tarreaua2b39fb2011-07-10 21:39:35 +02001579 *(char *)e = 0;
1580 break;
1581 }
1582 e++;
1583 } while (*e);
1584
1585 /* now instead of copying the URL for a simple lookup, we'll link
1586 * to it from the node we're trying to insert. If it returns a
1587 * different value, it was already there. Otherwise we just have
1588 * to dynamically realloc an entry using strdup().
1589 */
1590 ustat->node.url.key = (char *)b;
1591 ebpt_old = ebis_insert(&timers[0], &ustat->node.url);
1592
1593 if (ebpt_old != &ustat->node.url) {
1594 struct url_stat *ustat_old;
1595 /* node was already there, let's update previous one */
1596 ustat_old = container_of(ebpt_old, struct url_stat, node.url);
1597 ustat_old->nb_req ++;
1598 ustat_old->nb_err += ustat->nb_err;
1599 ustat_old->total_time += ustat->total_time;
1600 ustat_old->total_time_ok += ustat->total_time_ok;
Baptiste61aaad02012-09-08 23:10:03 +02001601 ustat_old->total_bytes_sent += ustat->total_bytes_sent;
Willy Tarreaua2b39fb2011-07-10 21:39:35 +02001602 } else {
1603 ustat->url = ustat->node.url.key = strdup(ustat->node.url.key);
1604 ustat = NULL; /* node was used */
1605 }
1606}
1607
Willy Tarreau7cf479c2013-02-16 23:49:04 +01001608void filter_count_ip(const char *source_field, const char *accept_field, const char *time_field, struct timer **tptr)
1609{
1610 struct url_stat *ustat = NULL;
1611 struct ebpt_node *ebpt_old;
1612 const char *b, *e;
1613 int f, err, array[5];
1614 int val;
1615
1616 /* let's collect the response time */
1617 if (!time_field) {
1618 time_field = field_start(accept_field, TIME_FIELD - ACCEPT_FIELD + 1); // avg 115 ns per line
1619 if (unlikely(!*time_field)) {
1620 truncated_line(linenum, line);
1621 return;
1622 }
1623 }
1624
1625 /* we have the field TIME_FIELD starting at <time_field>. We'll
1626 * parse the 5 timers to detect errors, it takes avg 55 ns per line.
1627 */
1628 e = time_field; err = 0; f = 0;
1629 while (!SEP(*e)) {
1630 if (f == 0 || f == 4) {
1631 array[f] = str2ic(e);
1632 if (array[f] < 0) {
1633 array[f] = -1;
1634 err = 1;
1635 }
1636 }
1637 if (++f == 5)
1638 break;
1639 SKIP_CHAR(e, '/');
1640 }
1641 if (f < 5) {
1642 parse_err++;
1643 return;
1644 }
1645
1646 /* OK we have our timers in array[0], and err is >0 if at
1647 * least one -1 was seen. <e> points to the first char of
1648 * the last timer. Let's prepare a new node with that.
1649 */
1650 if (unlikely(!ustat))
1651 ustat = calloc(1, sizeof(*ustat));
1652
1653 ustat->nb_err = err;
1654 ustat->nb_req = 1;
1655
1656 /* use array[4] = total time in case of error */
1657 ustat->total_time = (array[0] >= 0) ? array[0] : array[4];
1658 ustat->total_time_ok = (array[0] >= 0) ? array[0] : 0;
1659
1660 e = field_start(e, BYTES_SENT_FIELD - TIME_FIELD + 1);
1661 val = str2ic(e);
1662 ustat->total_bytes_sent = val;
1663
1664 /* the source might be IPv4 or IPv6, so we always strip the port by
1665 * removing the last colon.
1666 */
1667 b = source_field;
1668 e = field_stop(b + 1);
1669 while (e > b && e[-1] != ':')
1670 e--;
1671 *(char *)(e - 1) = '\0';
1672
1673 /* now instead of copying the src for a simple lookup, we'll link
1674 * to it from the node we're trying to insert. If it returns a
1675 * different value, it was already there. Otherwise we just have
1676 * to dynamically realloc an entry using strdup(). We're using the
1677 * <url> field of the node to store the source address.
1678 */
1679 ustat->node.url.key = (char *)b;
1680 ebpt_old = ebis_insert(&timers[0], &ustat->node.url);
1681
1682 if (ebpt_old != &ustat->node.url) {
1683 struct url_stat *ustat_old;
1684 /* node was already there, let's update previous one */
1685 ustat_old = container_of(ebpt_old, struct url_stat, node.url);
1686 ustat_old->nb_req ++;
1687 ustat_old->nb_err += ustat->nb_err;
1688 ustat_old->total_time += ustat->total_time;
1689 ustat_old->total_time_ok += ustat->total_time_ok;
1690 ustat_old->total_bytes_sent += ustat->total_bytes_sent;
1691 } else {
1692 ustat->url = ustat->node.url.key = strdup(ustat->node.url.key);
1693 ustat = NULL; /* node was used */
1694 }
1695}
1696
Willy Tarreaua2b39fb2011-07-10 21:39:35 +02001697void filter_graphs(const char *accept_field, const char *time_field, struct timer **tptr)
1698{
1699 struct timer *t2;
Ryan O'Hara8cb99932017-12-15 10:21:39 -06001700 const char *p;
Willy Tarreaua2b39fb2011-07-10 21:39:35 +02001701 int f, err, array[5];
1702
1703 if (!time_field) {
1704 time_field = field_start(accept_field, TIME_FIELD - ACCEPT_FIELD + 1);
1705 if (unlikely(!*time_field)) {
1706 truncated_line(linenum, line);
1707 return;
1708 }
1709 }
1710
Ryan O'Hara8cb99932017-12-15 10:21:39 -06001711 field_stop(time_field + 1);
Willy Tarreaua2b39fb2011-07-10 21:39:35 +02001712 /* we have field TIME_FIELD in [time_field]..[e-1] */
1713
1714 p = time_field;
1715 err = 0;
1716 f = 0;
1717 while (!SEP(*p)) {
1718 array[f] = str2ic(p);
1719 if (array[f] < 0) {
1720 array[f] = -1;
1721 err = 1;
1722 }
1723 if (++f == 5)
1724 break;
1725 SKIP_CHAR(p, '/');
1726 }
1727
1728 if (unlikely(f < 5)) {
1729 parse_err++;
1730 return;
1731 }
1732
1733 /* if we find at least one negative time, we count one error
1734 * with a time equal to the total session time. This will
1735 * emphasize quantum timing effects associated to known
1736 * timeouts. Note that on some buggy machines, it is possible
1737 * that the total time is negative, hence the reason to reset
1738 * it.
1739 */
1740
1741 if (filter & FILT_GRAPH_TIMERS) {
1742 if (err) {
1743 if (array[4] < 0)
1744 array[4] = -1;
1745 t2 = insert_timer(&timers[0], tptr, array[4]); // total time
1746 t2->count++;
1747 } else {
1748 int v;
1749
1750 t2 = insert_timer(&timers[1], tptr, array[0]); t2->count++; // req
1751 t2 = insert_timer(&timers[2], tptr, array[2]); t2->count++; // conn
1752 t2 = insert_timer(&timers[3], tptr, array[3]); t2->count++; // resp
1753
1754 v = array[4] - array[0] - array[1] - array[2] - array[3]; // data time
1755 if (v < 0 && !(filter & FILT_QUIET))
1756 fprintf(stderr, "ERR: %s (%d %d %d %d %d => %d)\n",
1757 line, array[0], array[1], array[2], array[3], array[4], v);
1758 t2 = insert_timer(&timers[4], tptr, v); t2->count++;
1759 lines_out++;
1760 }
1761 } else { /* percentile */
1762 if (err) {
1763 if (array[4] < 0)
1764 array[4] = -1;
1765 t2 = insert_value(&timers[0], tptr, array[4]); // total time
1766 t2->count++;
1767 } else {
1768 int v;
1769
1770 t2 = insert_value(&timers[1], tptr, array[0]); t2->count++; // req
1771 t2 = insert_value(&timers[2], tptr, array[2]); t2->count++; // conn
1772 t2 = insert_value(&timers[3], tptr, array[3]); t2->count++; // resp
1773
1774 v = array[4] - array[0] - array[1] - array[2] - array[3]; // data time
1775 if (v < 0 && !(filter & FILT_QUIET))
1776 fprintf(stderr, "ERR: %s (%d %d %d %d %d => %d)\n",
1777 line, array[0], array[1], array[2], array[3], array[4], v);
1778 t2 = insert_value(&timers[4], tptr, v); t2->count++;
1779 lines_out++;
1780 }
1781 }
1782}
1783
1784
Willy Tarreau72c28532009-01-22 18:56:50 +01001785/*
1786 * Local variables:
1787 * c-indent-level: 8
1788 * c-basic-offset: 8
1789 * End:
1790 */