summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rw-r--r--README.FreeBSD2
-rw-r--r--SConstruct2
-rw-r--r--configure.ac45
-rw-r--r--src/CMakeLists.txt2
-rw-r--r--src/mod_cml_funcs.c35
-rw-r--r--src/mod_cml_lua.c229
-rw-r--r--src/mod_magnet.c529
-rw-r--r--src/mod_magnet_cache.c10
9 files changed, 367 insertions, 488 deletions
diff --git a/NEWS b/NEWS
index 34251a16..a5272441 100644
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,7 @@ NEWS
- 1.4.40
* [mod_ssi] enhance support for ssi vars (thx fbrosson)
+ * add handling for lua 5.2 and 5.3 (fixes #2674)
- 1.4.39 - 2016-01-02
* [core] fix memset_s call (fixes #2698)
diff --git a/README.FreeBSD b/README.FreeBSD
index dbb76ebd..5d0d2b7a 100644
--- a/README.FreeBSD
+++ b/README.FreeBSD
@@ -27,7 +27,7 @@ FreeBSD dependencies:
pkg install gamin
or
pkg install fam
-- Lua 5.1 (mod_magnet and mod_cml; lighty upstream doesn't support 5.2 yet)
+- Lua 5.1, 5.2 or 5.3 (mod_magnet and mod_cml)
pkg install lua51
- (deprecated) memcache library (mod_cml and mod_trigger_b4_dl feature)
pkg install libmemcache
diff --git a/SConstruct b/SConstruct
index db82ef56..37ba6fda 100644
--- a/SConstruct
+++ b/SConstruct
@@ -304,7 +304,7 @@ def TryLua(env, name):
if env['with_lua']:
found_lua = False
- for lua_name in ['lua5.1', 'lua5.0', 'lua']:
+ for lua_name in ['lua5.3', 'lua-5.3', 'lua5.2', 'lua-5.2', 'lua5.1', 'lua-5.1', 'lua']:
if TryLua(env, lua_name):
found_lua = True
break
diff --git a/configure.ac b/configure.ac
index 94cd04e9..aa9a924f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -520,28 +520,31 @@ AC_ARG_WITH(lua, AC_HELP_STRING([--with-lua],[lua engine for mod_cml]),
AC_MSG_RESULT($WITH_LUA)
if test "$WITH_LUA" != "no"; then
- if test "$WITH_LUA" = "yes"; then
- WITH_LUA=lua
- fi
- dnl first check for lua5.1 (debian and others), then lua-5.1 (freebsd), then $WITH_LUA (defaults to lua)
- dnl check "lua" last now that lua5.2 is out
- PKG_CHECK_MODULES(LUA, lua5.1 >= 5.1, [
- AC_DEFINE([HAVE_LUA], [1], [liblua])
- AC_DEFINE([HAVE_LUA_H], [1], [lua.h])
- ],[
- PKG_CHECK_MODULES(LUA, lua-5.1 >= 5.1, [
- AC_DEFINE([HAVE_LUA], [1], [liblua])
- AC_DEFINE([HAVE_LUA_H], [1], [lua.h])
- ],[
- PKG_CHECK_MODULES(LUA, $WITH_LUA >= 5.1, [
- AC_DEFINE([HAVE_LUA], [1], [liblua])
- AC_DEFINE([HAVE_LUA_H], [1], [lua.h])
- ])
- ])
- ])
+ if test "$WITH_LUA" != "yes"; then
+ PKG_CHECK_MODULES(LUA, $WITH_LUA >= 5.1, [
+ AC_DEFINE([HAVE_LUA], [1], [liblua])
+ AC_DEFINE([HAVE_LUA_H], [1], [lua.h])
+ ],[
+ AC_MSG_ERROR([Couldn't find requested lua pkg-config module $WITH_LUA])
+ ])
+ else
+ found_lua=0
+ for luaname in lua5.3 lua-5.3 lua5.2 lua-5.2 lua5.1 lua-5.1 lua; do
+ if test "$found_lua" = "0"; then
+ PKG_CHECK_MODULES(LUA, $luaname >= 5.1, [
+ AC_DEFINE([HAVE_LUA], [1], [liblua])
+ AC_DEFINE([HAVE_LUA_H], [1], [lua.h])
+ found_lua=1
+ ], [])
+ fi
+ done
+ if test "$found_lua" = "0"; then
+ AC_MSG_ERROR([Couldn't find any lua pkg-config module])
+ fi
+ fi
- AC_SUBST(LUA_CFLAGS)
- AC_SUBST(LUA_LIBS)
+ AC_SUBST(LUA_CFLAGS)
+ AC_SUBST(LUA_LIBS)
fi
dnl search for crypt_r and (fallback) for crypt
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index a4deeba8..613af887 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -397,7 +397,7 @@ else()
endif()
if(WITH_LUA)
- pkg_search_module(LUA REQUIRED lua lua5.1 lua-5.1)
+ pkg_search_module(LUA REQUIRED lua5.3 lua-5.3 lua5.2 lua-5.2 lua5.1 lua-5.1 lua)
message(STATUS "found lua at: INCDIR: ${LUA_INCLUDE_DIRS} LIBDIR: ${LUA_LIBRARY_DIRS} LDFLAGS: ${LUA_LDFLAGS} CFLAGS: ${LUA_CFLAGS}")
set(HAVE_LIBLUA 1 "Have liblua")
set(HAVE_LUA_H 1 "Have liblua header")
diff --git a/src/mod_cml_funcs.c b/src/mod_cml_funcs.c
index a377edd8..aa7af749 100644
--- a/src/mod_cml_funcs.c
+++ b/src/mod_cml_funcs.c
@@ -37,6 +37,8 @@ int f_crypto_md5(lua_State *L) {
HASH HA1;
char hex[33];
int n = lua_gettop(L);
+ size_t s_len;
+ const char *s;
if (n != 1) {
lua_pushstring(L, "md5: expected one argument");
@@ -48,8 +50,10 @@ int f_crypto_md5(lua_State *L) {
lua_error(L);
}
+ s = lua_tolstring(L, 1, &s_len);
+
li_MD5_Init(&Md5Ctx);
- li_MD5_Update(&Md5Ctx, (unsigned char *)lua_tostring(L, 1), lua_strlen(L, 1));
+ li_MD5_Update(&Md5Ctx, (unsigned char *) s, (unsigned int) s_len);
li_MD5_Final(HA1, &Md5Ctx);
li_tohex(hex, (const char*) HA1, 16);
@@ -79,7 +83,7 @@ int f_file_mtime(lua_State *L) {
return 1;
}
- lua_pushnumber(L, st.st_mtime);
+ lua_pushinteger(L, st.st_mtime);
return 1;
}
@@ -121,7 +125,7 @@ int f_dir_files(lua_State *L) {
return 1;
}
- /* push d into registry */
+ /* push d into userdata */
lua_pushlightuserdata(L, d);
lua_pushcclosure(L, f_dir_files_iter, 1);
@@ -147,7 +151,7 @@ int f_file_isreg(lua_State *L) {
return 1;
}
- lua_pushnumber(L, S_ISREG(st.st_mode));
+ lua_pushinteger(L, S_ISREG(st.st_mode));
return 1;
}
@@ -171,7 +175,7 @@ int f_file_isdir(lua_State *L) {
return 1;
}
- lua_pushnumber(L, S_ISDIR(st.st_mode));
+ lua_pushinteger(L, S_ISDIR(st.st_mode));
return 1;
}
@@ -183,6 +187,8 @@ int f_memcache_exists(lua_State *L) {
char *r;
int n = lua_gettop(L);
struct memcache *mc;
+ size_t s_len;
+ const char *s;
if (!lua_islightuserdata(L, lua_upvalueindex(1))) {
lua_pushstring(L, "where is my userdata ?");
@@ -201,9 +207,8 @@ int f_memcache_exists(lua_State *L) {
lua_error(L);
}
- if (NULL == (r = mc_aget(mc,
- (char*) lua_tostring(L, 1), lua_strlen(L, 1)))) {
-
+ s = lua_tolstring(L, 1, &s_len);
+ if (NULL == (r = mc_aget(mc, (char*) s, s_len))) {
lua_pushboolean(L, 0);
return 1;
}
@@ -217,6 +222,8 @@ int f_memcache_exists(lua_State *L) {
int f_memcache_get_string(lua_State *L) {
char *r;
int n = lua_gettop(L);
+ size_t s_len;
+ const char *s;
struct memcache *mc;
@@ -238,8 +245,8 @@ int f_memcache_get_string(lua_State *L) {
lua_error(L);
}
- if (NULL == (r = mc_aget(mc,
- (char*) lua_tostring(L, 1), lua_strlen(L, 1)))) {
+ s = lua_tolstring(L, 1, &s_len);
+ if (NULL == (r = mc_aget(mc, (char*) s, s_len))) {
lua_pushnil(L);
return 1;
}
@@ -254,6 +261,8 @@ int f_memcache_get_string(lua_State *L) {
int f_memcache_get_long(lua_State *L) {
char *r;
int n = lua_gettop(L);
+ size_t s_len;
+ const char *s;
struct memcache *mc;
@@ -275,13 +284,13 @@ int f_memcache_get_long(lua_State *L) {
lua_error(L);
}
- if (NULL == (r = mc_aget(mc,
- (char*) lua_tostring(L, 1), lua_strlen(L, 1)))) {
+ s = lua_tolstring(L, 1, &s_len);
+ if (NULL == (r = mc_aget(mc, (char*) s, s_len))) {
lua_pushnil(L);
return 1;
}
- lua_pushnumber(L, strtol(r, NULL, 10));
+ lua_pushinteger(L, strtol(r, NULL, 10));
free(r);
diff --git a/src/mod_cml_lua.c b/src/mod_cml_lua.c
index 895a7090..5fbefc24 100644
--- a/src/mod_cml_lua.c
+++ b/src/mod_cml_lua.c
@@ -28,67 +28,35 @@ typedef char HASHHEX[HASHHEXLEN+1];
#include <lualib.h>
#include <lauxlib.h>
-typedef struct {
- stream st;
- int done;
-} readme;
-
-static const char * load_file(lua_State *L, void *data, size_t *size) {
- readme *rm = data;
-
- UNUSED(L);
-
- if (rm->done) return 0;
-
- *size = rm->st.size;
- rm->done = 1;
- return rm->st.start;
-}
-
static int lua_to_c_get_string(lua_State *L, const char *varname, buffer *b) {
- int curelem;
-
- lua_pushstring(L, varname);
+ int curelem = lua_gettop(L);
+ int result;
- curelem = lua_gettop(L);
- lua_gettable(L, LUA_GLOBALSINDEX);
+ lua_getglobal(L, varname);
- /* it should be a table */
- if (!lua_isstring(L, curelem)) {
- lua_settop(L, curelem - 1);
-
- return -1;
+ if (lua_isstring(L, curelem)) {
+ buffer_copy_string(b, lua_tostring(L, curelem));
+ result = 0;
+ } else {
+ result = -1;
}
- buffer_copy_string(b, lua_tostring(L, curelem));
-
lua_pop(L, 1);
-
- force_assert(curelem - 1 == lua_gettop(L));
-
- return 0;
+ force_assert(curelem == lua_gettop(L));
+ return result;
}
static int lua_to_c_is_table(lua_State *L, const char *varname) {
- int curelem;
+ int curelem = lua_gettop(L);
+ int result;
- lua_pushstring(L, varname);
+ lua_getglobal(L, varname);
- curelem = lua_gettop(L);
- lua_gettable(L, LUA_GLOBALSINDEX);
+ result = lua_istable(L, curelem) ? 1 : 0;
- /* it should be a table */
- if (!lua_istable(L, curelem)) {
- lua_settop(L, curelem - 1);
-
- return 0;
- }
-
- lua_settop(L, curelem - 1);
-
- force_assert(curelem - 1 == lua_gettop(L));
-
- return 1;
+ lua_pop(L, 1);
+ force_assert(curelem == lua_gettop(L));
+ return result;
}
static int c_to_lua_push(lua_State *L, int tbl, const char *key, size_t key_len, const char *val, size_t val_len) {
@@ -99,7 +67,6 @@ static int c_to_lua_push(lua_State *L, int tbl, const char *key, size_t key_len,
return 0;
}
-
static int cache_export_get_params(lua_State *L, int tbl, buffer *qrystr) {
size_t is_key = 1;
size_t i, len;
@@ -143,82 +110,11 @@ static int cache_export_get_params(lua_State *L, int tbl, buffer *qrystr) {
return 0;
}
-#if 0
-int cache_export_cookie_params(server *srv, connection *con, plugin_data *p) {
- data_unset *d;
-
- UNUSED(srv);
-
- if (NULL != (d = array_get_element(con->request.headers, "Cookie"))) {
- data_string *ds = (data_string *)d;
- size_t key = 0, value = 0;
- size_t is_key = 1, is_sid = 0;
- size_t i;
-
- /* found COOKIE */
- if (!DATA_IS_STRING(d)) return -1;
- if (ds->value->used == 0) return -1;
-
- if (ds->value->ptr[0] == '\0' ||
- ds->value->ptr[0] == '=' ||
- ds->value->ptr[0] == ';') return -1;
-
- buffer_reset(p->session_id);
- for (i = 0; i < ds->value->used; i++) {
- switch(ds->value->ptr[i]) {
- case '=':
- if (is_key) {
- if (0 == strncmp(ds->value->ptr + key, "PHPSESSID", i - key)) {
- /* found PHP-session-id-key */
- is_sid = 1;
- }
- value = i + 1;
-
- is_key = 0;
- }
-
- break;
- case ';':
- if (is_sid) {
- buffer_copy_string_len(p->session_id, ds->value->ptr + value, i - value);
- }
-
- is_sid = 0;
- key = i + 1;
- value = 0;
- is_key = 1;
- break;
- case ' ':
- if (is_key == 1 && key == i) key = i + 1;
- if (is_key == 0 && value == i) value = i + 1;
- break;
- case '\0':
- if (is_sid) {
- buffer_copy_string_len(p->session_id, ds->value->ptr + value, i - value);
- }
- /* fin */
- break;
- }
- }
- }
-
- return 0;
-}
-#endif
int cache_parse_lua(server *srv, connection *con, plugin_data *p, buffer *fn) {
lua_State *L;
- readme rm;
int ret = -1;
buffer *b;
- int header_tbl = 0;
-
- rm.done = 0;
- if (-1 == stream_open(&rm.st, fn)) {
- log_error_write(srv, __FILE__, __LINE__, "sbss",
- "opening lua cml file ", fn, "failed:", strerror(errno));
- return -1;
- }
b = buffer_init();
/* push the lua file to the interpreter and see what happends */
@@ -233,73 +129,77 @@ int cache_parse_lua(server *srv, connection *con, plugin_data *p, buffer *fn) {
lua_register(L, "dir_files", f_dir_files);
#ifdef HAVE_MEMCACHE_H
- lua_pushliteral(L, "memcache_get_long");
lua_pushlightuserdata(L, p->conf.mc);
lua_pushcclosure(L, f_memcache_get_long, 1);
- lua_settable(L, LUA_GLOBALSINDEX);
+ lua_setglobal(L, "memcache_get_long");
- lua_pushliteral(L, "memcache_get_string");
lua_pushlightuserdata(L, p->conf.mc);
lua_pushcclosure(L, f_memcache_get_string, 1);
- lua_settable(L, LUA_GLOBALSINDEX);
+ lua_setglobal(L, "memcache_get_string");
- lua_pushliteral(L, "memcache_exists");
lua_pushlightuserdata(L, p->conf.mc);
lua_pushcclosure(L, f_memcache_exists, 1);
- lua_settable(L, LUA_GLOBALSINDEX);
+ lua_setglobal(L, "memcache_exists");
#endif
+
/* register CGI environment */
- lua_pushliteral(L, "request");
lua_newtable(L);
- lua_settable(L, LUA_GLOBALSINDEX);
-
- lua_pushliteral(L, "request");
- header_tbl = lua_gettop(L);
- lua_gettable(L, LUA_GLOBALSINDEX);
-
- c_to_lua_push(L, header_tbl, CONST_STR_LEN("REQUEST_URI"), CONST_BUF_LEN(con->request.orig_uri));
- c_to_lua_push(L, header_tbl, CONST_STR_LEN("SCRIPT_NAME"), CONST_BUF_LEN(con->uri.path));
- c_to_lua_push(L, header_tbl, CONST_STR_LEN("SCRIPT_FILENAME"), CONST_BUF_LEN(con->physical.path));
- c_to_lua_push(L, header_tbl, CONST_STR_LEN("DOCUMENT_ROOT"), CONST_BUF_LEN(con->physical.doc_root));
- if (!buffer_string_is_empty(con->request.pathinfo)) {
- c_to_lua_push(L, header_tbl, CONST_STR_LEN("PATH_INFO"), CONST_BUF_LEN(con->request.pathinfo));
- }
+ {
+ int header_tbl = lua_gettop(L);
+
+ c_to_lua_push(L, header_tbl, CONST_STR_LEN("REQUEST_URI"), CONST_BUF_LEN(con->request.orig_uri));
+ c_to_lua_push(L, header_tbl, CONST_STR_LEN("SCRIPT_NAME"), CONST_BUF_LEN(con->uri.path));
+ c_to_lua_push(L, header_tbl, CONST_STR_LEN("SCRIPT_FILENAME"), CONST_BUF_LEN(con->physical.path));
+ c_to_lua_push(L, header_tbl, CONST_STR_LEN("DOCUMENT_ROOT"), CONST_BUF_LEN(con->physical.doc_root));
+ if (!buffer_string_is_empty(con->request.pathinfo)) {
+ c_to_lua_push(L, header_tbl, CONST_STR_LEN("PATH_INFO"), CONST_BUF_LEN(con->request.pathinfo));
+ }
- c_to_lua_push(L, header_tbl, CONST_STR_LEN("CWD"), CONST_BUF_LEN(p->basedir));
- c_to_lua_push(L, header_tbl, CONST_STR_LEN("BASEURL"), CONST_BUF_LEN(p->baseurl));
+ c_to_lua_push(L, header_tbl, CONST_STR_LEN("CWD"), CONST_BUF_LEN(p->basedir));
+ c_to_lua_push(L, header_tbl, CONST_STR_LEN("BASEURL"), CONST_BUF_LEN(p->baseurl));
+ }
+ lua_setglobal(L, "request");
/* register GET parameter */
- lua_pushliteral(L, "get");
lua_newtable(L);
- lua_settable(L, LUA_GLOBALSINDEX);
-
- lua_pushliteral(L, "get");
- header_tbl = lua_gettop(L);
- lua_gettable(L, LUA_GLOBALSINDEX);
+ {
+ int get_tbl = lua_gettop(L);
- buffer_copy_buffer(b, con->uri.query);
- cache_export_get_params(L, header_tbl, b);
- buffer_reset(b);
+ buffer_copy_buffer(b, con->uri.query);
+ cache_export_get_params(L, get_tbl, b);
+ buffer_reset(b);
+ }
+ lua_setglobal(L, "get");
/* 2 default constants */
- lua_pushliteral(L, "CACHE_HIT");
- lua_pushnumber(L, 0);
- lua_settable(L, LUA_GLOBALSINDEX);
+ lua_pushinteger(L, 0);
+ lua_setglobal(L, "CACHE_HIT");
- lua_pushliteral(L, "CACHE_MISS");
- lua_pushnumber(L, 1);
- lua_settable(L, LUA_GLOBALSINDEX);
+ lua_pushinteger(L, 1);
+ lua_setglobal(L, "CACHE_MISS");
/* load lua program */
- if (lua_load(L, load_file, &rm, fn->ptr) || lua_pcall(L,0,1,0)) {
- log_error_write(srv, __FILE__, __LINE__, "s",
- lua_tostring(L,-1));
+ ret = luaL_loadfile(L, fn->ptr);
+ if (0 != ret) {
+ log_error_write(srv, __FILE__, __LINE__, "sbsS",
+ "failed loading cml_lua script",
+ fn,
+ ":",
+ lua_tostring(L, -1));
+ goto error;
+ }
+ if (lua_pcall(L, 0, 1, 0)) {
+ log_error_write(srv, __FILE__, __LINE__, "sbsS",
+ "failed running cml_lua script",
+ fn,
+ ":",
+ lua_tostring(L, -1));
goto error;
}
/* get return value */
- ret = (int)lua_tonumber(L, -1);
+ ret = (int)lua_tointeger(L, -1);
lua_pop(L, 1);
/* fetch the data from lua */
@@ -323,10 +223,8 @@ int cache_parse_lua(server *srv, connection *con, plugin_data *p, buffer *fn) {
goto error;
}
- lua_pushstring(L, "output_include");
-
+ lua_getglobal(L, "output_include");
curelem = lua_gettop(L);
- lua_gettable(L, LUA_GLOBALSINDEX);
/* HOW-TO build a etag ?
* as we don't just have one file we have to take the stat()
@@ -441,7 +339,6 @@ int cache_parse_lua(server *srv, connection *con, plugin_data *p, buffer *fn) {
error:
lua_close(L);
- stream_close(&rm.st);
buffer_free(b);
return ret /* cache-error */;
diff --git a/src/mod_magnet.c b/src/mod_magnet.c
index 056fe493..114d41e6 100644
--- a/src/mod_magnet.c
+++ b/src/mod_magnet.c
@@ -20,6 +20,9 @@
#include <lua.h>
#include <lauxlib.h>
+#define LUA_RIDX_LIGHTTPD_SERVER "lighty.srv"
+#define LUA_RIDX_LIGHTTPD_CONNECTION "lighty.con"
+
#define MAGNET_CONFIG_RAW_URL "magnet.attract-raw-url-to"
#define MAGNET_CONFIG_PHYSICAL_PATH "magnet.attract-physical-path-to"
#define MAGNET_RESTART_REQUEST 99
@@ -159,23 +162,57 @@ static int mod_magnet_patch_connection(server *srv, connection *con, plugin_data
}
#undef PATCH
-/* See http://lua-users.org/wiki/GeneralizedPairsAndIpairs for implementation details. */
+static void magnet_get_global_table(lua_State *L) { /* (-0, +1, e) */
+#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 502
+ lua_geti(L, LUA_REGISTRYINDEX, LUA_RIDX_GLOBALS);
+#else
+ lua_pushvalue(L, LUA_GLOBALSINDEX);
+#endif
+}
+
+static void magnet_setfenv_mainfn(lua_State *L, int funcIndex) { /* (-1, 0, -) */
+#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 502
+ /* set "_ENV" upvalue, which should be the first upvalue of a "main" lua
+ * function if it uses any global names
+ */
-/* Override the default pairs() function to allow us to use a __pairs metakey */
+ const char* first_upvalue_name = lua_getupvalue(L, funcIndex, 1);
+ if (NULL == first_upvalue_name) return; /* doesn't have any upvalues */
+ lua_pop(L, 1); /* only need the name of the upvalue, not the value */
+
+ if (0 != strcmp(first_upvalue_name, "_ENV")) return;
+
+ if (NULL == lua_setupvalue(L, funcIndex, 1)) {
+ /* pop value if lua_setupvalue didn't set the (not existing) upvalue */
+ lua_pop(L, 1);
+ }
+#else
+ lua_setfenv(L, funcIndex);
+#endif
+}
+
+#if !defined(LUA_VERSION_NUM) || LUA_VERSION_NUM < 502
+/* lua 5.2 already supports __pairs */
+
+/* See http://lua-users.org/wiki/GeneralizedPairsAndIpairs for implementation details.
+ * Override the default pairs() function to allow us to use a __pairs metakey
+ */
static int magnet_pairs(lua_State *L) {
- luaL_checkany(L, 1);
+ luaL_checkany(L, 1); /* "self" */
if (luaL_getmetafield(L, 1, "__pairs")) {
- lua_insert(L, 1);
- lua_call(L, lua_gettop(L) - 1, LUA_MULTRET);
- return lua_gettop(L);
+ /* call __pairs(self) */
+ lua_pushvalue(L, 1);
+ lua_call(L, 1, 3);
} else {
+ /* call <original-pairs-method>(self) */
lua_pushvalue(L, lua_upvalueindex(1));
- lua_insert(L, 1);
- lua_call(L, lua_gettop(L) - 1, LUA_MULTRET);
- return lua_gettop(L);
+ lua_pushvalue(L, 1);
+ lua_call(L, 1, 3);
}
+ return 3;
}
+#endif
/* Define a function that will iterate over an array* (in upval 1) using current position (upval 2) */
static int magnet_array_next(lua_State *L) {
@@ -229,40 +266,63 @@ static int magnet_array_pairs(lua_State *L, array *a) {
return 1;
}
-static int magnet_print(lua_State *L) {
- const char *s = luaL_checkstring(L, 1);
+static server* magnet_get_server(lua_State *L) {
server *srv;
- lua_pushstring(L, "lighty.srv");
- lua_gettable(L, LUA_REGISTRYINDEX);
+ lua_getfield(L, LUA_REGISTRYINDEX, LUA_RIDX_LIGHTTPD_SERVER);
srv = lua_touserdata(L, -1);
lua_pop(L, 1);
- log_error_write(srv, __FILE__, __LINE__, "ss",
- "(lua-print)", s);
+ return srv;
+}
+
+static connection* magnet_get_connection(lua_State *L) {
+ connection *con;
+
+ lua_getfield(L, LUA_REGISTRYINDEX, LUA_RIDX_LIGHTTPD_CONNECTION);
+ con = lua_touserdata(L, -1);
+ lua_pop(L, 1);
+
+ return con;
+}
+
+typedef struct {
+ const char *ptr;
+ size_t len;
+} const_buffer;
+
+static const_buffer magnet_checkconstbuffer(lua_State *L, int index) {
+ const_buffer cb;
+ cb.ptr = luaL_checklstring(L, index, &cb.len);
+ return cb;
+}
+
+static buffer* magnet_checkbuffer(lua_State *L, int index) {
+ const_buffer cb = magnet_checkconstbuffer(L, index);
+ buffer *b = buffer_init();
+ buffer_copy_string_len(b, cb.ptr, cb.len);
+ return b;
+}
+
+static int magnet_print(lua_State *L) {
+ buffer *b = magnet_checkbuffer(L, 1);
+
+ log_error_write(magnet_get_server(L), __FILE__, __LINE__, "sB",
+ "(lua-print)",
+ b);
+
+ buffer_free(b);
return 0;
}
static int magnet_stat(lua_State *L) {
- const char *s = luaL_checkstring(L, 1);
- server *srv;
- connection *con;
- buffer *sb;
+ buffer *sb = magnet_checkbuffer(L, 1);
+ server *srv = magnet_get_server(L);
+ connection *con = magnet_get_connection(L);
stat_cache_entry *sce = NULL;
handler_t res;
- lua_pushstring(L, "lighty.srv");
- lua_gettable(L, LUA_REGISTRYINDEX);
- srv = lua_touserdata(L, -1);
- lua_pop(L, 1);
-
- lua_pushstring(L, "lighty.con");
- lua_gettable(L, LUA_REGISTRYINDEX);
- con = lua_touserdata(L, -1);
- lua_pop(L, 1);
-
- sb = buffer_init_string(s);
res = stat_cache_get_entry(srv, con, sb, &sce);
buffer_free(sb);
@@ -271,11 +331,11 @@ static int magnet_stat(lua_State *L) {
return 1;
}
- lua_newtable(L);
+ lua_newtable(L); // return value
lua_pushboolean(L, S_ISREG(sce->st.st_mode));
lua_setfield(L, -2, "is_file");
-
+
lua_pushboolean(L, S_ISDIR(sce->st.st_mode));
lua_setfield(L, -2, "is_dir");
@@ -315,7 +375,6 @@ static int magnet_stat(lua_State *L) {
lua_pushinteger(L, sce->st.st_ino);
lua_setfield(L, -2, "st_ino");
-
if (!buffer_string_is_empty(sce->etag)) {
/* we have to mutate the etag */
buffer *b = buffer_init();
@@ -340,31 +399,24 @@ static int magnet_stat(lua_State *L) {
static int magnet_atpanic(lua_State *L) {
- const char *s = luaL_checkstring(L, 1);
- server *srv;
+ buffer *b = magnet_checkbuffer(L, 1);
- lua_pushstring(L, "lighty.srv");
- lua_gettable(L, LUA_REGISTRYINDEX);
- srv = lua_touserdata(L, -1);
- lua_pop(L, 1);
+ log_error_write(magnet_get_server(L), __FILE__, __LINE__, "sB",
+ "(lua-atpanic)",
+ b);
- log_error_write(srv, __FILE__, __LINE__, "ss",
- "(lua-atpanic)", s);
+ buffer_free(b);
longjmp(exceptionjmp, 1);
}
static int magnet_reqhdr_get(lua_State *L) {
- connection *con;
+ connection *con = magnet_get_connection(L);
data_string *ds;
+ /* __index: param 1 is the (empty) table the value was not found in */
const char *key = luaL_checkstring(L, 2);
- lua_pushstring(L, "lighty.con");
- lua_gettable(L, LUA_REGISTRYINDEX);
- con = lua_touserdata(L, -1);
- lua_pop(L, 1);
-
if (NULL != (ds = (data_string *)array_get_element(con->request.headers, key))) {
if (!buffer_is_empty(ds->value)) {
lua_pushlstring(L, CONST_BUF_LEN(ds->value));
@@ -378,59 +430,39 @@ static int magnet_reqhdr_get(lua_State *L) {
}
static int magnet_reqhdr_pairs(lua_State *L) {
- connection *con;
-
- lua_pushstring(L, "lighty.con");
- lua_gettable(L, LUA_REGISTRYINDEX);
- con = lua_touserdata(L, -1);
- lua_pop(L, 1);
+ connection *con = magnet_get_connection(L);
return magnet_array_pairs(L, con->request.headers);
}
static int magnet_status_get(lua_State *L) {
data_integer *di;
- server *srv;
- size_t key_len = 0;
-
- const char *key = luaL_checklstring(L, 2, &key_len);
+ server *srv = magnet_get_server(L);
- lua_pushstring(L, "lighty.srv");
- lua_gettable(L, LUA_REGISTRYINDEX);
- srv = lua_touserdata(L, -1);
- lua_pop(L, 1);
+ /* __index: param 1 is the (empty) table the value was not found in */
+ const_buffer key = magnet_checkconstbuffer(L, 2);
- di = status_counter_get_counter(srv, key, key_len);
+ di = status_counter_get_counter(srv, key.ptr, key.len);
- lua_pushnumber(L, (double)di->value);
+ lua_pushinteger(L, (lua_Integer)di->value);
return 1;
}
static int magnet_status_set(lua_State *L) {
- size_t key_len = 0;
- server *srv;
+ server *srv = magnet_get_server(L);
- const char *key = luaL_checklstring(L, 2, &key_len);
- int counter = luaL_checkint(L, 3);
-
- lua_pushstring(L, "lighty.srv");
- lua_gettable(L, LUA_REGISTRYINDEX);
- srv = lua_touserdata(L, -1);
- lua_pop(L, 1);
+ /* __newindex: param 1 is the (empty) table the value is supposed to be set in */
+ const_buffer key = magnet_checkconstbuffer(L, 2);
+ int counter = (int) luaL_checkinteger(L, 3);
- status_counter_set(srv, key, key_len, counter);
+ status_counter_set(srv, key.ptr, key.len, counter);
return 0;
}
static int magnet_status_pairs(lua_State *L) {
- server *srv;
-
- lua_pushstring(L, "lighty.srv");
- lua_gettable(L, LUA_REGISTRYINDEX);
- srv = lua_touserdata(L, -1);
- lua_pop(L, 1);
+ server *srv = magnet_get_server(L);
return magnet_array_pairs(L, srv->status);
}
@@ -534,22 +566,13 @@ static buffer *magnet_env_get_buffer(server *srv, connection *con, const char *k
}
static int magnet_env_get(lua_State *L) {
- server *srv;
- connection *con;
+ server *srv = magnet_get_server(L);
+ connection *con = magnet_get_connection(L);
+ /* __index: param 1 is the (empty) table the value was not found in */
const char *key = luaL_checkstring(L, 2);
buffer *dest = NULL;
- lua_pushstring(L, "lighty.srv");
- lua_gettable(L, LUA_REGISTRYINDEX);
- srv = lua_touserdata(L, -1);
- lua_pop(L, 1);
-
- lua_pushstring(L, "lighty.con");
- lua_gettable(L, LUA_REGISTRYINDEX);
- con = lua_touserdata(L, -1);
- lua_pop(L, 1);
-
dest = magnet_env_get_buffer(srv, con, key);
if (!buffer_is_empty(dest)) {
@@ -562,25 +585,22 @@ static int magnet_env_get(lua_State *L) {
}
static int magnet_env_set(lua_State *L) {
- server *srv;
- connection *con;
+ server *srv = magnet_get_server(L);
+ connection *con = magnet_get_connection(L);
+ /* __newindex: param 1 is the (empty) table the value is supposed to be set in */
const char *key = luaL_checkstring(L, 2);
- const char *val = luaL_checkstring(L, 3);
buffer *dest = NULL;
- lua_pushstring(L, "lighty.srv");
- lua_gettable(L, LUA_REGISTRYINDEX);
- srv = lua_touserdata(L, -1);
- lua_pop(L, 1);
-
- lua_pushstring(L, "lighty.con");
- lua_gettable(L, LUA_REGISTRYINDEX);
- con = lua_touserdata(L, -1);
- lua_pop(L, 1);
+ luaL_checkany(L, 3); /* nil or a string */
if (NULL != (dest = magnet_env_get_buffer(srv, con, key))) {
- buffer_copy_string(dest, val);
+ if (lua_isnil(L, 3)) {
+ buffer_reset(dest);
+ } else {
+ const_buffer val = magnet_checkconstbuffer(L, 3);
+ buffer_copy_string_len(dest, val.ptr, val.len);
+ }
} else {
/* couldn't save */
@@ -591,28 +611,24 @@ static int magnet_env_set(lua_State *L) {
}
static int magnet_env_next(lua_State *L) {
- server *srv;
- connection *con;
- int pos = lua_tointeger(L, lua_upvalueindex(1));
+ server *srv = magnet_get_server(L);
+ connection *con = magnet_get_connection(L);
+ const int pos = lua_tointeger(L, lua_upvalueindex(1));
buffer *dest;
- lua_pushstring(L, "lighty.srv");
- lua_gettable(L, LUA_REGISTRYINDEX);
- srv = lua_touserdata(L, -1);
- lua_pop(L, 1);
-
- lua_pushstring(L, "lighty.con");
- lua_gettable(L, LUA_REGISTRYINDEX);
- con = lua_touserdata(L, -1);
- lua_pop(L, 1);
-
+ /* ignore previous key: use upvalue for current pos */
lua_settop(L, 0);
if (NULL == magnet_env[pos].name) return 0; /* end of list */
+ /* Update our positional upval to reflect our new current position */
+ lua_pushinteger(L, pos + 1);
+ lua_replace(L, lua_upvalueindex(1));
+ /* key to return */
lua_pushstring(L, magnet_env[pos].name);
+ /* get value */
dest = magnet_env_get_buffer_by_id(srv, con, magnet_env[pos].type);
if (!buffer_is_empty(dest)) {
lua_pushlstring(L, CONST_BUF_LEN(dest));
@@ -620,12 +636,7 @@ static int magnet_env_next(lua_State *L) {
lua_pushnil(L);
}
- /* Update our positional upval to reflect our new current position */
- pos++;
- lua_pushinteger(L, pos);
- lua_replace(L, lua_upvalueindex(1));
-
- /* Returning 2 items on the stack (key, value) */
+ /* return 2 items on the stack (key, value) */
return 2;
}
@@ -636,16 +647,12 @@ static int magnet_env_pairs(lua_State *L) {
}
static int magnet_cgi_get(lua_State *L) {
- connection *con;
+ connection *con = magnet_get_connection(L);
data_string *ds;
+ /* __index: param 1 is the (empty) table the value was not found in */
const char *key = luaL_checkstring(L, 2);
- lua_pushstring(L, "lighty.con");
- lua_gettable(L, LUA_REGISTRYINDEX);
- con = lua_touserdata(L, -1);
- lua_pop(L, 1);
-
ds = (data_string *)array_get_element(con->environment, key);
if (NULL != ds && !buffer_is_empty(ds->value))
lua_pushlstring(L, CONST_BUF_LEN(ds->value));
@@ -656,69 +663,44 @@ static int magnet_cgi_get(lua_State *L) {
}
static int magnet_cgi_set(lua_State *L) {
- connection *con;
-
- const char *key = luaL_checkstring(L, 2);
- const char *val = luaL_checkstring(L, 3);
+ connection *con = magnet_get_connection(L);
- lua_pushstring(L, "lighty.con");
- lua_gettable(L, LUA_REGISTRYINDEX);
- con = lua_touserdata(L, -1);
- lua_pop(L, 1);
+ /* __newindex: param 1 is the (empty) table the value is supposed to be set in */
+ const_buffer key = magnet_checkconstbuffer(L, 2);
+ const_buffer val = magnet_checkconstbuffer(L, 2);
- array_set_key_value(con->environment, key, strlen(key), val, strlen(val));
+ array_set_key_value(con->environment, key.ptr, key.len, val.ptr, val.len);
return 0;
}
static int magnet_cgi_pairs(lua_State *L) {
- connection *con;
-
- lua_pushstring(L, "lighty.con");
- lua_gettable(L, LUA_REGISTRYINDEX);
- con = lua_touserdata(L, -1);
- lua_pop(L, 1);
+ connection *con = magnet_get_connection(L);
return magnet_array_pairs(L, con->environment);
}
-static int magnet_copy_response_header(server *srv, connection *con, plugin_data *p, lua_State *L) {
- UNUSED(p);
- /**
- * get the environment of the function
- */
-
- lua_getfenv(L, -1); /* -1 is the function */
-
- /* lighty.header */
+static int magnet_copy_response_header(server *srv, connection *con, lua_State *L, int lighty_table_ndx) {
+ force_assert(lua_istable(L, lighty_table_ndx));
- lua_getfield(L, -1, "lighty"); /* lighty.* from the env */
- force_assert(lua_istable(L, -1));
-
- lua_getfield(L, -1, "header"); /* lighty.header */
+ lua_getfield(L, lighty_table_ndx, "header"); /* lighty.header */
if (lua_istable(L, -1)) {
/* header is found, and is a table */
lua_pushnil(L);
while (lua_next(L, -2) != 0) {
if (lua_isstring(L, -1) && lua_isstring(L, -2)) {
- const char *key, *val;
- size_t key_len, val_len;
-
- key = lua_tolstring(L, -2, &key_len);
- val = lua_tolstring(L, -1, &val_len);
+ const_buffer key = magnet_checkconstbuffer(L, -2);
+ const_buffer val = magnet_checkconstbuffer(L, -1);
- response_header_overwrite(srv, con, key, key_len, val, val_len);
+ response_header_overwrite(srv, con, key.ptr, key.len, val.ptr, val.len);
}
lua_pop(L, 1);
}
}
-
- lua_pop(L, 1); /* pop the header-table */
- lua_pop(L, 1); /* pop the lighty-env */
- lua_pop(L, 1); /* pop the function env */
+ lua_pop(L, 1); /* pop lighty.header */
return 0;
}
@@ -732,32 +714,22 @@ static int magnet_copy_response_header(server *srv, connection *con, plugin_data
*
* return 200
*/
-static int magnet_attach_content(server *srv, connection *con, plugin_data *p, lua_State *L) {
- UNUSED(p);
- /**
- * get the environment of the function
- */
-
- force_assert(lua_isfunction(L, -1));
- lua_getfenv(L, -1); /* -1 is the function */
-
- lua_getfield(L, -1, "lighty"); /* lighty.* from the env */
- force_assert(lua_istable(L, -1));
+static int magnet_attach_content(server *srv, connection *con, lua_State *L, int lighty_table_ndx) {
+ force_assert(lua_istable(L, lighty_table_ndx));
- lua_getfield(L, -1, "content"); /* lighty.content */
+ lua_getfield(L, lighty_table_ndx, "content"); /* lighty.content */
if (lua_istable(L, -1)) {
int i;
- /* header is found, and is a table */
+ /* content is found, and is a table */
for (i = 1; ; i++) {
lua_rawgeti(L, -1, i);
/* -1 is the value and should be the value ... aka a table */
if (lua_isstring(L, -1)) {
- size_t s_len = 0;
- const char *s = lua_tolstring(L, -1, &s_len);
+ const_buffer data = magnet_checkconstbuffer(L, -1);
- chunkqueue_append_mem(con->write_queue, s, s_len);
+ chunkqueue_append_mem(con->write_queue, data.ptr, data.len);
} else if (lua_istable(L, -1)) {
lua_getfield(L, -1, "filename");
lua_getfield(L, -2, "length");
@@ -766,36 +738,24 @@ static int magnet_attach_content(server *srv, connection *con, plugin_data *p, l
if (lua_isstring(L, -3)) { /* filename has to be a string */
buffer *fn;
stat_cache_entry *sce;
- const char *fn_str;
handler_t res;
- fn_str = lua_tostring(L, -3);
- fn = buffer_init_string(fn_str);
+ fn = magnet_checkbuffer(L, -3);
res = stat_cache_get_entry(srv, con, fn, &sce);
if (HANDLER_GO_ON == res) {
- off_t off = 0;
- off_t len = 0;
-
- if (lua_isnumber(L, -1)) {
- off = lua_tonumber(L, -1);
- }
-
- if (lua_isnumber(L, -2)) {
- len = lua_tonumber(L, -2);
- } else {
- len = sce->st.st_size;
- }
+ off_t off = (off_t) luaL_optinteger(L, -1, 0);
+ off_t len = (off_t) luaL_optinteger(L, -2, (lua_Integer) sce->st.st_size);
if (off < 0) {
buffer_free(fn);
- return luaL_error(L, "offset for '%s' is negative", fn_str);
+ return luaL_error(L, "offset for '%s' is negative", lua_tostring(L, -3));
}
if (len < off) {
buffer_free(fn);
- return luaL_error(L, "offset > length for '%s'", fn_str);
+ return luaL_error(L, "offset > length for '%s'", lua_tostring(L, -3));
}
chunkqueue_append_file(con->write_queue, fn, off, len - off);
@@ -803,40 +763,34 @@ static int magnet_attach_content(server *srv, connection *con, plugin_data *p, l
buffer_free(fn);
} else {
- lua_pop(L, 3 + 2); /* correct the stack */
-
return luaL_error(L, "content[%d] is a table and requires the field \"filename\"", i);
}
lua_pop(L, 3);
} else if (lua_isnil(L, -1)) {
- /* oops, end of list */
+ /* end of list */
lua_pop(L, 1);
break;
} else {
- lua_pop(L, 4);
-
return luaL_error(L, "content[%d] is neither a string nor a table: ", i);
}
- lua_pop(L, 1); /* pop the content[...] table */
+ lua_pop(L, 1); /* pop the content[...] entry value */
}
} else {
return luaL_error(L, "lighty.content has to be a table");
}
- lua_pop(L, 1); /* pop the header-table */
- lua_pop(L, 1); /* pop the lighty-table */
- lua_pop(L, 1); /* php the function env */
+ lua_pop(L, 1); /* pop lighty.content */
return 0;
}
-static int traceback (lua_State *L) {
+static int traceback(lua_State *L) {
if (!lua_isstring(L, 1)) /* 'message' not a string? */
return 1; /* keep it intact */
- lua_getfield(L, LUA_GLOBALSINDEX, "debug");
+ lua_getglobal(L, "debug");
if (!lua_istable(L, -1)) {
lua_pop(L, 1);
return 1;
@@ -852,6 +806,10 @@ static int traceback (lua_State *L) {
return 1;
}
+/* push traceback function before calling lua_pcall after narg arguments
+ * have been pushed (inserts it before the arguments). returns index for
+ * traceback function ("msgh" in lua_pcall)
+ */
static int push_traceback(lua_State *L, int narg) {
int base = lua_gettop(L) - narg; /* function index */
lua_pushcfunction(L, traceback);
@@ -861,11 +819,11 @@ static int push_traceback(lua_State *L, int narg) {
static handler_t magnet_attract(server *srv, connection *con, plugin_data *p, buffer *name) {
lua_State *L;
- int lua_return_value = -1;
- int errfunc;
- /* get the script-context */
-
+ int lua_return_value;
+ const int func_ndx = 1;
+ const int lighty_table_ndx = 2;
+ /* get the script-context */
L = script_cache_get_script(srv, con, p->cache, name);
if (lua_isstring(L, -1)) {
@@ -878,7 +836,7 @@ static handler_t magnet_attract(server *srv, connection *con, plugin_data *p, bu
lua_pop(L, 1);
- force_assert(lua_gettop(L) == 0); /* only the function should be on the stack */
+ force_assert(lua_gettop(L) == 0); /* only the error should have been on the stack */
con->http_status = 500;
con->mode = DIRECT;
@@ -886,13 +844,14 @@ static handler_t magnet_attract(server *srv, connection *con, plugin_data *p, bu
return HANDLER_FINISHED;
}
- lua_pushstring(L, "lighty.srv");
+ force_assert(lua_gettop(L) == 1);
+ force_assert(lua_isfunction(L, func_ndx));
+
lua_pushlightuserdata(L, srv);
- lua_settable(L, LUA_REGISTRYINDEX); /* registery[<id>] = srv */
+ lua_setfield(L, LUA_REGISTRYINDEX, LUA_RIDX_LIGHTTPD_SERVER);
- lua_pushstring(L, "lighty.con");
lua_pushlightuserdata(L, con);
- lua_settable(L, LUA_REGISTRYINDEX); /* registery[<id>] = con */
+ lua_setfield(L, LUA_REGISTRYINDEX, LUA_RIDX_LIGHTTPD_CONNECTION);
lua_atpanic(L, magnet_atpanic);
@@ -901,7 +860,7 @@ static handler_t magnet_attract(server *srv, connection *con, plugin_data *p, bu
*
* setmetatable({}, {__index = _G})
*
- * if a function, symbol is not defined in our env, __index will lookup
+ * if a function symbol is not defined in our env, __index will lookup
* in the global env.
*
* all variables created in the script-env will be thrown
@@ -914,9 +873,13 @@ static handler_t magnet_attract(server *srv, connection *con, plugin_data *p, bu
lua_setfield(L, -2, "print"); /* -1 is the env we want to set(sp -= 1) */
/**
- * lighty.request[] has the HTTP-request headers
- * lighty.content[] is a table of string/file
- * lighty.header[] is a array to set response headers
+ * lighty.request[] (ro) has the HTTP-request headers
+ * lighty.env[] (rw) has various url/physical file paths and
+ * request meta data; might contain nil values
+ * lighty.req_env[] (ro) has the cgi environment
+ * lighty.status[] (ro) has the status counters
+ * lighty.content[] (rw) is a table of string/file
+ * lighty.header[] (rw) is a array to set response headers
*/
lua_newtable(L); /* lighty.* (sp += 1) */
@@ -931,18 +894,18 @@ static handler_t magnet_attract(server *srv, connection *con, plugin_data *p, bu
lua_setfield(L, -2, "request"); /* content = {} (sp -= 1) */
lua_newtable(L); /* {} (sp += 1) */
- lua_newtable(L); /* the meta-table for the request-table (sp += 1) */
+ lua_newtable(L); /* the meta-table for the env-table (sp += 1) */
lua_pushcfunction(L, magnet_env_get); /* (sp += 1) */
lua_setfield(L, -2, "__index"); /* (sp -= 1) */
lua_pushcfunction(L, magnet_env_set); /* (sp += 1) */
lua_setfield(L, -2, "__newindex"); /* (sp -= 1) */
lua_pushcfunction(L, magnet_env_pairs); /* (sp += 1) */
lua_setfield(L, -2, "__pairs"); /* (sp -= 1) */
- lua_setmetatable(L, -2); /* tie the metatable to request (sp -= 1) */
+ lua_setmetatable(L, -2); /* tie the metatable to env (sp -= 1) */
lua_setfield(L, -2, "env"); /* content = {} (sp -= 1) */
lua_newtable(L); /* {} (sp += 1) */
- lua_newtable(L); /* the meta-table for the request-table (sp += 1) */
+ lua_newtable(L); /* the meta-table for the req_env-table (sp += 1) */
lua_pushcfunction(L, magnet_cgi_get); /* (sp += 1) */
lua_setfield(L, -2, "__index"); /* (sp -= 1) */
lua_pushcfunction(L, magnet_cgi_set); /* (sp += 1) */
@@ -953,14 +916,14 @@ static handler_t magnet_attract(server *srv, connection *con, plugin_data *p, bu
lua_setfield(L, -2, "req_env"); /* content = {} (sp -= 1) */
lua_newtable(L); /* {} (sp += 1) */
- lua_newtable(L); /* the meta-table for the request-table (sp += 1) */
+ lua_newtable(L); /* the meta-table for the status-table (sp += 1) */
lua_pushcfunction(L, magnet_status_get); /* (sp += 1) */
lua_setfield(L, -2, "__index"); /* (sp -= 1) */
lua_pushcfunction(L, magnet_status_set); /* (sp += 1) */
lua_setfield(L, -2, "__newindex"); /* (sp -= 1) */
lua_pushcfunction(L, magnet_status_pairs); /* (sp += 1) */
lua_setfield(L, -2, "__pairs"); /* (sp -= 1) */
- lua_setmetatable(L, -2); /* tie the metatable to request (sp -= 1) */
+ lua_setmetatable(L, -2); /* tie the metatable to statzs (sp -= 1) */
lua_setfield(L, -2, "status"); /* content = {} (sp -= 1) */
/* add empty 'content' and 'header' tables */
@@ -976,78 +939,92 @@ static handler_t magnet_attract(server *srv, connection *con, plugin_data *p, bu
lua_pushcfunction(L, magnet_stat); /* (sp += 1) */
lua_setfield(L, -2, "stat"); /* -1 is the env we want to set (sp -= 1) */
+ /* insert lighty table at index 2 */
+ lua_pushvalue(L, -1);
+ lua_insert(L, lighty_table_ndx);
+
lua_setfield(L, -2, "lighty"); /* lighty.* (sp -= 1) */
- /* override the default pairs() function to our __pairs capable version */
+#if !defined(LUA_VERSION_NUM) || LUA_VERSION_NUM < 502
+ /* override the default pairs() function to our __pairs capable version;
+ * not needed for lua 5.2+
+ */
lua_getglobal(L, "pairs"); /* push original pairs() (sp += 1) */
lua_pushcclosure(L, magnet_pairs, 1);
lua_setfield(L, -2, "pairs"); /* (sp -= 1) */
+#endif
lua_newtable(L); /* the meta-table for the new env (sp += 1) */
- lua_pushvalue(L, LUA_GLOBALSINDEX); /* (sp += 1) */
+ magnet_get_global_table(L); /* (sp += 1) */
lua_setfield(L, -2, "__index"); /* { __index = _G } (sp -= 1) */
lua_setmetatable(L, -2); /* setmetatable({}, {__index = _G}) (sp -= 1) */
+ magnet_setfenv_mainfn(L, 1); /* (sp -= 1) */
- lua_setfenv(L, -2); /* on the stack should be a modified env (sp -= 1) */
-
- errfunc = push_traceback(L, 0);
- if (lua_pcall(L, 0, 1, errfunc)) {
+ /* pcall will destroy the func value, duplicate it */ /* (sp += 1) */
+ lua_pushvalue(L, func_ndx);
+ {
+ int errfunc = push_traceback(L, 0);
+ int ret = lua_pcall(L, 0, 1, errfunc);
lua_remove(L, errfunc);
- log_error_write(srv, __FILE__, __LINE__,
- "ss",
- "lua_pcall():",
- lua_tostring(L, -1));
- lua_pop(L, 1); /* remove the error-msg and the function copy from the stack */
- force_assert(lua_gettop(L) == 1); /* only the function should be on the stack */
+ /* reset environment */
+ magnet_get_global_table(L); /* (sp += 1) */
+ magnet_setfenv_mainfn(L, 1); /* (sp -= 1) */
- con->http_status = 500;
- con->mode = DIRECT;
+ if (0 != ret) {
+ log_error_write(srv, __FILE__, __LINE__,
+ "ss",
+ "lua_pcall():",
+ lua_tostring(L, -1));
+ lua_pop(L, 2); /* remove the error-msg and the lighty table at index 2 */
- return HANDLER_FINISHED;
- }
- lua_remove(L, errfunc);
+ force_assert(lua_gettop(L) == 1); /* only the function should be on the stack */
- /* we should have the function-copy and the return value on the stack */
- force_assert(lua_gettop(L) == 2);
+ con->http_status = 500;
+ con->mode = DIRECT;
- if (lua_isnumber(L, -1)) {
- /* if the ret-value is a number, take it */
- lua_return_value = (int)lua_tonumber(L, -1);
+ return HANDLER_FINISHED;
+ }
}
- lua_pop(L, 1); /* pop the ret-value */
- magnet_copy_response_header(srv, con, p, L);
+ /* we should have the function, the lighty table and the return value on the stack */
+ force_assert(lua_gettop(L) == 3);
- if (lua_return_value > 99) {
- con->http_status = lua_return_value;
- con->file_finished = 1;
+ lua_return_value = (int) luaL_optinteger(L, -1, -1);
+ lua_pop(L, 1); /* pop return value */
- /* try { ...*/
- if (0 == setjmp(exceptionjmp)) {
- magnet_attach_content(srv, con, p, L);
- if (!chunkqueue_is_empty(con->write_queue)) {
- con->mode = p->id;
- }
- } else {
- /* } catch () { */
- con->http_status = 500;
- con->mode = DIRECT;
- }
+ magnet_copy_response_header(srv, con, L, lighty_table_ndx);
- force_assert(lua_gettop(L) == 1); /* only the function should be on the stack */
+ {
+ handler_t result = HANDLER_GO_ON;
- /* we are finished */
- return HANDLER_FINISHED;
- } else if (MAGNET_RESTART_REQUEST == lua_return_value) {
- force_assert(lua_gettop(L) == 1); /* only the function should be on the stack */
+ if (lua_return_value > 99) {
+ con->http_status = lua_return_value;
+ con->file_finished = 1;
- return HANDLER_COMEBACK;
- } else {
- force_assert(lua_gettop(L) == 1); /* only the function should be on the stack */
+ /* try { ...*/
+ if (0 == setjmp(exceptionjmp)) {
+ magnet_attach_content(srv, con, L, lighty_table_ndx);
+ if (!chunkqueue_is_empty(con->write_queue)) {
+ con->mode = p->id;
+ }
+ } else {
+ lua_settop(L, 2); /* remove all but function and lighty table */
+ /* } catch () { */
+ con->http_status = 500;
+ con->mode = DIRECT;
+ }
+
+ result = HANDLER_FINISHED;
+ } else if (MAGNET_RESTART_REQUEST == lua_return_value) {
+ result = HANDLER_COMEBACK;
+ }
+
+ lua_pop(L, 1); /* pop the lighty table */
+ force_assert(lua_gettop(L) == 1); /* only the function should remain on the stack */
- return HANDLER_GO_ON;
+ return result;
}
}
diff --git a/src/mod_magnet_cache.c b/src/mod_magnet_cache.c
index 0e9f72f8..3804cb80 100644
--- a/src/mod_magnet_cache.c
+++ b/src/mod_magnet_cache.c
@@ -68,6 +68,7 @@ lua_State *script_cache_get_script(server *srv, connection *con, script_cache *c
/* oops, the script failed last time */
if (lua_gettop(sc->L) == 0) break;
+ force_assert(lua_gettop(sc->L) == 1);
if (HANDLER_ERROR == stat_cache_get_entry(srv, con, sc->name, &sce)) {
lua_pop(sc->L, 1); /* pop the old function */
@@ -81,7 +82,6 @@ lua_State *script_cache_get_script(server *srv, connection *con, script_cache *c
}
force_assert(lua_isfunction(sc->L, -1));
- lua_pushvalue(sc->L, -1); /* copy the function-reference */
return sc->L;
}
@@ -114,7 +114,6 @@ lua_State *script_cache_get_script(server *srv, connection *con, script_cache *c
if (0 != luaL_loadfile(sc->L, name->ptr)) {
/* oops, an error, return it */
-
return sc->L;
}
@@ -122,14 +121,7 @@ lua_State *script_cache_get_script(server *srv, connection *con, script_cache *c
buffer_copy_buffer(sc->etag, sce->etag);
}
- /**
- * pcall() needs the function on the stack
- *
- * as pcall() will pop the script from the stack when done, we have to
- * duplicate it here
- */
force_assert(lua_isfunction(sc->L, -1));
- lua_pushvalue(sc->L, -1); /* copy the function-reference */
return sc->L;
}