blob: 392256f6004f2b88f9a645ec94734f8bea8343a4 [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>
25
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020026#include <common/config.h>
Willy Tarreaud6d06902009-08-19 11:22:33 +020027#include <common/compat.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020028#include <common/standard.h>
Willy Tarreaufb278672006-10-15 15:38:50 +020029#include <common/time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020030
Willy Tarreaubaaee002006-06-26 02:48:02 +020031#include <types/global.h>
William Lallemand723b73a2012-02-08 16:37:49 +010032#include <types/log.h>
Willy Tarreauec6c5df2008-07-15 00:22:45 +020033
William Lallemand5f232402012-04-05 18:02:55 +020034#include <proto/frontend.h>
Willy Tarreauec6c5df2008-07-15 00:22:45 +020035#include <proto/log.h>
Willy Tarreauc8368452012-12-21 00:09:23 +010036#include <proto/sample.h>
Willy Tarreau827aee92011-03-10 16:55:02 +010037#include <proto/stream_interface.h>
Willy Tarreau773d65f2012-10-12 14:56:11 +020038#ifdef USE_OPENSSL
39#include <proto/ssl_sock.h>
40#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +020041
Willy Tarreaubaaee002006-06-26 02:48:02 +020042const char *log_facilities[NB_LOG_FACILITIES] = {
43 "kern", "user", "mail", "daemon",
44 "auth", "syslog", "lpr", "news",
45 "uucp", "cron", "auth2", "ftp",
46 "ntp", "audit", "alert", "cron2",
47 "local0", "local1", "local2", "local3",
48 "local4", "local5", "local6", "local7"
49};
50
51
52const char *log_levels[NB_LOG_LEVELS] = {
53 "emerg", "alert", "crit", "err",
54 "warning", "notice", "info", "debug"
55};
56
Willy Tarreau570f2212013-06-10 16:42:09 +020057const 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 +020058const char sess_fin_state[8] = "-RCHDLQT"; /* cliRequest, srvConnect, srvHeader, Data, Last, Queue, Tarpit */
Willy Tarreaubaaee002006-06-26 02:48:02 +020059
William Lallemand723b73a2012-02-08 16:37:49 +010060
61/* log_format */
62struct logformat_type {
63 char *name;
64 int type;
William Lallemandbddd4fd2012-02-27 11:23:10 +010065 int mode;
William Lallemand5e19a282012-04-02 16:22:10 +020066 int lw; /* logwait bitsfield */
William Lallemandb7ff6a32012-03-02 14:35:21 +010067 int (*config_callback)(struct logformat_node *node, struct proxy *curproxy);
Willy Tarreau2beef582012-12-20 17:22:52 +010068 const char *replace_by; /* new option to use instead of old one */
William Lallemand723b73a2012-02-08 16:37:49 +010069};
70
William Lallemandb7ff6a32012-03-02 14:35:21 +010071int prepare_addrsource(struct logformat_node *node, struct proxy *curproxy);
72
William Lallemand723b73a2012-02-08 16:37:49 +010073/* log_format variable names */
74static const struct logformat_type logformat_keywords[] = {
William Lallemand5e19a282012-04-02 16:22:10 +020075 { "o", LOG_FMT_GLOBAL, PR_MODE_TCP, 0, NULL }, /* global option */
Willy Tarreau2beef582012-12-20 17:22:52 +010076
77 /* please keep these lines sorted ! */
78 { "B", LOG_FMT_BYTES, PR_MODE_TCP, LW_BYTES, NULL }, /* bytes from server to client */
79 { "CC", LOG_FMT_CCLIENT, PR_MODE_HTTP, LW_REQHDR, NULL }, /* client cookie */
80 { "CS", LOG_FMT_CSERVER, PR_MODE_HTTP, LW_RSPHDR, NULL }, /* server cookie */
81 { "H", LOG_FMT_HOSTNAME, PR_MODE_TCP, LW_INIT, NULL }, /* Hostname */
82 { "ID", LOG_FMT_UNIQUEID, PR_MODE_HTTP, LW_BYTES, NULL }, /* Unique ID */
Willy Tarreau4bf99632014-06-13 12:21:40 +020083 { "ST", LOG_FMT_STATUS, PR_MODE_TCP, LW_RESP, NULL }, /* status code */
William Lallemand5e19a282012-04-02 16:22:10 +020084 { "T", LOG_FMT_DATEGMT, PR_MODE_TCP, LW_INIT, NULL }, /* date GMT */
Willy Tarreau2beef582012-12-20 17:22:52 +010085 { "Tc", LOG_FMT_TC, PR_MODE_TCP, LW_BYTES, NULL }, /* Tc */
Yuxans Yao4e25b012012-10-19 10:36:09 +080086 { "Tl", LOG_FMT_DATELOCAL, PR_MODE_TCP, LW_INIT, NULL }, /* date local timezone */
William Lallemand5e19a282012-04-02 16:22:10 +020087 { "Tq", LOG_FMT_TQ, PR_MODE_HTTP, LW_BYTES, NULL }, /* Tq */
William Lallemand5e19a282012-04-02 16:22:10 +020088 { "Tr", LOG_FMT_TR, PR_MODE_HTTP, LW_BYTES, NULL }, /* Tr */
Willy Tarreau2beef582012-12-20 17:22:52 +010089 { "Ts", LOG_FMT_TS, PR_MODE_TCP, LW_INIT, NULL }, /* timestamp GMT */
William Lallemand5e19a282012-04-02 16:22:10 +020090 { "Tt", LOG_FMT_TT, PR_MODE_TCP, LW_BYTES, NULL }, /* Tt */
Willy Tarreau2beef582012-12-20 17:22:52 +010091 { "Tw", LOG_FMT_TW, PR_MODE_TCP, LW_BYTES, NULL }, /* Tw */
92 { "U", LOG_FMT_BYTES_UP, PR_MODE_TCP, LW_BYTES, NULL }, /* bytes from client to server */
William Lallemand5e19a282012-04-02 16:22:10 +020093 { "ac", LOG_FMT_ACTCONN, PR_MODE_TCP, LW_BYTES, NULL }, /* actconn */
Willy Tarreau2beef582012-12-20 17:22:52 +010094 { "b", LOG_FMT_BACKEND, PR_MODE_TCP, LW_INIT, NULL }, /* backend */
William Lallemand5e19a282012-04-02 16:22:10 +020095 { "bc", LOG_FMT_BECONN, PR_MODE_TCP, LW_BYTES, NULL }, /* beconn */
Willy Tarreau2beef582012-12-20 17:22:52 +010096 { "bi", LOG_FMT_BACKENDIP, PR_MODE_TCP, LW_BCKIP, prepare_addrsource }, /* backend source ip */
97 { "bp", LOG_FMT_BACKENDPORT, PR_MODE_TCP, LW_BCKIP, prepare_addrsource }, /* backend source port */
William Lallemand5e19a282012-04-02 16:22:10 +020098 { "bq", LOG_FMT_BCKQUEUE, PR_MODE_TCP, LW_BYTES, NULL }, /* backend_queue */
Willy Tarreau2beef582012-12-20 17:22:52 +010099 { "ci", LOG_FMT_CLIENTIP, PR_MODE_TCP, LW_CLIP, NULL }, /* client ip */
100 { "cp", LOG_FMT_CLIENTPORT, PR_MODE_TCP, LW_CLIP, NULL }, /* client port */
101 { "f", LOG_FMT_FRONTEND, PR_MODE_TCP, LW_INIT, NULL }, /* frontend */
102 { "fc", LOG_FMT_FECONN, PR_MODE_TCP, LW_BYTES, NULL }, /* feconn */
103 { "fi", LOG_FMT_FRONTENDIP, PR_MODE_TCP, LW_FRTIP, NULL }, /* frontend ip */
104 { "fp", LOG_FMT_FRONTENDPORT, PR_MODE_TCP, LW_FRTIP, NULL }, /* frontend port */
105 { "ft", LOG_FMT_FRONTEND_XPRT, PR_MODE_TCP, LW_INIT, NULL }, /* frontend with transport mode */
William Lallemand5e19a282012-04-02 16:22:10 +0200106 { "hr", LOG_FMT_HDRREQUEST, PR_MODE_HTTP, LW_REQHDR, NULL }, /* header request */
William Lallemand5e19a282012-04-02 16:22:10 +0200107 { "hrl", LOG_FMT_HDRREQUESTLIST, PR_MODE_HTTP, LW_REQHDR, NULL }, /* header request list */
Willy Tarreau2beef582012-12-20 17:22:52 +0100108 { "hs", LOG_FMT_HDRRESPONS, PR_MODE_HTTP, LW_RSPHDR, NULL }, /* header response */
William Lallemand5e19a282012-04-02 16:22:10 +0200109 { "hsl", LOG_FMT_HDRRESPONSLIST, PR_MODE_HTTP, LW_RSPHDR, NULL }, /* header response list */
Willy Tarreau2beef582012-12-20 17:22:52 +0100110 { "ms", LOG_FMT_MS, PR_MODE_TCP, LW_INIT, NULL }, /* accept date millisecond */
William Lallemand5e19a282012-04-02 16:22:10 +0200111 { "pid", LOG_FMT_PID, PR_MODE_TCP, LW_INIT, NULL }, /* log pid */
Willy Tarreau2beef582012-12-20 17:22:52 +0100112 { "r", LOG_FMT_REQ, PR_MODE_HTTP, LW_REQ, NULL }, /* request */
113 { "rc", LOG_FMT_RETRIES, PR_MODE_TCP, LW_BYTES, NULL }, /* retries */
Willy Tarreau1f0da242014-01-25 11:01:50 +0100114 { "rt", LOG_FMT_COUNTER, PR_MODE_TCP, LW_REQ, NULL }, /* request counter (HTTP or TCP session) */
Willy Tarreau2beef582012-12-20 17:22:52 +0100115 { "s", LOG_FMT_SERVER, PR_MODE_TCP, LW_SVID, NULL }, /* server */
116 { "sc", LOG_FMT_SRVCONN, PR_MODE_TCP, LW_BYTES, NULL }, /* srv_conn */
117 { "si", LOG_FMT_SERVERIP, PR_MODE_TCP, LW_SVIP, NULL }, /* server destination ip */
118 { "sp", LOG_FMT_SERVERPORT, PR_MODE_TCP, LW_SVIP, NULL }, /* server destination port */
119 { "sq", LOG_FMT_SRVQUEUE, PR_MODE_TCP, LW_BYTES, NULL }, /* srv_queue */
Willy Tarreauffc3fcd2012-10-12 20:17:54 +0200120 { "sslc", LOG_FMT_SSL_CIPHER, PR_MODE_TCP, LW_XPRT, NULL }, /* client-side SSL ciphers */
121 { "sslv", LOG_FMT_SSL_VERSION, PR_MODE_TCP, LW_XPRT, NULL }, /* client-side SSL protocol version */
Willy Tarreau2beef582012-12-20 17:22:52 +0100122 { "t", LOG_FMT_DATE, PR_MODE_TCP, LW_INIT, NULL }, /* date */
123 { "ts", LOG_FMT_TERMSTATE, PR_MODE_TCP, LW_BYTES, NULL },/* termination state */
124 { "tsc", LOG_FMT_TERMSTATE_CK, PR_MODE_TCP, LW_INIT, NULL },/* termination state */
125
126 /* The following tags are deprecated and will be removed soon */
127 { "Bi", LOG_FMT_BACKENDIP, PR_MODE_TCP, LW_BCKIP, prepare_addrsource, "bi" }, /* backend source ip */
128 { "Bp", LOG_FMT_BACKENDPORT, PR_MODE_TCP, LW_BCKIP, prepare_addrsource, "bp" }, /* backend source port */
129 { "Ci", LOG_FMT_CLIENTIP, PR_MODE_TCP, LW_CLIP, NULL, "ci" }, /* client ip */
130 { "Cp", LOG_FMT_CLIENTPORT, PR_MODE_TCP, LW_CLIP, NULL, "cp" }, /* client port */
131 { "Fi", LOG_FMT_FRONTENDIP, PR_MODE_TCP, LW_FRTIP, NULL, "fi" }, /* frontend ip */
132 { "Fp", LOG_FMT_FRONTENDPORT, PR_MODE_TCP, LW_FRTIP, NULL, "fp" }, /* frontend port */
133 { "Si", LOG_FMT_SERVERIP, PR_MODE_TCP, LW_SVIP, NULL, "si" }, /* server destination ip */
134 { "Sp", LOG_FMT_SERVERPORT, PR_MODE_TCP, LW_SVIP, NULL, "sp" }, /* server destination port */
135 { "cc", LOG_FMT_CCLIENT, PR_MODE_HTTP, LW_REQHDR, NULL, "CC" }, /* client cookie */
136 { "cs", LOG_FMT_CSERVER, PR_MODE_HTTP, LW_RSPHDR, NULL, "CS" }, /* server cookie */
137 { "st", LOG_FMT_STATUS, PR_MODE_HTTP, LW_RESP, NULL, "ST" }, /* status code */
William Lallemand5e19a282012-04-02 16:22:10 +0200138 { 0, 0, 0, 0, NULL }
William Lallemand723b73a2012-02-08 16:37:49 +0100139};
140
Willy Tarreau2beef582012-12-20 17:22:52 +0100141char default_http_log_format[] = "%ci:%cp [%t] %ft %b/%s %Tq/%Tw/%Tc/%Tr/%Tt %ST %B %CC %CS %tsc %ac/%fc/%bc/%sc/%rc %sq/%bq %hr %hs %{+Q}r"; // default format
142char clf_http_log_format[] = "%{+Q}o %{-Q}ci - - [%T] %r %ST %B \"\" \"\" %cp %ms %ft %b %s %Tq %Tw %Tc %Tr %Tt %tsc %ac %fc %bc %sc %rc %sq %bq %CC %CS %hrl %hsl";
143char 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 +0100144char *log_format = NULL;
145
Willy Tarreaub1a2faf2012-03-19 16:51:53 +0100146/* This is a global syslog line, common to all outgoing messages. It begins
147 * with the syslog tag and the date that are updated by update_log_hdr().
148 */
149static char logline[MAX_SYSLOG_LEN];
150
William Lallemand723b73a2012-02-08 16:37:49 +0100151struct logformat_var_args {
152 char *name;
153 int mask;
154};
155
156struct logformat_var_args var_args_list[] = {
157// global
158 { "M", LOG_OPT_MANDATORY },
159 { "Q", LOG_OPT_QUOTE },
William Lallemand5f232402012-04-05 18:02:55 +0200160 { "X", LOG_OPT_HEXA },
William Lallemand723b73a2012-02-08 16:37:49 +0100161 { 0, 0 }
162};
163
Willy Tarreaub1f3af22013-04-12 18:30:32 +0200164/* return the name of the directive used in the current proxy for which we're
165 * currently parsing a header, when it is known.
166 */
167static inline const char *fmt_directive(const struct proxy *curproxy)
168{
Willy Tarreaubf0addb2013-12-02 12:24:54 +0100169 switch (curproxy->conf.args.ctx) {
170 case ARGC_UIF:
Willy Tarreaub1f3af22013-04-12 18:30:32 +0200171 return "unique-id-format";
Willy Tarreaubf0addb2013-12-02 12:24:54 +0100172 case ARGC_HRQ:
Thierry FOURNIER1c0054f2013-11-20 15:09:52 +0100173 return "http-request";
Willy Tarreaubf0addb2013-12-02 12:24:54 +0100174 case ARGC_HRS:
Thierry FOURNIER1c0054f2013-11-20 15:09:52 +0100175 return "http-response";
Willy Tarreaubf0addb2013-12-02 12:24:54 +0100176 case ARGC_STK:
177 return "stick";
178 case ARGC_TRK:
179 return "track-sc"; break;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +0100180 case ARGC_RDR:
181 return "redirect"; break;
Willy Tarreaubf0addb2013-12-02 12:24:54 +0100182 case ARGC_ACL:
183 return "acl"; break;
184 default:
Willy Tarreaub1f3af22013-04-12 18:30:32 +0200185 return "log-format";
Willy Tarreaubf0addb2013-12-02 12:24:54 +0100186 }
Willy Tarreaub1f3af22013-04-12 18:30:32 +0200187}
188
William Lallemand723b73a2012-02-08 16:37:49 +0100189/*
William Lallemandb7ff6a32012-03-02 14:35:21 +0100190 * callback used to configure addr source retrieval
191 */
192int prepare_addrsource(struct logformat_node *node, struct proxy *curproxy)
193{
194 curproxy->options2 |= PR_O2_SRC_ADDR;
195
196 return 0;
197}
198
199
200/*
William Lallemand723b73a2012-02-08 16:37:49 +0100201 * Parse args in a logformat_var
202 */
203int parse_logformat_var_args(char *args, struct logformat_node *node)
204{
205 int i = 0;
206 int end = 0;
207 int flags = 0; // 1 = + 2 = -
208 char *sp = NULL; // start pointer
209
210 if (args == NULL)
211 return 1;
212
213 while (1) {
214 if (*args == '\0')
215 end = 1;
216
217 if (*args == '+') {
218 // add flag
219 sp = args + 1;
220 flags = 1;
221 }
222 if (*args == '-') {
223 // delete flag
224 sp = args + 1;
225 flags = 2;
226 }
227
228 if (*args == '\0' || *args == ',') {
229 *args = '\0';
Willy Tarreau254d44c2012-12-20 18:19:26 +0100230 for (i = 0; sp && var_args_list[i].name; i++) {
William Lallemand723b73a2012-02-08 16:37:49 +0100231 if (strcmp(sp, var_args_list[i].name) == 0) {
232 if (flags == 1) {
233 node->options |= var_args_list[i].mask;
234 break;
235 } else if (flags == 2) {
236 node->options &= ~var_args_list[i].mask;
237 break;
238 }
239 }
240 }
241 sp = NULL;
242 if (end)
243 break;
244 }
Willy Tarreau254d44c2012-12-20 18:19:26 +0100245 args++;
William Lallemand723b73a2012-02-08 16:37:49 +0100246 }
247 return 0;
248}
249
250/*
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100251 * Parse a variable '%varname' or '%{args}varname' in log-format. The caller
252 * must pass the args part in the <arg> pointer with its length in <arg_len>,
253 * and varname with its length in <var> and <var_len> respectively. <arg> is
254 * ignored when arg_len is 0. Neither <var> nor <var_len> may be null.
William Lallemand723b73a2012-02-08 16:37:49 +0100255 */
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100256int parse_logformat_var(char *arg, int arg_len, char *var, int var_len, struct proxy *curproxy, struct list *list_format, int *defoptions)
William Lallemand723b73a2012-02-08 16:37:49 +0100257{
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100258 int j;
259 struct logformat_node *node;
William Lallemand723b73a2012-02-08 16:37:49 +0100260
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100261 for (j = 0; logformat_keywords[j].name; j++) { // search a log type
262 if (strlen(logformat_keywords[j].name) == var_len &&
263 strncmp(var, logformat_keywords[j].name, var_len) == 0) {
264 if (logformat_keywords[j].mode != PR_MODE_HTTP || curproxy->mode == PR_MODE_HTTP) {
265 node = calloc(1, sizeof(struct logformat_node));
266 node->type = logformat_keywords[j].type;
267 node->options = *defoptions;
268 if (arg_len) {
269 node->arg = my_strndup(arg, arg_len);
270 parse_logformat_var_args(node->arg, node);
271 }
272 if (node->type == LOG_FMT_GLOBAL) {
273 *defoptions = node->options;
274 free(node->arg);
275 free(node);
276 } else {
277 if (logformat_keywords[j].config_callback &&
278 logformat_keywords[j].config_callback(node, curproxy) != 0) {
William Lallemandbddd4fd2012-02-27 11:23:10 +0100279 return -1;
William Lallemand723b73a2012-02-08 16:37:49 +0100280 }
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100281 curproxy->to_log |= logformat_keywords[j].lw;
282 LIST_ADDQ(list_format, &node->list);
William Lallemand723b73a2012-02-08 16:37:49 +0100283 }
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100284 if (logformat_keywords[j].replace_by)
Willy Tarreau06d97f92013-12-02 17:45:48 +0100285 Warning("parsing [%s:%d] : deprecated variable '%s' in '%s', please replace it with '%s'.\n",
Willy Tarreaub1f3af22013-04-12 18:30:32 +0200286 curproxy->conf.args.file, curproxy->conf.args.line,
287 logformat_keywords[j].name, fmt_directive(curproxy), logformat_keywords[j].replace_by);
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100288 return 0;
289 } else {
Willy Tarreau06d97f92013-12-02 17:45:48 +0100290 Warning("parsing [%s:%d] : '%s' : format variable '%s' is reserved for HTTP mode.\n",
Willy Tarreaub1f3af22013-04-12 18:30:32 +0200291 curproxy->conf.args.file, curproxy->conf.args.line, fmt_directive(curproxy),
292 logformat_keywords[j].name);
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100293 return -1;
William Lallemand723b73a2012-02-08 16:37:49 +0100294 }
William Lallemand723b73a2012-02-08 16:37:49 +0100295 }
296 }
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100297
298 j = var[var_len];
299 var[var_len] = 0;
Willy Tarreau06d97f92013-12-02 17:45:48 +0100300 Warning("parsing [%s:%d] : no such format variable '%s' in '%s'. If you wanted to emit the '%%' character verbatim, you need to use '%%%%' in log-format expressions.\n",
Willy Tarreaub1f3af22013-04-12 18:30:32 +0200301 curproxy->conf.args.file, curproxy->conf.args.line, var, fmt_directive(curproxy));
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100302 var[var_len] = j;
William Lallemand723b73a2012-02-08 16:37:49 +0100303 return -1;
304}
305
306/*
307 * push to the logformat linked list
308 *
309 * start: start pointer
310 * end: end text pointer
311 * type: string type
William Lallemand1d705562012-03-12 12:46:41 +0100312 * list_format: destination list
William Lallemand723b73a2012-02-08 16:37:49 +0100313 *
314 * LOG_TEXT: copy chars from start to end excluding end.
315 *
316*/
William Lallemand1d705562012-03-12 12:46:41 +0100317void add_to_logformat_list(char *start, char *end, int type, struct list *list_format)
William Lallemand723b73a2012-02-08 16:37:49 +0100318{
319 char *str;
320
Willy Tarreaua3571662012-12-20 21:59:12 +0100321 if (type == LF_TEXT) { /* type text */
William Lallemand723b73a2012-02-08 16:37:49 +0100322 struct logformat_node *node = calloc(1, sizeof(struct logformat_node));
William Lallemand723b73a2012-02-08 16:37:49 +0100323 str = calloc(end - start + 1, 1);
324 strncpy(str, start, end - start);
William Lallemand723b73a2012-02-08 16:37:49 +0100325 str[end - start] = '\0';
326 node->arg = str;
William Lallemand1d705562012-03-12 12:46:41 +0100327 node->type = LOG_FMT_TEXT; // type string
328 LIST_ADDQ(list_format, &node->list);
Willy Tarreaua3571662012-12-20 21:59:12 +0100329 } else if (type == LF_SEPARATOR) {
William Lallemand723b73a2012-02-08 16:37:49 +0100330 struct logformat_node *node = calloc(1, sizeof(struct logformat_node));
William Lallemand1d705562012-03-12 12:46:41 +0100331 node->type = LOG_FMT_SEPARATOR;
332 LIST_ADDQ(list_format, &node->list);
William Lallemand723b73a2012-02-08 16:37:49 +0100333 }
334}
335
336/*
Willy Tarreauc8368452012-12-21 00:09:23 +0100337 * Parse the sample fetch expression <text> and add a node to <list_format> upon
338 * success. At the moment, sample converters are not yet supported but fetch arguments
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200339 * should work. The curpx->conf.args.ctx must be set by the caller.
Willy Tarreauc8368452012-12-21 00:09:23 +0100340 */
Thierry FOURNIEReeaa9512014-02-11 14:00:19 +0100341void add_sample_to_logformat_list(char *text, char *arg, int arg_len, struct proxy *curpx, struct list *list_format, int options, int cap, const char *file, int line)
Willy Tarreauc8368452012-12-21 00:09:23 +0100342{
343 char *cmd[2];
344 struct sample_expr *expr;
345 struct logformat_node *node;
346 int cmd_arg;
Willy Tarreau975c1782013-12-12 23:16:54 +0100347 char *errmsg = NULL;
Willy Tarreauc8368452012-12-21 00:09:23 +0100348
349 cmd[0] = text;
350 cmd[1] = "";
351 cmd_arg = 0;
352
Thierry FOURNIEReeaa9512014-02-11 14:00:19 +0100353 expr = sample_parse_expr(cmd, &cmd_arg, file, line, &errmsg, &curpx->conf.args);
Willy Tarreauc8368452012-12-21 00:09:23 +0100354 if (!expr) {
Willy Tarreaub1f3af22013-04-12 18:30:32 +0200355 Warning("parsing [%s:%d] : '%s' : sample fetch <%s> failed with : %s\n",
356 curpx->conf.args.file, curpx->conf.args.line, fmt_directive(curpx),
Willy Tarreau975c1782013-12-12 23:16:54 +0100357 text, errmsg);
Willy Tarreauc8368452012-12-21 00:09:23 +0100358 return;
359 }
360
361 node = calloc(1, sizeof(struct logformat_node));
362 node->type = LOG_FMT_EXPR;
363 node->expr = expr;
364 node->options = options;
365
366 if (arg_len) {
367 node->arg = my_strndup(arg, arg_len);
368 parse_logformat_var_args(node->arg, node);
369 }
Willy Tarreau434c57c2013-01-08 01:10:24 +0100370 if (expr->fetch->val & cap & SMP_VAL_REQUEST)
Willy Tarreauc8368452012-12-21 00:09:23 +0100371 node->options |= LOG_OPT_REQ_CAP; /* fetch method is request-compatible */
372
Willy Tarreau434c57c2013-01-08 01:10:24 +0100373 if (expr->fetch->val & cap & SMP_VAL_RESPONSE)
Willy Tarreauc8368452012-12-21 00:09:23 +0100374 node->options |= LOG_OPT_RES_CAP; /* fetch method is response-compatible */
375
Willy Tarreau434c57c2013-01-08 01:10:24 +0100376 if (!(expr->fetch->val & cap))
Willy Tarreaub1f3af22013-04-12 18:30:32 +0200377 Warning("parsing [%s:%d] : '%s' : sample fetch <%s> may not be reliably used here because it needs '%s' which is not available here.\n",
378 curpx->conf.args.file, curpx->conf.args.line, fmt_directive(curpx),
379 text, sample_src_names(expr->fetch->use));
Willy Tarreau434c57c2013-01-08 01:10:24 +0100380
Willy Tarreauc8368452012-12-21 00:09:23 +0100381 /* check if we need to allocate an hdr_idx struct for HTTP parsing */
382 /* Note, we may also need to set curpx->to_log with certain fetches */
Willy Tarreau25320b22013-03-24 07:22:08 +0100383 curpx->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
Willy Tarreauc8368452012-12-21 00:09:23 +0100384
William Lallemand65ad6e12014-01-31 15:08:02 +0100385 /* FIXME: temporary workaround for missing LW_XPRT and LW_REQ flags
386 * needed with some sample fetches (eg: ssl*). We always set it for
387 * now on, but this will leave with sample capabilities soon.
Willy Tarreau1f31c732013-01-10 16:22:27 +0100388 */
389 curpx->to_log |= LW_XPRT;
William Lallemand65ad6e12014-01-31 15:08:02 +0100390 curpx->to_log |= LW_REQ;
Willy Tarreauc8368452012-12-21 00:09:23 +0100391 LIST_ADDQ(list_format, &node->list);
392}
393
394/*
William Lallemand723b73a2012-02-08 16:37:49 +0100395 * Parse the log_format string and fill a linked list.
396 * Variable name are preceded by % and composed by characters [a-zA-Z0-9]* : %varname
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200397 * You can set arguments using { } : %{many arguments}varname.
398 * The curproxy->conf.args.ctx must be set by the caller.
William Lallemand1d705562012-03-12 12:46:41 +0100399 *
400 * str: the string to parse
401 * curproxy: the proxy affected
402 * list_format: the destination list
Willy Tarreau6cbbdbf2013-02-05 18:52:25 +0100403 * options: LOG_OPT_* to force on every node
Willy Tarreau434c57c2013-01-08 01:10:24 +0100404 * cap: all SMP_VAL_* flags supported by the consumer
William Lallemand723b73a2012-02-08 16:37:49 +0100405 */
Thierry FOURNIEReeaa9512014-02-11 14:00:19 +0100406void parse_logformat_string(const char *fmt, struct proxy *curproxy, struct list *list_format, int options, int cap, const char *file, int line)
William Lallemand723b73a2012-02-08 16:37:49 +0100407{
Willy Tarreaub83bc1e2012-12-24 12:36:33 +0100408 char *sp, *str, *backfmt; /* start pointer for text parts */
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100409 char *arg = NULL; /* start pointer for args */
410 char *var = NULL; /* start pointer for vars */
411 int arg_len = 0;
412 int var_len = 0;
413 int cformat; /* current token format */
414 int pformat; /* previous token format */
William Lallemand723b73a2012-02-08 16:37:49 +0100415 struct logformat_node *tmplf, *back;
416
Willy Tarreaub83bc1e2012-12-24 12:36:33 +0100417 sp = str = backfmt = strdup(fmt);
William Lallemand1dc00ef2012-08-09 16:41:35 +0200418 curproxy->to_log |= LW_INIT;
William Lallemand5e19a282012-04-02 16:22:10 +0200419
William Lallemand723b73a2012-02-08 16:37:49 +0100420 /* flush the list first. */
William Lallemand1d705562012-03-12 12:46:41 +0100421 list_for_each_entry_safe(tmplf, back, list_format, list) {
William Lallemand723b73a2012-02-08 16:37:49 +0100422 LIST_DEL(&tmplf->list);
423 free(tmplf);
424 }
425
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100426 for (cformat = LF_INIT; cformat != LF_END; str++) {
William Lallemand723b73a2012-02-08 16:37:49 +0100427 pformat = cformat;
428
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100429 if (!*str)
430 cformat = LF_END; // preset it to save all states from doing this
William Lallemand723b73a2012-02-08 16:37:49 +0100431
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100432 /* The prinicple of the two-step state machine below is to first detect a change, and
433 * second have all common paths processed at one place. The common paths are the ones
434 * encountered in text areas (LF_INIT, LF_TEXT, LF_SEPARATOR) and at the end (LF_END).
435 * We use the common LF_INIT state to dispatch to the different final states.
436 */
437 switch (pformat) {
438 case LF_STARTVAR: // text immediately following a '%'
Willy Tarreauc8368452012-12-21 00:09:23 +0100439 arg = NULL; var = NULL;
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100440 arg_len = var_len = 0;
441 if (*str == '{') { // optional argument
442 cformat = LF_STARG;
443 arg = str + 1;
William Lallemand723b73a2012-02-08 16:37:49 +0100444 }
Willy Tarreauc8368452012-12-21 00:09:23 +0100445 else if (*str == '[') {
446 cformat = LF_STEXPR;
447 var = str + 1; // store expr in variable name
448 }
Willy Tarreau0f28f822013-12-16 01:38:33 +0100449 else if (isalpha((unsigned char)*str)) { // variable name
William Lallemand723b73a2012-02-08 16:37:49 +0100450 cformat = LF_VAR;
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100451 var = str;
William Lallemand723b73a2012-02-08 16:37:49 +0100452 }
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100453 else if (*str == '%')
454 cformat = LF_TEXT; // convert this character to a litteral (useful for '%')
Willy Tarreau0f28f822013-12-16 01:38:33 +0100455 else if (isdigit((unsigned char)*str) || *str == ' ' || *str == '\t') {
Willy Tarreau06d97f92013-12-02 17:45:48 +0100456 /* single '%' followed by blank or digit, send them both */
457 cformat = LF_TEXT;
458 pformat = LF_TEXT; /* finally we include the previous char as well */
459 sp = str - 1; /* send both the '%' and the current char */
460 Warning("parsing [%s:%d] : Fixed missing '%%' before '%c' at position %d in %s line : '%s'. Please use '%%%%' when you need the '%%' character in a log-format expression.\n",
461 curproxy->conf.args.file, curproxy->conf.args.line, *str, (int)(str - backfmt), fmt_directive(curproxy), fmt);
462
463 }
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100464 else
465 cformat = LF_INIT; // handle other cases of litterals
466 break;
467
468 case LF_STARG: // text immediately following '%{'
469 if (*str == '}') { // end of arg
William Lallemand723b73a2012-02-08 16:37:49 +0100470 cformat = LF_EDARG;
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100471 arg_len = str - arg;
472 *str = 0; // used for reporting errors
William Lallemand723b73a2012-02-08 16:37:49 +0100473 }
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100474 break;
475
476 case LF_EDARG: // text immediately following '%{arg}'
Willy Tarreauc8368452012-12-21 00:09:23 +0100477 if (*str == '[') {
478 cformat = LF_STEXPR;
479 var = str + 1; // store expr in variable name
480 break;
481 }
Willy Tarreau0f28f822013-12-16 01:38:33 +0100482 else if (isalnum((unsigned char)*str)) { // variable name
William Lallemand723b73a2012-02-08 16:37:49 +0100483 cformat = LF_VAR;
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100484 var = str;
485 break;
486 }
Willy Tarreaub1f3af22013-04-12 18:30:32 +0200487 Warning("parsing [%s:%d] : Skipping isolated argument in '%s' line : '%%{%s}'\n",
488 curproxy->conf.args.file, curproxy->conf.args.line, fmt_directive(curproxy), arg);
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100489 cformat = LF_INIT;
490 break;
491
Willy Tarreauc8368452012-12-21 00:09:23 +0100492 case LF_STEXPR: // text immediately following '%['
493 if (*str == ']') { // end of arg
494 cformat = LF_EDEXPR;
495 var_len = str - var;
496 *str = 0; // needed for parsing the expression
497 }
498 break;
499
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100500 case LF_VAR: // text part of a variable name
501 var_len = str - var;
Willy Tarreau0f28f822013-12-16 01:38:33 +0100502 if (!isalnum((unsigned char)*str))
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100503 cformat = LF_INIT; // not variable name anymore
504 break;
505
Willy Tarreauc8368452012-12-21 00:09:23 +0100506 default: // LF_INIT, LF_TEXT, LF_SEPARATOR, LF_END, LF_EDEXPR
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100507 cformat = LF_INIT;
508 }
509
510 if (cformat == LF_INIT) { /* resynchronize state to text/sep/startvar */
511 switch (*str) {
512 case '%': cformat = LF_STARTVAR; break;
513 case ' ': cformat = LF_SEPARATOR; break;
514 case 0 : cformat = LF_END; break;
515 default : cformat = LF_TEXT; break;
William Lallemand723b73a2012-02-08 16:37:49 +0100516 }
517 }
518
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100519 if (cformat != pformat || pformat == LF_SEPARATOR) {
520 switch (pformat) {
521 case LF_VAR:
522 parse_logformat_var(arg, arg_len, var, var_len, curproxy, list_format, &options);
523 break;
Willy Tarreauc8368452012-12-21 00:09:23 +0100524 case LF_STEXPR:
Thierry FOURNIEReeaa9512014-02-11 14:00:19 +0100525 add_sample_to_logformat_list(var, arg, arg_len, curproxy, list_format, options, cap, file, line);
Willy Tarreauc8368452012-12-21 00:09:23 +0100526 break;
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100527 case LF_TEXT:
528 case LF_SEPARATOR:
529 add_to_logformat_list(sp, str, pformat, list_format);
530 break;
531 }
532 sp = str; /* new start of text at every state switch and at every separator */
William Lallemand723b73a2012-02-08 16:37:49 +0100533 }
534 }
Willy Tarreau8a3f52f2012-12-20 21:23:42 +0100535
Willy Tarreauc8368452012-12-21 00:09:23 +0100536 if (pformat == LF_STARTVAR || pformat == LF_STARG || pformat == LF_STEXPR)
Willy Tarreaub1f3af22013-04-12 18:30:32 +0200537 Warning("parsing [%s:%d] : Ignoring end of truncated '%s' line after '%s'\n",
538 curproxy->conf.args.file, curproxy->conf.args.line, fmt_directive(curproxy),
539 var ? var : arg ? arg : "%");
Willy Tarreau3ed22a42012-12-23 17:29:07 +0100540
Willy Tarreaub83bc1e2012-12-24 12:36:33 +0100541 free(backfmt);
William Lallemand723b73a2012-02-08 16:37:49 +0100542}
543
Willy Tarreaubaaee002006-06-26 02:48:02 +0200544/*
545 * Displays the message on stderr with the date and pid. Overrides the quiet
546 * mode during startup.
547 */
Willy Tarreaub17916e2006-10-15 15:17:57 +0200548void Alert(const char *fmt, ...)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200549{
550 va_list argp;
Willy Tarreaufe944602007-10-25 10:34:16 +0200551 struct tm tm;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200552
553 if (!(global.mode & MODE_QUIET) || (global.mode & (MODE_VERBOSE | MODE_STARTING))) {
554 va_start(argp, fmt);
555
Willy Tarreaub7f694f2008-06-22 17:18:02 +0200556 get_localtime(date.tv_sec, &tm);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200557 fprintf(stderr, "[ALERT] %03d/%02d%02d%02d (%d) : ",
Willy Tarreaufe944602007-10-25 10:34:16 +0200558 tm.tm_yday, tm.tm_hour, tm.tm_min, tm.tm_sec, (int)getpid());
Willy Tarreaubaaee002006-06-26 02:48:02 +0200559 vfprintf(stderr, fmt, argp);
560 fflush(stderr);
561 va_end(argp);
562 }
563}
564
565
566/*
567 * Displays the message on stderr with the date and pid.
568 */
Willy Tarreaub17916e2006-10-15 15:17:57 +0200569void Warning(const char *fmt, ...)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200570{
571 va_list argp;
Willy Tarreaufe944602007-10-25 10:34:16 +0200572 struct tm tm;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200573
574 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) {
575 va_start(argp, fmt);
576
Willy Tarreaub7f694f2008-06-22 17:18:02 +0200577 get_localtime(date.tv_sec, &tm);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200578 fprintf(stderr, "[WARNING] %03d/%02d%02d%02d (%d) : ",
Willy Tarreaufe944602007-10-25 10:34:16 +0200579 tm.tm_yday, tm.tm_hour, tm.tm_min, tm.tm_sec, (int)getpid());
Willy Tarreaubaaee002006-06-26 02:48:02 +0200580 vfprintf(stderr, fmt, argp);
581 fflush(stderr);
582 va_end(argp);
583 }
584}
585
586/*
587 * Displays the message on <out> only if quiet mode is not set.
588 */
Willy Tarreaub17916e2006-10-15 15:17:57 +0200589void qfprintf(FILE *out, const char *fmt, ...)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200590{
591 va_list argp;
592
593 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) {
594 va_start(argp, fmt);
595 vfprintf(out, fmt, argp);
596 fflush(out);
597 va_end(argp);
598 }
599}
600
601/*
602 * returns log level for <lev> or -1 if not found.
603 */
604int get_log_level(const char *lev)
605{
606 int level;
607
608 level = NB_LOG_LEVELS - 1;
609 while (level >= 0 && strcmp(log_levels[level], lev))
610 level--;
611
612 return level;
613}
614
615
616/*
617 * returns log facility for <fac> or -1 if not found.
618 */
619int get_log_facility(const char *fac)
620{
621 int facility;
622
623 facility = NB_LOG_FACILITIES - 1;
624 while (facility >= 0 && strcmp(log_facilities[facility], fac))
625 facility--;
William Lallemand2a4a44f2012-02-06 16:00:33 +0100626
Willy Tarreaubaaee002006-06-26 02:48:02 +0200627 return facility;
628}
629
William Lallemanda1cc3812012-02-08 16:38:44 +0100630/*
631 * Write a string in the log string
William Lallemand5f232402012-04-05 18:02:55 +0200632 * Take cares of quote options
William Lallemanda1cc3812012-02-08 16:38:44 +0100633 *
634 * Return the adress of the \0 character, or NULL on error
635 */
Willy Tarreau2b0108a2012-12-21 19:23:44 +0100636char *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 +0100637{
Willy Tarreau2b0108a2012-12-21 19:23:44 +0100638 if (size < 2)
639 return NULL;
William Lallemanda1cc3812012-02-08 16:38:44 +0100640
Willy Tarreau2b0108a2012-12-21 19:23:44 +0100641 if (node->options & LOG_OPT_QUOTE) {
642 *(dst++) = '"';
643 size--;
William Lallemandbddd4fd2012-02-27 11:23:10 +0100644 }
Willy Tarreau2b0108a2012-12-21 19:23:44 +0100645
Willy Tarreau6cbbdbf2013-02-05 18:52:25 +0100646 if (src && len) {
Willy Tarreau2b0108a2012-12-21 19:23:44 +0100647 if (++len > size)
648 len = size;
649 len = strlcpy2(dst, src, len);
650
651 size -= len;
652 dst += len;
653 }
Willy Tarreau6cbbdbf2013-02-05 18:52:25 +0100654 else if ((node->options & (LOG_OPT_QUOTE|LOG_OPT_MANDATORY)) == LOG_OPT_MANDATORY) {
655 if (size < 2)
656 return NULL;
657 *(dst++) = '-';
658 }
Willy Tarreau2b0108a2012-12-21 19:23:44 +0100659
660 if (node->options & LOG_OPT_QUOTE) {
661 if (size < 2)
662 return NULL;
663 *(dst++) = '"';
664 }
665
666 *dst = '\0';
William Lallemandbddd4fd2012-02-27 11:23:10 +0100667 return dst;
William Lallemanda1cc3812012-02-08 16:38:44 +0100668}
669
Willy Tarreau2b0108a2012-12-21 19:23:44 +0100670static inline char *lf_text(char *dst, const char *src, size_t size, struct logformat_node *node)
671{
672 return lf_text_len(dst, src, size, size, node);
673}
674
William Lallemand5f232402012-04-05 18:02:55 +0200675/*
676 * Write a IP adress to the log string
677 * +X option write in hexadecimal notation, most signifant byte on the left
678 */
679char *lf_ip(char *dst, struct sockaddr *sockaddr, size_t size, struct logformat_node *node)
680{
681 char *ret = dst;
682 int iret;
683 char pn[INET6_ADDRSTRLEN];
684
685 if (node->options & LOG_OPT_HEXA) {
686 const unsigned char *addr = (const unsigned char *)&((struct sockaddr_in *)sockaddr)->sin_addr.s_addr;
687 iret = snprintf(dst, size, "%02X%02X%02X%02X", addr[0], addr[1], addr[2], addr[3]);
688 if (iret < 0 || iret > size)
689 return NULL;
690 ret += iret;
691 } else {
692 addr_to_str((struct sockaddr_storage *)sockaddr, pn, sizeof(pn));
693 ret = lf_text(dst, pn, size, node);
694 if (ret == NULL)
695 return NULL;
696 }
697 return ret;
698}
699
700/*
701 * Write a port to the log
702 * +X option write in hexadecimal notation, most signifant byte on the left
703 */
704char *lf_port(char *dst, struct sockaddr *sockaddr, size_t size, struct logformat_node *node)
705{
706 char *ret = dst;
707 int iret;
708
709 if (node->options & LOG_OPT_HEXA) {
710 const unsigned char *port = (const unsigned char *)&((struct sockaddr_in *)sockaddr)->sin_port;
711 iret = snprintf(dst, size, "%02X%02X", port[0], port[1]);
712 if (iret < 0 || iret > size)
713 return NULL;
714 ret += iret;
715 } else {
716 ret = ltoa_o(get_host_port((struct sockaddr_storage *)sockaddr), dst, size);
717 if (ret == NULL)
718 return NULL;
719 }
720 return ret;
721}
722
Willy Tarreaub1a2faf2012-03-19 16:51:53 +0100723/* Re-generate the syslog header at the beginning of logline once a second and
724 * return the pointer to the first character after the header.
725 */
726static char *update_log_hdr()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200727{
Willy Tarreaub1a2faf2012-03-19 16:51:53 +0100728 static long tvsec;
729 static char *dataptr = NULL; /* backup of last end of header, NULL first time */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200730
Willy Tarreaub7f694f2008-06-22 17:18:02 +0200731 if (unlikely(date.tv_sec != tvsec || dataptr == NULL)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200732 /* this string is rebuild only once a second */
Willy Tarreaufe944602007-10-25 10:34:16 +0200733 struct tm tm;
Willy Tarreaub1a2faf2012-03-19 16:51:53 +0100734 int hdr_len;
Willy Tarreaufe944602007-10-25 10:34:16 +0200735
Willy Tarreaub7f694f2008-06-22 17:18:02 +0200736 tvsec = date.tv_sec;
Willy Tarreaufe944602007-10-25 10:34:16 +0200737 get_localtime(tvsec, &tm);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200738
Willy Tarreaub1a2faf2012-03-19 16:51:53 +0100739 hdr_len = snprintf(logline, MAX_SYSLOG_LEN,
Joe Williamsdf5b38f2010-12-29 17:05:48 +0100740 "<<<<>%s %2d %02d:%02d:%02d %s%s[%d]: ",
Willy Tarreaufe944602007-10-25 10:34:16 +0200741 monthname[tm.tm_mon],
742 tm.tm_mday, tm.tm_hour, tm.tm_min, tm.tm_sec,
Joe Williamsdf5b38f2010-12-29 17:05:48 +0100743 global.log_send_hostname ? global.log_send_hostname : "",
Kevinm48936af2010-12-22 16:08:21 +0000744 global.log_tag, pid);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200745 /* WARNING: depending upon implementations, snprintf may return
746 * either -1 or the number of bytes that would be needed to store
747 * the total message. In both cases, we must adjust it.
748 */
William Lallemand2a4a44f2012-02-06 16:00:33 +0100749 if (hdr_len < 0 || hdr_len > MAX_SYSLOG_LEN)
750 hdr_len = MAX_SYSLOG_LEN;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200751
Willy Tarreaub1a2faf2012-03-19 16:51:53 +0100752 dataptr = logline + hdr_len;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200753 }
754
William Lallemand2a4a44f2012-02-06 16:00:33 +0100755 return dataptr;
756}
757
758/*
759 * This function adds a header to the message and sends the syslog message
Willy Tarreau53bf6af2012-02-24 11:46:54 +0100760 * using a printf format string. It expects an LF-terminated message.
William Lallemand2a4a44f2012-02-06 16:00:33 +0100761 */
762void send_log(struct proxy *p, int level, const char *format, ...)
763{
764 va_list argp;
Willy Tarreaub1a2faf2012-03-19 16:51:53 +0100765 char *dataptr;
766 int data_len;
William Lallemand2a4a44f2012-02-06 16:00:33 +0100767
768 if (level < 0 || format == NULL)
769 return;
770
Willy Tarreaub1a2faf2012-03-19 16:51:53 +0100771 dataptr = update_log_hdr(); /* update log header and skip it */
772 data_len = dataptr - logline;
William Lallemand2a4a44f2012-02-06 16:00:33 +0100773
774 va_start(argp, format);
Willy Tarreaub1a2faf2012-03-19 16:51:53 +0100775 data_len += vsnprintf(dataptr, logline + sizeof(logline) - dataptr, format, argp);
William Lallemand2a4a44f2012-02-06 16:00:33 +0100776 if (data_len < 0 || data_len > MAX_SYSLOG_LEN)
777 data_len = MAX_SYSLOG_LEN;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200778 va_end(argp);
William Lallemand2a4a44f2012-02-06 16:00:33 +0100779
Willy Tarreaub1a2faf2012-03-19 16:51:53 +0100780 __send_log(p, level, logline, data_len);
William Lallemand2a4a44f2012-02-06 16:00:33 +0100781}
782
783/*
784 * This function sends a syslog message.
785 * It doesn't care about errors nor does it report them.
Willy Tarreau53bf6af2012-02-24 11:46:54 +0100786 * It overrides the last byte (message[size-1]) with an LF character.
William Lallemand2a4a44f2012-02-06 16:00:33 +0100787 */
788void __send_log(struct proxy *p, int level, char *message, size_t size)
789{
790 static int logfdunix = -1; /* syslog to AF_UNIX socket */
791 static int logfdinet = -1; /* syslog to AF_INET socket */
792 static char *dataptr = NULL;
793 int fac_level;
794 struct list *logsrvs = NULL;
795 struct logsrv *tmp = NULL;
796 int nblogger;
797 char *log_ptr;
798
799 dataptr = message;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200800
801 if (p == NULL) {
William Lallemand0f99e342011-10-12 17:50:54 +0200802 if (!LIST_ISEMPTY(&global.logsrvs)) {
803 logsrvs = &global.logsrvs;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200804 }
805 } else {
William Lallemand0f99e342011-10-12 17:50:54 +0200806 if (!LIST_ISEMPTY(&p->logsrvs)) {
807 logsrvs = &p->logsrvs;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200808 }
Robert Tsai81ae1952007-12-05 10:47:29 +0100809 }
810
William Lallemand0f99e342011-10-12 17:50:54 +0200811 if (!logsrvs)
812 return;
813
William Lallemand2a4a44f2012-02-06 16:00:33 +0100814 message[size - 1] = '\n';
815
Robert Tsai81ae1952007-12-05 10:47:29 +0100816 /* Lazily set up syslog sockets for protocol families of configured
817 * syslog servers. */
William Lallemand0f99e342011-10-12 17:50:54 +0200818 nblogger = 0;
819 list_for_each_entry(tmp, logsrvs, list) {
820 const struct logsrv *logsrv = tmp;
Robert Tsai81ae1952007-12-05 10:47:29 +0100821 int proto, *plogfd;
William Lallemand0f99e342011-10-12 17:50:54 +0200822
David du Colombier11bcb6c2011-03-24 12:23:00 +0100823 if (logsrv->addr.ss_family == AF_UNIX) {
Robert Tsai81ae1952007-12-05 10:47:29 +0100824 proto = 0;
825 plogfd = &logfdunix;
826 } else {
Robert Tsai81ae1952007-12-05 10:47:29 +0100827 proto = IPPROTO_UDP;
828 plogfd = &logfdinet;
829 }
830 if (*plogfd >= 0) {
831 /* socket already created. */
832 continue;
833 }
David du Colombier11bcb6c2011-03-24 12:23:00 +0100834 if ((*plogfd = socket(logsrv->addr.ss_family, SOCK_DGRAM,
Robert Tsai81ae1952007-12-05 10:47:29 +0100835 proto)) < 0) {
836 Alert("socket for logger #%d failed: %s (errno=%d)\n",
837 nblogger + 1, strerror(errno), errno);
838 return;
839 }
840 /* we don't want to receive anything on this socket */
841 setsockopt(*plogfd, SOL_SOCKET, SO_RCVBUF, &zero, sizeof(zero));
842 /* does nothing under Linux, maybe needed for others */
843 shutdown(*plogfd, SHUT_RD);
William Lallemand0f99e342011-10-12 17:50:54 +0200844 nblogger++;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200845 }
846
Robert Tsai81ae1952007-12-05 10:47:29 +0100847 /* Send log messages to syslog server. */
William Lallemand0f99e342011-10-12 17:50:54 +0200848 nblogger = 0;
849 list_for_each_entry(tmp, logsrvs, list) {
850 const struct logsrv *logsrv = tmp;
David du Colombier11bcb6c2011-03-24 12:23:00 +0100851 int *plogfd = logsrv->addr.ss_family == AF_UNIX ?
Robert Tsai81ae1952007-12-05 10:47:29 +0100852 &logfdunix : &logfdinet;
853 int sent;
854
Willy Tarreaubaaee002006-06-26 02:48:02 +0200855 /* we can filter the level of the messages that are sent to each logger */
William Lallemand0f99e342011-10-12 17:50:54 +0200856 if (level > logsrv->level)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200857 continue;
William Lallemandbddd4fd2012-02-27 11:23:10 +0100858
Willy Tarreaubaaee002006-06-26 02:48:02 +0200859 /* For each target, we may have a different facility.
860 * We can also have a different log level for each message.
861 * This induces variations in the message header length.
862 * Since we don't want to recompute it each time, nor copy it every
863 * time, we only change the facility in the pre-computed header,
864 * and we change the pointer to the header accordingly.
865 */
William Lallemand0f99e342011-10-12 17:50:54 +0200866 fac_level = (logsrv->facility << 3) + MAX(level, logsrv->minlvl);
William Lallemand2a4a44f2012-02-06 16:00:33 +0100867 log_ptr = dataptr + 3; /* last digit of the log level */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200868 do {
869 *log_ptr = '0' + fac_level % 10;
870 fac_level /= 10;
871 log_ptr--;
William Lallemand2a4a44f2012-02-06 16:00:33 +0100872 } while (fac_level && log_ptr > dataptr);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200873 *log_ptr = '<';
William Lallemand2a4a44f2012-02-06 16:00:33 +0100874
William Lallemandafeb9872013-08-30 14:17:46 +0200875 sent = sendto(*plogfd, log_ptr, size - (log_ptr - dataptr),
Willy Tarreau1b4b7ce2011-04-05 16:56:50 +0200876 MSG_DONTWAIT | MSG_NOSIGNAL,
877 (struct sockaddr *)&logsrv->addr, get_addr_len(&logsrv->addr));
Robert Tsai81ae1952007-12-05 10:47:29 +0100878 if (sent < 0) {
879 Alert("sendto logger #%d failed: %s (errno=%d)\n",
880 nblogger, strerror(errno), errno);
881 }
William Lallemand0f99e342011-10-12 17:50:54 +0200882 nblogger++;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200883 }
884}
885
William Lallemandbddd4fd2012-02-27 11:23:10 +0100886extern fd_set hdr_encode_map[];
887extern fd_set url_encode_map[];
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +0100888extern fd_set http_encode_map[];
William Lallemandbddd4fd2012-02-27 11:23:10 +0100889
Willy Tarreaubaaee002006-06-26 02:48:02 +0200890
Willy Tarreauc89ccb62012-04-05 21:18:22 +0200891const 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 +0100892const char sess_set_cookie[8] = "NPDIRU67"; /* No set-cookie, Set-cookie found and left unchanged (passive),
893 Set-cookie Deleted, Set-Cookie Inserted, Set-cookie Rewritten,
894 Set-cookie Updated, unknown, unknown */
895
William Lallemand1d705562012-03-12 12:46:41 +0100896/*
897 * try to write a character if there is enough space, or goto out
898 */
William Lallemandbddd4fd2012-02-27 11:23:10 +0100899#define LOGCHAR(x) do { \
William Lallemand1d705562012-03-12 12:46:41 +0100900 if (tmplog < dst + maxsize - 1) { \
William Lallemandbddd4fd2012-02-27 11:23:10 +0100901 *(tmplog++) = (x); \
902 } else { \
903 goto out; \
904 } \
905 } while(0)
906
William Lallemand1d705562012-03-12 12:46:41 +0100907
Willy Tarreaudf974472012-12-28 02:44:01 +0100908/* Builds a log line in <dst> based on <list_format>, and stops before reaching
909 * <maxsize> characters. Returns the size of the output string in characters,
910 * not counting the trailing zero which is always added if the resulting size
911 * is not zero.
912 */
William Lallemand1d705562012-03-12 12:46:41 +0100913int build_logline(struct session *s, char *dst, size_t maxsize, struct list *list_format)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200914{
Willy Tarreau73de9892006-11-30 11:40:23 +0100915 struct proxy *fe = s->fe;
Willy Tarreauddb358d2006-12-17 22:55:52 +0100916 struct proxy *be = s->be;
William Lallemandbddd4fd2012-02-27 11:23:10 +0100917 struct http_txn *txn = &s->txn;
William Lallemandbddd4fd2012-02-27 11:23:10 +0100918 char *uri;
Willy Tarreaufe944602007-10-25 10:34:16 +0200919 struct tm tm;
William Lallemandbddd4fd2012-02-27 11:23:10 +0100920 int t_request;
921 int hdr;
922 int last_isspace = 1;
Willy Tarreaub1a2faf2012-03-19 16:51:53 +0100923 char *tmplog;
William Lallemand1d705562012-03-12 12:46:41 +0100924 char *ret;
925 int iret;
William Lallemandbddd4fd2012-02-27 11:23:10 +0100926 struct logformat_node *tmp;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200927
William Lallemandbddd4fd2012-02-27 11:23:10 +0100928 /* FIXME: let's limit ourselves to frontend logging for now. */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200929
William Lallemandbddd4fd2012-02-27 11:23:10 +0100930 t_request = -1;
931 if (tv_isge(&s->logs.tv_request, &s->logs.tv_accept))
932 t_request = tv_ms_elapsed(&s->logs.tv_accept, &s->logs.tv_request);
933
William Lallemand1d705562012-03-12 12:46:41 +0100934 tmplog = dst;
Willy Tarreauc9bd0cc2009-05-10 11:57:02 +0200935
William Lallemandbddd4fd2012-02-27 11:23:10 +0100936 /* fill logbuffer */
William Lallemand1d705562012-03-12 12:46:41 +0100937 if (LIST_ISEMPTY(list_format))
938 return 0;
William Lallemandbddd4fd2012-02-27 11:23:10 +0100939
William Lallemand1d705562012-03-12 12:46:41 +0100940 list_for_each_entry(tmp, list_format, list) {
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200941 struct connection *conn;
Willy Tarreau4f653562012-10-12 19:48:16 +0200942 const char *src = NULL;
Willy Tarreauc8368452012-12-21 00:09:23 +0100943 struct sample *key;
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +0100944 const struct chunk empty = { NULL, 0, 0 };
William Lallemandbddd4fd2012-02-27 11:23:10 +0100945
Willy Tarreauc8368452012-12-21 00:09:23 +0100946 switch (tmp->type) {
William Lallemand1d705562012-03-12 12:46:41 +0100947 case LOG_FMT_SEPARATOR:
William Lallemandbddd4fd2012-02-27 11:23:10 +0100948 if (!last_isspace) {
949 LOGCHAR(' ');
950 last_isspace = 1;
William Lallemandbddd4fd2012-02-27 11:23:10 +0100951 }
952 break;
953
William Lallemand1d705562012-03-12 12:46:41 +0100954 case LOG_FMT_TEXT: // text
William Lallemandbddd4fd2012-02-27 11:23:10 +0100955 src = tmp->arg;
William Lallemand5f232402012-04-05 18:02:55 +0200956 iret = strlcpy2(tmplog, src, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +0100957 if (iret == 0)
William Lallemandbddd4fd2012-02-27 11:23:10 +0100958 goto out;
William Lallemand1d705562012-03-12 12:46:41 +0100959 tmplog += iret;
William Lallemandbddd4fd2012-02-27 11:23:10 +0100960 last_isspace = 0;
961 break;
962
Willy Tarreauc8368452012-12-21 00:09:23 +0100963 case LOG_FMT_EXPR: // sample expression, may be request or response
964 key = NULL;
965 if (tmp->options & LOG_OPT_REQ_CAP)
966 key = sample_fetch_string(be, s, txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, tmp->expr);
967 if (!key && (tmp->options & LOG_OPT_RES_CAP))
968 key = sample_fetch_string(be, s, txn, SMP_OPT_DIR_RES|SMP_OPT_FINAL, tmp->expr);
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +0100969 if (tmp->options & LOG_OPT_HTTP)
970 ret = encode_chunk(tmplog, dst + maxsize,
971 '%', http_encode_map, key ? &key->data.str : &empty);
972 else
973 ret = lf_text_len(tmplog, key ? key->data.str.str : NULL, key ? key->data.str.len : 0, dst + maxsize - tmplog, tmp);
Willy Tarreauc8368452012-12-21 00:09:23 +0100974 if (ret == 0)
975 goto out;
976 tmplog = ret;
977 last_isspace = 0;
978 break;
979
Willy Tarreau2beef582012-12-20 17:22:52 +0100980 case LOG_FMT_CLIENTIP: // %ci
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200981 conn = objt_conn(s->req->prod->end);
982 if (conn)
983 ret = lf_ip(tmplog, (struct sockaddr *)&conn->addr.from, dst + maxsize - tmplog, tmp);
984 else
985 ret = lf_text_len(tmplog, NULL, 0, dst + maxsize - tmplog, tmp);
William Lallemand1d705562012-03-12 12:46:41 +0100986 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +0100987 goto out;
William Lallemand1d705562012-03-12 12:46:41 +0100988 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +0100989 last_isspace = 0;
990 break;
991
Willy Tarreau2beef582012-12-20 17:22:52 +0100992 case LOG_FMT_CLIENTPORT: // %cp
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200993 conn = objt_conn(s->req->prod->end);
994 if (conn) {
995 if (conn->addr.from.ss_family == AF_UNIX) {
996 ret = ltoa_o(s->listener->luid, tmplog, dst + maxsize - tmplog);
997 } else {
998 ret = lf_port(tmplog, (struct sockaddr *)&conn->addr.from,
999 dst + maxsize - tmplog, tmp);
1000 }
William Lallemand5f232402012-04-05 18:02:55 +02001001 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001002 else
1003 ret = lf_text_len(tmplog, NULL, 0, dst + maxsize - tmplog, tmp);
1004
William Lallemand5f232402012-04-05 18:02:55 +02001005 if (ret == NULL)
1006 goto out;
1007 tmplog = ret;
1008 last_isspace = 0;
1009 break;
1010
Willy Tarreau2beef582012-12-20 17:22:52 +01001011 case LOG_FMT_FRONTENDIP: // %fi
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001012 conn = objt_conn(s->req->prod->end);
1013 if (conn) {
1014 conn_get_to_addr(conn);
1015 ret = lf_ip(tmplog, (struct sockaddr *)&conn->addr.to, dst + maxsize - tmplog, tmp);
1016 }
1017 else
1018 ret = lf_text_len(tmplog, NULL, 0, dst + maxsize - tmplog, tmp);
1019
William Lallemand1d705562012-03-12 12:46:41 +01001020 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001021 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001022 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001023 last_isspace = 0;
1024 break;
1025
Willy Tarreau2beef582012-12-20 17:22:52 +01001026 case LOG_FMT_FRONTENDPORT: // %fp
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001027 conn = objt_conn(s->req->prod->end);
1028 if (conn) {
1029 conn_get_to_addr(conn);
1030 if (conn->addr.to.ss_family == AF_UNIX)
1031 ret = ltoa_o(s->listener->luid, tmplog, dst + maxsize - tmplog);
1032 else
1033 ret = lf_port(tmplog, (struct sockaddr *)&conn->addr.to, dst + maxsize - tmplog, tmp);
William Lallemand5f232402012-04-05 18:02:55 +02001034 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001035 else
1036 ret = lf_text_len(tmplog, NULL, 0, dst + maxsize - tmplog, tmp);
1037
William Lallemand5f232402012-04-05 18:02:55 +02001038 if (ret == NULL)
1039 goto out;
1040 tmplog = ret;
1041 last_isspace = 0;
1042 break;
1043
Willy Tarreau2beef582012-12-20 17:22:52 +01001044 case LOG_FMT_BACKENDIP: // %bi
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001045 conn = objt_conn(s->req->cons->end);
1046 if (conn)
1047 ret = lf_ip(tmplog, (struct sockaddr *)&conn->addr.from, dst + maxsize - tmplog, tmp);
1048 else
1049 ret = lf_text_len(tmplog, NULL, 0, dst + maxsize - tmplog, tmp);
1050
William Lallemand1d705562012-03-12 12:46:41 +01001051 if (ret == NULL)
William Lallemandb7ff6a32012-03-02 14:35:21 +01001052 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001053 tmplog = ret;
William Lallemandb7ff6a32012-03-02 14:35:21 +01001054 last_isspace = 0;
1055 break;
1056
Willy Tarreau2beef582012-12-20 17:22:52 +01001057 case LOG_FMT_BACKENDPORT: // %bp
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001058 conn = objt_conn(s->req->cons->end);
1059 if (conn)
1060 ret = lf_port(tmplog, (struct sockaddr *)&conn->addr.from, dst + maxsize - tmplog, tmp);
1061 else
1062 ret = lf_text_len(tmplog, NULL, 0, dst + maxsize - tmplog, tmp);
1063
William Lallemand5f232402012-04-05 18:02:55 +02001064 if (ret == NULL)
1065 goto out;
1066 tmplog = ret;
1067 last_isspace = 0;
1068 break;
1069
Willy Tarreau2beef582012-12-20 17:22:52 +01001070 case LOG_FMT_SERVERIP: // %si
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001071 conn = objt_conn(s->req->cons->end);
1072 if (conn)
1073 ret = lf_ip(tmplog, (struct sockaddr *)&conn->addr.to, dst + maxsize - tmplog, tmp);
1074 else
1075 ret = lf_text_len(tmplog, NULL, 0, dst + maxsize - tmplog, tmp);
1076
William Lallemand5f232402012-04-05 18:02:55 +02001077 if (ret == NULL)
1078 goto out;
1079 tmplog = ret;
1080 last_isspace = 0;
1081 break;
1082
Willy Tarreau2beef582012-12-20 17:22:52 +01001083 case LOG_FMT_SERVERPORT: // %sp
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001084 conn = objt_conn(s->req->cons->end);
1085 if (conn)
1086 ret = lf_port(tmplog, (struct sockaddr *)&conn->addr.to, dst + maxsize - tmplog, tmp);
1087 else
1088 ret = lf_text_len(tmplog, NULL, 0, dst + maxsize - tmplog, tmp);
1089
William Lallemand1d705562012-03-12 12:46:41 +01001090 if (ret == NULL)
William Lallemandb7ff6a32012-03-02 14:35:21 +01001091 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001092 tmplog = ret;
William Lallemandb7ff6a32012-03-02 14:35:21 +01001093 last_isspace = 0;
1094 break;
1095
William Lallemand1d705562012-03-12 12:46:41 +01001096 case LOG_FMT_DATE: // %t
William Lallemandbddd4fd2012-02-27 11:23:10 +01001097 get_localtime(s->logs.accept_date.tv_sec, &tm);
William Lallemand5f232402012-04-05 18:02:55 +02001098 ret = date2str_log(tmplog, &tm, &(s->logs.accept_date),
1099 dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001100 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001101 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001102 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001103 last_isspace = 0;
1104 break;
1105
William Lallemand1d705562012-03-12 12:46:41 +01001106 case LOG_FMT_DATEGMT: // %T
William Lallemandbddd4fd2012-02-27 11:23:10 +01001107 get_gmtime(s->logs.accept_date.tv_sec, &tm);
William Lallemand5f232402012-04-05 18:02:55 +02001108 ret = gmt2str_log(tmplog, &tm, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001109 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001110 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001111 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001112 last_isspace = 0;
1113 break;
1114
Yuxans Yao4e25b012012-10-19 10:36:09 +08001115 case LOG_FMT_DATELOCAL: // %Tl
1116 get_localtime(s->logs.accept_date.tv_sec, &tm);
1117 ret = localdate2str_log(tmplog, &tm, dst + maxsize - tmplog);
1118 if (ret == NULL)
1119 goto out;
1120 tmplog = ret;
1121 last_isspace = 0;
1122 break;
1123
William Lallemand5f232402012-04-05 18:02:55 +02001124 case LOG_FMT_TS: // %Ts
1125 get_gmtime(s->logs.accept_date.tv_sec, &tm);
1126 if (tmp->options & LOG_OPT_HEXA) {
1127 iret = snprintf(tmplog, dst + maxsize - tmplog, "%04X", (unsigned int)s->logs.accept_date.tv_sec);
1128 if (iret < 0 || iret > dst + maxsize - tmplog)
1129 goto out;
1130 last_isspace = 0;
1131 tmplog += iret;
1132 } else {
1133 ret = ltoa_o(s->logs.accept_date.tv_sec, tmplog, dst + maxsize - tmplog);
1134 if (ret == NULL)
1135 goto out;
1136 tmplog = ret;
1137 last_isspace = 0;
1138 }
1139 break;
1140
William Lallemand1d705562012-03-12 12:46:41 +01001141 case LOG_FMT_MS: // %ms
William Lallemand5f232402012-04-05 18:02:55 +02001142 if (tmp->options & LOG_OPT_HEXA) {
1143 iret = snprintf(tmplog, dst + maxsize - tmplog, "%02X",(unsigned int)s->logs.accept_date.tv_usec/1000);
1144 if (iret < 0 || iret > dst + maxsize - tmplog)
1145 goto out;
1146 last_isspace = 0;
1147 tmplog += iret;
1148 } else {
1149 if ((dst + maxsize - tmplog) < 4)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001150 goto out;
Willy Tarreau9e60cd82013-01-24 01:18:16 +01001151 ret = utoa_pad((unsigned int)s->logs.accept_date.tv_usec/1000,
1152 tmplog, 4);
1153 if (ret == NULL)
William Lallemand51b5dca2012-03-26 17:52:55 +02001154 goto out;
Willy Tarreau9e60cd82013-01-24 01:18:16 +01001155 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001156 last_isspace = 0;
William Lallemand5f232402012-04-05 18:02:55 +02001157 }
1158 break;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001159
William Lallemand1d705562012-03-12 12:46:41 +01001160 case LOG_FMT_FRONTEND: // %f
William Lallemandbddd4fd2012-02-27 11:23:10 +01001161 src = fe->id;
William Lallemand5f232402012-04-05 18:02:55 +02001162 ret = lf_text(tmplog, src, dst + maxsize - tmplog, tmp);
William Lallemand1d705562012-03-12 12:46:41 +01001163 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001164 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001165 tmplog = ret;
William Lallemand51b5dca2012-03-26 17:52:55 +02001166 last_isspace = 0;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001167 break;
1168
Willy Tarreau773d65f2012-10-12 14:56:11 +02001169 case LOG_FMT_FRONTEND_XPRT: // %ft
1170 src = fe->id;
1171 if (tmp->options & LOG_OPT_QUOTE)
1172 LOGCHAR('"');
1173 iret = strlcpy2(tmplog, src, dst + maxsize - tmplog);
1174 if (iret == 0)
1175 goto out;
1176 tmplog += iret;
1177#ifdef USE_OPENSSL
1178 if (s->listener->xprt == &ssl_sock)
1179 LOGCHAR('~');
1180#endif
1181 if (tmp->options & LOG_OPT_QUOTE)
1182 LOGCHAR('"');
1183 last_isspace = 0;
1184 break;
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02001185#ifdef USE_OPENSSL
1186 case LOG_FMT_SSL_CIPHER: // %sslc
1187 src = NULL;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001188 conn = objt_conn(s->si[0].end);
1189 if (conn) {
1190 if (s->listener->xprt == &ssl_sock)
1191 src = ssl_sock_get_cipher_name(conn);
1192 }
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02001193 ret = lf_text(tmplog, src, dst + maxsize - tmplog, tmp);
1194 if (ret == NULL)
1195 goto out;
1196 tmplog = ret;
1197 last_isspace = 0;
1198 break;
Willy Tarreau773d65f2012-10-12 14:56:11 +02001199
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02001200 case LOG_FMT_SSL_VERSION: // %sslv
1201 src = NULL;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001202 conn = objt_conn(s->si[0].end);
1203 if (conn) {
1204 if (s->listener->xprt == &ssl_sock)
1205 src = ssl_sock_get_proto_version(conn);
1206 }
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02001207 ret = lf_text(tmplog, src, dst + maxsize - tmplog, tmp);
1208 if (ret == NULL)
1209 goto out;
1210 tmplog = ret;
1211 last_isspace = 0;
1212 break;
1213#endif
William Lallemand1d705562012-03-12 12:46:41 +01001214 case LOG_FMT_BACKEND: // %b
William Lallemandbddd4fd2012-02-27 11:23:10 +01001215 src = be->id;
William Lallemand5f232402012-04-05 18:02:55 +02001216 ret = lf_text(tmplog, src, dst + maxsize - tmplog, tmp);
William Lallemand1d705562012-03-12 12:46:41 +01001217 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001218 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001219 tmplog = ret;
William Lallemand51b5dca2012-03-26 17:52:55 +02001220 last_isspace = 0;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001221 break;
1222
William Lallemand1d705562012-03-12 12:46:41 +01001223 case LOG_FMT_SERVER: // %s
Willy Tarreaud79a3b22012-12-28 09:40:16 +01001224 switch (obj_type(s->target)) {
1225 case OBJ_TYPE_SERVER:
1226 src = objt_server(s->target)->id;
1227 break;
1228 case OBJ_TYPE_APPLET:
1229 src = objt_applet(s->target)->name;
1230 break;
1231 default:
1232 src = "<NOSRV>";
1233 break;
1234 }
William Lallemand5f232402012-04-05 18:02:55 +02001235 ret = lf_text(tmplog, src, dst + maxsize - tmplog, tmp);
William Lallemand1d705562012-03-12 12:46:41 +01001236 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001237 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001238 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001239 last_isspace = 0;
1240 break;
1241
William Lallemand1d705562012-03-12 12:46:41 +01001242 case LOG_FMT_TQ: // %Tq
William Lallemand5f232402012-04-05 18:02:55 +02001243 ret = ltoa_o(t_request, tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001244 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001245 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001246 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001247 last_isspace = 0;
1248 break;
1249
William Lallemand1d705562012-03-12 12:46:41 +01001250 case LOG_FMT_TW: // %Tw
1251 ret = ltoa_o((s->logs.t_queue >= 0) ? s->logs.t_queue - t_request : -1,
William Lallemand5f232402012-04-05 18:02:55 +02001252 tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001253 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001254 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001255 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001256 last_isspace = 0;
1257 break;
1258
William Lallemand1d705562012-03-12 12:46:41 +01001259 case LOG_FMT_TC: // %Tc
1260 ret = ltoa_o((s->logs.t_connect >= 0) ? s->logs.t_connect - s->logs.t_queue : -1,
William Lallemand5f232402012-04-05 18:02:55 +02001261 tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001262 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001263 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001264 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001265 last_isspace = 0;
1266 break;
1267
William Lallemand1d705562012-03-12 12:46:41 +01001268 case LOG_FMT_TR: // %Tr
1269 ret = ltoa_o((s->logs.t_data >= 0) ? s->logs.t_data - s->logs.t_connect : -1,
William Lallemand5f232402012-04-05 18:02:55 +02001270 tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001271 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001272 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001273 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001274 last_isspace = 0;
1275 break;
1276
William Lallemand1d705562012-03-12 12:46:41 +01001277 case LOG_FMT_TT: // %Tt
Willy Tarreaud79a3b22012-12-28 09:40:16 +01001278 if (!(fe->to_log & LW_BYTES))
William Lallemand1d705562012-03-12 12:46:41 +01001279 LOGCHAR('+');
William Lallemand5f232402012-04-05 18:02:55 +02001280 ret = ltoa_o(s->logs.t_close, tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001281 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001282 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001283 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001284 last_isspace = 0;
1285 break;
1286
Willy Tarreau2beef582012-12-20 17:22:52 +01001287 case LOG_FMT_STATUS: // %ST
William Lallemand5f232402012-04-05 18:02:55 +02001288 ret = ltoa_o(txn->status, tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001289 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001290 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001291 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001292 last_isspace = 0;
1293 break;
1294
William Lallemand1d705562012-03-12 12:46:41 +01001295 case LOG_FMT_BYTES: // %B
Willy Tarreaud79a3b22012-12-28 09:40:16 +01001296 if (!(fe->to_log & LW_BYTES))
William Lallemand1d705562012-03-12 12:46:41 +01001297 LOGCHAR('+');
William Lallemand5f232402012-04-05 18:02:55 +02001298 ret = lltoa(s->logs.bytes_out, tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001299 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001300 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001301 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001302 last_isspace = 0;
1303 break;
1304
Willy Tarreauc5259fd2012-12-20 15:38:04 +01001305 case LOG_FMT_BYTES_UP: // %U
Willy Tarreauc5259fd2012-12-20 15:38:04 +01001306 ret = lltoa(s->logs.bytes_in, tmplog, dst + maxsize - tmplog);
1307 if (ret == NULL)
1308 goto out;
1309 tmplog = ret;
1310 last_isspace = 0;
1311 break;
1312
Willy Tarreau2beef582012-12-20 17:22:52 +01001313 case LOG_FMT_CCLIENT: // %CC
William Lallemandbddd4fd2012-02-27 11:23:10 +01001314 src = txn->cli_cookie;
William Lallemand5f232402012-04-05 18:02:55 +02001315 ret = lf_text(tmplog, src, dst + maxsize - tmplog, tmp);
William Lallemand1d705562012-03-12 12:46:41 +01001316 if (ret == NULL)
William Lallemand51b5dca2012-03-26 17:52:55 +02001317 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001318 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001319 last_isspace = 0;
1320 break;
1321
Willy Tarreau2beef582012-12-20 17:22:52 +01001322 case LOG_FMT_CSERVER: // %CS
William Lallemandbddd4fd2012-02-27 11:23:10 +01001323 src = txn->srv_cookie;
William Lallemand5f232402012-04-05 18:02:55 +02001324 ret = lf_text(tmplog, src, dst + maxsize - tmplog, tmp);
William Lallemand1d705562012-03-12 12:46:41 +01001325 if (ret == NULL)
William Lallemand51b5dca2012-03-26 17:52:55 +02001326 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001327 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001328 last_isspace = 0;
1329 break;
1330
William Lallemand1d705562012-03-12 12:46:41 +01001331 case LOG_FMT_TERMSTATE: // %ts
Willy Tarreau6580c062012-03-12 15:09:42 +01001332 LOGCHAR(sess_term_cond[(s->flags & SN_ERR_MASK) >> SN_ERR_SHIFT]);
1333 LOGCHAR(sess_fin_state[(s->flags & SN_FINST_MASK) >> SN_FINST_SHIFT]);
1334 *tmplog = '\0';
1335 last_isspace = 0;
1336 break;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001337
William Lallemand1d705562012-03-12 12:46:41 +01001338 case LOG_FMT_TERMSTATE_CK: // %tsc, same as TS with cookie state (for mode HTTP)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001339 LOGCHAR(sess_term_cond[(s->flags & SN_ERR_MASK) >> SN_ERR_SHIFT]);
1340 LOGCHAR(sess_fin_state[(s->flags & SN_FINST_MASK) >> SN_FINST_SHIFT]);
Willy Tarreau67402132012-05-31 20:40:20 +02001341 LOGCHAR((be->ck_opts & PR_CK_ANY) ? sess_cookie[(txn->flags & TX_CK_MASK) >> TX_CK_SHIFT] : '-');
1342 LOGCHAR((be->ck_opts & PR_CK_ANY) ? sess_set_cookie[(txn->flags & TX_SCK_MASK) >> TX_SCK_SHIFT] : '-');
William Lallemandbddd4fd2012-02-27 11:23:10 +01001343 last_isspace = 0;
1344 break;
1345
William Lallemand1d705562012-03-12 12:46:41 +01001346 case LOG_FMT_ACTCONN: // %ac
William Lallemand5f232402012-04-05 18:02:55 +02001347 ret = ltoa_o(actconn, tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001348 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001349 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001350 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001351 last_isspace = 0;
1352 break;
1353
William Lallemand1d705562012-03-12 12:46:41 +01001354 case LOG_FMT_FECONN: // %fc
William Lallemand5f232402012-04-05 18:02:55 +02001355 ret = ltoa_o(fe->feconn, tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001356 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001357 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001358 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001359 last_isspace = 0;
1360 break;
1361
William Lallemand1d705562012-03-12 12:46:41 +01001362 case LOG_FMT_BECONN: // %bc
William Lallemand5f232402012-04-05 18:02:55 +02001363 ret = ltoa_o(be->beconn, tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001364 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001365 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001366 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001367 last_isspace = 0;
1368 break;
1369
William Lallemand1d705562012-03-12 12:46:41 +01001370 case LOG_FMT_SRVCONN: // %sc
Willy Tarreau54a08d32012-11-12 01:14:56 +01001371 ret = ultoa_o(objt_server(s->target) ?
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001372 objt_server(s->target)->cur_sess :
William Lallemand5f232402012-04-05 18:02:55 +02001373 0, tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001374 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001375 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001376 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001377 last_isspace = 0;
1378 break;
1379
William Lallemand1d705562012-03-12 12:46:41 +01001380 case LOG_FMT_RETRIES: // %rq
William Lallemandbddd4fd2012-02-27 11:23:10 +01001381 if (s->flags & SN_REDISP)
William Lallemand1d705562012-03-12 12:46:41 +01001382 LOGCHAR('+');
1383 ret = ltoa_o((s->req->cons->conn_retries>0) ?
1384 (be->conn_retries - s->req->cons->conn_retries) :
William Lallemand5f232402012-04-05 18:02:55 +02001385 be->conn_retries, tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001386 if (ret == NULL)
William Lallemand51b5dca2012-03-26 17:52:55 +02001387 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001388 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001389 last_isspace = 0;
1390 break;
1391
William Lallemand1d705562012-03-12 12:46:41 +01001392 case LOG_FMT_SRVQUEUE: // %sq
William Lallemand5f232402012-04-05 18:02:55 +02001393 ret = ltoa_o(s->logs.srv_queue_size, tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001394 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001395 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001396 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001397 last_isspace = 0;
1398 break;
1399
William Lallemand1d705562012-03-12 12:46:41 +01001400 case LOG_FMT_BCKQUEUE: // %bq
William Lallemand5f232402012-04-05 18:02:55 +02001401 ret = ltoa_o(s->logs.prx_queue_size, tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001402 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001403 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001404 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001405 last_isspace = 0;
1406 break;
1407
William Lallemand1d705562012-03-12 12:46:41 +01001408 case LOG_FMT_HDRREQUEST: // %hr
William Lallemandbddd4fd2012-02-27 11:23:10 +01001409 /* request header */
Willy Tarreaud79a3b22012-12-28 09:40:16 +01001410 if (fe->nb_req_cap && txn->req.cap) {
William Lallemandbddd4fd2012-02-27 11:23:10 +01001411 if (tmp->options & LOG_OPT_QUOTE)
1412 LOGCHAR('"');
1413 LOGCHAR('{');
1414 for (hdr = 0; hdr < fe->nb_req_cap; hdr++) {
1415 if (hdr)
1416 LOGCHAR('|');
William Lallemand51b5dca2012-03-26 17:52:55 +02001417 if (txn->req.cap[hdr] != NULL) {
William Lallemand1d705562012-03-12 12:46:41 +01001418 ret = encode_string(tmplog, dst + maxsize,
William Lallemandbddd4fd2012-02-27 11:23:10 +01001419 '#', hdr_encode_map, txn->req.cap[hdr]);
William Lallemand1d705562012-03-12 12:46:41 +01001420 if (ret == NULL || *ret != '\0')
William Lallemand51b5dca2012-03-26 17:52:55 +02001421 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001422 tmplog = ret;
William Lallemand51b5dca2012-03-26 17:52:55 +02001423 }
William Lallemandbddd4fd2012-02-27 11:23:10 +01001424 }
1425 LOGCHAR('}');
William Lallemand51b5dca2012-03-26 17:52:55 +02001426 if (tmp->options & LOG_OPT_QUOTE)
1427 LOGCHAR('"');
William Lallemandbddd4fd2012-02-27 11:23:10 +01001428 last_isspace = 0;
1429 }
William Lallemandbddd4fd2012-02-27 11:23:10 +01001430 break;
1431
William Lallemand1d705562012-03-12 12:46:41 +01001432 case LOG_FMT_HDRREQUESTLIST: // %hrl
William Lallemandbddd4fd2012-02-27 11:23:10 +01001433 /* request header list */
Willy Tarreaud79a3b22012-12-28 09:40:16 +01001434 if (fe->nb_req_cap && txn->req.cap) {
William Lallemandbddd4fd2012-02-27 11:23:10 +01001435 for (hdr = 0; hdr < fe->nb_req_cap; hdr++) {
1436 if (hdr > 0)
1437 LOGCHAR(' ');
1438 if (tmp->options & LOG_OPT_QUOTE)
1439 LOGCHAR('"');
1440 if (txn->req.cap[hdr] != NULL) {
William Lallemand1d705562012-03-12 12:46:41 +01001441 ret = encode_string(tmplog, dst + maxsize,
William Lallemandbddd4fd2012-02-27 11:23:10 +01001442 '#', hdr_encode_map, txn->req.cap[hdr]);
William Lallemand1d705562012-03-12 12:46:41 +01001443 if (ret == NULL || *ret != '\0')
William Lallemand51b5dca2012-03-26 17:52:55 +02001444 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001445 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001446 } else if (!(tmp->options & LOG_OPT_QUOTE))
1447 LOGCHAR('-');
1448 if (tmp->options & LOG_OPT_QUOTE)
1449 LOGCHAR('"');
William Lallemandbddd4fd2012-02-27 11:23:10 +01001450 last_isspace = 0;
1451 }
1452 }
1453 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001454
William Lallemand1d705562012-03-12 12:46:41 +01001455
1456 case LOG_FMT_HDRRESPONS: // %hs
William Lallemandbddd4fd2012-02-27 11:23:10 +01001457 /* response header */
Willy Tarreaud79a3b22012-12-28 09:40:16 +01001458 if (fe->nb_rsp_cap && txn->rsp.cap) {
William Lallemandbddd4fd2012-02-27 11:23:10 +01001459 if (tmp->options & LOG_OPT_QUOTE)
1460 LOGCHAR('"');
1461 LOGCHAR('{');
1462 for (hdr = 0; hdr < fe->nb_rsp_cap; hdr++) {
1463 if (hdr)
1464 LOGCHAR('|');
William Lallemand51b5dca2012-03-26 17:52:55 +02001465 if (txn->rsp.cap[hdr] != NULL) {
William Lallemand1d705562012-03-12 12:46:41 +01001466 ret = encode_string(tmplog, dst + maxsize,
1467 '#', hdr_encode_map, txn->rsp.cap[hdr]);
1468 if (ret == NULL || *ret != '\0')
William Lallemand51b5dca2012-03-26 17:52:55 +02001469 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001470 tmplog = ret;
William Lallemand51b5dca2012-03-26 17:52:55 +02001471 }
William Lallemandbddd4fd2012-02-27 11:23:10 +01001472 }
1473 LOGCHAR('}');
1474 last_isspace = 0;
1475 if (tmp->options & LOG_OPT_QUOTE)
1476 LOGCHAR('"');
1477 }
William Lallemandbddd4fd2012-02-27 11:23:10 +01001478 break;
1479
William Lallemand1d705562012-03-12 12:46:41 +01001480 case LOG_FMT_HDRRESPONSLIST: // %hsl
William Lallemandbddd4fd2012-02-27 11:23:10 +01001481 /* response header list */
Willy Tarreaud79a3b22012-12-28 09:40:16 +01001482 if (fe->nb_rsp_cap && txn->rsp.cap) {
William Lallemandbddd4fd2012-02-27 11:23:10 +01001483 for (hdr = 0; hdr < fe->nb_rsp_cap; hdr++) {
1484 if (hdr > 0)
1485 LOGCHAR(' ');
1486 if (tmp->options & LOG_OPT_QUOTE)
1487 LOGCHAR('"');
1488 if (txn->rsp.cap[hdr] != NULL) {
William Lallemand1d705562012-03-12 12:46:41 +01001489 ret = encode_string(tmplog, dst + maxsize,
1490 '#', hdr_encode_map, txn->rsp.cap[hdr]);
1491 if (ret == NULL || *ret != '\0')
William Lallemand51b5dca2012-03-26 17:52:55 +02001492 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001493 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001494 } else if (!(tmp->options & LOG_OPT_QUOTE))
1495 LOGCHAR('-');
1496 if (tmp->options & LOG_OPT_QUOTE)
1497 LOGCHAR('"');
William Lallemandbddd4fd2012-02-27 11:23:10 +01001498 last_isspace = 0;
1499 }
1500 }
1501 break;
1502
William Lallemand1d705562012-03-12 12:46:41 +01001503 case LOG_FMT_REQ: // %r
William Lallemandbddd4fd2012-02-27 11:23:10 +01001504 /* Request */
1505 if (tmp->options & LOG_OPT_QUOTE)
1506 LOGCHAR('"');
1507 uri = txn->uri ? txn->uri : "<BADREQ>";
William Lallemand1d705562012-03-12 12:46:41 +01001508 ret = encode_string(tmplog, dst + maxsize,
William Lallemandbddd4fd2012-02-27 11:23:10 +01001509 '#', url_encode_map, uri);
William Lallemand1d705562012-03-12 12:46:41 +01001510 if (ret == NULL || *ret != '\0')
William Lallemand51b5dca2012-03-26 17:52:55 +02001511 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001512 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001513 if (tmp->options & LOG_OPT_QUOTE)
1514 LOGCHAR('"');
William Lallemandbddd4fd2012-02-27 11:23:10 +01001515 last_isspace = 0;
1516 break;
William Lallemand5f232402012-04-05 18:02:55 +02001517
1518 case LOG_FMT_COUNTER: // %rt
1519 if (tmp->options & LOG_OPT_HEXA) {
Willy Tarreau1f0da242014-01-25 11:01:50 +01001520 iret = snprintf(tmplog, dst + maxsize - tmplog, "%04X", s->uniq_id);
William Lallemand5f232402012-04-05 18:02:55 +02001521 if (iret < 0 || iret > dst + maxsize - tmplog)
1522 goto out;
1523 last_isspace = 0;
1524 tmplog += iret;
1525 } else {
Willy Tarreau1f0da242014-01-25 11:01:50 +01001526 ret = ltoa_o(s->uniq_id, tmplog, dst + maxsize - tmplog);
William Lallemand5f232402012-04-05 18:02:55 +02001527 if (ret == NULL)
1528 goto out;
1529 tmplog = ret;
1530 last_isspace = 0;
1531 }
1532 break;
1533
1534 case LOG_FMT_HOSTNAME: // %H
1535 src = hostname;
1536 ret = lf_text(tmplog, src, dst + maxsize - tmplog, tmp);
1537 if (ret == NULL)
1538 goto out;
1539 tmplog = ret;
1540 last_isspace = 0;
1541 break;
1542
1543 case LOG_FMT_PID: // %pid
1544 if (tmp->options & LOG_OPT_HEXA) {
1545 iret = snprintf(tmplog, dst + maxsize - tmplog, "%04X", pid);
1546 if (iret < 0 || iret > dst + maxsize - tmplog)
1547 goto out;
1548 last_isspace = 0;
1549 tmplog += iret;
1550 } else {
1551 ret = ltoa_o(pid, tmplog, dst + maxsize - tmplog);
1552 if (ret == NULL)
1553 goto out;
1554 tmplog = ret;
1555 last_isspace = 0;
1556 }
1557 break;
William Lallemanda73203e2012-03-12 12:48:57 +01001558
1559 case LOG_FMT_UNIQUEID: // %ID
William Lallemand5b7ea3a2013-08-28 15:44:19 +02001560 ret = NULL;
William Lallemanda73203e2012-03-12 12:48:57 +01001561 src = s->unique_id;
Thierry FOURNIER1be69102014-04-15 01:38:48 +02001562 ret = lf_text(tmplog, src, maxsize - (tmplog - dst), tmp);
William Lallemanda73203e2012-03-12 12:48:57 +01001563 if (ret == NULL)
1564 goto out;
1565 tmplog = ret;
1566 last_isspace = 0;
1567 break;
1568
William Lallemandbddd4fd2012-02-27 11:23:10 +01001569 }
1570 }
1571
1572out:
William Lallemand1d705562012-03-12 12:46:41 +01001573 /* *tmplog is a unused character */
1574 *tmplog = '\0';
Willy Tarreaudf974472012-12-28 02:44:01 +01001575 return tmplog - dst;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001576
Willy Tarreaubaaee002006-06-26 02:48:02 +02001577}
1578
William Lallemand1d705562012-03-12 12:46:41 +01001579/*
1580 * send a log for the session when we have enough info about it.
1581 * Will not log if the frontend has no log defined.
1582 */
1583void sess_log(struct session *s)
1584{
1585 char *tmplog;
1586 int size, err, level;
1587
1588 /* if we don't want to log normal traffic, return now */
Willy Tarreau570f2212013-06-10 16:42:09 +02001589 err = (s->flags & SN_REDISP) ||
1590 ((s->flags & SN_ERR_MASK) > SN_ERR_LOCAL) ||
1591 (((s->flags & SN_ERR_MASK) == SN_ERR_NONE) &&
1592 (s->req->cons->conn_retries != s->be->conn_retries)) ||
1593 ((s->fe->mode == PR_MODE_HTTP) && s->txn.status >= 500);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001594
William Lallemand1d705562012-03-12 12:46:41 +01001595 if (!err && (s->fe->options2 & PR_O2_NOLOGNORM))
1596 return;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001597
William Lallemand1d705562012-03-12 12:46:41 +01001598 if (LIST_ISEMPTY(&s->fe->logsrvs))
1599 return;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001600
Willy Tarreauabcd5142013-06-11 17:18:02 +02001601 if (s->logs.level) { /* loglevel was overridden */
1602 if (s->logs.level == -1) {
1603 s->logs.logwait = 0; /* logs disabled */
1604 return;
1605 }
1606 level = s->logs.level - 1;
1607 }
1608 else {
1609 level = LOG_INFO;
1610 if (err && (s->fe->options2 & PR_O2_LOGERRORS))
1611 level = LOG_ERR;
1612 }
William Lallemand1d705562012-03-12 12:46:41 +01001613
William Lallemand5b7ea3a2013-08-28 15:44:19 +02001614 /* if unique-id was not generated */
1615 if (!s->unique_id && !LIST_ISEMPTY(&s->fe->format_unique_id)) {
1616 if ((s->unique_id = pool_alloc2(pool2_uniqueid)) != NULL)
1617 build_logline(s, s->unique_id, UNIQUEID_LEN, &s->fe->format_unique_id);
1618 }
1619
William Lallemand1d705562012-03-12 12:46:41 +01001620 tmplog = update_log_hdr();
1621 size = tmplog - logline;
1622 size += build_logline(s, tmplog, sizeof(logline) - size, &s->fe->logformat);
1623 if (size > 0) {
Willy Tarreaudf974472012-12-28 02:44:01 +01001624 __send_log(s->fe, level, logline, size + 1);
William Lallemand1d705562012-03-12 12:46:41 +01001625 s->logs.logwait = 0;
1626 }
1627}
William Lallemandbddd4fd2012-02-27 11:23:10 +01001628
Willy Tarreaubaaee002006-06-26 02:48:02 +02001629/*
1630 * Local variables:
1631 * c-indent-level: 8
1632 * c-basic-offset: 8
1633 * End:
1634 */