-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathfastbit_table.cpp
434 lines (363 loc) · 11.4 KB
/
fastbit_table.cpp
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
/**
* \file fastbit_table.cpp
* \author Petr Kramolis <[email protected]>
* \brief methods of object wrapers for information elements.
*
* Copyright (C) 2015 CESNET, z.s.p.o.
*
* 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.
* 3. Neither the name of the Company nor the names of its contributors
* may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* ALTERNATIVELY, provided that this notice is retained in full, this
* product may be distributed under the terms of the GNU General Public
* License (GPL) version 2 or later, in which case the provisions
* of the GPL apply INSTEAD OF those given above.
*
* This software is provided ``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 company 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.
*
*/
extern "C" {
#include <ipfixcol/verbose.h>
}
#include <vector>
#include "fastbit_table.h"
#define ROW_LINE "Number_of_rows="
uint64_t get_rows_from_part(const char *part_path)
{
uint64_t rows = 0;
std::string line;
std::string str_row;
size_t pos;
std::ifstream part_file(part_path);
if (!part_file.is_open()) {
return rows;
}
while (getline(part_file, line, '\n')) {
if ((pos = line.find(ROW_LINE)) != std::string::npos) {
str_row = line.substr(pos + strlen(ROW_LINE));
rows = strtoul(str_row.c_str(), NULL, 0);
}
}
return rows;
}
template_table::template_table(uint16_t template_id, uint32_t buff_size): _rows_count(0)
{
_template_id = template_id;
sprintf(_name, "%u",template_id);
_orig_name[0] = '\0'; /* Empty string indicates that we use original name from template_id */
_index = 0;
_rows_in_window = 0;
_min_record_size = 0;
_new_dir = true;
if (buff_size == 0) {
buff_size = RESERVED_SPACE;
}
_buff_size = buff_size;
_first_transmission = 0;
}
template_table::~template_table()
{
for (el_it = elements.begin(); el_it != elements.end(); ++el_it) {
delete (*el_it);
}
}
int template_table::update_part(std::string path)
{
FILE *f;
std::stringstream ss;
std::string part;
int columns = 0;
uint64_t rows_in_part;
rows_in_part = get_rows_from_part((path + "/-part.txt").c_str());
f = fopen((path + "/-part.txt").c_str(), "w");
if (f == NULL) {
MSG_ERROR(msg_module, "Cannot open file '-part.txt'");
return 1;
}
/* Count only real elements, not unknown
* Unknown elements have empty name */
for (element *el : elements) {
if (strlen(el->getName()) != 0) {
columns++;
}
}
/* Insert header */
ss << "BEGIN HEADER\n";
ss << "Name=" << std::string(this->_name) << "\n";
ss << "Description=Generated by FastBit plugin for IPFIXcol\n";
ss << "Number_of_rows=" << _rows_in_window + rows_in_part << "\n";
ss << "Number_of_columns=" << columns << "\n";
ss << "Timestamp=" << time(NULL) << "\n";
ss << "END HEADER\n";
/* Insert row info */
for (el_it = elements.begin(); el_it != elements.end(); ++el_it) {
ss << (*el_it)->get_part_info();
}
part = ss.str();
fputs(part.c_str(), f);
fclose(f);
return 0;
}
int template_table::dir_check(std::string path, bool new_dir)
{
size_t pos;
/* Creating directory, unset the _new_dir property */
this->_new_dir = false;
if (mkdir(path.c_str(), 0777) != 0) {
if (errno == EEXIST) { /* dir already exists */
if (new_dir) {
/* Rename the table */
int len = strlen(this->_name);
if (this->_orig_name[0] == '\0') {
/* Save the _name property if not saved already */
strcpy(this->_orig_name, this->_name);
/* Update the name */
this->_name[len] = 'a';
this->_name[len + 1] = '\0';
/* Update the path */
path += "a";
} else {
/* Update the name */
this->_name[len - 1]++;
/* Update the path */
path[path.length() - 1]++;
}
return this->dir_check(path.c_str(), true);
}
return 0;
}
if (errno == ENOENT) { /* Check parent directory */
pos = path.find_last_of("/\\");
if (pos == std::string::npos) {
MSG_ERROR(msg_module, "Cannot create directory '%s'", path.c_str());
return 2;
}
/* Create the parent */
this->dir_check(path.substr(0,pos), false);
/* Try to create the dir again */
if (mkdir(path.c_str(), 0777) != 0) {
MSG_ERROR(msg_module, "Cannot create directory '%s'", path.c_str());
return 2;
}
return 0;
}
/* Other error */
MSG_ERROR(msg_module, "Cannot create directory '%s'", path.c_str());
return 2;
}
return 0;
}
int template_table::store(ipfix_data_set *data_set, std::string path, bool new_dir)
{
uint8_t *data = data_set->records;
uint16_t element_size = 0;
uint32_t record_cnt = 0;
if (data == NULL) {
return 0;
}
/* When opening new directory, go back to original name (duplicity should be gone) */
if (new_dir && this->_orig_name[0] != '\0') {
if (this->_rows_in_window > this->_rows_count) {
MSG_ERROR(msg_module, "Renaming partially stored template");
}
strcpy(this->_name, this->_orig_name);
this->_orig_name[0] = '\0';
}
if (new_dir) {
this->_new_dir = true;
}
/* Count how many records data_set contains */
uint16_t data_size = (ntohs(data_set->header.length) - (sizeof(struct ipfix_set_header)));
uint16_t read_data = 0;
while (read_data < data_size) {
if ((data_size - read_data) < _min_record_size) {
break;
}
record_cnt++;
for (el_it = elements.begin(); el_it != elements.end() && read_data < data_size; ++el_it) {
element_size = (*el_it)->fill(data);
data += element_size;
read_data += element_size;
}
_rows_count++;
if (_rows_count >= _buff_size) {
_rows_in_window += _rows_count;
if (this->dir_check(path + _name, this->_new_dir) != 0) {
return -1;
}
for (el_it = elements.begin(); el_it != elements.end(); ++el_it) {
(*el_it)->flush(path + _name);
}
/* Update -part.txt so that the data is ready for processing */
this->update_part(path + _name);
_rows_count = 0;
_rows_in_window = 0;
}
}
return record_cnt;
}
int template_table::flush(std::string path, std::string &flushed_path)
{
/* Check whether there is something to flush */
if (_rows_count <= 0) {
return -1;
}
/* Check directory */
_rows_in_window += _rows_count;
if (this->dir_check(path + _name, this->_new_dir) != 0) {
return -2;
}
/* Flush data */
for (el_it = elements.begin(); el_it != elements.end(); ++el_it) {
(*el_it)->flush(path + _name);
}
/* Create/update -part.txt file */
this->update_part(path + _name);
_rows_count = 0;
_rows_in_window = 0;
flushed_path = path + _name;
/* Data on disk is consistent; try to go back to original name */
if (this->_orig_name[0] != '\0') {
strcpy(this->_name, this->_orig_name);
this->_orig_name[0] = '\0';
}
return 0;
}
int template_table::parse_template(struct ipfix_template *tmp, struct fastbit_config *config)
{
int i;
uint32_t en = 0; /* Enterprise number (0 = IANA elements) */
uint16_t id;
int en_offset = 0;
template_ie *field;
element *new_element;
/* Is there anything to parse? */
if (tmp == NULL) {
MSG_WARNING(msg_module, "Received data without template; skipping data...");
return 1;
}
/* We don't want to parse option tables ect., so check it */
if (tmp->template_type != TM_TEMPLATE) {
MSG_WARNING(msg_module, "Received Options Template; skipping data...");
return 1;
}
_template_id = tmp->template_id;
/* Save template transmission time */
_first_transmission = tmp->first_transmission;
/* Find elements */
for (i = 0; i < tmp->field_count + en_offset; i++) {
field = &(tmp->fields[i]);
if (field->ie.length == VAR_IE_LENGTH) {
_min_record_size += 1;
} else {
_min_record_size += field->ie.length;
}
id = field->ie.id & 0x7FFF;
/* Is this an enterprise element? */
en = 0;
if (field->ie.id & 0x8000) {
i++;
en_offset++;
en = tmp->fields[i].enterprise_number;
}
/* Look up field type or set to UNASSIGNED if field is not known yet */
const ipfix_element_t *ipfix_elem = get_element_by_id(id, en);
int field_type;
if (ipfix_elem) {
field_type = ipfix_elem->type;
} else {
field_type = ET_UNASSIGNED;
}
switch (field_type) {
case ET_BOOLEAN:
case ET_DATE_TIME_SECONDS:
case ET_DATE_TIME_MILLISECONDS:
case ET_DATE_TIME_MICROSECONDS:
case ET_DATE_TIME_NANOSECONDS:
case ET_IPV4_ADDRESS:
case ET_MAC_ADDRESS:
case ET_UNSIGNED_8:
case ET_UNSIGNED_16:
case ET_UNSIGNED_32:
case ET_UNSIGNED_64:
new_element = new el_uint(config, field->ie.length, en, id, _buff_size);
break;
case ET_IPV6_ADDRESS:
/* IPv6 address are 128b in size, so we have to split them over two 64b rows. As such,
* we add 'p0' and 'p1' suffixes to row name... */
/* Check size from template */
if (field->ie.length != 16) {
MSG_WARNING(msg_module, "Element e%iid%i has type 'IPV6_ADDRESS' but size '%i'; skipping...",
en, id, field->ie.length);
new_element = new el_unknown(config, field->ie.length);
break;
}
new_element = new el_ipv6(config, sizeof(uint64_t), en, id, 0, _buff_size);
elements.push_back(new_element);
new_element = new el_ipv6(config, sizeof(uint64_t), en, id, 1, _buff_size);
break;
case ET_SIGNED_8:
case ET_SIGNED_16:
case ET_SIGNED_32:
case ET_SIGNED_64:
new_element = new el_sint(config, field->ie.length, en, id, _buff_size);
break;
case ET_FLOAT_32:
case ET_FLOAT_64:
new_element = new el_float(config, field->ie.length, en, id, _buff_size);
break;
case ET_STRING:
new_element = new el_text(config, field->ie.length, en, id, _buff_size);
break;
case ET_OCTET_ARRAY:
case ET_BASIC_LIST:
case ET_SUB_TEMPLATE_LIST:
case ET_SUB_TEMPLATE_MULTILIST:
new_element = new el_blob(config, field->ie.length, en, id, _buff_size);
break;
default:
MSG_DEBUG(msg_module, "Received UNKNOWN element (size: %u)",field->ie.length);
if (field->ie.length < 9) {
new_element = new el_uint(config, field->ie.length, en, id, _buff_size);
} else {
new_element = new el_blob(config, field->ie.length, en, id, _buff_size);
}
break;
}
if (!new_element) {
MSG_ERROR(msg_module, "Something is wrong with template elements...");
return 1;
}
/* Check that this element does not already exist */
for (element *e : elements) {
if (strncmp(new_element->getName(), e->getName(), IE_NAME_LENGTH) == 0) {
/* This element already exists; replace it with UNKNOWN type */
delete new_element;
new_element = new el_unknown(config, field->ie.length, en, id, 0, _buff_size);
break;
}
}
elements.push_back(new_element);
}
return 0;
}