forked from fluent/fluent-bit
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfirehose.c
451 lines (382 loc) · 13.9 KB
/
firehose.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
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* Fluent Bit
* ==========
* Copyright (C) 2019-2020 The Fluent Bit Authors
* Copyright (C) 2015-2018 Treasure Data Inc.
*
* 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_compat.h>
#include <fluent-bit/flb_info.h>
#include <fluent-bit/flb_output.h>
#include <fluent-bit/flb_utils.h>
#include <fluent-bit/flb_slist.h>
#include <fluent-bit/flb_time.h>
#include <fluent-bit/flb_pack.h>
#include <fluent-bit/flb_config_map.h>
#include <fluent-bit/flb_output_plugin.h>
#include <fluent-bit/flb_sds.h>
#include <fluent-bit/flb_aws_credentials.h>
#include <fluent-bit/flb_aws_util.h>
#include <fluent-bit/flb_mem.h>
#include <fluent-bit/flb_http_client.h>
#include <fluent-bit/flb_utils.h>
#include <monkey/mk_core.h>
#include <msgpack.h>
#include <string.h>
#include <stdio.h>
#include "firehose.h"
#include "firehose_api.h"
static struct flb_aws_header content_type_header = {
.key = "Content-Type",
.key_len = 12,
.val = "application/x-amz-json-1.1",
.val_len = 26,
};
static int cb_firehose_init(struct flb_output_instance *ins,
struct flb_config *config, void *data)
{
const char *tmp;
char *session_name = NULL;
struct flb_firehose *ctx = NULL;
int ret;
(void) config;
(void) data;
ctx = flb_calloc(1, sizeof(struct flb_firehose));
if (!ctx) {
flb_errno();
return -1;
}
ctx->ins = ins;
/* Populate context with config map defaults and incoming properties */
ret = flb_output_config_map_set(ins, (void *) ctx);
if (ret == -1) {
flb_plg_error(ctx->ins, "configuration error");
goto error;
}
tmp = flb_output_get_property("delivery_stream", ins);
if (tmp) {
ctx->delivery_stream = tmp;
} else {
flb_plg_error(ctx->ins, "'delivery_stream' is a required field");
goto error;
}
tmp = flb_output_get_property("time_key", ins);
if (tmp) {
ctx->time_key = tmp;
}
tmp = flb_output_get_property("time_key_format", ins);
if (tmp) {
ctx->time_key_format = tmp;
} else {
ctx->time_key_format = DEFAULT_TIME_KEY_FORMAT;
}
tmp = flb_output_get_property("log_key", ins);
if (tmp) {
ctx->log_key = tmp;
}
if (ctx->log_key && ctx->time_key) {
flb_plg_error(ctx->ins, "'time_key' and 'log_key' can not be used together");
goto error;
}
tmp = flb_output_get_property("endpoint", ins);
if (tmp) {
ctx->custom_endpoint = FLB_TRUE;
ctx->endpoint = removeProtocol((char *) tmp, "https://");
}
else {
ctx->custom_endpoint = FLB_FALSE;
}
tmp = flb_output_get_property("sts_endpoint", ins);
if (tmp) {
ctx->sts_endpoint = (char *) tmp;
}
tmp = flb_output_get_property("log_key", ins);
if (tmp) {
ctx->log_key = tmp;
}
tmp = flb_output_get_property("region", ins);
if (tmp) {
ctx->region = tmp;
} else {
flb_plg_error(ctx->ins, "'region' is a required field");
goto error;
}
tmp = flb_output_get_property("role_arn", ins);
if (tmp) {
ctx->role_arn = tmp;
}
/* one tls instance for provider, one for cw client */
ctx->cred_tls.context = flb_tls_context_new(FLB_TRUE,
ins->tls_debug,
ins->tls_vhost,
ins->tls_ca_path,
ins->tls_ca_file,
ins->tls_crt_file,
ins->tls_key_file,
ins->tls_key_passwd);
if (!ctx->cred_tls.context) {
flb_plg_error(ctx->ins, "Failed to create tls context");
goto error;
}
ctx->client_tls.context = flb_tls_context_new(FLB_TRUE,
ins->tls_debug,
ins->tls_vhost,
ins->tls_ca_path,
ins->tls_ca_file,
ins->tls_crt_file,
ins->tls_key_file,
ins->tls_key_passwd);
if (!ctx->client_tls.context) {
flb_plg_error(ctx->ins, "Failed to create tls context");
goto error;
}
ctx->aws_provider = flb_standard_chain_provider_create(config,
&ctx->cred_tls,
(char *) ctx->region,
ctx->sts_endpoint,
NULL,
flb_aws_client_generator());
if (!ctx->aws_provider) {
flb_plg_error(ctx->ins, "Failed to create AWS Credential Provider");
goto error;
}
if(ctx->role_arn) {
/* set up sts assume role provider */
session_name = flb_sts_session_name();
if (!session_name) {
flb_plg_error(ctx->ins,
"Failed to generate random STS session name");
goto error;
}
/* STS provider needs yet another separate TLS instance */
ctx->sts_tls.context = flb_tls_context_new(FLB_TRUE,
ins->tls_debug,
ins->tls_vhost,
ins->tls_ca_path,
ins->tls_ca_file,
ins->tls_crt_file,
ins->tls_key_file,
ins->tls_key_passwd);
if (!ctx->sts_tls.context) {
flb_errno();
goto error;
}
ctx->base_aws_provider = ctx->aws_provider;
ctx->aws_provider = flb_sts_provider_create(config,
&ctx->sts_tls,
ctx->base_aws_provider,
NULL,
(char *) ctx->role_arn,
session_name,
(char *) ctx->region,
ctx->sts_endpoint,
NULL,
flb_aws_client_generator());
if (!ctx->aws_provider) {
flb_plg_error(ctx->ins,
"Failed to create AWS STS Credential Provider");
goto error;
}
/* session name can freed after provider is created */
flb_free(session_name);
session_name = NULL;
}
/* initialize credentials and set to sync mode */
ctx->aws_provider->provider_vtable->sync(ctx->aws_provider);
ctx->aws_provider->provider_vtable->init(ctx->aws_provider);
if (ctx->endpoint == NULL) {
ctx->endpoint = flb_aws_endpoint("firehose", (char *) ctx->region);
if (!ctx->endpoint) {
goto error;
}
}
struct flb_aws_client_generator *generator = flb_aws_client_generator();
ctx->firehose_client = generator->create();
if (!ctx->firehose_client) {
goto error;
}
ctx->firehose_client->name = "firehose_client";
ctx->firehose_client->has_auth = FLB_TRUE;
ctx->firehose_client->provider = ctx->aws_provider;
ctx->firehose_client->region = (char *) ctx->region;
ctx->firehose_client->service = "firehose";
ctx->firehose_client->port = 443;
ctx->firehose_client->flags = 0;
ctx->firehose_client->proxy = NULL;
ctx->firehose_client->static_headers = &content_type_header;
ctx->firehose_client->static_headers_len = 1;
struct flb_upstream *upstream = flb_upstream_create(config, ctx->endpoint,
443, FLB_IO_TLS,
&ctx->client_tls);
if (!upstream) {
flb_plg_error(ctx->ins, "Connection initialization error");
goto error;
}
ctx->firehose_client->upstream = upstream;
ctx->firehose_client->host = ctx->endpoint;
/* Export context */
flb_output_set_context(ins, ctx);
return 0;
error:
flb_free(session_name);
flb_plg_error(ctx->ins, "Initialization failed");
flb_firehose_ctx_destroy(ctx);
return -1;
}
struct flush *new_flush_buffer()
{
struct flush *buf;
buf = flb_calloc(1, sizeof(struct flush));
if (!buf) {
flb_errno();
return NULL;
}
buf->tmp_buf = flb_malloc(sizeof(char) * PUT_RECORD_BATCH_PAYLOAD_SIZE);
if (!buf->tmp_buf) {
flb_errno();
flush_destroy(buf);
return NULL;
}
buf->tmp_buf_size = PUT_RECORD_BATCH_PAYLOAD_SIZE;
buf->events = flb_malloc(sizeof(struct event) * MAX_EVENTS_PER_PUT);
if (!buf->events) {
flb_errno();
flush_destroy(buf);
return NULL;
}
buf->events_capacity = MAX_EVENTS_PER_PUT;
return buf;
}
static void cb_firehose_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_firehose *ctx = out_context;
int ret;
struct flush *buf;
(void) i_ins;
(void) config;
buf = new_flush_buffer();
if (!buf) {
flb_plg_error(ctx->ins, "Failed to construct flush buffer");
FLB_OUTPUT_RETURN(FLB_RETRY);
}
ret = process_and_send_records(ctx, buf, data, bytes);
if (ret < 0) {
flb_plg_error(ctx->ins, "Failed to send records");
flush_destroy(buf);
FLB_OUTPUT_RETURN(FLB_RETRY);
}
flb_plg_info(ctx->ins, "Processed %d records, sent %d to %s",
buf->records_processed, buf->records_sent, ctx->delivery_stream);
flush_destroy(buf);
FLB_OUTPUT_RETURN(FLB_OK);
}
void flb_firehose_ctx_destroy(struct flb_firehose *ctx)
{
if (ctx != NULL) {
if (ctx->base_aws_provider) {
flb_aws_provider_destroy(ctx->base_aws_provider);
}
if (ctx->aws_provider) {
flb_aws_provider_destroy(ctx->aws_provider);
}
if (ctx->cred_tls.context) {
flb_tls_context_destroy(ctx->cred_tls.context);
}
if (ctx->sts_tls.context) {
flb_tls_context_destroy(ctx->sts_tls.context);
}
if (ctx->client_tls.context) {
flb_tls_context_destroy(ctx->client_tls.context);
}
if (ctx->firehose_client) {
flb_aws_client_destroy(ctx->firehose_client);
}
if (ctx->custom_endpoint == FLB_FALSE) {
flb_free(ctx->endpoint);
}
flb_free(ctx);
}
}
static int cb_firehose_exit(void *data, struct flb_config *config)
{
struct flb_firehose *ctx = data;
flb_firehose_ctx_destroy(ctx);
return 0;
}
/* Configuration properties map */
static struct flb_config_map config_map[] = {
{
FLB_CONFIG_MAP_STR, "region", NULL,
0, FLB_FALSE, 0,
"The AWS region of your delivery stream"
},
{
FLB_CONFIG_MAP_STR, "delivery_stream", NULL,
0, FLB_FALSE, 0,
"Firehose delivery stream name"
},
{
FLB_CONFIG_MAP_STR, "time_key", NULL,
0, FLB_FALSE, 0,
"Add the timestamp to the record under this key. By default the timestamp "
"from Fluent Bit will not be added to records sent to Kinesis."
},
{
FLB_CONFIG_MAP_STR, "time_key_format", NULL,
0, FLB_FALSE, 0,
"strftime compliant format string for the timestamp; for example, "
"the default is '%Y-%m-%dT%H:%M:%S'. This option is used with time_key. "
},
{
FLB_CONFIG_MAP_STR, "role_arn", NULL,
0, FLB_FALSE, 0,
"ARN of an IAM role to assume (ex. for cross account access)."
},
{
FLB_CONFIG_MAP_STR, "endpoint", NULL,
0, FLB_FALSE, 0,
"Specify a custom endpoint for the Firehose API"
},
{
FLB_CONFIG_MAP_STR, "sts_endpoint", NULL,
0, FLB_FALSE, 0,
"Custom endpoint for the STS API."
},
{
FLB_CONFIG_MAP_STR, "log_key", NULL,
0, FLB_FALSE, 0,
"By default, the whole log record will be sent to Firehose. "
"If you specify a key name with this option, then only the value of "
"that key will be sent to Firehose. For example, if you are using "
"the Fluentd Docker log driver, you can specify `log_key log` and only "
"the log message will be sent to Firehose."
},
/* EOF */
{0}
};
/* Plugin registration */
struct flb_output_plugin out_kinesis_firehose_plugin = {
.name = "kinesis_firehose",
.description = "Send logs to Amazon Kinesis Firehose",
.cb_init = cb_firehose_init,
.cb_flush = cb_firehose_flush,
.cb_exit = cb_firehose_exit,
.flags = 0,
/* Configuration */
.config_map = config_map,
};