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
|
/* ulogd_PGSQL.c, Version $Revision$
*
* ulogd output plugin for logging to a PGSQL database
*
* (C) 2000-2005 by Harald Welte <laforge@gnumonks.org>
* This software is distributed under the terms of GNU GPL
*
* This plugin is based on the MySQL plugin made by Harald Welte.
* The support PostgreSQL were made by Jakab Laszlo.
*
*/
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <arpa/inet.h>
#include <ulogd/ulogd.h>
#include <ulogd/conffile.h>
#include <ulogd/db.h>
#include <libpq-fe.h>
#ifdef DEBUG_PGSQL
#define DEBUGP(x, args...) fprintf(stderr, x, ## args)
#else
#define DEBUGP(x, args...)
#endif
struct pgsql_instance {
struct db_instance db_inst;
PGconn *dbh;
PGresult *pgres;
unsigned char pgsql_have_schemas;
};
#define TIME_ERR ((time_t)-1)
/* our configuration directives */
static struct config_keyset pgsql_kset = {
.num_ces = DB_CE_NUM + 7,
.ces = {
DB_CES,
{
.key = "db",
.type = CONFIG_TYPE_STRING,
.options = CONFIG_OPT_MANDATORY,
},
{
.key = "host",
.type = CONFIG_TYPE_STRING,
.options = CONFIG_OPT_NONE,
},
{
.key = "user",
.type = CONFIG_TYPE_STRING,
.options = CONFIG_OPT_MANDATORY,
},
{
.key = "pass",
.type = CONFIG_TYPE_STRING,
.options = CONFIG_OPT_NONE,
},
{
.key = "port",
.type = CONFIG_TYPE_INT,
.options = CONFIG_OPT_NONE,
},
{
.key = "schema",
.type = CONFIG_TYPE_STRING,
.options = CONFIG_OPT_NONE,
.u.string = "public",
},
{
.key = "connstring",
.type = CONFIG_TYPE_STRING,
.options = CONFIG_OPT_NONE,
},
},
};
#define db_ce(x) (x->ces[DB_CE_NUM+0])
#define host_ce(x) (x->ces[DB_CE_NUM+1])
#define user_ce(x) (x->ces[DB_CE_NUM+2])
#define pass_ce(x) (x->ces[DB_CE_NUM+3])
#define port_ce(x) (x->ces[DB_CE_NUM+4])
#define schema_ce(x) (x->ces[DB_CE_NUM+5])
#define connstr_ce(x) (x->ces[DB_CE_NUM+6])
#define PGSQL_HAVE_NAMESPACE_TEMPLATE \
"SELECT nspname FROM pg_namespace n WHERE n.nspname='%s'"
/* Determine if server support schemas */
static int pgsql_namespace(struct ulogd_pluginstance *upi)
{
struct pgsql_instance *pi = (struct pgsql_instance *) upi->private;
char pgbuf[strlen(PGSQL_HAVE_NAMESPACE_TEMPLATE) +
strlen(schema_ce(upi->config_kset).u.string) + 1];
if (!pi->dbh)
return 1;
sprintf(pgbuf, PGSQL_HAVE_NAMESPACE_TEMPLATE,
schema_ce(upi->config_kset).u.string);
ulogd_log(ULOGD_DEBUG, "%s\n", pgbuf);
pi->pgres = PQexec(pi->dbh, pgbuf);
if (!pi->pgres) {
ulogd_log(ULOGD_DEBUG, "\n result false");
return 1;
}
if (PQresultStatus(pi->pgres) == PGRES_TUPLES_OK) {
if (PQntuples(pi->pgres)) {
ulogd_log(ULOGD_DEBUG, "using schema %s\n",
schema_ce(upi->config_kset).u.string);
pi->db_inst.schema = schema_ce(upi->config_kset).u.string;
} else {
ulogd_log(ULOGD_ERROR, "schema %s not found: %s\n",
schema_ce(upi->config_kset).u.string, PQerrorMessage(pi->dbh));
PQclear(pi->pgres);
return -1;
}
} else {
pi->db_inst.schema = NULL;
}
PQclear(pi->pgres);
return 0;
}
#define PGSQL_GETCOLUMN_TEMPLATE \
"SELECT a.attname FROM pg_class c, pg_attribute a WHERE c.relname ='%s' AND a.attnum>0 AND a.attrelid=c.oid ORDER BY a.attnum"
#define PGSQL_GETCOLUMN_TEMPLATE_SCHEMA \
"SELECT a.attname FROM pg_attribute a, pg_class c LEFT JOIN pg_namespace n ON c.relnamespace=n.oid WHERE c.relname ='%s' AND n.nspname='%s' AND a.attnum>0 AND a.attrelid=c.oid AND a.attisdropped=FALSE ORDER BY a.attnum"
/* find out which columns the table has */
static int get_columns_pgsql(struct ulogd_pluginstance *upi)
{
struct pgsql_instance *pi = (struct pgsql_instance *) upi->private;
char pgbuf[strlen(PGSQL_GETCOLUMN_TEMPLATE_SCHEMA)
+ strlen(table_ce(upi->config_kset).u.string)
+ strlen(pi->db_inst.schema) + 2];
int i;
if (!pi->dbh) {
ulogd_log(ULOGD_ERROR, "no database handle\n");
return 1;
}
if (pi->db_inst.schema) {
snprintf(pgbuf, sizeof(pgbuf)-1,
PGSQL_GETCOLUMN_TEMPLATE_SCHEMA,
table_ce(upi->config_kset).u.string,
pi->db_inst.schema);
} else {
snprintf(pgbuf, sizeof(pgbuf)-1, PGSQL_GETCOLUMN_TEMPLATE,
table_ce(upi->config_kset).u.string);
}
ulogd_log(ULOGD_DEBUG, "%s\n", pgbuf);
pi->pgres = PQexec(pi->dbh, pgbuf);
if (!pi->pgres) {
ulogd_log(ULOGD_DEBUG, "result false (%s)",
PQerrorMessage(pi->dbh));
return -1;
}
if (PQresultStatus(pi->pgres) != PGRES_TUPLES_OK) {
ulogd_log(ULOGD_DEBUG, "pres_command_not_ok (%s)",
PQerrorMessage(pi->dbh));
PQclear(pi->pgres);
return -1;
}
if (upi->input.keys)
free(upi->input.keys);
upi->input.num_keys = PQntuples(pi->pgres);
ulogd_log(ULOGD_DEBUG, "%u fields in table\n", upi->input.num_keys);
upi->input.keys = calloc(upi->input.num_keys, sizeof(*upi->input.keys));
if (!upi->input.keys) {
upi->input.num_keys = 0;
ulogd_log(ULOGD_ERROR, "ENOMEM\n");
PQclear(pi->pgres);
return -ENOMEM;
}
for (i = 0; i < PQntuples(pi->pgres); i++) {
char *underscore;
snprintf(upi->input.keys[i].name,
sizeof(upi->input.keys[i].name),
"%s", PQgetvalue(pi->pgres, i, 0));
/* replace all underscores with dots */
for (underscore = upi->input.keys[i].name;
(underscore = strchr(underscore, '_')); )
*underscore = '.';
DEBUGP("field '%s' found\n", upi->input.keys[i].name);
}
/* ID (starting by '.') is a sequence */
if (upi->input.keys[0].name[0] == '.')
upi->input.keys[0].flags |= ULOGD_KEYF_INACTIVE;
PQclear(pi->pgres);
return 0;
}
static int close_db_pgsql(struct ulogd_pluginstance *upi)
{
struct pgsql_instance *pi = (struct pgsql_instance *) upi->private;
if (pi->dbh)
PQfinish(pi->dbh);
pi->dbh = NULL;
return 0;
}
/* make connection and select database */
static int open_db_pgsql(struct ulogd_pluginstance *upi)
{
struct pgsql_instance *pi = (struct pgsql_instance *) upi->private;
int len;
char *connstr = connstr_ce(upi->config_kset).u.string;
char *schema = NULL;
char pgbuf[128];
if (!connstr[0]) {
char *server = host_ce(upi->config_kset).u.string;
unsigned int port = port_ce(upi->config_kset).u.value;
char *user = user_ce(upi->config_kset).u.string;
char *pass = pass_ce(upi->config_kset).u.string;
char *db = db_ce(upi->config_kset).u.string;
char *cp;
/* 80 is more than what we need for the fixed parts below */
len = 80 + strlen(user) + strlen(db);
/* hostname and and password are the only optionals */
if (server[0])
len += strlen(server);
if (pass[0])
len += strlen(pass);
if (port)
len += 20;
cp = connstr = malloc(len);
if (!connstr)
return -ENOMEM;
if (server[0])
cp += sprintf(cp, "host=%s ", server);
if (port)
cp += sprintf(cp, "port=%u ", port);
cp += sprintf(cp, "dbname=%s user=%s", db, user);
if (pass[0])
cp += sprintf(cp, " password=%s", pass);
}
pi->dbh = PQconnectdb(connstr);
if (PQstatus(pi->dbh) != CONNECTION_OK) {
ulogd_log(ULOGD_ERROR, "unable to connect to db (%s): %s\n",
connstr, PQerrorMessage(pi->dbh));
close_db_pgsql(upi);
return -1;
}
if (pgsql_namespace(upi)) {
ulogd_log(ULOGD_ERROR, "problem testing for pgsql schemas\n");
close_db_pgsql(upi);
return -1;
}
pi=(struct pgsql_instance *)upi->private;
schema = pi->db_inst.schema;
if (!(schema == NULL) && (strcmp(schema,"public"))) {
snprintf(pgbuf, 128, "SET search_path='%.63s', \"$user\", 'public'", schema);
pi->pgres = PQexec(pi->dbh, pgbuf);
if ((PQresultStatus(pi->pgres) == PGRES_COMMAND_OK)) {
PQclear(pi->pgres);
} else {
ulogd_log(ULOGD_ERROR, "could not set search path to (%s): %s\n",
schema, PQerrorMessage(pi->dbh));
PQclear(pi->pgres);
close_db_pgsql(upi);
return -1;
}
}
return 0;
}
static int escape_string_pgsql(struct ulogd_pluginstance *upi,
char *dst, const char *src, unsigned int len)
{
return PQescapeString(dst, src, strlen(src));
}
static int execute_pgsql(struct ulogd_pluginstance *upi,
const char *stmt, unsigned int len)
{
struct pgsql_instance *pi = (struct pgsql_instance *) upi->private;
pi->pgres = PQexec(pi->dbh, stmt);
if (!(pi->pgres && ((PQresultStatus(pi->pgres) == PGRES_COMMAND_OK)
|| (PQresultStatus(pi->pgres) == PGRES_TUPLES_OK)))) {
ulogd_log(ULOGD_ERROR, "execute failed (%s)\n",
PQerrorMessage(pi->dbh));
return -1;
}
PQclear(pi->pgres);
return 0;
}
static struct db_driver db_driver_pgsql = {
.get_columns = &get_columns_pgsql,
.open_db = &open_db_pgsql,
.close_db = &close_db_pgsql,
.escape_string = &escape_string_pgsql,
.execute = &execute_pgsql,
};
static int configure_pgsql(struct ulogd_pluginstance *upi,
struct ulogd_pluginstance_stack *stack)
{
struct pgsql_instance *pi = (struct pgsql_instance *) upi->private;
pi->db_inst.driver = &db_driver_pgsql;
return ulogd_db_configure(upi, stack);
}
static struct ulogd_plugin pgsql_plugin = {
.name = "PGSQL",
.input = {
.keys = NULL,
.num_keys = 0,
.type = ULOGD_DTYPE_PACKET | ULOGD_DTYPE_FLOW,
},
.output = {
.type = ULOGD_DTYPE_SINK,
},
.config_kset = &pgsql_kset,
.priv_size = sizeof(struct pgsql_instance),
.configure = &configure_pgsql,
.start = &ulogd_db_start,
.stop = &ulogd_db_stop,
.signal = &ulogd_db_signal,
.interp = &ulogd_db_interp,
.version = VERSION,
};
void __attribute__ ((constructor)) init(void);
void init(void)
{
ulogd_register_plugin(&pgsql_plugin);
}
|