forked from fluent/fluent-bit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgelf.c
500 lines (437 loc) · 13.9 KB
/
gelf.c
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* Fluent Bit
* ==========
* Copyright (C) 2019-2020 The Fluent Bit Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <fluent-bit/flb_output_plugin.h>
#include <fluent-bit/flb_pack.h>
#include <fluent-bit/flb_str.h>
#include <fluent-bit/flb_time.h>
#include <fluent-bit/flb_gzip.h>
#include <fluent-bit/flb_utils.h>
#include <fluent-bit/flb_network.h>
#include <msgpack.h>
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
#include "gelf.h"
#ifndef MSG_DONTWAIT
#define MSG_DONTWAIT 0
#endif
#ifndef MSG_NOSIGNAL
#define MSG_NOSIGNAL 0
#endif
/*
* Version 1.1 (11/2013)
* A GELF message is a GZIP’d or ZLIB’d JSON string with the following fields:
* version string (UTF-8) GELF spec version – “1.1”; MUST be set by client
* library.
* host string (UTF-8) the name of the host, source or application that sent
* this message; MUST be set by client library.
* short_message string (UTF-8) a short descriptive message; MUST be set by
* client library.
* full_message string (UTF-8) a long message that can i.e. contain a
* backtrace; optional.
* timestamp number Seconds since UNIX epoch with optional decimal places
* for milliseconds; SHOULD be set by client library. Will be set to NOW
* by server if absent.
* level number the level equal to the standard syslog levels; optional,
* default is 1 (ALERT).
* facility string (UTF-8) optional, deprecated. Send as additional field i
* instead.
* line number the line in a file that caused the error (decimal); optional,
* deprecated. Send as additional field instead.
* file string (UTF-8) the file (with path if you want) that caused the error
* (string); optional, deprecated. Send as additional field instead.
* _[additional field] string (UTF-8) or number every field you send and
* prefix with a _ (underscore) will be treated as an additional field.
* Allowed characters in field names are any word character (letter,
* number, underscore), dashes and dots. The verifying regular expression
* is: ^[\w\.\-]*$
* Libraries SHOULD not allow to send id as additional field (_id). Graylog
* server nodes omit this field automatically.
*/
/*
* Generate a unique message ID. The upper 48-bit is milliseconds
* since the Epoch, the lower 16-bit is a random nonce.
*/
static uint64_t message_id(void)
{
uint64_t now;
uint16_t nonce;
struct flb_time tm;
if (flb_time_get(&tm) != -1) {
now = (uint64_t) tm.tm.tv_sec * 1000 + tm.tm.tv_nsec / 1000000;
}
else {
now = (uint64_t) time(NULL) * 1000;
}
nonce = (uint16_t) rand();
return (now << 16) | nonce;
}
/*
* A GELF header is 12 bytes in size. It has the following
* structure:
*
* +---+---+---+---+---+---+---+---+---+---+---+---+
* | MAGIC | MESSAGE ID |SEQ|NUM|
* +---+---+---+---+---+---+---+---+---+---+---+---+
*
* NUM is the total number of packets to send. SEQ is the
* unique sequence number for each packet (zero-indexed).
*/
#define GELF_MAGIC "\x1e\x0f"
#define GELF_HEADER_SIZE 12
static void init_chunk_header(uint8_t *buf, int count)
{
uint64_t msgid = message_id();
memcpy(buf, GELF_MAGIC, 2);
memcpy(buf + 2, &msgid, 8);
buf[10] = 0;
buf[11] = count;
}
/*
* Chunked GELF
* Prepend the following structure to your GELF message to make it chunked:
* Chunked GELF magic bytes 2 bytes 0x1e 0x0f
* Message ID 8 bytes Must be the same for every chunk of this message.
* Identifying the whole message and is used to reassemble the chunks later.
* Generate from millisecond timestamp + hostname for example.
* Sequence number 1 byte The sequence number of this chunk. Starting at 0
* and always less than the sequence count.
* Sequence count 1 byte Total number of chunks this message has.
* All chunks MUST arrive within 5 seconds or the server will discard all
* already arrived and still arriving chunks.
* A message MUST NOT consist of more than 128 chunks.
*/
static int gelf_send_udp_chunked(struct flb_out_gelf_config *ctx, void *msg,
size_t msg_size)
{
int ret;
uint8_t n;
size_t chunks;
size_t offset;
size_t len;
uint8_t *buf = (uint8_t *) ctx->pckt_buf;
chunks = msg_size / ctx->pckt_size;
if (msg_size % ctx->pckt_size != 0) {
chunks++;
}
if (chunks > 128) {
flb_plg_error(ctx->ins, "message too big: %zd bytes", msg_size);
return -1;
}
init_chunk_header(buf, chunks);
offset = 0;
for (n = 0; n < chunks; n++) {
buf[10] = n;
len = msg_size - offset;
if (ctx->pckt_size < len) {
len = ctx->pckt_size;
}
memcpy(buf + GELF_HEADER_SIZE, (char *) msg + offset, len);
ret = send(ctx->fd, buf, len + GELF_HEADER_SIZE,
MSG_DONTWAIT | MSG_NOSIGNAL);
if (ret == -1) {
flb_errno();
}
offset += ctx->pckt_size;
}
return 0;
}
static int gelf_send_udp_pckt (struct flb_out_gelf_config *ctx, char *msg,
size_t msg_size)
{
int ret;
if (msg_size > ctx->pckt_size) {
gelf_send_udp_chunked(ctx, msg, msg_size);
}
else {
ret = send(ctx->fd, msg, msg_size, MSG_DONTWAIT | MSG_NOSIGNAL);
if (ret == -1) {
flb_errno();
return -1;
}
}
return 0;
}
static int gelf_send_udp(struct flb_out_gelf_config *ctx, char *msg,
size_t msg_size)
{
int ret;
int status;
void *zdata;
size_t zdata_len;
if (ctx->compress == FLB_TRUE || (msg_size > ctx->pckt_size)) {
ret = flb_gzip_compress(msg, msg_size, &zdata, &zdata_len);
if (ret != 0) {
return -1;
}
status = gelf_send_udp_pckt (ctx, zdata, zdata_len);
flb_free(zdata);
if (status < 0) {
return status;
}
}
else {
status = send(ctx->fd, msg, msg_size, MSG_DONTWAIT | MSG_NOSIGNAL);
if (status < 0) {
return status;
}
}
return 0;
}
static void cb_gelf_flush(const void *data, size_t bytes,
const char *tag, int tag_len,
struct flb_input_instance *i_ins,
void *out_context,
struct flb_config *config)
{
struct flb_out_gelf_config *ctx = out_context;
flb_sds_t s;
flb_sds_t tmp;
msgpack_unpacked result;
size_t off = 0;
size_t prev_off = 0;
size_t size = 0;
size_t bytes_sent;
msgpack_object root;
msgpack_object map;
msgpack_object *obj;
struct flb_time tm;
struct flb_upstream_conn *u_conn;
int ret;
if (ctx->mode != FLB_GELF_UDP) {
u_conn = flb_upstream_conn_get(ctx->u);
if (!u_conn) {
flb_plg_error(ctx->ins, "no upstream connections available");
FLB_OUTPUT_RETURN(FLB_RETRY);
}
}
msgpack_unpacked_init(&result);
while (msgpack_unpack_next(&result, data, bytes, &off) == MSGPACK_UNPACK_SUCCESS) {
size = off - prev_off;
prev_off = off;
if (result.data.type != MSGPACK_OBJECT_ARRAY) {
continue;
}
root = result.data;
if (root.via.array.size != 2) {
continue;
}
flb_time_pop_from_msgpack(&tm, &result, &obj);
map = root.via.array.ptr[1];
size = (size * 1.4);
s = flb_sds_create_size(size);
if (s == NULL) {
msgpack_unpacked_destroy(&result);
FLB_OUTPUT_RETURN(FLB_ERROR);
}
tmp = flb_msgpack_to_gelf(&s, &map, &tm, &(ctx->fields));
if (tmp != NULL) {
s = tmp;
if (ctx->mode == FLB_GELF_UDP) {
ret = gelf_send_udp(ctx, s, flb_sds_len(s));
if (ret == -1) {
msgpack_unpacked_destroy(&result);
flb_sds_destroy(s);
FLB_OUTPUT_RETURN(FLB_RETRY);
}
}
else {
/* write gelf json plus \0 */
ret = flb_io_net_write(u_conn,
s, flb_sds_len(s) + 1, &bytes_sent);
if (ret == -1) {
flb_errno();
flb_upstream_conn_release(u_conn);
msgpack_unpacked_destroy(&result);
flb_sds_destroy(s);
FLB_OUTPUT_RETURN(FLB_RETRY);
}
}
}
else {
flb_plg_error(ctx->ins, "error encoding to GELF");
}
flb_sds_destroy(s);
}
msgpack_unpacked_destroy(&result);
if (ctx->mode != FLB_GELF_UDP) {
flb_upstream_conn_release(u_conn);
}
FLB_OUTPUT_RETURN(FLB_OK);
}
static int cb_gelf_init(struct flb_output_instance *ins, struct flb_config *config,
void *data)
{
int ret;
int fd;
const char *tmp;
struct flb_out_gelf_config *ctx = NULL;
/* Set default network configuration */
flb_output_net_default("127.0.0.1", 12201, ins);
/* Allocate plugin context */
ctx = flb_calloc(1, sizeof(struct flb_out_gelf_config));
if (!ctx) {
flb_errno();
return -1;
}
ctx->ins = ins;
/* Config Mode */
tmp = flb_output_get_property("mode", ins);
if (tmp) {
if (!strcasecmp(tmp, "tcp")) {
ctx->mode = FLB_GELF_TCP;
}
else if (!strcasecmp(tmp, "tls")) {
ctx->mode = FLB_GELF_TLS;
}
else if (!strcasecmp(tmp, "udp")) {
ctx->mode = FLB_GELF_UDP;
}
else {
flb_plg_error(ctx->ins, "Unknown gelf mode %s", tmp);
flb_free(ctx);
return -1;
}
}
else {
ctx->mode = FLB_GELF_UDP;
}
/* Config Gelf_Timestamp_Key */
tmp = flb_output_get_property("gelf_timestamp_key", ins);
if (tmp) {
ctx->fields.timestamp_key = flb_sds_create(tmp);
}
/* Config Gelf_Host_Key */
tmp = flb_output_get_property("gelf_host_key", ins);
if (tmp) {
ctx->fields.host_key = flb_sds_create(tmp);
}
/* Config Gelf_Short_Message_Key */
tmp = flb_output_get_property("gelf_short_message_key", ins);
if (tmp) {
ctx->fields.short_message_key = flb_sds_create(tmp);
}
/* Config Gelf_Full_Message_Key */
tmp = flb_output_get_property("gelf_full_message_key", ins);
if (tmp) {
ctx->fields.full_message_key = flb_sds_create(tmp);
}
/* Config Gelf_Level_Key */
tmp = flb_output_get_property("gelf_level_key", ins);
if (tmp) {
ctx->fields.level_key = flb_sds_create(tmp);
}
/* Config UDP Packet_Size */
tmp = flb_output_get_property("packet_size", ins);
if (tmp != NULL && atoi(tmp) >= 0) {
ctx->pckt_size = atoi(tmp);
}
else {
ctx->pckt_size = 1420;
}
/* Config UDP Compress */
tmp = flb_output_get_property("compress", ins);
if (tmp) {
ctx->compress = flb_utils_bool(tmp);
}
else {
ctx->compress = FLB_TRUE;
}
/* init random seed */
fd = open("/dev/urandom", O_RDONLY);
if (fd == -1) {
ctx->seed = time(NULL);
}
else {
unsigned int val;
ret = read(fd, &val, sizeof(val));
if (ret > 0) {
ctx->seed = val;
}
else {
ctx->seed = time(NULL);
}
close(fd);
}
srand(ctx->seed);
ctx->fd = -1;
ctx->pckt_buf = NULL;
if (ctx->mode == FLB_GELF_UDP) {
ctx->fd = flb_net_udp_connect(ins->host.name, ins->host.port);
if (ctx->fd < 0) {
flb_free(ctx);
return -1;
}
ctx->pckt_buf = flb_malloc(GELF_HEADER_SIZE + ctx->pckt_size);
if (ctx->pckt_buf == NULL) {
flb_socket_close(ctx->fd);
flb_free(ctx);
return -1;
}
}
else {
int io_flags = FLB_IO_TCP;
if (ctx->mode == FLB_GELF_TLS) {
io_flags = FLB_IO_TLS;
}
if (ins->host.ipv6 == FLB_TRUE) {
io_flags |= FLB_IO_IPV6;
}
ctx->u = flb_upstream_create(config, ins->host.name, ins->host.port,
io_flags, (void *) &ins->tls);
if (!(ctx->u)) {
flb_free(ctx);
return -1;
}
}
/* Set the plugin context */
flb_output_set_context(ins, ctx);
return 0;
}
static int cb_gelf_exit(void *data, struct flb_config *config)
{
struct flb_out_gelf_config *ctx = data;
if (ctx->u) {
flb_upstream_destroy(ctx->u);
}
if (ctx->fd >= 0) {
close(ctx->fd);
}
flb_sds_destroy(ctx->fields.timestamp_key);
flb_sds_destroy(ctx->fields.host_key);
flb_sds_destroy(ctx->fields.short_message_key);
flb_sds_destroy(ctx->fields.full_message_key);
flb_sds_destroy(ctx->fields.level_key);
flb_free(ctx->pckt_buf);
flb_free(ctx);
return 0;
}
/* Plugin reference */
struct flb_output_plugin out_gelf_plugin = {
.name = "gelf",
.description = "GELF Output",
.cb_init = cb_gelf_init,
.cb_pre_run = NULL,
.cb_flush = cb_gelf_flush,
.cb_exit = cb_gelf_exit,
.flags = FLB_OUTPUT_NET | FLB_IO_OPT_TLS,
};