2015-01-23 08:06:13 -05:00
|
|
|
#ifndef _TYPES_HLUA_H
|
|
|
|
|
#define _TYPES_HLUA_H
|
|
|
|
|
|
2015-03-04 10:48:34 -05:00
|
|
|
#ifdef USE_LUA
|
|
|
|
|
|
2015-01-23 08:06:13 -05:00
|
|
|
#include <lua.h>
|
2015-02-16 13:27:16 -05:00
|
|
|
#include <lauxlib.h>
|
|
|
|
|
|
2017-09-11 12:37:23 -04:00
|
|
|
#include <common/xref.h>
|
|
|
|
|
|
2018-12-11 05:04:56 -05:00
|
|
|
#include <types/proto_http.h>
|
2015-02-16 13:27:16 -05:00
|
|
|
#include <types/proxy.h>
|
|
|
|
|
#include <types/server.h>
|
2015-01-23 08:06:13 -05:00
|
|
|
|
2015-09-16 15:22:28 -04:00
|
|
|
#define CLASS_CORE "Core"
|
|
|
|
|
#define CLASS_TXN "TXN"
|
|
|
|
|
#define CLASS_FETCHES "Fetches"
|
|
|
|
|
#define CLASS_CONVERTERS "Converters"
|
|
|
|
|
#define CLASS_SOCKET "Socket"
|
|
|
|
|
#define CLASS_CHANNEL "Channel"
|
|
|
|
|
#define CLASS_HTTP "HTTP"
|
|
|
|
|
#define CLASS_MAP "Map"
|
2015-09-19 06:36:17 -04:00
|
|
|
#define CLASS_APPLET_TCP "AppletTCP"
|
2015-09-18 03:04:27 -04:00
|
|
|
#define CLASS_APPLET_HTTP "AppletHTTP"
|
2016-02-19 14:56:00 -05:00
|
|
|
#define CLASS_PROXY "Proxy"
|
2016-02-22 02:21:39 -05:00
|
|
|
#define CLASS_SERVER "Server"
|
2016-02-25 02:36:46 -05:00
|
|
|
#define CLASS_LISTENER "Listener"
|
2017-10-25 06:59:51 -04:00
|
|
|
#define CLASS_REGEX "Regex"
|
2018-07-13 06:18:33 -04:00
|
|
|
#define CLASS_STKTABLE "StickTable"
|
2015-02-16 14:11:43 -05:00
|
|
|
|
REORG/MAJOR: session: rename the "session" entity to "stream"
With HTTP/2, we'll have to support multiplexed streams. A stream is in
fact the largest part of what we currently call a session, it has buffers,
logs, etc.
In order to catch any error, this commit removes any reference to the
struct session and tries to rename most "session" occurrences in function
names to "stream" and "sess" to "strm" when that's related to a session.
The files stream.{c,h} were added and session.{c,h} removed.
The session will be reintroduced later and a few parts of the stream
will progressively be moved overthere. It will more or less contain
only what we need in an embryonic session.
Sample fetch functions and converters will have to change a bit so
that they'll use an L5 (session) instead of what's currently called
"L4" which is in fact L6 for now.
Once all changes are completed, we should see approximately this :
L7 - http_txn
L6 - stream
L5 - session
L4 - connection | applet
There will be at most one http_txn per stream, and a same session will
possibly be referenced by multiple streams. A connection will point to
a session and to a stream. The session will hold all the information
we need to keep even when we don't yet have a stream.
Some more cleanup is needed because some code was already far from
being clean. The server queue management still refers to sessions at
many places while comments talk about connections. This will have to
be cleaned up once we have a server-side connection pool manager.
Stream flags "SN_*" still need to be renamed, it doesn't seem like
any of them will need to move to the session.
2015-04-02 18:22:06 -04:00
|
|
|
struct stream;
|
2015-01-23 08:07:08 -05:00
|
|
|
|
2015-03-03 09:17:35 -05:00
|
|
|
#define HLUA_RUN 0x00000001
|
2015-03-03 11:29:06 -05:00
|
|
|
#define HLUA_CTRLYIELD 0x00000002
|
2015-03-05 11:45:34 -05:00
|
|
|
#define HLUA_WAKERESWR 0x00000004
|
2015-03-05 18:35:53 -05:00
|
|
|
#define HLUA_WAKEREQWR 0x00000008
|
2015-08-25 18:14:17 -04:00
|
|
|
#define HLUA_EXIT 0x00000010
|
2015-09-27 16:53:33 -04:00
|
|
|
#define HLUA_MUST_GC 0x00000020
|
2016-07-14 05:45:33 -04:00
|
|
|
#define HLUA_STOP 0x00000040
|
2015-01-23 08:27:52 -05:00
|
|
|
|
2015-12-20 12:42:25 -05:00
|
|
|
#define HLUA_F_AS_STRING 0x01
|
2015-12-20 12:43:03 -05:00
|
|
|
#define HLUA_F_MAY_USE_HTTP 0x02
|
2015-12-20 12:42:25 -05:00
|
|
|
|
2016-07-14 05:42:37 -04:00
|
|
|
#define HLUA_TXN_NOTERM 0x00000001
|
|
|
|
|
|
BUG/MAJOR: lua: segfault using Concat object
Concat object is based on "luaL_Buffer". The luaL_Buffer documentation says:
During its normal operation, a string buffer uses a variable number of stack
slots. So, while using a buffer, you cannot assume that you know where the
top of the stack is. You can use the stack between successive calls to buffer
operations as long as that use is balanced; that is, when you call a buffer
operation, the stack is at the same level it was immediately after the
previous buffer operation. (The only exception to this rule is
luaL_addvalue.) After calling luaL_pushresult the stack is back to its level
when the buffer was initialized, plus the final string on its top.
So, the stack cannot be manipulated between the first call at the function
"luaL_buffinit()" and the last call to the function "luaL_pushresult()" because
we cannot known the stack status.
In other way, the memory used by these functions seems to be collected by GC, so
if the GC is triggered during the usage of the Concat object, it can be used
some released memory.
This patch rewrite the Concat class without the "luaL_Buffer" system. It uses
"userdata()" forr the memory allocation of the buffer strings.
2016-02-19 06:09:29 -05:00
|
|
|
#define HLUA_CONCAT_BLOCSZ 2048
|
|
|
|
|
|
2015-01-23 08:27:52 -05:00
|
|
|
enum hlua_exec {
|
|
|
|
|
HLUA_E_OK = 0,
|
|
|
|
|
HLUA_E_AGAIN, /* LUA yield, must resume the stack execution later, when
|
|
|
|
|
the associatedtask is waked. */
|
2018-05-21 13:42:47 -04:00
|
|
|
HLUA_E_ETMOUT, /* Execution timeout */
|
|
|
|
|
HLUA_E_NOMEM, /* Out of memory error */
|
|
|
|
|
HLUA_E_YIELD, /* LUA code try to yield, and this is not allowed */
|
2015-01-23 08:27:52 -05:00
|
|
|
HLUA_E_ERRMSG, /* LUA stack execution failed with a string error message
|
|
|
|
|
in the top of stack. */
|
|
|
|
|
HLUA_E_ERR, /* LUA stack execution failed without error message. */
|
|
|
|
|
};
|
|
|
|
|
|
2016-12-13 07:06:23 -05:00
|
|
|
/* This struct is use for storing HAProxy parsers state
|
|
|
|
|
* before executing some Lua code. The goal is we can
|
|
|
|
|
* check and compare the parser state a the end of Lua
|
|
|
|
|
* execution. If the state is changed by Lua towards
|
|
|
|
|
* an unexpected state, we can abort the transaction.
|
|
|
|
|
*/
|
|
|
|
|
struct hlua_consistency {
|
|
|
|
|
enum pr_mode mode;
|
|
|
|
|
union {
|
|
|
|
|
struct {
|
|
|
|
|
int dir;
|
2017-09-21 03:30:46 -04:00
|
|
|
enum h1_state state;
|
2016-12-13 07:06:23 -05:00
|
|
|
} http;
|
|
|
|
|
} data;
|
|
|
|
|
};
|
|
|
|
|
|
2015-01-23 08:27:52 -05:00
|
|
|
struct hlua {
|
|
|
|
|
lua_State *T; /* The LUA stack. */
|
|
|
|
|
int Tref; /* The reference of the stack in coroutine case.
|
|
|
|
|
-1 for the main lua stack. */
|
|
|
|
|
int Mref; /* The reference of the memory context in coroutine case.
|
|
|
|
|
-1 if the memory context is not used. */
|
|
|
|
|
int nargs; /* The number of arguments in the stack at the start of execution. */
|
2015-03-03 09:17:35 -05:00
|
|
|
unsigned int flags; /* The current execution flags. */
|
2015-03-03 11:17:55 -05:00
|
|
|
int wake_time; /* The lua wants to be waked at this time, or before. */
|
2015-09-28 19:59:42 -04:00
|
|
|
unsigned int max_time; /* The max amount of execution time for an Lua process, in ms. */
|
|
|
|
|
unsigned int start_time; /* The ms time when the Lua starts the last execution. */
|
|
|
|
|
unsigned int run_time; /* Lua total execution time in ms. */
|
2015-01-23 08:27:52 -05:00
|
|
|
struct task *task; /* The task associated with the lua stack execution.
|
|
|
|
|
We must wake this task to continue the task execution */
|
2015-01-23 05:08:20 -05:00
|
|
|
struct list com; /* The list head of the signals attached to this task. */
|
2015-01-23 08:27:52 -05:00
|
|
|
struct ebpt_node node;
|
2016-12-13 07:06:23 -05:00
|
|
|
struct hlua_consistency cons; /* Store data consistency check. */
|
2015-01-23 08:27:52 -05:00
|
|
|
};
|
|
|
|
|
|
2015-01-23 06:08:30 -05:00
|
|
|
/* This is a part of the list containing references to functions
|
|
|
|
|
* called at the initialisation time.
|
|
|
|
|
*/
|
|
|
|
|
struct hlua_init_function {
|
|
|
|
|
struct list l;
|
|
|
|
|
int function_ref;
|
|
|
|
|
};
|
|
|
|
|
|
2015-02-16 14:19:18 -05:00
|
|
|
/* This struct contains the lua data used to bind
|
|
|
|
|
* Lua function on HAProxy hook like sample-fetches
|
|
|
|
|
* or actions.
|
|
|
|
|
*/
|
|
|
|
|
struct hlua_function {
|
|
|
|
|
char *name;
|
|
|
|
|
int function_ref;
|
2016-12-09 12:03:31 -05:00
|
|
|
int nargs;
|
2015-02-16 14:19:18 -05:00
|
|
|
};
|
|
|
|
|
|
2015-02-16 14:23:40 -05:00
|
|
|
/* This struct is used with the structs:
|
|
|
|
|
* - http_req_rule
|
|
|
|
|
* - http_res_rule
|
|
|
|
|
* - tcp_rule
|
|
|
|
|
* It contains the lua execution configuration.
|
|
|
|
|
*/
|
|
|
|
|
struct hlua_rule {
|
|
|
|
|
struct hlua_function fcn;
|
|
|
|
|
char **args;
|
|
|
|
|
};
|
|
|
|
|
|
2015-02-16 14:11:43 -05:00
|
|
|
/* This struct contains the pointer provided on the most
|
|
|
|
|
* of internal HAProxy calls during the processing of
|
|
|
|
|
* rules, converters and sample-fetches. This struct is
|
|
|
|
|
* associated with the lua object called "TXN".
|
|
|
|
|
*/
|
|
|
|
|
struct hlua_txn {
|
REORG/MAJOR: session: rename the "session" entity to "stream"
With HTTP/2, we'll have to support multiplexed streams. A stream is in
fact the largest part of what we currently call a session, it has buffers,
logs, etc.
In order to catch any error, this commit removes any reference to the
struct session and tries to rename most "session" occurrences in function
names to "stream" and "sess" to "strm" when that's related to a session.
The files stream.{c,h} were added and session.{c,h} removed.
The session will be reintroduced later and a few parts of the stream
will progressively be moved overthere. It will more or less contain
only what we need in an embryonic session.
Sample fetch functions and converters will have to change a bit so
that they'll use an L5 (session) instead of what's currently called
"L4" which is in fact L6 for now.
Once all changes are completed, we should see approximately this :
L7 - http_txn
L6 - stream
L5 - session
L4 - connection | applet
There will be at most one http_txn per stream, and a same session will
possibly be referenced by multiple streams. A connection will point to
a session and to a stream. The session will hold all the information
we need to keep even when we don't yet have a stream.
Some more cleanup is needed because some code was already far from
being clean. The server queue management still refers to sessions at
many places while comments talk about connections. This will have to
be cleaned up once we have a server-side connection pool manager.
Stream flags "SN_*" still need to be renamed, it doesn't seem like
any of them will need to move to the session.
2015-04-02 18:22:06 -04:00
|
|
|
struct stream *s;
|
2015-02-16 14:11:43 -05:00
|
|
|
struct proxy *p;
|
2015-11-02 04:01:59 -05:00
|
|
|
int dir; /* SMP_OPT_DIR_{REQ,RES} */
|
2016-07-14 05:42:37 -04:00
|
|
|
int flags;
|
2015-02-16 14:11:43 -05:00
|
|
|
};
|
|
|
|
|
|
2015-09-19 06:36:17 -04:00
|
|
|
/* This struct contains the applet context. */
|
|
|
|
|
struct hlua_appctx {
|
|
|
|
|
struct appctx *appctx;
|
|
|
|
|
luaL_Buffer b; /* buffer used to prepare strings. */
|
|
|
|
|
struct hlua_txn htxn;
|
|
|
|
|
};
|
|
|
|
|
|
2015-03-11 15:13:36 -04:00
|
|
|
/* This struc is used with sample fetches and sample converters. */
|
|
|
|
|
struct hlua_smp {
|
REORG/MAJOR: session: rename the "session" entity to "stream"
With HTTP/2, we'll have to support multiplexed streams. A stream is in
fact the largest part of what we currently call a session, it has buffers,
logs, etc.
In order to catch any error, this commit removes any reference to the
struct session and tries to rename most "session" occurrences in function
names to "stream" and "sess" to "strm" when that's related to a session.
The files stream.{c,h} were added and session.{c,h} removed.
The session will be reintroduced later and a few parts of the stream
will progressively be moved overthere. It will more or less contain
only what we need in an embryonic session.
Sample fetch functions and converters will have to change a bit so
that they'll use an L5 (session) instead of what's currently called
"L4" which is in fact L6 for now.
Once all changes are completed, we should see approximately this :
L7 - http_txn
L6 - stream
L5 - session
L4 - connection | applet
There will be at most one http_txn per stream, and a same session will
possibly be referenced by multiple streams. A connection will point to
a session and to a stream. The session will hold all the information
we need to keep even when we don't yet have a stream.
Some more cleanup is needed because some code was already far from
being clean. The server queue management still refers to sessions at
many places while comments talk about connections. This will have to
be cleaned up once we have a server-side connection pool manager.
Stream flags "SN_*" still need to be renamed, it doesn't seem like
any of them will need to move to the session.
2015-04-02 18:22:06 -04:00
|
|
|
struct stream *s;
|
2015-03-11 15:13:36 -04:00
|
|
|
struct proxy *p;
|
2015-12-20 12:42:25 -05:00
|
|
|
unsigned int flags; /* LUA_F_OPT_* */
|
2015-11-02 04:01:59 -05:00
|
|
|
int dir; /* SMP_OPT_DIR_{REQ,RES} */
|
2015-03-11 15:13:36 -04:00
|
|
|
};
|
|
|
|
|
|
2015-02-16 13:43:25 -05:00
|
|
|
/* This struct contains data used with sleep functions. */
|
|
|
|
|
struct hlua_sleep {
|
|
|
|
|
struct task *task; /* task associated with sleep. */
|
|
|
|
|
struct list com; /* list of signal to wake at the end of sleep. */
|
|
|
|
|
unsigned int wakeup_ms; /* hour to wakeup. */
|
|
|
|
|
};
|
|
|
|
|
|
2015-02-16 13:27:16 -05:00
|
|
|
/* This struct is used to create coprocess doing TCP or
|
REORG/MAJOR: session: rename the "session" entity to "stream"
With HTTP/2, we'll have to support multiplexed streams. A stream is in
fact the largest part of what we currently call a session, it has buffers,
logs, etc.
In order to catch any error, this commit removes any reference to the
struct session and tries to rename most "session" occurrences in function
names to "stream" and "sess" to "strm" when that's related to a session.
The files stream.{c,h} were added and session.{c,h} removed.
The session will be reintroduced later and a few parts of the stream
will progressively be moved overthere. It will more or less contain
only what we need in an embryonic session.
Sample fetch functions and converters will have to change a bit so
that they'll use an L5 (session) instead of what's currently called
"L4" which is in fact L6 for now.
Once all changes are completed, we should see approximately this :
L7 - http_txn
L6 - stream
L5 - session
L4 - connection | applet
There will be at most one http_txn per stream, and a same session will
possibly be referenced by multiple streams. A connection will point to
a session and to a stream. The session will hold all the information
we need to keep even when we don't yet have a stream.
Some more cleanup is needed because some code was already far from
being clean. The server queue management still refers to sessions at
many places while comments talk about connections. This will have to
be cleaned up once we have a server-side connection pool manager.
Stream flags "SN_*" still need to be renamed, it doesn't seem like
any of them will need to move to the session.
2015-04-02 18:22:06 -04:00
|
|
|
* SSL I/O. It uses a fake stream.
|
2015-02-16 13:27:16 -05:00
|
|
|
*/
|
|
|
|
|
struct hlua_socket {
|
2017-09-11 12:37:23 -04:00
|
|
|
struct xref xref; /* cross reference with the stream used for socket I/O. */
|
2015-02-16 13:27:16 -05:00
|
|
|
luaL_Buffer b; /* buffer used to prepare strings. */
|
2017-07-12 06:10:44 -04:00
|
|
|
unsigned long tid; /* Store the thread id which creates the socket. */
|
2015-02-16 13:27:16 -05:00
|
|
|
};
|
|
|
|
|
|
BUG/MAJOR: lua: segfault using Concat object
Concat object is based on "luaL_Buffer". The luaL_Buffer documentation says:
During its normal operation, a string buffer uses a variable number of stack
slots. So, while using a buffer, you cannot assume that you know where the
top of the stack is. You can use the stack between successive calls to buffer
operations as long as that use is balanced; that is, when you call a buffer
operation, the stack is at the same level it was immediately after the
previous buffer operation. (The only exception to this rule is
luaL_addvalue.) After calling luaL_pushresult the stack is back to its level
when the buffer was initialized, plus the final string on its top.
So, the stack cannot be manipulated between the first call at the function
"luaL_buffinit()" and the last call to the function "luaL_pushresult()" because
we cannot known the stack status.
In other way, the memory used by these functions seems to be collected by GC, so
if the GC is triggered during the usage of the Concat object, it can be used
some released memory.
This patch rewrite the Concat class without the "luaL_Buffer" system. It uses
"userdata()" forr the memory allocation of the buffer strings.
2016-02-19 06:09:29 -05:00
|
|
|
struct hlua_concat {
|
|
|
|
|
int size;
|
|
|
|
|
int len;
|
|
|
|
|
};
|
|
|
|
|
|
2016-11-10 14:38:11 -05:00
|
|
|
struct hlua_addr {
|
|
|
|
|
union {
|
|
|
|
|
struct {
|
|
|
|
|
struct in_addr ip;
|
|
|
|
|
struct in_addr mask;
|
|
|
|
|
} v4;
|
|
|
|
|
struct {
|
|
|
|
|
struct in6_addr ip;
|
|
|
|
|
struct in6_addr mask;
|
|
|
|
|
} v6;
|
|
|
|
|
} addr;
|
|
|
|
|
int type;
|
|
|
|
|
};
|
|
|
|
|
|
2015-03-04 10:48:34 -05:00
|
|
|
#else /* USE_LUA */
|
|
|
|
|
|
|
|
|
|
/* Empty struct for compilation compatibility */
|
|
|
|
|
struct hlua { };
|
|
|
|
|
struct hlua_socket { };
|
2015-07-30 13:03:55 -04:00
|
|
|
struct hlua_rule { };
|
2015-03-04 10:48:34 -05:00
|
|
|
|
|
|
|
|
#endif /* USE_LUA */
|
|
|
|
|
|
2015-01-23 08:06:13 -05:00
|
|
|
#endif /* _TYPES_HLUA_H */
|