Imported Upstream version 2.5.11
[libapache-mod-security.git] / apache2 / msc_lua.h
1 /*
2  * ModSecurity for Apache 2.x, http://www.modsecurity.org/
3  * Copyright (c) 2004-2009 Breach Security, Inc. (http://www.breach.com/)
4  *
5  * This product is released under the terms of the General Public Licence,
6  * version 2 (GPLv2). Please refer to the file LICENSE (included with this
7  * distribution) which contains the complete text of the licence.
8  *
9  * There are special exceptions to the terms and conditions of the GPL
10  * as it is applied to this software. View the full text of the exception in
11  * file MODSECURITY_LICENSING_EXCEPTION in the directory of this software
12  * distribution.
13  *
14  * If any of the files related to licensing are missing or if you have any
15  * other questions related to licensing please contact Breach Security, Inc.
16  * directly using the email address support@breach.com.
17  *
18  */
19 #if defined(WITH_LUA)
20
21 #ifndef _MSC_LUA_H_
22 #define _MSC_LUA_H_
23
24 typedef struct msc_script msc_script;
25 typedef struct msc_script_part msc_script_part;
26
27 #include <lua.h>
28 #include <lauxlib.h>
29 #include <lualib.h>
30
31 #include "apr_general.h"
32 #include "apr_tables.h"
33 #include "modsecurity.h"
34
35 struct msc_script {
36     const char *name;
37     apr_array_header_t *parts;
38 };
39
40 struct msc_script_part {
41     const void *data;
42     size_t len;
43 };
44
45 char DSOLOCAL *lua_compile(msc_script **script, const char *filename, apr_pool_t *pool);
46
47 int DSOLOCAL lua_execute(msc_script *script, char *param, modsec_rec *msr, msre_rule *rule, char **error_msg);
48
49 #endif
50
51 #endif /* WITH_LUA */