mirror of https://github.com/OISF/suricata
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
190 lines
4.9 KiB
C
190 lines
4.9 KiB
C
/* Copyright (C) 2025 Open Information Security Foundation
|
|
*
|
|
* You can copy, redistribute or modify this Program 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
|
|
* version 2 along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
* 02110-1301, USA.
|
|
*/
|
|
|
|
#include "suricata-common.h"
|
|
#include "app-layer-protos.h"
|
|
#include "flow-var.h"
|
|
#include "lauxlib.h"
|
|
#include "util-debug.h"
|
|
#include "util-lua-common.h"
|
|
#include "util-lua-flowintlib.h"
|
|
#include "util-lua.h"
|
|
#include "util-var-name.h"
|
|
#include "detect-lua.h"
|
|
#include "detect-lua-extensions.h"
|
|
|
|
static const char suricata_flowint_mt[] = "suricata:flowint:mt";
|
|
|
|
static DetectLuaData *GetLuaData(lua_State *luastate)
|
|
{
|
|
DetectLuaData *ld;
|
|
lua_pushlightuserdata(luastate, (void *)&luaext_key_ld);
|
|
lua_gettable(luastate, LUA_REGISTRYINDEX);
|
|
ld = lua_touserdata(luastate, -1);
|
|
return ld;
|
|
}
|
|
|
|
/**
|
|
* \brief Register a flowvar.
|
|
*
|
|
* Ensures that a flowvar exists for the provided name, will be
|
|
* created if needed.
|
|
*
|
|
* The flowvar ID is returned, however as this is most likely to be
|
|
* used in the scripts "init" method, this ID is unlikely to be used.
|
|
*/
|
|
static int LuaFlowintRegister(lua_State *L)
|
|
{
|
|
DetectLuaData *ld = GetLuaData(L);
|
|
const char *name = luaL_checkstring(L, 1);
|
|
uint32_t *flowvar_id = lua_newuserdata(L, sizeof(*flowvar_id));
|
|
*flowvar_id = VarNameStoreRegister(name, VAR_TYPE_FLOW_INT);
|
|
if (*flowvar_id == 0) {
|
|
return luaL_error(L, "failed to register flowvar");
|
|
}
|
|
ld->flowint[ld->flowints++] = *flowvar_id;
|
|
|
|
luaL_getmetatable(L, suricata_flowint_mt);
|
|
lua_setmetatable(L, -2);
|
|
|
|
return 1;
|
|
}
|
|
|
|
static int LuaFlowintGet(lua_State *L)
|
|
{
|
|
const char *name = luaL_checkstring(L, 1);
|
|
uint32_t *flowvar_id = lua_newuserdata(L, sizeof(*flowvar_id));
|
|
*flowvar_id = VarNameStoreLookupByName(name, VAR_TYPE_FLOW_INT);
|
|
if (*flowvar_id == 0) {
|
|
return luaL_error(L, "flowvar does not exist");
|
|
}
|
|
|
|
luaL_getmetatable(L, suricata_flowint_mt);
|
|
lua_setmetatable(L, -2);
|
|
|
|
return 1;
|
|
}
|
|
|
|
static int LuaFlowintValue(lua_State *L)
|
|
{
|
|
uint32_t *flowvar_id = luaL_checkudata(L, 1, suricata_flowint_mt);
|
|
Flow *f = LuaStateGetFlow(L);
|
|
if (f == NULL) {
|
|
return LuaCallbackError(L, "flow is NULL");
|
|
}
|
|
FlowVar *fv = FlowVarGet(f, *flowvar_id);
|
|
if (fv == NULL) {
|
|
lua_pushnil(L);
|
|
} else {
|
|
lua_pushnumber(L, (lua_Number)fv->data.fv_int.value);
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
static int LuaFlowintSet(lua_State *L)
|
|
{
|
|
const int value = (int)luaL_checkinteger(L, 2);
|
|
uint32_t *flowvar_id = luaL_checkudata(L, 1, suricata_flowint_mt);
|
|
Flow *f = LuaStateGetFlow(L);
|
|
if (f == NULL) {
|
|
return luaL_error(L, "no flow");
|
|
}
|
|
|
|
FlowVarAddInt(f, *flowvar_id, value);
|
|
|
|
return 1;
|
|
}
|
|
|
|
static int LuaFlowintIncr(lua_State *L)
|
|
{
|
|
uint32_t *flowvar_id = luaL_checkudata(L, 1, suricata_flowint_mt);
|
|
Flow *f = LuaStateGetFlow(L);
|
|
if (f == NULL) {
|
|
return luaL_error(L, "no flow");
|
|
}
|
|
|
|
FlowVar *fv = FlowVarGet(f, *flowvar_id);
|
|
uint32_t value;
|
|
if (fv == NULL) {
|
|
value = 1;
|
|
} else {
|
|
value = fv->data.fv_int.value;
|
|
if (value < UINT32_MAX) {
|
|
value++;
|
|
}
|
|
}
|
|
|
|
FlowVarAddInt(f, *flowvar_id, value);
|
|
lua_pushnumber(L, (lua_Number)value);
|
|
|
|
return 1;
|
|
}
|
|
|
|
static int LuaFlowintDecr(lua_State *L)
|
|
{
|
|
uint32_t *flowvar_id = luaL_checkudata(L, 1, suricata_flowint_mt);
|
|
Flow *f = LuaStateGetFlow(L);
|
|
if (f == NULL) {
|
|
return luaL_error(L, "no flow");
|
|
}
|
|
|
|
FlowVar *fv = FlowVarGet(f, *flowvar_id);
|
|
uint32_t value;
|
|
if (fv == NULL) {
|
|
value = 0;
|
|
} else {
|
|
value = fv->data.fv_int.value;
|
|
if (value > 0) {
|
|
value--;
|
|
}
|
|
}
|
|
|
|
FlowVarAddInt(f, *flowvar_id, value);
|
|
lua_pushnumber(L, (lua_Number)value);
|
|
|
|
return 1;
|
|
}
|
|
|
|
static const luaL_Reg flowvarlib[] = {
|
|
// clang-format off
|
|
{ "register", LuaFlowintRegister, },
|
|
{ "get", LuaFlowintGet },
|
|
{ NULL, NULL, },
|
|
// clang-format on
|
|
};
|
|
|
|
static const luaL_Reg flowvarmt[] = {
|
|
// clang-format off
|
|
{ "value", LuaFlowintValue, },
|
|
{ "set", LuaFlowintSet, },
|
|
{ "incr", LuaFlowintIncr, },
|
|
{ "decr", LuaFlowintDecr, },
|
|
{ NULL, NULL, },
|
|
// clang-format on
|
|
};
|
|
|
|
int LuaLoadFlowintLib(lua_State *L)
|
|
{
|
|
luaL_newmetatable(L, suricata_flowint_mt);
|
|
lua_pushvalue(L, -1);
|
|
lua_setfield(L, -2, "__index");
|
|
luaL_setfuncs(L, flowvarmt, 0);
|
|
|
|
luaL_newlib(L, flowvarlib);
|
|
return 1;
|
|
}
|