Go to the documentation of this file.
42 #define MODULE_NAME "LuaLog"
70 static TmEcode LuaLogThreadInit(
ThreadVars *t,
const void *initdata,
void **data);
81 static int LuaTxLogger(
ThreadVars *
tv,
void *thread_data,
const Packet *p,
Flow *f,
void *alstate,
void *txptr, uint64_t tx_id)
114 static int LuaStreamingLogger(
ThreadVars *
tv,
void *thread_data,
const Flow *f,
115 const uint8_t *data, uint32_t data_len, uint64_t tx_id, uint8_t
flags)
140 lua_getglobal(luastate,
"log");
141 lua_newtable(luastate);
147 lua_pushstring(luastate,
"stream");
148 lua_newtable(luastate);
157 lua_settable(luastate, -3);
159 int retval = lua_pcall(luastate, 1, 0, 0);
187 if (!(PacketIsIPv4(p)) && !(PacketIsIPv6(p))) {
249 if ((!(PacketIsIPv4(p))) && (!(PacketIsIPv6(p)))) {
288 void *tx,
const uint64_t tx_id, uint8_t dir)
293 if ((!(PacketIsIPv4(p))) && (!(PacketIsIPv6(p))))
368 lua_newtable(luastate);
370 for (; u < st->
nstats; u++) {
371 lua_pushinteger(luastate, u + 1);
373 lua_newtable(luastate);
375 lua_pushstring(luastate,
"name");
376 lua_pushstring(luastate, st->
stats[u].
name);
377 lua_settable(luastate, -3);
379 lua_pushstring(luastate,
"tmname");
381 lua_settable(luastate, -3);
383 lua_pushstring(luastate,
"value");
384 lua_pushinteger(luastate, st->
stats[u].
value);
385 lua_settable(luastate, -3);
387 lua_pushstring(luastate,
"pvalue");
389 lua_settable(luastate, -3);
391 lua_settable(luastate, -3);
422 lua_getglobal(L,
"package");
424 if (strlen(
ctx->path) > 0) {
425 lua_pushstring(L,
ctx->path);
427 lua_pushstring(L,
"");
429 lua_setfield(L, -2,
"path");
431 if (strlen(
ctx->cpath) > 0) {
432 lua_pushstring(L,
ctx->cpath);
434 lua_pushstring(L,
"");
436 lua_setfield(L, -2,
"cpath");
455 if (luastate == NULL)
457 luaL_openlibs(luastate);
459 LuaSetPaths(luastate,
ctx);
461 int status = luaL_loadfile(luastate, filename);
463 SCLogError(
"couldn't load file: %s", lua_tostring(luastate, -1));
468 if (lua_pcall(luastate, 0, 0, 0) != 0) {
469 SCLogError(
"couldn't prime file: %s", lua_tostring(luastate, -1));
473 lua_getglobal(luastate,
"init");
474 if (lua_type(luastate, -1) != LUA_TFUNCTION) {
479 if (lua_pcall(luastate, 0, 1, 0) != 0) {
480 SCLogError(
"couldn't run script 'init' function: %s", lua_tostring(luastate, -1));
485 if (lua_gettop(luastate) == 0) {
486 SCLogError(
"init function in script should return table, nothing returned");
489 if (lua_type(luastate, 1) != LUA_TTABLE) {
490 SCLogError(
"init function in script should return table, returned is not table");
494 lua_pushnil(luastate);
496 while (lua_next(luastate, -2)) {
497 k = lua_tostring(luastate, -2);
501 v = lua_tostring(luastate, -1);
502 lua_pop(luastate, 1);
508 if (strcmp(k,
"streaming") == 0) {
510 if (strcmp(v,
"http") == 0) {
512 }
else if (strcmp(v,
"tcp") == 0) {
515 SCLogError(
"unsupported streaming argument: %s", v);
518 }
else if (strcmp(k,
"protocol") == 0 && strcmp(v,
"http") == 0)
520 else if (strcmp(k,
"protocol") == 0 && strcmp(v,
"dns") == 0)
522 else if (strcmp(k,
"protocol") == 0 && strcmp(v,
"tls") == 0)
524 else if (strcmp(k,
"protocol") == 0 && strcmp(v,
"ssh") == 0)
526 else if (strcmp(k,
"protocol") == 0 && strcmp(v,
"smtp") == 0)
528 else if (strcmp(k,
"type") == 0 && strcmp(v,
"packet") == 0)
530 else if (strcmp(k,
"filter") == 0 && strcmp(v,
"alerts") == 0)
532 else if (strcmp(k,
"type") == 0 && strcmp(v,
"file") == 0)
534 else if (strcmp(k,
"type") == 0 && strcmp(v,
"streaming") == 0)
536 else if (strcmp(k,
"type") == 0 && strcmp(v,
"flow") == 0)
538 else if (strcmp(k,
"filter") == 0 && strcmp(v,
"tcp") == 0)
540 else if (strcmp(k,
"type") == 0 && strcmp(v,
"stats") == 0)
543 SCLogError(
"unknown key and/or value: k='%s', v='%s'", k, v);
549 SCLogError(
"invalid combination of 'needs' in the script");
553 lua_getglobal(luastate,
"setup");
554 if (lua_type(luastate, -1) != LUA_TFUNCTION) {
559 lua_getglobal(luastate,
"log");
560 if (lua_type(luastate, -1) != LUA_TFUNCTION) {
565 lua_getglobal(luastate,
"deinit");
566 if (lua_type(luastate, -1) != LUA_TFUNCTION) {
588 if (luastate == NULL) {
593 luaL_openlibs(luastate);
595 LuaSetPaths(luastate,
ctx);
597 int status = luaL_loadfile(luastate, filename);
599 SCLogError(
"couldn't load file: %s", lua_tostring(luastate, -1));
604 if (lua_pcall(luastate, 0, 0, 0) != 0) {
605 SCLogError(
"couldn't prime file: %s", lua_tostring(luastate, -1));
609 lua_getglobal(luastate,
"setup");
611 if (lua_pcall(luastate, 0, 0, 0) != 0) {
612 SCLogError(
"couldn't run script 'setup' function: %s", lua_tostring(luastate, -1));
616 SCLogDebug(
"lua_State %p is set up", luastate);
624 static void LogLuaSubFree(
OutputCtx *oc) {
652 BUG_ON(parent_ctx == NULL);
657 char path[PATH_MAX] =
"";
658 if (strlen(dir) > 0) {
659 if (
PathMerge(path,
sizeof(path), dir, conf->
val) < 0) {
660 SCLogError(
"failed to construct lua script path");
669 lua_ctx->
luastate = LuaScriptSetup(path, mc);
676 output_ctx->
data = lua_ctx;
677 output_ctx->
DeInit = LogLuaSubFree;
679 result.
ctx = output_ctx;
689 static void LogLuaMasterFree(
OutputCtx *oc)
716 if (scripts == NULL) {
727 output_ctx->
DeInit = LogLuaMasterFree;
737 if (lua_path && strlen(lua_path) > 0) {
742 if (lua_cpath && strlen(lua_cpath) > 0) {
753 memset(&opts, 0x00,
sizeof(opts));
755 char path[PATH_MAX] =
"";
756 snprintf(path,
sizeof(path),
"%s%s%s", dir, strlen(dir) ?
"/" :
"", script->
val);
759 int r = LuaScriptInit(path, &opts, master_config);
821 }
else if (opts.
file) {
827 }
else if (opts.
flow) {
829 }
else if (opts.
stats) {
840 result.
ctx = output_ctx;
846 output_ctx->
DeInit(output_ctx);
848 int failure_fatal = 0;
849 if (
SCConfGetBool(
"engine.init-failure-fatal", &failure_fatal) != 1) {
850 SCLogDebug(
"ConfGetBool could not load the value.");
853 FatalError(
"Error during setup of lua output. Details should be "
854 "described in previous error messages. Shutting down...");
863 static void OutputLuaLogDoDeinit(
LogLuaCtx *lua_ctx)
867 lua_getglobal(luastate,
"deinit");
868 if (lua_type(luastate, -1) != LUA_TFUNCTION) {
874 if (lua_pcall(luastate, 0, 0, 0) != 0) {
875 SCLogError(
"couldn't run script 'deinit' function: %s", lua_tostring(luastate, -1));
886 static TmEcode LuaLogThreadInit(
ThreadVars *t,
const void *initdata,
void **data)
892 if (initdata == NULL) {
893 SCLogDebug(
"Error getting context for LuaLog. \"initdata\" argument NULL");
919 OutputLuaLogDoDeinit(td->
lua_ctx);
925 memset(td, 0,
sizeof(*td));
void LuaStateSetTX(lua_State *luastate, void *txptr, const uint64_t tx_id)
struct LogLuaThreadCtx_ LogLuaThreadCtx
void LuaStateSetPacket(lua_State *luastate, Packet *p)
structure containing global config The OutputLuaLogInitSub which is run per script can access this to...
void AppLayerHtpNeedFileInspection(void)
Sets a flag that informs the HTP app layer that some module in the engine needs the http request file...
void LuaStateSetThreadVars(lua_State *luastate, ThreadVars *tv)
const struct Signature_ * s
void LuaPushTableKeyValueInt(lua_State *luastate, const char *key, int value)
int PathMerge(char *out_buf, size_t buf_size, const char *const dir, const char *const fname)
struct HtpBodyChunk_ * next
lua_State * LuaGetState(void)
#define TAILQ_FOREACH(var, head, field)
bool SSHTxLogCondition(ThreadVars *tv, const Packet *p, void *state, void *tx, uint64_t tx_id)
int SCConfGetBool(const char *name, int *val)
Retrieve a configuration value as a boolean.
void LuaStateSetFlow(lua_State *luastate, Flow *f)
set a flow pointer in the lua state
#define TAILQ_INSERT_TAIL(head, elm, field)
struct LogLuaScriptOptions_ LogLuaScriptOptions
OutputInitSubFunc InitSubFunc
const char * SCConfNodeLookupChildValue(const SCConfNode *node, const char *name)
Lookup the value of a child configuration node by name.
PacketLogger PacketLogFunc
#define OUTPUT_STREAMING_FLAG_TRANSACTION
char path[PATH_MAX]
Lua search path for Lua modules.
size_t strlcpy(char *dst, const char *src, size_t siz)
struct lua_State lua_State
struct LogLuaMasterCtx_ LogLuaMasterCtx
structure containing global config The OutputLuaLogInitSub which is run per script can access this to...
enum SCOutputStreamingType stream_type
ThreadInitFunc ThreadInit
@ TLS_STATE_CLIENT_HANDSHAKE_DONE
ThreadDeinitFunc ThreadDeinit
void SCAppLayerParserRegisterLogger(uint8_t ipproto, AppProto alproto)
#define SCMutexUnlock(mut)
void LuaStateSetFile(lua_State *luastate, File *file)
void AppLayerHtpEnableRequestBodyCallback(void)
Sets a flag that informs the HTP app layer that some module in the engine needs the http request body...
void OutputRegisterModule(const char *, const char *, OutputInitFunc)
Per thread variable structure.
SCStreamingLogger StreamingLogFunc
void AppLayerHtpEnableResponseBodyCallback(void)
Sets a flag that informs the HTP app layer that some module in the engine needs the http request body...
void SCLuaRequirefBuiltIns(lua_State *L)
Register Suricata built-in modules for loading in a non-sandboxed environment.
#define SCLogInfo(...)
Macro used to log INFORMATIONAL messages.
#define TAILQ_FOREACH_SAFE(var, head, field, tvar)
void * AppLayerParserGetTx(uint8_t ipproto, AppProto alproto, void *alstate, uint64_t tx_id)
#define SCMutexInit(mut, mutattrs)
SCConfNode * SCConfNodeLookupChild(const SCConfNode *node, const char *name)
Lookup a child configuration node by name.
char cpath[PATH_MAX]
Lua search path for C modules.
TxLoggerCondition TxLogCondition
#define OUTPUT_STREAMING_FLAG_OPEN
void(* DeInit)(struct OutputCtx_ *)
void LuaStateSetPacketAlert(lua_State *luastate, PacketAlert *pa)
void LuaLogRegister(void)
PacketLogCondition PacketConditionFunc
#define OUTPUT_STREAMING_FLAG_TOSERVER
#define SCLogError(...)
Macro used to log ERROR messages.
void LuaStateSetStreamingBuffer(lua_State *luastate, LuaStreamingBuffer *b)
#define PACKET_ALERT_FLAG_TX
void LuaPushTableKeyValueBoolean(lua_State *luastate, const char *key, bool value)
#define OUTPUT_STREAMING_FLAG_CLOSE
#define OUTPUT_STREAMING_FLAG_TOCLIENT
void LuaPushTableKeyValueLString(lua_State *luastate, const char *key, const char *value, size_t len)
Push a key plus string value with length to the stack.
struct LogLuaCtx_ LogLuaCtx
@ TLS_STATE_SERVER_HANDSHAKE_DONE
AppProto alproto
application level protocol
char script_dir[PATH_MAX]
Path to script directory.
#define DEBUG_VALIDATE_BUG_ON(exp)
void CreateTimeString(const SCTime_t ts, char *str, size_t size)
void LuaReturnState(lua_State *s)