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
|
#include <errno.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <sqlite3.h>
#include "database.h"
#include "log.h"
#define count(x) (sizeof((x))/sizeof(*(x)))
#define check(r) if((r) != SQLITE_OK) { goto sqlerror; }
static sqlite3_uint64 gettime(void)
{
sqlite3_uint64 timestamp;
struct timespec now;
if(clock_gettime(CLOCK_MONOTONIC, &now) == -1)
{
/* LCOV_EXCL_START : clock_gettime() is unlikely to fail */
log_critical(0, "getting time failed (clock_gettime): %s",
strerror(errno));
exit(125);
/* LCOV_EXCL_STOP */
}
timestamp = now.tv_sec;
timestamp *= 1000000000;
timestamp += now.tv_nsec;
return timestamp;
}
static sqlite3 *db;
static sqlite3_stmt *stmt_last_rowid;
static sqlite3_stmt *stmt_insert_process;
static sqlite3_stmt *stmt_set_exitcode;
static sqlite3_stmt *stmt_insert_file;
static sqlite3_stmt *stmt_insert_exec;
static int run_id = -1;
int db_init(const char *filename)
{
int tables_exist;
check(sqlite3_open(filename, &db));
log_debug(0, "database file opened: %s", filename);
check(sqlite3_exec(db, "BEGIN IMMEDIATE;", NULL, NULL, NULL))
{
int ret;
const char *sql = ""
"SELECT name FROM SQLITE_MASTER "
"WHERE type='table';";
sqlite3_stmt *stmt_get_tables;
unsigned int found = 0x00;
check(sqlite3_prepare_v2(db, sql, -1, &stmt_get_tables, NULL));
while((ret = sqlite3_step(stmt_get_tables)) == SQLITE_ROW)
{
const char *colname = (const char*)sqlite3_column_text(
stmt_get_tables, 0);
if(strcmp("processes", colname) == 0)
found |= 0x01;
else if(strcmp("opened_files", colname) == 0)
found |= 0x02;
else if(strcmp("executed_files", colname) == 0)
found |= 0x04;
else
goto wrongschema;
}
if(found == 0x00)
tables_exist = 0;
else if(found == 0x07)
tables_exist = 1;
else
{
wrongschema:
log_critical(0, "database schema is wrong");
return -1;
}
sqlite3_finalize(stmt_get_tables);
if(ret != SQLITE_DONE)
goto sqlerror; /* LCOV_EXCL_LINE */
}
if(!tables_exist)
{
const char *sql[] = {
"CREATE TABLE processes("
" id INTEGER NOT NULL PRIMARY KEY,"
" run_id INTEGER NOT NULL,"
" parent INTEGER,"
" timestamp INTEGER NOT NULL,"
" is_thread BOOLEAN NOT NULL,"
" exitcode INTEGER"
" );",
"CREATE INDEX proc_parent_idx ON processes(parent);",
"CREATE TABLE opened_files("
" id INTEGER NOT NULL PRIMARY KEY,"
" run_id INTEGER NOT NULL,"
" name TEXT NOT NULL,"
" timestamp INTEGER NOT NULL,"
" mode INTEGER NOT NULL,"
" is_directory BOOLEAN NOT NULL,"
" process INTEGER NOT NULL"
" );",
"CREATE INDEX open_proc_idx ON opened_files(process);",
"CREATE TABLE executed_files("
" id INTEGER NOT NULL PRIMARY KEY,"
" name TEXT NOT NULL,"
" run_id INTEGER NOT NULL,"
" timestamp INTEGER NOT NULL,"
" process INTEGER NOT NULL,"
" argv TEXT NOT NULL,"
" envp TEXT NOT NULL,"
" workingdir TEXT NOT NULL"
" );",
"CREATE INDEX exec_proc_idx ON executed_files(process);",
};
size_t i;
for(i = 0; i < count(sql); ++i)
check(sqlite3_exec(db, sql[i], NULL, NULL, NULL));
}
/* Get the first unused run_id */
{
sqlite3_stmt *stmt_get_run_id;
const char *sql = "SELECT max(run_id) + 1 FROM processes;";
check(sqlite3_prepare_v2(db, sql, -1, &stmt_get_run_id, NULL));
if(sqlite3_step(stmt_get_run_id) != SQLITE_ROW)
{
/* LCOV_EXCL_START */
sqlite3_finalize(stmt_get_run_id);
goto sqlerror;
/* LCOV_EXCL_STOP */
}
run_id = sqlite3_column_int(stmt_get_run_id, 0);
if(sqlite3_step(stmt_get_run_id) != SQLITE_DONE)
{
/* LCOV_EXCL_START */
sqlite3_finalize(stmt_get_run_id);
goto sqlerror;
/* LCOV_EXCL_STOP */
}
sqlite3_finalize(stmt_get_run_id);
}
log_debug(0, "This is run %d", run_id);
{
const char *sql = ""
"SELECT last_insert_rowid()";
check(sqlite3_prepare_v2(db, sql, -1, &stmt_last_rowid, NULL));
}
{
const char *sql = ""
"INSERT INTO processes(run_id, parent, timestamp, is_thread)"
"VALUES(?, ?, ?, ?)";
check(sqlite3_prepare_v2(db, sql, -1, &stmt_insert_process, NULL));
}
{
const char *sql = ""
"UPDATE processes SET exitcode=?"
"WHERE id=?";
check(sqlite3_prepare_v2(db, sql, -1, &stmt_set_exitcode, NULL));
}
{
const char *sql = ""
"INSERT INTO opened_files(run_id, name, timestamp, "
" mode, is_directory, process)"
"VALUES(?, ?, ?, ?, ?, ?)";
check(sqlite3_prepare_v2(db, sql, -1, &stmt_insert_file, NULL));
}
{
const char *sql = ""
"INSERT INTO executed_files(run_id, name, timestamp, process, "
" argv, envp, workingdir)"
"VALUES(?, ?, ?, ?, ?, ?, ?)";
check(sqlite3_prepare_v2(db, sql, -1, &stmt_insert_exec, NULL));
}
return 0;
/* LCOV_EXCL_START */
sqlerror:
log_critical(0, "sqlite3 error creating database: %s", sqlite3_errmsg(db));
return -1;
/* LCOV_EXCL_STOP */
}
int db_close(int rollback)
{
if(rollback)
{
check(sqlite3_exec(db, "ROLLBACK;", NULL, NULL, NULL));
}
else
{
check(sqlite3_exec(db, "COMMIT;", NULL, NULL, NULL));
}
log_debug(0, "database file closed%s", rollback?" (rolled back)":"");
check(sqlite3_finalize(stmt_last_rowid));
check(sqlite3_finalize(stmt_insert_process));
check(sqlite3_finalize(stmt_set_exitcode));
check(sqlite3_finalize(stmt_insert_file));
check(sqlite3_finalize(stmt_insert_exec));
check(sqlite3_close(db));
run_id = -1;
return 0;
/* LCOV_EXCL_START */
sqlerror:
log_critical(0, "sqlite3 error on exit: %s", sqlite3_errmsg(db));
return -1;
/* LCOV_EXCL_STOP */
}
#define DB_NO_PARENT ((unsigned int)-2)
int db_add_process(unsigned int *id, unsigned int parent_id,
const char *working_dir, int is_thread)
{
check(sqlite3_bind_int(stmt_insert_process, 1, run_id));
if(parent_id == DB_NO_PARENT)
{
check(sqlite3_bind_null(stmt_insert_process, 2));
}
else
{
check(sqlite3_bind_int(stmt_insert_process, 2, parent_id));
}
/* This assumes that we won't go over 2^32 seconds (~135 years) */
check(sqlite3_bind_int64(stmt_insert_process, 3, gettime()));
check(sqlite3_bind_int(stmt_insert_process, 4, is_thread?1:0));
if(sqlite3_step(stmt_insert_process) != SQLITE_DONE)
goto sqlerror; /* LCOV_EXCL_LINE */
sqlite3_reset(stmt_insert_process);
/* Get id */
if(sqlite3_step(stmt_last_rowid) != SQLITE_ROW)
goto sqlerror; /* LCOV_EXCL_LINE */
*id = sqlite3_column_int(stmt_last_rowid, 0);
if(sqlite3_step(stmt_last_rowid) != SQLITE_DONE)
goto sqlerror; /* LCOV_EXCL_LINE */
sqlite3_reset(stmt_last_rowid);
return db_add_file_open(*id, working_dir, FILE_WDIR, 1);
/* LCOV_EXCL_START : Insertions shouldn't fail */
sqlerror:
log_critical(0, "sqlite3 error inserting process: %s", sqlite3_errmsg(db));
return -1;
/* LCOV_EXCL_STOP */
}
int db_add_first_process(unsigned int *id, const char *working_dir)
{
return db_add_process(id, DB_NO_PARENT, working_dir, 0);
}
int db_add_exit(unsigned int id, int exitcode)
{
check(sqlite3_bind_int(stmt_set_exitcode, 1, exitcode));
check(sqlite3_bind_int(stmt_set_exitcode, 2, id));
if(sqlite3_step(stmt_set_exitcode) != SQLITE_DONE)
goto sqlerror; /* LCOV_EXCL_LINE */
sqlite3_reset(stmt_set_exitcode);
return 0;
/* LCOV_EXCL_START : Insertions shouldn't fail */
sqlerror:
log_critical(0, "sqlite3 error setting exitcode: %s", sqlite3_errmsg(db));
return -1;
/* LCOV_EXCL_STOP */
}
int db_add_file_open(unsigned int process, const char *name,
unsigned int mode, int is_dir)
{
check(sqlite3_bind_int(stmt_insert_file, 1, run_id));
check(sqlite3_bind_text(stmt_insert_file, 2, name, -1, SQLITE_TRANSIENT));
/* This assumes that we won't go over 2^32 seconds (~135 years) */
check(sqlite3_bind_int64(stmt_insert_file, 3, gettime()));
check(sqlite3_bind_int(stmt_insert_file, 4, mode));
check(sqlite3_bind_int(stmt_insert_file, 5, is_dir));
check(sqlite3_bind_int(stmt_insert_file, 6, process));
if(sqlite3_step(stmt_insert_file) != SQLITE_DONE)
goto sqlerror; /* LCOV_EXCL_LINE */
sqlite3_reset(stmt_insert_file);
return 0;
/* LCOV_EXCL_START : Insertions shouldn't fail */
sqlerror:
log_critical(0, "sqlite3 error inserting file: %s", sqlite3_errmsg(db));
return -1;
/* LCOV_EXCL_STOP */
}
static char *strarray2nulsep(const char *const *array, size_t *plen)
{
char *list;
size_t len = 0;
{
const char *const *a = array;
while(*a)
{
len += strlen(*a) + 1;
++a;
}
}
{
const char *const *a = array;
char *p;
p = list = malloc(len);
while(*a)
{
const char *s = *a;
while(*s)
*p++ = *s++;
*p++ = '\0';
++a;
}
}
*plen = len;
return list;
}
int db_add_exec(unsigned int process, const char *binary,
const char *const *argv, const char *const *envp,
const char *workingdir)
{
check(sqlite3_bind_int(stmt_insert_exec, 1, run_id));
check(sqlite3_bind_text(stmt_insert_exec, 2, binary,
-1, SQLITE_TRANSIENT));
/* This assumes that we won't go over 2^32 seconds (~135 years) */
check(sqlite3_bind_int64(stmt_insert_exec, 3, gettime()));
check(sqlite3_bind_int(stmt_insert_exec, 4, process));
{
size_t len;
char *arglist = strarray2nulsep(argv, &len);
check(sqlite3_bind_text(stmt_insert_exec, 5, arglist, len,
SQLITE_TRANSIENT));
free(arglist);
}
{
size_t len;
char *envlist = strarray2nulsep(envp, &len);
check(sqlite3_bind_text(stmt_insert_exec, 6, envlist, len,
SQLITE_TRANSIENT));
free(envlist);
}
check(sqlite3_bind_text(stmt_insert_exec, 7, workingdir,
-1, SQLITE_TRANSIENT));
if(sqlite3_step(stmt_insert_exec) != SQLITE_DONE)
goto sqlerror; /* LCOV_EXCL_LINE */
sqlite3_reset(stmt_insert_exec);
return 0;
/* LCOV_EXCL_START : Insertions shouldn't fail */
sqlerror:
log_critical(0, "sqlite3 error inserting exec: %s", sqlite3_errmsg(db));
return -1;
/* LCOV_EXCL_STOP */
}
|