mod_lua.c revision db38a4275fe8e2e76b0de82b52019f2ec5fda32c
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor/**
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor * Licensed to the Apache Software Foundation (ASF) under one or more
fd9abdda70912b99b24e3bf1a38f26fde908a74cnd * contributor license agreements. See the NOTICE file distributed with
fd9abdda70912b99b24e3bf1a38f26fde908a74cnd * this work for additional information regarding copyright ownership.
fd9abdda70912b99b24e3bf1a38f26fde908a74cnd * The ASF licenses this file to You under the Apache License, Version 2.0
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor * (the "License"); you may not use this file except in compliance with
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor * the License. You may obtain a copy of the License at
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor *
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor * http://www.apache.org/licenses/LICENSE-2.0
96ad5d81ee4a2cc66a4ae19893efc8aa6d06fae7jailletc *
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor * Unless required by applicable law or agreed to in writing, software
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor * distributed under the License is distributed on an "AS IS" BASIS,
d29d9ab4614ff992b0e8de6e2b88d52b6f1f153erbowen * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2e545ce2450a9953665f701bb05350f0d3f26275nd * See the License for the specific language governing permissions and
d29d9ab4614ff992b0e8de6e2b88d52b6f1f153erbowen * limitations under the License.
d29d9ab4614ff992b0e8de6e2b88d52b6f1f153erbowen */
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor#include "mod_lua.h"
af33a4994ae2ff15bc67d19ff1a7feb906745bf8rbowen#include <string.h>
3f08db06526d6901aa08c110b5bc7dde6bc39905nd#include <stdlib.h>
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor#include <ctype.h>
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor#include "lua_apr.h"
3f08db06526d6901aa08c110b5bc7dde6bc39905nd#include "lua_config.h"
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor#include "apr_optional.h"
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor#include "mod_ssl.h"
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor#include "mod_auth.h"
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor#ifdef APR_HAS_THREADS
f086b4b402fa9a2fefc7dda85de2a3cc1cd0a654rjung#include "apr_thread_proc.h"
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor#endif
4a56677aad9b66a36f3dc9fddbca8dc1230ad471rbowen
4a56677aad9b66a36f3dc9fddbca8dc1230ad471rbowenAPR_IMPLEMENT_OPTIONAL_HOOK_RUN_ALL(ap_lua, AP_LUA, int, lua_open,
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor (lua_State *L, apr_pool_t *p),
3c13a815670b54d1c17bf02954f7d2b066cde95cnd (L, p), OK, DECLINED)
3c13a815670b54d1c17bf02954f7d2b066cde95cnd
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzorAPR_IMPLEMENT_OPTIONAL_HOOK_RUN_ALL(ap_lua, AP_LUA, int, lua_request,
3c13a815670b54d1c17bf02954f7d2b066cde95cnd (lua_State *L, request_rec *r),
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor (L, r), OK, DECLINED)
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzorstatic APR_OPTIONAL_FN_TYPE(ssl_var_lookup) *lua_ssl_val = NULL;
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzorstatic APR_OPTIONAL_FN_TYPE(ssl_is_https) *lua_ssl_is_https = NULL;
70f5253b24dd333c67fb6502d557a8b48ad3ba87igalic
70f5253b24dd333c67fb6502d557a8b48ad3ba87igalicmodule AP_MODULE_DECLARE_DATA lua_module;
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor#define AP_LUA_HOOK_FIRST (APR_HOOK_FIRST - 1)
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor#define AP_LUA_HOOK_LAST (APR_HOOK_LAST + 1)
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzortypedef struct {
30471a4650391f57975f60bbb6e4a90be7b284bfhumbedooh const char *name;
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor const char *file_name;
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor const char *function_name;
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor ap_lua_vm_spec *spec;
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor apr_array_header_t *args;
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor} lua_authz_provider_spec;
4aa603e6448b99f9371397d439795c91a93637eand
727872d18412fc021f03969b8641810d8896820bhumbedoohapr_hash_t *lua_authz_providers;
727872d18412fc021f03969b8641810d8896820bhumbedooh
727872d18412fc021f03969b8641810d8896820bhumbedooh
727872d18412fc021f03969b8641810d8896820bhumbedooh/**
4aa603e6448b99f9371397d439795c91a93637eand * error reporting if lua has an error.
727872d18412fc021f03969b8641810d8896820bhumbedooh * Extracts the error from lua stack and prints
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor */
3c13a815670b54d1c17bf02954f7d2b066cde95cndstatic void report_lua_error(lua_State *L, request_rec *r)
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor{
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor const char *lua_response;
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor r->status = HTTP_INTERNAL_SERVER_ERROR;
3c13a815670b54d1c17bf02954f7d2b066cde95cnd r->content_type = "text/html";
70f5253b24dd333c67fb6502d557a8b48ad3ba87igalic
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor ap_rputs("<b>Error!</b>\n", r);
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor ap_rputs("<p>", r);
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor lua_response = lua_tostring(L, -1);
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor ap_rputs(lua_response, r);
70f5253b24dd333c67fb6502d557a8b48ad3ba87igalic ap_rputs("</p>\n", r);
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor
70f5253b24dd333c67fb6502d557a8b48ad3ba87igalic ap_log_perror(APLOG_MARK, APLOG_WARNING, 0, r->pool, APLOGNO(01471) "Lua error: %s",
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor lua_response);
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor}
4aa603e6448b99f9371397d439795c91a93637eand
727872d18412fc021f03969b8641810d8896820bhumbedoohstatic void lua_open_callback(lua_State *L, apr_pool_t *p, void *ctx)
727872d18412fc021f03969b8641810d8896820bhumbedooh{
727872d18412fc021f03969b8641810d8896820bhumbedooh ap_lua_init(L, p);
727872d18412fc021f03969b8641810d8896820bhumbedooh ap_lua_load_apache2_lmodule(L);
4aa603e6448b99f9371397d439795c91a93637eand ap_lua_load_request_lmodule(L, p);
727872d18412fc021f03969b8641810d8896820bhumbedooh ap_lua_load_config_lmodule(L);
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor}
3c13a815670b54d1c17bf02954f7d2b066cde95cnd
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzorstatic int lua_open_hook(lua_State *L, apr_pool_t *p)
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor{
3c13a815670b54d1c17bf02954f7d2b066cde95cnd lua_open_callback(L, p, NULL);
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor return OK;
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor}
3c13a815670b54d1c17bf02954f7d2b066cde95cnd
70f5253b24dd333c67fb6502d557a8b48ad3ba87igalicstatic const char *scope_to_string(unsigned int scope)
70f5253b24dd333c67fb6502d557a8b48ad3ba87igalic{
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor switch (scope) {
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor case AP_LUA_SCOPE_ONCE:
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor case AP_LUA_SCOPE_UNSET:
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor return "once";
4aa603e6448b99f9371397d439795c91a93637eand case AP_LUA_SCOPE_REQUEST:
727872d18412fc021f03969b8641810d8896820bhumbedooh return "request";
727872d18412fc021f03969b8641810d8896820bhumbedooh case AP_LUA_SCOPE_CONN:
727872d18412fc021f03969b8641810d8896820bhumbedooh return "conn";
4aa603e6448b99f9371397d439795c91a93637eand#if APR_HAS_THREADS
727872d18412fc021f03969b8641810d8896820bhumbedooh case AP_LUA_SCOPE_THREAD:
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor return "thread";
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor#endif
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor default:
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor ap_assert(0);
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor }
70f5253b24dd333c67fb6502d557a8b48ad3ba87igalic}
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor
4aa603e6448b99f9371397d439795c91a93637eandstatic ap_lua_vm_spec *create_vm_spec(apr_pool_t **lifecycle_pool,
727872d18412fc021f03969b8641810d8896820bhumbedooh request_rec *r,
727872d18412fc021f03969b8641810d8896820bhumbedooh const ap_lua_dir_cfg *cfg,
727872d18412fc021f03969b8641810d8896820bhumbedooh const ap_lua_server_cfg *server_cfg,
727872d18412fc021f03969b8641810d8896820bhumbedooh const char *filename,
727872d18412fc021f03969b8641810d8896820bhumbedooh const char *bytecode,
727872d18412fc021f03969b8641810d8896820bhumbedooh apr_size_t bytecode_len,
4aa603e6448b99f9371397d439795c91a93637eand const char *function,
727872d18412fc021f03969b8641810d8896820bhumbedooh const char *what)
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor{
cd8142d105a47b208d863bea7cdb540727a5f02digalic apr_pool_t *pool;
70f5253b24dd333c67fb6502d557a8b48ad3ba87igalic ap_lua_vm_spec *spec = apr_pcalloc(r->pool, sizeof(ap_lua_vm_spec));
cd8142d105a47b208d863bea7cdb540727a5f02digalic
cd8142d105a47b208d863bea7cdb540727a5f02digalic spec->scope = cfg->vm_scope;
cd8142d105a47b208d863bea7cdb540727a5f02digalic spec->pool = r->pool;
cd8142d105a47b208d863bea7cdb540727a5f02digalic spec->package_paths = cfg->package_paths;
cd8142d105a47b208d863bea7cdb540727a5f02digalic spec->package_cpaths = cfg->package_cpaths;
cd8142d105a47b208d863bea7cdb540727a5f02digalic spec->cb = &lua_open_callback;
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor spec->cb_arg = NULL;
cd8142d105a47b208d863bea7cdb540727a5f02digalic spec->bytecode = bytecode;
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor spec->bytecode_len = bytecode_len;
cd8142d105a47b208d863bea7cdb540727a5f02digalic spec->codecache = (cfg->codecache == AP_LUA_CACHE_UNSET) ? AP_LUA_CACHE_STAT : cfg->codecache;
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor
cd8142d105a47b208d863bea7cdb540727a5f02digalic if (filename) {
cd8142d105a47b208d863bea7cdb540727a5f02digalic char *file;
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor apr_filepath_merge(&file, server_cfg->root_path,
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor filename, APR_FILEPATH_NOTRELATIVE, r->pool);
3c13a815670b54d1c17bf02954f7d2b066cde95cnd spec->file = file;
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor }
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor else {
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor spec->file = r->filename;
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor }
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor ap_log_rerror(APLOG_MARK, APLOG_TRACE2, 0, r, APLOGNO(02313)
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor "%s details: scope: %s, file: %s, func: %s",
3c13a815670b54d1c17bf02954f7d2b066cde95cnd what, scope_to_string(spec->scope), spec->file,
3c13a815670b54d1c17bf02954f7d2b066cde95cnd function ? function : "-");
3c13a815670b54d1c17bf02954f7d2b066cde95cnd
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor switch (spec->scope) {
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor case AP_LUA_SCOPE_ONCE:
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor case AP_LUA_SCOPE_UNSET:
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor apr_pool_create(&pool, r->pool);
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor break;
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor case AP_LUA_SCOPE_REQUEST:
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor pool = r->pool;
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor break;
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor case AP_LUA_SCOPE_CONN:
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor pool = r->connection->pool;
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor break;
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor#if APR_HAS_THREADS
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor case AP_LUA_SCOPE_THREAD:
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor pool = apr_thread_pool_get(r->connection->current_thread);
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor break;
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor#endif
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor default:
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor ap_assert(0);
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor }
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor
3c13a815670b54d1c17bf02954f7d2b066cde95cnd *lifecycle_pool = pool;
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor return spec;
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor}
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzorstatic const char* ap_lua_interpolate_string(apr_pool_t* pool, const char* string, const char** values)
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor{
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor char *stringBetween;
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor const char* ret;
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor int srclen,x,y;
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor srclen = strlen(string);
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor ret = "";
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor y = 0;
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor for (x=0; x < srclen; x++) {
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor if (string[x] == '$' && x != srclen-1 && string[x+1] >= '0' && string[x+1] <= '9') {
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor if (x-y > 0) {
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor stringBetween = apr_pstrndup(pool, string+y, x-y);
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor }
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor else stringBetween = "";
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor int v = atoi(apr_pstrndup(pool,string+x+1, 1));
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor ret = apr_psprintf(pool, "%s%s%s", ret, stringBetween, values[v]);
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor y = ++x;
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor }
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor }
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor if (x-y > 0 && y > 0) {
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor stringBetween = apr_pstrndup(pool, string+y+1, x-y);
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor ret = apr_psprintf(pool, "%s%s", ret, stringBetween);
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor }
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor else if (y==0) return string; /* If no replacement was made, just return the original str. */
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor return ret;
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor}
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor
f086b4b402fa9a2fefc7dda85de2a3cc1cd0a654rjung/**
727872d18412fc021f03969b8641810d8896820bhumbedooh * "main"
0d0ba3a410038e179b695446bb149cce6264e0abnd */
727872d18412fc021f03969b8641810d8896820bhumbedoohstatic int lua_handler(request_rec *r)
cc7e1025de9ac63bd4db6fe7f71c158b2cf09fe4humbedooh{
0d0ba3a410038e179b695446bb149cce6264e0abnd if (strcmp(r->handler, "lua-script")) {
cc7e1025de9ac63bd4db6fe7f71c158b2cf09fe4humbedooh return DECLINED;
727872d18412fc021f03969b8641810d8896820bhumbedooh }
0d0ba3a410038e179b695446bb149cce6264e0abnd ap_log_rerror(APLOG_MARK, APLOG_TRACE1, 0, r, APLOGNO(01472)
0d0ba3a410038e179b695446bb149cce6264e0abnd "handling [%s] in mod_lua", r->filename);
0d0ba3a410038e179b695446bb149cce6264e0abnd
ac082aefa89416cbdc9a1836eaf3bed9698201c8humbedooh /* XXX: This seems wrong because it may generate wrong headers for HEAD requests */
0d0ba3a410038e179b695446bb149cce6264e0abnd if (!r->header_only) {
0d0ba3a410038e179b695446bb149cce6264e0abnd lua_State *L;
0d0ba3a410038e179b695446bb149cce6264e0abnd apr_pool_t *pool;
727872d18412fc021f03969b8641810d8896820bhumbedooh const ap_lua_dir_cfg *cfg = ap_get_module_config(r->per_dir_config,
0d0ba3a410038e179b695446bb149cce6264e0abnd &lua_module);
0d0ba3a410038e179b695446bb149cce6264e0abnd ap_lua_vm_spec *spec = create_vm_spec(&pool, r, cfg, NULL, NULL, NULL,
30471a4650391f57975f60bbb6e4a90be7b284bfhumbedooh 0, "handle", "request handler");
205f749042ed530040a4f0080dbcb47ceae8a374rjung
af33a4994ae2ff15bc67d19ff1a7feb906745bf8rbowen L = ap_lua_get_lua_state(pool, spec, r);
0d0ba3a410038e179b695446bb149cce6264e0abnd if (!L) {
7fec19672a491661b2fe4b29f685bc7f4efa64d4nd /* TODO annotate spec with failure reason */
7fec19672a491661b2fe4b29f685bc7f4efa64d4nd r->status = HTTP_INTERNAL_SERVER_ERROR;
7fec19672a491661b2fe4b29f685bc7f4efa64d4nd ap_rputs("Unable to compile VM, see logs", r);
cac3c497ee99fac7d83f6e8bd05cb72eaaf95d8fgryzor return HTTP_INTERNAL_SERVER_ERROR;
}
ap_log_rerror(APLOG_MARK, APLOG_TRACE3, 0, r, APLOGNO(01474) "got a vm!");
lua_getglobal(L, "handle");
if (!lua_isfunction(L, -1)) {
ap_log_rerror(APLOG_MARK, APLOG_CRIT, 0, r, APLOGNO(01475)
"lua: Unable to find function %s in %s",
"handle",
spec->file);
return HTTP_INTERNAL_SERVER_ERROR;
}
ap_lua_run_lua_request(L, r);
if (lua_pcall(L, 1, 0, 0)) {
report_lua_error(L, r);
}
}
return OK;
}
/* ---------------- Configury stuff --------------- */
/** harnesses for magic hooks **/
static int lua_request_rec_hook_harness(request_rec *r, const char *name, int apr_hook_when)
{
int rc;
apr_pool_t *pool;
lua_State *L;
ap_lua_vm_spec *spec;
ap_lua_server_cfg *server_cfg = ap_get_module_config(r->server->module_config,
&lua_module);
const ap_lua_dir_cfg *cfg = ap_get_module_config(r->per_dir_config,
&lua_module);
const char *key = apr_psprintf(r->pool, "%s_%d", name, apr_hook_when);
apr_array_header_t *hook_specs = apr_hash_get(cfg->hooks, key,
APR_HASH_KEY_STRING);
if (hook_specs) {
int i;
for (i = 0; i < hook_specs->nelts; i++) {
ap_lua_mapped_handler_spec *hook_spec =
((ap_lua_mapped_handler_spec **) hook_specs->elts)[i];
if (hook_spec == NULL) {
continue;
}
spec = create_vm_spec(&pool, r, cfg, server_cfg,
hook_spec->file_name,
hook_spec->bytecode,
hook_spec->bytecode_len,
hook_spec->function_name,
"request hook");
L = ap_lua_get_lua_state(pool, spec, r);
if (!L) {
ap_log_rerror(APLOG_MARK, APLOG_CRIT, 0, r, APLOGNO(01477)
"lua: Failed to obtain lua interpreter for %s %s",
hook_spec->function_name, hook_spec->file_name);
return HTTP_INTERNAL_SERVER_ERROR;
}
if (hook_spec->function_name != NULL) {
lua_getglobal(L, hook_spec->function_name);
if (!lua_isfunction(L, -1)) {
ap_log_rerror(APLOG_MARK, APLOG_CRIT, 0, r, APLOGNO(01478)
"lua: Unable to find function %s in %s",
hook_spec->function_name,
hook_spec->file_name);
return HTTP_INTERNAL_SERVER_ERROR;
}
ap_lua_run_lua_request(L, r);
}
else {
int t;
ap_lua_run_lua_request(L, r);
t = lua_gettop(L);
lua_setglobal(L, "r");
lua_settop(L, t);
}
if (lua_pcall(L, 1, 1, 0)) {
report_lua_error(L, r);
return HTTP_INTERNAL_SERVER_ERROR;
}
rc = DECLINED;
if (lua_isnumber(L, -1)) {
rc = lua_tointeger(L, -1);
}
if (rc != DECLINED) {
return rc;
}
}
}
return DECLINED;
}
static int lua_map_handler(request_rec *r)
{
int rc, n = 0;
apr_pool_t *pool;
lua_State *L;
const char *filename, *function_name;
const char *values[10];
ap_lua_vm_spec *spec;
ap_regmatch_t match[10];
ap_lua_server_cfg *server_cfg = ap_get_module_config(r->server->module_config,
&lua_module);
const ap_lua_dir_cfg *cfg = ap_get_module_config(r->per_dir_config,
&lua_module);
for (n = 0; n < cfg->mapped_handlers->nelts; n++) {
ap_lua_mapped_handler_spec *hook_spec =
((ap_lua_mapped_handler_spec **) cfg->mapped_handlers->elts)[n];
if (hook_spec == NULL) {
continue;
}
if (!ap_regexec(hook_spec->uri_pattern, r->uri, 10, match, 0)) {
int i;
for (i=0;i<10;i++) {
if (match[i].rm_eo >= 0) {
values[i] = apr_pstrndup(r->pool, r->uri+match[i].rm_so, match[i].rm_eo - match[i].rm_so);
}
else values[i] = "";
}
filename = ap_lua_interpolate_string(r->pool, hook_spec->file_name, values);
function_name = ap_lua_interpolate_string(r->pool, hook_spec->function_name, values);
spec = create_vm_spec(&pool, r, cfg, server_cfg,
filename,
hook_spec->bytecode,
hook_spec->bytecode_len,
function_name,
"mapped handler");
L = ap_lua_get_lua_state(pool, spec, r);
if (!L) {
ap_log_rerror(APLOG_MARK, APLOG_CRIT, 0, r, APLOGNO(01477)
"lua: Failed to obtain lua interpreter for %s %s",
function_name, filename);
return HTTP_INTERNAL_SERVER_ERROR;
}
if (function_name != NULL) {
lua_getglobal(L, function_name);
if (!lua_isfunction(L, -1)) {
ap_log_rerror(APLOG_MARK, APLOG_CRIT, 0, r, APLOGNO(01478)
"lua: Unable to find function %s in %s",
function_name,
filename);
return HTTP_INTERNAL_SERVER_ERROR;
}
ap_lua_run_lua_request(L, r);
}
else {
int t;
ap_lua_run_lua_request(L, r);
t = lua_gettop(L);
lua_setglobal(L, "r");
lua_settop(L, t);
}
if (lua_pcall(L, 1, 1, 0)) {
report_lua_error(L, r);
return HTTP_INTERNAL_SERVER_ERROR;
}
rc = DECLINED;
if (lua_isnumber(L, -1)) {
rc = lua_tointeger(L, -1);
}
if (rc != DECLINED) {
return rc;
}
}
}
return DECLINED;
}
static apr_size_t config_getstr(ap_configfile_t *cfg, char *buf,
size_t bufsiz)
{
apr_size_t i = 0;
if (cfg->getstr) {
apr_status_t rc = (cfg->getstr) (buf, bufsiz, cfg->param);
if (rc == APR_SUCCESS) {
i = strlen(buf);
if (i && buf[i - 1] == '\n')
++cfg->line_number;
}
else {
buf[0] = '\0';
i = 0;
}
}
else {
while (i < bufsiz) {
char ch;
apr_status_t rc = (cfg->getch) (&ch, cfg->param);
if (rc != APR_SUCCESS)
break;
buf[i++] = ch;
if (ch == '\n') {
++cfg->line_number;
break;
}
}
}
return i;
}
typedef struct cr_ctx
{
cmd_parms *cmd;
ap_configfile_t *cfp;
size_t startline;
const char *endstr;
char buf[HUGE_STRING_LEN];
} cr_ctx;
/* Okay, this deserves a little explaination -- in order for the errors that lua
* generates to be 'accuarate', including line numbers, we basically inject
* N line number new lines into the 'top' of the chunk reader.....
*
* be happy. this is cool.
*
*/
static const char *lf =
"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n";
#define N_LF 32
static const char *direct_chunkreader(lua_State *lvm, void *udata,
size_t *plen)
{
const char *p;
struct cr_ctx *ctx = udata;
if (ctx->startline) {
*plen = ctx->startline > N_LF ? N_LF : ctx->startline;
ctx->startline -= *plen;
return lf;
}
*plen = config_getstr(ctx->cfp, ctx->buf, HUGE_STRING_LEN);
for (p = ctx->buf; isspace(*p); ++p);
if (p[0] == '<' && p[1] == '/') {
apr_size_t i = 0;
while (i < strlen(ctx->endstr)) {
if (tolower(p[i + 2]) != ctx->endstr[i])
return ctx->buf;
++i;
}
*plen = 0;
return NULL;
}
/*fprintf(stderr, "buf read: %s\n", ctx->buf); */
return ctx->buf;
}
static int ldump_writer(lua_State *L, const void *b, size_t size, void *B)
{
(void) L;
luaL_addlstring((luaL_Buffer *) B, (const char *) b, size);
return 0;
}
typedef struct hack_section_baton
{
const char *name;
ap_lua_mapped_handler_spec *spec;
int apr_hook_when;
} hack_section_baton;
/* You can be unhappy now.
*
* This is uncool.
*
* When you create a <Section handler in httpd, the only 'easy' way to create
* a directory context is to parse the section, and convert it into a 'normal'
* Configureation option, and then collapse the entire section, in memory,
* back into the parent section -- from which you can then get the new directive
* invoked.... anyways. evil. Rici taught me how to do this hack :-)
*/
static const char *hack_section_handler(cmd_parms *cmd, void *_cfg,
const char *arg)
{
ap_lua_dir_cfg *cfg = (ap_lua_dir_cfg *) _cfg;
ap_directive_t *directive = cmd->directive;
hack_section_baton *baton = directive->data;
const char *key = apr_psprintf(cmd->pool, "%s_%d", baton->name, baton->apr_hook_when);
apr_array_header_t *hook_specs = apr_hash_get(cfg->hooks, key,
APR_HASH_KEY_STRING);
if (!hook_specs) {
hook_specs = apr_array_make(cmd->pool, 2,
sizeof(ap_lua_mapped_handler_spec *));
apr_hash_set(cfg->hooks, key,
APR_HASH_KEY_STRING, hook_specs);
}
baton->spec->scope = cfg->vm_scope;
*(ap_lua_mapped_handler_spec **) apr_array_push(hook_specs) = baton->spec;
return NULL;
}
static const char *register_named_block_function_hook(const char *name,
cmd_parms *cmd,
void *mconfig,
const char *line)
{
const char *function = NULL;
ap_lua_mapped_handler_spec *spec;
int when = APR_HOOK_MIDDLE;
const char *endp = ap_strrchr_c(line, '>');
if (endp == NULL) {
return apr_pstrcat(cmd->pool, cmd->cmd->name,
"> directive missing closing '>'", NULL);
}
line = apr_pstrndup(cmd->temp_pool, line, endp - line);
if (line[0]) {
const char *word;
word = ap_getword_conf(cmd->temp_pool, &line);
if (word && *word) {
function = apr_pstrdup(cmd->pool, word);
}
word = ap_getword_conf(cmd->temp_pool, &line);
if (word && *word) {
if (!strcasecmp("early", word)) {
when = AP_LUA_HOOK_FIRST;
}
else if (!strcasecmp("late", word)) {
when = AP_LUA_HOOK_LAST;
}
else {
return apr_pstrcat(cmd->pool, cmd->cmd->name,
"> 2nd argument must be 'early' or 'late'", NULL);
}
}
}
spec = apr_pcalloc(cmd->pool, sizeof(ap_lua_mapped_handler_spec));
{
cr_ctx ctx;
lua_State *lvm;
char *tmp;
int rv;
ap_directive_t **current;
hack_section_baton *baton;
spec->file_name = apr_psprintf(cmd->pool, "%s:%u",
cmd->config_file->name,
cmd->config_file->line_number);
if (function) {
spec->function_name = (char *) function;
}
else {
function = NULL;
}
ctx.cmd = cmd;
tmp = apr_pstrdup(cmd->pool, cmd->err_directive->directive + 1);
ap_str_tolower(tmp);
ctx.endstr = tmp;
ctx.cfp = cmd->config_file;
ctx.startline = cmd->config_file->line_number;
/* This lua State is used only to compile the input strings -> bytecode, so we don't need anything extra. */
lvm = luaL_newstate();
lua_settop(lvm, 0);
rv = lua_load(lvm, direct_chunkreader, &ctx, spec->file_name);
if (rv != 0) {
const char *errstr = apr_pstrcat(cmd->pool, "Lua Error:",
lua_tostring(lvm, -1), NULL);
lua_close(lvm);
return errstr;
}
else {
luaL_Buffer b;
luaL_buffinit(lvm, &b);
lua_dump(lvm, ldump_writer, &b);
luaL_pushresult(&b);
spec->bytecode_len = lua_strlen(lvm, -1);
spec->bytecode = apr_pstrmemdup(cmd->pool, lua_tostring(lvm, -1),
spec->bytecode_len);
lua_close(lvm);
}
current = mconfig;
/* Here, we have to replace our current config node for the next pass */
if (!*current) {
*current = apr_pcalloc(cmd->pool, sizeof(**current));
}
baton = apr_pcalloc(cmd->pool, sizeof(hack_section_baton));
baton->name = name;
baton->spec = spec;
baton->apr_hook_when = when;
(*current)->filename = cmd->config_file->name;
(*current)->line_num = cmd->config_file->line_number;
(*current)->directive = apr_pstrdup(cmd->pool, "Lua_____ByteCodeHack");
(*current)->args = NULL;
(*current)->data = baton;
}
return NULL;
}
static const char *register_named_file_function_hook(const char *name,
cmd_parms *cmd,
void *_cfg,
const char *file,
const char *function,
int apr_hook_when)
{
ap_lua_mapped_handler_spec *spec;
ap_lua_dir_cfg *cfg = (ap_lua_dir_cfg *) _cfg;
const char *key = apr_psprintf(cmd->pool, "%s_%d", name, apr_hook_when);
apr_array_header_t *hook_specs = apr_hash_get(cfg->hooks, key,
APR_HASH_KEY_STRING);
if (!hook_specs) {
hook_specs = apr_array_make(cmd->pool, 2,
sizeof(ap_lua_mapped_handler_spec *));
apr_hash_set(cfg->hooks, key, APR_HASH_KEY_STRING, hook_specs);
}
spec = apr_pcalloc(cmd->pool, sizeof(ap_lua_mapped_handler_spec));
spec->file_name = apr_pstrdup(cmd->pool, file);
spec->function_name = apr_pstrdup(cmd->pool, function);
spec->scope = cfg->vm_scope;
*(ap_lua_mapped_handler_spec **) apr_array_push(hook_specs) = spec;
return NULL;
}
static const char *register_mapped_file_function_hook(const char *pattern,
cmd_parms *cmd,
void *_cfg,
const char *file,
const char *function)
{
ap_lua_mapped_handler_spec *spec;
ap_lua_dir_cfg *cfg = (ap_lua_dir_cfg *) _cfg;
ap_regex_t *regex = apr_pcalloc(cmd->pool, sizeof(ap_regex_t));
if (ap_regcomp(regex, pattern,0)) {
return "Invalid regex pattern!";
}
spec = apr_pcalloc(cmd->pool, sizeof(ap_lua_mapped_handler_spec));
spec->file_name = apr_pstrdup(cmd->pool, file);
spec->function_name = apr_pstrdup(cmd->pool, function);
spec->scope = cfg->vm_scope;
spec->uri_pattern = regex;
*(ap_lua_mapped_handler_spec **) apr_array_push(cfg->mapped_handlers) = spec;
return NULL;
}
static int lua_check_user_id_harness_first(request_rec *r)
{
return lua_request_rec_hook_harness(r, "check_user_id", AP_LUA_HOOK_FIRST);
}
static int lua_check_user_id_harness(request_rec *r)
{
return lua_request_rec_hook_harness(r, "check_user_id", APR_HOOK_MIDDLE);
}
static int lua_check_user_id_harness_last(request_rec *r)
{
return lua_request_rec_hook_harness(r, "check_user_id", AP_LUA_HOOK_LAST);
}
static int lua_translate_name_harness_first(request_rec *r)
{
return lua_request_rec_hook_harness(r, "translate_name", AP_LUA_HOOK_FIRST);
}
static int lua_translate_name_harness(request_rec *r)
{
return lua_request_rec_hook_harness(r, "translate_name", APR_HOOK_MIDDLE);
}
static int lua_translate_name_harness_last(request_rec *r)
{
return lua_request_rec_hook_harness(r, "translate_name", AP_LUA_HOOK_LAST);
}
static int lua_fixup_harness(request_rec *r)
{
return lua_request_rec_hook_harness(r, "fixups", APR_HOOK_MIDDLE);
}
static int lua_map_to_storage_harness(request_rec *r)
{
return lua_request_rec_hook_harness(r, "map_to_storage", APR_HOOK_MIDDLE);
}
static int lua_type_checker_harness(request_rec *r)
{
return lua_request_rec_hook_harness(r, "type_checker", APR_HOOK_MIDDLE);
}
static int lua_access_checker_harness_first(request_rec *r)
{
return lua_request_rec_hook_harness(r, "access_checker", AP_LUA_HOOK_FIRST);
}
static int lua_access_checker_harness(request_rec *r)
{
return lua_request_rec_hook_harness(r, "access_checker", APR_HOOK_MIDDLE);
}
static int lua_access_checker_harness_last(request_rec *r)
{
return lua_request_rec_hook_harness(r, "access_checker", AP_LUA_HOOK_LAST);
}
static int lua_auth_checker_harness_first(request_rec *r)
{
return lua_request_rec_hook_harness(r, "auth_checker", AP_LUA_HOOK_FIRST);
}
static int lua_auth_checker_harness(request_rec *r)
{
return lua_request_rec_hook_harness(r, "auth_checker", APR_HOOK_MIDDLE);
}
static int lua_auth_checker_harness_last(request_rec *r)
{
return lua_request_rec_hook_harness(r, "auth_checker", AP_LUA_HOOK_LAST);
}
static void lua_insert_filter_harness(request_rec *r)
{
/* ap_log_rerror(APLOG_MARK, APLOG_WARNING, 0, r, "LuaHookInsertFilter not yet implemented"); */
}
static int lua_quick_harness(request_rec *r, int lookup)
{
if (lookup) {
return DECLINED;
}
return lua_request_rec_hook_harness(r, "quick", APR_HOOK_MIDDLE);
}
static const char *register_translate_name_hook(cmd_parms *cmd, void *_cfg,
const char *file,
const char *function,
const char *when)
{
const char *err = ap_check_cmd_context(cmd, NOT_IN_DIRECTORY|NOT_IN_FILES|
NOT_IN_HTACCESS);
int apr_hook_when = APR_HOOK_MIDDLE;
if (err) {
return err;
}
if (when) {
if (!strcasecmp(when, "early")) {
apr_hook_when = AP_LUA_HOOK_FIRST;
}
else if (!strcasecmp(when, "late")) {
apr_hook_when = AP_LUA_HOOK_LAST;
}
else {
return "Third argument must be 'early' or 'late'";
}
}
return register_named_file_function_hook("translate_name", cmd, _cfg,
file, function, apr_hook_when);
}
static const char *register_translate_name_block(cmd_parms *cmd, void *_cfg,
const char *line)
{
return register_named_block_function_hook("translate_name", cmd, _cfg,
line);
}
static const char *register_fixups_hook(cmd_parms *cmd, void *_cfg,
const char *file,
const char *function)
{
return register_named_file_function_hook("fixups", cmd, _cfg, file,
function, APR_HOOK_MIDDLE);
}
static const char *register_fixups_block(cmd_parms *cmd, void *_cfg,
const char *line)
{
return register_named_block_function_hook("fixups", cmd, _cfg, line);
}
static const char *register_map_to_storage_hook(cmd_parms *cmd, void *_cfg,
const char *file,
const char *function)
{
return register_named_file_function_hook("map_to_storage", cmd, _cfg,
file, function, APR_HOOK_MIDDLE);
}
static const char *register_map_to_storage_block(cmd_parms *cmd, void *_cfg,
const char *line)
{
return register_named_block_function_hook("map_to_storage", cmd, _cfg,
line);
}
static const char *register_check_user_id_hook(cmd_parms *cmd, void *_cfg,
const char *file,
const char *function,
const char *when)
{
int apr_hook_when = APR_HOOK_MIDDLE;
if (when) {
if (!strcasecmp(when, "early")) {
apr_hook_when = AP_LUA_HOOK_FIRST;
}
else if (!strcasecmp(when, "late")) {
apr_hook_when = AP_LUA_HOOK_LAST;
}
else {
return "Third argument must be 'early' or 'late'";
}
}
return register_named_file_function_hook("check_user_id", cmd, _cfg, file,
function, apr_hook_when);
}
static const char *register_check_user_id_block(cmd_parms *cmd, void *_cfg,
const char *line)
{
return register_named_block_function_hook("check_user_id", cmd, _cfg,
line);
}
static const char *register_type_checker_hook(cmd_parms *cmd, void *_cfg,
const char *file,
const char *function)
{
return register_named_file_function_hook("type_checker", cmd, _cfg, file,
function, APR_HOOK_MIDDLE);
}
static const char *register_type_checker_block(cmd_parms *cmd, void *_cfg,
const char *line)
{
return register_named_block_function_hook("type_checker", cmd, _cfg,
line);
}
static const char *register_access_checker_hook(cmd_parms *cmd, void *_cfg,
const char *file,
const char *function,
const char *when)
{
int apr_hook_when = APR_HOOK_MIDDLE;
if (when) {
if (!strcasecmp(when, "early")) {
apr_hook_when = AP_LUA_HOOK_FIRST;
}
else if (!strcasecmp(when, "late")) {
apr_hook_when = AP_LUA_HOOK_LAST;
}
else {
return "Third argument must be 'early' or 'late'";
}
}
return register_named_file_function_hook("access_checker", cmd, _cfg,
file, function, apr_hook_when);
}
static const char *register_access_checker_block(cmd_parms *cmd, void *_cfg,
const char *line)
{
return register_named_block_function_hook("access_checker", cmd, _cfg,
line);
}
static const char *register_auth_checker_hook(cmd_parms *cmd, void *_cfg,
const char *file,
const char *function,
const char *when)
{
int apr_hook_when = APR_HOOK_MIDDLE;
if (when) {
if (!strcasecmp(when, "early")) {
apr_hook_when = AP_LUA_HOOK_FIRST;
}
else if (!strcasecmp(when, "late")) {
apr_hook_when = AP_LUA_HOOK_LAST;
}
else {
return "Third argument must be 'early' or 'late'";
}
}
return register_named_file_function_hook("auth_checker", cmd, _cfg, file,
function, apr_hook_when);
}
static const char *register_auth_checker_block(cmd_parms *cmd, void *_cfg,
const char *line)
{
return register_named_block_function_hook("auth_checker", cmd, _cfg,
line);
}
static const char *register_insert_filter_hook(cmd_parms *cmd, void *_cfg,
const char *file,
const char *function)
{
return "LuaHookInsertFilter not yet implemented";
}
static const char *register_quick_hook(cmd_parms *cmd, void *_cfg,
const char *file, const char *function)
{
const char *err = ap_check_cmd_context(cmd, NOT_IN_DIRECTORY|NOT_IN_FILES|
NOT_IN_HTACCESS);
if (err) {
return err;
}
return register_named_file_function_hook("quick", cmd, _cfg, file,
function, APR_HOOK_MIDDLE);
}
static const char *register_map_handler(cmd_parms *cmd, void *_cfg,
const char* match, const char *file, const char *function)
{
const char *err = ap_check_cmd_context(cmd, NOT_IN_DIRECTORY|NOT_IN_FILES|
NOT_IN_HTACCESS);
if (err) {
return err;
}
if (!function) function = "handle";
return register_mapped_file_function_hook(match, cmd, _cfg, file,
function);
}
static const char *register_quick_block(cmd_parms *cmd, void *_cfg,
const char *line)
{
return register_named_block_function_hook("quick", cmd, _cfg,
line);
}
static const char *register_package_helper(cmd_parms *cmd,
const char *arg,
apr_array_header_t *dir_array)
{
apr_status_t rv;
ap_lua_server_cfg *server_cfg =
ap_get_module_config(cmd->server->module_config, &lua_module);
char *fixed_filename;
rv = apr_filepath_merge(&fixed_filename,
server_cfg->root_path,
arg,
APR_FILEPATH_NOTRELATIVE,
cmd->pool);
if (rv != APR_SUCCESS) {
return apr_psprintf(cmd->pool,
"Unable to build full path to file, %s", arg);
}
*(const char **) apr_array_push(dir_array) = fixed_filename;
return NULL;
}
/**
* Called for config directive which looks like
* LuaPackagePath /lua/package/path/mapped/thing/like/this/?.lua
*/
static const char *register_package_dir(cmd_parms *cmd, void *_cfg,
const char *arg)
{
ap_lua_dir_cfg *cfg = (ap_lua_dir_cfg *) _cfg;
return register_package_helper(cmd, arg, cfg->package_paths);
}
/**
* Called for config directive which looks like
* LuaPackageCPath /lua/package/path/mapped/thing/like/this/?.so
*/
static const char *register_package_cdir(cmd_parms *cmd,
void *_cfg,
const char *arg)
{
ap_lua_dir_cfg *cfg = (ap_lua_dir_cfg *) _cfg;
return register_package_helper(cmd, arg, cfg->package_cpaths);
}
static const char *register_lua_inherit(cmd_parms *cmd,
void *_cfg,
const char *arg)
{
ap_lua_dir_cfg *cfg = (ap_lua_dir_cfg *) _cfg;
if (strcasecmp("none", arg) == 0) {
cfg->inherit = AP_LUA_INHERIT_NONE;
}
else if (strcasecmp("parent-first", arg) == 0) {
cfg->inherit = AP_LUA_INHERIT_PARENT_FIRST;
}
else if (strcasecmp("parent-last", arg) == 0) {
cfg->inherit = AP_LUA_INHERIT_PARENT_LAST;
}
else {
return apr_psprintf(cmd->pool,
"LuaInherit type of '%s' not recognized, valid "
"options are 'none', 'parent-first', and 'parent-last'",
arg);
}
return NULL;
}
static const char *register_lua_codecache(cmd_parms *cmd,
void *_cfg,
const char *arg)
{
ap_lua_dir_cfg *cfg = (ap_lua_dir_cfg *) _cfg;
if (strcasecmp("never", arg) == 0) {
cfg->codecache = AP_LUA_CACHE_NEVER;
}
else if (strcasecmp("stat", arg) == 0) {
cfg->codecache = AP_LUA_CACHE_STAT;
}
else if (strcasecmp("forever", arg) == 0) {
cfg->codecache = AP_LUA_CACHE_FOREVER;
}
else {
return apr_psprintf(cmd->pool,
"LuaCodeCache type of '%s' not recognized, valid "
"options are 'never', 'stat', and 'forever'",
arg);
}
return NULL;
}
static const char *register_lua_scope(cmd_parms *cmd,
void *_cfg,
const char *scope,
const char *min,
const char *max)
{
ap_lua_dir_cfg *cfg = (ap_lua_dir_cfg *) _cfg;
if (strcmp("once", scope) == 0) {
cfg->vm_scope = AP_LUA_SCOPE_ONCE;
}
else if (strcmp("request", scope) == 0) {
cfg->vm_scope = AP_LUA_SCOPE_REQUEST;
}
else if (strcmp("conn", scope) == 0) {
cfg->vm_scope = AP_LUA_SCOPE_CONN;
}
else if (strcmp("thread", scope) == 0) {
#if !APR_HAS_THREADS
return apr_psprintf(cmd->pool,
"Scope type of '%s' cannot be used because this "
"server does not have threading support "
"(APR_HAS_THREADS)"
scope);
#endif
cfg->vm_scope = AP_LUA_SCOPE_THREAD;
}
else {
return apr_psprintf(cmd->pool,
"Invalid value for LuaScope, '%s', acceptable "
"values are: 'once', 'request', 'conn', 'server'"
#if APR_HAS_THREADS
", 'thread'"
#endif
,scope);
}
return NULL;
}
static const char *register_lua_root(cmd_parms *cmd, void *_cfg,
const char *root)
{
/* ap_lua_dir_cfg* cfg = (ap_lua_dir_cfg*)_cfg; */
ap_lua_server_cfg *cfg = ap_get_module_config(cmd->server->module_config,
&lua_module);
cfg->root_path = root;
return NULL;
}
AP_LUA_DECLARE(const char *) ap_lua_ssl_val(apr_pool_t *p, server_rec *s, conn_rec *c, request_rec *r, const char *var)
{
if (lua_ssl_val) {
return (const char *)lua_ssl_val(p, s, c, r, (char *)var);
}
return NULL;
}
AP_LUA_DECLARE(int) ap_lua_ssl_is_https(conn_rec *c)
{
return lua_ssl_is_https ? lua_ssl_is_https(c) : 0;
}
/*******************************/
static const char *lua_authz_parse(cmd_parms *cmd, const char *require_line,
const void **parsed_require_line)
{
const char *provider_name;
lua_authz_provider_spec *spec;
provider_name = (const char*) ap_getword(cmd->temp_pool, &cmd->directive->args, ' ');
ap_assert(provider_name != NULL);
spec = apr_hash_get(lua_authz_providers, provider_name, APR_HASH_KEY_STRING);
ap_assert(spec != NULL);
if (require_line && *require_line) {
const char *arg;
spec->args = apr_array_make(cmd->pool, 2, sizeof(const char *));
while ((arg = ap_getword_conf(cmd->pool, &require_line)) && *arg) {
APR_ARRAY_PUSH(spec->args, const char *) = arg;
}
}
*parsed_require_line = spec;
return NULL;
}
static authz_status lua_authz_check(request_rec *r, const char *require_line,
const void *parsed_require_line)
{
apr_pool_t *pool;
ap_lua_vm_spec *spec;
lua_State *L;
ap_lua_server_cfg *server_cfg = ap_get_module_config(r->server->module_config,
&lua_module);
const ap_lua_dir_cfg *cfg = ap_get_module_config(r->per_dir_config,
&lua_module);
const lua_authz_provider_spec *prov_spec = parsed_require_line;
int result;
int nargs = 0;
spec = create_vm_spec(&pool, r, cfg, server_cfg, prov_spec->file_name,
NULL, 0, prov_spec->function_name, "authz provider");
L = ap_lua_get_lua_state(pool, spec, r);
if (L == NULL) {
ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(02314)
"Unable to compile VM for authz provider %s", prov_spec->name);
return AUTHZ_GENERAL_ERROR;
}
lua_getglobal(L, prov_spec->function_name);
if (!lua_isfunction(L, -1)) {
ap_log_rerror(APLOG_MARK, APLOG_CRIT, 0, r, APLOGNO(02319)
"Unable to find function %s in %s",
prov_spec->function_name, prov_spec->file_name);
return AUTHZ_GENERAL_ERROR;
}
ap_lua_run_lua_request(L, r);
if (prov_spec->args) {
int i;
if (!lua_checkstack(L, prov_spec->args->nelts)) {
ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(02315)
"Error: authz provider %s: too many arguments", prov_spec->name);
return AUTHZ_GENERAL_ERROR;
}
for (i = 0; i < prov_spec->args->nelts; i++) {
const char *arg = APR_ARRAY_IDX(prov_spec->args, i, const char *);
lua_pushstring(L, arg);
}
nargs = prov_spec->args->nelts;
}
if (lua_pcall(L, 1 + nargs, 1, 0)) {
const char *err = lua_tostring(L, -1);
ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(02316)
"Error executing authz provider %s: %s", prov_spec->name, err);
return AUTHZ_GENERAL_ERROR;
}
if (!lua_isnumber(L, -1)) {
ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(02317)
"Error: authz provider %s did not return integer", prov_spec->name);
return AUTHZ_GENERAL_ERROR;
}
result = lua_tointeger(L, -1);
switch (result) {
case AUTHZ_DENIED:
case AUTHZ_GRANTED:
case AUTHZ_NEUTRAL:
case AUTHZ_GENERAL_ERROR:
case AUTHZ_DENIED_NO_USER:
return result;
default:
ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(02318)
"Error: authz provider %s: invalid return value %d",
prov_spec->name, result);
}
return AUTHZ_GENERAL_ERROR;
}
static const authz_provider lua_authz_provider =
{
&lua_authz_check,
&lua_authz_parse,
};
static const char *register_authz_provider(cmd_parms *cmd, void *_cfg,
const char *name, const char *file,
const char *function)
{
lua_authz_provider_spec *spec;
const char *err = ap_check_cmd_context(cmd, NOT_IN_DIR_LOC_FILE);
if (err)
return err;
spec = apr_pcalloc(cmd->pool, sizeof(*spec));
spec->name = name;
spec->file_name = file;
spec->function_name = function;
apr_hash_set(lua_authz_providers, name, APR_HASH_KEY_STRING, spec);
ap_register_auth_provider(cmd->pool, AUTHZ_PROVIDER_GROUP, name,
AUTHZ_PROVIDER_VERSION,
&lua_authz_provider,
AP_AUTH_INTERNAL_PER_CONF);
return NULL;
}
command_rec lua_commands[] = {
AP_INIT_TAKE1("LuaRoot", register_lua_root, NULL, OR_ALL,
"Specify the base path for resolving relative paths for mod_lua directives"),
AP_INIT_TAKE1("LuaPackagePath", register_package_dir, NULL, OR_ALL,
"Add a directory to lua's package.path"),
AP_INIT_TAKE1("LuaPackageCPath", register_package_cdir, NULL, OR_ALL,
"Add a directory to lua's package.cpath"),
AP_INIT_TAKE3("LuaAuthzProvider", register_authz_provider, NULL, RSRC_CONF|EXEC_ON_READ,
"Provide an authorization provider"),
AP_INIT_TAKE23("LuaHookTranslateName", register_translate_name_hook, NULL,
OR_ALL,
"Provide a hook for the translate name phase of request processing"),
AP_INIT_RAW_ARGS("<LuaHookTranslateName", register_translate_name_block,
NULL,
EXEC_ON_READ | OR_ALL,
"Provide a hook for the translate name phase of request processing"),
AP_INIT_TAKE2("LuaHookFixups", register_fixups_hook, NULL, OR_ALL,
"Provide a hook for the fixups phase of request processing"),
AP_INIT_RAW_ARGS("<LuaHookFixups", register_fixups_block, NULL,
EXEC_ON_READ | OR_ALL,
"Provide a inline hook for the fixups phase of request processing"),
/* todo: test */
AP_INIT_TAKE2("LuaHookMapToStorage", register_map_to_storage_hook, NULL,
OR_ALL,
"Provide a hook for the map_to_storage phase of request processing"),
AP_INIT_RAW_ARGS("<LuaHookMapToStorage", register_map_to_storage_block,
NULL,
EXEC_ON_READ | OR_ALL,
"Provide a hook for the map_to_storage phase of request processing"),
/* todo: test */
AP_INIT_TAKE23("LuaHookCheckUserID", register_check_user_id_hook, NULL,
OR_ALL,
"Provide a hook for the check_user_id phase of request processing"),
AP_INIT_RAW_ARGS("<LuaHookCheckUserID", register_check_user_id_block,
NULL,
EXEC_ON_READ | OR_ALL,
"Provide a hook for the check_user_id phase of request processing"),
/* todo: test */
AP_INIT_TAKE2("LuaHookTypeChecker", register_type_checker_hook, NULL,
OR_ALL,
"Provide a hook for the type_checker phase of request processing"),
AP_INIT_RAW_ARGS("<LuaHookTypeChecker", register_type_checker_block, NULL,
EXEC_ON_READ | OR_ALL,
"Provide a hook for the type_checker phase of request processing"),
/* todo: test */
AP_INIT_TAKE23("LuaHookAccessChecker", register_access_checker_hook, NULL,
OR_ALL,
"Provide a hook for the access_checker phase of request processing"),
AP_INIT_RAW_ARGS("<LuaHookAccessChecker", register_access_checker_block,
NULL,
EXEC_ON_READ | OR_ALL,
"Provide a hook for the access_checker phase of request processing"),
/* todo: test */
AP_INIT_TAKE23("LuaHookAuthChecker", register_auth_checker_hook, NULL,
OR_ALL,
"Provide a hook for the auth_checker phase of request processing"),
AP_INIT_RAW_ARGS("<LuaHookAuthChecker", register_auth_checker_block, NULL,
EXEC_ON_READ | OR_ALL,
"Provide a hook for the auth_checker phase of request processing"),
/* todo: test */
AP_INIT_TAKE2("LuaHookInsertFilter", register_insert_filter_hook, NULL,
OR_ALL,
"Provide a hook for the insert_filter phase of request processing"),
AP_INIT_TAKE123("LuaScope", register_lua_scope, NULL, OR_ALL,
"One of once, request, conn, server -- default is once"),
AP_INIT_TAKE1("LuaInherit", register_lua_inherit, NULL, OR_ALL,
"Controls how Lua scripts in parent contexts are merged with the current "
" context: none|parent-last|parent-first (default: parent-first) "),
AP_INIT_TAKE1("LuaCodeCache", register_lua_codecache, NULL, OR_ALL,
"Controls the behavior of the in-memory code cache "
" context: stat|forever|never (default: stat) "),
AP_INIT_TAKE2("LuaQuickHandler", register_quick_hook, NULL, OR_ALL,
"Provide a hook for the quick handler of request processing"),
AP_INIT_RAW_ARGS("<LuaQuickHandler", register_quick_block, NULL,
EXEC_ON_READ | OR_ALL,
"Provide a hook for the quick handler of request processing"),
AP_INIT_RAW_ARGS("Lua_____ByteCodeHack", hack_section_handler, NULL,
OR_ALL,
"(internal) Byte code handler"),
AP_INIT_TAKE23("LuaMapHandler", register_map_handler, NULL, OR_ALL,
"Maps a path to a lua handler"),
{NULL}
};
static void *create_dir_config(apr_pool_t *p, char *dir)
{
ap_lua_dir_cfg *cfg = apr_pcalloc(p, sizeof(ap_lua_dir_cfg));
cfg->package_paths = apr_array_make(p, 2, sizeof(char *));
cfg->package_cpaths = apr_array_make(p, 2, sizeof(char *));
cfg->mapped_handlers =
apr_array_make(p, 1, sizeof(ap_lua_mapped_handler_spec *));
cfg->pool = p;
cfg->hooks = apr_hash_make(p);
cfg->dir = apr_pstrdup(p, dir);
cfg->vm_scope = AP_LUA_SCOPE_UNSET;
cfg->codecache = AP_LUA_CACHE_UNSET;
return cfg;
}
static int create_request_config(request_rec *r)
{
ap_lua_request_cfg *cfg = apr_palloc(r->pool, sizeof(ap_lua_request_cfg));
cfg->mapped_request_details = NULL;
cfg->request_scoped_vms = apr_hash_make(r->pool);
ap_set_module_config(r->request_config, &lua_module, cfg);
return OK;
}
static void *create_server_config(apr_pool_t *p, server_rec *s)
{
ap_lua_server_cfg *cfg = apr_pcalloc(p, sizeof(ap_lua_server_cfg));
cfg->vm_reslists = apr_hash_make(p);
apr_thread_rwlock_create(&cfg->vm_reslists_lock, p);
cfg->root_path = NULL;
return cfg;
}
static int lua_request_hook(lua_State *L, request_rec *r)
{
ap_lua_push_request(L, r);
return OK;
}
static int lua_post_config(apr_pool_t *pconf, apr_pool_t *plog,
apr_pool_t *ptemp, server_rec *s)
{
lua_ssl_val = APR_RETRIEVE_OPTIONAL_FN(ssl_var_lookup);
lua_ssl_is_https = APR_RETRIEVE_OPTIONAL_FN(ssl_is_https);
return OK;
}
static void *overlay_hook_specs(apr_pool_t *p,
const void *key,
apr_ssize_t klen,
const void *overlay_val,
const void *base_val,
const void *data)
{
const apr_array_header_t *overlay_info = (const apr_array_header_t*)overlay_val;
const apr_array_header_t *base_info = (const apr_array_header_t*)base_val;
return apr_array_append(p, base_info, overlay_info);
}
static void *merge_dir_config(apr_pool_t *p, void *basev, void *overridesv)
{
ap_lua_dir_cfg *a, *base, *overrides;
a = (ap_lua_dir_cfg *)apr_pcalloc(p, sizeof(ap_lua_dir_cfg));
base = (ap_lua_dir_cfg*)basev;
overrides = (ap_lua_dir_cfg*)overridesv;
a->pool = overrides->pool;
a->dir = apr_pstrdup(p, overrides->dir);
a->vm_scope = (overrides->vm_scope == AP_LUA_SCOPE_UNSET) ? base->vm_scope: overrides->vm_scope;
a->inherit = (overrides->inherit== AP_LUA_INHERIT_UNSET) ? base->inherit : overrides->inherit;
a->codecache = (overrides->codecache== AP_LUA_CACHE_UNSET) ? base->codecache : overrides->codecache;
if (a->inherit == AP_LUA_INHERIT_UNSET || a->inherit == AP_LUA_INHERIT_PARENT_FIRST) {
a->package_paths = apr_array_append(p, base->package_paths, overrides->package_paths);
a->package_cpaths = apr_array_append(p, base->package_cpaths, overrides->package_cpaths);
a->mapped_handlers = apr_array_append(p, base->mapped_handlers, overrides->mapped_handlers);
a->hooks = apr_hash_merge(p, overrides->hooks, base->hooks, overlay_hook_specs, NULL);
}
else if (a->inherit == AP_LUA_INHERIT_PARENT_LAST) {
a->package_paths = apr_array_append(p, overrides->package_paths, base->package_paths);
a->package_cpaths = apr_array_append(p, overrides->package_cpaths, base->package_cpaths);
a->mapped_handlers = apr_array_append(p, overrides->mapped_handlers, base->mapped_handlers);
a->hooks = apr_hash_merge(p, base->hooks, overrides->hooks, overlay_hook_specs, NULL);
}
else {
a->package_paths = overrides->package_paths;
a->package_cpaths = overrides->package_cpaths;
a->mapped_handlers= overrides->mapped_handlers;
a->hooks= overrides->hooks;
}
return a;
}
static void lua_register_hooks(apr_pool_t *p)
{
/* ap_register_output_filter("luahood", luahood, NULL, AP_FTYPE_RESOURCE); */
ap_hook_handler(lua_handler, NULL, NULL, APR_HOOK_MIDDLE);
ap_hook_create_request(create_request_config, NULL, NULL,
APR_HOOK_MIDDLE);
/* http_request.h hooks */
ap_hook_translate_name(lua_translate_name_harness_first, NULL, NULL,
AP_LUA_HOOK_FIRST);
ap_hook_translate_name(lua_translate_name_harness, NULL, NULL,
APR_HOOK_MIDDLE);
ap_hook_translate_name(lua_translate_name_harness_last, NULL, NULL,
AP_LUA_HOOK_LAST);
ap_hook_fixups(lua_fixup_harness, NULL, NULL, APR_HOOK_MIDDLE);
ap_hook_map_to_storage(lua_map_to_storage_harness, NULL, NULL,
APR_HOOK_MIDDLE);
ap_hook_check_user_id(lua_check_user_id_harness_first, NULL, NULL,
AP_LUA_HOOK_FIRST);
ap_hook_check_user_id(lua_check_user_id_harness, NULL, NULL,
APR_HOOK_MIDDLE);
ap_hook_check_user_id(lua_check_user_id_harness_last, NULL, NULL,
AP_LUA_HOOK_LAST);
ap_hook_type_checker(lua_type_checker_harness, NULL, NULL,
APR_HOOK_MIDDLE);
ap_hook_access_checker(lua_access_checker_harness_first, NULL, NULL,
AP_LUA_HOOK_FIRST);
ap_hook_access_checker(lua_access_checker_harness, NULL, NULL,
APR_HOOK_MIDDLE);
ap_hook_access_checker(lua_access_checker_harness_last, NULL, NULL,
AP_LUA_HOOK_LAST);
ap_hook_auth_checker(lua_auth_checker_harness_first, NULL, NULL,
AP_LUA_HOOK_FIRST);
ap_hook_auth_checker(lua_auth_checker_harness, NULL, NULL,
APR_HOOK_MIDDLE);
ap_hook_auth_checker(lua_auth_checker_harness_last, NULL, NULL,
AP_LUA_HOOK_LAST);
ap_hook_insert_filter(lua_insert_filter_harness, NULL, NULL,
APR_HOOK_MIDDLE);
ap_hook_quick_handler(lua_quick_harness, NULL, NULL, APR_HOOK_FIRST);
ap_hook_post_config(lua_post_config, NULL, NULL, APR_HOOK_MIDDLE);
APR_OPTIONAL_HOOK(ap_lua, lua_open, lua_open_hook, NULL, NULL,
APR_HOOK_REALLY_FIRST);
APR_OPTIONAL_HOOK(ap_lua, lua_request, lua_request_hook, NULL, NULL,
APR_HOOK_REALLY_FIRST);
ap_hook_handler(lua_map_handler, NULL, NULL, AP_LUA_HOOK_FIRST);
/* providers */
lua_authz_providers = apr_hash_make(p);
}
AP_DECLARE_MODULE(lua) = {
STANDARD20_MODULE_STUFF,
create_dir_config, /* create per-dir config structures */
merge_dir_config, /* merge per-dir config structures */
create_server_config, /* create per-server config structures */
NULL, /* merge per-server config structures */
lua_commands, /* table of config file commands */
lua_register_hooks /* register hooks */
};