blob: e12743165630c155db4152f5906e4f7d0519925a [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 include/proto/log.h
3 This file contains definitions of log-related functions, structures,
4 and macros.
5
Willy Tarreauec6c5df2008-07-15 00:22:45 +02006 Copyright (C) 2000-2008 Willy Tarreau - w@1wt.eu
Willy Tarreaubaaee002006-06-26 02:48:02 +02007
8 This library is free software; you can redistribute it and/or
9 modify it under the terms of the GNU Lesser General Public
10 License as published by the Free Software Foundation, version 2.1
11 exclusively.
12
13 This library is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public
19 License along with this library; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21*/
22
23#ifndef _PROTO_LOG_H
24#define _PROTO_LOG_H
25
26#include <stdio.h>
27#include <syslog.h>
28
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020029#include <common/config.h>
Willy Tarreau332f8bf2007-05-13 21:36:56 +020030#include <common/memory.h>
Christopher Fauletf8188c62017-06-02 16:20:16 +020031#include <common/hathreads.h>
32
Willy Tarreaubaaee002006-06-26 02:48:02 +020033#include <types/log.h>
34#include <types/proxy.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020035#include <types/stream.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020036
Willy Tarreau43c538e2018-09-05 14:58:15 +020037#include <proto/stream.h>
38
Willy Tarreaubafbe012017-11-24 17:34:44 +010039extern struct pool_head *pool_head_requri;
40extern struct pool_head *pool_head_uniqueid;
Willy Tarreau332f8bf2007-05-13 21:36:56 +020041
William Lallemand723b73a2012-02-08 16:37:49 +010042extern char *log_format;
William Lallemandbddd4fd2012-02-27 11:23:10 +010043extern char default_tcp_log_format[];
William Lallemand723b73a2012-02-08 16:37:49 +010044extern char default_http_log_format[];
45extern char clf_http_log_format[];
Dragan Dosen1322d092015-09-22 16:05:32 +020046
Dragan Dosen0b85ece2015-09-25 19:17:44 +020047extern char default_rfc5424_sd_log_format[];
48
Willy Tarreau13ef7732018-11-12 07:25:28 +010049extern unsigned int dropped_logs;
50
Christopher Fauletf8188c62017-06-02 16:20:16 +020051extern THREAD_LOCAL char *logheader;
52extern THREAD_LOCAL char *logheader_rfc5424;
53extern THREAD_LOCAL char *logline;
54extern THREAD_LOCAL char *logline_rfc5424;
William Lallemand723b73a2012-02-08 16:37:49 +010055
William Lallemandbddd4fd2012-02-27 11:23:10 +010056
Dragan Dosen835b9212016-02-12 13:23:03 +010057/*
58 * Initializes some log data.
59 */
60void init_log();
61
Christopher Faulet0132d062017-07-26 15:33:35 +020062
63/* Initialize/Deinitialize log buffers used for syslog messages */
64int init_log_buffers();
65void deinit_log_buffers();
66
Dragan Dosen835b9212016-02-12 13:23:03 +010067/*
68 * Builds a log line.
69 */
Willy Tarreau43c538e2018-09-05 14:58:15 +020070int sess_build_logline(struct session *sess, struct stream *s, char *dst, size_t maxsize, struct list *list_format);
71
72static inline int build_logline(struct stream *s, char *dst, size_t maxsize, struct list *list_format)
73{
74 return sess_build_logline(strm_sess(s), s, dst, maxsize, list_format);
75}
76
William Lallemand1d705562012-03-12 12:46:41 +010077
William Lallemandbddd4fd2012-02-27 11:23:10 +010078/*
Willy Tarreau87b09662015-04-03 00:22:06 +020079 * send a log for the stream when we have enough info about it.
William Lallemandbddd4fd2012-02-27 11:23:10 +010080 * Will not log if the frontend has no log defined.
81 */
Willy Tarreau87b09662015-04-03 00:22:06 +020082void strm_log(struct stream *s);
Willy Tarreau53839352018-09-05 19:51:10 +020083void sess_log(struct session *sess);
William Lallemandbddd4fd2012-02-27 11:23:10 +010084
William Lallemand723b73a2012-02-08 16:37:49 +010085/*
William Lallemand723b73a2012-02-08 16:37:49 +010086 * add to the logformat linked list
87 */
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +010088int add_to_logformat_list(char *start, char *end, int type, struct list *list_format, char **err);
William Lallemand723b73a2012-02-08 16:37:49 +010089
90/*
91 * Parse the log_format string and fill a linked list.
92 * Variable name are preceded by % and composed by characters [a-zA-Z0-9]* : %varname
93 * You can set arguments using { } : %{many arguments}varname
94 */
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +010095int parse_logformat_string(const char *str, struct proxy *curproxy, struct list *list_format, int options, int cap, char **err);
Christopher Faulet4b0b79d2018-03-26 15:54:32 +020096
97/* Parse "log" keyword and update the linked list. */
98int parse_logsrv(char **args, struct list *logsrvs, int do_del, char **err);
99
Willy Tarreaubaaee002006-06-26 02:48:02 +0200100/*
101 * Displays the message on stderr with the date and pid. Overrides the quiet
102 * mode during startup.
103 */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100104void ha_alert(const char *fmt, ...)
Willy Tarreau40d25162009-04-03 12:01:47 +0200105 __attribute__ ((format(printf, 1, 2)));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200106
107/*
108 * Displays the message on stderr with the date and pid.
109 */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100110void ha_warning(const char *fmt, ...)
Willy Tarreau40d25162009-04-03 12:01:47 +0200111 __attribute__ ((format(printf, 1, 2)));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200112
113/*
William Lallemand9c56a222018-11-21 18:04:52 +0100114 * Displays the message on stderr with the date and pid.
115 */
116void ha_notice(const char *fmt, ...)
117 __attribute__ ((format(printf, 1, 2)));
118
119/*
Willy Tarreaubaaee002006-06-26 02:48:02 +0200120 * Displays the message on <out> only if quiet mode is not set.
121 */
Willy Tarreau40d25162009-04-03 12:01:47 +0200122void qfprintf(FILE *out, const char *fmt, ...)
123 __attribute__ ((format(printf, 2, 3)));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200124
William Lallemand2a4a44f2012-02-06 16:00:33 +0100125/*
126 * This function adds a header to the message and sends the syslog message
127 * using a printf format string
128 */
129void send_log(struct proxy *p, int level, const char *format, ...)
130 __attribute__ ((format(printf, 3, 4)));
131
Willy Tarreaubaaee002006-06-26 02:48:02 +0200132/*
133 * This function sends a syslog message to both log servers of a proxy,
134 * or to global log servers if the proxy is NULL.
135 * It also tries not to waste too much time computing the message header.
136 * It doesn't care about errors nor does it report them.
137 */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200138
Dragan Dosen0b85ece2015-09-25 19:17:44 +0200139void __send_log(struct proxy *p, int level, char *message, size_t size, char *sd, size_t sd_size);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200140
141/*
Dragan Dosen1322d092015-09-22 16:05:32 +0200142 * returns log format for <fmt> or -1 if not found.
143 */
144int get_log_format(const char *fmt);
145
146/*
Willy Tarreaubaaee002006-06-26 02:48:02 +0200147 * returns log level for <lev> or -1 if not found.
148 */
149int get_log_level(const char *lev);
150
151/*
152 * returns log facility for <fac> or -1 if not found.
153 */
154int get_log_facility(const char *fac);
155
William Lallemanda1cc3812012-02-08 16:38:44 +0100156/*
157 * Write a string in the log string
William Lallemand5f232402012-04-05 18:02:55 +0200158 * Take cares of quote options
William Lallemanda1cc3812012-02-08 16:38:44 +0100159 *
Joseph Herlant85b40592018-11-15 12:10:04 -0800160 * Return the address of the \0 character, or NULL on error
William Lallemanda1cc3812012-02-08 16:38:44 +0100161 */
Olivier Houchard54620522018-09-06 18:14:09 +0200162char *lf_text_len(char *dst, const char *src, size_t len, size_t size, const struct logformat_node *node);
William Lallemand5f232402012-04-05 18:02:55 +0200163
164/*
Joseph Herlant85b40592018-11-15 12:10:04 -0800165 * Write a IP address to the log string
William Lallemand5f232402012-04-05 18:02:55 +0200166 * +X option write in hexadecimal notation, most signifant byte on the left
167 */
Willy Tarreau26ffa852018-09-05 15:23:10 +0200168char *lf_ip(char *dst, const struct sockaddr *sockaddr, size_t size, const struct logformat_node *node);
William Lallemand5f232402012-04-05 18:02:55 +0200169
170/*
171 * Write a port to the log
172 * +X option write in hexadecimal notation, most signifant byte on the left
173 */
Willy Tarreau26ffa852018-09-05 15:23:10 +0200174char *lf_port(char *dst, const struct sockaddr *sockaddr, size_t size, const struct logformat_node *node);
William Lallemand5f232402012-04-05 18:02:55 +0200175
William Lallemanda1cc3812012-02-08 16:38:44 +0100176
Willy Tarreaubaaee002006-06-26 02:48:02 +0200177#endif /* _PROTO_LOG_H */
178
179/*
180 * Local variables:
181 * c-indent-level: 8
182 * c-basic-offset: 8
183 * End:
184 */