-
Notifications
You must be signed in to change notification settings - Fork 10
/
varnishkafka.h
226 lines (184 loc) · 6.49 KB
/
varnishkafka.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
/*
* varnishkafka
*
* Copyright (c) 2013 Wikimedia Foundation
* Copyright (c) 2013 Magnus Edenhill <vk@edenhill.se>
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#include <sys/queue.h>
#ifndef likely
#define likely(x) __builtin_expect((x),1)
#endif
#ifndef unlikely
#define unlikely(x) __builtin_expect((x),0)
#endif
#define UNUSED __attribute__((unused))
#define VSL_TAGS_MAX 255
/* A tag that is in all requests but only once. */
#define VSL_TAG__ONCE SLT_End
/**
* Pointer to matched tag's content.
*/
struct match {
const char *ptr;
size_t len;
};
/**
* Currently parsed logline
*/
struct logline {
/* Per fmt logline matches */
struct match *match;
/* Sequence number */
uint64_t seq;
/* Last use of this logline */
time_t t_last;
/* Scratch pad */
size_t sof;
/* Must be at end of struct. Allocated to conf.scratch_size bytes */
char scratch[0];
};
/**
* Tag found in format.
*/
struct tag {
struct tag *next;
struct fmt *fmt;
int spec;
int tag;
char *var;
size_t varlen;
size_t (*parser) (const struct tag *tag, struct logline *lp,
const char *ptr, size_t len);
int col;
int flags;
#define TAG_F_TIMESTAMP 1 /* var is a SLT_Timestamp formatter */
#define TAG_F_TIMESTAMP_END 1<<2 /* var contains the end prefix */
#define TAG_F_LAST 1<<3 /* If multiple, log last one not first one */
#define TAG_F_MATCH_PREFIX 1<<4 /* var contains a string prefix to match
* (not following the $VAR: scheme)
*/
};
/**
* String constants to be used to parse the %{format}t formatter.
*/
#define APACHE_LOG_END_PREFIX "end:"
#define SLT_TIMESTAMP_START "Start"
#define SLT_TIMESTAMP_RESP "Resp"
/**
* Formatting from format
*/
struct fmt {
int id; /* formatter (i.e., (char)'r' in "%r") */
int idx; /* fmt[] array index */
const char *var; /* variable name (for %{..}x,i,o) */
const char *def; /* default string, typically "-" */
size_t deflen; /* default string's length */
const char *name; /* field name (for JSON, et.al) */
size_t namelen; /* name length */
enum {
FMT_TYPE_STRING,
FMT_TYPE_NUMBER,
} type; /* output type (for JSON, et.al) */
int flags;
#define FMT_F_ESCAPE 0x1 /* Escape the value string */
};
typedef enum {
VK_ENC_STRING,
VK_ENC_JSON,
VK_ENC_INVALID,
} fmt_enc_t;
struct fmt_conf {
/* Array of tags in output order. */
struct fmt *fmt;
int fmt_cnt;
int fmt_size;
fmt_enc_t encoding;
};
/**
* varnishkafka config & state struct
*
* Try to keep commonly used fields at the top.
*/
struct conf {
int run;
int pret; /* parse return value: use to exit parser. */
int q_flag;
char* q_flag_query;
int n_flag;
char* n_flag_name;
int T_flag;
char* T_flag_seconds;
int L_flag;
char* L_flag_transactions;
/* Sparsely populated with desired tags */
struct tag **tag;
uint64_t sequence_number;
/* Useful to reset seq from the right starting point,
* defined in the configuration file, when needed.
*/
uint64_t sequence_number_start;
size_t scratch_size; /* Size of scratch buffer */
fmt_enc_t fmt_enc;
int total_fmt_cnt;
int tag_size_max; /* Maximum tag size to accept without
* truncating it. */
int stats_interval; /* Statistics output interval */
char *stats_file; /* Statistics output log file */
FILE *stats_fp; /* Statistics file pointer */
time_t t_last_stats; /* Last stats output */
int need_logrotate; /* If this is 1, log files will be reopened */
/* Kafka config */
int partition;
char *topic;
char *logname;
int log_level;
int log_to;
#define VK_LOG_STDERR 0x1
#define VK_LOG_SYSLOG 0x2
int log_rate; /* Maximum log rate per minute. */
int log_rate_period; /* Log rate limiting period */
int log_kafka_msg_error; /* Log Kafka message delivery errors*/
const char *format; /* Configured format string */
int daemonize;
rd_kafka_conf_t *rk_conf;
rd_kafka_topic_conf_t *topic_conf;
};
extern struct conf conf;
extern struct fmt_conf fconf;
int conf_file_read (const char *path);
void vk_log0 (const char *func, const char *file, int line,
const char *facility, int level, const char *fmt, ...)
__attribute__((format (printf, 6, 7)));
#define vk_log(facility,level,fmt...) \
vk_log0(__FUNCTION__,__FILE__,__LINE__, facility, level, fmt)
#define _DBG(fmt...) vk_log("DEBUG", LOG_DEBUG, fmt)
void vk_log_stats(const char *fmt, ...)
__attribute__((format (printf, 1, 2)));
void out_kafka (struct logline *lp, const char *buf, size_t len);
void out_stdout (struct logline *lp, const char *buf, size_t len);
void out_null (struct logline *lp, const char *buf, size_t len);
extern void (*outfunc) (struct logline *lp, const char *buf, size_t len);