Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
| 2 | include/proto/log.h |
| 3 | This file contains definitions of log-related functions, structures, |
| 4 | and macros. |
| 5 | |
Willy Tarreau | ec6c5df | 2008-07-15 00:22:45 +0200 | [diff] [blame] | 6 | Copyright (C) 2000-2008 Willy Tarreau - w@1wt.eu |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7 | |
| 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 Tarreau | e3ba5f0 | 2006-06-29 18:54:54 +0200 | [diff] [blame] | 29 | #include <common/config.h> |
Willy Tarreau | 332f8bf | 2007-05-13 21:36:56 +0200 | [diff] [blame] | 30 | #include <common/memory.h> |
Christopher Faulet | f8188c6 | 2017-06-02 16:20:16 +0200 | [diff] [blame] | 31 | #include <common/hathreads.h> |
| 32 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 33 | #include <types/log.h> |
| 34 | #include <types/proxy.h> |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 35 | #include <types/stream.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 36 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 37 | extern struct pool_head *pool_head_requri; |
| 38 | extern struct pool_head *pool_head_uniqueid; |
Willy Tarreau | 332f8bf | 2007-05-13 21:36:56 +0200 | [diff] [blame] | 39 | |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 40 | extern char *log_format; |
William Lallemand | bddd4fd | 2012-02-27 11:23:10 +0100 | [diff] [blame] | 41 | extern char default_tcp_log_format[]; |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 42 | extern char default_http_log_format[]; |
| 43 | extern char clf_http_log_format[]; |
Dragan Dosen | 1322d09 | 2015-09-22 16:05:32 +0200 | [diff] [blame] | 44 | |
Dragan Dosen | 0b85ece | 2015-09-25 19:17:44 +0200 | [diff] [blame] | 45 | extern char default_rfc5424_sd_log_format[]; |
| 46 | |
Christopher Faulet | f8188c6 | 2017-06-02 16:20:16 +0200 | [diff] [blame] | 47 | extern THREAD_LOCAL char *logheader; |
| 48 | extern THREAD_LOCAL char *logheader_rfc5424; |
| 49 | extern THREAD_LOCAL char *logline; |
| 50 | extern THREAD_LOCAL char *logline_rfc5424; |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 51 | |
William Lallemand | bddd4fd | 2012-02-27 11:23:10 +0100 | [diff] [blame] | 52 | |
Dragan Dosen | 835b921 | 2016-02-12 13:23:03 +0100 | [diff] [blame] | 53 | /* |
| 54 | * Initializes some log data. |
| 55 | */ |
| 56 | void init_log(); |
| 57 | |
Christopher Faulet | 0132d06 | 2017-07-26 15:33:35 +0200 | [diff] [blame] | 58 | |
| 59 | /* Initialize/Deinitialize log buffers used for syslog messages */ |
| 60 | int init_log_buffers(); |
| 61 | void deinit_log_buffers(); |
| 62 | |
Dragan Dosen | 835b921 | 2016-02-12 13:23:03 +0100 | [diff] [blame] | 63 | /* |
| 64 | * Builds a log line. |
| 65 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 66 | int build_logline(struct stream *s, char *dst, size_t maxsize, struct list *list_format); |
William Lallemand | 1d70556 | 2012-03-12 12:46:41 +0100 | [diff] [blame] | 67 | |
William Lallemand | bddd4fd | 2012-02-27 11:23:10 +0100 | [diff] [blame] | 68 | /* |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 69 | * send a log for the stream when we have enough info about it. |
William Lallemand | bddd4fd | 2012-02-27 11:23:10 +0100 | [diff] [blame] | 70 | * Will not log if the frontend has no log defined. |
| 71 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 72 | void strm_log(struct stream *s); |
William Lallemand | bddd4fd | 2012-02-27 11:23:10 +0100 | [diff] [blame] | 73 | |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 74 | /* |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 75 | * add to the logformat linked list |
| 76 | */ |
Thierry FOURNIER / OZON.IO | 8a4e442 | 2016-11-23 00:41:28 +0100 | [diff] [blame] | 77 | int add_to_logformat_list(char *start, char *end, int type, struct list *list_format, char **err); |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 78 | |
| 79 | /* |
| 80 | * Parse the log_format string and fill a linked list. |
| 81 | * Variable name are preceded by % and composed by characters [a-zA-Z0-9]* : %varname |
| 82 | * You can set arguments using { } : %{many arguments}varname |
| 83 | */ |
Thierry FOURNIER / OZON.IO | 8a4e442 | 2016-11-23 00:41:28 +0100 | [diff] [blame] | 84 | int parse_logformat_string(const char *str, struct proxy *curproxy, struct list *list_format, int options, int cap, char **err); |
Christopher Faulet | 4b0b79d | 2018-03-26 15:54:32 +0200 | [diff] [blame] | 85 | |
| 86 | /* Parse "log" keyword and update the linked list. */ |
| 87 | int parse_logsrv(char **args, struct list *logsrvs, int do_del, char **err); |
| 88 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 89 | /* |
| 90 | * Displays the message on stderr with the date and pid. Overrides the quiet |
| 91 | * mode during startup. |
| 92 | */ |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 93 | void ha_alert(const char *fmt, ...) |
Willy Tarreau | 40d2516 | 2009-04-03 12:01:47 +0200 | [diff] [blame] | 94 | __attribute__ ((format(printf, 1, 2))); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 95 | |
| 96 | /* |
| 97 | * Displays the message on stderr with the date and pid. |
| 98 | */ |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 99 | void ha_warning(const char *fmt, ...) |
Willy Tarreau | 40d2516 | 2009-04-03 12:01:47 +0200 | [diff] [blame] | 100 | __attribute__ ((format(printf, 1, 2))); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 101 | |
| 102 | /* |
| 103 | * Displays the message on <out> only if quiet mode is not set. |
| 104 | */ |
Willy Tarreau | 40d2516 | 2009-04-03 12:01:47 +0200 | [diff] [blame] | 105 | void qfprintf(FILE *out, const char *fmt, ...) |
| 106 | __attribute__ ((format(printf, 2, 3))); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 107 | |
William Lallemand | 2a4a44f | 2012-02-06 16:00:33 +0100 | [diff] [blame] | 108 | /* |
| 109 | * This function adds a header to the message and sends the syslog message |
| 110 | * using a printf format string |
| 111 | */ |
| 112 | void send_log(struct proxy *p, int level, const char *format, ...) |
| 113 | __attribute__ ((format(printf, 3, 4))); |
| 114 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 115 | /* |
| 116 | * This function sends a syslog message to both log servers of a proxy, |
| 117 | * or to global log servers if the proxy is NULL. |
| 118 | * It also tries not to waste too much time computing the message header. |
| 119 | * It doesn't care about errors nor does it report them. |
| 120 | */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 121 | |
Dragan Dosen | 0b85ece | 2015-09-25 19:17:44 +0200 | [diff] [blame] | 122 | void __send_log(struct proxy *p, int level, char *message, size_t size, char *sd, size_t sd_size); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 123 | |
| 124 | /* |
Dragan Dosen | 1322d09 | 2015-09-22 16:05:32 +0200 | [diff] [blame] | 125 | * returns log format for <fmt> or -1 if not found. |
| 126 | */ |
| 127 | int get_log_format(const char *fmt); |
| 128 | |
| 129 | /* |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 130 | * returns log level for <lev> or -1 if not found. |
| 131 | */ |
| 132 | int get_log_level(const char *lev); |
| 133 | |
| 134 | /* |
| 135 | * returns log facility for <fac> or -1 if not found. |
| 136 | */ |
| 137 | int get_log_facility(const char *fac); |
| 138 | |
William Lallemand | a1cc381 | 2012-02-08 16:38:44 +0100 | [diff] [blame] | 139 | /* |
| 140 | * Write a string in the log string |
William Lallemand | 5f23240 | 2012-04-05 18:02:55 +0200 | [diff] [blame] | 141 | * Take cares of quote options |
William Lallemand | a1cc381 | 2012-02-08 16:38:44 +0100 | [diff] [blame] | 142 | * |
| 143 | * Return the adress of the \0 character, or NULL on error |
| 144 | */ |
Willy Tarreau | 2b0108a | 2012-12-21 19:23:44 +0100 | [diff] [blame] | 145 | char *lf_text_len(char *dst, const char *src, size_t len, size_t size, struct logformat_node *node); |
William Lallemand | 5f23240 | 2012-04-05 18:02:55 +0200 | [diff] [blame] | 146 | |
| 147 | /* |
| 148 | * Write a IP adress to the log string |
| 149 | * +X option write in hexadecimal notation, most signifant byte on the left |
| 150 | */ |
| 151 | char *lf_ip(char *dst, struct sockaddr *sockaddr, size_t size, struct logformat_node *node); |
| 152 | |
| 153 | /* |
| 154 | * Write a port to the log |
| 155 | * +X option write in hexadecimal notation, most signifant byte on the left |
| 156 | */ |
| 157 | char *lf_port(char *dst, struct sockaddr *sockaddr, size_t size, struct logformat_node *node); |
| 158 | |
William Lallemand | a1cc381 | 2012-02-08 16:38:44 +0100 | [diff] [blame] | 159 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 160 | #endif /* _PROTO_LOG_H */ |
| 161 | |
| 162 | /* |
| 163 | * Local variables: |
| 164 | * c-indent-level: 8 |
| 165 | * c-basic-offset: 8 |
| 166 | * End: |
| 167 | */ |