mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-14 05:45:59 +03:00
Improvements on LUA build scripts and support for LUA 5.2
This commit is contained in:
parent
de36fca86a
commit
c98e665475
4
CHANGES
4
CHANGES
@ -2,9 +2,11 @@
|
|||||||
v3.0.????? - ?
|
v3.0.????? - ?
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
- Improvements on LUA build scripts and support for LUA 5.2.
|
||||||
|
[Issue #1617 and #1622 - @victorhora, @zimmerle]
|
||||||
- Fix compilation error with disable_debug_log flag
|
- Fix compilation error with disable_debug_log flag
|
||||||
[0xfd84e - Izik Abramov]
|
[0xfd84e - Izik Abramov]
|
||||||
- Improvements on the benchmark tool.
|
- Improvements on the benchmark tool.
|
||||||
[Issue #1615 - @zimmerle]
|
[Issue #1615 - @zimmerle]
|
||||||
- Fix lua headers on the build scripts
|
- Fix lua headers on the build scripts
|
||||||
[Issue #1621 - @Minasu]
|
[Issue #1621 - @Minasu]
|
||||||
|
106
build/lua.m4
106
build/lua.m4
@ -6,13 +6,13 @@ AC_DEFUN([CHECK_LUA],
|
|||||||
[dnl
|
[dnl
|
||||||
|
|
||||||
# Possible names for the lua library/package (pkg-config)
|
# Possible names for the lua library/package (pkg-config)
|
||||||
LUA_POSSIBLE_LIB_NAMES="lua"
|
LUA_POSSIBLE_LIB_NAMES="lua lua53 lua5.3 lua52 lua5.2"
|
||||||
|
|
||||||
# Possible extensions for the library
|
# Possible extensions for the library
|
||||||
LUA_POSSIBLE_EXTENSIONS="so so0 la sl dll dylib so.0.0.0"
|
LUA_POSSIBLE_EXTENSIONS="so so0 la sl dll dylib so.0.0.0"
|
||||||
|
|
||||||
# Possible paths (if pkg-config was not found, proceed with the file lookup)
|
# Possible paths (if pkg-config was not found, proceed with the file lookup)
|
||||||
LUA_POSSIBLE_PATHS="/usr/lib /usr/local/lib /usr/local/lua /usr/local/liblua /usr/local /opt /usr /usr/lib64 /opt/local"
|
LUA_POSSIBLE_PATHS="/usr/lib /usr/local/lib /usr/local/lib64 /usr/local/lua /usr/local/liblua /usr/local /opt /usr /usr/lib64 /opt/local"
|
||||||
|
|
||||||
# Variables to be set by this very own script.
|
# Variables to be set by this very own script.
|
||||||
LUA_CFLAGS=""
|
LUA_CFLAGS=""
|
||||||
@ -46,6 +46,32 @@ else
|
|||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
if test -z "${LUA_CFLAGS}"; then
|
||||||
|
#Trying to figure out the version using pkg-config...
|
||||||
|
if test -n "${PKG_CONFIG}"; then
|
||||||
|
LUA_PKG_NAME=""
|
||||||
|
for x in ${LUA_POSSIBLE_LIB_NAMES}; do
|
||||||
|
if ${PKG_CONFIG} --exists ${x}; then
|
||||||
|
LUA_PKG_NAME="$x"
|
||||||
|
LUA_PKG_VERSION="`${PKG_CONFIG} ${LUA_PKG_NAME} --modversion`"
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
if test -n "${LUA_PKG_NAME}"; then
|
||||||
|
# Package was found using the pkg-config scripts
|
||||||
|
LUA_PKG_VERSION="`${PKG_CONFIG} ${LUA_PKG_NAME} --modversion`"
|
||||||
|
LUA_CFLAGS="`${PKG_CONFIG} ${LUA_PKG_NAME} --cflags`"
|
||||||
|
LUA_LDADD="`${PKG_CONFIG} ${LUA_PKG_NAME} --libs-only-l`"
|
||||||
|
LUA_LDFLAGS="`${PKG_CONFIG} ${LUA_PKG_NAME} --libs-only-L --libs-only-other`"
|
||||||
|
LUA_DISPLAY="${LUA_LDADD}, ${LUA_CFLAGS}"
|
||||||
|
case $LUA_PKG_VERSION in
|
||||||
|
(5.1*) LUA_CFLAGS="-DWITH_LUA_5_1 ${LUA_CFLAGS}" ; lua_5_1=1 ;;
|
||||||
|
(5.2*) LUA_CFLAGS="-DWITH_LUA_5_2 ${LUA_CFLAGS}" ; lua_5_2=1 ;;
|
||||||
|
esac
|
||||||
|
AC_MSG_NOTICE([LUA pkg-config version: ${LUA_PKG_VERSION}])
|
||||||
|
fi
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
@ -58,13 +84,17 @@ if test -z "${LUA_CFLAGS}"; then
|
|||||||
LUA_FOUND=2
|
LUA_FOUND=2
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
AC_MSG_ERROR([LUA was explicitly referenced but it was not found])
|
AC_MSG_ERROR([LUA was explicitly referenced but it was not found])
|
||||||
LUA_FOUND=-1
|
LUA_FOUND=-1
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
|
if test "${lua_5_1}" = 1 && test "x${LUA_MANDATORY}" == "xyes" ; then
|
||||||
|
AC_MSG_ERROR([LUA was explicitly referenced but LUA v5.1 was found and it is not currently supported on libModSecurity. LUA_VERSION: ${LUA_VERSION}])
|
||||||
|
LUA_FOUND=-1
|
||||||
|
fi
|
||||||
if test -z "${LUA_MANDATORY}" || test "x${LUA_MANDATORY}" == "xno"; then
|
if test -z "${LUA_MANDATORY}" || test "x${LUA_MANDATORY}" == "xno"; then
|
||||||
LUA_FOUND=1
|
LUA_FOUND=1
|
||||||
AC_MSG_NOTICE([using LUA v${LUA_VERSION}])
|
AC_MSG_NOTICE([using LUA ${LUA_LDADD}])
|
||||||
LUA_CFLAGS="-DWITH_LUA ${LUA_CFLAGS}"
|
LUA_CFLAGS="-DWITH_LUA ${LUA_CFLAGS}"
|
||||||
LUA_DISPLAY="${LUA_LDADD} ${LUA_LDFLAGS}, ${LUA_CFLAGS}"
|
LUA_DISPLAY="${LUA_LDADD} ${LUA_LDFLAGS}, ${LUA_CFLAGS}"
|
||||||
AC_SUBST(LUA_LDFLAGS)
|
AC_SUBST(LUA_LDFLAGS)
|
||||||
@ -73,7 +103,7 @@ else
|
|||||||
AC_SUBST(LUA_DISPLAY)
|
AC_SUBST(LUA_DISPLAY)
|
||||||
else
|
else
|
||||||
LUA_FOUND=1
|
LUA_FOUND=1
|
||||||
AC_MSG_NOTICE([using LUA v${LUA_VERSION}])
|
AC_MSG_NOTICE([using LUA ${LUA_LDADD}])
|
||||||
LUA_CFLAGS="-DWITH_LUA ${LUA_CFLAGS}"
|
LUA_CFLAGS="-DWITH_LUA ${LUA_CFLAGS}"
|
||||||
LUA_DISPLAY="${LUA_LDADD} ${LUA_LDFLAGS}, ${LUA_CFLAGS}"
|
LUA_DISPLAY="${LUA_LDADD} ${LUA_LDFLAGS}, ${LUA_CFLAGS}"
|
||||||
AC_SUBST(LUA_LDFLAGS)
|
AC_SUBST(LUA_LDFLAGS)
|
||||||
@ -83,6 +113,10 @@ else
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if test "${lua_5_1}" = 1 ; then
|
||||||
|
AC_MSG_NOTICE([LUA 5.1 was found and it is not currently supported on libModSecurity. LUA_VERSION: ${LUA_VERSION}. LUA build disabled.])
|
||||||
|
LUA_FOUND=2
|
||||||
|
fi
|
||||||
|
|
||||||
AC_SUBST(LUA_FOUND)
|
AC_SUBST(LUA_FOUND)
|
||||||
|
|
||||||
@ -132,9 +166,15 @@ AC_DEFUN([CHECK_FOR_LUA_AT], [
|
|||||||
if test -e "${path}/include/lua.h"; then
|
if test -e "${path}/include/lua.h"; then
|
||||||
lua_inc_path="${path}/include"
|
lua_inc_path="${path}/include"
|
||||||
elif test -e "${path}/lua.h"; then
|
elif test -e "${path}/lua.h"; then
|
||||||
lua_inc_path="${path}"
|
lua_inc_path="${path}"
|
||||||
elif test -e "${path}/include/lua/lua.h"; then
|
elif test -e "${path}/include/lua/lua.h"; then
|
||||||
lua_inc_path="${path}/include"
|
lua_inc_path="${path}/include/lua"
|
||||||
|
elif test -e "${path}/include/lua5.3/lua.h"; then
|
||||||
|
lua_inc_path="${path}/include/lua5.3"
|
||||||
|
LUA_VERSION=503
|
||||||
|
elif test -e "${path}/include/lua5.2/lua.h"; then
|
||||||
|
lua_inc_path="${path}/include/lua5.2"
|
||||||
|
LUA_VERSION=502
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test -n "${lua_lib_path}"; then
|
if test -n "${lua_lib_path}"; then
|
||||||
@ -144,14 +184,52 @@ AC_DEFUN([CHECK_FOR_LUA_AT], [
|
|||||||
if test -n "${lua_inc_path}"; then
|
if test -n "${lua_inc_path}"; then
|
||||||
AC_MSG_NOTICE([LUA headers found at: ${lua_inc_path}])
|
AC_MSG_NOTICE([LUA headers found at: ${lua_inc_path}])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test -n "${lua_lib_path}" -a -n "${lua_inc_path}"; then
|
if test -n "${lua_lib_path}" -a -n "${lua_inc_path}"; then
|
||||||
# TODO: Compile a piece of code to check the version.
|
LUA_CFLAGS="-I${lua_inc_path}"
|
||||||
LUA_CFLAGS="-I${lua_inc_path}"
|
LUA_LDADD="-l${lua_lib_name}"
|
||||||
LUA_LDADD="-l${lua_lib_name}"
|
LUA_LDFLAGS="-L${lua_lib_path}"
|
||||||
LUA_LDFLAGS="-L${lua_lib_path}"
|
LUA_DISPLAY="${lua_lib_file}, ${lua_inc_path}"
|
||||||
LUA_DISPLAY="${lua_lib_file}, ${lua_inc_path}"
|
|
||||||
|
# Double checking version from lua.h...
|
||||||
|
AC_TRY_COMPILE([ #include <lua.h>> ],
|
||||||
|
[ #if (LUA_VERSION_NUM < 502)
|
||||||
|
return 0;
|
||||||
|
#else
|
||||||
|
#error Lua 5.1 not detected
|
||||||
|
#endif ],
|
||||||
|
[ LUA_VERSION=501 ], [ lua_5_1=0 ]
|
||||||
|
)
|
||||||
|
|
||||||
|
AC_TRY_COMPILE([ #include <lua.h> ],
|
||||||
|
[ #if (LUA_VERSION_NUM == 502)
|
||||||
|
return 0;
|
||||||
|
#else
|
||||||
|
#error Lua 5.2 not detected
|
||||||
|
#endif ],
|
||||||
|
[ LUA_VERSION=502 ], [ lua_5_2=0 ]
|
||||||
|
)
|
||||||
|
|
||||||
|
if test -z "${LUA_VERSION}" ; then
|
||||||
|
# As a last resort, try to find LUA version from $lua_inc_path
|
||||||
|
while read -r line
|
||||||
|
do
|
||||||
|
case "$line" in
|
||||||
|
(\#define\ LUA_VERSION_NUM*501*) LUA_VERSION=501 ;;
|
||||||
|
(\#define\ LUA_VERSION_NUM*502*) LUA_VERSION=501 ;;
|
||||||
|
(\#define\ LUA_VERSION_NUM*503*) LUA_VERSION=503
|
||||||
|
esac
|
||||||
|
done <"${lua_inc_path}/lua.h"
|
||||||
|
AC_MSG_NOTICE([LUA_VERSION is ${LUA_VERSION} found at: ${lua_inc_path}])
|
||||||
|
else
|
||||||
|
AC_MSG_NOTICE([LUA version from includes: ${LUA_VERSION}])
|
||||||
|
fi
|
||||||
|
|
||||||
|
case $LUA_VERSION in
|
||||||
|
(501) LUA_CFLAGS="-DWITH_LUA_5_1 ${LUA_CFLAGS}" ; lua_5_1=1 ;;
|
||||||
|
(502) LUA_CFLAGS="-DWITH_LUA_5_2 ${LUA_CFLAGS}" ; lua_5_2=1 ;;
|
||||||
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
]) # AC_DEFUN [CHECK_FOR_LUA_AT]
|
]) # AC_DEFUN [CHECK_FOR_LUA_AT]
|
||||||
|
|
||||||
|
|
||||||
|
@ -83,7 +83,11 @@ bool Lua::load(std::string script, std::string *err) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef WITH_LUA_5_2
|
||||||
|
if (lua_dump(L, Lua::blob_keeper, reinterpret_cast<void *>(&m_blob))) {
|
||||||
|
#else
|
||||||
if (lua_dump(L, Lua::blob_keeper, reinterpret_cast<void *>(&m_blob), 0)) {
|
if (lua_dump(L, Lua::blob_keeper, reinterpret_cast<void *>(&m_blob), 0)) {
|
||||||
|
#endif
|
||||||
const char *luaerr = lua_tostring(L, -1);
|
const char *luaerr = lua_tostring(L, -1);
|
||||||
err->assign("Failed to compile script '" + script + "");
|
err->assign("Failed to compile script '" + script + "");
|
||||||
if (luaerr) {
|
if (luaerr) {
|
||||||
@ -95,7 +99,6 @@ bool Lua::load(std::string script, std::string *err) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
lua_close(L);
|
lua_close(L);
|
||||||
return true;
|
return true;
|
||||||
#else
|
#else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user