blob: 3e3acb4cb248ef52ebd6c3a3ad0592e1d7a45101 [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 */
Willy Tarreaud9ed3d22014-06-13 12:23:06 +0200106 { "hr", LOG_FMT_HDRREQUEST, PR_MODE_TCP, LW_REQHDR, NULL }, /* header request */
107 { "hrl", LOG_FMT_HDRREQUESTLIST, PR_MODE_TCP, LW_REQHDR, NULL }, /* header request list */
108 { "hs", LOG_FMT_HDRRESPONS, PR_MODE_TCP, LW_RSPHDR, NULL }, /* header response */
109 { "hsl", LOG_FMT_HDRRESPONSLIST, PR_MODE_TCP, 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 */
Willy Tarreaudc2695c2014-06-27 18:10:07 +0200149char *logline = NULL;
Willy Tarreaub1a2faf2012-03-19 16:51:53 +0100150
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 Tarreaudc2695c2014-06-27 18:10:07 +0200739 hdr_len = snprintf(logline, global.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 */
Willy Tarreaudc2695c2014-06-27 18:10:07 +0200749 if (hdr_len < 0 || hdr_len > global.max_syslog_len)
750 hdr_len = global.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 Tarreaudc2695c2014-06-27 18:10:07 +0200775 data_len += vsnprintf(dataptr, logline + global.max_syslog_len - dataptr, format, argp);
776 if (data_len < 0 || data_len > global.max_syslog_len)
777 data_len = global.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
Robert Tsai81ae1952007-12-05 10:47:29 +0100814 /* Send log messages to syslog server. */
William Lallemand0f99e342011-10-12 17:50:54 +0200815 nblogger = 0;
816 list_for_each_entry(tmp, logsrvs, list) {
817 const struct logsrv *logsrv = tmp;
David du Colombier11bcb6c2011-03-24 12:23:00 +0100818 int *plogfd = logsrv->addr.ss_family == AF_UNIX ?
Robert Tsai81ae1952007-12-05 10:47:29 +0100819 &logfdunix : &logfdinet;
820 int sent;
Willy Tarreaudc2695c2014-06-27 18:10:07 +0200821 int max;
822 char backup;
Robert Tsai81ae1952007-12-05 10:47:29 +0100823
Willy Tarreau53045692014-06-23 18:07:15 +0200824 nblogger++;
825
Willy Tarreaubaaee002006-06-26 02:48:02 +0200826 /* we can filter the level of the messages that are sent to each logger */
William Lallemand0f99e342011-10-12 17:50:54 +0200827 if (level > logsrv->level)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200828 continue;
William Lallemandbddd4fd2012-02-27 11:23:10 +0100829
Willy Tarreau53045692014-06-23 18:07:15 +0200830 if (unlikely(*plogfd < 0)) {
831 /* socket not successfully initialized yet */
832 int proto = logsrv->addr.ss_family == AF_UNIX ? 0 : IPPROTO_UDP;
833
834 if ((*plogfd = socket(logsrv->addr.ss_family, SOCK_DGRAM, proto)) < 0) {
835 Alert("socket for logger #%d failed: %s (errno=%d)\n",
836 nblogger, strerror(errno), errno);
837 continue;
838 }
839 /* we don't want to receive anything on this socket */
840 setsockopt(*plogfd, SOL_SOCKET, SO_RCVBUF, &zero, sizeof(zero));
841 /* does nothing under Linux, maybe needed for others */
842 shutdown(*plogfd, SHUT_RD);
843 }
844
Willy Tarreaubaaee002006-06-26 02:48:02 +0200845 /* For each target, we may have a different facility.
846 * We can also have a different log level for each message.
847 * This induces variations in the message header length.
848 * Since we don't want to recompute it each time, nor copy it every
849 * time, we only change the facility in the pre-computed header,
850 * and we change the pointer to the header accordingly.
851 */
William Lallemand0f99e342011-10-12 17:50:54 +0200852 fac_level = (logsrv->facility << 3) + MAX(level, logsrv->minlvl);
William Lallemand2a4a44f2012-02-06 16:00:33 +0100853 log_ptr = dataptr + 3; /* last digit of the log level */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200854 do {
855 *log_ptr = '0' + fac_level % 10;
856 fac_level /= 10;
857 log_ptr--;
William Lallemand2a4a44f2012-02-06 16:00:33 +0100858 } while (fac_level && log_ptr > dataptr);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200859 *log_ptr = '<';
William Lallemand2a4a44f2012-02-06 16:00:33 +0100860
Willy Tarreaudc2695c2014-06-27 18:10:07 +0200861 max = size - (log_ptr - dataptr);
862 if (max > logsrv->maxlen)
863 max = logsrv->maxlen;
864
865 /* insert a \n at the end of the message, but save what was
866 * there first because we could have different max lengths
867 * for different log targets.
868 */
869 backup = log_ptr[max - 1];
870 log_ptr[max - 1] = '\n';
871
872 sent = sendto(*plogfd, log_ptr, max,
Willy Tarreau1b4b7ce2011-04-05 16:56:50 +0200873 MSG_DONTWAIT | MSG_NOSIGNAL,
874 (struct sockaddr *)&logsrv->addr, get_addr_len(&logsrv->addr));
Willy Tarreaudc2695c2014-06-27 18:10:07 +0200875
876 log_ptr[max - 1] = backup;
877
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 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200882 }
883}
884
William Lallemandbddd4fd2012-02-27 11:23:10 +0100885extern fd_set hdr_encode_map[];
886extern fd_set url_encode_map[];
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +0100887extern fd_set http_encode_map[];
William Lallemandbddd4fd2012-02-27 11:23:10 +0100888
Willy Tarreaubaaee002006-06-26 02:48:02 +0200889
Willy Tarreauc89ccb62012-04-05 21:18:22 +0200890const 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 +0100891const char sess_set_cookie[8] = "NPDIRU67"; /* No set-cookie, Set-cookie found and left unchanged (passive),
892 Set-cookie Deleted, Set-Cookie Inserted, Set-cookie Rewritten,
893 Set-cookie Updated, unknown, unknown */
894
William Lallemand1d705562012-03-12 12:46:41 +0100895/*
896 * try to write a character if there is enough space, or goto out
897 */
William Lallemandbddd4fd2012-02-27 11:23:10 +0100898#define LOGCHAR(x) do { \
William Lallemand1d705562012-03-12 12:46:41 +0100899 if (tmplog < dst + maxsize - 1) { \
William Lallemandbddd4fd2012-02-27 11:23:10 +0100900 *(tmplog++) = (x); \
901 } else { \
902 goto out; \
903 } \
904 } while(0)
905
William Lallemand1d705562012-03-12 12:46:41 +0100906
Willy Tarreaudf974472012-12-28 02:44:01 +0100907/* Builds a log line in <dst> based on <list_format>, and stops before reaching
908 * <maxsize> characters. Returns the size of the output string in characters,
909 * not counting the trailing zero which is always added if the resulting size
910 * is not zero.
911 */
William Lallemand1d705562012-03-12 12:46:41 +0100912int build_logline(struct session *s, char *dst, size_t maxsize, struct list *list_format)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200913{
Willy Tarreau73de9892006-11-30 11:40:23 +0100914 struct proxy *fe = s->fe;
Willy Tarreauddb358d2006-12-17 22:55:52 +0100915 struct proxy *be = s->be;
William Lallemandbddd4fd2012-02-27 11:23:10 +0100916 struct http_txn *txn = &s->txn;
William Lallemandbddd4fd2012-02-27 11:23:10 +0100917 char *uri;
Willy Tarreaufe944602007-10-25 10:34:16 +0200918 struct tm tm;
William Lallemandbddd4fd2012-02-27 11:23:10 +0100919 int t_request;
920 int hdr;
921 int last_isspace = 1;
Willy Tarreaub1a2faf2012-03-19 16:51:53 +0100922 char *tmplog;
William Lallemand1d705562012-03-12 12:46:41 +0100923 char *ret;
924 int iret;
William Lallemandbddd4fd2012-02-27 11:23:10 +0100925 struct logformat_node *tmp;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200926
William Lallemandbddd4fd2012-02-27 11:23:10 +0100927 /* FIXME: let's limit ourselves to frontend logging for now. */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200928
William Lallemandbddd4fd2012-02-27 11:23:10 +0100929 t_request = -1;
930 if (tv_isge(&s->logs.tv_request, &s->logs.tv_accept))
931 t_request = tv_ms_elapsed(&s->logs.tv_accept, &s->logs.tv_request);
932
William Lallemand1d705562012-03-12 12:46:41 +0100933 tmplog = dst;
Willy Tarreauc9bd0cc2009-05-10 11:57:02 +0200934
William Lallemandbddd4fd2012-02-27 11:23:10 +0100935 /* fill logbuffer */
William Lallemand1d705562012-03-12 12:46:41 +0100936 if (LIST_ISEMPTY(list_format))
937 return 0;
William Lallemandbddd4fd2012-02-27 11:23:10 +0100938
William Lallemand1d705562012-03-12 12:46:41 +0100939 list_for_each_entry(tmp, list_format, list) {
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200940 struct connection *conn;
Willy Tarreau4f653562012-10-12 19:48:16 +0200941 const char *src = NULL;
Willy Tarreauc8368452012-12-21 00:09:23 +0100942 struct sample *key;
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +0100943 const struct chunk empty = { NULL, 0, 0 };
William Lallemandbddd4fd2012-02-27 11:23:10 +0100944
Willy Tarreauc8368452012-12-21 00:09:23 +0100945 switch (tmp->type) {
William Lallemand1d705562012-03-12 12:46:41 +0100946 case LOG_FMT_SEPARATOR:
William Lallemandbddd4fd2012-02-27 11:23:10 +0100947 if (!last_isspace) {
948 LOGCHAR(' ');
949 last_isspace = 1;
William Lallemandbddd4fd2012-02-27 11:23:10 +0100950 }
951 break;
952
William Lallemand1d705562012-03-12 12:46:41 +0100953 case LOG_FMT_TEXT: // text
William Lallemandbddd4fd2012-02-27 11:23:10 +0100954 src = tmp->arg;
William Lallemand5f232402012-04-05 18:02:55 +0200955 iret = strlcpy2(tmplog, src, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +0100956 if (iret == 0)
William Lallemandbddd4fd2012-02-27 11:23:10 +0100957 goto out;
William Lallemand1d705562012-03-12 12:46:41 +0100958 tmplog += iret;
William Lallemandbddd4fd2012-02-27 11:23:10 +0100959 last_isspace = 0;
960 break;
961
Willy Tarreauc8368452012-12-21 00:09:23 +0100962 case LOG_FMT_EXPR: // sample expression, may be request or response
963 key = NULL;
964 if (tmp->options & LOG_OPT_REQ_CAP)
965 key = sample_fetch_string(be, s, txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, tmp->expr);
966 if (!key && (tmp->options & LOG_OPT_RES_CAP))
967 key = sample_fetch_string(be, s, txn, SMP_OPT_DIR_RES|SMP_OPT_FINAL, tmp->expr);
Thierry FOURNIERd048d8b2014-03-13 16:46:18 +0100968 if (tmp->options & LOG_OPT_HTTP)
969 ret = encode_chunk(tmplog, dst + maxsize,
970 '%', http_encode_map, key ? &key->data.str : &empty);
971 else
972 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 +0100973 if (ret == 0)
974 goto out;
975 tmplog = ret;
976 last_isspace = 0;
977 break;
978
Willy Tarreau2beef582012-12-20 17:22:52 +0100979 case LOG_FMT_CLIENTIP: // %ci
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200980 conn = objt_conn(s->req->prod->end);
981 if (conn)
982 ret = lf_ip(tmplog, (struct sockaddr *)&conn->addr.from, dst + maxsize - tmplog, tmp);
983 else
984 ret = lf_text_len(tmplog, NULL, 0, dst + maxsize - tmplog, tmp);
William Lallemand1d705562012-03-12 12:46:41 +0100985 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +0100986 goto out;
William Lallemand1d705562012-03-12 12:46:41 +0100987 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +0100988 last_isspace = 0;
989 break;
990
Willy Tarreau2beef582012-12-20 17:22:52 +0100991 case LOG_FMT_CLIENTPORT: // %cp
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200992 conn = objt_conn(s->req->prod->end);
993 if (conn) {
994 if (conn->addr.from.ss_family == AF_UNIX) {
995 ret = ltoa_o(s->listener->luid, tmplog, dst + maxsize - tmplog);
996 } else {
997 ret = lf_port(tmplog, (struct sockaddr *)&conn->addr.from,
998 dst + maxsize - tmplog, tmp);
999 }
William Lallemand5f232402012-04-05 18:02:55 +02001000 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001001 else
1002 ret = lf_text_len(tmplog, NULL, 0, dst + maxsize - tmplog, tmp);
1003
William Lallemand5f232402012-04-05 18:02:55 +02001004 if (ret == NULL)
1005 goto out;
1006 tmplog = ret;
1007 last_isspace = 0;
1008 break;
1009
Willy Tarreau2beef582012-12-20 17:22:52 +01001010 case LOG_FMT_FRONTENDIP: // %fi
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001011 conn = objt_conn(s->req->prod->end);
1012 if (conn) {
1013 conn_get_to_addr(conn);
1014 ret = lf_ip(tmplog, (struct sockaddr *)&conn->addr.to, dst + maxsize - tmplog, tmp);
1015 }
1016 else
1017 ret = lf_text_len(tmplog, NULL, 0, dst + maxsize - tmplog, tmp);
1018
William Lallemand1d705562012-03-12 12:46:41 +01001019 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001020 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001021 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001022 last_isspace = 0;
1023 break;
1024
Willy Tarreau2beef582012-12-20 17:22:52 +01001025 case LOG_FMT_FRONTENDPORT: // %fp
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001026 conn = objt_conn(s->req->prod->end);
1027 if (conn) {
1028 conn_get_to_addr(conn);
1029 if (conn->addr.to.ss_family == AF_UNIX)
1030 ret = ltoa_o(s->listener->luid, tmplog, dst + maxsize - tmplog);
1031 else
1032 ret = lf_port(tmplog, (struct sockaddr *)&conn->addr.to, dst + maxsize - tmplog, tmp);
William Lallemand5f232402012-04-05 18:02:55 +02001033 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001034 else
1035 ret = lf_text_len(tmplog, NULL, 0, dst + maxsize - tmplog, tmp);
1036
William Lallemand5f232402012-04-05 18:02:55 +02001037 if (ret == NULL)
1038 goto out;
1039 tmplog = ret;
1040 last_isspace = 0;
1041 break;
1042
Willy Tarreau2beef582012-12-20 17:22:52 +01001043 case LOG_FMT_BACKENDIP: // %bi
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001044 conn = objt_conn(s->req->cons->end);
1045 if (conn)
1046 ret = lf_ip(tmplog, (struct sockaddr *)&conn->addr.from, dst + maxsize - tmplog, tmp);
1047 else
1048 ret = lf_text_len(tmplog, NULL, 0, dst + maxsize - tmplog, tmp);
1049
William Lallemand1d705562012-03-12 12:46:41 +01001050 if (ret == NULL)
William Lallemandb7ff6a32012-03-02 14:35:21 +01001051 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001052 tmplog = ret;
William Lallemandb7ff6a32012-03-02 14:35:21 +01001053 last_isspace = 0;
1054 break;
1055
Willy Tarreau2beef582012-12-20 17:22:52 +01001056 case LOG_FMT_BACKENDPORT: // %bp
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001057 conn = objt_conn(s->req->cons->end);
1058 if (conn)
1059 ret = lf_port(tmplog, (struct sockaddr *)&conn->addr.from, dst + maxsize - tmplog, tmp);
1060 else
1061 ret = lf_text_len(tmplog, NULL, 0, dst + maxsize - tmplog, tmp);
1062
William Lallemand5f232402012-04-05 18:02:55 +02001063 if (ret == NULL)
1064 goto out;
1065 tmplog = ret;
1066 last_isspace = 0;
1067 break;
1068
Willy Tarreau2beef582012-12-20 17:22:52 +01001069 case LOG_FMT_SERVERIP: // %si
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001070 conn = objt_conn(s->req->cons->end);
1071 if (conn)
1072 ret = lf_ip(tmplog, (struct sockaddr *)&conn->addr.to, dst + maxsize - tmplog, tmp);
1073 else
1074 ret = lf_text_len(tmplog, NULL, 0, dst + maxsize - tmplog, tmp);
1075
William Lallemand5f232402012-04-05 18:02:55 +02001076 if (ret == NULL)
1077 goto out;
1078 tmplog = ret;
1079 last_isspace = 0;
1080 break;
1081
Willy Tarreau2beef582012-12-20 17:22:52 +01001082 case LOG_FMT_SERVERPORT: // %sp
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001083 conn = objt_conn(s->req->cons->end);
1084 if (conn)
1085 ret = lf_port(tmplog, (struct sockaddr *)&conn->addr.to, dst + maxsize - tmplog, tmp);
1086 else
1087 ret = lf_text_len(tmplog, NULL, 0, dst + maxsize - tmplog, tmp);
1088
William Lallemand1d705562012-03-12 12:46:41 +01001089 if (ret == NULL)
William Lallemandb7ff6a32012-03-02 14:35:21 +01001090 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001091 tmplog = ret;
William Lallemandb7ff6a32012-03-02 14:35:21 +01001092 last_isspace = 0;
1093 break;
1094
William Lallemand1d705562012-03-12 12:46:41 +01001095 case LOG_FMT_DATE: // %t
William Lallemandbddd4fd2012-02-27 11:23:10 +01001096 get_localtime(s->logs.accept_date.tv_sec, &tm);
William Lallemand5f232402012-04-05 18:02:55 +02001097 ret = date2str_log(tmplog, &tm, &(s->logs.accept_date),
1098 dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001099 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001100 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001101 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001102 last_isspace = 0;
1103 break;
1104
William Lallemand1d705562012-03-12 12:46:41 +01001105 case LOG_FMT_DATEGMT: // %T
William Lallemandbddd4fd2012-02-27 11:23:10 +01001106 get_gmtime(s->logs.accept_date.tv_sec, &tm);
William Lallemand5f232402012-04-05 18:02:55 +02001107 ret = gmt2str_log(tmplog, &tm, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001108 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001109 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001110 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001111 last_isspace = 0;
1112 break;
1113
Yuxans Yao4e25b012012-10-19 10:36:09 +08001114 case LOG_FMT_DATELOCAL: // %Tl
1115 get_localtime(s->logs.accept_date.tv_sec, &tm);
1116 ret = localdate2str_log(tmplog, &tm, dst + maxsize - tmplog);
1117 if (ret == NULL)
1118 goto out;
1119 tmplog = ret;
1120 last_isspace = 0;
1121 break;
1122
William Lallemand5f232402012-04-05 18:02:55 +02001123 case LOG_FMT_TS: // %Ts
1124 get_gmtime(s->logs.accept_date.tv_sec, &tm);
1125 if (tmp->options & LOG_OPT_HEXA) {
1126 iret = snprintf(tmplog, dst + maxsize - tmplog, "%04X", (unsigned int)s->logs.accept_date.tv_sec);
1127 if (iret < 0 || iret > dst + maxsize - tmplog)
1128 goto out;
1129 last_isspace = 0;
1130 tmplog += iret;
1131 } else {
1132 ret = ltoa_o(s->logs.accept_date.tv_sec, tmplog, dst + maxsize - tmplog);
1133 if (ret == NULL)
1134 goto out;
1135 tmplog = ret;
1136 last_isspace = 0;
1137 }
1138 break;
1139
William Lallemand1d705562012-03-12 12:46:41 +01001140 case LOG_FMT_MS: // %ms
William Lallemand5f232402012-04-05 18:02:55 +02001141 if (tmp->options & LOG_OPT_HEXA) {
1142 iret = snprintf(tmplog, dst + maxsize - tmplog, "%02X",(unsigned int)s->logs.accept_date.tv_usec/1000);
1143 if (iret < 0 || iret > dst + maxsize - tmplog)
1144 goto out;
1145 last_isspace = 0;
1146 tmplog += iret;
1147 } else {
1148 if ((dst + maxsize - tmplog) < 4)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001149 goto out;
Willy Tarreau9e60cd82013-01-24 01:18:16 +01001150 ret = utoa_pad((unsigned int)s->logs.accept_date.tv_usec/1000,
1151 tmplog, 4);
1152 if (ret == NULL)
William Lallemand51b5dca2012-03-26 17:52:55 +02001153 goto out;
Willy Tarreau9e60cd82013-01-24 01:18:16 +01001154 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001155 last_isspace = 0;
William Lallemand5f232402012-04-05 18:02:55 +02001156 }
1157 break;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001158
William Lallemand1d705562012-03-12 12:46:41 +01001159 case LOG_FMT_FRONTEND: // %f
William Lallemandbddd4fd2012-02-27 11:23:10 +01001160 src = fe->id;
William Lallemand5f232402012-04-05 18:02:55 +02001161 ret = lf_text(tmplog, src, dst + maxsize - tmplog, tmp);
William Lallemand1d705562012-03-12 12:46:41 +01001162 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001163 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001164 tmplog = ret;
William Lallemand51b5dca2012-03-26 17:52:55 +02001165 last_isspace = 0;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001166 break;
1167
Willy Tarreau773d65f2012-10-12 14:56:11 +02001168 case LOG_FMT_FRONTEND_XPRT: // %ft
1169 src = fe->id;
1170 if (tmp->options & LOG_OPT_QUOTE)
1171 LOGCHAR('"');
1172 iret = strlcpy2(tmplog, src, dst + maxsize - tmplog);
1173 if (iret == 0)
1174 goto out;
1175 tmplog += iret;
1176#ifdef USE_OPENSSL
1177 if (s->listener->xprt == &ssl_sock)
1178 LOGCHAR('~');
1179#endif
1180 if (tmp->options & LOG_OPT_QUOTE)
1181 LOGCHAR('"');
1182 last_isspace = 0;
1183 break;
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02001184#ifdef USE_OPENSSL
1185 case LOG_FMT_SSL_CIPHER: // %sslc
1186 src = NULL;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001187 conn = objt_conn(s->si[0].end);
1188 if (conn) {
1189 if (s->listener->xprt == &ssl_sock)
1190 src = ssl_sock_get_cipher_name(conn);
1191 }
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02001192 ret = lf_text(tmplog, src, dst + maxsize - tmplog, tmp);
1193 if (ret == NULL)
1194 goto out;
1195 tmplog = ret;
1196 last_isspace = 0;
1197 break;
Willy Tarreau773d65f2012-10-12 14:56:11 +02001198
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02001199 case LOG_FMT_SSL_VERSION: // %sslv
1200 src = NULL;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001201 conn = objt_conn(s->si[0].end);
1202 if (conn) {
1203 if (s->listener->xprt == &ssl_sock)
1204 src = ssl_sock_get_proto_version(conn);
1205 }
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02001206 ret = lf_text(tmplog, src, dst + maxsize - tmplog, tmp);
1207 if (ret == NULL)
1208 goto out;
1209 tmplog = ret;
1210 last_isspace = 0;
1211 break;
1212#endif
William Lallemand1d705562012-03-12 12:46:41 +01001213 case LOG_FMT_BACKEND: // %b
William Lallemandbddd4fd2012-02-27 11:23:10 +01001214 src = be->id;
William Lallemand5f232402012-04-05 18:02:55 +02001215 ret = lf_text(tmplog, src, dst + maxsize - tmplog, tmp);
William Lallemand1d705562012-03-12 12:46:41 +01001216 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001217 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001218 tmplog = ret;
William Lallemand51b5dca2012-03-26 17:52:55 +02001219 last_isspace = 0;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001220 break;
1221
William Lallemand1d705562012-03-12 12:46:41 +01001222 case LOG_FMT_SERVER: // %s
Willy Tarreaud79a3b22012-12-28 09:40:16 +01001223 switch (obj_type(s->target)) {
1224 case OBJ_TYPE_SERVER:
1225 src = objt_server(s->target)->id;
1226 break;
1227 case OBJ_TYPE_APPLET:
1228 src = objt_applet(s->target)->name;
1229 break;
1230 default:
1231 src = "<NOSRV>";
1232 break;
1233 }
William Lallemand5f232402012-04-05 18:02:55 +02001234 ret = lf_text(tmplog, src, dst + maxsize - tmplog, tmp);
William Lallemand1d705562012-03-12 12:46:41 +01001235 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001236 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001237 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001238 last_isspace = 0;
1239 break;
1240
William Lallemand1d705562012-03-12 12:46:41 +01001241 case LOG_FMT_TQ: // %Tq
William Lallemand5f232402012-04-05 18:02:55 +02001242 ret = ltoa_o(t_request, tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001243 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001244 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001245 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001246 last_isspace = 0;
1247 break;
1248
William Lallemand1d705562012-03-12 12:46:41 +01001249 case LOG_FMT_TW: // %Tw
1250 ret = ltoa_o((s->logs.t_queue >= 0) ? s->logs.t_queue - t_request : -1,
William Lallemand5f232402012-04-05 18:02:55 +02001251 tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001252 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001253 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001254 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001255 last_isspace = 0;
1256 break;
1257
William Lallemand1d705562012-03-12 12:46:41 +01001258 case LOG_FMT_TC: // %Tc
1259 ret = ltoa_o((s->logs.t_connect >= 0) ? s->logs.t_connect - s->logs.t_queue : -1,
William Lallemand5f232402012-04-05 18:02:55 +02001260 tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001261 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001262 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001263 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001264 last_isspace = 0;
1265 break;
1266
William Lallemand1d705562012-03-12 12:46:41 +01001267 case LOG_FMT_TR: // %Tr
1268 ret = ltoa_o((s->logs.t_data >= 0) ? s->logs.t_data - s->logs.t_connect : -1,
William Lallemand5f232402012-04-05 18:02:55 +02001269 tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001270 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001271 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001272 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001273 last_isspace = 0;
1274 break;
1275
William Lallemand1d705562012-03-12 12:46:41 +01001276 case LOG_FMT_TT: // %Tt
Willy Tarreaud79a3b22012-12-28 09:40:16 +01001277 if (!(fe->to_log & LW_BYTES))
William Lallemand1d705562012-03-12 12:46:41 +01001278 LOGCHAR('+');
William Lallemand5f232402012-04-05 18:02:55 +02001279 ret = ltoa_o(s->logs.t_close, tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001280 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001281 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001282 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001283 last_isspace = 0;
1284 break;
1285
Willy Tarreau2beef582012-12-20 17:22:52 +01001286 case LOG_FMT_STATUS: // %ST
William Lallemand5f232402012-04-05 18:02:55 +02001287 ret = ltoa_o(txn->status, tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001288 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001289 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001290 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001291 last_isspace = 0;
1292 break;
1293
William Lallemand1d705562012-03-12 12:46:41 +01001294 case LOG_FMT_BYTES: // %B
Willy Tarreaud79a3b22012-12-28 09:40:16 +01001295 if (!(fe->to_log & LW_BYTES))
William Lallemand1d705562012-03-12 12:46:41 +01001296 LOGCHAR('+');
William Lallemand5f232402012-04-05 18:02:55 +02001297 ret = lltoa(s->logs.bytes_out, tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001298 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001299 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001300 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001301 last_isspace = 0;
1302 break;
1303
Willy Tarreauc5259fd2012-12-20 15:38:04 +01001304 case LOG_FMT_BYTES_UP: // %U
Willy Tarreauc5259fd2012-12-20 15:38:04 +01001305 ret = lltoa(s->logs.bytes_in, tmplog, dst + maxsize - tmplog);
1306 if (ret == NULL)
1307 goto out;
1308 tmplog = ret;
1309 last_isspace = 0;
1310 break;
1311
Willy Tarreau2beef582012-12-20 17:22:52 +01001312 case LOG_FMT_CCLIENT: // %CC
William Lallemandbddd4fd2012-02-27 11:23:10 +01001313 src = txn->cli_cookie;
William Lallemand5f232402012-04-05 18:02:55 +02001314 ret = lf_text(tmplog, src, dst + maxsize - tmplog, tmp);
William Lallemand1d705562012-03-12 12:46:41 +01001315 if (ret == NULL)
William Lallemand51b5dca2012-03-26 17:52:55 +02001316 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001317 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001318 last_isspace = 0;
1319 break;
1320
Willy Tarreau2beef582012-12-20 17:22:52 +01001321 case LOG_FMT_CSERVER: // %CS
William Lallemandbddd4fd2012-02-27 11:23:10 +01001322 src = txn->srv_cookie;
William Lallemand5f232402012-04-05 18:02:55 +02001323 ret = lf_text(tmplog, src, dst + maxsize - tmplog, tmp);
William Lallemand1d705562012-03-12 12:46:41 +01001324 if (ret == NULL)
William Lallemand51b5dca2012-03-26 17:52:55 +02001325 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001326 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001327 last_isspace = 0;
1328 break;
1329
William Lallemand1d705562012-03-12 12:46:41 +01001330 case LOG_FMT_TERMSTATE: // %ts
Willy Tarreau6580c062012-03-12 15:09:42 +01001331 LOGCHAR(sess_term_cond[(s->flags & SN_ERR_MASK) >> SN_ERR_SHIFT]);
1332 LOGCHAR(sess_fin_state[(s->flags & SN_FINST_MASK) >> SN_FINST_SHIFT]);
1333 *tmplog = '\0';
1334 last_isspace = 0;
1335 break;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001336
William Lallemand1d705562012-03-12 12:46:41 +01001337 case LOG_FMT_TERMSTATE_CK: // %tsc, same as TS with cookie state (for mode HTTP)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001338 LOGCHAR(sess_term_cond[(s->flags & SN_ERR_MASK) >> SN_ERR_SHIFT]);
1339 LOGCHAR(sess_fin_state[(s->flags & SN_FINST_MASK) >> SN_FINST_SHIFT]);
Willy Tarreau67402132012-05-31 20:40:20 +02001340 LOGCHAR((be->ck_opts & PR_CK_ANY) ? sess_cookie[(txn->flags & TX_CK_MASK) >> TX_CK_SHIFT] : '-');
1341 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 +01001342 last_isspace = 0;
1343 break;
1344
William Lallemand1d705562012-03-12 12:46:41 +01001345 case LOG_FMT_ACTCONN: // %ac
William Lallemand5f232402012-04-05 18:02:55 +02001346 ret = ltoa_o(actconn, tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001347 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001348 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001349 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001350 last_isspace = 0;
1351 break;
1352
William Lallemand1d705562012-03-12 12:46:41 +01001353 case LOG_FMT_FECONN: // %fc
William Lallemand5f232402012-04-05 18:02:55 +02001354 ret = ltoa_o(fe->feconn, tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001355 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001356 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001357 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001358 last_isspace = 0;
1359 break;
1360
William Lallemand1d705562012-03-12 12:46:41 +01001361 case LOG_FMT_BECONN: // %bc
William Lallemand5f232402012-04-05 18:02:55 +02001362 ret = ltoa_o(be->beconn, tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001363 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001364 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001365 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001366 last_isspace = 0;
1367 break;
1368
William Lallemand1d705562012-03-12 12:46:41 +01001369 case LOG_FMT_SRVCONN: // %sc
Willy Tarreau54a08d32012-11-12 01:14:56 +01001370 ret = ultoa_o(objt_server(s->target) ?
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001371 objt_server(s->target)->cur_sess :
William Lallemand5f232402012-04-05 18:02:55 +02001372 0, tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001373 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001374 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001375 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001376 last_isspace = 0;
1377 break;
1378
William Lallemand1d705562012-03-12 12:46:41 +01001379 case LOG_FMT_RETRIES: // %rq
William Lallemandbddd4fd2012-02-27 11:23:10 +01001380 if (s->flags & SN_REDISP)
William Lallemand1d705562012-03-12 12:46:41 +01001381 LOGCHAR('+');
1382 ret = ltoa_o((s->req->cons->conn_retries>0) ?
1383 (be->conn_retries - s->req->cons->conn_retries) :
William Lallemand5f232402012-04-05 18:02:55 +02001384 be->conn_retries, tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001385 if (ret == NULL)
William Lallemand51b5dca2012-03-26 17:52:55 +02001386 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001387 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001388 last_isspace = 0;
1389 break;
1390
William Lallemand1d705562012-03-12 12:46:41 +01001391 case LOG_FMT_SRVQUEUE: // %sq
William Lallemand5f232402012-04-05 18:02:55 +02001392 ret = ltoa_o(s->logs.srv_queue_size, tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001393 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001394 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001395 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001396 last_isspace = 0;
1397 break;
1398
William Lallemand1d705562012-03-12 12:46:41 +01001399 case LOG_FMT_BCKQUEUE: // %bq
William Lallemand5f232402012-04-05 18:02:55 +02001400 ret = ltoa_o(s->logs.prx_queue_size, tmplog, dst + maxsize - tmplog);
William Lallemand1d705562012-03-12 12:46:41 +01001401 if (ret == NULL)
William Lallemandbddd4fd2012-02-27 11:23:10 +01001402 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001403 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001404 last_isspace = 0;
1405 break;
1406
William Lallemand1d705562012-03-12 12:46:41 +01001407 case LOG_FMT_HDRREQUEST: // %hr
William Lallemandbddd4fd2012-02-27 11:23:10 +01001408 /* request header */
Willy Tarreaud79a3b22012-12-28 09:40:16 +01001409 if (fe->nb_req_cap && txn->req.cap) {
William Lallemandbddd4fd2012-02-27 11:23:10 +01001410 if (tmp->options & LOG_OPT_QUOTE)
1411 LOGCHAR('"');
1412 LOGCHAR('{');
1413 for (hdr = 0; hdr < fe->nb_req_cap; hdr++) {
1414 if (hdr)
1415 LOGCHAR('|');
William Lallemand51b5dca2012-03-26 17:52:55 +02001416 if (txn->req.cap[hdr] != NULL) {
William Lallemand1d705562012-03-12 12:46:41 +01001417 ret = encode_string(tmplog, dst + maxsize,
William Lallemandbddd4fd2012-02-27 11:23:10 +01001418 '#', hdr_encode_map, txn->req.cap[hdr]);
William Lallemand1d705562012-03-12 12:46:41 +01001419 if (ret == NULL || *ret != '\0')
William Lallemand51b5dca2012-03-26 17:52:55 +02001420 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001421 tmplog = ret;
William Lallemand51b5dca2012-03-26 17:52:55 +02001422 }
William Lallemandbddd4fd2012-02-27 11:23:10 +01001423 }
1424 LOGCHAR('}');
William Lallemand51b5dca2012-03-26 17:52:55 +02001425 if (tmp->options & LOG_OPT_QUOTE)
1426 LOGCHAR('"');
William Lallemandbddd4fd2012-02-27 11:23:10 +01001427 last_isspace = 0;
1428 }
William Lallemandbddd4fd2012-02-27 11:23:10 +01001429 break;
1430
William Lallemand1d705562012-03-12 12:46:41 +01001431 case LOG_FMT_HDRREQUESTLIST: // %hrl
William Lallemandbddd4fd2012-02-27 11:23:10 +01001432 /* request header list */
Willy Tarreaud79a3b22012-12-28 09:40:16 +01001433 if (fe->nb_req_cap && txn->req.cap) {
William Lallemandbddd4fd2012-02-27 11:23:10 +01001434 for (hdr = 0; hdr < fe->nb_req_cap; hdr++) {
1435 if (hdr > 0)
1436 LOGCHAR(' ');
1437 if (tmp->options & LOG_OPT_QUOTE)
1438 LOGCHAR('"');
1439 if (txn->req.cap[hdr] != NULL) {
William Lallemand1d705562012-03-12 12:46:41 +01001440 ret = encode_string(tmplog, dst + maxsize,
William Lallemandbddd4fd2012-02-27 11:23:10 +01001441 '#', hdr_encode_map, txn->req.cap[hdr]);
William Lallemand1d705562012-03-12 12:46:41 +01001442 if (ret == NULL || *ret != '\0')
William Lallemand51b5dca2012-03-26 17:52:55 +02001443 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001444 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001445 } else if (!(tmp->options & LOG_OPT_QUOTE))
1446 LOGCHAR('-');
1447 if (tmp->options & LOG_OPT_QUOTE)
1448 LOGCHAR('"');
William Lallemandbddd4fd2012-02-27 11:23:10 +01001449 last_isspace = 0;
1450 }
1451 }
1452 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001453
William Lallemand1d705562012-03-12 12:46:41 +01001454
1455 case LOG_FMT_HDRRESPONS: // %hs
William Lallemandbddd4fd2012-02-27 11:23:10 +01001456 /* response header */
Willy Tarreaud79a3b22012-12-28 09:40:16 +01001457 if (fe->nb_rsp_cap && txn->rsp.cap) {
William Lallemandbddd4fd2012-02-27 11:23:10 +01001458 if (tmp->options & LOG_OPT_QUOTE)
1459 LOGCHAR('"');
1460 LOGCHAR('{');
1461 for (hdr = 0; hdr < fe->nb_rsp_cap; hdr++) {
1462 if (hdr)
1463 LOGCHAR('|');
William Lallemand51b5dca2012-03-26 17:52:55 +02001464 if (txn->rsp.cap[hdr] != NULL) {
William Lallemand1d705562012-03-12 12:46:41 +01001465 ret = encode_string(tmplog, dst + maxsize,
1466 '#', hdr_encode_map, txn->rsp.cap[hdr]);
1467 if (ret == NULL || *ret != '\0')
William Lallemand51b5dca2012-03-26 17:52:55 +02001468 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001469 tmplog = ret;
William Lallemand51b5dca2012-03-26 17:52:55 +02001470 }
William Lallemandbddd4fd2012-02-27 11:23:10 +01001471 }
1472 LOGCHAR('}');
1473 last_isspace = 0;
1474 if (tmp->options & LOG_OPT_QUOTE)
1475 LOGCHAR('"');
1476 }
William Lallemandbddd4fd2012-02-27 11:23:10 +01001477 break;
1478
William Lallemand1d705562012-03-12 12:46:41 +01001479 case LOG_FMT_HDRRESPONSLIST: // %hsl
William Lallemandbddd4fd2012-02-27 11:23:10 +01001480 /* response header list */
Willy Tarreaud79a3b22012-12-28 09:40:16 +01001481 if (fe->nb_rsp_cap && txn->rsp.cap) {
William Lallemandbddd4fd2012-02-27 11:23:10 +01001482 for (hdr = 0; hdr < fe->nb_rsp_cap; hdr++) {
1483 if (hdr > 0)
1484 LOGCHAR(' ');
1485 if (tmp->options & LOG_OPT_QUOTE)
1486 LOGCHAR('"');
1487 if (txn->rsp.cap[hdr] != NULL) {
William Lallemand1d705562012-03-12 12:46:41 +01001488 ret = encode_string(tmplog, dst + maxsize,
1489 '#', hdr_encode_map, txn->rsp.cap[hdr]);
1490 if (ret == NULL || *ret != '\0')
William Lallemand51b5dca2012-03-26 17:52:55 +02001491 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001492 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001493 } else if (!(tmp->options & LOG_OPT_QUOTE))
1494 LOGCHAR('-');
1495 if (tmp->options & LOG_OPT_QUOTE)
1496 LOGCHAR('"');
William Lallemandbddd4fd2012-02-27 11:23:10 +01001497 last_isspace = 0;
1498 }
1499 }
1500 break;
1501
William Lallemand1d705562012-03-12 12:46:41 +01001502 case LOG_FMT_REQ: // %r
William Lallemandbddd4fd2012-02-27 11:23:10 +01001503 /* Request */
1504 if (tmp->options & LOG_OPT_QUOTE)
1505 LOGCHAR('"');
1506 uri = txn->uri ? txn->uri : "<BADREQ>";
William Lallemand1d705562012-03-12 12:46:41 +01001507 ret = encode_string(tmplog, dst + maxsize,
William Lallemandbddd4fd2012-02-27 11:23:10 +01001508 '#', url_encode_map, uri);
William Lallemand1d705562012-03-12 12:46:41 +01001509 if (ret == NULL || *ret != '\0')
William Lallemand51b5dca2012-03-26 17:52:55 +02001510 goto out;
William Lallemand1d705562012-03-12 12:46:41 +01001511 tmplog = ret;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001512 if (tmp->options & LOG_OPT_QUOTE)
1513 LOGCHAR('"');
William Lallemandbddd4fd2012-02-27 11:23:10 +01001514 last_isspace = 0;
1515 break;
William Lallemand5f232402012-04-05 18:02:55 +02001516
1517 case LOG_FMT_COUNTER: // %rt
1518 if (tmp->options & LOG_OPT_HEXA) {
Willy Tarreau1f0da242014-01-25 11:01:50 +01001519 iret = snprintf(tmplog, dst + maxsize - tmplog, "%04X", s->uniq_id);
William Lallemand5f232402012-04-05 18:02:55 +02001520 if (iret < 0 || iret > dst + maxsize - tmplog)
1521 goto out;
1522 last_isspace = 0;
1523 tmplog += iret;
1524 } else {
Willy Tarreau1f0da242014-01-25 11:01:50 +01001525 ret = ltoa_o(s->uniq_id, tmplog, dst + maxsize - tmplog);
William Lallemand5f232402012-04-05 18:02:55 +02001526 if (ret == NULL)
1527 goto out;
1528 tmplog = ret;
1529 last_isspace = 0;
1530 }
1531 break;
1532
1533 case LOG_FMT_HOSTNAME: // %H
1534 src = hostname;
1535 ret = lf_text(tmplog, src, dst + maxsize - tmplog, tmp);
1536 if (ret == NULL)
1537 goto out;
1538 tmplog = ret;
1539 last_isspace = 0;
1540 break;
1541
1542 case LOG_FMT_PID: // %pid
1543 if (tmp->options & LOG_OPT_HEXA) {
1544 iret = snprintf(tmplog, dst + maxsize - tmplog, "%04X", pid);
1545 if (iret < 0 || iret > dst + maxsize - tmplog)
1546 goto out;
1547 last_isspace = 0;
1548 tmplog += iret;
1549 } else {
1550 ret = ltoa_o(pid, tmplog, dst + maxsize - tmplog);
1551 if (ret == NULL)
1552 goto out;
1553 tmplog = ret;
1554 last_isspace = 0;
1555 }
1556 break;
William Lallemanda73203e2012-03-12 12:48:57 +01001557
1558 case LOG_FMT_UNIQUEID: // %ID
William Lallemand5b7ea3a2013-08-28 15:44:19 +02001559 ret = NULL;
William Lallemanda73203e2012-03-12 12:48:57 +01001560 src = s->unique_id;
Thierry FOURNIER1be69102014-04-15 01:38:48 +02001561 ret = lf_text(tmplog, src, maxsize - (tmplog - dst), tmp);
William Lallemanda73203e2012-03-12 12:48:57 +01001562 if (ret == NULL)
1563 goto out;
1564 tmplog = ret;
1565 last_isspace = 0;
1566 break;
1567
William Lallemandbddd4fd2012-02-27 11:23:10 +01001568 }
1569 }
1570
1571out:
William Lallemand1d705562012-03-12 12:46:41 +01001572 /* *tmplog is a unused character */
1573 *tmplog = '\0';
Willy Tarreaudf974472012-12-28 02:44:01 +01001574 return tmplog - dst;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001575
Willy Tarreaubaaee002006-06-26 02:48:02 +02001576}
1577
William Lallemand1d705562012-03-12 12:46:41 +01001578/*
1579 * send a log for the session when we have enough info about it.
1580 * Will not log if the frontend has no log defined.
1581 */
1582void sess_log(struct session *s)
1583{
1584 char *tmplog;
1585 int size, err, level;
1586
1587 /* if we don't want to log normal traffic, return now */
Willy Tarreau570f2212013-06-10 16:42:09 +02001588 err = (s->flags & SN_REDISP) ||
1589 ((s->flags & SN_ERR_MASK) > SN_ERR_LOCAL) ||
1590 (((s->flags & SN_ERR_MASK) == SN_ERR_NONE) &&
1591 (s->req->cons->conn_retries != s->be->conn_retries)) ||
1592 ((s->fe->mode == PR_MODE_HTTP) && s->txn.status >= 500);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001593
William Lallemand1d705562012-03-12 12:46:41 +01001594 if (!err && (s->fe->options2 & PR_O2_NOLOGNORM))
1595 return;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001596
William Lallemand1d705562012-03-12 12:46:41 +01001597 if (LIST_ISEMPTY(&s->fe->logsrvs))
1598 return;
William Lallemandbddd4fd2012-02-27 11:23:10 +01001599
Willy Tarreauabcd5142013-06-11 17:18:02 +02001600 if (s->logs.level) { /* loglevel was overridden */
1601 if (s->logs.level == -1) {
1602 s->logs.logwait = 0; /* logs disabled */
1603 return;
1604 }
1605 level = s->logs.level - 1;
1606 }
1607 else {
1608 level = LOG_INFO;
1609 if (err && (s->fe->options2 & PR_O2_LOGERRORS))
1610 level = LOG_ERR;
1611 }
William Lallemand1d705562012-03-12 12:46:41 +01001612
William Lallemand5b7ea3a2013-08-28 15:44:19 +02001613 /* if unique-id was not generated */
1614 if (!s->unique_id && !LIST_ISEMPTY(&s->fe->format_unique_id)) {
1615 if ((s->unique_id = pool_alloc2(pool2_uniqueid)) != NULL)
1616 build_logline(s, s->unique_id, UNIQUEID_LEN, &s->fe->format_unique_id);
1617 }
1618
William Lallemand1d705562012-03-12 12:46:41 +01001619 tmplog = update_log_hdr();
1620 size = tmplog - logline;
Willy Tarreaudc2695c2014-06-27 18:10:07 +02001621 size += build_logline(s, tmplog, global.max_syslog_len - size, &s->fe->logformat);
William Lallemand1d705562012-03-12 12:46:41 +01001622 if (size > 0) {
Willy Tarreaudf974472012-12-28 02:44:01 +01001623 __send_log(s->fe, level, logline, size + 1);
William Lallemand1d705562012-03-12 12:46:41 +01001624 s->logs.logwait = 0;
1625 }
1626}
William Lallemandbddd4fd2012-02-27 11:23:10 +01001627
Willy Tarreaubaaee002006-06-26 02:48:02 +02001628/*
1629 * Local variables:
1630 * c-indent-level: 8
1631 * c-basic-offset: 8
1632 * End:
1633 */