mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-08-05 22:56:57 +02:00
This is a pretty simple patch despite requiring to make some visible changes in the code: When parsing a logformat string, log tags (ie: '%tag', AKA log tags) are turned into logformat nodes with their type set to the type of the corresponding logformat_tag element which was matched by name. Thus, when "compiling" a logformat tag, we only keep a reference to the tag type from the original logformat_tag. For example, for "%B" log tag, we have the following logformat_tag element: { .name = "B", .type = LOG_FMT_BYTES, .mode = PR_MODE_TCP, .lw = LW_BYTES, .config_callback = NULL } When parsing "%B" string, we search for a matching logformat tag inside logformat_tags[] array using the provided name, once we find a matching element, we craft a logformat node whose type will be LOG_FMT_BYTES, but from the node itself, we no longer have access to other informations that are set in the logformat_tag struct element. Thus from a logformat_node resulting from a log tag, with current implementation, we cannot easily get back to matching logformat_tag struct element as it would require us to scan the whole logformat_tags array at runtime using node->type to find the matching element. Let's take a simpler path and consider all tag-specific LOG_FMT_* subtypes as being part of the same logformat node type: LOG_FMT_TAG. Thanks to that, we're now able to distinguish logformat nodes made from logformat tag from other logformat nodes, and link them to their corresponding logformat_tag element from logformat_tags[] array. All it costs is a simple indirection and an extra pointer in logformat_node struct. While at it, all LOG_FMT_* types related to logformat tags were moved inside log.c as they have no use outside of it since they are simply lookup indexes for sess_build_logline() and could even be replaced by function pointers some day...
230 lines
7.3 KiB
C
230 lines
7.3 KiB
C
/*
|
|
* include/haproxy/log-t.h
|
|
* This file contains definitions of log-related structures and macros.
|
|
*
|
|
* Copyright (C) 2000-2020 Willy Tarreau - w@1wt.eu
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation, version 2.1
|
|
* exclusively.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#ifndef _HAPROXY_LOG_T_H
|
|
#define _HAPROXY_LOG_T_H
|
|
|
|
#include <sys/socket.h>
|
|
#include <sys/un.h>
|
|
#include <netinet/in.h>
|
|
|
|
#include <haproxy/api-t.h>
|
|
#include <haproxy/ring-t.h>
|
|
#include <haproxy/thread-t.h>
|
|
|
|
|
|
#define NB_LOG_FACILITIES 24
|
|
#define NB_LOG_LEVELS 8
|
|
#define NB_LOG_HDR_MAX_ELEMENTS 15
|
|
#define SYSLOG_PORT 514
|
|
#define UNIQUEID_LEN 128
|
|
|
|
/* flags used in logformat_node->options */
|
|
#define LOG_OPT_HEXA 0x00000001
|
|
#define LOG_OPT_MANDATORY 0x00000002
|
|
#define LOG_OPT_QUOTE 0x00000004
|
|
#define LOG_OPT_REQ_CAP 0x00000008
|
|
#define LOG_OPT_RES_CAP 0x00000010
|
|
#define LOG_OPT_HTTP 0x00000020
|
|
#define LOG_OPT_ESC 0x00000040
|
|
#define LOG_OPT_MERGE_SPACES 0x00000080
|
|
|
|
|
|
/* Fields that need to be extracted from the incoming connection or request for
|
|
* logging or for sending specific header information. They're set in px->to_log
|
|
* and appear as flags in session->logs.logwait, which are removed once the
|
|
* required information has been collected.
|
|
*/
|
|
#define LW_INIT 1 /* anything */
|
|
#define LW_CLIP 2 /* CLient IP */
|
|
#define LW_SVIP 4 /* SerVer IP */
|
|
#define LW_SVID 8 /* server ID */
|
|
#define LW_REQ 16 /* http REQuest */
|
|
#define LW_RESP 32 /* http RESPonse */
|
|
#define LW_BYTES 256 /* bytes read from server */
|
|
#define LW_COOKIE 512 /* captured cookie */
|
|
#define LW_REQHDR 1024 /* request header(s) */
|
|
#define LW_RSPHDR 2048 /* response header(s) */
|
|
#define LW_BCKIP 4096 /* backend IP */
|
|
#define LW_FRTIP 8192 /* frontend IP */
|
|
#define LW_XPRT 16384 /* transport layer information (eg: SSL) */
|
|
|
|
#define LOG_LEGACYTIME_LEN 15
|
|
#define LOG_ISOTIME_MINLEN 20
|
|
#define LOG_ISOTIME_MAXLEN 32
|
|
|
|
/* enum for log format */
|
|
enum log_fmt {
|
|
LOG_FORMAT_UNSPEC = 0,
|
|
LOG_FORMAT_LOCAL,
|
|
LOG_FORMAT_RFC3164,
|
|
LOG_FORMAT_RFC5424,
|
|
LOG_FORMAT_PRIO,
|
|
LOG_FORMAT_SHORT,
|
|
LOG_FORMAT_TIMED,
|
|
LOG_FORMAT_ISO,
|
|
LOG_FORMAT_RAW,
|
|
LOG_FORMATS /* number of supported log formats, must always be last */
|
|
};
|
|
|
|
/* enum log header meta data */
|
|
enum log_meta {
|
|
LOG_META_PRIO,
|
|
LOG_META_TIME,
|
|
LOG_META_HOST,
|
|
LOG_META_TAG,
|
|
LOG_META_PID,
|
|
LOG_META_MSGID,
|
|
LOG_META_STDATA,
|
|
LOG_META_FIELDS /* must always be the last */
|
|
};
|
|
|
|
/* log header data */
|
|
struct log_header {
|
|
enum log_fmt format; /* how to format the header */
|
|
int level, facility; /* used by several formats */
|
|
struct ist *metadata; /* optional metadata - per-format */
|
|
};
|
|
|
|
#define LOG_HEADER_NONE (struct log_header){ \
|
|
.format = LOG_FORMAT_UNSPEC, \
|
|
.level = 0, \
|
|
.facility = 0, \
|
|
.metadata = NULL \
|
|
}
|
|
|
|
/* log target types */
|
|
enum log_tgt {
|
|
LOG_TARGET_DGRAM = 0, // datagram address (udp, unix socket)
|
|
LOG_TARGET_FD, // file descriptor
|
|
LOG_TARGET_BUFFER, // ring buffer
|
|
LOG_TARGET_BACKEND, // backend with SYSLOG mode
|
|
};
|
|
|
|
/* lists of fields that can be logged, for logformat_node->type */
|
|
enum {
|
|
|
|
LOG_FMT_TEXT = 0, /* raw text */
|
|
LOG_FMT_EXPR, /* sample expression */
|
|
LOG_FMT_SEPARATOR, /* separator replaced by one space */
|
|
LOG_FMT_TAG, /* reference to logformat_tag */
|
|
};
|
|
|
|
/* enum for parse_logformat_string */
|
|
enum {
|
|
LF_INIT = 0, // before first character
|
|
LF_TEXT, // normal text
|
|
LF_SEPARATOR, // a single separator
|
|
LF_TAG, // tag name, after '%' or '%{..}'
|
|
LF_STARTTAG, // % in text
|
|
LF_STONAME, // after '%(' and before ')'
|
|
LF_STOTYPE, // after ':' while in STONAME
|
|
LF_EDONAME, // ')' after '%('
|
|
LF_STARG, // after '%{' and berore '}'
|
|
LF_EDARG, // '}' after '%{'
|
|
LF_STEXPR, // after '%[' or '%{..}[' and berore ']'
|
|
LF_EDEXPR, // ']' after '%['
|
|
LF_END, // \0 found
|
|
};
|
|
|
|
/* log_format tags (ie: %tag), see logformat_tags table in log.c for
|
|
* available tags definitions
|
|
*/
|
|
struct logformat_node; // forward-declaration
|
|
struct logformat_tag {
|
|
char *name;
|
|
int type;
|
|
int mode;
|
|
int lw; /* logwait bitsfield */
|
|
int (*config_callback)(struct logformat_node *node, struct proxy *curproxy);
|
|
};
|
|
|
|
struct logformat_node {
|
|
struct list list;
|
|
int type; // LOG_FMT_*
|
|
int options; // LOG_OPT_*
|
|
int typecast; // explicit typecasting for printing purposes (SMP_T_{SAME,BOOL,STR,SINT})
|
|
char *name; // printable name for output types that require named fields (ie: json)
|
|
char *arg; // text for LOG_FMT_TEXT, arg for others
|
|
void *expr; // for use with LOG_FMT_EXPR
|
|
const struct logformat_tag *tag; // set if ->type == LOG_FMT_TAG
|
|
};
|
|
|
|
/* Range of indexes for log sampling. */
|
|
struct smp_log_range {
|
|
unsigned int low; /* Low limit of the indexes of this range. */
|
|
unsigned int high; /* High limit of the indexes of this range. */
|
|
size_t sz; /* The size of this range, or number of indexes in
|
|
* this range.
|
|
*/
|
|
};
|
|
|
|
/* Log sampling information. */
|
|
struct smp_info {
|
|
struct smp_log_range *smp_rgs; /* Array of ranges for log sampling. */
|
|
size_t smp_rgs_sz; /* The size of <smp_rgs> array. */
|
|
size_t smp_sz; /* The total number of logs to be sampled. */
|
|
ullong curr_rg_idx; /* 63:32 = current range; 31:0 = current index */
|
|
};
|
|
|
|
enum log_target_flags {
|
|
LOG_TARGET_FL_NONE = 0x00,
|
|
LOG_TARGET_FL_RESOLVED = 0x01
|
|
};
|
|
|
|
struct log_target {
|
|
struct sockaddr_storage *addr;
|
|
union {
|
|
char *ring_name; /* type = BUFFER - preparsing */
|
|
struct sink *sink; /* type = BUFFER - postparsing */
|
|
char *be_name; /* type = BACKEND - preparsing */
|
|
struct proxy *be; /* type = BACKEND - postparsing */
|
|
char *resolv_name; /* generic - preparsing */
|
|
};
|
|
enum log_tgt type;
|
|
uint16_t flags;
|
|
};
|
|
|
|
struct logger {
|
|
struct list list;
|
|
struct log_target target;
|
|
struct smp_info lb;
|
|
enum log_fmt format;
|
|
int facility;
|
|
int level;
|
|
int minlvl;
|
|
int maxlen;
|
|
struct logger *ref;
|
|
struct {
|
|
char *file; /* file where the logger appears */
|
|
int line; /* line where the logger appears */
|
|
} conf;
|
|
};
|
|
|
|
#endif /* _HAPROXY_LOG_T_H */
|
|
|
|
/*
|
|
* Local variables:
|
|
* c-indent-level: 8
|
|
* c-basic-offset: 8
|
|
* End:
|
|
*/
|