blob: 2d4ca84f175b8d1c85d52499f759d7ed12bc1bc2 [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>
Willy Tarreaubaaee002006-06-26 02:48:02 +020031#include <types/log.h>
32#include <types/proxy.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020033#include <types/stream.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020034
Willy Tarreau332f8bf2007-05-13 21:36:56 +020035extern struct pool_head *pool2_requri;
William Lallemanda73203e2012-03-12 12:48:57 +010036extern struct pool_head *pool2_uniqueid;
Willy Tarreau332f8bf2007-05-13 21:36:56 +020037
William Lallemand723b73a2012-02-08 16:37:49 +010038extern char *log_format;
William Lallemandbddd4fd2012-02-27 11:23:10 +010039extern char default_tcp_log_format[];
William Lallemand723b73a2012-02-08 16:37:49 +010040extern char default_http_log_format[];
41extern char clf_http_log_format[];
Dragan Dosen1322d092015-09-22 16:05:32 +020042
Dragan Dosen0b85ece2015-09-25 19:17:44 +020043extern char default_rfc5424_sd_log_format[];
44
Dragan Dosen59cee972015-09-19 22:09:02 +020045extern char *logheader;
Dragan Dosen1322d092015-09-22 16:05:32 +020046extern char *logheader_rfc5424;
Willy Tarreau18324f52014-06-27 18:10:07 +020047extern char *logline;
Dragan Dosen0b85ece2015-09-25 19:17:44 +020048extern char *logline_rfc5424;
William Lallemand723b73a2012-02-08 16:37:49 +010049
William Lallemandbddd4fd2012-02-27 11:23:10 +010050
Dragan Dosen835b9212016-02-12 13:23:03 +010051/*
52 * Initializes some log data.
53 */
54void init_log();
55
56/*
57 * Builds a log line.
58 */
Willy Tarreau87b09662015-04-03 00:22:06 +020059int build_logline(struct stream *s, char *dst, size_t maxsize, struct list *list_format);
William Lallemand1d705562012-03-12 12:46:41 +010060
William Lallemandbddd4fd2012-02-27 11:23:10 +010061/*
Willy Tarreau87b09662015-04-03 00:22:06 +020062 * send a log for the stream when we have enough info about it.
William Lallemandbddd4fd2012-02-27 11:23:10 +010063 * Will not log if the frontend has no log defined.
64 */
Willy Tarreau87b09662015-04-03 00:22:06 +020065void strm_log(struct stream *s);
William Lallemandbddd4fd2012-02-27 11:23:10 +010066
William Lallemand723b73a2012-02-08 16:37:49 +010067/*
William Lallemand723b73a2012-02-08 16:37:49 +010068 * add to the logformat linked list
69 */
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +010070int add_to_logformat_list(char *start, char *end, int type, struct list *list_format, char **err);
William Lallemand723b73a2012-02-08 16:37:49 +010071
72/*
73 * Parse the log_format string and fill a linked list.
74 * Variable name are preceded by % and composed by characters [a-zA-Z0-9]* : %varname
75 * You can set arguments using { } : %{many arguments}varname
76 */
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +010077int parse_logformat_string(const char *str, struct proxy *curproxy, struct list *list_format, int options, int cap, char **err);
Willy Tarreaubaaee002006-06-26 02:48:02 +020078/*
79 * Displays the message on stderr with the date and pid. Overrides the quiet
80 * mode during startup.
81 */
Willy Tarreau40d25162009-04-03 12:01:47 +020082void Alert(const char *fmt, ...)
83 __attribute__ ((format(printf, 1, 2)));
Willy Tarreaubaaee002006-06-26 02:48:02 +020084
85/*
86 * Displays the message on stderr with the date and pid.
87 */
Willy Tarreau40d25162009-04-03 12:01:47 +020088void Warning(const char *fmt, ...)
89 __attribute__ ((format(printf, 1, 2)));
Willy Tarreaubaaee002006-06-26 02:48:02 +020090
91/*
92 * Displays the message on <out> only if quiet mode is not set.
93 */
Willy Tarreau40d25162009-04-03 12:01:47 +020094void qfprintf(FILE *out, const char *fmt, ...)
95 __attribute__ ((format(printf, 2, 3)));
Willy Tarreaubaaee002006-06-26 02:48:02 +020096
William Lallemand2a4a44f2012-02-06 16:00:33 +010097/*
98 * This function adds a header to the message and sends the syslog message
99 * using a printf format string
100 */
101void send_log(struct proxy *p, int level, const char *format, ...)
102 __attribute__ ((format(printf, 3, 4)));
103
Willy Tarreaubaaee002006-06-26 02:48:02 +0200104/*
105 * This function sends a syslog message to both log servers of a proxy,
106 * or to global log servers if the proxy is NULL.
107 * It also tries not to waste too much time computing the message header.
108 * It doesn't care about errors nor does it report them.
109 */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200110
Dragan Dosen0b85ece2015-09-25 19:17:44 +0200111void __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 +0200112
113/*
Dragan Dosen1322d092015-09-22 16:05:32 +0200114 * returns log format for <fmt> or -1 if not found.
115 */
116int get_log_format(const char *fmt);
117
118/*
Willy Tarreaubaaee002006-06-26 02:48:02 +0200119 * returns log level for <lev> or -1 if not found.
120 */
121int get_log_level(const char *lev);
122
123/*
124 * returns log facility for <fac> or -1 if not found.
125 */
126int get_log_facility(const char *fac);
127
William Lallemanda1cc3812012-02-08 16:38:44 +0100128/*
129 * Write a string in the log string
William Lallemand5f232402012-04-05 18:02:55 +0200130 * Take cares of quote options
William Lallemanda1cc3812012-02-08 16:38:44 +0100131 *
132 * Return the adress of the \0 character, or NULL on error
133 */
Willy Tarreau2b0108a2012-12-21 19:23:44 +0100134char *lf_text_len(char *dst, const char *src, size_t len, size_t size, struct logformat_node *node);
William Lallemand5f232402012-04-05 18:02:55 +0200135
136/*
137 * Write a IP adress to the log string
138 * +X option write in hexadecimal notation, most signifant byte on the left
139 */
140char *lf_ip(char *dst, struct sockaddr *sockaddr, size_t size, struct logformat_node *node);
141
142/*
143 * Write a port to the log
144 * +X option write in hexadecimal notation, most signifant byte on the left
145 */
146char *lf_port(char *dst, struct sockaddr *sockaddr, size_t size, struct logformat_node *node);
147
William Lallemanda1cc3812012-02-08 16:38:44 +0100148
Willy Tarreaubaaee002006-06-26 02:48:02 +0200149#endif /* _PROTO_LOG_H */
150
151/*
152 * Local variables:
153 * c-indent-level: 8
154 * c-basic-offset: 8
155 * End:
156 */