source: trunk/src/sh_database.c@ 175

Last change on this file since 175 was 170, checked in by katerina, 16 years ago

Plenty of compiler warnings fixed, SQL query length fixed, doc update.

File size: 48.9 KB
Line 
1/* SAMHAIN file system integrity testing */
2/* Copyright (C) 2001 Rainer Wichmann */
3/* */
4/* This program is free software; you can redistribute it */
5/* and/or modify */
6/* it under the terms of the GNU General Public License as */
7/* published by */
8/* the Free Software Foundation; either version 2 of the License, or */
9/* (at your option) any later version. */
10/* */
11/* This program is distributed in the hope that it will be useful, */
12/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
13/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
14/* GNU General Public License for more details. */
15/* */
16/* You should have received a copy of the GNU General Public License */
17/* along with this program; if not, write to the Free Software */
18/* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20#include "config_xor.h"
21
22#include <stdio.h>
23#include <stdlib.h>
24#include <stdarg.h>
25#include <stddef.h>
26#include <string.h>
27#include <ctype.h>
28#include <sys/types.h>
29
30#ifdef WITH_DATABASE
31
32/* define this if you want to debug the Oracle database support */
33/* #define DB_DEBUG */
34
35#define SH_REAL_SET
36
37#include "samhain.h"
38
39#include "sh_cat.h"
40#include "sh_error.h"
41#include "sh_utils.h"
42
43#undef FIL__
44#define FIL__ _("sh_database.c")
45
46typedef struct my_attr_
47{
48 char * attr;
49 char * attr_o;
50 int inHash;
51 int val;
52 int size;
53 int alen;
54 size_t off;
55} my_attr;
56
57typedef struct dbins_ {
58 struct dbins_ * next;
59 char host[64];
60 char time[20];
61 char msg[1024];
62 char sev[8];
63 char path[MAX_PATH_STORE+1];
64 char user[9];
65 char group[9];
66 char program[8];
67 char subroutine[16];
68 char status[12];
69 char hash[50];
70 char path_data[1024];
71 char hash_data[50];
72 char key_uid[64];
73 char key_uid_data[64];
74 char key_id[16];
75 char module[8];
76 char syscall[16];
77 char ip[16];
78 char tty[16];
79 char peer[64];
80 char fromhost[64];
81 char obj[1024];
82 char interface[64];
83 char ltime[64];
84 char dir[MAX_PATH_STORE+1];
85 char linked_path[MAX_PATH_STORE+1];
86 char service[64];
87 char facility[32];
88 char priority[32];
89 char syslog_msg[1024];
90
91 char mode_old[16];
92 char mode_new[16];
93 char attr_old[16];
94 char attr_new[16];
95 char device_old[16];
96 char device_new[16];
97 char owner_old[9];
98 char owner_new[9];
99 char group_old[9];
100 char group_new[9];
101 char ctime_old[20];
102 char ctime_new[20];
103 char atime_old[20];
104 char atime_new[20];
105 char mtime_old[20];
106 char mtime_new[20];
107 char chksum_old[50];
108 char chksum_new[50];
109 char link_old[MAX_PATH_STORE+1];
110 char link_new[MAX_PATH_STORE+1];
111 char acl_old[1024];
112 char acl_new[1024];
113
114 long long_data[20];
115
116 /*
117 long size_old;
118 long size_new;
119 long hardlinks_old;
120 long hardlinks_new;
121 long inode_old;
122 long inode_new;
123 */
124
125} dbins;
126
127static my_attr * attr_tab_srch = NULL;
128static int attr_tab_srch_siz = 0;
129
130static my_attr attr_tab[] = {
131 { NULL, N_("sev"), 0, 1, 8, 0, offsetof(struct dbins_, sev) },
132 { NULL, N_("tstamp"), 0, 2, 16, 0, offsetof(struct dbins_, time) },
133 { NULL, N_("remote_host"), 0, 3, 64, 0, offsetof(struct dbins_, host) },
134 { NULL, N_("msg"), 0, 4, 1024, 0, offsetof(struct dbins_, msg) },
135
136 { NULL, N_("path"), 0, 5,MAX_PATH_STORE+1, 0, offsetof(struct dbins_, path) },
137 /* username -> userid; replace (long) 'userid' - below - by 'dummy' */
138 { NULL, N_("userid"), 0, 6, 9, 0, offsetof(struct dbins_, user) },
139 { NULL, N_("group"), 0, 7, 9, 0, offsetof(struct dbins_, group) },
140 { NULL, N_("program"), 0, 8, 8, 0, offsetof(struct dbins_, program) },
141 { NULL, N_("subroutine"), 0, 9, 16, 0, offsetof(struct dbins_, subroutine)},
142 { NULL, N_("status"), 0, 10, 12, 0, offsetof(struct dbins_, status) },
143 { NULL, N_("hash"), 0, 11, 50, 0, offsetof(struct dbins_, hash) },
144 { NULL, N_("path_data"), 0, 12, 1024, 0, offsetof(struct dbins_, path_data) },
145 { NULL, N_("hash_data"), 0, 13, 50, 0, offsetof(struct dbins_, hash_data) },
146 { NULL, N_("key_uid"), 0, 14, 64, 0, offsetof(struct dbins_, key_uid) },
147 { NULL, N_("key_uid_data"),0, 15, 64, 0, offsetof(struct dbins_, key_uid_data)},
148 { NULL, N_("key_id"), 0, 16, 16, 0, offsetof(struct dbins_, key_id) },
149 { NULL, N_("module"), 0, 17, 8, 0, offsetof(struct dbins_, module) },
150 { NULL, N_("syscall"), 0, 19, 16, 0, offsetof(struct dbins_, syscall) },
151 { NULL, N_("ip"), 0, 20, 16, 0, offsetof(struct dbins_, ip) },
152 { NULL, N_("tty"), 0, 21, 16, 0, offsetof(struct dbins_, tty) },
153 { NULL, N_("peer"), 0, 22, 64, 0, offsetof(struct dbins_, peer) },
154 { NULL, N_("obj"), 0, 23, 1024, 0, offsetof(struct dbins_, obj) },
155 { NULL, N_("interface"), 0, 24, 64, 0, offsetof(struct dbins_, interface)},
156 { NULL, N_("time"), 0, 25, 64, 0, offsetof(struct dbins_, ltime) },
157 { NULL, N_("dir"), 0, 26, MAX_PATH_STORE+1, 0, offsetof(struct dbins_, dir) },
158 { NULL, N_("linked_path"), 0, 27, MAX_PATH_STORE+1, 0, offsetof(struct dbins_, linked_path)},
159 { NULL, N_("service"), 0, 29, 64, 0, offsetof(struct dbins_, service)},
160 { NULL, N_("facility"), 0, 30, 32, 0, offsetof(struct dbins_, facility) },
161 { NULL, N_("priority"), 0, 31, 32, 0, offsetof(struct dbins_, priority) },
162 { NULL, N_("syslog_msg"), 0, 32, 1024, 0, offsetof(struct dbins_, syslog_msg) },
163
164 { NULL, N_("mode_old"), 0, 33, 16, 0, offsetof(struct dbins_, mode_old) },
165 { NULL, N_("mode_new"), 0, 34, 16, 0, offsetof(struct dbins_, mode_new) },
166 { NULL, N_("device_old"), 0, 35, 16, 0, offsetof(struct dbins_, device_old)},
167 { NULL, N_("device_new"), 0, 36, 16, 0, offsetof(struct dbins_, device_new)},
168 { NULL, N_("owner_old"), 0, 37, 9, 0, offsetof(struct dbins_, owner_old)},
169 { NULL, N_("owner_new"), 0, 38, 9, 0, offsetof(struct dbins_, owner_new)},
170 { NULL, N_("group_old"), 0, 39, 9, 0, offsetof(struct dbins_, group_old)},
171 { NULL, N_("group_new"), 0, 40, 9, 0, offsetof(struct dbins_, group_new)},
172 { NULL, N_("ctime_old"), 0, 41, 20, 0, offsetof(struct dbins_, ctime_old)},
173 { NULL, N_("ctime_new"), 0, 42, 20, 0, offsetof(struct dbins_, ctime_new)},
174 { NULL, N_("atime_old"), 0, 43, 20, 0, offsetof(struct dbins_, atime_old)},
175 { NULL, N_("atime_new"), 0, 44, 20, 0, offsetof(struct dbins_, atime_new)},
176 { NULL, N_("mtime_old"), 0, 45, 20, 0, offsetof(struct dbins_, mtime_old)},
177 { NULL, N_("mtime_new"), 0, 46, 20, 0, offsetof(struct dbins_, mtime_new)},
178 { NULL, N_("chksum_old"), 0, 47, 50, 0, offsetof(struct dbins_, chksum_old)},
179 { NULL, N_("chksum_new"), 0, 48, 50, 0, offsetof(struct dbins_, chksum_new)},
180 { NULL, N_("link_old"), 0, 49, MAX_PATH_STORE+1, 0, offsetof(struct dbins_, link_old)},
181 { NULL, N_("link_new"), 0, 50, MAX_PATH_STORE+1, 0, offsetof(struct dbins_, link_new)},
182
183 { NULL, N_("size_old"), 0, 51, 0, 0, 0 },
184 { NULL, N_("size_new"), 0, 52, 0, 0, 0 },
185 { NULL, N_("hardlinks_old"),0, 53, 0, 0, 0 },
186 { NULL, N_("hardlinks_new"),0, 54, 0, 0, 0 },
187 { NULL, N_("inode_old"), 0, 55, 0, 0, 0 },
188 { NULL, N_("inode_new"), 0, 56, 0, 0, 0 },
189
190 { NULL, N_("imode_old"), 0, 57, 0, 0, 0 },
191 { NULL, N_("imode_new"), 0, 58, 0, 0, 0 },
192 { NULL, N_("iattr_old"), 0, 59, 0, 0, 0 },
193 { NULL, N_("iattr_new"), 0, 60, 0, 0, 0 },
194 { NULL, N_("idevice_old"), 0, 61, 0, 0, 0 },
195 { NULL, N_("idevice_new"), 0, 62, 0, 0, 0 },
196 { NULL, N_("iowner_old"), 0, 63, 0, 0, 0 },
197 { NULL, N_("iowner_new"), 0, 64, 0, 0, 0 },
198 { NULL, N_("igroup_old"), 0, 65, 0, 0, 0 },
199 { NULL, N_("igroup_new"), 0, 66, 0, 0, 0 },
200
201 { NULL, N_("port"), 0, 67, 0, 0, 0 },
202 { NULL, N_("return_code"), 0, 68, 0, 0, 0 },
203 /* { NULL, N_("userid"), 0, 69, 0, 0 }, old 'userid', 1.8.1 */
204
205 { NULL, N_("host"), 0, 70, 64, 0, offsetof(struct dbins_, fromhost)},
206 { NULL, N_("attr_old"), 0, 71, 16, 0, offsetof(struct dbins_, attr_old)},
207 { NULL, N_("attr_new"), 0, 72, 16, 0, offsetof(struct dbins_, attr_new)},
208 { NULL, N_("acl_old"), 0, 73, 1024, 0, offsetof(struct dbins_, acl_old)},
209 { NULL, N_("acl_new"), 0, 74, 1024, 0, offsetof(struct dbins_, acl_new)},
210
211 { NULL, NULL, 0, 0, 0, 0, 0 }
212};
213
214#define SH_SLOT_HOST 70
215#define SH_SLOT_GROUP 7
216#define START_SEC_LONGS 51
217#define END_SEC_LONGS 68
218
219#if defined(HAVE_INT_32)
220typedef unsigned int uint32;
221#elif defined(HAVE_LONG_32)
222typedef unsigned long uint32;
223#elif defined(HAVE_SHORT_32)
224typedef unsigned short uint32;
225#else
226#error No 32 byte type found !
227#endif
228
229typedef unsigned char uint8;
230
231typedef struct md5_ctx
232{
233 uint32 A;
234 uint32 B;
235 uint32 C;
236 uint32 D;
237
238 uint32 total[2];
239 uint32 buflen;
240 char buffer[128];
241} md5Param;
242
243
244typedef unsigned char sh_byte;
245
246
247extern int md5Reset(register md5Param* p);
248extern int md5Update(md5Param* p, const sh_byte* data, int size);
249extern int md5Digest(md5Param* p, uint32* data);
250
251static char db_name[64] = "";
252static char db_table[64] = "";
253static char db_host[64] = "";
254static char db_user[64] = "";
255static char db_password[64] = "";
256
257static int sh_persistent_dbconn = S_TRUE;
258
259int sh_database_use_persistent (const char * str)
260{
261 return sh_util_flagval (str, &sh_persistent_dbconn);
262}
263
264static int insert_value (char * ptr, const char * str)
265{
266 if (!ptr || !str)
267 return -1;
268 if (strlen(str) > 63)
269 return -1;
270 (void) sl_strlcpy(ptr, str, 64);
271 return 0;
272}
273
274static void init_db_entry (dbins * ptr)
275{
276 memset (ptr, (int) '\0', sizeof(dbins));
277 ptr->next = NULL;
278 return;
279}
280
281
282int sh_database_set_database (const char * str)
283{
284 return insert_value (db_name, str);
285}
286int sh_database_set_table (const char * str)
287{
288 return insert_value (db_table, str);
289}
290int sh_database_set_host (const char * str)
291{
292 return insert_value (db_host, str);
293}
294int sh_database_set_user (const char * str)
295{
296 return insert_value (db_user, str);
297}
298int sh_database_set_password (const char * str)
299{
300 return insert_value (db_password, str);
301}
302
303/******************************************************************
304 *
305 * Oracle and unixODBC stuff, only Oracle tested untested
306 *
307 * Based on the code in the snort output plugin (spo_database.c).
308 * Copyright/license statement in spo_database.c:
309 *
310 * Portions Copyright (C) 2000,2001,2002 Carnegie Mellon University
311 * Copyright (C) 2001 Jed Pickel <jed@pickel.net>
312 * Portions Copyright (C) 2001 Andrew R. Baker <andrewb@farm9.com>
313 *
314 * This program is free software; you can redistribute it and/or modify
315 * it under the terms of the GNU General Public License as published by
316 * the Free Software Foundation; either version 2 of the License, or
317 * (at your option) any later version.
318 *
319 * This program is distributed in the hope that it will be useful,
320 * but WITHOUT ANY WARRANTY; without even the implied warranty of
321 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
322 * GNU General Public License for more details.
323 *
324 * You should have received a copy of the GNU General Public License
325 * along with this program; if not, write to the Free Software
326 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
327 *
328 ******************************************************************/
329#ifdef WITH_ODBC
330
331#include <sql.h>
332#include <sqlext.h>
333#include <sqltypes.h>
334
335static SQLHENV u_handle;
336static SQLHDBC u_connection;
337static SQLHSTMT u_statement;
338static SQLINTEGER u_col;
339static SQLINTEGER u_rows;
340
341void sh_database_reset()
342{
343 return;
344}
345
346static
347int sh_database_query (char * query, /*@out@*/ long * id)
348{
349 static int fatal_error = 0;
350 int result = 0;
351 char row_query[128];
352 long result_call;
353
354 SL_ENTER(_("sh_database_query"));
355
356 *id = 0;
357
358 if (fatal_error == 1)
359 {
360 SL_RETURN((-1), _("sh_database_query"));
361 }
362
363 /* Connect
364 */
365 if (db_name[0] == '\0')
366 sl_strlcpy(db_name, _("samhain"), 64);
367
368 if (db_user[0] == '\0')
369 sl_strlcpy(db_user, _("samhain"), 64);
370
371 result_call = SQLAllocEnv(&u_handle);
372 if ((result_call != SQL_SUCCESS) && (result_call != SQL_SUCCESS_WITH_INFO))
373 {
374 sh_error_handle(SH_ERR_NOTICE, FIL__, __LINE__, result_call,
375 MSG_E_SUBGEN,
376 _("Error in SQLAllocEnv when connecting to ODBC data source"),
377 _("sh_database_query"));
378 fatal_error = 1;
379 SL_RETURN((-1), _("sh_database_query"));
380 }
381 result_call = SQLAllocConnect(u_handle, &u_connection);
382 if ((result_call != SQL_SUCCESS) && (result_call != SQL_SUCCESS_WITH_INFO))
383 {
384 sh_error_handle(SH_ERR_NOTICE, FIL__, __LINE__, result_call,
385 MSG_E_SUBGEN,
386 _("Error in SQLAllocEnv when connecting to ODBC data source"),
387 _("sh_database_query"));
388 fatal_error = 1;
389 SL_RETURN((-1), _("sh_database_query"));
390 }
391 result_call = SQLConnect(u_connection, db_name, SQL_NTS,
392 db_user, SQL_NTS, db_password, SQL_NTS);
393 if ((result_call != SQL_SUCCESS) && (result_call != SQL_SUCCESS_WITH_INFO))
394 {
395 sh_error_handle(SH_ERR_NOTICE, FIL__, __LINE__, result_call,
396 MSG_E_SUBGEN,
397 _("Error in SQLAllocEnv when connecting to ODBC data source"),
398 _("sh_database_query"));
399 fatal_error = 1;
400 SL_RETURN((-1), _("sh_database_query"));
401 }
402
403 /* Insert
404 */
405 result_call = SQLAllocStmt(u_connection, &u_statement);
406 if ((result_call == SQL_SUCCESS) || (result_call == SQL_SUCCESS_WITH_INFO))
407 {
408 result_call = SQLPrepare(u_statement, query, SQL_NTS);
409 if ((result_call == SQL_SUCCESS) ||
410 (result_call == SQL_SUCCESS_WITH_INFO))
411 {
412 result_call = SQLExecute(u_statement);
413 if((result_call == SQL_SUCCESS) ||
414 (result_call == SQL_SUCCESS_WITH_INFO))
415 {
416 result = 1;
417 }
418 }
419 }
420
421 if (result == 0)
422 {
423 sh_error_handle(SH_ERR_NOTICE, FIL__, __LINE__, 0, MSG_E_SUBGEN,
424 _("Error inserting into ODBC data source"),
425 _("sh_database_query"));
426 goto odbc_disconnect;
427 }
428
429 /* Select
430 */
431 result = 0;
432
433 sl_strlcpy (row_query, _("SELECT MAX(log_index) FROM "), 128);
434 sl_strlcat (row_query, db_table, 128);
435
436 result_call = SQLAllocStmt(u_connection, &u_statement);
437 if ((result_call == SQL_SUCCESS) ||
438 (result_call == SQL_SUCCESS_WITH_INFO))
439 {
440 result_call = SQLPrepare(u_statement, row_query, SQL_NTS);
441 if ((result_call == SQL_SUCCESS) ||
442 (result_call == SQL_SUCCESS_WITH_INFO))
443 {
444 result_call = SQLExecute(u_statement);
445 if ((result_call == SQL_SUCCESS) ||
446 (result_call == SQL_SUCCESS_WITH_INFO))
447 {
448 result_call = SQLRowCount(u_statement, &u_rows);
449 if ((result_call == SQL_SUCCESS) ||
450 (result_call == SQL_SUCCESS_WITH_INFO))
451 {
452 if((u_rows) && (u_rows == 1))
453 {
454 result_call = SQLFetch(u_statement);
455 if ((result_call == SQL_SUCCESS) ||
456 (result_call == SQL_SUCCESS_WITH_INFO))
457 {
458 result_call = SQLGetData(u_statement, 1,
459 SQL_INTEGER, &u_col,
460 sizeof(u_col), NULL);
461 if ((result_call == SQL_SUCCESS) ||
462 (result_call == SQL_SUCCESS_WITH_INFO))
463 {
464 *id = (long int) u_col;
465 result = 1;
466 }
467 }
468 }
469 }
470 }
471 }
472 }
473
474 if (result == 0)
475 {
476 sh_error_handle(SH_ERR_NOTICE, FIL__, __LINE__, 0, MSG_E_SUBGEN,
477 _("Error selecting MAX(log_index) from ODBC data source"),
478 _("sh_database_query"));
479 }
480
481 odbc_disconnect:
482 SQLFreeHandle(SQL_HANDLE_STMT, u_statement);
483 SQLDisconnect(u_connection);
484 SQLFreeHandle(SQL_HANDLE_DBC, u_connection);
485 SQLFreeHandle(SQL_HANDLE_ENV, u_handle);
486
487 SL_RETURN(((result == 0) ? -1 : 0), _("sh_database_query"));
488
489}
490
491/* #ifdef WITH_ODBC */
492#endif
493
494#ifdef WITH_ORACLE
495
496#include <oci.h>
497
498static OCIDefine * o_define;
499static OCIEnv * o_environment;
500static OCISvcCtx * o_servicecontext;
501static OCIError * o_error = NULL;
502static OCIStmt * o_statement;
503static OCIBind * o_bind = (OCIBind *) 0;
504static text o_errormsg[512];
505static sb4 o_errorcode;
506
507static int connected = 0;
508
509void sh_database_reset()
510{
511 if (connected == 1)
512 {
513 OCILogoff(o_servicecontext, o_error);
514 OCIHandleFree((dvoid *) o_statement, OCI_HTYPE_STMT);
515 OCIHandleFree((dvoid *) o_servicecontext, OCI_HTYPE_SVCCTX);
516 OCIHandleFree((dvoid *) o_error, OCI_HTYPE_ERROR);
517 o_error = NULL;
518 }
519 connected = 0;
520 return;
521}
522
523static char * sh_stripnl (char * str)
524{
525 size_t len = sl_strlen(str);
526 if (len > 0)
527 {
528 if (str[len-1] == '\n')
529 str[len-1] = '\0';
530 }
531 return str;
532}
533
534static
535int sh_database_query (char * query, /*@out@*/ long * id)
536{
537 static int bad_init = 0;
538 int result = 0;
539 char row_query[128];
540 int retry = 0;
541
542 SL_ENTER(_("sh_database_query"));
543
544 *id = 0;
545
546 if (bad_init == 1) {
547 SL_RETURN(-1, _("sh_database_query"));
548 }
549 else if (connected == 1) {
550 goto oracle_connected;
551 }
552
553 /*
554 * Connect
555 */
556#define PRINT_ORACLE_ERR(func_name) \
557 do { \
558 OCIErrorGet(o_error, 1, NULL, &o_errorcode, \
559 o_errormsg, sizeof(o_errormsg), \
560 OCI_HTYPE_ERROR); \
561 sh_stripnl (o_errormsg); \
562 sh_error_handle((-1), FIL__, __LINE__, (long) o_errorcode, MSG_E_SUBGEN, \
563 o_errormsg, _("sh_database_query")); \
564 sl_snprintf(row_query, 127, \
565 _("%s: Connection to database '%s' failed"), \
566 func_name, db_name); \
567 sh_error_handle((-1), FIL__, __LINE__, (long) o_errorcode, MSG_E_SUBGEN, \
568 row_query, _("sh_database_query")); \
569 bad_init = 1; \
570 SL_RETURN(-1, _("sh_database_query")); \
571 } while (1 == 0)
572
573 oracle_doconnect:
574
575 if (!getenv("ORACLE_HOME")) /* flawfinder: ignore */
576 {
577 sh_error_handle((-1), FIL__, __LINE__, 0, MSG_E_SUBGEN,
578 _("ORACLE_HOME environment variable not set"),
579 _("sh_database_query"));
580 }
581 if (db_name[0] == '\0')
582 {
583 sh_error_handle((-1), FIL__, __LINE__, 0, MSG_E_SUBGEN,
584 _("database name not set, using default 'samhain'"),
585 _("sh_database_query"));
586 sl_strlcpy(db_name, _("samhain"), 64);
587 }
588 if (db_user[0] == '\0')
589 {
590 sh_error_handle((-1), FIL__, __LINE__, 0, MSG_E_SUBGEN,
591 _("database user not set, using default 'samhain'"),
592 _("sh_database_query"));
593 sl_strlcpy(db_user, _("samhain"), 64);
594 }
595 if (db_password[0] == '\0')
596 {
597 sh_error_handle((-1), FIL__, __LINE__, 0, MSG_E_SUBGEN,
598 _("database password not set, cannot proceed"),
599 _("sh_database_query"));
600 bad_init = 1;
601 SL_RETURN(-1, _("sh_database_query"));
602 }
603
604
605#ifdef DB_DEBUG
606 sl_snprintf(row_query, 127,
607 _("Conncting to oracle database '%s'"),
608 db_name);
609 sh_error_handle(SH_ERR_NOTICE, FIL__, __LINE__, 0, MSG_E_SUBGEN,
610 row_query,
611 _("sh_database_query"));
612#endif
613
614 /* a) Oracle says use OCIEnvCreate instead of OCIInitialize/OCIEnvcreate
615 * b) why two times OCIEnvInit() ???
616 */
617 if (OCIInitialize(OCI_DEFAULT, NULL, NULL, NULL, NULL))
618 PRINT_ORACLE_ERR("OCIInitialize");
619
620 if (OCIEnvInit(&o_environment, OCI_DEFAULT, 0, NULL))
621 PRINT_ORACLE_ERR("OCIEnvInit");
622
623 if (OCIEnvInit(&o_environment, OCI_DEFAULT, 0, NULL))
624 PRINT_ORACLE_ERR("OCIEnvInit (2)");
625
626 /* allocate and initialize the error handle
627 */
628 if (OCIHandleAlloc(o_environment, (dvoid **)&o_error,
629 OCI_HTYPE_ERROR, (size_t) 0, NULL))
630 PRINT_ORACLE_ERR("OCIHandleAlloc");
631
632 /* logon and allocate the service context handle
633 */
634 if (OCILogon(o_environment, o_error, &o_servicecontext,
635 (OraText*) db_user, sl_strlen(db_user),
636 (OraText*) db_password, sl_strlen(db_password),
637 (OraText*) db_name, sl_strlen(db_name)))
638 {
639 OCIErrorGet(o_error, 1, NULL, &o_errorcode,
640 o_errormsg, sizeof(o_errormsg), OCI_HTYPE_ERROR);
641 sh_stripnl (o_errormsg);
642 sh_error_handle((-1), FIL__, __LINE__, 0, MSG_E_SUBGEN,
643 o_errormsg,
644 _("sh_database_query"));
645 sh_error_handle((-1), FIL__, __LINE__, 0, MSG_E_SUBGEN,
646 _("check database is listed in tnsnames.ora"),
647 _("sh_database_query"));
648 sh_error_handle((-1), FIL__, __LINE__, 0, MSG_E_SUBGEN,
649 _("check tnsnames.ora readable"),
650 _("sh_database_query"));
651 sh_error_handle((-1), FIL__, __LINE__, 0, MSG_E_SUBGEN,
652 _("check database accessible with sqlplus"),
653 _("sh_database_query"));
654 sl_snprintf(row_query, 127,
655 _("OCILogon: Connection to database '%s' failed"),
656 db_name);
657 sh_error_handle((-1), FIL__, __LINE__, 0, MSG_E_SUBGEN,
658 row_query, _("sh_database_query"));
659 bad_init = 1;
660 SL_RETURN(-1, _("sh_database_query"));
661 }
662
663 if (OCIHandleAlloc(o_environment, (dvoid **)&o_statement,
664 OCI_HTYPE_STMT, 0, NULL))
665 PRINT_ORACLE_ERR("OCIHandleAlloc (2)");
666
667 /* Flag connection status
668 */
669 connected = 1;
670
671 oracle_connected:
672
673 /* Get row index
674 */
675 sl_strlcpy (row_query, _("SELECT log_log_index_seq.NEXTVAL FROM dual"), 128);
676
677#ifdef DB_DEBUG
678 sh_error_handle(SH_ERR_NOTICE, FIL__, __LINE__, 0, MSG_E_SUBGEN,
679 row_query,
680 _("sh_database_query"));
681#endif
682
683 if (OCIStmtPrepare(o_statement, o_error,
684 (OraText*) row_query, sl_strlen(row_query),
685 OCI_NTV_SYNTAX, OCI_DEFAULT))
686 {
687 OCIErrorGet(o_error, 1, NULL,
688 &o_errorcode, o_errormsg, sizeof(o_errormsg),
689 OCI_HTYPE_ERROR);
690 sh_stripnl (o_errormsg);
691 sh_error_handle((-1), FIL__, __LINE__, (long) o_errorcode, MSG_E_SUBGEN,
692 o_errormsg,
693 _("sh_database_query"));
694 if (retry == 0 &&
695 (3114 == o_errorcode || 0 == strncmp(o_errormsg, _("ORA-03114"), 9)))
696 {
697 ++retry; sh_database_reset(); goto oracle_doconnect;
698 }
699 goto err_out;
700 }
701
702 if (OCIStmtExecute(o_servicecontext, o_statement, o_error,
703 0, 0, NULL, NULL, OCI_DEFAULT))
704 {
705 OCIErrorGet(o_error, 1, NULL,
706 &o_errorcode, o_errormsg, sizeof(o_errormsg),
707 OCI_HTYPE_ERROR);
708 sh_stripnl (o_errormsg);
709 sh_error_handle((-1), FIL__, __LINE__, (long) o_errorcode, MSG_E_SUBGEN,
710 o_errormsg,
711 _("sh_database_query"));
712 if (retry == 0 &&
713 (3114 == o_errorcode || 0 == strncmp(o_errormsg, _("ORA-03114"), 9)))
714 {
715 ++retry; sh_database_reset(); goto oracle_doconnect;
716 }
717 goto err_out;
718 }
719
720 if (OCIDefineByPos (o_statement, &o_define, o_error, 1,
721 &result, sizeof(result),
722 SQLT_INT, 0, 0, 0, OCI_DEFAULT))
723 {
724 OCIErrorGet(o_error, 1, NULL,
725 &o_errorcode, o_errormsg, sizeof(o_errormsg),
726 OCI_HTYPE_ERROR);
727 sh_stripnl (o_errormsg);
728 sh_error_handle((-1), FIL__, __LINE__, (long) o_errorcode, MSG_E_SUBGEN,
729 o_errormsg,
730 _("sh_database_query"));
731 if (retry == 0 &&
732 (3114 == o_errorcode || 0 == strncmp(o_errormsg, _("ORA-03114"), 9)))
733 {
734 ++retry; sh_database_reset(); goto oracle_doconnect;
735 }
736 goto err_out;
737 }
738 if (OCIStmtFetch (o_statement, o_error, 1, OCI_FETCH_NEXT, OCI_DEFAULT))
739 {
740 OCIErrorGet(o_error, 1, NULL,
741 &o_errorcode, o_errormsg, sizeof(o_errormsg),
742 OCI_HTYPE_ERROR);
743 sh_stripnl (o_errormsg);
744 sh_error_handle((-1), FIL__, __LINE__, (long) o_errorcode, MSG_E_SUBGEN,
745 o_errormsg,
746 _("sh_database_query"));
747 if (retry == 0 &&
748 (3114 == o_errorcode || 0 == strncmp(o_errormsg, _("ORA-03114"), 9)))
749 {
750 ++retry; sh_database_reset(); goto oracle_doconnect;
751 }
752 goto err_out;
753 }
754
755#ifdef DB_DEBUG
756 sl_snprintf(row_query, 127, _("Returned value: %d"), result);
757 sh_error_handle(SH_ERR_NOTICE, FIL__, __LINE__, 0, MSG_E_SUBGEN,
758 row_query,
759 _("sh_database_query"));
760#endif
761
762 *id = result;
763
764 /* do the insert
765 */
766#ifdef DB_DEBUG
767 sh_error_handle(SH_ERR_NOTICE, FIL__, __LINE__, 0, MSG_E_SUBGEN,
768 query,
769 _("sh_database_query"));
770#endif
771
772 if (OCIStmtPrepare(o_statement, o_error,
773 (OraText*) query, sl_strlen(query),
774 OCI_NTV_SYNTAX, OCI_DEFAULT))
775 {
776 OCIErrorGet(o_error, 1, NULL,
777 &o_errorcode, o_errormsg, sizeof(o_errormsg),
778 OCI_HTYPE_ERROR);
779 sh_stripnl (o_errormsg);
780 sh_error_handle((-1), FIL__, __LINE__, (long) o_errorcode, MSG_E_SUBGEN,
781 o_errormsg,
782 _("sh_database_query"));
783 if (retry == 0 &&
784 (3114 == o_errorcode || 0 == strncmp(o_errormsg, _("ORA-03114"), 9)))
785 {
786 ++retry; sh_database_reset(); goto oracle_doconnect;
787 }
788 goto err_out;
789 }
790
791 if (OCIBindByPos(o_statement, &o_bind, o_error, 1,
792 (dvoid *) &result, (sword) sizeof(result), SQLT_INT,
793 (dvoid *) 0, (ub2 *) 0, (ub2 *) 0, (ub4) 0, (ub4 *) 0, OCI_DEFAULT))
794 {
795 OCIErrorGet(o_error, 1, NULL,
796 &o_errorcode, o_errormsg, sizeof(o_errormsg),
797 OCI_HTYPE_ERROR);
798 sh_stripnl (o_errormsg);
799 sh_error_handle((-1), FIL__, __LINE__, (long) o_errorcode, MSG_E_SUBGEN,
800 o_errormsg,
801 _("sh_database_query"));
802 if (retry == 0 &&
803 (3114 == o_errorcode || 0 == strncmp(o_errormsg, _("ORA-03114"), 9)))
804 {
805 ++retry; sh_database_reset(); goto oracle_doconnect;
806 }
807 goto err_out;
808 }
809
810 if (OCIStmtExecute(o_servicecontext,
811 o_statement, o_error, 1, 0,
812 NULL, NULL, OCI_COMMIT_ON_SUCCESS))
813 {
814 OCIErrorGet(o_error, 1, NULL,
815 &o_errorcode, o_errormsg, sizeof(o_errormsg),
816 OCI_HTYPE_ERROR);
817 sh_stripnl (o_errormsg);
818 sh_error_handle((-1), FIL__, __LINE__, (long) o_errorcode, MSG_E_SUBGEN,
819 o_errormsg,
820 _("sh_database_query"));
821 if (retry == 0 &&
822 (3114 == o_errorcode || 0 == strncmp(o_errormsg, _("ORA-03114"), 9)))
823 {
824 ++retry; sh_database_reset(); goto oracle_doconnect;
825 }
826 goto err_out;
827 }
828
829#ifdef DB_DEBUG
830 sh_error_handle(SH_ERR_NOTICE, FIL__, __LINE__, 0, MSG_E_SUBGEN,
831 _("No error on insert"),
832 _("sh_database_query"));
833#endif
834
835 if (sh_persistent_dbconn == S_FALSE)
836 {
837 OCILogoff(o_servicecontext, o_error);
838 OCIHandleFree((dvoid *) o_statement, OCI_HTYPE_STMT);
839 OCIHandleFree((dvoid *) o_servicecontext, OCI_HTYPE_SVCCTX);
840 OCIHandleFree((dvoid *) o_error, OCI_HTYPE_ERROR);
841 o_error = NULL;
842 connected = 0;
843 }
844 SL_RETURN(0, _("sh_database_query"));
845
846 err_out:
847 /*
848 * Error
849 */
850 if (sh_persistent_dbconn == S_FALSE)
851 {
852 OCILogoff(o_servicecontext, o_error);
853 OCIHandleFree((dvoid *) o_statement, OCI_HTYPE_STMT);
854 OCIHandleFree((dvoid *) o_servicecontext, OCI_HTYPE_SVCCTX);
855 OCIHandleFree((dvoid *) o_error, OCI_HTYPE_ERROR);
856 o_error = NULL;
857 connected = 0;
858 }
859 SL_RETURN(-1, _("sh_database_query"));
860}
861
862/* #ifdef WITH_ORACLE */
863#endif
864
865#ifdef WITH_POSTGRES
866/******************************************************************
867 *
868 * Postgresql stuff, tested
869 *
870 ******************************************************************/
871
872#ifdef HAVE_PGSQL_LIBPQ_FE_H
873#include <pgsql/libpq-fe.h>
874#else
875#include <libpq-fe.h>
876#endif
877
878static int connection_status = S_FALSE;
879
880void sh_database_reset()
881{
882 connection_status = S_FALSE;
883 return;
884}
885
886static
887int sh_database_query (char * query, /*@out@*/ long * id)
888{
889 char conninfo[256];
890 char * p;
891 static PGconn * conn = NULL;
892 PGresult * res;
893 unsigned int i;
894 const char * params[1];
895 char id_param[32];
896 static SH_TIMEOUT sh_timer = { 0, 3600, S_TRUE };
897
898 SL_ENTER(_("sh_database_query"));
899
900 *id = 0;
901
902 p = &conninfo[0];
903
904 if (db_host[0] == '\0')
905 sl_strlcpy(db_host, _("localhost"), 64);
906 if (db_name[0] == '\0')
907 sl_strlcpy(db_name, _("samhain"), 64);
908 if (db_user[0] == '\0')
909 sl_strlcpy(db_user, _("samhain"), 64);
910
911 if (db_host[0] != '\0' && NULL != strchr(db_host, '.'))
912 {
913 sl_snprintf(p, 255, "hostaddr=%s ", db_host);
914 p = &conninfo[strlen(conninfo)];
915 }
916 if (db_name[0] != '\0')
917 {
918 sl_snprintf(p, 255 - strlen(conninfo), "dbname=%s ", db_name);
919 p = &conninfo[strlen(conninfo)];
920 }
921
922 if (db_user[0] != '\0')
923 {
924 sl_snprintf(p, 255 - strlen(conninfo), "user=%s ", db_user);
925 p = &conninfo[strlen(conninfo)];
926 }
927
928 if (db_password[0] != '\0')
929 {
930 sl_snprintf(p, 255 - strlen(conninfo), "password=%s ", db_password);
931 }
932
933 if (connection_status == S_FALSE)
934 {
935 if (conn)
936 PQfinish(conn);
937 conn = NULL;
938 conn = PQconnectdb(conninfo);
939 }
940 else
941 {
942 if (PQstatus(conn) == CONNECTION_BAD)
943 PQreset(conn);
944 }
945
946 if ((conn == NULL) || (PQstatus(conn) == CONNECTION_BAD))
947 {
948 connection_status = S_FALSE;
949
950 sh_timer.flag_ok = S_FALSE;
951 if (S_TRUE == sh_util_timeout_check(&sh_timer))
952 {
953 goto err_out;
954 }
955 else
956 {
957 if (conn)
958 PQfinish(conn);
959 conn = NULL;
960 SL_RETURN(0, _("sh_database_query"));
961 }
962 }
963 connection_status = S_TRUE;
964
965
966 /* get the unique row index
967 */
968 res = PQexec(conn, _("SELECT NEXTVAL('log_log_index_seq')"));
969 if (PQresultStatus(res) != PGRES_TUPLES_OK)
970 {
971 PQclear(res);
972 goto err_out;
973 }
974
975 *id = atoi (PQgetvalue(res, 0, 0));
976 PQclear(res);
977
978 sl_snprintf(id_param, 32, "%ld", *id);
979 params[0] = id_param;
980
981 /* do the insert
982 */
983 res = PQexecParams(conn, query, 1, NULL, params, NULL, NULL, 1);
984 if (PQresultStatus(res) != PGRES_COMMAND_OK)
985 {
986 PQclear(res);
987 goto err_out;
988 }
989 PQclear(res);
990
991 if (S_FALSE == sh_persistent_dbconn)
992 {
993 if (conn)
994 PQfinish(conn);
995 conn = NULL;
996 connection_status = S_FALSE;
997 }
998 SL_RETURN(0, _("sh_database_query"));
999
1000
1001 err_out:
1002 if (conn)
1003 {
1004 p = PQerrorMessage(conn);
1005 for (i = 0; i < sl_strlen(p); ++i)
1006 if (p[i] == '\n') p[i] = ' ';
1007 }
1008 else
1009 {
1010 p = NULL;
1011 }
1012 sh_error_handle((-1), FIL__, __LINE__, 0, MSG_E_SUBGEN,
1013 (p == NULL ? _("(null)") : p),
1014 _("sh_database_query"));
1015 if (conn)
1016 PQfinish(conn);
1017 conn = NULL;
1018 connection_status = S_FALSE;
1019 SL_RETURN(-1, _("sh_database_query"));
1020}
1021#endif
1022
1023
1024#ifdef WITH_MYSQL
1025
1026#ifdef HAVE_MYSQL_MYSQL_H
1027#include <mysql/mysql.h>
1028#else
1029#include <mysql.h>
1030#endif
1031
1032extern int flag_err_debug;
1033
1034static int connection_status = S_FALSE;
1035
1036void sh_database_reset(void)
1037{
1038 connection_status = S_FALSE;
1039 return;
1040}
1041
1042static
1043int sh_database_query (char * query, /*@out@*/ long * id)
1044{
1045 int status = 0;
1046 const char * p;
1047 static MYSQL * db_conn = NULL;
1048 static SH_TIMEOUT sh_timer = { 0, 3600, S_TRUE };
1049
1050 SL_ENTER(_("sh_database_query"));
1051
1052 *id = 0;
1053
1054 if (query == NULL)
1055 {
1056 sh_error_handle(SH_ERR_ALL, FIL__, __LINE__, 0, MSG_E_SUBGEN,
1057 _("NULL query"),
1058 _("sh_database_query"));
1059 SL_RETURN(0, _("sh_database_query"));
1060 }
1061
1062 if (db_host[0] == '\0')
1063 (void) sl_strlcpy(db_host, _("localhost"), 64);
1064 if (db_name[0] == '\0')
1065 (void) sl_strlcpy(db_name, _("samhain"), 64);
1066 if (db_user[0] == '\0')
1067 (void) sl_strlcpy(db_user, _("samhain"), 64);
1068
1069 if ((db_conn == NULL) || (connection_status == S_FALSE))
1070 {
1071 if (db_conn)
1072 {
1073 mysql_close(db_conn);
1074 db_conn = NULL;
1075 }
1076 connection_status = S_FALSE;
1077
1078 db_conn = mysql_init(NULL);
1079 if (NULL == db_conn)
1080 {
1081 p = NULL; status = 0;
1082 sh_timer.flag_ok = S_FALSE;
1083 if (S_TRUE == sh_util_timeout_check(&sh_timer))
1084 {
1085 goto alt_out;
1086 }
1087 else
1088 {
1089 SL_RETURN(0, _("sh_database_query"));
1090 }
1091 }
1092
1093 /* Read in defaults from /etc/my.cnf and associated files,
1094 * suggested by arjones at simultan dyndns org
1095 * see: - http://dev.mysql.com/doc/refman/5.0/en/option-files.html
1096 * for the my.cnf format,
1097 * - http://dev.mysql.com/doc/refman/5.0/en/mysql-options.html
1098 * for possible options
1099 * We don't check the return value because it's useless (failure due
1100 * to lack of access permission is not reported).
1101 */
1102#if !defined(__x86_64__)
1103 /*
1104 * libmysql segfaults on x86-64 if this is used
1105 */
1106 mysql_options(db_conn, MYSQL_READ_DEFAULT_GROUP, _("samhain"));
1107#endif
1108
1109 status = 0;
1110
1111 if (NULL == mysql_real_connect(db_conn,
1112 db_host[0] == '\0' ? NULL : db_host,
1113 db_user[0] == '\0' ? NULL : db_user,
1114 db_password[0] == '\0' ? NULL : db_password,
1115 db_name[0] == '\0' ? NULL : db_name,
1116 0, NULL, 0))
1117 {
1118 sh_timer.flag_ok = S_FALSE;
1119 if (S_TRUE == sh_util_timeout_check(&sh_timer))
1120 {
1121 goto err_out;
1122 }
1123 else
1124 {
1125 SL_RETURN(0, _("sh_database_query"));
1126 }
1127 }
1128 connection_status = S_TRUE;
1129 }
1130 else
1131 {
1132 if (0 != mysql_ping(db_conn))
1133 {
1134 connection_status = S_FALSE;
1135 sh_timer.flag_ok = S_FALSE;
1136 if (S_TRUE == sh_util_timeout_check(&sh_timer))
1137 {
1138 goto err_out;
1139 }
1140 else
1141 {
1142 SL_RETURN(0, _("sh_database_query"));
1143 }
1144 }
1145 }
1146
1147 if (0 != mysql_query(db_conn, query))
1148 {
1149 goto err_out;
1150 }
1151
1152 if (flag_err_debug == SL_TRUE)
1153 {
1154 p = mysql_info (db_conn);
1155 if (p != NULL)
1156 {
1157 sh_error_handle(SH_ERR_ALL, FIL__, __LINE__, 0, MSG_E_SUBGEN,
1158 p,
1159 _("sh_database_query"));
1160 }
1161 }
1162
1163 *id = (long) mysql_insert_id(db_conn);
1164 if (S_FALSE == sh_persistent_dbconn)
1165 {
1166 if (db_conn)
1167 mysql_close(db_conn);
1168 db_conn = NULL;
1169 connection_status = S_FALSE;
1170 }
1171 SL_RETURN(0, _("sh_database_query"));
1172
1173 err_out:
1174
1175 if (db_conn)
1176 {
1177 p = mysql_error (db_conn);
1178 status = (int) mysql_errno (db_conn);
1179 }
1180 else
1181 {
1182 p = NULL; p = 0;
1183 }
1184
1185 alt_out:
1186
1187 *id = 0;
1188 sh_error_handle((-1), FIL__, __LINE__, status, MSG_E_SUBGEN,
1189 (p == NULL ? _("(null)") : p),
1190 _("sh_database_query"));
1191 if (db_conn)
1192 mysql_close(db_conn);
1193 db_conn = NULL;
1194 connection_status = S_FALSE;
1195 SL_RETURN(status, _("sh_database_query"));
1196}
1197#endif
1198
1199static
1200char * null_or_val (char * end, char * val, int * size, int flag)
1201{
1202 long len;
1203
1204 if (!((end == NULL) || (val == NULL) || (size == NULL)))
1205 {
1206 if (val[0] != '\0')
1207 {
1208 if (*size > 1)
1209 {
1210 *end = ','; ++end; (*size) -= 1;
1211 if (flag == 1) { *end = '\''; ++end; (*size) -= 1; }
1212 *end = '\0';
1213 }
1214 len = (long) strlen(val);
1215 if ((long) *size > (len+1))
1216 {
1217 (void) sl_strlcat(end, val, (size_t) *size);
1218 end += len; (*size) -= len;
1219 if (flag == 1) { *end = '\''; ++end; (*size) -= 1; }
1220 *end = '\0';
1221 }
1222 }
1223 }
1224
1225 return end;
1226}
1227
1228#define SH_QUERY_MAX SH_MSG_BUF
1229/* define SH_QUERY_MAX 16383 */
1230
1231static
1232long sh_database_entry (dbins * db_entry, long id)
1233{
1234 /* This does not need to be re-entrant
1235 */
1236 char * query;
1237 static char columns[1024];
1238 char * values;
1239
1240 int status;
1241 long the_id;
1242 int size;
1243 char * end;
1244 int c_size;
1245 char * c_end;
1246 char * p;
1247 int i;
1248 char num[64];
1249
1250 md5Param crc;
1251 unsigned char md5buffer[16];
1252 char md5out[33];
1253 int cnt;
1254
1255 size_t len_val;
1256 size_t len_col;
1257
1258 SL_ENTER(_("sh_database_entry"));
1259
1260 query = SH_ALLOC(SH_QUERY_MAX+1);
1261 values = SH_ALLOC(SH_QUERY_MAX+1);
1262
1263 (void) md5Reset(&crc);
1264
1265 if (db_entry->host[0] == '\0')
1266 {
1267 if (sh.host.name[0] == '\0')
1268 (void) strcpy (db_entry->host, _("localhost")); /* known to fit */
1269 else
1270 (void) sl_strlcpy (db_entry->host, sh.host.name, 64);
1271 }
1272
1273 /*@-bufferoverflowhigh@*/
1274 if (id >= 0)
1275 sprintf(num, "%ld", id); /* known to fit */
1276 /*@+bufferoverflowhigh@*/
1277
1278#if defined(WITH_ORACLE)
1279 /* Oracle needs some help for the time format (fix by Michael Somers)
1280 */
1281 (void)
1282 sl_snprintf (values, SH_QUERY_MAX,
1283 _("(:1,%s,%c%s%c,to_date(%c%s%c,'YYYY-MM-DD HH24:MI:SS'),%c%s%c,%c%s%c"),
1284 id >= 0 ? num : _("NULL"),
1285 '\'', db_entry->host,'\'',
1286 '\'', db_entry->time,'\'',
1287 '\'', db_entry->sev, '\'',
1288 '\'',
1289 (db_entry->msg[0] == '\0' ? _("NULL") : db_entry->msg),
1290 '\'');
1291 (void) sl_snprintf (columns, 1023,
1292 _("(log_index,log_ref,log_host,log_time,log_sev,log_msg"));
1293#elif defined(WITH_POSTGRES)
1294 /* Prepare query for PQexecParams
1295 */
1296 (void)
1297 sl_snprintf (values, SH_QUERY_MAX,
1298 _("($1,%s,%c%s%c,%c%s%c,%c%s%c,%c%s%c"),
1299 id >= 0 ? num : _("NULL"),
1300 '\'', db_entry->host,'\'',
1301 '\'', db_entry->time,'\'',
1302 '\'', db_entry->sev, '\'',
1303 '\'',
1304 (db_entry->msg[0] == '\0' ? _("NULL") : db_entry->msg),
1305 '\'');
1306 (void) sl_snprintf (columns, 1023,
1307 _("(log_index,log_ref,log_host,log_time,log_sev,log_msg"));
1308#else
1309 (void)
1310 sl_snprintf (values, SH_QUERY_MAX, _("(%s,%c%s%c,%c%s%c,%c%s%c,%c%s%c"),
1311 id >= 0 ? num : _("NULL"),
1312 '\'', db_entry->host,'\'',
1313 '\'', db_entry->time,'\'',
1314 '\'', db_entry->sev, '\'',
1315 '\'',
1316 (db_entry->msg[0] == '\0' ? _("NULL") : db_entry->msg),
1317 '\'');
1318 (void) sl_snprintf (columns, 1023,
1319 _("(log_ref,log_host,log_time,log_sev,log_msg"));
1320#endif
1321
1322
1323 /*@-type@*//* byte* versus char[..] */
1324 if (attr_tab[0].inHash == 1)
1325 (void) md5Update(&crc, (sh_byte*) db_entry->sev,
1326 (int) strlen(db_entry->sev));
1327 if (attr_tab[1].inHash == 1)
1328 (void) md5Update(&crc, (sh_byte*) db_entry->time,
1329 (int) strlen(db_entry->time));
1330 if (attr_tab[2].inHash == 1)
1331 (void) md5Update(&crc, (sh_byte*) db_entry->host,
1332 (int) strlen(db_entry->host));
1333 if (attr_tab[3].inHash == 1 && db_entry->msg[0] != '\0')
1334 (void) md5Update(&crc, (sh_byte*) db_entry->msg,
1335 (int) strlen(db_entry->sev));
1336 /*@+type@*/
1337
1338 len_val = strlen(values);
1339 size = (int) (SH_QUERY_MAX - len_val);
1340 end = values + len_val;
1341
1342 len_col = strlen(columns);
1343 c_size = 1023 - (int) len_col; /* sizeof(colums) == 1024 */
1344 c_end = columns + len_col;
1345
1346 i = 4;
1347
1348 while (attr_tab[i].attr != NULL)
1349 {
1350 if (attr_tab[i].size != 0)
1351 {
1352 if (attr_tab[i].val > 40 && attr_tab[i].val < 47)
1353 {
1354 /* remove the 'T' between date and time
1355 */
1356 p = (char *)(db_entry)+attr_tab[i].off;
1357 p = strchr(p, 'T');
1358 if (p) *p = ' ';
1359 }
1360 p = end;
1361 end = null_or_val(end,((char *)(db_entry)+attr_tab[i].off),&size,1);
1362 if (p != end)
1363 {
1364 if ((attr_tab[i].val != SH_SLOT_HOST) &&
1365 (attr_tab[i].val != SH_SLOT_GROUP))
1366 {
1367 c_end = null_or_val (c_end, attr_tab[i].attr, &c_size,0);
1368 }
1369 else
1370 {
1371 /*
1372 * 'host' is a reserved word in SQL
1373 */
1374 if (attr_tab[i].val == SH_SLOT_HOST)
1375 c_end = null_or_val (c_end, _("fromhost"), &c_size,0);
1376 /*
1377 * 'group' is a reserved word in SQL
1378 */
1379 else /* if (attr_tab[i].val == SH_SLOT_GROUP) */
1380 c_end = null_or_val (c_end, _("grp"), &c_size,0);
1381 }
1382 }
1383 /*@-type@*//* byte* versus char[..] */
1384 if (attr_tab[i].inHash == 1 &&
1385 ((char *)(db_entry)+attr_tab[i].off) != '\0')
1386 {
1387 (void)md5Update(&crc,
1388 (sh_byte*) ((char *)(db_entry)+attr_tab[i].off),
1389 (int)strlen((char *)(db_entry)+attr_tab[i].off));
1390 }
1391 /*@+type@*/
1392 }
1393 else if (attr_tab[i].val >= START_SEC_LONGS &&
1394 attr_tab[i].val <= END_SEC_LONGS)
1395 {
1396 (void)
1397 sl_snprintf(end, (size_t)(size-1), _(",\'%ld\'"),
1398 db_entry->long_data[attr_tab[i].val-START_SEC_LONGS]);
1399 while (*end != '\0') { ++end; --size; }
1400 (void) sl_snprintf(c_end, (size_t)(c_size-1),
1401 _(",%s"), attr_tab[i].attr);
1402 while (*c_end != '\0') { ++c_end; --c_size; }
1403 if (attr_tab[i].inHash == 1)
1404 {
1405 /*@-type@*//* byte* versus char[..] */
1406 (void)
1407 md5Update(&crc,
1408 (sh_byte *) db_entry->long_data[attr_tab[i].val-START_SEC_LONGS],
1409 sizeof(long));
1410 /*@+type@*/
1411 }
1412 }
1413
1414 ++i;
1415 }
1416
1417 (void) md5Digest(&crc, (uint32 *) md5buffer);
1418 /*@-bufferoverflowhigh -usedef@*/
1419 for (cnt = 0; cnt < 16; ++cnt)
1420 sprintf (&md5out[cnt*2], _("%02X"), /* known to fit */
1421 (unsigned int) md5buffer[cnt]);
1422 /*@+bufferoverflowhigh +usedef@*/
1423 md5out[32] = '\0';
1424
1425 (void) sl_snprintf(end, (size_t) (size-1), _(",%c%s%c"), '\'', md5out, '\'');
1426 while (*end != '\0') { ++end; --size; }
1427 (void) sl_snprintf(c_end, (size_t) (c_size-1),_(",log_hash"));
1428 while (*c_end != '\0') { ++c_end; --c_size; }
1429
1430
1431 if (size > 1) { *end = ')'; ++end; *end = '\0'; }
1432 if (c_size > 1) { *c_end = ')'; ++c_end; *c_end = '\0'; }
1433
1434 if (db_table[0] == '\0')
1435 (void) sl_strlcpy(db_table, _("log"), 64);
1436
1437 (void) sl_snprintf (query, SH_QUERY_MAX,
1438 _("INSERT INTO %s %s VALUES %s"),
1439 db_table, columns, values);
1440
1441 status = sh_database_query (query, &the_id);
1442
1443 /*@-usedef@*//* no, 'values' is allocated here */
1444 SH_FREE(values);
1445 /*@+usedef@*/
1446 SH_FREE(query);
1447
1448 SL_RETURN(the_id, _("sh_database_entry"));
1449}
1450
1451static int sh_database_comp_attr (const void *m1, const void *m2)
1452{
1453 const my_attr *mi1 = (const my_attr *) m1;
1454 const my_attr *mi2 = (const my_attr *) m2;
1455 return strcmp(mi1->attr, mi2->attr);
1456}
1457
1458
1459static void init_attr_table(void)
1460{
1461 static int first = S_TRUE;
1462 int i, j;
1463
1464#ifdef SH_STEALTH
1465 int k;
1466
1467 if (first == S_FALSE)
1468 return;
1469
1470 i = 0;
1471 while (attr_tab[i].attr_o != NULL)
1472 {
1473 j = strlen(attr_tab[i].attr_o);
1474 attr_tab[i].attr = malloc (j+1); /* only once */
1475 if (NULL == attr_tab[i].attr)
1476 return;
1477 for (k = 0; k < j; ++k)
1478 attr_tab[i].attr[k] = attr_tab[i].attr_o[k] ^ XOR_CODE;
1479 attr_tab[i].attr[j] = '\0';
1480 attr_tab[i].alen = strlen(attr_tab[i].attr_o);
1481 ++i;
1482 }
1483 first = S_FALSE;
1484
1485#else
1486
1487 if (first == S_FALSE)
1488 return;
1489
1490 i = 0;
1491 while (attr_tab[i].attr_o != NULL)
1492 {
1493 attr_tab[i].attr = attr_tab[i].attr_o;
1494 attr_tab[i].alen = strlen(attr_tab[i].attr_o);
1495 ++i;
1496 }
1497 first = S_FALSE;
1498
1499#endif
1500
1501 /* create a sorted table for binary search
1502 */
1503 attr_tab_srch = SH_ALLOC(i * sizeof(my_attr));
1504 for (j=0; j<i; ++j)
1505 memcpy(&attr_tab_srch[j], &attr_tab[j], sizeof(my_attr));
1506 qsort(attr_tab_srch, i, sizeof(my_attr), sh_database_comp_attr);
1507 attr_tab_srch_siz = i;
1508
1509 return;
1510}
1511
1512int sh_database_add_to_hash (const char * str)
1513{
1514 int i;
1515
1516 if (!str)
1517 return -1;
1518 init_attr_table();
1519 if (0 == strcmp(str, _("log_msg"))) { attr_tab[3].inHash = 1; return 0;}
1520 if (0 == strcmp(str, _("log_sev"))) { attr_tab[0].inHash = 1; return 0;}
1521 if (0 == strcmp(str, _("log_time"))) { attr_tab[1].inHash = 1; return 0;}
1522 if (0 == strcmp(str, _("log_host"))) { attr_tab[2].inHash = 1; return 0;}
1523 i = 4;
1524 while (attr_tab[i].attr != NULL)
1525 {
1526 if (0 == strcmp(str, attr_tab[i].attr))
1527 { attr_tab[i].inHash = 1; return 0; }
1528 ++i;
1529 }
1530 return -1;
1531}
1532
1533static int is_escaped(char * p_in) {
1534
1535 int escp = 0;
1536 int retv = S_TRUE;
1537 unsigned char * p = (unsigned char *) p_in;
1538
1539 if (*p != '\0')
1540 {
1541 do
1542 {
1543 if (*p <= 126 && *p >= 32)
1544 {
1545 if (escp == 0)
1546 {
1547 if (!((*p == '\'') || (*p == '\"') || (*p == '\\')))
1548 /* do nothing */;
1549 else if (*p == '\\')
1550 {
1551#ifndef WITH_MYSQL
1552 if (p[1] == '\'')
1553 {
1554 *p = '\'';
1555 }
1556#endif
1557 escp = 1;
1558 }
1559 else
1560 retv = S_FALSE; /* (*p == '\'' || *p == '\"') */
1561 }
1562 else /* escp == 1 */
1563 {
1564 escp = 0;
1565 }
1566 }
1567 else /* *p > 126 || *p < 32 */
1568 {
1569 retv = S_FALSE;
1570 }
1571
1572 ++p;
1573
1574 }
1575 while (*p != '\0');
1576 }
1577
1578 if (escp == 0)
1579 return retv;
1580 else
1581 return S_FALSE;
1582}
1583
1584/* this is not a real XML parser, but it copes with the XML format of
1585 * the log messages provided by sh_error_handle()
1586 */
1587static
1588char * sh_database_parse (char * message, dbins * db_entry)
1589{
1590 static int first = S_TRUE;
1591 char * p;
1592 char * q;
1593 char * z;
1594 dbins * new;
1595 int i;
1596 size_t j;
1597 my_attr * res;
1598 my_attr key;
1599 char key_str[64];
1600
1601 SL_ENTER(_("sh_database_parse"));
1602
1603 if (!message || *message == '\0')
1604 SL_RETURN (NULL, _("sh_database_parse"));
1605
1606 if (first == S_TRUE)
1607 {
1608 init_attr_table();
1609 first = S_FALSE;
1610 }
1611
1612 p = strchr (message, '<');
1613 if (!p)
1614 SL_RETURN (NULL, _("sh_database_parse"));
1615
1616 while ((*p != '\0') && (*p != '>'))
1617 {
1618 if (p[0] == 'l' && p[1] == 'o' && p[2] == 'g' &&
1619 (p[3] == ' ' || p[3] == '>'))
1620 {
1621 p = &p[4];
1622 goto parse;
1623 }
1624 else if (p[0] == '/' && p[1] == '>')
1625 SL_RETURN (&p[2], _("sh_database_parse"));
1626 else if (p[0] == '/' && p[1] == 'l' && p[2] == 'o' &&
1627 p[3] == 'g' && p[4] == '>')
1628 SL_RETURN (&p[5], _("sh_database_parse"));
1629 ++p;
1630 }
1631 SL_RETURN(NULL, _("sh_database_parse"));
1632
1633 parse:
1634
1635 while (*p == ' ' || *p == '>')
1636 ++p;
1637
1638 if (*p == '\0')
1639 SL_RETURN(NULL, _("sh_database_parse"));
1640
1641 if (*p != '<' && *p != '/')
1642 goto par2;
1643
1644 if (p[0] == '<' && p[1] == 'l' &&
1645 p[2] == 'o' && p[3] == 'g')
1646 {
1647 /*
1648 * recursive call
1649 */
1650 new = SH_ALLOC(sizeof(dbins));
1651 init_db_entry(new);
1652 db_entry->next = new;
1653 p = sh_database_parse (p, new);
1654 }
1655
1656 if (p[0] == '/' && p[1] == '>')
1657 SL_RETURN (&p[1], _("sh_database_parse"));
1658
1659 if (p[0] == '<' && p[1] == '/' && p[2] == 'l' &&
1660 p[3] == 'o' && p[4] == 'g' && p[5] == '>')
1661 SL_RETURN (&p[5], _("sh_database_parse"));
1662
1663 par2:
1664
1665 /* non-whitespace
1666 */
1667 for (i=0; i < 64; ++i)
1668 {
1669 if (p[i] != '=')
1670 {
1671 key_str[i] = p[i];
1672 }
1673 else
1674 {
1675 key_str[i] = '\0';
1676 break;
1677 }
1678 }
1679 key_str[63] = '\0';
1680 key.attr = &key_str[0];
1681
1682 res = bsearch(&key, attr_tab_srch, attr_tab_srch_siz,
1683 sizeof(my_attr), sh_database_comp_attr);
1684
1685 if (res != NULL)
1686 {
1687 j = res->alen; /* strlen(attr_tab[i].attr); */
1688 if (p[j] == '=' && p[j+1] == '"')
1689 {
1690 q = strchr(&p[j+2], '"');
1691 if (q)
1692 {
1693 *q = '\0';
1694
1695 if (S_TRUE == is_escaped(&p[j+2])) {
1696
1697 if (res->val == 1)
1698 (void) sl_strlcpy(db_entry->sev, &p[j+2],
1699 (size_t)res->size);
1700 else if (res->val == 2)
1701 {
1702 z = strchr(&p[j+2], 'T');
1703 if (z) *z = ' ';
1704 (void) sl_strlcpy(db_entry->time, &p[j+2], 20);
1705 }
1706 else if (res->val == 3)
1707 (void) sl_strlcpy(db_entry->host, &p[j+2],
1708 (size_t) res->size);
1709 else if (res->val == 4)
1710 (void) sl_strlcpy(db_entry->msg, &p[j+2],
1711 (size_t) res->size);
1712 else if (res->size != 0)
1713 {
1714 (void) sl_strlcpy( (((char *)(db_entry))+ res->off),
1715 &p[j+2],
1716 (size_t) res->size);
1717 }
1718 else if (res->val >= START_SEC_LONGS)
1719 {
1720 db_entry->long_data[res->val-START_SEC_LONGS]
1721 = atol(&p[j+2]);
1722 }
1723
1724 *q = '"';
1725 p = q;
1726 ++p;
1727
1728 goto parse;
1729 }
1730 else { /* S_FALSE == is_escaped(&p[j+2]) */
1731 sh_error_handle((-1), FIL__, __LINE__, 0, MSG_E_SUBGEN,
1732 _("Message not properly escaped"),
1733 _("sh_database_parse"));
1734 SL_RETURN(NULL, _("sh_database_parse"));
1735 }
1736 }
1737 else /* q == NULL */
1738 {
1739 SL_RETURN(NULL, _("sh_database_parse"));
1740 }
1741 }
1742 }
1743
1744 /* unknown attribute, skip
1745 */
1746 while ((p != NULL) && (*p != '\0') && (*p != ' '))
1747 ++p;
1748
1749 goto parse;
1750}
1751
1752static int enter_wrapper = 1;
1753
1754int set_enter_wrapper (const char * str)
1755{
1756 return sh_util_flagval(str, &enter_wrapper);
1757}
1758
1759/* recursively enter linked list of messages into database, last first
1760 */
1761long sh_database_insert_rec (dbins * curr, int depth)
1762{
1763 unsigned long id = 0;
1764 dbins * prev;
1765
1766 SL_ENTER(_("sh_database_insert_rec"));
1767
1768 if (curr->next)
1769 {
1770 prev = curr->next;
1771 sl_strlcpy(prev->host, curr->host, 64);
1772 id = sh_database_insert_rec (curr->next, (depth + 1));
1773 }
1774
1775 if (id != 0) /* this is a server wrapper */
1776 {
1777 if (enter_wrapper != 0)
1778 {
1779 id = sh_database_entry (curr, id);
1780 }
1781 }
1782 else
1783 {
1784 /*
1785 * id = -1 is the client message; log_ref will be NULL
1786 */
1787 if (depth > 0) /* this is a client message */
1788 id = sh_database_entry (curr, -1);
1789 else /* this is a generic server message */
1790 id = sh_database_entry (curr, 0);
1791 }
1792
1793 SH_FREE(curr);
1794
1795 SL_RETURN(id, _("sh_database_insert_rec"));
1796}
1797
1798int sh_database_insert (char * message)
1799{
1800 dbins * db_entry;
1801
1802 SL_ENTER(_("sh_database_insert"));
1803
1804 db_entry = SH_ALLOC(sizeof(dbins));
1805 init_db_entry(db_entry);
1806
1807 /* recursively parse the message into a linked list
1808 */
1809 (void) sh_database_parse (message, db_entry);
1810
1811 /* recursively enter the linked list into the database
1812 */
1813 (void) sh_database_insert_rec (db_entry, 0);
1814
1815 SL_RETURN(0, _("sh_database_insert"));
1816}
1817
1818#endif
Note: See TracBrowser for help on using the repository browser.