blob: 1be6dccee33fd187f45f4f549769815f90ad2a12 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * General logging functions.
3 *
Willy Tarreaub7f694f2008-06-22 17:18:02 +02004 * Copyright 2000-2008 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
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 Tarreau8a3f52f2012-12-20 21:23:42 +010013#include <ctype.h>
Willy Tarreauc8f24f82007-11-30 18:38:35 +010014#include <fcntl.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020015#include <stdarg.h>
16#include <stdio.h>
17#include <stdlib.h>
18#include <string.h>
19#include <syslog.h>
20#include <time.h>
21#include <unistd.h>
Robert Tsai81ae1952007-12-05 10:47:29 +010022#include <errno.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020023
24#include <sys/time.h>
Willy Tarreau077edcb2016-08-10 18:30:56 +020025#include <sys/uio.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020026
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020027#include <common/config.h>
Willy Tarreaud6d06902009-08-19 11:22:33 +020028#include <common/compat.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020029#include <common/standard.h>
Willy Tarreaufb278672006-10-15 15:38:50 +020030#include <common/time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020031
Christopher Fauletc1b730a2017-10-24 12:00:51 +020032#include <types/cli.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020033#include <types/global.h>
William Lallemand723b73a2012-02-08 16:37:49 +010034#include <types/log.h>
Willy Tarreauec6c5df2008-07-15 00:22:45 +020035
Christopher Fauletc1b730a2017-10-24 12:00:51 +020036#include <proto/applet.h>
37#include <proto/cli.h>
William Lallemand5f232402012-04-05 18:02:55 +020038#include <proto/frontend.h>
Andrew Hayworth0ebc55f2015-04-27 21:37:03 +000039#include <proto/proto_http.h>
Willy Tarreauec6c5df2008-07-15 00:22:45 +020040#include <proto/log.h>
Willy Tarreauc8368452012-12-21 00:09:23 +010041#include <proto/sample.h>
Willy Tarreaufb0afa72015-04-03 14:46:27 +020042#include <proto/stream.h>
Willy Tarreau827aee92011-03-10 16:55:02 +010043#include <proto/stream_interface.h>
Willy Tarreau773d65f2012-10-12 14:56:11 +020044#ifdef USE_OPENSSL
45#include <proto/ssl_sock.h>
46#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +020047
Dragan Dosen43885c72015-10-01 13:18:13 +020048struct log_fmt {
49 char *name;
50 struct {
51 struct chunk sep1; /* first pid separator */
52 struct chunk sep2; /* second pid separator */
53 } pid;
54};
55
56static const struct log_fmt log_formats[LOG_FORMATS] = {
57 [LOG_FORMAT_RFC3164] = {
58 .name = "rfc3164",
59 .pid = {
60 .sep1 = { .str = "[", .len = 1 },
61 .sep2 = { .str = "]: ", .len = 3 }
62 }
63 },
64 [LOG_FORMAT_RFC5424] = {
65 .name = "rfc5424",
66 .pid = {
67 .sep1 = { .str = " ", .len = 1 },
68 .sep2 = { .str = " - ", .len = 3 }
69 }
70 }
Dragan Dosen1322d092015-09-22 16:05:32 +020071};
72
Dragan Dosen835b9212016-02-12 13:23:03 +010073#define FD_SETS_ARE_BITFIELDS
74#ifdef FD_SETS_ARE_BITFIELDS
75/*
76 * This map is used with all the FD_* macros to check whether a particular bit
77 * is set or not. Each bit represents an ACSII code. FD_SET() sets those bytes
78 * which should be escaped. When FD_ISSET() returns non-zero, it means that the
79 * byte should be escaped. Be careful to always pass bytes from 0 to 255
80 * exclusively to the macros.
81 */
82fd_set rfc5424_escape_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))];
83
84#else
85#error "Check if your OS uses bitfields for fd_sets"
86#endif
87
Willy Tarreaubaaee002006-06-26 02:48:02 +020088const char *log_facilities[NB_LOG_FACILITIES] = {
89 "kern", "user", "mail", "daemon",
90 "auth", "syslog", "lpr", "news",
91 "uucp", "cron", "auth2", "ftp",
92 "ntp", "audit", "alert", "cron2",
93 "local0", "local1", "local2", "local3",
94 "local4", "local5", "local6", "local7"
95};
96
Willy Tarreaubaaee002006-06-26 02:48:02 +020097const char *log_levels[NB_LOG_LEVELS] = {
98 "emerg", "alert", "crit", "err",
99 "warning", "notice", "info", "debug"
100};
101
Willy Tarreau570f2212013-06-10 16:42:09 +0200102const char sess_term_cond[16] = "-LcCsSPRIDKUIIII"; /* normal, Local, CliTo, CliErr, SrvTo, SrvErr, PxErr, Resource, Internal, Down, Killed, Up, -- */
Willy Tarreaub8750a82006-09-03 09:56:00 +0200103const char sess_fin_state[8] = "-RCHDLQT"; /* cliRequest, srvConnect, srvHeader, Data, Last, Queue, Tarpit */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200104
William Lallemand723b73a2012-02-08 16:37:49 +0100105
106/* log_format */
107struct logformat_type {
108 char *name;
109 int type;
William Lallemandbddd4fd2012-02-27 11:23:10 +0100110 int mode;
William Lallemand5e19a282012-04-02 16:22:10 +0200111 int lw; /* logwait bitsfield */
William Lallemandb7ff6a32012-03-02 14:35:21 +0100112 int (*config_callback)(struct logformat_node *node, struct proxy *curproxy);
Willy Tarreau2beef582012-12-20 17:22:52 +0100113 const char *replace_by; /* new option to use instead of old one */
William Lallemand723b73a2012-02-08 16:37:49 +0100114};
115
William Lallemandb7ff6a32012-03-02 14:35:21 +0100116int prepare_addrsource(struct logformat_node *node, struct proxy *curproxy);
117
William Lallemand723b73a2012-02-08 16:37:49 +0100118/* log_format variable names */
119static const struct logformat_type logformat_keywords[] = {
William Lallemand5e19a282012-04-02 16:22:10 +0200120 { "o", LOG_FMT_GLOBAL, PR_MODE_TCP, 0, NULL }, /* global option */
Willy Tarreau2beef582012-12-20 17:22:52 +0100121
122 /* please keep these lines sorted ! */
123 { "B", LOG_FMT_BYTES, PR_MODE_TCP, LW_BYTES, NULL }, /* bytes from server to client */
124 { "CC", LOG_FMT_CCLIENT, PR_MODE_HTTP, LW_REQHDR, NULL }, /* client cookie */
125 { "CS", LOG_FMT_CSERVER, PR_MODE_HTTP, LW_RSPHDR, NULL }, /* server cookie */
126 { "H", LOG_FMT_HOSTNAME, PR_MODE_TCP, LW_INIT, NULL }, /* Hostname */
127 { "ID", LOG_FMT_UNIQUEID, PR_MODE_HTTP, LW_BYTES, NULL }, /* Unique ID */
Willy Tarreau4bf99632014-06-13 12:21:40 +0200128 { "ST", LOG_FMT_STATUS, PR_MODE_TCP, LW_RESP, NULL }, /* status code */
William Lallemand5e19a282012-04-02 16:22:10 +0200129 { "T", LOG_FMT_DATEGMT, PR_MODE_TCP, LW_INIT, NULL }, /* date GMT */
Thierry FOURNIER / OZON.IO4cac3592016-07-28 17:19:45 +0200130 { "Ta", LOG_FMT_Ta, PR_MODE_HTTP, LW_BYTES, NULL }, /* Time active (tr to end) */
Willy Tarreau2beef582012-12-20 17:22:52 +0100131 { "Tc", LOG_FMT_TC, PR_MODE_TCP, LW_BYTES, NULL }, /* Tc */
Thierry FOURNIER / OZON.IO4cac3592016-07-28 17:19:45 +0200132 { "Th", LOG_FMT_Th, PR_MODE_TCP, LW_BYTES, NULL }, /* Time handshake */
133 { "Ti", LOG_FMT_Ti, PR_MODE_HTTP, LW_BYTES, NULL }, /* Time idle */
134 { "Tl", LOG_FMT_DATELOCAL, PR_MODE_TCP, LW_INIT, NULL }, /* date local timezone */
135 { "Tq", LOG_FMT_TQ, PR_MODE_HTTP, LW_BYTES, NULL }, /* Tq=Th+Ti+TR */
136 { "Tr", LOG_FMT_Tr, PR_MODE_HTTP, LW_BYTES, NULL }, /* Tr */
137 { "TR", LOG_FMT_TR, PR_MODE_HTTP, LW_BYTES, NULL }, /* Time to receive a valid request */
Willy Tarreau27b639d2016-05-17 17:55:27 +0200138 { "Td", LOG_FMT_TD, PR_MODE_TCP, LW_BYTES, NULL }, /* Td = Tt - (Tq + Tw + Tc + Tr) */
Willy Tarreau2beef582012-12-20 17:22:52 +0100139 { "Ts", LOG_FMT_TS, PR_MODE_TCP, LW_INIT, NULL }, /* timestamp GMT */
William Lallemand5e19a282012-04-02 16:22:10 +0200140 { "Tt", LOG_FMT_TT, PR_MODE_TCP, LW_BYTES, NULL }, /* Tt */
Willy Tarreau2beef582012-12-20 17:22:52 +0100141 { "Tw", LOG_FMT_TW, PR_MODE_TCP, LW_BYTES, NULL }, /* Tw */
142 { "U", LOG_FMT_BYTES_UP, PR_MODE_TCP, LW_BYTES, NULL }, /* bytes from client to server */
William Lallemand5e19a282012-04-02 16:22:10 +0200143 { "ac", LOG_FMT_ACTCONN, PR_MODE_TCP, LW_BYTES, NULL }, /* actconn */
Willy Tarreau2beef582012-12-20 17:22:52 +0100144 { "b", LOG_FMT_BACKEND, PR_MODE_TCP, LW_INIT, NULL }, /* backend */
William Lallemand5e19a282012-04-02 16:22:10 +0200145 { "bc", LOG_FMT_BECONN, PR_MODE_TCP, LW_BYTES, NULL }, /* beconn */
Willy Tarreau2beef582012-12-20 17:22:52 +0100146 { "bi", LOG_FMT_BACKENDIP, PR_MODE_TCP, LW_BCKIP, prepare_addrsource }, /* backend source ip */
147 { "bp", LOG_FMT_BACKENDPORT, PR_MODE_TCP, LW_BCKIP, prepare_addrsource }, /* backend source port */
William Lallemand5e19a282012-04-02 16:22:10 +0200148 { "bq", LOG_FMT_BCKQUEUE, PR_MODE_TCP, LW_BYTES, NULL }, /* backend_queue */
Willy Tarreaud02286d2017-06-23 11:23:43 +0200149 { "ci", LOG_FMT_CLIENTIP, PR_MODE_TCP, LW_CLIP | LW_XPRT, NULL }, /* client ip */
150 { "cp", LOG_FMT_CLIENTPORT, PR_MODE_TCP, LW_CLIP | LW_XPRT, NULL }, /* client port */
Willy Tarreau2beef582012-12-20 17:22:52 +0100151 { "f", LOG_FMT_FRONTEND, PR_MODE_TCP, LW_INIT, NULL }, /* frontend */
152 { "fc", LOG_FMT_FECONN, PR_MODE_TCP, LW_BYTES, NULL }, /* feconn */
Willy Tarreaud02286d2017-06-23 11:23:43 +0200153 { "fi", LOG_FMT_FRONTENDIP, PR_MODE_TCP, LW_FRTIP | LW_XPRT, NULL }, /* frontend ip */
154 { "fp", LOG_FMT_FRONTENDPORT, PR_MODE_TCP, LW_FRTIP | LW_XPRT, NULL }, /* frontend port */
Willy Tarreau2beef582012-12-20 17:22:52 +0100155 { "ft", LOG_FMT_FRONTEND_XPRT, PR_MODE_TCP, LW_INIT, NULL }, /* frontend with transport mode */
Willy Tarreaud9ed3d22014-06-13 12:23:06 +0200156 { "hr", LOG_FMT_HDRREQUEST, PR_MODE_TCP, LW_REQHDR, NULL }, /* header request */
157 { "hrl", LOG_FMT_HDRREQUESTLIST, PR_MODE_TCP, LW_REQHDR, NULL }, /* header request list */
158 { "hs", LOG_FMT_HDRRESPONS, PR_MODE_TCP, LW_RSPHDR, NULL }, /* header response */
159 { "hsl", LOG_FMT_HDRRESPONSLIST, PR_MODE_TCP, LW_RSPHDR, NULL }, /* header response list */
Andrew Hayworth0ebc55f2015-04-27 21:37:03 +0000160 { "HM", LOG_FMT_HTTP_METHOD, PR_MODE_HTTP, LW_REQ, NULL }, /* HTTP method */
161 { "HP", LOG_FMT_HTTP_PATH, PR_MODE_HTTP, LW_REQ, NULL }, /* HTTP path */
Andrew Hayworthe63ac872015-07-31 16:14:16 +0000162 { "HQ", LOG_FMT_HTTP_QUERY, PR_MODE_HTTP, LW_REQ, NULL }, /* HTTP query */
Andrew Hayworth0ebc55f2015-04-27 21:37:03 +0000163 { "HU", LOG_FMT_HTTP_URI, PR_MODE_HTTP, LW_REQ, NULL }, /* HTTP full URI */
164 { "HV", LOG_FMT_HTTP_VERSION, PR_MODE_HTTP, LW_REQ, NULL }, /* HTTP version */
Willy Tarreau7346acb2014-08-28 15:03:15 +0200165 { "lc", LOG_FMT_LOGCNT, PR_MODE_TCP, LW_INIT, NULL }, /* log counter */
Willy Tarreau2beef582012-12-20 17:22:52 +0100166 { "ms", LOG_FMT_MS, PR_MODE_TCP, LW_INIT, NULL }, /* accept date millisecond */
William Lallemand5e19a282012-04-02 16:22:10 +0200167 { "pid", LOG_FMT_PID, PR_MODE_TCP, LW_INIT, NULL }, /* log pid */
Willy Tarreau2beef582012-12-20 17:22:52 +0100168 { "r", LOG_FMT_REQ, PR_MODE_HTTP, LW_REQ, NULL }, /* request */
169 { "rc", LOG_FMT_RETRIES, PR_MODE_TCP, LW_BYTES, NULL }, /* retries */
Willy Tarreau1f0da242014-01-25 11:01:50 +0100170 { "rt", LOG_FMT_COUNTER, PR_MODE_TCP, LW_REQ, NULL }, /* request counter (HTTP or TCP session) */
Willy Tarreau2beef582012-12-20 17:22:52 +0100171 { "s", LOG_FMT_SERVER, PR_MODE_TCP, LW_SVID, NULL }, /* server */
172 { "sc", LOG_FMT_SRVCONN, PR_MODE_TCP, LW_BYTES, NULL }, /* srv_conn */
173 { "si", LOG_FMT_SERVERIP, PR_MODE_TCP, LW_SVIP, NULL }, /* server destination ip */
174 { "sp", LOG_FMT_SERVERPORT, PR_MODE_TCP, LW_SVIP, NULL }, /* server destination port */
175 { "sq", LOG_FMT_SRVQUEUE, PR_MODE_TCP, LW_BYTES, NULL }, /* srv_queue */
Willy Tarreauffc3fcd2012-10-12 20:17:54 +0200176 { "sslc", LOG_FMT_SSL_CIPHER, PR_MODE_TCP, LW_XPRT, NULL }, /* client-side SSL ciphers */
177 { "sslv", LOG_FMT_SSL_VERSION, PR_MODE_TCP, LW_XPRT, NULL }, /* client-side SSL protocol version */
Willy Tarreau2beef582012-12-20 17:22:52 +0100178 { "t", LOG_FMT_DATE, PR_MODE_TCP, LW_INIT, NULL }, /* date */
Thierry FOURNIER / OZON.IO4cac3592016-07-28 17:19:45 +0200179 { "tr", LOG_FMT_tr, PR_MODE_HTTP, LW_INIT, NULL }, /* date of start of request */
180 { "trg",LOG_FMT_trg, PR_MODE_HTTP, LW_INIT, NULL }, /* date of start of request, GMT */
181 { "trl",LOG_FMT_trl, PR_MODE_HTTP, LW_INIT, NULL }, /* date of start of request, local */
Willy Tarreau2beef582012-12-20 17:22:52 +0100182 { "ts", LOG_FMT_TERMSTATE, PR_MODE_TCP, LW_BYTES, NULL },/* termination state */
183 { "tsc", LOG_FMT_TERMSTATE_CK, PR_MODE_TCP, LW_INIT, NULL },/* termination state */
184
185 /* The following tags are deprecated and will be removed soon */
186 { "Bi", LOG_FMT_BACKENDIP, PR_MODE_TCP, LW_BCKIP, prepare_addrsource, "bi" }, /* backend source ip */
187 { "Bp", LOG_FMT_BACKENDPORT, PR_MODE_TCP, LW_BCKIP, prepare_addrsource, "bp" }, /* backend source port */
Willy Tarreaud02286d2017-06-23 11:23:43 +0200188 { "Ci", LOG_FMT_CLIENTIP, PR_MODE_TCP, LW_CLIP | LW_XPRT, NULL, "ci" }, /* client ip */
189 { "Cp", LOG_FMT_CLIENTPORT, PR_MODE_TCP, LW_CLIP | LW_XPRT, NULL, "cp" }, /* client port */
190 { "Fi", LOG_FMT_FRONTENDIP, PR_MODE_TCP, LW_FRTIP | LW_XPRT, NULL, "fi" }, /* frontend ip */
191 { "Fp", LOG_FMT_FRONTENDPORT, PR_MODE_TCP, LW_FRTIP | LW_XPRT, NULL, "fp" }, /* frontend port */
Willy Tarreau2beef582012-12-20 17:22:52 +0100192 { "Si", LOG_FMT_SERVERIP, PR_MODE_TCP, LW_SVIP, NULL, "si" }, /* server destination ip */
193 { "Sp", LOG_FMT_SERVERPORT, PR_MODE_TCP, LW_SVIP, NULL, "sp" }, /* server destination port */
194 { "cc", LOG_FMT_CCLIENT, PR_MODE_HTTP, LW_REQHDR, NULL, "CC" }, /* client cookie */
195 { "cs", LOG_FMT_CSERVER, PR_MODE_HTTP, LW_RSPHDR, NULL, "CS" }, /* server cookie */
196 { "st", LOG_FMT_STATUS, PR_MODE_HTTP, LW_RESP, NULL, "ST" }, /* status code */
William Lallemand5e19a282012-04-02 16:22:10 +0200197 { 0, 0, 0, 0, NULL }
William Lallemand723b73a2012-02-08 16:37:49 +0100198};
199
Thierry FOURNIER / OZON.IO4cac3592016-07-28 17:19:45 +0200200char default_http_log_format[] = "%ci:%cp [%tr] %ft %b/%s %TR/%Tw/%Tc/%Tr/%Ta %ST %B %CC %CS %tsc %ac/%fc/%bc/%sc/%rc %sq/%bq %hr %hs %{+Q}r"; // default format
201char clf_http_log_format[] = "%{+Q}o %{-Q}ci - - [%trg] %r %ST %B \"\" \"\" %cp %ms %ft %b %s %TR %Tw %Tc %Tr %Ta %tsc %ac %fc %bc %sc %rc %sq %bq %CC %CS %hrl %hsl";
Willy Tarreau2beef582012-12-20 17:22:52 +0100202char default_tcp_log_format[] = "%ci:%cp [%t] %ft %b/%s %Tw/%Tc/%Tt %B %ts %ac/%fc/%bc/%sc/%rc %sq/%bq";
William Lallemand723b73a2012-02-08 16:37:49 +0100203char *log_format = NULL;
204
Dragan Dosen0b85ece2015-09-25 19:17:44 +0200205/* Default string used for structured-data part in RFC5424 formatted
206 * syslog messages.
207 */
208char default_rfc5424_sd_log_format[] = "- ";
Dragan Dosen1322d092015-09-22 16:05:32 +0200209
210/* This is a global syslog header, common to all outgoing messages in
211 * RFC3164 format. It begins with time-based part and is updated by
212 * update_log_hdr().
Dragan Dosen59cee972015-09-19 22:09:02 +0200213 */
Christopher Fauletf8188c62017-06-02 16:20:16 +0200214THREAD_LOCAL char *logheader = NULL;
Dragan Dosen59cee972015-09-19 22:09:02 +0200215
Dragan Dosen1322d092015-09-22 16:05:32 +0200216/* This is a global syslog header for messages in RFC5424 format. It is
217 * updated by update_log_hdr_rfc5424().
218 */
Christopher Fauletf8188c62017-06-02 16:20:16 +0200219THREAD_LOCAL char *logheader_rfc5424 = NULL;
Dragan Dosen1322d092015-09-22 16:05:32 +0200220
Dragan Dosen59cee972015-09-19 22:09:02 +0200221/* This is a global syslog message buffer, common to all outgoing
222 * messages. It contains only the data part.
Willy Tarreaub1a2faf2012-03-19 16:51:53 +0100223 */
Christopher Fauletf8188c62017-06-02 16:20:16 +0200224THREAD_LOCAL char *logline = NULL;
Willy Tarreaub1a2faf2012-03-19 16:51:53 +0100225
Dragan Dosen0b85ece2015-09-25 19:17:44 +0200226/* A global syslog message buffer, common to all RFC5424 syslog messages.
227 * Currently, it is used for generating the structured-data part.
228 */
Christopher Fauletf8188c62017-06-02 16:20:16 +0200229THREAD_LOCAL char *logline_rfc5424 = NULL;
Dragan Dosen0b85ece2015-09-25 19:17:44 +0200230
Christopher Fauletd4696382017-10-24 11:44:05 +0200231/* A global buffer used to store all startup alerts/warnings. It will then be
232 * retrieve on the CLI. */
Christopher Fauletf8188c62017-06-02 16:20:16 +0200233static THREAD_LOCAL char *startup_logs = NULL;
Christopher Fauletd4696382017-10-24 11:44:05 +0200234
William Lallemand723b73a2012-02-08 16:37:49 +0100235struct logformat_var_args {
236 char *name;
237 int mask;
238};
239
240struct logformat_var_args var_args_list[] = {
241// global
242 { "M", LOG_OPT_MANDATORY },
243 { "Q", LOG_OPT_QUOTE },
William Lallemand5f232402012-04-05 18:02:55 +0200244 { "X", LOG_OPT_HEXA },
Dragan Dosen835b9212016-02-12 13:23:03 +0100245 { "E", LOG_OPT_ESC },
William Lallemand723b73a2012-02-08 16:37:49 +0100246 { 0, 0 }
247};
248
Willy Tarreaub1f3af22013-04-12 18:30:32 +0200249/* return the name of the directive used in the current proxy for which we're
250 * currently parsing a header, when it is known.
251 */
252static inline const char *fmt_directive(const struct proxy *curproxy)
253{
Willy Tarreaubf0addb2013-12-02 12:24:54 +0100254 switch (curproxy->conf.args.ctx) {
Willy Tarreau53e1a6d2015-07-09 11:20:00 +0200255 case ARGC_ACL:
256 return "acl";
257 case ARGC_STK:
258 return "stick";
259 case ARGC_TRK:
260 return "track-sc";
261 case ARGC_LOG:
262 return "log-format";
Dragan Dosen0b85ece2015-09-25 19:17:44 +0200263 case ARGC_LOGSD:
264 return "log-format-sd";
Willy Tarreaubf0addb2013-12-02 12:24:54 +0100265 case ARGC_HRQ:
Thierry FOURNIER1c0054f2013-11-20 15:09:52 +0100266 return "http-request";
Willy Tarreaubf0addb2013-12-02 12:24:54 +0100267 case ARGC_HRS:
Thierry FOURNIER1c0054f2013-11-20 15:09:52 +0100268 return "http-response";
Willy Tarreau53e1a6d2015-07-09 11:20:00 +0200269 case ARGC_UIF:
270 return "unique-id-format";
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +0100271 case ARGC_RDR:
Willy Tarreau53e1a6d2015-07-09 11:20:00 +0200272 return "redirect";
273 case ARGC_CAP:
274 return "capture";
Willy Tarreau28d976d2015-07-09 11:39:33 +0200275 case ARGC_SRV:
276 return "server";
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200277 case ARGC_SPOE:
278 return "spoe-message";
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +0100279 case ARGC_UBK:
280 return "use_backend";
Willy Tarreaubf0addb2013-12-02 12:24:54 +0100281 default:
Willy Tarreau53e1a6d2015-07-09 11:20:00 +0200282 return "undefined(please report this bug)"; /* must never happen */
Willy Tarreaubf0addb2013-12-02 12:24:54 +0100283 }
Willy Tarreaub1f3af22013-04-12 18:30:32 +0200284}
285
William Lallemand723b73a2012-02-08 16:37:49 +0100286/*
William Lallemandb7ff6a32012-03-02 14:35:21 +0100287 * callback used to configure addr source retrieval
288 */
289int prepare_addrsource(struct logformat_node *node, struct proxy *curproxy)
290{
291 curproxy->options2 |= PR_O2_SRC_ADDR;
292
293 return 0;
294}
295
296
297/*
Thierry FOURNIER / OZON.IObca46f02016-11-22 23:13:04 +0100298 * Parse args in a logformat_var. Returns 0 in error
299 * case, otherwise, it returns 1.
William Lallemand723b73a2012-02-08 16:37:49 +0100300 */
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +0100301int parse_logformat_var_args(char *args, struct logformat_node *node, char **err)
William Lallemand723b73a2012-02-08 16:37:49 +0100302{
303 int i = 0;
304 int end = 0;
305 int flags = 0; // 1 = + 2 = -
306 char *sp = NULL; // start pointer
307
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +0100308 if (args == NULL) {
309 memprintf(err, "internal error: parse_logformat_var_args() expects non null 'args'");
Thierry FOURNIER / OZON.IObca46f02016-11-22 23:13:04 +0100310 return 0;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +0100311 }
William Lallemand723b73a2012-02-08 16:37:49 +0100312
313 while (1) {
314 if (*args == '\0')
315 end = 1;
316
317 if (*args == '+') {
318 // add flag
319 sp = args + 1;
320 flags = 1;
321 }
322 if (*args == '-') {
323 // delete flag
324 sp = args + 1;
325 flags = 2;
326 }
327
328 if (*args == '\0' || *args == ',') {
329 *args = '\0';
Willy Tarreau254d44c2012-12-20 18:19:26 +0100330 for (i = 0; sp && var_args_list[i].name; i++) {
William Lallemand723b73a2012-02-08 16:37:49 +0100331 if (strcmp(sp, var_args_list[i].name) == 0) {
332 if (flags == 1) {
333 node->options |= var_args_list[i].mask;
334 break;
335 } else if (flags == 2) {
336 node->options &= ~var_args_list[i].mask;
337 break;
338 }
339 }
340 }
341 sp = NULL;
342 if (end)
343 break;
344 }
Willy Tarreau254d44c2012-12-20 18:19:26 +0100345 args++;
William Lallemand723b73a2012-02-08 16:37:49 +0100346 }
Thierry FOURNIER / OZON.IObca46f02016-11-22 23:13:04 +0100347 return 1;
William Lallemand723b73a2012-02-08 16:37:49 +0100348}
349
350/*
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100351 * Parse a variable '%varname' or '%{args}varname' in log-format. The caller
352 * must pass the args part in the <arg> pointer with its length in <arg_len>,
353 * and varname with its length in <var> and <var_len> respectively. <arg> is
354 * ignored when arg_len is 0. Neither <var> nor <var_len> may be null.
Thierry FOURNIER / OZON.IOeca4d952016-11-22 22:06:04 +0100355 * Returns false in error case and err is filled, otherwise returns true.
William Lallemand723b73a2012-02-08 16:37:49 +0100356 */
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +0100357int parse_logformat_var(char *arg, int arg_len, char *var, int var_len, struct proxy *curproxy, struct list *list_format, int *defoptions, char **err)
William Lallemand723b73a2012-02-08 16:37:49 +0100358{
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100359 int j;
360 struct logformat_node *node;
William Lallemand723b73a2012-02-08 16:37:49 +0100361
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100362 for (j = 0; logformat_keywords[j].name; j++) { // search a log type
363 if (strlen(logformat_keywords[j].name) == var_len &&
364 strncmp(var, logformat_keywords[j].name, var_len) == 0) {
365 if (logformat_keywords[j].mode != PR_MODE_HTTP || curproxy->mode == PR_MODE_HTTP) {
Vincent Bernat02779b62016-04-03 13:48:43 +0200366 node = calloc(1, sizeof(*node));
Thierry FOURNIER / OZON.IO9cbfef22016-11-22 23:24:10 +0100367 if (!node) {
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +0100368 memprintf(err, "out of memory error");
Thierry FOURNIER / OZON.IO9cbfef22016-11-22 23:24:10 +0100369 return 0;
370 }
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100371 node->type = logformat_keywords[j].type;
372 node->options = *defoptions;
373 if (arg_len) {
374 node->arg = my_strndup(arg, arg_len);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +0100375 if (!parse_logformat_var_args(node->arg, node, err))
Thierry FOURNIER / OZON.IOa2c38d72016-11-22 23:11:21 +0100376 return 0;
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100377 }
378 if (node->type == LOG_FMT_GLOBAL) {
379 *defoptions = node->options;
380 free(node->arg);
381 free(node);
382 } else {
383 if (logformat_keywords[j].config_callback &&
384 logformat_keywords[j].config_callback(node, curproxy) != 0) {
Thierry FOURNIER / OZON.IOeca4d952016-11-22 22:06:04 +0100385 return 0;
William Lallemand723b73a2012-02-08 16:37:49 +0100386 }
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100387 curproxy->to_log |= logformat_keywords[j].lw;
388 LIST_ADDQ(list_format, &node->list);
William Lallemand723b73a2012-02-08 16:37:49 +0100389 }
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100390 if (logformat_keywords[j].replace_by)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100391 ha_warning("parsing [%s:%d] : deprecated variable '%s' in '%s', please replace it with '%s'.\n",
392 curproxy->conf.args.file, curproxy->conf.args.line,
393 logformat_keywords[j].name, fmt_directive(curproxy), logformat_keywords[j].replace_by);
Thierry FOURNIER / OZON.IOeca4d952016-11-22 22:06:04 +0100394 return 1;
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100395 } else {
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +0100396 memprintf(err, "format variable '%s' is reserved for HTTP mode",
397 logformat_keywords[j].name);
Thierry FOURNIER / OZON.IOeca4d952016-11-22 22:06:04 +0100398 return 0;
William Lallemand723b73a2012-02-08 16:37:49 +0100399 }
William Lallemand723b73a2012-02-08 16:37:49 +0100400 }
401 }
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100402
403 j = var[var_len];
404 var[var_len] = 0;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +0100405 memprintf(err, "no such format variable '%s'. If you wanted to emit the '%%' character verbatim, you need to use '%%%%'", var);
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100406 var[var_len] = j;
Thierry FOURNIER / OZON.IOeca4d952016-11-22 22:06:04 +0100407 return 0;
William Lallemand723b73a2012-02-08 16:37:49 +0100408}
409
410/*
411 * push to the logformat linked list
412 *
413 * start: start pointer
414 * end: end text pointer
415 * type: string type
William Lallemand1d705562012-03-12 12:46:41 +0100416 * list_format: destination list
William Lallemand723b73a2012-02-08 16:37:49 +0100417 *
418 * LOG_TEXT: copy chars from start to end excluding end.
419 *
420*/
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +0100421int add_to_logformat_list(char *start, char *end, int type, struct list *list_format, char **err)
William Lallemand723b73a2012-02-08 16:37:49 +0100422{
423 char *str;
424
Willy Tarreaua3571662012-12-20 21:59:12 +0100425 if (type == LF_TEXT) { /* type text */
Vincent Bernat02779b62016-04-03 13:48:43 +0200426 struct logformat_node *node = calloc(1, sizeof(*node));
Thierry FOURNIER / OZON.IO9cbfef22016-11-22 23:24:10 +0100427 if (!node) {
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +0100428 memprintf(err, "out of memory error");
Thierry FOURNIER / OZON.IO9cbfef22016-11-22 23:24:10 +0100429 return 0;
430 }
Vincent Bernat02779b62016-04-03 13:48:43 +0200431 str = calloc(1, end - start + 1);
William Lallemand723b73a2012-02-08 16:37:49 +0100432 strncpy(str, start, end - start);
William Lallemand723b73a2012-02-08 16:37:49 +0100433 str[end - start] = '\0';
434 node->arg = str;
William Lallemand1d705562012-03-12 12:46:41 +0100435 node->type = LOG_FMT_TEXT; // type string
436 LIST_ADDQ(list_format, &node->list);
Willy Tarreaua3571662012-12-20 21:59:12 +0100437 } else if (type == LF_SEPARATOR) {
Vincent Bernat02779b62016-04-03 13:48:43 +0200438 struct logformat_node *node = calloc(1, sizeof(*node));
Thierry FOURNIER / OZON.IO9cbfef22016-11-22 23:24:10 +0100439 if (!node) {
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +0100440 memprintf(err, "out of memory error");
Thierry FOURNIER / OZON.IO9cbfef22016-11-22 23:24:10 +0100441 return 0;
442 }
William Lallemand1d705562012-03-12 12:46:41 +0100443 node->type = LOG_FMT_SEPARATOR;
444 LIST_ADDQ(list_format, &node->list);
William Lallemand723b73a2012-02-08 16:37:49 +0100445 }
Thierry FOURNIER / OZON.IOa2c38d72016-11-22 23:11:21 +0100446 return 1;
William Lallemand723b73a2012-02-08 16:37:49 +0100447}
448
449/*
Willy Tarreauc8368452012-12-21 00:09:23 +0100450 * Parse the sample fetch expression <text> and add a node to <list_format> upon
451 * success. At the moment, sample converters are not yet supported but fetch arguments
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200452 * should work. The curpx->conf.args.ctx must be set by the caller.
Thierry FOURNIER / OZON.IOa2c38d72016-11-22 23:11:21 +0100453 *
454 * In error case, the function returns 0, otherwise it returns 1.
Willy Tarreauc8368452012-12-21 00:09:23 +0100455 */
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +0100456int add_sample_to_logformat_list(char *text, char *arg, int arg_len, struct proxy *curpx, struct list *list_format, int options, int cap, char **err)
Willy Tarreauc8368452012-12-21 00:09:23 +0100457{
458 char *cmd[2];
459 struct sample_expr *expr;
460 struct logformat_node *node;
461 int cmd_arg;
462
463 cmd[0] = text;
464 cmd[1] = "";
465 cmd_arg = 0;
466
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +0100467 expr = sample_parse_expr(cmd, &cmd_arg, curpx->conf.args.file, curpx->conf.args.line, err, &curpx->conf.args);
Willy Tarreauc8368452012-12-21 00:09:23 +0100468 if (!expr) {
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +0100469 memprintf(err, "failed to parse sample expression <%s> : %s", text, *err);
Thierry FOURNIER / OZON.IOa2c38d72016-11-22 23:11:21 +0100470 return 0;
Willy Tarreauc8368452012-12-21 00:09:23 +0100471 }
472
Vincent Bernat02779b62016-04-03 13:48:43 +0200473 node = calloc(1, sizeof(*node));
Thierry FOURNIER / OZON.IO9cbfef22016-11-22 23:24:10 +0100474 if (!node) {
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +0100475 memprintf(err, "out of memory error");
Thierry FOURNIER / OZON.IO9cbfef22016-11-22 23:24:10 +0100476 return 0;
477 }
Willy Tarreauc8368452012-12-21 00:09:23 +0100478 node->type = LOG_FMT_EXPR;
479 node->expr = expr;
480 node->options = options;
481
482 if (arg_len) {
483 node->arg = my_strndup(arg, arg_len);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +0100484 if (!parse_logformat_var_args(node->arg, node, err))
Thierry FOURNIER / OZON.IOa2c38d72016-11-22 23:11:21 +0100485 return 0;
Willy Tarreauc8368452012-12-21 00:09:23 +0100486 }
Willy Tarreau434c57c2013-01-08 01:10:24 +0100487 if (expr->fetch->val & cap & SMP_VAL_REQUEST)
Willy Tarreauc8368452012-12-21 00:09:23 +0100488 node->options |= LOG_OPT_REQ_CAP; /* fetch method is request-compatible */
489
Willy Tarreau434c57c2013-01-08 01:10:24 +0100490 if (expr->fetch->val & cap & SMP_VAL_RESPONSE)
Willy Tarreauc8368452012-12-21 00:09:23 +0100491 node->options |= LOG_OPT_RES_CAP; /* fetch method is response-compatible */
492
Thierry FOURNIER / OZON.IOa2c38d72016-11-22 23:11:21 +0100493 if (!(expr->fetch->val & cap)) {
David Carlier93e8b882017-09-21 14:36:43 +0000494 free(node);
495 node = NULL;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +0100496 memprintf(err, "sample fetch <%s> may not be reliably used here because it needs '%s' which is not available here",
497 text, sample_src_names(expr->fetch->use));
Thierry FOURNIER / OZON.IOa2c38d72016-11-22 23:11:21 +0100498 return 0;
499 }
Willy Tarreau434c57c2013-01-08 01:10:24 +0100500
Willy Tarreauc8368452012-12-21 00:09:23 +0100501 /* check if we need to allocate an hdr_idx struct for HTTP parsing */
502 /* Note, we may also need to set curpx->to_log with certain fetches */
Willy Tarreau25320b22013-03-24 07:22:08 +0100503 curpx->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
Willy Tarreauc8368452012-12-21 00:09:23 +0100504
William Lallemand65ad6e12014-01-31 15:08:02 +0100505 /* FIXME: temporary workaround for missing LW_XPRT and LW_REQ flags
506 * needed with some sample fetches (eg: ssl*). We always set it for
507 * now on, but this will leave with sample capabilities soon.
Willy Tarreau1f31c732013-01-10 16:22:27 +0100508 */
509 curpx->to_log |= LW_XPRT;
William Lallemand65ad6e12014-01-31 15:08:02 +0100510 curpx->to_log |= LW_REQ;
Willy Tarreauc8368452012-12-21 00:09:23 +0100511 LIST_ADDQ(list_format, &node->list);
Thierry FOURNIER / OZON.IOa2c38d72016-11-22 23:11:21 +0100512 return 1;
Willy Tarreauc8368452012-12-21 00:09:23 +0100513}
514
515/*
William Lallemand723b73a2012-02-08 16:37:49 +0100516 * Parse the log_format string and fill a linked list.
517 * Variable name are preceded by % and composed by characters [a-zA-Z0-9]* : %varname
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200518 * You can set arguments using { } : %{many arguments}varname.
519 * The curproxy->conf.args.ctx must be set by the caller.
William Lallemand1d705562012-03-12 12:46:41 +0100520 *
521 * str: the string to parse
522 * curproxy: the proxy affected
523 * list_format: the destination list
Willy Tarreau6cbbdbf2013-02-05 18:52:25 +0100524 * options: LOG_OPT_* to force on every node
Willy Tarreau434c57c2013-01-08 01:10:24 +0100525 * cap: all SMP_VAL_* flags supported by the consumer
Thierry FOURNIER / OZON.IOa2c38d72016-11-22 23:11:21 +0100526 *
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +0100527 * The function returns 1 in success case, otherwise, it returns 0 and err is filled.
William Lallemand723b73a2012-02-08 16:37:49 +0100528 */
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +0100529int parse_logformat_string(const char *fmt, struct proxy *curproxy, struct list *list_format, int options, int cap, char **err)
William Lallemand723b73a2012-02-08 16:37:49 +0100530{
Willy Tarreaub83bc1e2012-12-24 12:36:33 +0100531 char *sp, *str, *backfmt; /* start pointer for text parts */
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100532 char *arg = NULL; /* start pointer for args */
533 char *var = NULL; /* start pointer for vars */
534 int arg_len = 0;
535 int var_len = 0;
536 int cformat; /* current token format */
537 int pformat; /* previous token format */
William Lallemand723b73a2012-02-08 16:37:49 +0100538 struct logformat_node *tmplf, *back;
539
Willy Tarreaub83bc1e2012-12-24 12:36:33 +0100540 sp = str = backfmt = strdup(fmt);
Thierry FOURNIER / OZON.IO9cbfef22016-11-22 23:24:10 +0100541 if (!str) {
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +0100542 memprintf(err, "out of memory error");
Thierry FOURNIER / OZON.IO9cbfef22016-11-22 23:24:10 +0100543 return 0;
544 }
William Lallemand1dc00ef2012-08-09 16:41:35 +0200545 curproxy->to_log |= LW_INIT;
William Lallemand5e19a282012-04-02 16:22:10 +0200546
William Lallemand723b73a2012-02-08 16:37:49 +0100547 /* flush the list first. */
William Lallemand1d705562012-03-12 12:46:41 +0100548 list_for_each_entry_safe(tmplf, back, list_format, list) {
William Lallemand723b73a2012-02-08 16:37:49 +0100549 LIST_DEL(&tmplf->list);
550 free(tmplf);
551 }
552
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100553 for (cformat = LF_INIT; cformat != LF_END; str++) {
William Lallemand723b73a2012-02-08 16:37:49 +0100554 pformat = cformat;
555
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100556 if (!*str)
557 cformat = LF_END; // preset it to save all states from doing this
William Lallemand723b73a2012-02-08 16:37:49 +0100558
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100559 /* The prinicple of the two-step state machine below is to first detect a change, and
560 * second have all common paths processed at one place. The common paths are the ones
561 * encountered in text areas (LF_INIT, LF_TEXT, LF_SEPARATOR) and at the end (LF_END).
562 * We use the common LF_INIT state to dispatch to the different final states.
563 */
564 switch (pformat) {
565 case LF_STARTVAR: // text immediately following a '%'
Willy Tarreauc8368452012-12-21 00:09:23 +0100566 arg = NULL; var = NULL;
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100567 arg_len = var_len = 0;
568 if (*str == '{') { // optional argument
569 cformat = LF_STARG;
570 arg = str + 1;
William Lallemand723b73a2012-02-08 16:37:49 +0100571 }
Willy Tarreauc8368452012-12-21 00:09:23 +0100572 else if (*str == '[') {
573 cformat = LF_STEXPR;
574 var = str + 1; // store expr in variable name
575 }
Willy Tarreau0f28f822013-12-16 01:38:33 +0100576 else if (isalpha((unsigned char)*str)) { // variable name
William Lallemand723b73a2012-02-08 16:37:49 +0100577 cformat = LF_VAR;
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100578 var = str;
William Lallemand723b73a2012-02-08 16:37:49 +0100579 }
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100580 else if (*str == '%')
581 cformat = LF_TEXT; // convert this character to a litteral (useful for '%')
Willy Tarreau0f28f822013-12-16 01:38:33 +0100582 else if (isdigit((unsigned char)*str) || *str == ' ' || *str == '\t') {
Willy Tarreau06d97f92013-12-02 17:45:48 +0100583 /* single '%' followed by blank or digit, send them both */
584 cformat = LF_TEXT;
585 pformat = LF_TEXT; /* finally we include the previous char as well */
586 sp = str - 1; /* send both the '%' and the current char */
Jim Freemana2278c82017-04-15 08:01:59 -0600587 memprintf(err, "unexpected variable name near '%c' at position %d line : '%s'. Maybe you want to write a single '%%', use the syntax '%%%%'",
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +0100588 *str, (int)(str - backfmt), fmt);
Thierry FOURNIER / OZON.IOa2c38d72016-11-22 23:11:21 +0100589 return 0;
Willy Tarreau06d97f92013-12-02 17:45:48 +0100590
591 }
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100592 else
593 cformat = LF_INIT; // handle other cases of litterals
594 break;
595
596 case LF_STARG: // text immediately following '%{'
597 if (*str == '}') { // end of arg
William Lallemand723b73a2012-02-08 16:37:49 +0100598 cformat = LF_EDARG;
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100599 arg_len = str - arg;
600 *str = 0; // used for reporting errors
William Lallemand723b73a2012-02-08 16:37:49 +0100601 }
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100602 break;
603
604 case LF_EDARG: // text immediately following '%{arg}'
Willy Tarreauc8368452012-12-21 00:09:23 +0100605 if (*str == '[') {
606 cformat = LF_STEXPR;
607 var = str + 1; // store expr in variable name
608 break;
609 }
Willy Tarreau0f28f822013-12-16 01:38:33 +0100610 else if (isalnum((unsigned char)*str)) { // variable name
William Lallemand723b73a2012-02-08 16:37:49 +0100611 cformat = LF_VAR;
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100612 var = str;
613 break;
614 }
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +0100615 memprintf(err, "parse argument modifier without variable name near '%%{%s}'", arg);
Thierry FOURNIER / OZON.IOa2c38d72016-11-22 23:11:21 +0100616 return 0;
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100617
Willy Tarreauc8368452012-12-21 00:09:23 +0100618 case LF_STEXPR: // text immediately following '%['
619 if (*str == ']') { // end of arg
620 cformat = LF_EDEXPR;
621 var_len = str - var;
622 *str = 0; // needed for parsing the expression
623 }
624 break;
625
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100626 case LF_VAR: // text part of a variable name
627 var_len = str - var;
Willy Tarreau0f28f822013-12-16 01:38:33 +0100628 if (!isalnum((unsigned char)*str))
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100629 cformat = LF_INIT; // not variable name anymore
630 break;
631
Willy Tarreauc8368452012-12-21 00:09:23 +0100632 default: // LF_INIT, LF_TEXT, LF_SEPARATOR, LF_END, LF_EDEXPR
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100633 cformat = LF_INIT;
634 }
635
636 if (cformat == LF_INIT) { /* resynchronize state to text/sep/startvar */
637 switch (*str) {
638 case '%': cformat = LF_STARTVAR; break;
639 case ' ': cformat = LF_SEPARATOR; break;
640 case 0 : cformat = LF_END; break;
641 default : cformat = LF_TEXT; break;
William Lallemand723b73a2012-02-08 16:37:49 +0100642 }
643 }
644
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100645 if (cformat != pformat || pformat == LF_SEPARATOR) {
646 switch (pformat) {
647 case LF_VAR:
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +0100648 if (!parse_logformat_var(arg, arg_len, var, var_len, curproxy, list_format, &options, err))
Thierry FOURNIER / OZON.IOa2c38d72016-11-22 23:11:21 +0100649 return 0;
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100650 break;
Willy Tarreauc8368452012-12-21 00:09:23 +0100651 case LF_STEXPR:
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +0100652 if (!add_sample_to_logformat_list(var, arg, arg_len, curproxy, list_format, options, cap, err))
Thierry FOURNIER / OZON.IOa2c38d72016-11-22 23:11:21 +0100653 return 0;
Willy Tarreauc8368452012-12-21 00:09:23 +0100654 break;
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100655 case LF_TEXT:
656 case LF_SEPARATOR:
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +0100657 if (!add_to_logformat_list(sp, str, pformat, list_format, err))
Thierry FOURNIER / OZON.IOa2c38d72016-11-22 23:11:21 +0100658 return 0;
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100659 break;
660 }
661 sp = str; /* new start of text at every state switch and at every separator */
William Lallemand723b73a2012-02-08 16:37:49 +0100662 }
663 }
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100664
Thierry FOURNIER / OZON.IOa2c38d72016-11-22 23:11:21 +0100665 if (pformat == LF_STARTVAR || pformat == LF_STARG || pformat == LF_STEXPR) {
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +0100666 memprintf(err, "truncated line after '%s'", var ? var : arg ? arg : "%");
Thierry FOURNIER / OZON.IOa2c38d72016-11-22 23:11:21 +0100667 return 0;
668 }
Willy Tarreaub83bc1e2012-12-24 12:36:33 +0100669 free(backfmt);
Thierry FOURNIER / OZON.IOa2c38d72016-11-22 23:11:21 +0100670
671 return 1;
William Lallemand723b73a2012-02-08 16:37:49 +0100672}
673
Christopher Faulet4b0b79d2018-03-26 15:54:32 +0200674/*
675 * Parse "log" keyword and update <logsrvs> list accordingly.
676 *
677 * When <do_del> is set, it means the "no log" line was parsed, so all log
678 * servers in <logsrvs> are released.
679 *
680 * Otherwise, we try to parse the "log" line. First of all, when the list is not
681 * the global one, we look for the parameter "global". If we find it,
682 * global.logsrvs is copied. Else we parse each arguments.
683 *
684 * The function returns 1 in success case, otherwise, it returns 0 and err is
685 * filled.
686 */
687int parse_logsrv(char **args, struct list *logsrvs, int do_del, char **err)
688{
689 struct sockaddr_storage *sk;
690 struct logsrv *logsrv = NULL;
691 int port1, port2;
692 int cur_arg;
693
694 /*
695 * "no log": delete previous herited or defined syslog
696 * servers.
697 */
698 if (do_del) {
699 struct logsrv *back;
700
701 if (*(args[1]) != 0) {
702 memprintf(err, "'no log' does not expect arguments");
703 goto error;
704 }
705
706 list_for_each_entry_safe(logsrv, back, logsrvs, list) {
707 LIST_DEL(&logsrv->list);
708 free(logsrv);
709 }
710 return 1;
711 }
712
713 /*
714 * "log global": copy global.logrsvs linked list to the end of logsrvs
715 * list. But first, we check (logsrvs != global.logsrvs).
716 */
717 if (*(args[1]) && *(args[2]) == 0 && !strcmp(args[1], "global")) {
718 if (logsrvs == &global.logsrvs) {
719 memprintf(err, "'global' is not supported for a global syslog server");
720 goto error;
721 }
722 list_for_each_entry(logsrv, &global.logsrvs, list) {
723 struct logsrv *node = malloc(sizeof(*node));
724 memcpy(node, logsrv, sizeof(struct logsrv));
725 LIST_INIT(&node->list);
726 LIST_ADDQ(logsrvs, &node->list);
727 }
728 return 1;
729 }
730
731 /*
732 * "log <address> ...: parse a syslog server line
733 */
734 if (*(args[1]) == 0 || *(args[2]) == 0) {
735 memprintf(err, "expects <address> and <facility> %s as arguments",
736 ((logsrvs == &global.logsrvs) ? "" : "or global"));
737 goto error;
738 }
739
740 logsrv = calloc(1, sizeof(*logsrv));
741 if (!logsrv) {
742 memprintf(err, "out of memory");
743 goto error;
744 }
745
746 /* skip address for now, it will be parsed at the end */
747 cur_arg = 2;
748
749 /* just after the address, a length may be specified */
750 logsrv->maxlen = MAX_SYSLOG_LEN;
751 if (strcmp(args[cur_arg], "len") == 0) {
752 int len = atoi(args[cur_arg+1]);
753 if (len < 80 || len > 65535) {
754 memprintf(err, "invalid log length '%s', must be between 80 and 65535",
755 args[cur_arg+1]);
756 goto error;
757 }
758 logsrv->maxlen = len;
759 cur_arg += 2;
760 }
761 if (logsrv->maxlen > global.max_syslog_len)
762 global.max_syslog_len = logsrv->maxlen;
763
764 /* after the length, a format may be specified */
765 if (strcmp(args[cur_arg], "format") == 0) {
766 logsrv->format = get_log_format(args[cur_arg+1]);
767 if (logsrv->format < 0) {
768 memprintf(err, "unknown log format '%s'", args[cur_arg+1]);
769 goto error;
770 }
771 cur_arg += 2;
772 }
773
774 /* parse the facility */
775 logsrv->facility = get_log_facility(args[cur_arg]);
776 if (logsrv->facility < 0) {
777 memprintf(err, "unknown log facility '%s'", args[cur_arg]);
778 goto error;
779 }
780 cur_arg++;
781
782 /* parse the max syslog level (default: debug) */
783 logsrv->level = 7;
784 if (*(args[cur_arg])) {
785 logsrv->level = get_log_level(args[cur_arg]);
786 if (logsrv->level < 0) {
787 memprintf(err, "unknown optional log level '%s'", args[cur_arg]);
788 goto error;
789 }
790 cur_arg++;
791 }
792
793 /* parse the limit syslog level (default: emerg) */
794 logsrv->minlvl = 0;
795 if (*(args[cur_arg])) {
796 logsrv->minlvl = get_log_level(args[cur_arg]);
797 if (logsrv->minlvl < 0) {
798 memprintf(err, "unknown optional minimum log level '%s'", args[cur_arg]);
799 goto error;
800 }
801 cur_arg++;
802 }
803
804 /* Too many args */
805 if (*(args[cur_arg])) {
806 memprintf(err, "cannot handle unexpected argument '%s'", args[cur_arg]);
807 goto error;
808 }
809
810 /* now, back to the address */
811 sk = str2sa_range(args[1], NULL, &port1, &port2, err, NULL, NULL, 1);
812 if (!sk)
813 goto error;
814 logsrv->addr = *sk;
815
816 if (sk->ss_family == AF_INET || sk->ss_family == AF_INET6) {
817 if (port1 != port2) {
818 memprintf(err, "port ranges and offsets are not allowed in '%s'", args[1]);
819 goto error;
820 }
821 logsrv->addr = *sk;
822 if (!port1)
823 set_host_port(&logsrv->addr, SYSLOG_PORT);
824 }
825 LIST_ADDQ(logsrvs, &logsrv->list);
826 return 1;
827
828 error:
829 free(logsrv);
830 return 0;
831}
832
833
Christopher Fauletd4696382017-10-24 11:44:05 +0200834/* Generic function to display messages prefixed by a label */
835static void print_message(const char *label, const char *fmt, va_list argp)
836{
837 struct tm tm;
838 char *head, *msg;
839
840 head = msg = NULL;
841
842 get_localtime(date.tv_sec, &tm);
843 memprintf(&head, "[%s] %03d/%02d%02d%02d (%d) : ",
844 label, tm.tm_yday, tm.tm_hour, tm.tm_min, tm.tm_sec, (int)getpid());
845 memvprintf(&msg, fmt, argp);
846
847 if (global.mode & MODE_STARTING)
848 memprintf(&startup_logs, "%s%s%s", (startup_logs ? startup_logs : ""), head, msg);
849
850 fprintf(stderr, "%s%s", head, msg);
851 fflush(stderr);
852
853 free(head);
854 free(msg);
855}
856
Willy Tarreaubaaee002006-06-26 02:48:02 +0200857/*
858 * Displays the message on stderr with the date and pid. Overrides the quiet
859 * mode during startup.
860 */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100861void ha_alert(const char *fmt, ...)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200862{
863 va_list argp;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200864
865 if (!(global.mode & MODE_QUIET) || (global.mode & (MODE_VERBOSE | MODE_STARTING))) {
866 va_start(argp, fmt);
Christopher Fauletd4696382017-10-24 11:44:05 +0200867 print_message("ALERT", fmt, argp);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200868 va_end(argp);
869 }
870}
871
872
873/*
874 * Displays the message on stderr with the date and pid.
875 */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100876void ha_warning(const char *fmt, ...)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200877{
878 va_list argp;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200879
880 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) {
881 va_start(argp, fmt);
Christopher Fauletd4696382017-10-24 11:44:05 +0200882 print_message("WARNING", fmt, argp);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200883 va_end(argp);
884 }
885}
886
887/*
888 * Displays the message on <out> only if quiet mode is not set.
889 */
Willy Tarreaub17916e2006-10-15 15:17:57 +0200890void qfprintf(FILE *out, const char *fmt, ...)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200891{
892 va_list argp;
893
894 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) {
895 va_start(argp, fmt);
896 vfprintf(out, fmt, argp);
897 fflush(out);
898 va_end(argp);
899 }
900}
901
902/*
Dragan Dosen1322d092015-09-22 16:05:32 +0200903 * returns log format for <fmt> or -1 if not found.
904 */
905int get_log_format(const char *fmt)
906{
907 int format;
908
909 format = LOG_FORMATS - 1;
Dragan Dosen43885c72015-10-01 13:18:13 +0200910 while (format >= 0 && strcmp(log_formats[format].name, fmt))
Dragan Dosen1322d092015-09-22 16:05:32 +0200911 format--;
912
913 return format;
914}
915
916/*
Willy Tarreaubaaee002006-06-26 02:48:02 +0200917 * returns log level for <lev> or -1 if not found.
918 */
919int get_log_level(const char *lev)
920{
921 int level;
922
923 level = NB_LOG_LEVELS - 1;
924 while (level >= 0 && strcmp(log_levels[level], lev))
925 level--;
926
927 return level;
928}
929
Willy Tarreaubaaee002006-06-26 02:48:02 +0200930/*
931 * returns log facility for <fac> or -1 if not found.
932 */
933int get_log_facility(const char *fac)
934{
935 int facility;
936
937 facility = NB_LOG_FACILITIES - 1;
938 while (facility >= 0 && strcmp(log_facilities[facility], fac))
939 facility--;
William Lallemand2a4a44f2012-02-06 16:00:33 +0100940
Willy Tarreaubaaee002006-06-26 02:48:02 +0200941 return facility;
942}
943
William Lallemanda1cc3812012-02-08 16:38:44 +0100944/*
Dragan Dosen835b9212016-02-12 13:23:03 +0100945 * Encode the string.
946 *
947 * When using the +E log format option, it will try to escape '"\]'
948 * characters with '\' as prefix. The same prefix should not be used as
949 * <escape>.
950 */
951static char *lf_encode_string(char *start, char *stop,
952 const char escape, const fd_set *map,
953 const char *string,
954 struct logformat_node *node)
955{
956 if (node->options & LOG_OPT_ESC) {
957 if (start < stop) {
958 stop--; /* reserve one byte for the final '\0' */
959 while (start < stop && *string != '\0') {
960 if (!FD_ISSET((unsigned char)(*string), map)) {
961 if (!FD_ISSET((unsigned char)(*string), rfc5424_escape_map))
962 *start++ = *string;
963 else {
964 if (start + 2 >= stop)
965 break;
966 *start++ = '\\';
967 *start++ = *string;
968 }
969 }
970 else {
971 if (start + 3 >= stop)
972 break;
973 *start++ = escape;
974 *start++ = hextab[(*string >> 4) & 15];
975 *start++ = hextab[*string & 15];
976 }
977 string++;
978 }
979 *start = '\0';
980 }
981 }
982 else {
983 return encode_string(start, stop, escape, map, string);
984 }
985
986 return start;
987}
988
989/*
990 * Encode the chunk.
991 *
992 * When using the +E log format option, it will try to escape '"\]'
993 * characters with '\' as prefix. The same prefix should not be used as
994 * <escape>.
995 */
996static char *lf_encode_chunk(char *start, char *stop,
997 const char escape, const fd_set *map,
998 const struct chunk *chunk,
999 struct logformat_node *node)
1000{
1001 char *str, *end;
1002
1003 if (node->options & LOG_OPT_ESC) {
1004 if (start < stop) {
1005 str = chunk->str;
1006 end = chunk->str + chunk->len;
1007
1008 stop--; /* reserve one byte for the final '\0' */
1009 while (start < stop && str < end) {
1010 if (!FD_ISSET((unsigned char)(*str), map)) {
1011 if (!FD_ISSET((unsigned char)(*str), rfc5424_escape_map))
1012 *start++ = *str;
1013 else {
1014 if (start + 2 >= stop)
1015 break;
1016 *start++ = '\\';
1017 *start++ = *str;
1018 }
1019 }
1020 else {
1021 if (start + 3 >= stop)
1022 break;
1023 *start++ = escape;
1024 *start++ = hextab[(*str >> 4) & 15];
1025 *start++ = hextab[*str & 15];
1026 }
1027 str++;
1028 }
1029 *start = '\0';
1030 }
1031 }
1032 else {
1033 return encode_chunk(start, stop, escape, map, chunk);
1034 }
1035
1036 return start;
1037}
1038
1039/*
William Lallemanda1cc3812012-02-08 16:38:44 +01001040 * Write a string in the log string
Dragan Dosen835b9212016-02-12 13:23:03 +01001041 * Take cares of quote and escape options
William Lallemanda1cc3812012-02-08 16:38:44 +01001042 *
1043 * Return the adress of the \0 character, or NULL on error
1044 */
Willy Tarreau2b0108a2012-12-21 19:23:44 +01001045char *lf_text_len(char *dst, const char *src, size_t len, size_t size, struct logformat_node *node)
William Lallemanda1cc3812012-02-08 16:38:44 +01001046{
Willy Tarreau2b0108a2012-12-21 19:23:44 +01001047 if (size < 2)
1048 return NULL;
William Lallemanda1cc3812012-02-08 16:38:44 +01001049
Willy Tarreau2b0108a2012-12-21 19:23:44 +01001050 if (node->options & LOG_OPT_QUOTE) {
1051 *(dst++) = '"';
1052 size--;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001053 }
Willy Tarreau2b0108a2012-12-21 19:23:44 +01001054
Willy Tarreau6cbbdbf2013-02-05 18:52:25 +01001055 if (src && len) {
Dragan Dosendb1b6f92016-07-25 11:35:02 +02001056 if (++len > size)
1057 len = size;
Dragan Dosen835b9212016-02-12 13:23:03 +01001058 if (node->options & LOG_OPT_ESC) {
Dragan Dosen835b9212016-02-12 13:23:03 +01001059 char *ret;
1060
Dragan Dosendb1b6f92016-07-25 11:35:02 +02001061 ret = escape_string(dst, dst + len, '\\', rfc5424_escape_map, src);
Dragan Dosen835b9212016-02-12 13:23:03 +01001062 if (ret == NULL || *ret != '\0')
1063 return NULL;
1064 len = ret - dst;
1065 }
1066 else {
Dragan Dosen835b9212016-02-12 13:23:03 +01001067 len = strlcpy2(dst, src, len);
1068 }
Willy Tarreau2b0108a2012-12-21 19:23:44 +01001069
1070 size -= len;
1071 dst += len;
1072 }
Willy Tarreau6cbbdbf2013-02-05 18:52:25 +01001073 else if ((node->options & (LOG_OPT_QUOTE|LOG_OPT_MANDATORY)) == LOG_OPT_MANDATORY) {
1074 if (size < 2)
1075 return NULL;
1076 *(dst++) = '-';
1077 }
Willy Tarreau2b0108a2012-12-21 19:23:44 +01001078
1079 if (node->options & LOG_OPT_QUOTE) {
1080 if (size < 2)
1081 return NULL;
1082 *(dst++) = '"';
1083 }
1084
1085 *dst = '\0';
William Lallemandbddd4fd2012-02-27 11:23:10 +01001086 return dst;
William Lallemanda1cc3812012-02-08 16:38:44 +01001087}
1088
Willy Tarreau2b0108a2012-12-21 19:23:44 +01001089static inline char *lf_text(char *dst, const char *src, size_t size, struct logformat_node *node)
1090{
1091 return lf_text_len(dst, src, size, size, node);
1092}
1093
William Lallemand5f232402012-04-05 18:02:55 +02001094/*
1095 * Write a IP adress to the log string
1096 * +X option write in hexadecimal notation, most signifant byte on the left
1097 */
1098char *lf_ip(char *dst, struct sockaddr *sockaddr, size_t size, struct logformat_node *node)
1099{
1100 char *ret = dst;
1101 int iret;
1102 char pn[INET6_ADDRSTRLEN];
1103
1104 if (node->options & LOG_OPT_HEXA) {
1105 const unsigned char *addr = (const unsigned char *)&((struct sockaddr_in *)sockaddr)->sin_addr.s_addr;
1106 iret = snprintf(dst, size, "%02X%02X%02X%02X", addr[0], addr[1], addr[2], addr[3]);
1107 if (iret < 0 || iret > size)
1108 return NULL;
1109 ret += iret;
1110 } else {
1111 addr_to_str((struct sockaddr_storage *)sockaddr, pn, sizeof(pn));
1112 ret = lf_text(dst, pn, size, node);
1113 if (ret == NULL)
1114 return NULL;
1115 }
1116 return ret;
1117}
1118
1119/*
1120 * Write a port to the log
1121 * +X option write in hexadecimal notation, most signifant byte on the left
1122 */
1123char *lf_port(char *dst, struct sockaddr *sockaddr, size_t size, struct logformat_node *node)
1124{
1125 char *ret = dst;
1126 int iret;
1127
1128 if (node->options & LOG_OPT_HEXA) {
1129 const unsigned char *port = (const unsigned char *)&((struct sockaddr_in *)sockaddr)->sin_port;
1130 iret = snprintf(dst, size, "%02X%02X", port[0], port[1]);
1131 if (iret < 0 || iret > size)
1132 return NULL;
1133 ret += iret;
1134 } else {
1135 ret = ltoa_o(get_host_port((struct sockaddr_storage *)sockaddr), dst, size);
1136 if (ret == NULL)
1137 return NULL;
1138 }
1139 return ret;
1140}
1141
Dragan Dosen1322d092015-09-22 16:05:32 +02001142/* Re-generate time-based part of the syslog header in RFC3164 format at
1143 * the beginning of logheader once a second and return the pointer to the
1144 * first character after it.
Willy Tarreaub1a2faf2012-03-19 16:51:53 +01001145 */
Dragan Dosen0b85ece2015-09-25 19:17:44 +02001146static char *update_log_hdr(const time_t time)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001147{
Christopher Fauletf8188c62017-06-02 16:20:16 +02001148 static THREAD_LOCAL long tvsec;
1149 static THREAD_LOCAL char *dataptr = NULL; /* backup of last end of header, NULL first time */
1150 static THREAD_LOCAL struct chunk host = { NULL, 0, 0 };
1151 static THREAD_LOCAL int sep = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001152
Dragan Dosen0b85ece2015-09-25 19:17:44 +02001153 if (unlikely(time != tvsec || dataptr == NULL)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001154 /* this string is rebuild only once a second */
Willy Tarreaufe944602007-10-25 10:34:16 +02001155 struct tm tm;
Willy Tarreaub1a2faf2012-03-19 16:51:53 +01001156 int hdr_len;
Willy Tarreaufe944602007-10-25 10:34:16 +02001157
Dragan Dosen0b85ece2015-09-25 19:17:44 +02001158 tvsec = time;
Willy Tarreaufe944602007-10-25 10:34:16 +02001159 get_localtime(tvsec, &tm);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001160
Dragan Dosen43885c72015-10-01 13:18:13 +02001161 if (unlikely(global.log_send_hostname != host.str)) {
1162 host.str = global.log_send_hostname;
1163 host.len = host.str ? strlen(host.str) : 0;
1164 sep = host.len ? 1 : 0;
1165 }
1166
Dragan Dosen59cee972015-09-19 22:09:02 +02001167 hdr_len = snprintf(logheader, global.max_syslog_len,
Dragan Dosen43885c72015-10-01 13:18:13 +02001168 "<<<<>%s %2d %02d:%02d:%02d %.*s%*s",
Willy Tarreaufe944602007-10-25 10:34:16 +02001169 monthname[tm.tm_mon],
Dragan Dosen43885c72015-10-01 13:18:13 +02001170 tm.tm_mday, tm.tm_hour, tm.tm_min, tm.tm_sec,
1171 host.len, host.str, sep, "");
Willy Tarreaubaaee002006-06-26 02:48:02 +02001172 /* WARNING: depending upon implementations, snprintf may return
1173 * either -1 or the number of bytes that would be needed to store
1174 * the total message. In both cases, we must adjust it.
1175 */
Willy Tarreau18324f52014-06-27 18:10:07 +02001176 if (hdr_len < 0 || hdr_len > global.max_syslog_len)
1177 hdr_len = global.max_syslog_len;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001178
Dragan Dosen59cee972015-09-19 22:09:02 +02001179 dataptr = logheader + hdr_len;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001180 }
1181
Willy Tarreau094af4e2015-01-07 15:03:42 +01001182 dataptr[0] = 0; // ensure we get rid of any previous attempt
1183
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02001184 return dataptr;
William Lallemand2a4a44f2012-02-06 16:00:33 +01001185}
1186
Dragan Dosen1322d092015-09-22 16:05:32 +02001187/* Re-generate time-based part of the syslog header in RFC5424 format at
1188 * the beginning of logheader_rfc5424 once a second and return the pointer
1189 * to the first character after it.
1190 */
Dragan Dosen0b85ece2015-09-25 19:17:44 +02001191static char *update_log_hdr_rfc5424(const time_t time)
Dragan Dosen1322d092015-09-22 16:05:32 +02001192{
Christopher Fauletf8188c62017-06-02 16:20:16 +02001193 static THREAD_LOCAL long tvsec;
1194 static THREAD_LOCAL char *dataptr = NULL; /* backup of last end of header, NULL first time */
Benoit GARNIERb413c2a2016-03-27 11:08:03 +02001195 const char *gmt_offset;
Dragan Dosen1322d092015-09-22 16:05:32 +02001196
Dragan Dosen0b85ece2015-09-25 19:17:44 +02001197 if (unlikely(time != tvsec || dataptr == NULL)) {
Dragan Dosen1322d092015-09-22 16:05:32 +02001198 /* this string is rebuild only once a second */
1199 struct tm tm;
1200 int hdr_len;
1201
Dragan Dosen0b85ece2015-09-25 19:17:44 +02001202 tvsec = time;
Dragan Dosen1322d092015-09-22 16:05:32 +02001203 get_localtime(tvsec, &tm);
Benoit GARNIERe2e5bde2016-03-27 03:04:16 +02001204 gmt_offset = get_gmt_offset(time, &tm);
Dragan Dosen1322d092015-09-22 16:05:32 +02001205
1206 hdr_len = snprintf(logheader_rfc5424, global.max_syslog_len,
Dragan Dosen17def462015-10-09 21:31:43 +02001207 "<<<<>1 %4d-%02d-%02dT%02d:%02d:%02d%.3s:%.2s %s ",
Dragan Dosen1322d092015-09-22 16:05:32 +02001208 tm.tm_year+1900, tm.tm_mon+1, tm.tm_mday,
Dragan Dosen17def462015-10-09 21:31:43 +02001209 tm.tm_hour, tm.tm_min, tm.tm_sec,
Benoit GARNIERb413c2a2016-03-27 11:08:03 +02001210 gmt_offset, gmt_offset+3,
Dragan Dosen43885c72015-10-01 13:18:13 +02001211 global.log_send_hostname ? global.log_send_hostname : hostname);
Dragan Dosen1322d092015-09-22 16:05:32 +02001212 /* WARNING: depending upon implementations, snprintf may return
1213 * either -1 or the number of bytes that would be needed to store
1214 * the total message. In both cases, we must adjust it.
1215 */
1216 if (hdr_len < 0 || hdr_len > global.max_syslog_len)
1217 hdr_len = global.max_syslog_len;
1218
1219 dataptr = logheader_rfc5424 + hdr_len;
1220 }
1221
1222 dataptr[0] = 0; // ensure we get rid of any previous attempt
1223
1224 return dataptr;
1225}
1226
William Lallemand2a4a44f2012-02-06 16:00:33 +01001227/*
Dragan Dosen59cee972015-09-19 22:09:02 +02001228 * This function sends the syslog message using a printf format string. It
1229 * expects an LF-terminated message.
William Lallemand2a4a44f2012-02-06 16:00:33 +01001230 */
1231void send_log(struct proxy *p, int level, const char *format, ...)
1232{
1233 va_list argp;
Willy Tarreaub1a2faf2012-03-19 16:51:53 +01001234 int data_len;
William Lallemand2a4a44f2012-02-06 16:00:33 +01001235
Willy Tarreau8c97ab52015-01-15 16:29:53 +01001236 if (level < 0 || format == NULL || logline == NULL)
William Lallemand2a4a44f2012-02-06 16:00:33 +01001237 return;
1238
William Lallemand2a4a44f2012-02-06 16:00:33 +01001239 va_start(argp, format);
Dragan Dosen59cee972015-09-19 22:09:02 +02001240 data_len = vsnprintf(logline, global.max_syslog_len, format, argp);
Willy Tarreau18324f52014-06-27 18:10:07 +02001241 if (data_len < 0 || data_len > global.max_syslog_len)
1242 data_len = global.max_syslog_len;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001243 va_end(argp);
William Lallemand2a4a44f2012-02-06 16:00:33 +01001244
Dragan Dosen0b85ece2015-09-25 19:17:44 +02001245 __send_log(p, level, logline, data_len, default_rfc5424_sd_log_format, 2);
William Lallemand2a4a44f2012-02-06 16:00:33 +01001246}
1247
1248/*
1249 * This function sends a syslog message.
1250 * It doesn't care about errors nor does it report them.
Dragan Dosen0b85ece2015-09-25 19:17:44 +02001251 * It overrides the last byte of the message vector with an LF character.
1252 * The arguments <sd> and <sd_size> are used for the structured-data part
1253 * in RFC5424 formatted syslog messages.
William Lallemand2a4a44f2012-02-06 16:00:33 +01001254 */
Dragan Dosen0b85ece2015-09-25 19:17:44 +02001255void __send_log(struct proxy *p, int level, char *message, size_t size, char *sd, size_t sd_size)
William Lallemand2a4a44f2012-02-06 16:00:33 +01001256{
Christopher Fauletf8188c62017-06-02 16:20:16 +02001257 static THREAD_LOCAL struct iovec iovec[NB_MSG_IOVEC_ELEMENTS] = { };
1258 static THREAD_LOCAL struct msghdr msghdr = {
1259 //.msg_iov = iovec,
Dragan Dosen609ac2a2015-09-16 18:25:42 +02001260 .msg_iovlen = NB_MSG_IOVEC_ELEMENTS
1261 };
Christopher Fauletf8188c62017-06-02 16:20:16 +02001262 static THREAD_LOCAL int logfdunix = -1; /* syslog to AF_UNIX socket */
1263 static THREAD_LOCAL int logfdinet = -1; /* syslog to AF_INET socket */
1264 static THREAD_LOCAL char *dataptr = NULL;
William Lallemand2a4a44f2012-02-06 16:00:33 +01001265 int fac_level;
1266 struct list *logsrvs = NULL;
1267 struct logsrv *tmp = NULL;
1268 int nblogger;
Dragan Dosen1322d092015-09-22 16:05:32 +02001269 char *hdr, *hdr_ptr;
Dragan Dosen59cee972015-09-19 22:09:02 +02001270 size_t hdr_size;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02001271 time_t time = date.tv_sec;
Dragan Dosen43885c72015-10-01 13:18:13 +02001272 struct chunk *tag = &global.log_tag;
Christopher Fauletf8188c62017-06-02 16:20:16 +02001273 static THREAD_LOCAL int curr_pid;
1274 static THREAD_LOCAL char pidstr[100];
1275 static THREAD_LOCAL struct chunk pid;
1276
1277 msghdr.msg_iov = iovec;
William Lallemand2a4a44f2012-02-06 16:00:33 +01001278
1279 dataptr = message;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001280
1281 if (p == NULL) {
William Lallemand0f99e342011-10-12 17:50:54 +02001282 if (!LIST_ISEMPTY(&global.logsrvs)) {
1283 logsrvs = &global.logsrvs;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001284 }
1285 } else {
William Lallemand0f99e342011-10-12 17:50:54 +02001286 if (!LIST_ISEMPTY(&p->logsrvs)) {
1287 logsrvs = &p->logsrvs;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001288 }
Dragan Dosen43885c72015-10-01 13:18:13 +02001289 if (p->log_tag.str) {
1290 tag = &p->log_tag;
1291 }
Robert Tsai81ae1952007-12-05 10:47:29 +01001292 }
1293
William Lallemand0f99e342011-10-12 17:50:54 +02001294 if (!logsrvs)
1295 return;
1296
Dragan Dosen43885c72015-10-01 13:18:13 +02001297 if (unlikely(curr_pid != getpid())) {
1298 curr_pid = getpid();
1299 ltoa_o(curr_pid, pidstr, sizeof(pidstr));
1300 chunk_initstr(&pid, pidstr);
1301 }
1302
Robert Tsai81ae1952007-12-05 10:47:29 +01001303 /* Send log messages to syslog server. */
William Lallemand0f99e342011-10-12 17:50:54 +02001304 nblogger = 0;
1305 list_for_each_entry(tmp, logsrvs, list) {
1306 const struct logsrv *logsrv = tmp;
David du Colombier11bcb6c2011-03-24 12:23:00 +01001307 int *plogfd = logsrv->addr.ss_family == AF_UNIX ?
Robert Tsai81ae1952007-12-05 10:47:29 +01001308 &logfdunix : &logfdinet;
Dragan Dosen43885c72015-10-01 13:18:13 +02001309 char *pid_sep1 = NULL, *pid_sep2 = NULL;
Robert Tsai81ae1952007-12-05 10:47:29 +01001310 int sent;
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02001311 int maxlen;
Dragan Dosen59cee972015-09-19 22:09:02 +02001312 int hdr_max = 0;
Dragan Dosen43885c72015-10-01 13:18:13 +02001313 int tag_max = 0;
1314 int pid_sep1_max = 0;
1315 int pid_max = 0;
1316 int pid_sep2_max = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02001317 int sd_max = 0;
Dragan Dosen5b78d9b2015-09-28 16:01:03 +02001318 int max = 0;
Robert Tsai81ae1952007-12-05 10:47:29 +01001319
Willy Tarreauc7c7be22014-06-23 18:07:15 +02001320 nblogger++;
1321
Willy Tarreaubaaee002006-06-26 02:48:02 +02001322 /* we can filter the level of the messages that are sent to each logger */
William Lallemand0f99e342011-10-12 17:50:54 +02001323 if (level > logsrv->level)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001324 continue;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001325
Willy Tarreauc7c7be22014-06-23 18:07:15 +02001326 if (unlikely(*plogfd < 0)) {
1327 /* socket not successfully initialized yet */
1328 int proto = logsrv->addr.ss_family == AF_UNIX ? 0 : IPPROTO_UDP;
1329
1330 if ((*plogfd = socket(logsrv->addr.ss_family, SOCK_DGRAM, proto)) < 0) {
Willy Tarreauc98aebc2018-03-20 11:17:29 +01001331 static char once;
1332
1333 if (!once) {
1334 once = 1; /* note: no need for atomic ops here */
1335 ha_alert("socket for logger #%d failed: %s (errno=%d)\n",
1336 nblogger, strerror(errno), errno);
1337 }
Willy Tarreauc7c7be22014-06-23 18:07:15 +02001338 continue;
1339 }
1340 /* we don't want to receive anything on this socket */
1341 setsockopt(*plogfd, SOL_SOCKET, SO_RCVBUF, &zero, sizeof(zero));
1342 /* does nothing under Linux, maybe needed for others */
1343 shutdown(*plogfd, SHUT_RD);
Christopher Faulet78969172017-12-19 10:35:53 +01001344 fcntl(*plogfd, F_SETFD, fcntl(*plogfd, F_GETFD, FD_CLOEXEC) | FD_CLOEXEC);
Willy Tarreauc7c7be22014-06-23 18:07:15 +02001345 }
1346
Dragan Dosen1322d092015-09-22 16:05:32 +02001347 switch (logsrv->format) {
1348 case LOG_FORMAT_RFC3164:
1349 hdr = logheader;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02001350 hdr_ptr = update_log_hdr(time);
Dragan Dosen1322d092015-09-22 16:05:32 +02001351 break;
1352
1353 case LOG_FORMAT_RFC5424:
1354 hdr = logheader_rfc5424;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02001355 hdr_ptr = update_log_hdr_rfc5424(time);
Dragan Dosen0b85ece2015-09-25 19:17:44 +02001356 sd_max = sd_size; /* the SD part allowed only in RFC5424 */
Dragan Dosen1322d092015-09-22 16:05:32 +02001357 break;
1358
1359 default:
1360 continue; /* must never happen */
1361 }
1362
1363 hdr_size = hdr_ptr - hdr;
1364
Willy Tarreaubaaee002006-06-26 02:48:02 +02001365 /* For each target, we may have a different facility.
1366 * We can also have a different log level for each message.
1367 * This induces variations in the message header length.
1368 * Since we don't want to recompute it each time, nor copy it every
1369 * time, we only change the facility in the pre-computed header,
1370 * and we change the pointer to the header accordingly.
1371 */
William Lallemand0f99e342011-10-12 17:50:54 +02001372 fac_level = (logsrv->facility << 3) + MAX(level, logsrv->minlvl);
Dragan Dosen1322d092015-09-22 16:05:32 +02001373 hdr_ptr = hdr + 3; /* last digit of the log level */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001374 do {
Dragan Dosen59cee972015-09-19 22:09:02 +02001375 *hdr_ptr = '0' + fac_level % 10;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001376 fac_level /= 10;
Dragan Dosen59cee972015-09-19 22:09:02 +02001377 hdr_ptr--;
Dragan Dosen1322d092015-09-22 16:05:32 +02001378 } while (fac_level && hdr_ptr > hdr);
Dragan Dosen59cee972015-09-19 22:09:02 +02001379 *hdr_ptr = '<';
William Lallemand2a4a44f2012-02-06 16:00:33 +01001380
Dragan Dosen1322d092015-09-22 16:05:32 +02001381 hdr_max = hdr_size - (hdr_ptr - hdr);
Dragan Dosen59cee972015-09-19 22:09:02 +02001382
Dragan Dosen43885c72015-10-01 13:18:13 +02001383 /* time-based header */
Dragan Dosen59cee972015-09-19 22:09:02 +02001384 if (unlikely(hdr_size >= logsrv->maxlen)) {
1385 hdr_max = MIN(hdr_max, logsrv->maxlen) - 1;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02001386 sd_max = 0;
Dragan Dosen59cee972015-09-19 22:09:02 +02001387 goto send;
1388 }
1389
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02001390 maxlen = logsrv->maxlen - hdr_max;
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02001391
Dragan Dosen43885c72015-10-01 13:18:13 +02001392 /* tag */
1393 tag_max = tag->len;
1394 if (unlikely(tag_max >= maxlen)) {
1395 tag_max = maxlen - 1;
1396 sd_max = 0;
1397 goto send;
1398 }
1399
1400 maxlen -= tag_max;
1401
1402 /* first pid separator */
1403 pid_sep1_max = log_formats[logsrv->format].pid.sep1.len;
1404 if (unlikely(pid_sep1_max >= maxlen)) {
1405 pid_sep1_max = maxlen - 1;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02001406 sd_max = 0;
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02001407 goto send;
1408 }
1409
Dragan Dosen43885c72015-10-01 13:18:13 +02001410 pid_sep1 = log_formats[logsrv->format].pid.sep1.str;
1411 maxlen -= pid_sep1_max;
Dragan Dosen59cee972015-09-19 22:09:02 +02001412
Dragan Dosen43885c72015-10-01 13:18:13 +02001413 /* pid */
1414 pid_max = pid.len;
1415 if (unlikely(pid_max >= maxlen)) {
1416 pid_max = maxlen - 1;
1417 sd_max = 0;
1418 goto send;
1419 }
1420
1421 maxlen -= pid_max;
1422
1423 /* second pid separator */
1424 pid_sep2_max = log_formats[logsrv->format].pid.sep2.len;
1425 if (unlikely(pid_sep2_max >= maxlen)) {
1426 pid_sep2_max = maxlen - 1;
1427 sd_max = 0;
1428 goto send;
1429 }
1430
1431 pid_sep2 = log_formats[logsrv->format].pid.sep2.str;
1432 maxlen -= pid_sep2_max;
1433
1434 /* structured-data */
Dragan Dosen0b85ece2015-09-25 19:17:44 +02001435 if (sd_max >= maxlen) {
1436 sd_max = maxlen - 1;
1437 goto send;
1438 }
Dragan Dosen59cee972015-09-19 22:09:02 +02001439
Dragan Dosen5b78d9b2015-09-28 16:01:03 +02001440 max = MIN(size, maxlen - sd_max) - 1;
Dragan Dosen59cee972015-09-19 22:09:02 +02001441send:
Dragan Dosen59cee972015-09-19 22:09:02 +02001442 iovec[0].iov_base = hdr_ptr;
Dragan Dosen43885c72015-10-01 13:18:13 +02001443 iovec[0].iov_len = hdr_max;
1444 iovec[1].iov_base = tag->str;
1445 iovec[1].iov_len = tag_max;
1446 iovec[2].iov_base = pid_sep1;
1447 iovec[2].iov_len = pid_sep1_max;
1448 iovec[3].iov_base = pid.str;
1449 iovec[3].iov_len = pid_max;
1450 iovec[4].iov_base = pid_sep2;
1451 iovec[4].iov_len = pid_sep2_max;
1452 iovec[5].iov_base = sd;
1453 iovec[5].iov_len = sd_max;
1454 iovec[6].iov_base = dataptr;
1455 iovec[6].iov_len = max;
1456 iovec[7].iov_base = "\n"; /* insert a \n at the end of the message */
1457 iovec[7].iov_len = 1;
Dragan Dosen609ac2a2015-09-16 18:25:42 +02001458
1459 msghdr.msg_name = (struct sockaddr *)&logsrv->addr;
1460 msghdr.msg_namelen = get_addr_len(&logsrv->addr);
1461
1462 sent = sendmsg(*plogfd, &msghdr, MSG_DONTWAIT | MSG_NOSIGNAL);
Willy Tarreau18324f52014-06-27 18:10:07 +02001463
Robert Tsai81ae1952007-12-05 10:47:29 +01001464 if (sent < 0) {
Willy Tarreauc98aebc2018-03-20 11:17:29 +01001465 static char once;
1466
1467 if (!once) {
1468 once = 1; /* note: no need for atomic ops here */
1469 ha_alert("sendmsg logger #%d failed: %s (errno=%d)\n",
1470 nblogger, strerror(errno), errno);
1471 }
Robert Tsai81ae1952007-12-05 10:47:29 +01001472 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001473 }
1474}
1475
William Lallemandbddd4fd2012-02-27 11:23:10 +01001476extern fd_set hdr_encode_map[];
1477extern fd_set url_encode_map[];
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +01001478extern fd_set http_encode_map[];
William Lallemandbddd4fd2012-02-27 11:23:10 +01001479
Willy Tarreaubaaee002006-06-26 02:48:02 +02001480
Willy Tarreauc89ccb62012-04-05 21:18:22 +02001481const char sess_cookie[8] = "NIDVEOU7"; /* No cookie, Invalid cookie, cookie for a Down server, Valid cookie, Expired cookie, Old cookie, Unused, unknown */
William Lallemandbddd4fd2012-02-27 11:23:10 +01001482const char sess_set_cookie[8] = "NPDIRU67"; /* No set-cookie, Set-cookie found and left unchanged (passive),
1483 Set-cookie Deleted, Set-Cookie Inserted, Set-cookie Rewritten,
1484 Set-cookie Updated, unknown, unknown */
1485
William Lallemand1d705562012-03-12 12:46:41 +01001486/*
1487 * try to write a character if there is enough space, or goto out
1488 */
William Lallemandbddd4fd2012-02-27 11:23:10 +01001489#define LOGCHAR(x) do { \
William Lallemand1d705562012-03-12 12:46:41 +01001490 if (tmplog < dst + maxsize - 1) { \
William Lallemandbddd4fd2012-02-27 11:23:10 +01001491 *(tmplog++) = (x); \
1492 } else { \
1493 goto out; \
1494 } \
1495 } while(0)
1496
Dragan Dosen835b9212016-02-12 13:23:03 +01001497
1498/* Initializes some log data.
1499 */
1500void init_log()
1501{
1502 char *tmp;
1503
1504 /* Initialize the escape map for the RFC5424 structured-data : '"\]'
1505 * inside PARAM-VALUE should be escaped with '\' as prefix.
1506 * See https://tools.ietf.org/html/rfc5424#section-6.3.3 for more
1507 * details.
1508 */
1509 memset(rfc5424_escape_map, 0, sizeof(rfc5424_escape_map));
1510
1511 tmp = "\"\\]";
1512 while (*tmp) {
1513 FD_SET(*tmp, rfc5424_escape_map);
1514 tmp++;
1515 }
1516}
William Lallemand1d705562012-03-12 12:46:41 +01001517
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001518static int init_log_buffers_per_thread()
1519{
1520 return init_log_buffers();
1521}
1522
1523static void deinit_log_buffers_per_thread()
1524{
1525 deinit_log_buffers();
1526}
1527
Christopher Faulet0132d062017-07-26 15:33:35 +02001528/* Initialize log buffers used for syslog messages */
1529int init_log_buffers()
1530{
1531 logheader = my_realloc2(logheader, global.max_syslog_len + 1);
1532 logheader_rfc5424 = my_realloc2(logheader_rfc5424, global.max_syslog_len + 1);
1533 logline = my_realloc2(logline, global.max_syslog_len + 1);
1534 logline_rfc5424 = my_realloc2(logline_rfc5424, global.max_syslog_len + 1);
1535 if (!logheader || !logline_rfc5424 || !logline || !logline_rfc5424)
1536 return 0;
1537 return 1;
1538}
1539
1540/* Deinitialize log buffers used for syslog messages */
1541void deinit_log_buffers()
1542{
1543 free(logheader);
1544 free(logheader_rfc5424);
1545 free(logline);
1546 free(logline_rfc5424);
Christopher Fauletd4696382017-10-24 11:44:05 +02001547 free(startup_logs);
Christopher Faulet0132d062017-07-26 15:33:35 +02001548 logheader = NULL;
1549 logheader_rfc5424 = NULL;
1550 logline = NULL;
1551 logline_rfc5424 = NULL;
Christopher Fauletd4696382017-10-24 11:44:05 +02001552 startup_logs = NULL;
Christopher Faulet0132d062017-07-26 15:33:35 +02001553}
1554
Willy Tarreaudf974472012-12-28 02:44:01 +01001555/* Builds a log line in <dst> based on <list_format>, and stops before reaching
1556 * <maxsize> characters. Returns the size of the output string in characters,
1557 * not counting the trailing zero which is always added if the resulting size
1558 * is not zero.
1559 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001560int build_logline(struct stream *s, char *dst, size_t maxsize, struct list *list_format)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001561{
Willy Tarreaufb0afa72015-04-03 14:46:27 +02001562 struct session *sess = strm_sess(s);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001563 struct proxy *fe = sess->fe;
Willy Tarreauddb358d2006-12-17 22:55:52 +01001564 struct proxy *be = s->be;
Willy Tarreaueee5b512015-04-03 23:46:31 +02001565 struct http_txn *txn = s->txn;
Andrew Hayworth0ebc55f2015-04-27 21:37:03 +00001566 struct chunk chunk;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001567 char *uri;
Andrew Hayworth0ebc55f2015-04-27 21:37:03 +00001568 char *spc;
Andrew Hayworthe63ac872015-07-31 16:14:16 +00001569 char *qmark;
Andrew Hayworth0ebc55f2015-04-27 21:37:03 +00001570 char *end;
Willy Tarreaufe944602007-10-25 10:34:16 +02001571 struct tm tm;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001572 int t_request;
1573 int hdr;
1574 int last_isspace = 1;
Andrew Hayworth0ebc55f2015-04-27 21:37:03 +00001575 int nspaces = 0;
Willy Tarreaub1a2faf2012-03-19 16:51:53 +01001576 char *tmplog;
William Lallemand1d705562012-03-12 12:46:41 +01001577 char *ret;
1578 int iret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001579 struct logformat_node *tmp;
Thierry FOURNIER / OZON.IO4cac3592016-07-28 17:19:45 +02001580 struct timeval tv;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001581
William Lallemandbddd4fd2012-02-27 11:23:10 +01001582 /* FIXME: let's limit ourselves to frontend logging for now. */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001583
William Lallemandbddd4fd2012-02-27 11:23:10 +01001584 t_request = -1;
1585 if (tv_isge(&s->logs.tv_request, &s->logs.tv_accept))
1586 t_request = tv_ms_elapsed(&s->logs.tv_accept, &s->logs.tv_request);
1587
William Lallemand1d705562012-03-12 12:46:41 +01001588 tmplog = dst;
Willy Tarreauc9bd0cc2009-05-10 11:57:02 +02001589
William Lallemandbddd4fd2012-02-27 11:23:10 +01001590 /* fill logbuffer */
William Lallemand1d705562012-03-12 12:46:41 +01001591 if (LIST_ISEMPTY(list_format))
1592 return 0;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001593
William Lallemand1d705562012-03-12 12:46:41 +01001594 list_for_each_entry(tmp, list_format, list) {
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001595 struct connection *conn;
Willy Tarreau4f653562012-10-12 19:48:16 +02001596 const char *src = NULL;
Willy Tarreauc8368452012-12-21 00:09:23 +01001597 struct sample *key;
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +01001598 const struct chunk empty = { NULL, 0, 0 };
William Lallemandbddd4fd2012-02-27 11:23:10 +01001599
Willy Tarreauc8368452012-12-21 00:09:23 +01001600 switch (tmp->type) {
William Lallemand1d705562012-03-12 12:46:41 +01001601 case LOG_FMT_SEPARATOR:
William Lallemandbddd4fd2012-02-27 11:23:10 +01001602 if (!last_isspace) {
1603 LOGCHAR(' ');
1604 last_isspace = 1;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001605 }
1606 break;
1607
William Lallemand1d705562012-03-12 12:46:41 +01001608 case LOG_FMT_TEXT: // text
William Lallemandbddd4fd2012-02-27 11:23:10 +01001609 src = tmp->arg;
William Lallemand5f232402012-04-05 18:02:55 +02001610 iret = strlcpy2(tmplog, src, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001611 if (iret == 0)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001612 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001613 tmplog += iret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001614 last_isspace = 0;
1615 break;
1616
Willy Tarreauc8368452012-12-21 00:09:23 +01001617 case LOG_FMT_EXPR: // sample expression, may be request or response
1618 key = NULL;
1619 if (tmp->options & LOG_OPT_REQ_CAP)
Adis Nezirovic79beb242015-07-06 15:41:02 +02001620 key = sample_fetch_as_type(be, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, tmp->expr, SMP_T_STR);
Willy Tarreauc8368452012-12-21 00:09:23 +01001621 if (!key && (tmp->options & LOG_OPT_RES_CAP))
Adis Nezirovic79beb242015-07-06 15:41:02 +02001622 key = sample_fetch_as_type(be, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL, tmp->expr, SMP_T_STR);
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +01001623 if (tmp->options & LOG_OPT_HTTP)
Dragan Dosen835b9212016-02-12 13:23:03 +01001624 ret = lf_encode_chunk(tmplog, dst + maxsize,
1625 '%', http_encode_map, key ? &key->data.u.str : &empty, tmp);
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +01001626 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001627 ret = lf_text_len(tmplog, key ? key->data.u.str.str : NULL, key ? key->data.u.str.len : 0, dst + maxsize - tmplog, tmp);
Willy Tarreauc8368452012-12-21 00:09:23 +01001628 if (ret == 0)
1629 goto out;
1630 tmplog = ret;
1631 last_isspace = 0;
1632 break;
1633
Willy Tarreau2beef582012-12-20 17:22:52 +01001634 case LOG_FMT_CLIENTIP: // %ci
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02001635 conn = objt_conn(sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001636 if (conn)
1637 ret = lf_ip(tmplog, (struct sockaddr *)&conn->addr.from, dst + maxsize - tmplog, tmp);
1638 else
1639 ret = lf_text_len(tmplog, NULL, 0, dst + maxsize - tmplog, tmp);
William Lallemand1d705562012-03-12 12:46:41 +01001640 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001641 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001642 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001643 last_isspace = 0;
1644 break;
1645
Willy Tarreau2beef582012-12-20 17:22:52 +01001646 case LOG_FMT_CLIENTPORT: // %cp
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02001647 conn = objt_conn(sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001648 if (conn) {
1649 if (conn->addr.from.ss_family == AF_UNIX) {
Willy Tarreaufb0afa72015-04-03 14:46:27 +02001650 ret = ltoa_o(sess->listener->luid, tmplog, dst + maxsize - tmplog);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001651 } else {
1652 ret = lf_port(tmplog, (struct sockaddr *)&conn->addr.from,
1653 dst + maxsize - tmplog, tmp);
1654 }
William Lallemand5f232402012-04-05 18:02:55 +02001655 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001656 else
1657 ret = lf_text_len(tmplog, NULL, 0, dst + maxsize - tmplog, tmp);
1658
William Lallemand5f232402012-04-05 18:02:55 +02001659 if (ret == NULL)
1660 goto out;
1661 tmplog = ret;
1662 last_isspace = 0;
1663 break;
1664
Willy Tarreau2beef582012-12-20 17:22:52 +01001665 case LOG_FMT_FRONTENDIP: // %fi
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02001666 conn = objt_conn(sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001667 if (conn) {
1668 conn_get_to_addr(conn);
1669 ret = lf_ip(tmplog, (struct sockaddr *)&conn->addr.to, dst + maxsize - tmplog, tmp);
1670 }
1671 else
1672 ret = lf_text_len(tmplog, NULL, 0, dst + maxsize - tmplog, tmp);
1673
William Lallemand1d705562012-03-12 12:46:41 +01001674 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001675 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001676 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001677 last_isspace = 0;
1678 break;
1679
Willy Tarreau2beef582012-12-20 17:22:52 +01001680 case LOG_FMT_FRONTENDPORT: // %fp
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02001681 conn = objt_conn(sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001682 if (conn) {
1683 conn_get_to_addr(conn);
1684 if (conn->addr.to.ss_family == AF_UNIX)
Willy Tarreaufb0afa72015-04-03 14:46:27 +02001685 ret = ltoa_o(sess->listener->luid, tmplog, dst + maxsize - tmplog);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001686 else
1687 ret = lf_port(tmplog, (struct sockaddr *)&conn->addr.to, dst + maxsize - tmplog, tmp);
William Lallemand5f232402012-04-05 18:02:55 +02001688 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001689 else
1690 ret = lf_text_len(tmplog, NULL, 0, dst + maxsize - tmplog, tmp);
1691
William Lallemand5f232402012-04-05 18:02:55 +02001692 if (ret == NULL)
1693 goto out;
1694 tmplog = ret;
1695 last_isspace = 0;
1696 break;
1697
Willy Tarreau2beef582012-12-20 17:22:52 +01001698 case LOG_FMT_BACKENDIP: // %bi
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001699 conn = cs_conn(objt_cs(s->si[1].end));
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001700 if (conn)
1701 ret = lf_ip(tmplog, (struct sockaddr *)&conn->addr.from, dst + maxsize - tmplog, tmp);
1702 else
1703 ret = lf_text_len(tmplog, NULL, 0, dst + maxsize - tmplog, tmp);
1704
William Lallemand1d705562012-03-12 12:46:41 +01001705 if (ret == NULL)
William Lallemandb7ff6a32012-03-02 14:35:21 +01001706 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001707 tmplog = ret;
William Lallemandb7ff6a32012-03-02 14:35:21 +01001708 last_isspace = 0;
1709 break;
1710
Willy Tarreau2beef582012-12-20 17:22:52 +01001711 case LOG_FMT_BACKENDPORT: // %bp
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001712 conn = cs_conn(objt_cs(s->si[1].end));
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001713 if (conn)
1714 ret = lf_port(tmplog, (struct sockaddr *)&conn->addr.from, dst + maxsize - tmplog, tmp);
1715 else
1716 ret = lf_text_len(tmplog, NULL, 0, dst + maxsize - tmplog, tmp);
1717
William Lallemand5f232402012-04-05 18:02:55 +02001718 if (ret == NULL)
1719 goto out;
1720 tmplog = ret;
1721 last_isspace = 0;
1722 break;
1723
Willy Tarreau2beef582012-12-20 17:22:52 +01001724 case LOG_FMT_SERVERIP: // %si
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001725 conn = cs_conn(objt_cs(s->si[1].end));
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001726 if (conn)
1727 ret = lf_ip(tmplog, (struct sockaddr *)&conn->addr.to, dst + maxsize - tmplog, tmp);
1728 else
1729 ret = lf_text_len(tmplog, NULL, 0, dst + maxsize - tmplog, tmp);
1730
William Lallemand5f232402012-04-05 18:02:55 +02001731 if (ret == NULL)
1732 goto out;
1733 tmplog = ret;
1734 last_isspace = 0;
1735 break;
1736
Willy Tarreau2beef582012-12-20 17:22:52 +01001737 case LOG_FMT_SERVERPORT: // %sp
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001738 conn = cs_conn(objt_cs(s->si[1].end));
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001739 if (conn)
1740 ret = lf_port(tmplog, (struct sockaddr *)&conn->addr.to, dst + maxsize - tmplog, tmp);
1741 else
1742 ret = lf_text_len(tmplog, NULL, 0, dst + maxsize - tmplog, tmp);
1743
William Lallemand1d705562012-03-12 12:46:41 +01001744 if (ret == NULL)
William Lallemandb7ff6a32012-03-02 14:35:21 +01001745 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001746 tmplog = ret;
William Lallemandb7ff6a32012-03-02 14:35:21 +01001747 last_isspace = 0;
1748 break;
1749
Thierry FOURNIER / OZON.IO4cac3592016-07-28 17:19:45 +02001750 case LOG_FMT_DATE: // %t = accept date
William Lallemandbddd4fd2012-02-27 11:23:10 +01001751 get_localtime(s->logs.accept_date.tv_sec, &tm);
William Lallemand5f232402012-04-05 18:02:55 +02001752 ret = date2str_log(tmplog, &tm, &(s->logs.accept_date),
1753 dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001754 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001755 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001756 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001757 last_isspace = 0;
1758 break;
1759
Thierry FOURNIER / OZON.IO4cac3592016-07-28 17:19:45 +02001760 case LOG_FMT_tr: // %tr = start of request date
1761 /* Note that the timers are valid if we get here */
1762 tv_ms_add(&tv, &s->logs.accept_date, s->logs.t_idle >= 0 ? s->logs.t_idle + s->logs.t_handshake : 0);
1763 get_localtime(tv.tv_sec, &tm);
1764 ret = date2str_log(tmplog, &tm, &tv, dst + maxsize - tmplog);
1765 if (ret == NULL)
1766 goto out;
1767 tmplog = ret;
1768 last_isspace = 0;
1769 break;
1770
1771 case LOG_FMT_DATEGMT: // %T = accept date, GMT
William Lallemandbddd4fd2012-02-27 11:23:10 +01001772 get_gmtime(s->logs.accept_date.tv_sec, &tm);
William Lallemand5f232402012-04-05 18:02:55 +02001773 ret = gmt2str_log(tmplog, &tm, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001774 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001775 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001776 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001777 last_isspace = 0;
1778 break;
1779
Thierry FOURNIER / OZON.IO4cac3592016-07-28 17:19:45 +02001780 case LOG_FMT_trg: // %trg = start of request date, GMT
1781 tv_ms_add(&tv, &s->logs.accept_date, s->logs.t_idle >= 0 ? s->logs.t_idle + s->logs.t_handshake : 0);
1782 get_gmtime(tv.tv_sec, &tm);
1783 ret = gmt2str_log(tmplog, &tm, dst + maxsize - tmplog);
1784 if (ret == NULL)
1785 goto out;
1786 tmplog = ret;
1787 last_isspace = 0;
1788 break;
1789
1790 case LOG_FMT_DATELOCAL: // %Tl = accept date, local
Yuxans Yao4e25b012012-10-19 10:36:09 +08001791 get_localtime(s->logs.accept_date.tv_sec, &tm);
Benoit GARNIERe2e5bde2016-03-27 03:04:16 +02001792 ret = localdate2str_log(tmplog, s->logs.accept_date.tv_sec, &tm, dst + maxsize - tmplog);
Yuxans Yao4e25b012012-10-19 10:36:09 +08001793 if (ret == NULL)
1794 goto out;
1795 tmplog = ret;
1796 last_isspace = 0;
1797 break;
1798
Thierry FOURNIER / OZON.IO4cac3592016-07-28 17:19:45 +02001799 case LOG_FMT_trl: // %trl = start of request date, local
1800 tv_ms_add(&tv, &s->logs.accept_date, s->logs.t_idle >= 0 ? s->logs.t_idle + s->logs.t_handshake : 0);
1801 get_localtime(tv.tv_sec, &tm);
1802 ret = localdate2str_log(tmplog, tv.tv_sec, &tm, dst + maxsize - tmplog);
1803 if (ret == NULL)
1804 goto out;
1805 tmplog = ret;
1806 last_isspace = 0;
1807 break;
1808
William Lallemand5f232402012-04-05 18:02:55 +02001809 case LOG_FMT_TS: // %Ts
1810 get_gmtime(s->logs.accept_date.tv_sec, &tm);
1811 if (tmp->options & LOG_OPT_HEXA) {
1812 iret = snprintf(tmplog, dst + maxsize - tmplog, "%04X", (unsigned int)s->logs.accept_date.tv_sec);
1813 if (iret < 0 || iret > dst + maxsize - tmplog)
1814 goto out;
1815 last_isspace = 0;
1816 tmplog += iret;
1817 } else {
1818 ret = ltoa_o(s->logs.accept_date.tv_sec, tmplog, dst + maxsize - tmplog);
1819 if (ret == NULL)
1820 goto out;
1821 tmplog = ret;
1822 last_isspace = 0;
1823 }
1824 break;
1825
William Lallemand1d705562012-03-12 12:46:41 +01001826 case LOG_FMT_MS: // %ms
William Lallemand5f232402012-04-05 18:02:55 +02001827 if (tmp->options & LOG_OPT_HEXA) {
1828 iret = snprintf(tmplog, dst + maxsize - tmplog, "%02X",(unsigned int)s->logs.accept_date.tv_usec/1000);
1829 if (iret < 0 || iret > dst + maxsize - tmplog)
1830 goto out;
1831 last_isspace = 0;
1832 tmplog += iret;
1833 } else {
1834 if ((dst + maxsize - tmplog) < 4)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001835 goto out;
Willy Tarreau9e60cd82013-01-24 01:18:16 +01001836 ret = utoa_pad((unsigned int)s->logs.accept_date.tv_usec/1000,
1837 tmplog, 4);
1838 if (ret == NULL)
William Lallemand51b5dca2012-03-26 17:52:55 +02001839 goto out;
Willy Tarreau9e60cd82013-01-24 01:18:16 +01001840 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001841 last_isspace = 0;
William Lallemand5f232402012-04-05 18:02:55 +02001842 }
1843 break;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001844
William Lallemand1d705562012-03-12 12:46:41 +01001845 case LOG_FMT_FRONTEND: // %f
William Lallemandbddd4fd2012-02-27 11:23:10 +01001846 src = fe->id;
William Lallemand5f232402012-04-05 18:02:55 +02001847 ret = lf_text(tmplog, src, dst + maxsize - tmplog, tmp);
William Lallemand1d705562012-03-12 12:46:41 +01001848 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001849 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001850 tmplog = ret;
William Lallemand51b5dca2012-03-26 17:52:55 +02001851 last_isspace = 0;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001852 break;
1853
Willy Tarreau773d65f2012-10-12 14:56:11 +02001854 case LOG_FMT_FRONTEND_XPRT: // %ft
1855 src = fe->id;
1856 if (tmp->options & LOG_OPT_QUOTE)
1857 LOGCHAR('"');
1858 iret = strlcpy2(tmplog, src, dst + maxsize - tmplog);
1859 if (iret == 0)
1860 goto out;
1861 tmplog += iret;
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001862 if (sess->listener->bind_conf->xprt == xprt_get(XPRT_SSL))
Willy Tarreau773d65f2012-10-12 14:56:11 +02001863 LOGCHAR('~');
Willy Tarreau773d65f2012-10-12 14:56:11 +02001864 if (tmp->options & LOG_OPT_QUOTE)
1865 LOGCHAR('"');
1866 last_isspace = 0;
1867 break;
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02001868#ifdef USE_OPENSSL
1869 case LOG_FMT_SSL_CIPHER: // %sslc
1870 src = NULL;
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02001871 conn = objt_conn(sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001872 if (conn) {
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02001873 src = ssl_sock_get_cipher_name(conn);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001874 }
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02001875 ret = lf_text(tmplog, src, dst + maxsize - tmplog, tmp);
1876 if (ret == NULL)
1877 goto out;
1878 tmplog = ret;
1879 last_isspace = 0;
1880 break;
Willy Tarreau773d65f2012-10-12 14:56:11 +02001881
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02001882 case LOG_FMT_SSL_VERSION: // %sslv
1883 src = NULL;
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02001884 conn = objt_conn(sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001885 if (conn) {
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02001886 src = ssl_sock_get_proto_version(conn);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001887 }
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02001888 ret = lf_text(tmplog, src, dst + maxsize - tmplog, tmp);
1889 if (ret == NULL)
1890 goto out;
1891 tmplog = ret;
1892 last_isspace = 0;
1893 break;
1894#endif
William Lallemand1d705562012-03-12 12:46:41 +01001895 case LOG_FMT_BACKEND: // %b
William Lallemandbddd4fd2012-02-27 11:23:10 +01001896 src = be->id;
William Lallemand5f232402012-04-05 18:02:55 +02001897 ret = lf_text(tmplog, src, dst + maxsize - tmplog, tmp);
William Lallemand1d705562012-03-12 12:46:41 +01001898 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001899 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001900 tmplog = ret;
William Lallemand51b5dca2012-03-26 17:52:55 +02001901 last_isspace = 0;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001902 break;
1903
William Lallemand1d705562012-03-12 12:46:41 +01001904 case LOG_FMT_SERVER: // %s
Willy Tarreaud79a3b22012-12-28 09:40:16 +01001905 switch (obj_type(s->target)) {
1906 case OBJ_TYPE_SERVER:
1907 src = objt_server(s->target)->id;
1908 break;
1909 case OBJ_TYPE_APPLET:
1910 src = objt_applet(s->target)->name;
1911 break;
1912 default:
1913 src = "<NOSRV>";
1914 break;
1915 }
William Lallemand5f232402012-04-05 18:02:55 +02001916 ret = lf_text(tmplog, src, dst + maxsize - tmplog, tmp);
William Lallemand1d705562012-03-12 12:46:41 +01001917 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001918 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001919 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001920 last_isspace = 0;
1921 break;
1922
Thierry FOURNIER / OZON.IO4cac3592016-07-28 17:19:45 +02001923 case LOG_FMT_Th: // %Th = handshake time
1924 ret = ltoa_o(s->logs.t_handshake, tmplog, dst + maxsize - tmplog);
1925 if (ret == NULL)
1926 goto out;
1927 tmplog = ret;
1928 last_isspace = 0;
1929 break;
1930
1931 case LOG_FMT_Ti: // %Ti = HTTP idle time
1932 ret = ltoa_o(s->logs.t_idle, tmplog, dst + maxsize - tmplog);
1933 if (ret == NULL)
1934 goto out;
1935 tmplog = ret;
1936 last_isspace = 0;
1937 break;
1938
1939 case LOG_FMT_TR: // %TR = HTTP request time
1940 ret = ltoa_o((t_request >= 0) ? t_request - s->logs.t_idle - s->logs.t_handshake : -1,
1941 tmplog, dst + maxsize - tmplog);
1942 if (ret == NULL)
1943 goto out;
1944 tmplog = ret;
1945 last_isspace = 0;
1946 break;
1947
1948 case LOG_FMT_TQ: // %Tq = Th + Ti + TR
William Lallemand5f232402012-04-05 18:02:55 +02001949 ret = ltoa_o(t_request, tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001950 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001951 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001952 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001953 last_isspace = 0;
1954 break;
1955
William Lallemand1d705562012-03-12 12:46:41 +01001956 case LOG_FMT_TW: // %Tw
1957 ret = ltoa_o((s->logs.t_queue >= 0) ? s->logs.t_queue - t_request : -1,
William Lallemand5f232402012-04-05 18:02:55 +02001958 tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001959 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001960 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001961 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001962 last_isspace = 0;
1963 break;
1964
William Lallemand1d705562012-03-12 12:46:41 +01001965 case LOG_FMT_TC: // %Tc
1966 ret = ltoa_o((s->logs.t_connect >= 0) ? s->logs.t_connect - s->logs.t_queue : -1,
William Lallemand5f232402012-04-05 18:02:55 +02001967 tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001968 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001969 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001970 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001971 last_isspace = 0;
1972 break;
1973
Thierry FOURNIER / OZON.IO4cac3592016-07-28 17:19:45 +02001974 case LOG_FMT_Tr: // %Tr
William Lallemand1d705562012-03-12 12:46:41 +01001975 ret = ltoa_o((s->logs.t_data >= 0) ? s->logs.t_data - s->logs.t_connect : -1,
William Lallemand5f232402012-04-05 18:02:55 +02001976 tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001977 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001978 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001979 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001980 last_isspace = 0;
1981 break;
1982
Willy Tarreau27b639d2016-05-17 17:55:27 +02001983 case LOG_FMT_TD: // %Td
1984 if (s->be->mode == PR_MODE_HTTP)
1985 ret = ltoa_o((s->logs.t_data >= 0) ? s->logs.t_close - s->logs.t_data : -1,
1986 tmplog, dst + maxsize - tmplog);
1987 else
1988 ret = ltoa_o((s->logs.t_connect >= 0) ? s->logs.t_close - s->logs.t_connect : -1,
1989 tmplog, dst + maxsize - tmplog);
1990 if (ret == NULL)
1991 goto out;
1992 tmplog = ret;
1993 last_isspace = 0;
1994 break;
1995
Thierry FOURNIER / OZON.IO4cac3592016-07-28 17:19:45 +02001996 case LOG_FMT_Ta: // %Ta = active time = Tt - Th - Ti
1997 if (!(fe->to_log & LW_BYTES))
1998 LOGCHAR('+');
1999 ret = ltoa_o(s->logs.t_close - (s->logs.t_idle >= 0 ? s->logs.t_idle + s->logs.t_handshake : 0),
2000 tmplog, dst + maxsize - tmplog);
2001 if (ret == NULL)
2002 goto out;
2003 tmplog = ret;
2004 last_isspace = 0;
2005 break;
2006
2007 case LOG_FMT_TT: // %Tt = total time
Willy Tarreaud79a3b22012-12-28 09:40:16 +01002008 if (!(fe->to_log & LW_BYTES))
William Lallemand1d705562012-03-12 12:46:41 +01002009 LOGCHAR('+');
William Lallemand5f232402012-04-05 18:02:55 +02002010 ret = ltoa_o(s->logs.t_close, tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01002011 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01002012 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01002013 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01002014 last_isspace = 0;
2015 break;
2016
Willy Tarreau2beef582012-12-20 17:22:52 +01002017 case LOG_FMT_STATUS: // %ST
Willy Tarreau57bc8912016-04-25 17:09:40 +02002018 ret = ltoa_o(txn ? txn->status : 0, tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01002019 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01002020 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01002021 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01002022 last_isspace = 0;
2023 break;
2024
William Lallemand1d705562012-03-12 12:46:41 +01002025 case LOG_FMT_BYTES: // %B
Willy Tarreaud79a3b22012-12-28 09:40:16 +01002026 if (!(fe->to_log & LW_BYTES))
William Lallemand1d705562012-03-12 12:46:41 +01002027 LOGCHAR('+');
William Lallemand5f232402012-04-05 18:02:55 +02002028 ret = lltoa(s->logs.bytes_out, tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01002029 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01002030 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01002031 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01002032 last_isspace = 0;
2033 break;
2034
Willy Tarreauc5259fd2012-12-20 15:38:04 +01002035 case LOG_FMT_BYTES_UP: // %U
Willy Tarreauc5259fd2012-12-20 15:38:04 +01002036 ret = lltoa(s->logs.bytes_in, tmplog, dst + maxsize - tmplog);
2037 if (ret == NULL)
2038 goto out;
2039 tmplog = ret;
2040 last_isspace = 0;
2041 break;
2042
Willy Tarreau2beef582012-12-20 17:22:52 +01002043 case LOG_FMT_CCLIENT: // %CC
Willy Tarreau57bc8912016-04-25 17:09:40 +02002044 src = txn ? txn->cli_cookie : NULL;
William Lallemand5f232402012-04-05 18:02:55 +02002045 ret = lf_text(tmplog, src, dst + maxsize - tmplog, tmp);
William Lallemand1d705562012-03-12 12:46:41 +01002046 if (ret == NULL)
William Lallemand51b5dca2012-03-26 17:52:55 +02002047 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01002048 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01002049 last_isspace = 0;
2050 break;
2051
Willy Tarreau2beef582012-12-20 17:22:52 +01002052 case LOG_FMT_CSERVER: // %CS
Willy Tarreau57bc8912016-04-25 17:09:40 +02002053 src = txn ? txn->srv_cookie : NULL;
William Lallemand5f232402012-04-05 18:02:55 +02002054 ret = lf_text(tmplog, src, dst + maxsize - tmplog, tmp);
William Lallemand1d705562012-03-12 12:46:41 +01002055 if (ret == NULL)
William Lallemand51b5dca2012-03-26 17:52:55 +02002056 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01002057 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01002058 last_isspace = 0;
2059 break;
2060
William Lallemand1d705562012-03-12 12:46:41 +01002061 case LOG_FMT_TERMSTATE: // %ts
Willy Tarreaue7dff022015-04-03 01:14:29 +02002062 LOGCHAR(sess_term_cond[(s->flags & SF_ERR_MASK) >> SF_ERR_SHIFT]);
2063 LOGCHAR(sess_fin_state[(s->flags & SF_FINST_MASK) >> SF_FINST_SHIFT]);
Willy Tarreau6580c062012-03-12 15:09:42 +01002064 *tmplog = '\0';
2065 last_isspace = 0;
2066 break;
William Lallemandbddd4fd2012-02-27 11:23:10 +01002067
William Lallemand1d705562012-03-12 12:46:41 +01002068 case LOG_FMT_TERMSTATE_CK: // %tsc, same as TS with cookie state (for mode HTTP)
Willy Tarreaue7dff022015-04-03 01:14:29 +02002069 LOGCHAR(sess_term_cond[(s->flags & SF_ERR_MASK) >> SF_ERR_SHIFT]);
2070 LOGCHAR(sess_fin_state[(s->flags & SF_FINST_MASK) >> SF_FINST_SHIFT]);
Willy Tarreau57bc8912016-04-25 17:09:40 +02002071 LOGCHAR((txn && (be->ck_opts & PR_CK_ANY)) ? sess_cookie[(txn->flags & TX_CK_MASK) >> TX_CK_SHIFT] : '-');
2072 LOGCHAR((txn && (be->ck_opts & PR_CK_ANY)) ? sess_set_cookie[(txn->flags & TX_SCK_MASK) >> TX_SCK_SHIFT] : '-');
William Lallemandbddd4fd2012-02-27 11:23:10 +01002073 last_isspace = 0;
2074 break;
2075
William Lallemand1d705562012-03-12 12:46:41 +01002076 case LOG_FMT_ACTCONN: // %ac
William Lallemand5f232402012-04-05 18:02:55 +02002077 ret = ltoa_o(actconn, tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01002078 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01002079 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01002080 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01002081 last_isspace = 0;
2082 break;
2083
William Lallemand1d705562012-03-12 12:46:41 +01002084 case LOG_FMT_FECONN: // %fc
William Lallemand5f232402012-04-05 18:02:55 +02002085 ret = ltoa_o(fe->feconn, tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01002086 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01002087 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01002088 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01002089 last_isspace = 0;
2090 break;
2091
William Lallemand1d705562012-03-12 12:46:41 +01002092 case LOG_FMT_BECONN: // %bc
William Lallemand5f232402012-04-05 18:02:55 +02002093 ret = ltoa_o(be->beconn, tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01002094 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01002095 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01002096 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01002097 last_isspace = 0;
2098 break;
2099
William Lallemand1d705562012-03-12 12:46:41 +01002100 case LOG_FMT_SRVCONN: // %sc
Willy Tarreau54a08d32012-11-12 01:14:56 +01002101 ret = ultoa_o(objt_server(s->target) ?
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002102 objt_server(s->target)->cur_sess :
William Lallemand5f232402012-04-05 18:02:55 +02002103 0, tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01002104 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01002105 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01002106 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01002107 last_isspace = 0;
2108 break;
2109
William Lallemand1d705562012-03-12 12:46:41 +01002110 case LOG_FMT_RETRIES: // %rq
Willy Tarreaue7dff022015-04-03 01:14:29 +02002111 if (s->flags & SF_REDISP)
William Lallemand1d705562012-03-12 12:46:41 +01002112 LOGCHAR('+');
Willy Tarreau350f4872014-11-28 14:42:25 +01002113 ret = ltoa_o((s->si[1].conn_retries>0) ?
2114 (be->conn_retries - s->si[1].conn_retries) :
William Lallemand5f232402012-04-05 18:02:55 +02002115 be->conn_retries, tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01002116 if (ret == NULL)
William Lallemand51b5dca2012-03-26 17:52:55 +02002117 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01002118 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01002119 last_isspace = 0;
2120 break;
2121
William Lallemand1d705562012-03-12 12:46:41 +01002122 case LOG_FMT_SRVQUEUE: // %sq
William Lallemand5f232402012-04-05 18:02:55 +02002123 ret = ltoa_o(s->logs.srv_queue_size, tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01002124 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01002125 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01002126 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01002127 last_isspace = 0;
2128 break;
2129
William Lallemand1d705562012-03-12 12:46:41 +01002130 case LOG_FMT_BCKQUEUE: // %bq
William Lallemand5f232402012-04-05 18:02:55 +02002131 ret = ltoa_o(s->logs.prx_queue_size, tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01002132 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01002133 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01002134 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01002135 last_isspace = 0;
2136 break;
2137
William Lallemand1d705562012-03-12 12:46:41 +01002138 case LOG_FMT_HDRREQUEST: // %hr
William Lallemandbddd4fd2012-02-27 11:23:10 +01002139 /* request header */
Willy Tarreaucb7dd012015-04-03 22:16:32 +02002140 if (fe->nb_req_cap && s->req_cap) {
William Lallemandbddd4fd2012-02-27 11:23:10 +01002141 if (tmp->options & LOG_OPT_QUOTE)
2142 LOGCHAR('"');
2143 LOGCHAR('{');
2144 for (hdr = 0; hdr < fe->nb_req_cap; hdr++) {
2145 if (hdr)
2146 LOGCHAR('|');
Willy Tarreaucb7dd012015-04-03 22:16:32 +02002147 if (s->req_cap[hdr] != NULL) {
Dragan Dosen835b9212016-02-12 13:23:03 +01002148 ret = lf_encode_string(tmplog, dst + maxsize,
2149 '#', hdr_encode_map, s->req_cap[hdr], tmp);
William Lallemand1d705562012-03-12 12:46:41 +01002150 if (ret == NULL || *ret != '\0')
William Lallemand51b5dca2012-03-26 17:52:55 +02002151 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01002152 tmplog = ret;
William Lallemand51b5dca2012-03-26 17:52:55 +02002153 }
William Lallemandbddd4fd2012-02-27 11:23:10 +01002154 }
2155 LOGCHAR('}');
William Lallemand51b5dca2012-03-26 17:52:55 +02002156 if (tmp->options & LOG_OPT_QUOTE)
2157 LOGCHAR('"');
William Lallemandbddd4fd2012-02-27 11:23:10 +01002158 last_isspace = 0;
2159 }
William Lallemandbddd4fd2012-02-27 11:23:10 +01002160 break;
2161
William Lallemand1d705562012-03-12 12:46:41 +01002162 case LOG_FMT_HDRREQUESTLIST: // %hrl
William Lallemandbddd4fd2012-02-27 11:23:10 +01002163 /* request header list */
Willy Tarreaucb7dd012015-04-03 22:16:32 +02002164 if (fe->nb_req_cap && s->req_cap) {
William Lallemandbddd4fd2012-02-27 11:23:10 +01002165 for (hdr = 0; hdr < fe->nb_req_cap; hdr++) {
2166 if (hdr > 0)
2167 LOGCHAR(' ');
2168 if (tmp->options & LOG_OPT_QUOTE)
2169 LOGCHAR('"');
Willy Tarreaucb7dd012015-04-03 22:16:32 +02002170 if (s->req_cap[hdr] != NULL) {
Dragan Dosen835b9212016-02-12 13:23:03 +01002171 ret = lf_encode_string(tmplog, dst + maxsize,
2172 '#', hdr_encode_map, s->req_cap[hdr], tmp);
William Lallemand1d705562012-03-12 12:46:41 +01002173 if (ret == NULL || *ret != '\0')
William Lallemand51b5dca2012-03-26 17:52:55 +02002174 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01002175 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01002176 } else if (!(tmp->options & LOG_OPT_QUOTE))
2177 LOGCHAR('-');
2178 if (tmp->options & LOG_OPT_QUOTE)
2179 LOGCHAR('"');
William Lallemandbddd4fd2012-02-27 11:23:10 +01002180 last_isspace = 0;
2181 }
2182 }
2183 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002184
William Lallemand1d705562012-03-12 12:46:41 +01002185
2186 case LOG_FMT_HDRRESPONS: // %hs
William Lallemandbddd4fd2012-02-27 11:23:10 +01002187 /* response header */
Willy Tarreaucb7dd012015-04-03 22:16:32 +02002188 if (fe->nb_rsp_cap && s->res_cap) {
William Lallemandbddd4fd2012-02-27 11:23:10 +01002189 if (tmp->options & LOG_OPT_QUOTE)
2190 LOGCHAR('"');
2191 LOGCHAR('{');
2192 for (hdr = 0; hdr < fe->nb_rsp_cap; hdr++) {
2193 if (hdr)
2194 LOGCHAR('|');
Willy Tarreaucb7dd012015-04-03 22:16:32 +02002195 if (s->res_cap[hdr] != NULL) {
Dragan Dosen835b9212016-02-12 13:23:03 +01002196 ret = lf_encode_string(tmplog, dst + maxsize,
2197 '#', hdr_encode_map, s->res_cap[hdr], tmp);
William Lallemand1d705562012-03-12 12:46:41 +01002198 if (ret == NULL || *ret != '\0')
William Lallemand51b5dca2012-03-26 17:52:55 +02002199 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01002200 tmplog = ret;
William Lallemand51b5dca2012-03-26 17:52:55 +02002201 }
William Lallemandbddd4fd2012-02-27 11:23:10 +01002202 }
2203 LOGCHAR('}');
2204 last_isspace = 0;
2205 if (tmp->options & LOG_OPT_QUOTE)
2206 LOGCHAR('"');
2207 }
William Lallemandbddd4fd2012-02-27 11:23:10 +01002208 break;
2209
William Lallemand1d705562012-03-12 12:46:41 +01002210 case LOG_FMT_HDRRESPONSLIST: // %hsl
William Lallemandbddd4fd2012-02-27 11:23:10 +01002211 /* response header list */
Willy Tarreaucb7dd012015-04-03 22:16:32 +02002212 if (fe->nb_rsp_cap && s->res_cap) {
William Lallemandbddd4fd2012-02-27 11:23:10 +01002213 for (hdr = 0; hdr < fe->nb_rsp_cap; hdr++) {
2214 if (hdr > 0)
2215 LOGCHAR(' ');
2216 if (tmp->options & LOG_OPT_QUOTE)
2217 LOGCHAR('"');
Willy Tarreaucb7dd012015-04-03 22:16:32 +02002218 if (s->res_cap[hdr] != NULL) {
Dragan Dosen835b9212016-02-12 13:23:03 +01002219 ret = lf_encode_string(tmplog, dst + maxsize,
2220 '#', hdr_encode_map, s->res_cap[hdr], tmp);
William Lallemand1d705562012-03-12 12:46:41 +01002221 if (ret == NULL || *ret != '\0')
William Lallemand51b5dca2012-03-26 17:52:55 +02002222 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01002223 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01002224 } else if (!(tmp->options & LOG_OPT_QUOTE))
2225 LOGCHAR('-');
2226 if (tmp->options & LOG_OPT_QUOTE)
2227 LOGCHAR('"');
William Lallemandbddd4fd2012-02-27 11:23:10 +01002228 last_isspace = 0;
2229 }
2230 }
2231 break;
2232
William Lallemand1d705562012-03-12 12:46:41 +01002233 case LOG_FMT_REQ: // %r
William Lallemandbddd4fd2012-02-27 11:23:10 +01002234 /* Request */
2235 if (tmp->options & LOG_OPT_QUOTE)
2236 LOGCHAR('"');
Willy Tarreau57bc8912016-04-25 17:09:40 +02002237 uri = txn && txn->uri ? txn->uri : "<BADREQ>";
Dragan Dosen835b9212016-02-12 13:23:03 +01002238 ret = lf_encode_string(tmplog, dst + maxsize,
2239 '#', url_encode_map, uri, tmp);
William Lallemand1d705562012-03-12 12:46:41 +01002240 if (ret == NULL || *ret != '\0')
William Lallemand51b5dca2012-03-26 17:52:55 +02002241 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01002242 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01002243 if (tmp->options & LOG_OPT_QUOTE)
2244 LOGCHAR('"');
William Lallemandbddd4fd2012-02-27 11:23:10 +01002245 last_isspace = 0;
2246 break;
William Lallemand5f232402012-04-05 18:02:55 +02002247
Andrew Hayworth0ebc55f2015-04-27 21:37:03 +00002248 case LOG_FMT_HTTP_PATH: // %HP
Willy Tarreau57bc8912016-04-25 17:09:40 +02002249 uri = txn && txn->uri ? txn->uri : "<BADREQ>";
Andrew Hayworth0ebc55f2015-04-27 21:37:03 +00002250
Willy Tarreaub7636d12015-06-17 19:58:02 +02002251 if (tmp->options & LOG_OPT_QUOTE)
Andrew Hayworth0ebc55f2015-04-27 21:37:03 +00002252 LOGCHAR('"');
2253
2254 end = uri + strlen(uri);
2255 // look for the first whitespace character
2256 while (uri < end && !HTTP_IS_SPHT(*uri))
2257 uri++;
2258
2259 // keep advancing past multiple spaces
2260 while (uri < end && HTTP_IS_SPHT(*uri)) {
2261 uri++; nspaces++;
2262 }
2263
2264 // look for first space or question mark after url
2265 spc = uri;
2266 while (spc < end && *spc != '?' && !HTTP_IS_SPHT(*spc))
2267 spc++;
2268
Nenad Merdanovic54e439f2016-04-26 01:39:02 +02002269 if (!txn || !txn->uri || nspaces == 0) {
Andrew Hayworth0ebc55f2015-04-27 21:37:03 +00002270 chunk.str = "<BADREQ>";
2271 chunk.len = strlen("<BADREQ>");
2272 } else {
2273 chunk.str = uri;
2274 chunk.len = spc - uri;
2275 }
2276
Dragan Dosen835b9212016-02-12 13:23:03 +01002277 ret = lf_encode_chunk(tmplog, dst + maxsize, '#', url_encode_map, &chunk, tmp);
Andrew Hayworth0ebc55f2015-04-27 21:37:03 +00002278 if (ret == NULL || *ret != '\0')
2279 goto out;
2280
2281 tmplog = ret;
Willy Tarreaub7636d12015-06-17 19:58:02 +02002282 if (tmp->options & LOG_OPT_QUOTE)
Andrew Hayworth0ebc55f2015-04-27 21:37:03 +00002283 LOGCHAR('"');
2284
2285 last_isspace = 0;
2286 break;
2287
Andrew Hayworthe63ac872015-07-31 16:14:16 +00002288 case LOG_FMT_HTTP_QUERY: // %HQ
2289 if (tmp->options & LOG_OPT_QUOTE)
2290 LOGCHAR('"');
2291
Willy Tarreau57bc8912016-04-25 17:09:40 +02002292 if (!txn || !txn->uri) {
Andrew Hayworthe63ac872015-07-31 16:14:16 +00002293 chunk.str = "<BADREQ>";
2294 chunk.len = strlen("<BADREQ>");
2295 } else {
2296 uri = txn->uri;
2297 end = uri + strlen(uri);
2298 // look for the first question mark
2299 while (uri < end && *uri != '?')
2300 uri++;
2301
2302 qmark = uri;
2303 // look for first space or question mark after url
2304 while (uri < end && !HTTP_IS_SPHT(*uri))
2305 uri++;
2306
2307 chunk.str = qmark;
2308 chunk.len = uri - qmark;
2309 }
2310
Dragan Dosen835b9212016-02-12 13:23:03 +01002311 ret = lf_encode_chunk(tmplog, dst + maxsize, '#', url_encode_map, &chunk, tmp);
Andrew Hayworthe63ac872015-07-31 16:14:16 +00002312 if (ret == NULL || *ret != '\0')
2313 goto out;
2314
2315 tmplog = ret;
2316 if (tmp->options & LOG_OPT_QUOTE)
2317 LOGCHAR('"');
2318
2319 last_isspace = 0;
2320 break;
2321
Andrew Hayworth0ebc55f2015-04-27 21:37:03 +00002322 case LOG_FMT_HTTP_URI: // %HU
Willy Tarreau57bc8912016-04-25 17:09:40 +02002323 uri = txn && txn->uri ? txn->uri : "<BADREQ>";
Andrew Hayworth0ebc55f2015-04-27 21:37:03 +00002324
Willy Tarreaub7636d12015-06-17 19:58:02 +02002325 if (tmp->options & LOG_OPT_QUOTE)
Andrew Hayworth0ebc55f2015-04-27 21:37:03 +00002326 LOGCHAR('"');
2327
2328 end = uri + strlen(uri);
2329 // look for the first whitespace character
2330 while (uri < end && !HTTP_IS_SPHT(*uri))
2331 uri++;
2332
2333 // keep advancing past multiple spaces
2334 while (uri < end && HTTP_IS_SPHT(*uri)) {
2335 uri++; nspaces++;
2336 }
2337
2338 // look for first space after url
2339 spc = uri;
2340 while (spc < end && !HTTP_IS_SPHT(*spc))
2341 spc++;
2342
Willy Tarreau57bc8912016-04-25 17:09:40 +02002343 if (!txn || !txn->uri || nspaces == 0) {
Andrew Hayworth0ebc55f2015-04-27 21:37:03 +00002344 chunk.str = "<BADREQ>";
2345 chunk.len = strlen("<BADREQ>");
2346 } else {
2347 chunk.str = uri;
2348 chunk.len = spc - uri;
2349 }
2350
Dragan Dosen835b9212016-02-12 13:23:03 +01002351 ret = lf_encode_chunk(tmplog, dst + maxsize, '#', url_encode_map, &chunk, tmp);
Andrew Hayworth0ebc55f2015-04-27 21:37:03 +00002352 if (ret == NULL || *ret != '\0')
2353 goto out;
2354
2355 tmplog = ret;
Willy Tarreaub7636d12015-06-17 19:58:02 +02002356 if (tmp->options & LOG_OPT_QUOTE)
Andrew Hayworth0ebc55f2015-04-27 21:37:03 +00002357 LOGCHAR('"');
2358
2359 last_isspace = 0;
2360 break;
2361
2362 case LOG_FMT_HTTP_METHOD: // %HM
Willy Tarreau57bc8912016-04-25 17:09:40 +02002363 uri = txn && txn->uri ? txn->uri : "<BADREQ>";
Willy Tarreaub7636d12015-06-17 19:58:02 +02002364 if (tmp->options & LOG_OPT_QUOTE)
Andrew Hayworth0ebc55f2015-04-27 21:37:03 +00002365 LOGCHAR('"');
2366
2367 end = uri + strlen(uri);
2368 // look for the first whitespace character
2369 spc = uri;
2370 while (spc < end && !HTTP_IS_SPHT(*spc))
2371 spc++;
2372
2373 if (spc == end) { // odd case, we have txn->uri, but we only got a verb
2374 chunk.str = "<BADREQ>";
2375 chunk.len = strlen("<BADREQ>");
2376 } else {
2377 chunk.str = uri;
2378 chunk.len = spc - uri;
2379 }
2380
Dragan Dosen835b9212016-02-12 13:23:03 +01002381 ret = lf_encode_chunk(tmplog, dst + maxsize, '#', url_encode_map, &chunk, tmp);
Andrew Hayworth0ebc55f2015-04-27 21:37:03 +00002382 if (ret == NULL || *ret != '\0')
2383 goto out;
2384
2385 tmplog = ret;
Willy Tarreaub7636d12015-06-17 19:58:02 +02002386 if (tmp->options & LOG_OPT_QUOTE)
Andrew Hayworth0ebc55f2015-04-27 21:37:03 +00002387 LOGCHAR('"');
2388
2389 last_isspace = 0;
2390 break;
2391
2392 case LOG_FMT_HTTP_VERSION: // %HV
Willy Tarreau57bc8912016-04-25 17:09:40 +02002393 uri = txn && txn->uri ? txn->uri : "<BADREQ>";
Willy Tarreaub7636d12015-06-17 19:58:02 +02002394 if (tmp->options & LOG_OPT_QUOTE)
Andrew Hayworth0ebc55f2015-04-27 21:37:03 +00002395 LOGCHAR('"');
2396
2397 end = uri + strlen(uri);
2398 // look for the first whitespace character
2399 while (uri < end && !HTTP_IS_SPHT(*uri))
2400 uri++;
2401
2402 // keep advancing past multiple spaces
2403 while (uri < end && HTTP_IS_SPHT(*uri)) {
2404 uri++; nspaces++;
2405 }
2406
2407 // look for the next whitespace character
2408 while (uri < end && !HTTP_IS_SPHT(*uri))
2409 uri++;
2410
2411 // keep advancing past multiple spaces
2412 while (uri < end && HTTP_IS_SPHT(*uri))
2413 uri++;
2414
Willy Tarreau57bc8912016-04-25 17:09:40 +02002415 if (!txn || !txn->uri || nspaces == 0) {
Andrew Hayworth0ebc55f2015-04-27 21:37:03 +00002416 chunk.str = "<BADREQ>";
2417 chunk.len = strlen("<BADREQ>");
2418 } else if (uri == end) {
2419 chunk.str = "HTTP/0.9";
2420 chunk.len = strlen("HTTP/0.9");
2421 } else {
2422 chunk.str = uri;
2423 chunk.len = end - uri;
2424 }
2425
Dragan Dosen835b9212016-02-12 13:23:03 +01002426 ret = lf_encode_chunk(tmplog, dst + maxsize, '#', url_encode_map, &chunk, tmp);
Andrew Hayworth0ebc55f2015-04-27 21:37:03 +00002427 if (ret == NULL || *ret != '\0')
2428 goto out;
2429
2430 tmplog = ret;
Willy Tarreaub7636d12015-06-17 19:58:02 +02002431 if (tmp->options & LOG_OPT_QUOTE)
Andrew Hayworth0ebc55f2015-04-27 21:37:03 +00002432 LOGCHAR('"');
2433
2434 last_isspace = 0;
2435 break;
2436
William Lallemand5f232402012-04-05 18:02:55 +02002437 case LOG_FMT_COUNTER: // %rt
2438 if (tmp->options & LOG_OPT_HEXA) {
Willy Tarreau1f0da242014-01-25 11:01:50 +01002439 iret = snprintf(tmplog, dst + maxsize - tmplog, "%04X", s->uniq_id);
William Lallemand5f232402012-04-05 18:02:55 +02002440 if (iret < 0 || iret > dst + maxsize - tmplog)
2441 goto out;
2442 last_isspace = 0;
2443 tmplog += iret;
2444 } else {
Willy Tarreau1f0da242014-01-25 11:01:50 +01002445 ret = ltoa_o(s->uniq_id, tmplog, dst + maxsize - tmplog);
William Lallemand5f232402012-04-05 18:02:55 +02002446 if (ret == NULL)
2447 goto out;
2448 tmplog = ret;
2449 last_isspace = 0;
2450 }
2451 break;
2452
Willy Tarreau7346acb2014-08-28 15:03:15 +02002453 case LOG_FMT_LOGCNT: // %lc
2454 if (tmp->options & LOG_OPT_HEXA) {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002455 iret = snprintf(tmplog, dst + maxsize - tmplog, "%04X", fe->log_count);
Willy Tarreau7346acb2014-08-28 15:03:15 +02002456 if (iret < 0 || iret > dst + maxsize - tmplog)
2457 goto out;
2458 last_isspace = 0;
2459 tmplog += iret;
2460 } else {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002461 ret = ultoa_o(fe->log_count, tmplog, dst + maxsize - tmplog);
Willy Tarreau7346acb2014-08-28 15:03:15 +02002462 if (ret == NULL)
2463 goto out;
2464 tmplog = ret;
2465 last_isspace = 0;
2466 }
2467 break;
2468
William Lallemand5f232402012-04-05 18:02:55 +02002469 case LOG_FMT_HOSTNAME: // %H
2470 src = hostname;
2471 ret = lf_text(tmplog, src, dst + maxsize - tmplog, tmp);
2472 if (ret == NULL)
2473 goto out;
2474 tmplog = ret;
2475 last_isspace = 0;
2476 break;
2477
2478 case LOG_FMT_PID: // %pid
2479 if (tmp->options & LOG_OPT_HEXA) {
2480 iret = snprintf(tmplog, dst + maxsize - tmplog, "%04X", pid);
2481 if (iret < 0 || iret > dst + maxsize - tmplog)
2482 goto out;
2483 last_isspace = 0;
2484 tmplog += iret;
2485 } else {
2486 ret = ltoa_o(pid, tmplog, dst + maxsize - tmplog);
2487 if (ret == NULL)
2488 goto out;
2489 tmplog = ret;
2490 last_isspace = 0;
2491 }
2492 break;
William Lallemanda73203e2012-03-12 12:48:57 +01002493
2494 case LOG_FMT_UNIQUEID: // %ID
William Lallemand5b7ea3a2013-08-28 15:44:19 +02002495 ret = NULL;
William Lallemanda73203e2012-03-12 12:48:57 +01002496 src = s->unique_id;
Thierry FOURNIER1be69102014-04-15 01:38:48 +02002497 ret = lf_text(tmplog, src, maxsize - (tmplog - dst), tmp);
William Lallemanda73203e2012-03-12 12:48:57 +01002498 if (ret == NULL)
2499 goto out;
2500 tmplog = ret;
2501 last_isspace = 0;
2502 break;
2503
William Lallemandbddd4fd2012-02-27 11:23:10 +01002504 }
2505 }
2506
2507out:
William Lallemand1d705562012-03-12 12:46:41 +01002508 /* *tmplog is a unused character */
2509 *tmplog = '\0';
Willy Tarreaudf974472012-12-28 02:44:01 +01002510 return tmplog - dst;
William Lallemandbddd4fd2012-02-27 11:23:10 +01002511
Willy Tarreaubaaee002006-06-26 02:48:02 +02002512}
2513
William Lallemand1d705562012-03-12 12:46:41 +01002514/*
Willy Tarreau87b09662015-04-03 00:22:06 +02002515 * send a log for the stream when we have enough info about it.
William Lallemand1d705562012-03-12 12:46:41 +01002516 * Will not log if the frontend has no log defined.
2517 */
Willy Tarreau87b09662015-04-03 00:22:06 +02002518void strm_log(struct stream *s)
William Lallemand1d705562012-03-12 12:46:41 +01002519{
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002520 struct session *sess = s->sess;
William Lallemand1d705562012-03-12 12:46:41 +01002521 int size, err, level;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002522 int sd_size = 0;
William Lallemand1d705562012-03-12 12:46:41 +01002523
2524 /* if we don't want to log normal traffic, return now */
Willy Tarreaue7dff022015-04-03 01:14:29 +02002525 err = (s->flags & SF_REDISP) ||
2526 ((s->flags & SF_ERR_MASK) > SF_ERR_LOCAL) ||
2527 (((s->flags & SF_ERR_MASK) == SF_ERR_NONE) &&
Willy Tarreau350f4872014-11-28 14:42:25 +01002528 (s->si[1].conn_retries != s->be->conn_retries)) ||
Willy Tarreaueee5b512015-04-03 23:46:31 +02002529 ((sess->fe->mode == PR_MODE_HTTP) && s->txn && s->txn->status >= 500);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002530
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002531 if (!err && (sess->fe->options2 & PR_O2_NOLOGNORM))
William Lallemand1d705562012-03-12 12:46:41 +01002532 return;
William Lallemandbddd4fd2012-02-27 11:23:10 +01002533
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002534 if (LIST_ISEMPTY(&sess->fe->logsrvs))
William Lallemand1d705562012-03-12 12:46:41 +01002535 return;
William Lallemandbddd4fd2012-02-27 11:23:10 +01002536
Willy Tarreauabcd5142013-06-11 17:18:02 +02002537 if (s->logs.level) { /* loglevel was overridden */
2538 if (s->logs.level == -1) {
2539 s->logs.logwait = 0; /* logs disabled */
2540 return;
2541 }
2542 level = s->logs.level - 1;
2543 }
2544 else {
2545 level = LOG_INFO;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002546 if (err && (sess->fe->options2 & PR_O2_LOGERRORS))
Willy Tarreauabcd5142013-06-11 17:18:02 +02002547 level = LOG_ERR;
2548 }
William Lallemand1d705562012-03-12 12:46:41 +01002549
William Lallemand5b7ea3a2013-08-28 15:44:19 +02002550 /* if unique-id was not generated */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002551 if (!s->unique_id && !LIST_ISEMPTY(&sess->fe->format_unique_id)) {
Willy Tarreaubafbe012017-11-24 17:34:44 +01002552 if ((s->unique_id = pool_alloc(pool_head_uniqueid)) != NULL)
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002553 build_logline(s, s->unique_id, UNIQUEID_LEN, &sess->fe->format_unique_id);
William Lallemand5b7ea3a2013-08-28 15:44:19 +02002554 }
2555
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002556 if (!LIST_ISEMPTY(&sess->fe->logformat_sd)) {
2557 sd_size = build_logline(s, logline_rfc5424, global.max_syslog_len,
2558 &sess->fe->logformat_sd);
2559 }
2560
Dragan Dosen59cee972015-09-19 22:09:02 +02002561 size = build_logline(s, logline, global.max_syslog_len, &sess->fe->logformat);
William Lallemand1d705562012-03-12 12:46:41 +01002562 if (size > 0) {
Christopher Fauletff8abcd2017-06-02 15:33:24 +02002563 HA_ATOMIC_ADD(&sess->fe->log_count, 1);
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002564 __send_log(sess->fe, level, logline, size + 1, logline_rfc5424, sd_size);
William Lallemand1d705562012-03-12 12:46:41 +01002565 s->logs.logwait = 0;
2566 }
2567}
William Lallemandbddd4fd2012-02-27 11:23:10 +01002568
Christopher Fauletc1b730a2017-10-24 12:00:51 +02002569static int cli_io_handler_show_startup_logs(struct appctx *appctx)
2570{
2571 struct stream_interface *si = appctx->owner;
2572 const char *msg = (startup_logs ? startup_logs : "No startup alerts/warnings.\n");
2573
2574 if (ci_putstr(si_ic(si), msg) == -1) {
2575 si_applet_cant_put(si);
2576 return 0;
2577 }
2578 return 1;
2579}
2580
2581/* register cli keywords */
2582static struct cli_kw_list cli_kws = {{ },{
2583 { { "show", "startup-logs", NULL },
2584 "show startup-logs : report logs emitted during HAProxy startup",
2585 NULL, cli_io_handler_show_startup_logs },
2586 {{},}
2587}};
2588
2589__attribute__((constructor))
2590static void __log_init(void)
2591{
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002592 hap_register_per_thread_init(init_log_buffers_per_thread);
2593 hap_register_per_thread_deinit(deinit_log_buffers_per_thread);
Christopher Fauletc1b730a2017-10-24 12:00:51 +02002594 cli_register_kw(&cli_kws);
2595}
Willy Tarreaubaaee002006-06-26 02:48:02 +02002596/*
2597 * Local variables:
2598 * c-indent-level: 8
2599 * c-basic-offset: 8
2600 * End:
2601 */