mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-09-30 19:47:47 +03:00
Initial support for Lua script engine
This commit is contained in:
377
src/engine/lua.cc
Normal file
377
src/engine/lua.cc
Normal file
@@ -0,0 +1,377 @@
|
||||
/*
|
||||
* ModSecurity, http://www.modsecurity.org/
|
||||
* Copyright (c) 2015 Trustwave Holdings, Inc. (http://www.trustwave.com/)
|
||||
*
|
||||
* You may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* If any of the files related to licensing are missing or if you have any
|
||||
* other questions related to licensing please contact Trustwave Holdings, Inc.
|
||||
* directly using the email address security@modsecurity.org.
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#include "modsecurity/modsecurity.h"
|
||||
#include "src/engine/lua.h"
|
||||
#include "src/utils/string.h"
|
||||
#include "src/macro_expansion.h"
|
||||
#include "modsecurity/transaction.h"
|
||||
#include "modsecurity/collection/variable.h"
|
||||
#include "src/variables/variable.h"
|
||||
#include "src/variables/highest_severity.h"
|
||||
#include "src/utils/string.h"
|
||||
#include "src/actions/transformations/transformation.h"
|
||||
|
||||
#include <vector>
|
||||
#include <string>
|
||||
#include <algorithm>
|
||||
#include <sstream>
|
||||
#include <iterator>
|
||||
#include <iostream>
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
|
||||
namespace modsecurity {
|
||||
namespace engine {
|
||||
|
||||
|
||||
bool Lua::isCompatible(std::string script, Lua *l, std::string *error) {
|
||||
std::string lua(".lua");
|
||||
std::string err;
|
||||
|
||||
if (!(script.size() >= lua.size() &&
|
||||
script.compare(script.size() - lua.size(), lua.size(), lua) == 0))
|
||||
{
|
||||
error->assign("Expecting a Lua script: " + script);
|
||||
return false;
|
||||
}
|
||||
|
||||
if (l->load(script, &err) == false) {
|
||||
error->assign("Problems load script: " + err);
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
bool Lua::load(std::string script, std::string *err) {
|
||||
lua_State *L = NULL;
|
||||
L = luaL_newstate();
|
||||
luaL_openlibs(L);
|
||||
|
||||
m_scriptName = script;
|
||||
if (luaL_loadfile(L, script.c_str())) {
|
||||
const char *luaerr = lua_tostring(L, -1);
|
||||
err->assign("Failed to compile script '" + script + "");
|
||||
if (luaerr) {
|
||||
err->append(": " + *luaerr);
|
||||
}
|
||||
err->append(".");
|
||||
lua_close(L);
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
if (lua_dump(L, Lua::blob_keeper, (void *)&m_blob, 0)) {
|
||||
const char *luaerr = lua_tostring(L, -1);
|
||||
err->assign("Failed to compile script '" + script + "");
|
||||
if (luaerr) {
|
||||
err->append(": " + *luaerr);
|
||||
}
|
||||
err->append(".");
|
||||
lua_close(L);
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
lua_close(L);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
int Lua::blob_keeper(lua_State *L, const void *p, size_t sz, void *ud) {
|
||||
LuaScriptBlob *lsb = static_cast<LuaScriptBlob *>(ud);
|
||||
lsb->write(p, sz);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
const char *Lua::blob_reader(lua_State *L, void *ud, size_t *size) {
|
||||
LuaScriptBlob *lsb = static_cast<LuaScriptBlob *>(ud);
|
||||
const char *data = lsb->read(size);
|
||||
return data;
|
||||
}
|
||||
|
||||
|
||||
int Lua::run(Transaction *t) {
|
||||
std::string luaRet;
|
||||
lua_State *L = luaL_newstate();
|
||||
luaL_openlibs(L);
|
||||
|
||||
luaL_newmetatable(L, "luaL_msc");
|
||||
lua_newtable(L);
|
||||
|
||||
lua_pushlightuserdata(L, (void *)t);
|
||||
lua_setglobal(L, "__transaction");
|
||||
|
||||
luaL_setfuncs(L, mscLuaLib, 0);
|
||||
lua_setglobal(L, "m");
|
||||
|
||||
int rc = lua_load(L, Lua::blob_reader, &m_blob, m_scriptName.c_str(),
|
||||
NULL);
|
||||
if (rc != LUA_OK) {
|
||||
std::string e;
|
||||
e.assign("Failed to execute lua script: " + m_scriptName + ". ");
|
||||
switch (rc) {
|
||||
case LUA_ERRSYNTAX:
|
||||
e.assign("Syntax error. ");
|
||||
break;
|
||||
case LUA_ERRMEM:
|
||||
e.assign("Memory error. ");
|
||||
break;
|
||||
case LUA_ERRGCMM:
|
||||
e.assign("Garbage Collector error. ");
|
||||
break;
|
||||
}
|
||||
e.append(lua_tostring(L, -1));
|
||||
t->debug(2, e);
|
||||
return false;
|
||||
}
|
||||
|
||||
if (lua_pcall(L, 0, 0, 0)) {
|
||||
std::string e;
|
||||
const char *luaerr = lua_tostring(L, -1);
|
||||
e.assign("Failed to execute lua script: " + m_scriptName \
|
||||
+ " (before main)");
|
||||
if (luaerr != NULL) {
|
||||
e.append(" - ");
|
||||
e.append(luaerr);
|
||||
}
|
||||
t->debug(2, e);
|
||||
return false;
|
||||
}
|
||||
|
||||
lua_setglobal(L, "modsec");
|
||||
|
||||
lua_getglobal(L, "main");
|
||||
if (lua_pcall(L, 0, 1, 0)) {
|
||||
std::string e;
|
||||
const char *luaerr = lua_tostring(L, -1);
|
||||
e.assign("Failed to execute lua script: " + m_scriptName + " (main)");
|
||||
if (luaerr != NULL) {
|
||||
e.append(" - ");
|
||||
e.append(luaerr);
|
||||
}
|
||||
t->debug(2, e);
|
||||
return false;
|
||||
}
|
||||
|
||||
char *a = (char *)lua_tostring(L, -1);
|
||||
if (a != NULL) {
|
||||
luaRet.assign(a);
|
||||
}
|
||||
|
||||
t->debug(9, "Returning from lua script: " + luaRet);
|
||||
|
||||
lua_pop(L, 1);
|
||||
lua_close(L);
|
||||
|
||||
if (luaRet.size() == 0) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
int Lua::log(lua_State *L) {
|
||||
Transaction *t = NULL;
|
||||
const char *text;
|
||||
int level;
|
||||
|
||||
/* Retrieve parameters. */
|
||||
level = luaL_checknumber(L, 1);
|
||||
text = luaL_checkstring(L, 2);
|
||||
|
||||
/* Retrieve msr. */
|
||||
lua_getglobal(L, "__transaction");
|
||||
t = (Transaction *)lua_topointer(L, -1);
|
||||
|
||||
/* Log message. */
|
||||
if (t != NULL) {
|
||||
t->debug(level, text);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
int Lua::getvar(lua_State *L) {
|
||||
char *varname = NULL;
|
||||
Transaction *t = NULL;
|
||||
|
||||
/* Retrieve parameters. */
|
||||
varname = (char *)luaL_checkstring(L, 1);
|
||||
|
||||
lua_getglobal(L, "__transaction");
|
||||
t = (Transaction *)lua_topointer(L, -1);
|
||||
|
||||
std::string var = Variables::Variable::stringMatchResolve(t, varname);
|
||||
var = applyTransformations(L, t, 2, var);
|
||||
|
||||
if (var.size() == 0) {
|
||||
lua_pushnil(L);
|
||||
return 0;
|
||||
}
|
||||
|
||||
lua_pushlstring(L, var.c_str(), var.size());
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
||||
int Lua::getvars(lua_State *L) {
|
||||
char *varname = NULL;
|
||||
Transaction *t = NULL;
|
||||
std::vector<const collection::Variable *> l;
|
||||
int idx = 1;
|
||||
|
||||
/* Retrieve parameters. */
|
||||
varname = (char *)luaL_checkstring(L, 1);
|
||||
|
||||
lua_getglobal(L, "__transaction");
|
||||
t = (Transaction *)lua_topointer(L, -1);
|
||||
|
||||
Variables::Variable::stringMatchResolveMulti(t, varname, &l);
|
||||
|
||||
lua_newtable(L);
|
||||
for (auto i : l) {
|
||||
lua_pushnumber(L, idx);
|
||||
lua_newtable(L);
|
||||
|
||||
lua_pushstring(L, "name");
|
||||
lua_pushlstring(L, i->m_key.c_str(), i->m_key.size());
|
||||
lua_settable(L, -3);
|
||||
|
||||
lua_pushstring(L, "value");
|
||||
lua_pushlstring(L, i->m_value.c_str(), i->m_value.size());
|
||||
lua_settable(L, -3);
|
||||
|
||||
lua_settable(L, -3);
|
||||
idx++;
|
||||
}
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
||||
int Lua::setvar(lua_State *L) {
|
||||
Transaction *t = NULL;
|
||||
const char *var_value = NULL;
|
||||
const char *var_name = NULL;
|
||||
std::string vname;
|
||||
std::string collection;
|
||||
std::string variableName;
|
||||
int nargs = lua_gettop(L);
|
||||
char *chr = NULL;
|
||||
size_t pos;
|
||||
|
||||
lua_getglobal(L, "__transaction");
|
||||
t = (Transaction *)lua_topointer(L, -1);
|
||||
|
||||
if (nargs != 2) {
|
||||
t->debug(8, "m.setvar: Failed m.setvar funtion must has 2 arguments");
|
||||
return -1;
|
||||
}
|
||||
var_value = luaL_checkstring(L, 2);
|
||||
var_name = luaL_checkstring(L, 1);
|
||||
|
||||
lua_pop(L, 2);
|
||||
|
||||
if (var_value == NULL || var_name == NULL) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
vname.assign(var_name);
|
||||
pos = vname.find(".");
|
||||
if (pos != std::string::npos) {
|
||||
collection = std::string(vname, 0, pos);
|
||||
collection = utils::string::toupper(collection);
|
||||
variableName = std::string(vname, pos + 1,
|
||||
std::string::npos);
|
||||
|
||||
} else {
|
||||
t->debug(8, "m.setvar: Must specify a collection using dot character" \
|
||||
" - ie m.setvar(tx.myvar,mydata)");
|
||||
return -1;
|
||||
}
|
||||
|
||||
t->m_collections.storeOrUpdateFirst(collection,
|
||||
variableName, var_value);
|
||||
}
|
||||
|
||||
|
||||
std::string Lua::applyTransformations(lua_State *L, Transaction *t, int idx, std::string var) {
|
||||
std::string newVar = var;
|
||||
|
||||
if (lua_isuserdata(L, idx) || lua_isnoneornil(L, idx)) {
|
||||
return var;
|
||||
}
|
||||
|
||||
if (lua_istable(L, idx)) {
|
||||
char *name = NULL;
|
||||
int i, n = lua_rawlen(L, idx);
|
||||
|
||||
for (i = 1; i <= n; i++) {
|
||||
lua_rawgeti(L, idx, i);
|
||||
name = (char *)luaL_checkstring(L, -1);
|
||||
|
||||
/* A "none" means start over */
|
||||
if (strcmp("none", name) == 0) {
|
||||
newVar = var;
|
||||
continue;
|
||||
}
|
||||
|
||||
actions::transformations::Transformation *tfn = actions::transformations::Transformation::instantiate("t:" + std::string(name));
|
||||
// FIXME: transformation is not yet returning null.
|
||||
if (tfn) {
|
||||
newVar = tfn->evaluate(newVar, t);
|
||||
} else {
|
||||
t->debug(1, "SecRuleScript: Invalid transformation function: " + std::string(name));
|
||||
}
|
||||
}
|
||||
|
||||
return newVar;
|
||||
}
|
||||
|
||||
if (lua_isstring(L, idx)) {
|
||||
char *name = (char *)luaL_checkstring(L, idx);
|
||||
|
||||
actions::transformations::Transformation *tfn = actions::transformations::Transformation::instantiate("t:" + std::string(name));
|
||||
// FIXME: transformation is not yet returning null.
|
||||
if (tfn) {
|
||||
newVar = tfn->evaluate(newVar, t);
|
||||
} else {
|
||||
t->debug(1, "SecRuleScript: Invalid transformation function: " + std::string(name));
|
||||
}
|
||||
return newVar;
|
||||
}
|
||||
|
||||
t->debug(8, "SecRuleScript: Transformation parameter must be a " \
|
||||
"transformation name or array of transformation names, but found " \
|
||||
"" + std::string(lua_typename(L, idx)) + " (type " \
|
||||
+ std::to_string(lua_type(L, idx)) + ")");
|
||||
|
||||
return newVar;
|
||||
}
|
||||
|
||||
|
||||
} // namespace engines
|
||||
} // namespace modsecurity
|
101
src/engine/lua.h
Normal file
101
src/engine/lua.h
Normal file
@@ -0,0 +1,101 @@
|
||||
/*
|
||||
* ModSecurity, http://www.modsecurity.org/
|
||||
* Copyright (c) 2015 Trustwave Holdings, Inc. (http://www.trustwave.com/)
|
||||
*
|
||||
* You may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* If any of the files related to licensing are missing or if you have any
|
||||
* other questions related to licensing please contact Trustwave Holdings, Inc.
|
||||
* directly using the email address security@modsecurity.org.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifdef WITH_LUA
|
||||
#endif
|
||||
#include <lua.hpp>
|
||||
|
||||
#include <iostream>
|
||||
#include <cstdint>
|
||||
#include <cstring>
|
||||
|
||||
|
||||
#ifndef SRC_ENGINES_LUA_H_
|
||||
#define SRC_ENGINES_LUA_H_
|
||||
|
||||
namespace modsecurity {
|
||||
class Transaction;
|
||||
namespace engine {
|
||||
|
||||
class LuaScriptBlob {
|
||||
public:
|
||||
LuaScriptBlob() :
|
||||
m_data(NULL),
|
||||
m_len(0) { };
|
||||
|
||||
~LuaScriptBlob() {
|
||||
if (m_data) {
|
||||
free(m_data);
|
||||
m_data = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void write(const void *data, size_t len) {
|
||||
unsigned char *d = NULL;
|
||||
d = (unsigned char *)realloc((unsigned char *)m_data, len + m_len);
|
||||
std::memcpy(d + m_len, data, len);
|
||||
m_len = m_len + len;
|
||||
m_data = d;
|
||||
}
|
||||
|
||||
|
||||
const char *read(size_t *len) {
|
||||
*len = m_len;
|
||||
return (const char *)m_data;
|
||||
}
|
||||
|
||||
|
||||
unsigned char *m_data;
|
||||
size_t m_len;
|
||||
};
|
||||
|
||||
|
||||
class Lua {
|
||||
public:
|
||||
Lua() { };
|
||||
|
||||
bool load(std::string script, std::string *err);
|
||||
int run(Transaction *t);
|
||||
static bool isCompatible(std::string script, Lua *l, std::string *error);
|
||||
|
||||
static int blob_keeper(lua_State *L, const void *p, size_t sz, void *ud);
|
||||
static const char *blob_reader(lua_State *L, void *us, size_t *size);
|
||||
|
||||
static int log(lua_State *L);
|
||||
static int getvar(lua_State *L);
|
||||
static int getvars(lua_State *L);
|
||||
static int setvar(lua_State *L);
|
||||
static std::string applyTransformations(lua_State *L, Transaction *t, int idx,
|
||||
std::string var);
|
||||
|
||||
LuaScriptBlob m_blob;
|
||||
std::string m_scriptName;
|
||||
};
|
||||
|
||||
|
||||
static const struct luaL_Reg mscLuaLib[] = {
|
||||
{ "log", Lua::log },
|
||||
{ "getvar", Lua::getvar },
|
||||
{ "getvars", Lua::getvars },
|
||||
{ "setvar", Lua::setvar },
|
||||
{ NULL, NULL }
|
||||
};
|
||||
|
||||
|
||||
} // namespace engines
|
||||
} // namespace modsecurity
|
||||
|
||||
#endif // SRC_ENGINES_LUA_H_
|
Reference in New Issue
Block a user