blob: 1d8d5789e989e0507f3a9c7bd639a46de12834e1 [file] [log] [blame]
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01001#ifndef _TYPES_HLUA_H
2#define _TYPES_HLUA_H
3
Thierry FOURNIERa718b292015-03-04 16:48:34 +01004#ifdef USE_LUA
5
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01006#include <lua.h>
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01007#include <lauxlib.h>
8
Dragan Dosen26743032019-04-30 15:54:36 +02009#include <common/regex.h>
Thierry FOURNIER2da788e2017-09-11 18:37:23 +020010#include <common/xref.h>
11
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020012#include <types/http_ana.h>
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010013#include <types/proxy.h>
14#include <types/server.h>
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +010015#include <types/stick_table.h>
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +010016
Thierry FOURNIER0efc94c2015-09-16 21:22:28 +020017#define CLASS_CORE "Core"
18#define CLASS_TXN "TXN"
19#define CLASS_FETCHES "Fetches"
20#define CLASS_CONVERTERS "Converters"
21#define CLASS_SOCKET "Socket"
22#define CLASS_CHANNEL "Channel"
23#define CLASS_HTTP "HTTP"
24#define CLASS_MAP "Map"
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +020025#define CLASS_APPLET_TCP "AppletTCP"
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +020026#define CLASS_APPLET_HTTP "AppletHTTP"
Thierry Fournierf61aa632016-02-19 20:56:00 +010027#define CLASS_PROXY "Proxy"
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +010028#define CLASS_SERVER "Server"
Thierry Fournierff480422016-02-25 08:36:46 +010029#define CLASS_LISTENER "Listener"
Thierry FOURNIER31904272017-10-25 12:59:51 +020030#define CLASS_REGEX "Regex"
Adis Nezirovic8878f8e2018-07-13 12:18:33 +020031#define CLASS_STKTABLE "StickTable"
Thierry FOURNIER65f34c62015-02-16 20:11:43 +010032
Willy Tarreau87b09662015-04-03 00:22:06 +020033struct stream;
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +010034
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +010035#define HLUA_RUN 0x00000001
Thierry FOURNIER4abd3ae2015-03-03 17:29:06 +010036#define HLUA_CTRLYIELD 0x00000002
Thierry FOURNIERef6a2112015-03-05 17:45:34 +010037#define HLUA_WAKERESWR 0x00000004
Thierry FOURNIER53e08ec2015-03-06 00:35:53 +010038#define HLUA_WAKEREQWR 0x00000008
Thierry FOURNIER0a99b892015-08-26 00:14:17 +020039#define HLUA_EXIT 0x00000010
Thierry FOURNIER380d0932015-01-23 14:27:52 +010040
Thierry FOURNIER7fa05492015-12-20 18:42:25 +010041#define HLUA_F_AS_STRING 0x01
Thierry FOURNIERca988662015-12-20 18:43:03 +010042#define HLUA_F_MAY_USE_HTTP 0x02
Thierry FOURNIER7fa05492015-12-20 18:42:25 +010043
Christopher Fauletbfab2dd2019-07-26 15:09:53 +020044#define HLUA_TXN_NOTERM 0x00000001
45#define HLUA_TXN_HTTP_RDY 0x00000002 /* Set if the txn is HTTP ready for the defined direction */
Thierry FOURNIERab00df62016-07-14 11:42:37 +020046
Thierry Fournier49d48422016-02-19 12:09:29 +010047#define HLUA_CONCAT_BLOCSZ 2048
48
Thierry FOURNIER380d0932015-01-23 14:27:52 +010049enum hlua_exec {
50 HLUA_E_OK = 0,
51 HLUA_E_AGAIN, /* LUA yield, must resume the stack execution later, when
52 the associatedtask is waked. */
Thierry Fournierd5b073c2018-05-21 19:42:47 +020053 HLUA_E_ETMOUT, /* Execution timeout */
54 HLUA_E_NOMEM, /* Out of memory error */
55 HLUA_E_YIELD, /* LUA code try to yield, and this is not allowed */
Thierry FOURNIER380d0932015-01-23 14:27:52 +010056 HLUA_E_ERRMSG, /* LUA stack execution failed with a string error message
57 in the top of stack. */
58 HLUA_E_ERR, /* LUA stack execution failed without error message. */
59};
60
61struct hlua {
62 lua_State *T; /* The LUA stack. */
63 int Tref; /* The reference of the stack in coroutine case.
64 -1 for the main lua stack. */
65 int Mref; /* The reference of the memory context in coroutine case.
66 -1 if the memory context is not used. */
67 int nargs; /* The number of arguments in the stack at the start of execution. */
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +010068 unsigned int flags; /* The current execution flags. */
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +010069 int wake_time; /* The lua wants to be waked at this time, or before. */
Thierry FOURNIER10770fa2015-09-29 01:59:42 +020070 unsigned int max_time; /* The max amount of execution time for an Lua process, in ms. */
71 unsigned int start_time; /* The ms time when the Lua starts the last execution. */
72 unsigned int run_time; /* Lua total execution time in ms. */
Thierry FOURNIER380d0932015-01-23 14:27:52 +010073 struct task *task; /* The task associated with the lua stack execution.
74 We must wake this task to continue the task execution */
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +010075 struct list com; /* The list head of the signals attached to this task. */
Thierry FOURNIER380d0932015-01-23 14:27:52 +010076 struct ebpt_node node;
Willy Tarreauf31af932020-01-14 09:59:38 +010077 int gc_count; /* number of items which need a GC */
Thierry FOURNIER380d0932015-01-23 14:27:52 +010078};
79
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +010080/* This is a part of the list containing references to functions
81 * called at the initialisation time.
82 */
83struct hlua_init_function {
84 struct list l;
85 int function_ref;
86};
87
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +010088/* This struct contains the lua data used to bind
89 * Lua function on HAProxy hook like sample-fetches
90 * or actions.
91 */
92struct hlua_function {
93 char *name;
94 int function_ref;
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +010095 int nargs;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +010096};
97
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +010098/* This struct is used with the structs:
99 * - http_req_rule
100 * - http_res_rule
101 * - tcp_rule
102 * It contains the lua execution configuration.
103 */
104struct hlua_rule {
105 struct hlua_function fcn;
106 char **args;
107};
108
Thierry FOURNIER65f34c62015-02-16 20:11:43 +0100109/* This struct contains the pointer provided on the most
110 * of internal HAProxy calls during the processing of
111 * rules, converters and sample-fetches. This struct is
112 * associated with the lua object called "TXN".
113 */
114struct hlua_txn {
Willy Tarreau87b09662015-04-03 00:22:06 +0200115 struct stream *s;
Thierry FOURNIER65f34c62015-02-16 20:11:43 +0100116 struct proxy *p;
Thierry FOURNIERc4eebc82015-11-02 10:01:59 +0100117 int dir; /* SMP_OPT_DIR_{REQ,RES} */
Thierry FOURNIERab00df62016-07-14 11:42:37 +0200118 int flags;
Thierry FOURNIER65f34c62015-02-16 20:11:43 +0100119};
120
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +0200121/* This struct contains the applet context. */
122struct hlua_appctx {
123 struct appctx *appctx;
124 luaL_Buffer b; /* buffer used to prepare strings. */
125 struct hlua_txn htxn;
126};
127
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100128/* This struc is used with sample fetches and sample converters. */
129struct hlua_smp {
Willy Tarreau87b09662015-04-03 00:22:06 +0200130 struct stream *s;
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100131 struct proxy *p;
Thierry FOURNIER7fa05492015-12-20 18:42:25 +0100132 unsigned int flags; /* LUA_F_OPT_* */
Thierry FOURNIERc4eebc82015-11-02 10:01:59 +0100133 int dir; /* SMP_OPT_DIR_{REQ,RES} */
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100134};
135
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +0100136/* This struct contains data used with sleep functions. */
137struct hlua_sleep {
138 struct task *task; /* task associated with sleep. */
139 struct list com; /* list of signal to wake at the end of sleep. */
140 unsigned int wakeup_ms; /* hour to wakeup. */
141};
142
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +0100143/* This struct is used to create coprocess doing TCP or
Willy Tarreau87b09662015-04-03 00:22:06 +0200144 * SSL I/O. It uses a fake stream.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +0100145 */
146struct hlua_socket {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +0200147 struct xref xref; /* cross reference with the stream used for socket I/O. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +0100148 luaL_Buffer b; /* buffer used to prepare strings. */
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +0200149 unsigned long tid; /* Store the thread id which creates the socket. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +0100150};
151
Thierry Fournier49d48422016-02-19 12:09:29 +0100152struct hlua_concat {
153 int size;
154 int len;
155};
156
Thierry FOURNIER / OZON.IO62fec752016-11-10 20:38:11 +0100157struct hlua_addr {
158 union {
159 struct {
160 struct in_addr ip;
161 struct in_addr mask;
162 } v4;
163 struct {
164 struct in6_addr ip;
165 struct in6_addr mask;
166 } v6;
167 } addr;
168 int type;
169};
170
Thierry FOURNIERa718b292015-03-04 16:48:34 +0100171#else /* USE_LUA */
172
173/* Empty struct for compilation compatibility */
174struct hlua { };
175struct hlua_socket { };
Thierry FOURNIER231ef1d2015-07-30 19:03:55 +0200176struct hlua_rule { };
Thierry FOURNIERa718b292015-03-04 16:48:34 +0100177
178#endif /* USE_LUA */
179
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +0100180#endif /* _TYPES_HLUA_H */