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
|
/*
* ulogd output plugin for logging to a SQLITE database
*
* (C) 2005 by Ben La Monica <ben.lamonica@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* This module has been adapted from the ulogd_MYSQL.c written by
* Harald Welte <laforge@gnumonks.org>
* Alex Janssen <alex@ynfonatic.de>
*
* You can see benchmarks and an explanation of the testing
* at http://www.pojo.us/ulogd/
*
* 2005-02-09 Harald Welte <laforge@gnumonks.org>:
* - port to ulogd-1.20
*
* 2006-10-09 Holger Eitzenberger <holger@my-eitzenberger.de>
* - port to ulogd-2.00
*/
#include <stdlib.h>
#include <string.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#include <ulogd/ulogd.h>
#include <ulogd/conffile.h>
#include <sqlite3.h>
#include <sys/queue.h>
#define CFG_BUFFER_DEFAULT 10
#if 0
#define DEBUGP(x, args...) fprintf(stderr, x, ## args)
#else
#define DEBUGP(x, args...)
#endif
struct field {
TAILQ_ENTRY(field) link;
char name[ULOGD_MAX_KEYLEN + 1];
struct ulogd_key *key;
};
TAILQ_HEAD(field_lh, field);
#define tailq_for_each(pos, head, link) \
for (pos = (head).tqh_first; pos != NULL; pos = pos->link.tqe_next)
struct sqlite3_priv {
sqlite3 *dbh; /* database handle we are using */
struct field_lh fields;
char *stmt;
sqlite3_stmt *p_stmt;
struct {
unsigned err_tbl_busy; /* "Table busy" */
} stats;
};
static struct config_keyset sqlite3_kset = {
.num_ces = 3,
.ces = {
{
.key = "db",
.type = CONFIG_TYPE_STRING,
.options = CONFIG_OPT_MANDATORY,
},
{
.key = "table",
.type = CONFIG_TYPE_STRING,
.options = CONFIG_OPT_MANDATORY,
},
},
};
#define db_ce(pi) (pi)->config_kset->ces[0].u.string
#define table_ce(pi) (pi)->config_kset->ces[1].u.string
/* forward declarations */
static int sqlite3_createstmt(struct ulogd_pluginstance *);
static int
add_row(struct ulogd_pluginstance *pi)
{
struct sqlite3_priv *priv = (void *)pi->private;
int ret;
ret = sqlite3_step(priv->p_stmt);
if (ret == SQLITE_BUSY)
priv->stats.err_tbl_busy++;
else if (ret == SQLITE_ERROR) {
ret = sqlite3_finalize(priv->p_stmt);
priv->p_stmt = NULL;
if (ret != SQLITE_SCHEMA) {
ulogd_log(ULOGD_ERROR, "SQLITE3: step: %s\n",
sqlite3_errmsg(priv->dbh));
goto err_reset;
}
if (sqlite3_createstmt(pi) < 0) {
ulogd_log(ULOGD_ERROR,
"SQLITE3: Could not create statement.\n");
goto err_reset;
}
}
ret = sqlite3_reset(priv->p_stmt);
return 0;
err_reset:
sqlite3_reset(priv->p_stmt);
return -1;
}
/* our main output function, called by ulogd */
static int
sqlite3_interp(struct ulogd_pluginstance *pi)
{
struct sqlite3_priv *priv = (void *)pi->private;
struct field *f;
int ret, i = 1;
tailq_for_each(f, priv->fields, link) {
struct ulogd_key *k_ret = f->key->u.source;
if (f->key == NULL || !IS_VALID(*k_ret)) {
sqlite3_bind_null(priv->p_stmt, i);
i++;
continue;
}
switch (f->key->type) {
case ULOGD_RET_BOOL:
ret = sqlite3_bind_int(priv->p_stmt, i, k_ret->u.value.b);
break;
case ULOGD_RET_INT8:
ret = sqlite3_bind_int(priv->p_stmt, i, k_ret->u.value.i8);
break;
case ULOGD_RET_INT16:
ret = sqlite3_bind_int(priv->p_stmt, i, k_ret->u.value.i16);
break;
case ULOGD_RET_INT32:
ret = sqlite3_bind_int(priv->p_stmt, i, k_ret->u.value.i32);
break;
case ULOGD_RET_INT64:
ret = sqlite3_bind_int64(priv->p_stmt, i, k_ret->u.value.i64);
break;
case ULOGD_RET_UINT8:
ret = sqlite3_bind_int(priv->p_stmt, i, k_ret->u.value.ui8);
break;
case ULOGD_RET_UINT16:
ret = sqlite3_bind_int(priv->p_stmt, i, k_ret->u.value.ui16);
break;
case ULOGD_RET_UINT32:
ret = sqlite3_bind_int(priv->p_stmt, i, k_ret->u.value.ui32);
break;
case ULOGD_RET_IPADDR:
if (k_ret->len == sizeof(struct in_addr))
ret = sqlite3_bind_int(priv->p_stmt, i,
k_ret->u.value.ui32);
else
ret = sqlite3_bind_null(priv->p_stmt, i);
break;
case ULOGD_RET_UINT64:
ret = sqlite3_bind_int64(priv->p_stmt, i, k_ret->u.value.ui64);
break;
case ULOGD_RET_STRING:
ret = sqlite3_bind_text(priv->p_stmt, i, k_ret->u.value.ptr,
strlen(k_ret->u.value.ptr), SQLITE_STATIC);
break;
default:
ret = SQLITE_OK;
ulogd_log(ULOGD_NOTICE, "unknown type %d for %s\n",
f->key->type, f->key->name);
}
if (ret != SQLITE_OK)
goto err_bind;
i++;
}
if (add_row(pi) < 0)
return ULOGD_IRET_ERR;
return ULOGD_IRET_OK;
err_bind:
ulogd_log(ULOGD_ERROR, "SQLITE: bind: %s\n", sqlite3_errmsg(priv->dbh));
return ULOGD_IRET_ERR;
}
#define _SQLITE3_INSERTTEMPL "insert into X (Y) values (Z)"
/* create the static part of our insert statement */
static int
sqlite3_createstmt(struct ulogd_pluginstance *pi)
{
struct sqlite3_priv *priv = (void *)pi->private;
struct field *f;
int i, cols = 0;
char *stmt_pos;
if (priv->stmt != NULL)
free(priv->stmt);
if ((priv->stmt = calloc(1, 1024)) == NULL) {
ulogd_log(ULOGD_ERROR, "SQLITE3: out of memory\n");
return -1;
}
stmt_pos = priv->stmt;
stmt_pos += sprintf(stmt_pos, "insert into %s (", table_ce(pi));
tailq_for_each(f, priv->fields, link) {
stmt_pos += sprintf(stmt_pos, "%s,", f->name);
cols++;
}
*(stmt_pos - 1) = ')';
stmt_pos += sprintf(stmt_pos, " values (");
for (i = 0; i < cols - 1; i++)
stmt_pos += sprintf(stmt_pos, "?,");
sprintf(stmt_pos, "?)");
ulogd_log(ULOGD_DEBUG, "%s: stmt='%s'\n", pi->id, priv->stmt);
DEBUGP("about to prepare statement.\n");
sqlite3_prepare(priv->dbh, priv->stmt, -1, &priv->p_stmt, 0);
if (priv->p_stmt == NULL) {
ulogd_log(ULOGD_ERROR, "SQLITE3: prepare: %s\n",
sqlite3_errmsg(priv->dbh));
return -1;
}
DEBUGP("statement prepared.\n");
return 0;
}
static struct ulogd_key *
ulogd_find_key(struct ulogd_pluginstance *pi, const char *name)
{
char buf[ULOGD_MAX_KEYLEN + 1] = "";
unsigned int i;
/* replace all underscores with dots */
for (i = 0; i < sizeof(buf) - 1 && name[i]; ++i)
buf[i] = name[i] != '_' ? name[i] : '.';
for (i = 0; i < pi->input.num_keys; i++) {
if (strcmp(pi->input.keys[i].name, buf) == 0)
return &pi->input.keys[i];
}
return NULL;
}
#define SELECT_ALL_STR "select * from "
#define SELECT_ALL_LEN sizeof(SELECT_ALL_STR)
static int
db_count_cols(struct ulogd_pluginstance *pi, sqlite3_stmt **stmt)
{
struct sqlite3_priv *priv = (void *)pi->private;
char query[SELECT_ALL_LEN + CONFIG_VAL_STRING_LEN] = SELECT_ALL_STR;
strncat(query, table_ce(pi), sizeof(query) - strlen(query) - 1);
if (sqlite3_prepare(priv->dbh, query, -1, stmt, 0) != SQLITE_OK)
return -1;
return sqlite3_column_count(*stmt);
}
/* initialize DB, possibly creating it */
static int
sqlite3_init_db(struct ulogd_pluginstance *pi)
{
struct sqlite3_priv *priv = (void *)pi->private;
sqlite3_stmt *schema_stmt;
int col, num_cols;
if (priv->dbh == NULL) {
ulogd_log(ULOGD_ERROR, "SQLITE3: No database handle.\n");
return -1;
}
num_cols = db_count_cols(pi, &schema_stmt);
if (num_cols <= 0) {
ulogd_log(ULOGD_ERROR, "table `%s' is empty or missing in "
"file `%s'. Did you created this "
"table in the database file? Please, "
"see ulogd2 documentation.\n",
table_ce(pi), db_ce(pi));
return -1;
}
for (col = 0; col < num_cols; col++) {
struct field *f;
/* prepend it to the linked list */
if ((f = calloc(1, sizeof(struct field))) == NULL) {
ulogd_log(ULOGD_ERROR, "SQLITE3: out of memory\n");
return -1;
}
snprintf(f->name, sizeof(f->name),
"%s", sqlite3_column_name(schema_stmt, col));
DEBUGP("field '%s' found\n", f->name);
if ((f->key = ulogd_find_key(pi, f->name)) == NULL) {
ulogd_log(ULOGD_ERROR,
"SQLITE3: unknown input key: %s\n", f->name);
free(f);
return -1;
}
TAILQ_INSERT_TAIL(&priv->fields, f, link);
}
sqlite3_finalize(schema_stmt);
return 0;
}
#define SQLITE3_BUSY_TIMEOUT 300
static int
sqlite3_configure(struct ulogd_pluginstance *pi,
struct ulogd_pluginstance_stack *stack)
{
/* struct sqlite_priv *priv = (void *)pi->private; */
if (ulogd_parse_configfile(pi->id, pi->config_kset) < 0)
return -1;
if (ulogd_wildcard_inputkeys(pi) < 0)
return -1;
DEBUGP("%s: db='%s' table='%s'\n", pi->id, db_ce(pi), table_ce(pi));
return 0;
}
static int
sqlite3_start(struct ulogd_pluginstance *pi)
{
struct sqlite3_priv *priv = (void *)pi->private;
TAILQ_INIT(&priv->fields);
if (sqlite3_open(db_ce(pi), &priv->dbh) != SQLITE_OK) {
ulogd_log(ULOGD_ERROR, "SQLITE3: %s\n", sqlite3_errmsg(priv->dbh));
return -1;
}
/* set the timeout so that we don't automatically fail
if the table is busy */
sqlite3_busy_timeout(priv->dbh, SQLITE3_BUSY_TIMEOUT);
/* read the fieldnames to know which values to insert */
if (sqlite3_init_db(pi) < 0) {
ulogd_log(ULOGD_ERROR, "SQLITE3: Could not read database fieldnames.\n");
return -1;
}
/* create and prepare the actual insert statement */
if (sqlite3_createstmt(pi) < 0) {
ulogd_log(ULOGD_ERROR, "SQLITE3: Could not create statement.\n");
return -1;
}
return 0;
}
/* give us an opportunity to close the database down properly */
static int
sqlite3_stop(struct ulogd_pluginstance *pi)
{
struct sqlite3_priv *priv = (void *)pi->private;
/* free up our prepared statements so we can close the db */
if (priv->p_stmt) {
sqlite3_finalize(priv->p_stmt);
DEBUGP("prepared statement finalized\n");
}
if (priv->dbh == NULL)
return -1;
sqlite3_close(priv->dbh);
priv->dbh = NULL;
return 0;
}
static struct ulogd_plugin sqlite3_plugin = {
.name = "SQLITE3",
.input = {
.type = ULOGD_DTYPE_PACKET | ULOGD_DTYPE_FLOW,
},
.output = {
.type = ULOGD_DTYPE_SINK,
},
.config_kset = &sqlite3_kset,
.priv_size = sizeof(struct sqlite3_priv),
.configure = sqlite3_configure,
.start = sqlite3_start,
.stop = sqlite3_stop,
.interp = sqlite3_interp,
.version = VERSION,
};
static void init(void) __attribute__((constructor));
static void
init(void)
{
ulogd_register_plugin(&sqlite3_plugin);
}
|