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
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* Fluent Bit
* ==========
* Copyright (C) 2015-2022 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.
*/
#ifndef FLB_WINLOG_H
#define FLB_WINLOG_H
struct winlog_config {
unsigned int interval_sec;
unsigned int interval_nsec;
unsigned int bufsize;
int string_inserts;
int use_ansi;
char *buf;
struct mk_list *active_channel;
struct flb_sqldb *db;
flb_pipefd_t coll_fd;
struct flb_input_instance *ins;
};
struct winlog_channel {
HANDLE h;
char *name;
unsigned int record_number;
unsigned int time_written;
unsigned int seek;
struct mk_list _head;
};
struct winlog_sqlite_record {
char *name;
unsigned int record_number;
unsigned int time_written;
unsigned int created;
};
/*
* Open a Windows Event Log channel.
*/
struct winlog_channel *winlog_open(const char *channel);
void winlog_close(struct winlog_channel *ch);
/*
* Read records from a channel.
*/
int winlog_read(struct winlog_channel *ch, char *buf, unsigned int size, unsigned int *read);
/*
* A bulk API to handle multiple channels at once using mk_list.
*
* "channels" are comma-separated names like "Setup,Security".
*/
struct mk_list *winlog_open_all(const char *channels);
void winlog_close_all(struct mk_list *list);
void winlog_pack_event(msgpack_packer *mp_pck, PEVENTLOGRECORD evt,
struct winlog_channel *ch, struct winlog_config *ctx);
/*
* Save the read offset to disk.
*/
int winlog_sqlite_load(struct winlog_channel *ch, struct flb_sqldb *db);
int winlog_sqlite_save(struct winlog_channel *ch, struct flb_sqldb *db);
/*
* SQL templates
*/
#define SQL_CREATE_CHANNELS \
"CREATE TABLE IF NOT EXISTS in_winlog_channels (" \
" name TEXT PRIMARY KEY," \
" record_number INTEGER," \
" time_written INTEGER," \
" created INTEGER" \
");"
#define SQL_GET_CHANNEL \
"SELECT name, record_number, time_written, created" \
" FROM in_winlog_channels WHERE name = '%s';"
/*
* This uses UPCERT i.e. execute INSERT first and fall back to
* UPDATE if the entry already exists. It saves the trouble of
* doing an existence check manually.
*
* https://www.sqlite.org/lang_UPSERT.html
*/
#define SQL_UPDATE_CHANNEL \
"INSERT INTO in_winlog_channels" \
" (name, record_number, time_written, created)" \
" VALUES ('%s', %u, %u, %llu)" \
" ON CONFLICT(name) DO UPDATE" \
" SET record_number = excluded.record_number," \
" time_written = excluded.time_written"
#endif
|