blob: 3dd2667102d09e4bcc28c31d5344fe90c20bf84e [file] [log] [blame]
Thierry Fourniere726b142016-02-11 17:57:57 +01001/*
2 * Lua unsafe core engine
3 *
4 * Copyright 2015-2016 Thierry Fournier <tfournier@arpalert.org>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
Bertrand Jacquinf4c12d42021-01-21 21:14:07 +000013#define _GNU_SOURCE
14
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +010015#include <ctype.h>
Thierry FOURNIERbabae282015-09-17 11:36:37 +020016#include <setjmp.h>
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +010017
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +010018#include <lauxlib.h>
19#include <lua.h>
20#include <lualib.h>
21
Thierry FOURNIER463119c2015-03-10 00:35:36 +010022#if !defined(LUA_VERSION_NUM) || LUA_VERSION_NUM < 503
23#error "Requires Lua 5.3 or later."
Cyril Bontédc0306e2015-03-02 00:08:40 +010024#endif
25
Willy Tarreau8d2b7772020-05-27 10:58:19 +020026#include <import/ebpttree.h>
Thierry FOURNIER380d0932015-01-23 14:27:52 +010027
Willy Tarreaub2551052020-06-09 09:07:15 +020028#include <haproxy/api.h>
29#include <haproxy/applet.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020030#include <haproxy/arg.h>
Christopher Fauletd25d9262020-08-06 11:04:46 +020031#include <haproxy/auth.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020032#include <haproxy/cfgparse.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020033#include <haproxy/channel.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020034#include <haproxy/cli.h>
Willy Tarreau55542642021-10-08 09:33:24 +020035#include <haproxy/clock.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020036#include <haproxy/connection.h>
Christopher Faulet908628c2022-03-25 16:43:49 +010037#include <haproxy/conn_stream.h>
38#include <haproxy/cs_utils.h>
Christopher Faulet69c581a2021-05-31 08:54:04 +020039#include <haproxy/filters.h>
Willy Tarreau5413a872020-06-02 19:33:08 +020040#include <haproxy/h1.h>
Willy Tarreau86416052020-06-04 09:20:54 +020041#include <haproxy/hlua.h>
Willy Tarreau8c794002020-06-04 10:05:25 +020042#include <haproxy/hlua_fcn.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020043#include <haproxy/http_ana.h>
William Lallemand3956c4e2021-09-21 16:25:15 +020044#include <haproxy/http_client.h>
Willy Tarreau126ba3a2020-06-04 18:26:43 +020045#include <haproxy/http_fetch.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020046#include <haproxy/http_htx.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020047#include <haproxy/http_rules.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020048#include <haproxy/log.h>
Willy Tarreau2cd58092020-06-04 15:10:43 +020049#include <haproxy/map.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020050#include <haproxy/obj_type.h>
Willy Tarreau225a90a2020-06-04 15:06:28 +020051#include <haproxy/pattern.h>
Willy Tarreau469509b2020-06-04 15:13:30 +020052#include <haproxy/payload.h>
Willy Tarreau3d6ee402021-05-08 20:28:07 +020053#include <haproxy/proxy.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020054#include <haproxy/regex.h>
Willy Tarreaue6ce10b2020-06-04 15:33:47 +020055#include <haproxy/sample.h>
Willy Tarreau198e92a2021-03-05 10:23:32 +010056#include <haproxy/server.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020057#include <haproxy/session.h>
William Lallemand30fcca12022-03-30 12:03:12 +020058#include <haproxy/ssl_ckch.h>
59#include <haproxy/ssl_sock.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020060#include <haproxy/stats-t.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020061#include <haproxy/stream.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020062#include <haproxy/task.h>
Willy Tarreau8b550af2020-06-04 17:42:48 +020063#include <haproxy/tcp_rules.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020064#include <haproxy/thread.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +020065#include <haproxy/tools.h>
Willy Tarreaua1718922020-06-04 16:25:31 +020066#include <haproxy/vars.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020067#include <haproxy/xref.h>
68
Thierry FOURNIER380d0932015-01-23 14:27:52 +010069
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +010070/* Lua uses longjmp to perform yield or throwing errors. This
71 * macro is used only for identifying the function that can
72 * not return because a longjmp is executed.
73 * __LJMP marks a prototype of hlua file that can use longjmp.
74 * WILL_LJMP() marks an lua function that will use longjmp.
75 * MAY_LJMP() marks an lua function that may use longjmp.
76 */
77#define __LJMP
Willy Tarreau4e7cc332018-10-20 17:45:48 +020078#define WILL_LJMP(func) do { func; my_unreachable(); } while(0)
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +010079#define MAY_LJMP(func) func
80
Thierry FOURNIERbabae282015-09-17 11:36:37 +020081/* This couple of function executes securely some Lua calls outside of
82 * the lua runtime environment. Each Lua call can return a longjmp
83 * if it encounter a memory error.
84 *
85 * Lua documentation extract:
86 *
87 * If an error happens outside any protected environment, Lua calls
88 * a panic function (see lua_atpanic) and then calls abort, thus
89 * exiting the host application. Your panic function can avoid this
90 * exit by never returning (e.g., doing a long jump to your own
91 * recovery point outside Lua).
92 *
93 * The panic function runs as if it were a message handler (see
Willy Tarreau3dfb7da2022-03-02 22:33:39 +010094 * #2.3); in particular, the error message is at the top of the
Thierry FOURNIERbabae282015-09-17 11:36:37 +020095 * stack. However, there is no guarantee about stack space. To push
96 * anything on the stack, the panic function must first check the
Willy Tarreau3dfb7da2022-03-02 22:33:39 +010097 * available space (see #4.2).
Thierry FOURNIERbabae282015-09-17 11:36:37 +020098 *
99 * We must check all the Lua entry point. This includes:
100 * - The include/proto/hlua.h exported functions
101 * - the task wrapper function
102 * - The action wrapper function
103 * - The converters wrapper function
104 * - The sample-fetch wrapper functions
105 *
Ilya Shipitsin46a030c2020-07-05 16:36:08 +0500106 * It is tolerated that the initialisation function returns an abort.
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -0800107 * Before each Lua abort, an error message is written on stderr.
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200108 *
109 * The macro SET_SAFE_LJMP initialise the longjmp. The Macro
110 * RESET_SAFE_LJMP reset the longjmp. These function must be macro
111 * because they must be exists in the program stack when the longjmp
112 * is called.
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +0200113 *
114 * Note that the Lua processing is not really thread safe. It provides
115 * heavy system which consists to add our own lock function in the Lua
116 * code and recompile the library. This system will probably not accepted
117 * by maintainers of various distribs.
118 *
Ilya Shipitsin856aabc2020-04-16 23:51:34 +0500119 * Our main execution point of the Lua is the function lua_resume(). A
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +0200120 * quick looking on the Lua sources displays a lua_lock() a the start
121 * of function and a lua_unlock() at the end of the function. So I
122 * conclude that the Lua thread safe mode just perform a mutex around
123 * all execution. So I prefer to do this in the HAProxy code, it will be
124 * easier for distro maintainers.
125 *
126 * Note that the HAProxy lua functions rounded by the macro SET_SAFE_LJMP
127 * and RESET_SAFE_LJMP manipulates the Lua stack, so it will be careful
128 * to set mutex around these functions.
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200129 */
Willy Tarreau86abe442018-11-25 20:12:18 +0100130__decl_spinlock(hlua_global_lock);
Thierry FOURNIERffbad792017-07-12 11:39:04 +0200131THREAD_LOCAL jmp_buf safe_ljmp_env;
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200132static int hlua_panic_safe(lua_State *L) { return 0; }
Willy Tarreau6a510902021-07-14 19:41:25 +0200133static int hlua_panic_ljmp(lua_State *L) { WILL_LJMP(longjmp(safe_ljmp_env, 1)); return 0; }
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200134
Thierry Fournier62a22aa2020-11-28 21:06:35 +0100135/* This is the chained list of struct hlua_function referenced
136 * for haproxy action, sample-fetches, converters, cli and
137 * applet bindings. It is used for a post-initialisation control.
138 */
139static struct list referenced_functions = LIST_HEAD_INIT(referenced_functions);
140
Thierry Fournierc7492592020-11-28 23:57:24 +0100141/* This variable is used only during initialization to identify the Lua state
142 * currently being initialized. 0 is the common lua state, 1 to n are the Lua
143 * states dedicated to each thread (in this case hlua_state_id==tid+1).
144 */
145static int hlua_state_id;
146
Thierry Fournier59f11be2020-11-29 00:37:41 +0100147/* This is a NULL-terminated list of lua file which are referenced to load per thread */
148static char **per_thread_load = NULL;
149
150lua_State *hlua_init_state(int thread_id);
151
Willy Tarreau1e7bef12021-08-20 15:47:25 +0200152/* This function takes the Lua global lock. Keep this function's visibility
153 * global so that it can appear in stack dumps and performance profiles!
154 */
155void lua_take_global_lock()
156{
157 HA_SPIN_LOCK(LUA_LOCK, &hlua_global_lock);
158}
159
160static inline void lua_drop_global_lock()
161{
162 HA_SPIN_UNLOCK(LUA_LOCK, &hlua_global_lock);
163}
164
Thierry Fournier7cbe5042020-11-28 17:02:21 +0100165#define SET_SAFE_LJMP_L(__L, __HLUA) \
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200166 ({ \
167 int ret; \
Thierry Fournier021d9862020-11-28 23:42:03 +0100168 if ((__HLUA)->state_id == 0) \
Willy Tarreau1e7bef12021-08-20 15:47:25 +0200169 lua_take_global_lock(); \
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200170 if (setjmp(safe_ljmp_env) != 0) { \
171 lua_atpanic(__L, hlua_panic_safe); \
172 ret = 0; \
Thierry Fournier021d9862020-11-28 23:42:03 +0100173 if ((__HLUA)->state_id == 0) \
Willy Tarreau1e7bef12021-08-20 15:47:25 +0200174 lua_drop_global_lock(); \
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200175 } else { \
176 lua_atpanic(__L, hlua_panic_ljmp); \
177 ret = 1; \
178 } \
179 ret; \
180 })
181
182/* If we are the last function catching Lua errors, we
183 * must reset the panic function.
184 */
Thierry Fournier7cbe5042020-11-28 17:02:21 +0100185#define RESET_SAFE_LJMP_L(__L, __HLUA) \
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200186 do { \
187 lua_atpanic(__L, hlua_panic_safe); \
Thierry Fournier021d9862020-11-28 23:42:03 +0100188 if ((__HLUA)->state_id == 0) \
Willy Tarreau1e7bef12021-08-20 15:47:25 +0200189 lua_drop_global_lock(); \
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200190 } while(0)
191
Thierry Fournier7cbe5042020-11-28 17:02:21 +0100192#define SET_SAFE_LJMP(__HLUA) \
193 SET_SAFE_LJMP_L((__HLUA)->T, __HLUA)
194
195#define RESET_SAFE_LJMP(__HLUA) \
196 RESET_SAFE_LJMP_L((__HLUA)->T, __HLUA)
197
198#define SET_SAFE_LJMP_PARENT(__HLUA) \
Thierry Fournier021d9862020-11-28 23:42:03 +0100199 SET_SAFE_LJMP_L(hlua_states[(__HLUA)->state_id], __HLUA)
Thierry Fournier7cbe5042020-11-28 17:02:21 +0100200
201#define RESET_SAFE_LJMP_PARENT(__HLUA) \
Thierry Fournier021d9862020-11-28 23:42:03 +0100202 RESET_SAFE_LJMP_L(hlua_states[(__HLUA)->state_id], __HLUA)
Thierry Fournier7cbe5042020-11-28 17:02:21 +0100203
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +0200204/* Applet status flags */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200205#define APPLET_DONE 0x01 /* applet processing is done. */
Christopher Faulet18c2e8d2019-03-01 12:02:08 +0100206/* unused: 0x02 */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200207#define APPLET_HDR_SENT 0x04 /* Response header sent. */
Christopher Fauleta2097962019-07-15 16:25:33 +0200208/* unused: 0x08, 0x10 */
Thierry FOURNIERd93ea2b2015-12-20 19:14:52 +0100209#define APPLET_HTTP11 0x20 /* Last chunk sent. */
Christopher Faulet56a3d6e2019-02-27 22:06:23 +0100210#define APPLET_RSP_SENT 0x40 /* The response was fully sent */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200211
Thierry Fournierafc63e22020-11-28 17:06:51 +0100212/* The main Lua execution context. The 0 index is the
213 * common state shared by all threads.
214 */
Willy Tarreau186f3762020-12-04 11:48:12 +0100215static lua_State *hlua_states[MAX_THREADS + 1];
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100216
Christopher Fauletc404f112020-02-26 15:03:09 +0100217#define HLUA_FLT_CB_FINAL 0x00000001
218#define HLUA_FLT_CB_RETVAL 0x00000002
219#define HLUA_FLT_CB_ARG_CHN 0x00000004
220#define HLUA_FLT_CB_ARG_HTTP_MSG 0x00000008
221
Christopher Faulet9f55a502020-02-25 15:21:02 +0100222#define HLUA_FLT_CTX_FL_PAYLOAD 0x00000001
223
Christopher Faulet69c581a2021-05-31 08:54:04 +0200224struct hlua_reg_filter {
225 char *name;
226 int flt_ref[MAX_THREADS + 1];
227 int fun_ref[MAX_THREADS + 1];
228 struct list l;
229};
230
231struct hlua_flt_config {
232 struct hlua_reg_filter *reg;
233 int ref[MAX_THREADS + 1];
234 char **args;
235};
236
237struct hlua_flt_ctx {
238 int ref; /* ref to the filter lua object */
239 struct hlua *hlua[2]; /* lua runtime context (0: request, 1: response) */
240 unsigned int cur_off[2]; /* current offset (0: request, 1: response) */
241 unsigned int cur_len[2]; /* current forwardable length (0: request, 1: response) */
242 unsigned int flags; /* HLUA_FLT_CTX_FL_* */
243};
244
245DECLARE_STATIC_POOL(pool_head_hlua_flt_ctx, "hlua_flt_ctx", sizeof(struct hlua_flt_ctx));
246
Christopher Faulet9f55a502020-02-25 15:21:02 +0100247static int hlua_filter_from_payload(struct filter *filter);
248
Christopher Faulet69c581a2021-05-31 08:54:04 +0200249/* This is the chained list of struct hlua_flt referenced
250 * for haproxy filters. It is used for a post-initialisation control.
251 */
252static struct list referenced_filters = LIST_HEAD_INIT(referenced_filters);
253
254
Thierry FOURNIERebed6e92016-12-16 11:54:07 +0100255/* This is the memory pool containing struct lua for applets
256 * (including cli).
257 */
Willy Tarreau8ceae722018-11-26 11:58:30 +0100258DECLARE_STATIC_POOL(pool_head_hlua, "hlua", sizeof(struct hlua));
Thierry FOURNIERebed6e92016-12-16 11:54:07 +0100259
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +0100260/* Used for Socket connection. */
Amaury Denoyelle239fdbf2021-03-24 10:22:03 +0100261static struct proxy *socket_proxy;
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +0100262static struct server *socket_tcp;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +0100263#ifdef USE_OPENSSL
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +0100264static struct server *socket_ssl;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +0100265#endif
266
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +0100267/* List head of the function called at the initialisation time. */
Thierry Fournierc7492592020-11-28 23:57:24 +0100268struct list hlua_init_functions[MAX_THREADS + 1];
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +0100269
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +0100270/* The following variables contains the reference of the different
271 * Lua classes. These references are useful for identify metadata
272 * associated with an object.
273 */
Thierry FOURNIER65f34c62015-02-16 20:11:43 +0100274static int class_txn_ref;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +0100275static int class_socket_ref;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +0100276static int class_channel_ref;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +0100277static int class_fetches_ref;
Thierry FOURNIER594afe72015-03-10 23:58:30 +0100278static int class_converters_ref;
Thierry FOURNIER08504f42015-03-16 14:17:08 +0100279static int class_http_ref;
Christopher Fauletdf97ac42020-02-26 16:57:19 +0100280static int class_http_msg_ref;
William Lallemand3956c4e2021-09-21 16:25:15 +0200281static int class_httpclient_ref;
Thierry FOURNIER3def3932015-04-07 11:27:54 +0200282static int class_map_ref;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +0200283static int class_applet_tcp_ref;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200284static int class_applet_http_ref;
Christopher Faulet700d9e82020-01-31 12:21:52 +0100285static int class_txn_reply_ref;
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +0100286
Thierry FOURNIERbd413492015-03-03 16:52:26 +0100287/* Global Lua execution timeout. By default Lua, execution linked
Willy Tarreau87b09662015-04-03 00:22:06 +0200288 * with stream (actions, sample-fetches and converters) have a
Thierry FOURNIERbd413492015-03-03 16:52:26 +0100289 * short timeout. Lua linked with tasks doesn't have a timeout
290 * because a task may remain alive during all the haproxy execution.
291 */
292static unsigned int hlua_timeout_session = 4000; /* session timeout. */
293static unsigned int hlua_timeout_task = TICK_ETERNITY; /* task timeout. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +0200294static unsigned int hlua_timeout_applet = 4000; /* applet timeout. */
Thierry FOURNIERbd413492015-03-03 16:52:26 +0100295
Thierry FOURNIERee9f8022015-03-03 17:37:37 +0100296/* Interrupts the Lua processing each "hlua_nb_instruction" instructions.
297 * it is used for preventing infinite loops.
298 *
299 * I test the scheer with an infinite loop containing one incrementation
300 * and one test. I run this loop between 10 seconds, I raise a ceil of
301 * 710M loops from one interrupt each 9000 instructions, so I fix the value
302 * to one interrupt each 10 000 instructions.
303 *
304 * configured | Number of
305 * instructions | loops executed
306 * between two | in milions
307 * forced yields |
308 * ---------------+---------------
309 * 10 | 160
310 * 500 | 670
311 * 1000 | 680
312 * 5000 | 700
313 * 7000 | 700
314 * 8000 | 700
315 * 9000 | 710 <- ceil
316 * 10000 | 710
317 * 100000 | 710
318 * 1000000 | 710
319 *
320 */
321static unsigned int hlua_nb_instruction = 10000;
322
Willy Tarreaucdb53462020-12-02 12:12:00 +0100323/* Descriptor for the memory allocation state. The limit is pre-initialised to
324 * 0 until it is replaced by "tune.lua.maxmem" during the config parsing, or it
325 * is replaced with ~0 during post_init after everything was loaded. This way
326 * it is guaranteed that if limit is ~0 the boot is complete and that if it's
327 * zero it's not yet limited and proper accounting is required.
Willy Tarreau32f61e22015-03-18 17:54:59 +0100328 */
329struct hlua_mem_allocator {
330 size_t allocated;
331 size_t limit;
332};
333
Willy Tarreaucdb53462020-12-02 12:12:00 +0100334static struct hlua_mem_allocator hlua_global_allocator THREAD_ALIGNED(64);
Willy Tarreau32f61e22015-03-18 17:54:59 +0100335
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100336/* These functions converts types between HAProxy internal args or
337 * sample and LUA types. Another function permits to check if the
338 * LUA stack contains arguments according with an required ARG_T
339 * format.
340 */
341static int hlua_arg2lua(lua_State *L, const struct arg *arg);
342static int hlua_lua2arg(lua_State *L, int ud, struct arg *arg);
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100343__LJMP static int hlua_lua2arg_check(lua_State *L, int first, struct arg *argp,
David Carlier0c437f42016-04-27 16:21:56 +0100344 uint64_t mask, struct proxy *p);
Willy Tarreau5eadada2015-03-10 17:28:54 +0100345static int hlua_smp2lua(lua_State *L, struct sample *smp);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100346static int hlua_smp2lua_str(lua_State *L, struct sample *smp);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100347static int hlua_lua2smp(lua_State *L, int ud, struct sample *smp);
348
Christopher Faulet9d1332b2020-02-24 16:46:16 +0100349__LJMP static int hlua_http_get_headers(lua_State *L, struct http_msg *msg);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200350
Thierry Fournier59f11be2020-11-29 00:37:41 +0100351struct prepend_path {
352 struct list l;
353 char *type;
354 char *path;
355};
356
357static struct list prepend_path_list = LIST_HEAD_INIT(prepend_path_list);
358
Thierry FOURNIER23bc3752015-09-11 19:15:43 +0200359#define SEND_ERR(__be, __fmt, __args...) \
360 do { \
361 send_log(__be, LOG_ERR, __fmt, ## __args); \
362 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) \
Christopher Faulet767a84b2017-11-24 16:50:31 +0100363 ha_alert(__fmt, ## __args); \
Thierry FOURNIER23bc3752015-09-11 19:15:43 +0200364 } while (0)
365
Thierry Fournier62a22aa2020-11-28 21:06:35 +0100366static inline struct hlua_function *new_hlua_function()
367{
368 struct hlua_function *fcn;
Thierry Fournierc7492592020-11-28 23:57:24 +0100369 int i;
Thierry Fournier62a22aa2020-11-28 21:06:35 +0100370
371 fcn = calloc(1, sizeof(*fcn));
372 if (!fcn)
373 return NULL;
Willy Tarreau2b718102021-04-21 07:32:39 +0200374 LIST_APPEND(&referenced_functions, &fcn->l);
Thierry Fournierc7492592020-11-28 23:57:24 +0100375 for (i = 0; i < MAX_THREADS + 1; i++)
376 fcn->function_ref[i] = -1;
Thierry Fournier62a22aa2020-11-28 21:06:35 +0100377 return fcn;
378}
379
Christopher Fauletdda44442021-04-12 14:05:43 +0200380static inline void release_hlua_function(struct hlua_function *fcn)
381{
382 if (!fcn)
383 return;
384 if (fcn->name)
385 ha_free(&fcn->name);
Willy Tarreau2b718102021-04-21 07:32:39 +0200386 LIST_DELETE(&fcn->l);
Christopher Fauletdda44442021-04-12 14:05:43 +0200387 ha_free(&fcn);
388}
389
Thierry Fournierc7492592020-11-28 23:57:24 +0100390/* If the common state is set, the stack id is 0, otherwise it is the tid + 1 */
391static inline int fcn_ref_to_stack_id(struct hlua_function *fcn)
392{
393 if (fcn->function_ref[0] == -1)
394 return tid + 1;
395 return 0;
396}
397
Christopher Faulet69c581a2021-05-31 08:54:04 +0200398/* Create a new registered filter. Only its name is filled */
399static inline struct hlua_reg_filter *new_hlua_reg_filter(const char *name)
400{
401 struct hlua_reg_filter *reg_flt;
402 int i;
403
404 reg_flt = calloc(1, sizeof(*reg_flt));
405 if (!reg_flt)
406 return NULL;
407 reg_flt->name = strdup(name);
408 if (!reg_flt->name) {
409 free(reg_flt);
410 return NULL;
411 }
412 LIST_APPEND(&referenced_filters, &reg_flt->l);
413 for (i = 0; i < MAX_THREADS + 1; i++) {
414 reg_flt->flt_ref[i] = -1;
415 reg_flt->fun_ref[i] = -1;
416 }
417 return reg_flt;
418}
419
420/* Release a registered filter */
421static inline void release_hlua_reg_filter(struct hlua_reg_filter *reg_flt)
422{
423 if (!reg_flt)
424 return;
425 if (reg_flt->name)
426 ha_free(&reg_flt->name);
427 LIST_DELETE(&reg_flt->l);
428 ha_free(&reg_flt);
429}
430
431/* If the common state is set, the stack id is 0, otherwise it is the tid + 1 */
432static inline int reg_flt_to_stack_id(struct hlua_reg_filter *reg_flt)
433{
434 if (reg_flt->fun_ref[0] == -1)
435 return tid + 1;
436 return 0;
437}
438
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100439/* Used to check an Lua function type in the stack. It creates and
440 * returns a reference of the function. This function throws an
441 * error if the rgument is not a "function".
442 */
443__LJMP unsigned int hlua_checkfunction(lua_State *L, int argno)
444{
445 if (!lua_isfunction(L, argno)) {
Thierry FOURNIERfd1e9552018-02-23 18:41:18 +0100446 const char *msg = lua_pushfstring(L, "function expected, got %s", luaL_typename(L, argno));
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100447 WILL_LJMP(luaL_argerror(L, argno, msg));
448 }
449 lua_pushvalue(L, argno);
450 return luaL_ref(L, LUA_REGISTRYINDEX);
451}
452
Christopher Fauletba9e21d2020-02-25 10:20:04 +0100453/* Used to check an Lua table type in the stack. It creates and
454 * returns a reference of the table. This function throws an
455 * error if the rgument is not a "table".
456 */
457__LJMP unsigned int hlua_checktable(lua_State *L, int argno)
458{
459 if (!lua_istable(L, argno)) {
460 const char *msg = lua_pushfstring(L, "table expected, got %s", luaL_typename(L, argno));
461 WILL_LJMP(luaL_argerror(L, argno, msg));
462 }
463 lua_pushvalue(L, argno);
464 return luaL_ref(L, LUA_REGISTRYINDEX);
465}
466
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200467/* Return the string that is of the top of the stack. */
468const char *hlua_get_top_error_string(lua_State *L)
469{
470 if (lua_gettop(L) < 1)
471 return "unknown error";
472 if (lua_type(L, -1) != LUA_TSTRING)
473 return "unknown error";
474 return lua_tostring(L, -1);
475}
476
Christopher Fauletd09cc512021-03-24 14:48:45 +0100477__LJMP const char *hlua_traceback(lua_State *L, const char* sep)
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200478{
479 lua_Debug ar;
480 int level = 0;
Willy Tarreau83061a82018-07-13 11:56:34 +0200481 struct buffer *msg = get_trash_chunk();
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200482
483 while (lua_getstack(L, level++, &ar)) {
484
485 /* Add separator */
Christopher Fauletd09cc512021-03-24 14:48:45 +0100486 if (b_data(msg))
487 chunk_appendf(msg, "%s", sep);
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200488
489 /* Fill fields:
490 * 'S': fills in the fields source, short_src, linedefined, lastlinedefined, and what;
491 * 'l': fills in the field currentline;
492 * 'n': fills in the field name and namewhat;
493 * 't': fills in the field istailcall;
494 */
495 lua_getinfo(L, "Slnt", &ar);
496
497 /* Append code localisation */
498 if (ar.currentline > 0)
Christopher Fauletd09cc512021-03-24 14:48:45 +0100499 chunk_appendf(msg, "%s:%d: ", ar.short_src, ar.currentline);
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200500 else
Christopher Fauletd09cc512021-03-24 14:48:45 +0100501 chunk_appendf(msg, "%s: ", ar.short_src);
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200502
503 /*
504 * Get function name
505 *
506 * if namewhat is no empty, name is defined.
507 * what contains "Lua" for Lua function, "C" for C function,
508 * or "main" for main code.
509 */
510 if (*ar.namewhat != '\0' && ar.name != NULL) /* is there a name from code? */
Christopher Fauletd09cc512021-03-24 14:48:45 +0100511 chunk_appendf(msg, "in %s '%s'", ar.namewhat, ar.name); /* use it */
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200512
513 else if (*ar.what == 'm') /* "main", the code is not executed in a function */
Christopher Fauletd09cc512021-03-24 14:48:45 +0100514 chunk_appendf(msg, "in main chunk");
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200515
516 else if (*ar.what != 'C') /* for Lua functions, use <file:line> */
Christopher Fauletd09cc512021-03-24 14:48:45 +0100517 chunk_appendf(msg, "in function line %d", ar.linedefined);
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200518
519 else /* nothing left... */
520 chunk_appendf(msg, "?");
521
522
523 /* Display tailed call */
524 if (ar.istailcall)
525 chunk_appendf(msg, " ...");
526 }
527
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200528 return msg->area;
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200529}
530
531
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100532/* This function check the number of arguments available in the
533 * stack. If the number of arguments available is not the same
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +0500534 * then <nb> an error is thrown.
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100535 */
536__LJMP static inline void check_args(lua_State *L, int nb, char *fcn)
537{
538 if (lua_gettop(L) == nb)
539 return;
540 WILL_LJMP(luaL_error(L, "'%s' needs %d arguments", fcn, nb));
541}
542
Mark Lakes22154b42018-01-29 14:38:40 -0800543/* This function pushes an error string prefixed by the file name
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100544 * and the line number where the error is encountered.
545 */
546static int hlua_pusherror(lua_State *L, const char *fmt, ...)
547{
548 va_list argp;
549 va_start(argp, fmt);
550 luaL_where(L, 1);
551 lua_pushvfstring(L, fmt, argp);
552 va_end(argp);
553 lua_concat(L, 2);
554 return 1;
555}
556
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100557/* This functions is used with sample fetch and converters. It
558 * converts the HAProxy configuration argument in a lua stack
559 * values.
560 *
561 * It takes an array of "arg", and each entry of the array is
562 * converted and pushed in the LUA stack.
563 */
564static int hlua_arg2lua(lua_State *L, const struct arg *arg)
565{
566 switch (arg->type) {
567 case ARGT_SINT:
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100568 case ARGT_TIME:
569 case ARGT_SIZE:
Thierry FOURNIERf90838b2015-03-06 13:48:32 +0100570 lua_pushinteger(L, arg->data.sint);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100571 break;
572
573 case ARGT_STR:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200574 lua_pushlstring(L, arg->data.str.area, arg->data.str.data);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100575 break;
576
577 case ARGT_IPV4:
578 case ARGT_IPV6:
579 case ARGT_MSK4:
580 case ARGT_MSK6:
581 case ARGT_FE:
582 case ARGT_BE:
583 case ARGT_TAB:
584 case ARGT_SRV:
585 case ARGT_USR:
586 case ARGT_MAP:
587 default:
588 lua_pushnil(L);
589 break;
590 }
591 return 1;
592}
593
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +0500594/* This function take one entry in an LUA stack at the index "ud",
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100595 * and try to convert it in an HAProxy argument entry. This is useful
Ilya Shipitsind4259502020-04-08 01:07:56 +0500596 * with sample fetch wrappers. The input arguments are given to the
597 * lua wrapper and converted as arg list by the function.
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100598 */
599static int hlua_lua2arg(lua_State *L, int ud, struct arg *arg)
600{
601 switch (lua_type(L, ud)) {
602
603 case LUA_TNUMBER:
604 case LUA_TBOOLEAN:
605 arg->type = ARGT_SINT;
606 arg->data.sint = lua_tointeger(L, ud);
607 break;
608
609 case LUA_TSTRING:
610 arg->type = ARGT_STR;
Tim Duesterhus2e89dec2019-09-29 23:03:08 +0200611 arg->data.str.area = (char *)lua_tolstring(L, ud, &arg->data.str.data);
Tim Duesterhus29d2e8a2019-09-29 23:03:07 +0200612 /* We don't know the actual size of the underlying allocation, so be conservative. */
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200613 arg->data.str.size = arg->data.str.data+1; /* count the terminating null byte */
Tim Duesterhus29d2e8a2019-09-29 23:03:07 +0200614 arg->data.str.head = 0;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100615 break;
616
617 case LUA_TUSERDATA:
618 case LUA_TNIL:
619 case LUA_TTABLE:
620 case LUA_TFUNCTION:
621 case LUA_TTHREAD:
622 case LUA_TLIGHTUSERDATA:
623 arg->type = ARGT_SINT;
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +0200624 arg->data.sint = 0;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100625 break;
626 }
627 return 1;
628}
629
630/* the following functions are used to convert a struct sample
631 * in Lua type. This useful to convert the return of the
Ilya Shipitsind4259502020-04-08 01:07:56 +0500632 * fetches or converters.
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100633 */
Willy Tarreau5eadada2015-03-10 17:28:54 +0100634static int hlua_smp2lua(lua_State *L, struct sample *smp)
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100635{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200636 switch (smp->data.type) {
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100637 case SMP_T_SINT:
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100638 case SMP_T_BOOL:
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200639 lua_pushinteger(L, smp->data.u.sint);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100640 break;
641
642 case SMP_T_BIN:
643 case SMP_T_STR:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200644 lua_pushlstring(L, smp->data.u.str.area, smp->data.u.str.data);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100645 break;
646
647 case SMP_T_METH:
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200648 switch (smp->data.u.meth.meth) {
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100649 case HTTP_METH_OPTIONS: lua_pushstring(L, "OPTIONS"); break;
650 case HTTP_METH_GET: lua_pushstring(L, "GET"); break;
651 case HTTP_METH_HEAD: lua_pushstring(L, "HEAD"); break;
652 case HTTP_METH_POST: lua_pushstring(L, "POST"); break;
653 case HTTP_METH_PUT: lua_pushstring(L, "PUT"); break;
654 case HTTP_METH_DELETE: lua_pushstring(L, "DELETE"); break;
655 case HTTP_METH_TRACE: lua_pushstring(L, "TRACE"); break;
656 case HTTP_METH_CONNECT: lua_pushstring(L, "CONNECT"); break;
657 case HTTP_METH_OTHER:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200658 lua_pushlstring(L, smp->data.u.meth.str.area, smp->data.u.meth.str.data);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100659 break;
660 default:
661 lua_pushnil(L);
662 break;
663 }
664 break;
665
666 case SMP_T_IPV4:
667 case SMP_T_IPV6:
668 case SMP_T_ADDR: /* This type is never used to qualify a sample. */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200669 if (sample_casts[smp->data.type][SMP_T_STR] &&
670 sample_casts[smp->data.type][SMP_T_STR](smp))
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200671 lua_pushlstring(L, smp->data.u.str.area, smp->data.u.str.data);
Willy Tarreau5eadada2015-03-10 17:28:54 +0100672 else
673 lua_pushnil(L);
674 break;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100675 default:
676 lua_pushnil(L);
677 break;
678 }
679 return 1;
680}
681
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100682/* the following functions are used to convert a struct sample
683 * in Lua strings. This is useful to convert the return of the
Ilya Shipitsind4259502020-04-08 01:07:56 +0500684 * fetches or converters.
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100685 */
686static int hlua_smp2lua_str(lua_State *L, struct sample *smp)
687{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200688 switch (smp->data.type) {
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100689
690 case SMP_T_BIN:
691 case SMP_T_STR:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200692 lua_pushlstring(L, smp->data.u.str.area, smp->data.u.str.data);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100693 break;
694
695 case SMP_T_METH:
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200696 switch (smp->data.u.meth.meth) {
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100697 case HTTP_METH_OPTIONS: lua_pushstring(L, "OPTIONS"); break;
698 case HTTP_METH_GET: lua_pushstring(L, "GET"); break;
699 case HTTP_METH_HEAD: lua_pushstring(L, "HEAD"); break;
700 case HTTP_METH_POST: lua_pushstring(L, "POST"); break;
701 case HTTP_METH_PUT: lua_pushstring(L, "PUT"); break;
702 case HTTP_METH_DELETE: lua_pushstring(L, "DELETE"); break;
703 case HTTP_METH_TRACE: lua_pushstring(L, "TRACE"); break;
704 case HTTP_METH_CONNECT: lua_pushstring(L, "CONNECT"); break;
705 case HTTP_METH_OTHER:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200706 lua_pushlstring(L, smp->data.u.meth.str.area, smp->data.u.meth.str.data);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100707 break;
708 default:
709 lua_pushstring(L, "");
710 break;
711 }
712 break;
713
714 case SMP_T_SINT:
715 case SMP_T_BOOL:
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100716 case SMP_T_IPV4:
717 case SMP_T_IPV6:
718 case SMP_T_ADDR: /* This type is never used to qualify a sample. */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200719 if (sample_casts[smp->data.type][SMP_T_STR] &&
720 sample_casts[smp->data.type][SMP_T_STR](smp))
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200721 lua_pushlstring(L, smp->data.u.str.area, smp->data.u.str.data);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100722 else
723 lua_pushstring(L, "");
724 break;
725 default:
726 lua_pushstring(L, "");
727 break;
728 }
729 return 1;
730}
731
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100732/* the following functions are used to convert an Lua type in a
733 * struct sample. This is useful to provide data from a converter
734 * to the LUA code.
735 */
736static int hlua_lua2smp(lua_State *L, int ud, struct sample *smp)
737{
738 switch (lua_type(L, ud)) {
739
740 case LUA_TNUMBER:
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200741 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200742 smp->data.u.sint = lua_tointeger(L, ud);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100743 break;
744
745
746 case LUA_TBOOLEAN:
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200747 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200748 smp->data.u.sint = lua_toboolean(L, ud);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100749 break;
750
751 case LUA_TSTRING:
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200752 smp->data.type = SMP_T_STR;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100753 smp->flags |= SMP_F_CONST;
Tim Duesterhus2e89dec2019-09-29 23:03:08 +0200754 smp->data.u.str.area = (char *)lua_tolstring(L, ud, &smp->data.u.str.data);
Tim Duesterhus29d2e8a2019-09-29 23:03:07 +0200755 /* We don't know the actual size of the underlying allocation, so be conservative. */
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200756 smp->data.u.str.size = smp->data.u.str.data+1; /* count the terminating null byte */
Tim Duesterhus29d2e8a2019-09-29 23:03:07 +0200757 smp->data.u.str.head = 0;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100758 break;
759
760 case LUA_TUSERDATA:
761 case LUA_TNIL:
762 case LUA_TTABLE:
763 case LUA_TFUNCTION:
764 case LUA_TTHREAD:
765 case LUA_TLIGHTUSERDATA:
Thierry FOURNIER93405e12015-08-26 14:19:03 +0200766 case LUA_TNONE:
767 default:
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200768 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200769 smp->data.u.sint = 0;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100770 break;
771 }
772 return 1;
773}
774
Ilya Shipitsind4259502020-04-08 01:07:56 +0500775/* This function check the "argp" built by another conversion function
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -0800776 * is in accord with the expected argp defined by the "mask". The function
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100777 * returns true or false. It can be adjust the types if there compatibles.
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100778 *
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +0500779 * This function assumes that the argp argument contains ARGM_NBARGS + 1
Willy Tarreauee0d7272021-07-16 10:26:56 +0200780 * entries and that there is at least one stop at the last position.
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100781 */
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100782__LJMP int hlua_lua2arg_check(lua_State *L, int first, struct arg *argp,
David Carlier0c437f42016-04-27 16:21:56 +0100783 uint64_t mask, struct proxy *p)
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100784{
785 int min_arg;
Willy Tarreauee0d7272021-07-16 10:26:56 +0200786 int idx;
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100787 struct proxy *px;
Christopher Fauletd25d9262020-08-06 11:04:46 +0200788 struct userlist *ul;
Christopher Fauletfd2e9062020-08-06 11:10:57 +0200789 struct my_regex *reg;
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200790 const char *msg = NULL;
Christopher Fauletfd2e9062020-08-06 11:10:57 +0200791 char *sname, *pname, *err = NULL;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100792
793 idx = 0;
794 min_arg = ARGM(mask);
795 mask >>= ARGM_BITS;
796
797 while (1) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200798 struct buffer tmp = BUF_NULL;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100799
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100800 /* Check for mandatory arguments. */
801 if (argp[idx].type == ARGT_STOP) {
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100802 if (idx < min_arg) {
803
804 /* If miss other argument than the first one, we return an error. */
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200805 if (idx > 0) {
806 msg = "Mandatory argument expected";
807 goto error;
808 }
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100809
810 /* If first argument have a certain type, some default values
811 * may be used. See the function smp_resolve_args().
812 */
813 switch (mask & ARGT_MASK) {
814
815 case ARGT_FE:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200816 if (!(p->cap & PR_CAP_FE)) {
817 msg = "Mandatory argument expected";
818 goto error;
819 }
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100820 argp[idx].data.prx = p;
821 argp[idx].type = ARGT_FE;
822 argp[idx+1].type = ARGT_STOP;
823 break;
824
825 case ARGT_BE:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200826 if (!(p->cap & PR_CAP_BE)) {
827 msg = "Mandatory argument expected";
828 goto error;
829 }
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100830 argp[idx].data.prx = p;
831 argp[idx].type = ARGT_BE;
832 argp[idx+1].type = ARGT_STOP;
833 break;
834
835 case ARGT_TAB:
836 argp[idx].data.prx = p;
837 argp[idx].type = ARGT_TAB;
838 argp[idx+1].type = ARGT_STOP;
839 break;
840
841 default:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200842 msg = "Mandatory argument expected";
843 goto error;
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100844 break;
845 }
846 }
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200847 break;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100848 }
849
Ilya Shipitsin856aabc2020-04-16 23:51:34 +0500850 /* Check for exceed the number of required argument. */
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100851 if ((mask & ARGT_MASK) == ARGT_STOP &&
852 argp[idx].type != ARGT_STOP) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200853 msg = "Last argument expected";
854 goto error;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100855 }
856
857 if ((mask & ARGT_MASK) == ARGT_STOP &&
858 argp[idx].type == ARGT_STOP) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200859 break;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100860 }
861
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200862 /* Convert some argument types. All string in argp[] are for not
863 * duplicated yet.
864 */
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100865 switch (mask & ARGT_MASK) {
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100866 case ARGT_SINT:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200867 if (argp[idx].type != ARGT_SINT) {
868 msg = "integer expected";
869 goto error;
870 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100871 argp[idx].type = ARGT_SINT;
872 break;
873
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100874 case ARGT_TIME:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200875 if (argp[idx].type != ARGT_SINT) {
876 msg = "integer expected";
877 goto error;
878 }
Thierry FOURNIER29176f32015-07-07 00:41:29 +0200879 argp[idx].type = ARGT_TIME;
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100880 break;
881
882 case ARGT_SIZE:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200883 if (argp[idx].type != ARGT_SINT) {
884 msg = "integer expected";
885 goto error;
886 }
Thierry FOURNIER29176f32015-07-07 00:41:29 +0200887 argp[idx].type = ARGT_SIZE;
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100888 break;
889
890 case ARGT_FE:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200891 if (argp[idx].type != ARGT_STR) {
892 msg = "string expected";
893 goto error;
894 }
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200895 argp[idx].data.prx = proxy_fe_by_name(argp[idx].data.str.area);
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200896 if (!argp[idx].data.prx) {
897 msg = "frontend doesn't exist";
898 goto error;
899 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100900 argp[idx].type = ARGT_FE;
901 break;
902
903 case ARGT_BE:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200904 if (argp[idx].type != ARGT_STR) {
905 msg = "string expected";
906 goto error;
907 }
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200908 argp[idx].data.prx = proxy_be_by_name(argp[idx].data.str.area);
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200909 if (!argp[idx].data.prx) {
910 msg = "backend doesn't exist";
911 goto error;
912 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100913 argp[idx].type = ARGT_BE;
914 break;
915
916 case ARGT_TAB:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200917 if (argp[idx].type != ARGT_STR) {
918 msg = "string expected";
919 goto error;
920 }
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200921 argp[idx].data.t = stktable_find_by_name(argp[idx].data.str.area);
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200922 if (!argp[idx].data.t) {
923 msg = "table doesn't exist";
924 goto error;
925 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100926 argp[idx].type = ARGT_TAB;
927 break;
928
929 case ARGT_SRV:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200930 if (argp[idx].type != ARGT_STR) {
931 msg = "string expected";
932 goto error;
933 }
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200934 sname = strrchr(argp[idx].data.str.area, '/');
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100935 if (sname) {
936 *sname++ = '\0';
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200937 pname = argp[idx].data.str.area;
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200938 px = proxy_be_by_name(pname);
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200939 if (!px) {
940 msg = "backend doesn't exist";
941 goto error;
942 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100943 }
944 else {
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200945 sname = argp[idx].data.str.area;
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100946 px = p;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100947 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100948 argp[idx].data.srv = findserver(px, sname);
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200949 if (!argp[idx].data.srv) {
950 msg = "server doesn't exist";
951 goto error;
952 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100953 argp[idx].type = ARGT_SRV;
954 break;
955
956 case ARGT_IPV4:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200957 if (argp[idx].type != ARGT_STR) {
958 msg = "string expected";
959 goto error;
960 }
961 if (inet_pton(AF_INET, argp[idx].data.str.area, &argp[idx].data.ipv4)) {
962 msg = "invalid IPv4 address";
963 goto error;
964 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100965 argp[idx].type = ARGT_IPV4;
966 break;
967
968 case ARGT_MSK4:
Christopher Faulete663a6e2020-08-07 09:11:22 +0200969 if (argp[idx].type == ARGT_SINT)
970 len2mask4(argp[idx].data.sint, &argp[idx].data.ipv4);
971 else if (argp[idx].type == ARGT_STR) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200972 if (!str2mask(argp[idx].data.str.area, &argp[idx].data.ipv4)) {
973 msg = "invalid IPv4 mask";
974 goto error;
975 }
976 }
977 else {
978 msg = "integer or string expected";
979 goto error;
Christopher Faulete663a6e2020-08-07 09:11:22 +0200980 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100981 argp[idx].type = ARGT_MSK4;
982 break;
983
984 case ARGT_IPV6:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200985 if (argp[idx].type != ARGT_STR) {
986 msg = "string expected";
987 goto error;
988 }
989 if (inet_pton(AF_INET6, argp[idx].data.str.area, &argp[idx].data.ipv6)) {
990 msg = "invalid IPv6 address";
991 goto error;
992 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100993 argp[idx].type = ARGT_IPV6;
994 break;
995
996 case ARGT_MSK6:
Christopher Faulete663a6e2020-08-07 09:11:22 +0200997 if (argp[idx].type == ARGT_SINT)
998 len2mask6(argp[idx].data.sint, &argp[idx].data.ipv6);
999 else if (argp[idx].type == ARGT_STR) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +02001000 if (!str2mask6(argp[idx].data.str.area, &argp[idx].data.ipv6)) {
1001 msg = "invalid IPv6 mask";
1002 goto error;
1003 }
1004 }
1005 else {
1006 msg = "integer or string expected";
1007 goto error;
Christopher Faulete663a6e2020-08-07 09:11:22 +02001008 }
Tim Duesterhusb814da62018-01-25 16:24:50 +01001009 argp[idx].type = ARGT_MSK6;
1010 break;
1011
Christopher Fauletfd2e9062020-08-06 11:10:57 +02001012 case ARGT_REG:
1013 if (argp[idx].type != ARGT_STR) {
1014 msg = "string expected";
1015 goto error;
1016 }
1017 reg = regex_comp(argp[idx].data.str.area, !(argp[idx].type_flags & ARGF_REG_ICASE), 1, &err);
1018 if (!reg) {
1019 msg = lua_pushfstring(L, "error compiling regex '%s' : '%s'",
1020 argp[idx].data.str.area, err);
1021 free(err);
1022 goto error;
1023 }
1024 argp[idx].type = ARGT_REG;
1025 argp[idx].data.reg = reg;
1026 break;
1027
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +01001028 case ARGT_USR:
Christopher Fauletd25d9262020-08-06 11:04:46 +02001029 if (argp[idx].type != ARGT_STR) {
1030 msg = "string expected";
1031 goto error;
1032 }
1033 if (p->uri_auth && p->uri_auth->userlist &&
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001034 strcmp(p->uri_auth->userlist->name, argp[idx].data.str.area) == 0)
Christopher Fauletd25d9262020-08-06 11:04:46 +02001035 ul = p->uri_auth->userlist;
1036 else
1037 ul = auth_find_userlist(argp[idx].data.str.area);
1038
1039 if (!ul) {
1040 msg = lua_pushfstring(L, "unable to find userlist '%s'", argp[idx].data.str.area);
1041 goto error;
1042 }
1043 argp[idx].type = ARGT_USR;
1044 argp[idx].data.usr = ul;
Christopher Fauletaec27ef2020-08-06 08:54:25 +02001045 break;
1046
1047 case ARGT_STR:
1048 if (!chunk_dup(&tmp, &argp[idx].data.str)) {
1049 msg = "unable to duplicate string arg";
1050 goto error;
1051 }
1052 argp[idx].data.str = tmp;
Thierry FOURNIER55da1652015-01-23 11:36:30 +01001053 break;
Christopher Fauletaec27ef2020-08-06 08:54:25 +02001054
Christopher Fauletd25d9262020-08-06 11:04:46 +02001055 case ARGT_MAP:
Christopher Fauletd25d9262020-08-06 11:04:46 +02001056 msg = "type not yet supported";
1057 goto error;
1058 break;
1059
Thierry FOURNIER55da1652015-01-23 11:36:30 +01001060 }
1061
1062 /* Check for type of argument. */
1063 if ((mask & ARGT_MASK) != argp[idx].type) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +02001064 msg = lua_pushfstring(L, "'%s' expected, got '%s'",
1065 arg_type_names[(mask & ARGT_MASK)],
1066 arg_type_names[argp[idx].type & ARGT_MASK]);
1067 goto error;
Thierry FOURNIER55da1652015-01-23 11:36:30 +01001068 }
1069
1070 /* Next argument. */
1071 mask >>= ARGT_BITS;
1072 idx++;
1073 }
Christopher Fauletaec27ef2020-08-06 08:54:25 +02001074 return 0;
1075
1076 error:
Willy Tarreauee0d7272021-07-16 10:26:56 +02001077 free_args(argp);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02001078 WILL_LJMP(luaL_argerror(L, first + idx, msg));
1079 return 0; /* Never reached */
Thierry FOURNIER55da1652015-01-23 11:36:30 +01001080}
1081
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001082/*
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001083 * The following functions are used to make correspondence between the the
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001084 * executed lua pointer and the "struct hlua *" that contain the context.
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001085 *
1086 * - hlua_gethlua : return the hlua context associated with an lua_State.
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001087 * - hlua_sethlua : create the association between hlua context and lua_state.
1088 */
1089static inline struct hlua *hlua_gethlua(lua_State *L)
1090{
Thierry FOURNIER38c5fd62015-03-10 02:40:29 +01001091 struct hlua **hlua = lua_getextraspace(L);
1092 return *hlua;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001093}
1094static inline void hlua_sethlua(struct hlua *hlua)
1095{
Thierry FOURNIER38c5fd62015-03-10 02:40:29 +01001096 struct hlua **hlua_store = lua_getextraspace(hlua->T);
1097 *hlua_store = hlua;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001098}
1099
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01001100/* This function is used to send logs. It try to send on screen (stderr)
1101 * and on the default syslog server.
1102 */
1103static inline void hlua_sendlog(struct proxy *px, int level, const char *msg)
1104{
1105 struct tm tm;
1106 char *p;
1107
1108 /* Cleanup the log message. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001109 p = trash.area;
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01001110 for (; *msg != '\0'; msg++, p++) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001111 if (p >= trash.area + trash.size - 1) {
Thierry FOURNIERccf00632015-09-16 12:47:03 +02001112 /* Break the message if exceed the buffer size. */
1113 *(p-4) = ' ';
1114 *(p-3) = '.';
1115 *(p-2) = '.';
1116 *(p-1) = '.';
1117 break;
1118 }
Willy Tarreau90807112020-02-25 08:16:33 +01001119 if (isprint((unsigned char)*msg))
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01001120 *p = *msg;
1121 else
1122 *p = '.';
1123 }
1124 *p = '\0';
1125
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001126 send_log(px, level, "%s\n", trash.area);
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01001127 if (!(global.mode & MODE_QUIET) || (global.mode & (MODE_VERBOSE | MODE_STARTING))) {
Christopher Fauletf98d8212020-10-02 18:13:52 +02001128 if (level == LOG_DEBUG && !(global.mode & MODE_DEBUG))
1129 return;
1130
Willy Tarreaua678b432015-08-28 10:14:59 +02001131 get_localtime(date.tv_sec, &tm);
1132 fprintf(stderr, "[%s] %03d/%02d%02d%02d (%d) : %s\n",
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01001133 log_levels[level], tm.tm_yday, tm.tm_hour, tm.tm_min, tm.tm_sec,
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001134 (int)getpid(), trash.area);
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01001135 fflush(stderr);
1136 }
1137}
1138
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001139/* This function just ensure that the yield will be always
1140 * returned with a timeout and permit to set some flags
1141 */
1142__LJMP void hlua_yieldk(lua_State *L, int nresults, int ctx,
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01001143 lua_KFunction k, int timeout, unsigned int flags)
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001144{
Thierry Fournier4234dbd2020-11-28 13:18:23 +01001145 struct hlua *hlua;
1146
1147 /* Get hlua struct, or NULL if we execute from main lua state */
1148 hlua = hlua_gethlua(L);
1149 if (!hlua) {
1150 return;
1151 }
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001152
1153 /* Set the wake timeout. If timeout is required, we set
1154 * the expiration time.
1155 */
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001156 hlua->wake_time = timeout;
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001157
Thierry FOURNIER4abd3ae2015-03-03 17:29:06 +01001158 hlua->flags |= flags;
1159
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001160 /* Process the yield. */
Willy Tarreau9635e032018-10-16 17:52:55 +02001161 MAY_LJMP(lua_yieldk(L, nresults, ctx, k));
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001162}
1163
Willy Tarreau87b09662015-04-03 00:22:06 +02001164/* This function initialises the Lua environment stored in the stream.
1165 * It must be called at the start of the stream. This function creates
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001166 * an LUA coroutine. It can not be use to crete the main LUA context.
Thierry FOURNIERbabae282015-09-17 11:36:37 +02001167 *
1168 * This function is particular. it initialises a new Lua thread. If the
1169 * initialisation fails (example: out of memory error), the lua function
1170 * throws an error (longjmp).
1171 *
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01001172 * In some case (at least one), this function can be called from safe
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05001173 * environment, so we must not initialise it. While the support of
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01001174 * threads appear, the safe environment set a lock to ensure only one
1175 * Lua execution at a time. If we initialize safe environment in another
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05001176 * safe environment, we have a dead lock.
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01001177 *
1178 * set "already_safe" true if the context is initialized form safe
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05001179 * Lua function.
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01001180 *
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001181 * This function manipulates two Lua stacks: the main and the thread. Only
Thierry FOURNIERbabae282015-09-17 11:36:37 +02001182 * the main stack can fail. The thread is not manipulated. This function
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001183 * MUST NOT manipulate the created thread stack state, because it is not
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05001184 * protected against errors thrown by the thread stack.
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001185 */
Thierry Fournier021d9862020-11-28 23:42:03 +01001186int hlua_ctx_init(struct hlua *lua, int state_id, struct task *task, int already_safe)
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001187{
1188 lua->Mref = LUA_REFNIL;
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01001189 lua->flags = 0;
Willy Tarreauf31af932020-01-14 09:59:38 +01001190 lua->gc_count = 0;
Christopher Fauletbc275a92020-02-26 14:55:16 +01001191 lua->wake_time = TICK_ETERNITY;
Thierry Fournier021d9862020-11-28 23:42:03 +01001192 lua->state_id = state_id;
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +01001193 LIST_INIT(&lua->com);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001194 if (!already_safe) {
1195 if (!SET_SAFE_LJMP_PARENT(lua)) {
1196 lua->Tref = LUA_REFNIL;
1197 return 0;
1198 }
1199 }
Thierry Fournier021d9862020-11-28 23:42:03 +01001200 lua->T = lua_newthread(hlua_states[state_id]);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001201 if (!lua->T) {
1202 lua->Tref = LUA_REFNIL;
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01001203 if (!already_safe)
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001204 RESET_SAFE_LJMP_PARENT(lua);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001205 return 0;
1206 }
1207 hlua_sethlua(lua);
Thierry Fournier021d9862020-11-28 23:42:03 +01001208 lua->Tref = luaL_ref(hlua_states[state_id], LUA_REGISTRYINDEX);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001209 lua->task = task;
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01001210 if (!already_safe)
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001211 RESET_SAFE_LJMP_PARENT(lua);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001212 return 1;
1213}
1214
Willy Tarreau87b09662015-04-03 00:22:06 +02001215/* Used to destroy the Lua coroutine when the attached stream or task
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001216 * is destroyed. The destroy also the memory context. The struct "lua"
1217 * is not freed.
1218 */
1219void hlua_ctx_destroy(struct hlua *lua)
1220{
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01001221 if (!lua)
Thierry FOURNIERa718b292015-03-04 16:48:34 +01001222 return;
1223
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01001224 if (!lua->T)
1225 goto end;
1226
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +01001227 /* Purge all the pending signals. */
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001228 notification_purge(&lua->com);
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +01001229
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001230 if (!SET_SAFE_LJMP(lua))
Thierry FOURNIER75d02082017-07-12 13:41:33 +02001231 return;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001232 luaL_unref(lua->T, LUA_REGISTRYINDEX, lua->Mref);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001233 RESET_SAFE_LJMP(lua);
Thierry FOURNIER5a50a852015-09-23 16:59:28 +02001234
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001235 if (!SET_SAFE_LJMP_PARENT(lua))
Thierry FOURNIER75d02082017-07-12 13:41:33 +02001236 return;
Thierry Fournier021d9862020-11-28 23:42:03 +01001237 luaL_unref(hlua_states[lua->state_id], LUA_REGISTRYINDEX, lua->Tref);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001238 RESET_SAFE_LJMP_PARENT(lua);
Thierry FOURNIER5a50a852015-09-23 16:59:28 +02001239 /* Forces a garbage collecting process. If the Lua program is finished
1240 * without error, we run the GC on the thread pointer. Its freed all
1241 * the unused memory.
1242 * If the thread is finnish with an error or is currently yielded,
1243 * it seems that the GC applied on the thread doesn't clean anything,
1244 * so e run the GC on the main thread.
1245 * NOTE: maybe this action locks all the Lua threads untiml the en of
1246 * the garbage collection.
1247 */
Willy Tarreauf31af932020-01-14 09:59:38 +01001248 if (lua->gc_count) {
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001249 if (!SET_SAFE_LJMP_PARENT(lua))
Thierry FOURNIER75d02082017-07-12 13:41:33 +02001250 return;
Thierry Fournier021d9862020-11-28 23:42:03 +01001251 lua_gc(hlua_states[lua->state_id], LUA_GCCOLLECT, 0);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001252 RESET_SAFE_LJMP_PARENT(lua);
Thierry FOURNIER7c39ab42015-09-27 22:53:33 +02001253 }
Thierry FOURNIER5a50a852015-09-23 16:59:28 +02001254
Thierry FOURNIERa7b536b2015-09-21 22:50:24 +02001255 lua->T = NULL;
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01001256
1257end:
Willy Tarreaubafbe012017-11-24 17:34:44 +01001258 pool_free(pool_head_hlua, lua);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001259}
1260
1261/* This function is used to restore the Lua context when a coroutine
1262 * fails. This function copy the common memory between old coroutine
1263 * and the new coroutine. The old coroutine is destroyed, and its
1264 * replaced by the new coroutine.
1265 * If the flag "keep_msg" is set, the last entry of the old is assumed
1266 * as string error message and it is copied in the new stack.
1267 */
1268static int hlua_ctx_renew(struct hlua *lua, int keep_msg)
1269{
1270 lua_State *T;
1271 int new_ref;
1272
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001273 /* New Lua coroutine. */
Thierry Fournier021d9862020-11-28 23:42:03 +01001274 T = lua_newthread(hlua_states[lua->state_id]);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001275 if (!T)
1276 return 0;
1277
1278 /* Copy last error message. */
1279 if (keep_msg)
1280 lua_xmove(lua->T, T, 1);
1281
1282 /* Copy data between the coroutines. */
1283 lua_rawgeti(lua->T, LUA_REGISTRYINDEX, lua->Mref);
1284 lua_xmove(lua->T, T, 1);
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05001285 new_ref = luaL_ref(T, LUA_REGISTRYINDEX); /* Value popped. */
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001286
1287 /* Destroy old data. */
1288 luaL_unref(lua->T, LUA_REGISTRYINDEX, lua->Mref);
1289
1290 /* The thread is garbage collected by Lua. */
Thierry Fournier021d9862020-11-28 23:42:03 +01001291 luaL_unref(hlua_states[lua->state_id], LUA_REGISTRYINDEX, lua->Tref);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001292
1293 /* Fill the struct with the new coroutine values. */
1294 lua->Mref = new_ref;
1295 lua->T = T;
Thierry Fournier021d9862020-11-28 23:42:03 +01001296 lua->Tref = luaL_ref(hlua_states[lua->state_id], LUA_REGISTRYINDEX);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001297
1298 /* Set context. */
1299 hlua_sethlua(lua);
1300
1301 return 1;
1302}
1303
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001304void hlua_hook(lua_State *L, lua_Debug *ar)
1305{
Thierry Fournier4234dbd2020-11-28 13:18:23 +01001306 struct hlua *hlua;
1307
1308 /* Get hlua struct, or NULL if we execute from main lua state */
1309 hlua = hlua_gethlua(L);
1310 if (!hlua)
1311 return;
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001312
1313 /* Lua cannot yield when its returning from a function,
1314 * so, we can fix the interrupt hook to 1 instruction,
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05001315 * expecting that the function is finished.
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001316 */
1317 if (lua_gethookmask(L) & LUA_MASKRET) {
1318 lua_sethook(hlua->T, hlua_hook, LUA_MASKCOUNT, 1);
1319 return;
1320 }
1321
1322 /* restore the interrupt condition. */
1323 lua_sethook(hlua->T, hlua_hook, LUA_MASKCOUNT, hlua_nb_instruction);
1324
1325 /* If we interrupt the Lua processing in yieldable state, we yield.
1326 * If the state is not yieldable, trying yield causes an error.
1327 */
1328 if (lua_isyieldable(L))
Willy Tarreau9635e032018-10-16 17:52:55 +02001329 MAY_LJMP(hlua_yieldk(L, 0, 0, NULL, TICK_ETERNITY, HLUA_CTRLYIELD));
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001330
Thierry FOURNIERa85cfb12015-03-13 14:50:06 +01001331 /* If we cannot yield, update the clock and check the timeout. */
Willy Tarreau55542642021-10-08 09:33:24 +02001332 clock_update_date(0, 1);
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001333 hlua->run_time += now_ms - hlua->start_time;
1334 if (hlua->max_time && hlua->run_time >= hlua->max_time) {
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001335 lua_pushfstring(L, "execution timeout");
1336 WILL_LJMP(lua_error(L));
1337 }
1338
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001339 /* Update the start time. */
1340 hlua->start_time = now_ms;
1341
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001342 /* Try to interrupt the process at the end of the current
1343 * unyieldable function.
1344 */
1345 lua_sethook(hlua->T, hlua_hook, LUA_MASKRET|LUA_MASKCOUNT, hlua_nb_instruction);
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001346}
1347
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001348/* This function start or resumes the Lua stack execution. If the flag
1349 * "yield_allowed" if no set and the LUA stack execution returns a yield
1350 * The function return an error.
1351 *
1352 * The function can returns 4 values:
1353 * - HLUA_E_OK : The execution is terminated without any errors.
1354 * - HLUA_E_AGAIN : The execution must continue at the next associated
1355 * task wakeup.
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001356 * - HLUA_E_ERRMSG : An error has occurred, an error message is set in
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001357 * the top of the stack.
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001358 * - HLUA_E_ERR : An error has occurred without error message.
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001359 *
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001360 * If an error occurred, the stack is renewed and it is ready to run new
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001361 * LUA code.
1362 */
1363static enum hlua_exec hlua_ctx_resume(struct hlua *lua, int yield_allowed)
1364{
Christopher Faulet08ed98f2020-07-28 10:33:25 +02001365#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504
1366 int nres;
1367#endif
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001368 int ret;
1369 const char *msg;
Thierry FOURNIERfc044c92018-06-07 14:40:48 +02001370 const char *trace;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001371
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001372 /* Initialise run time counter. */
1373 if (!HLUA_IS_RUNNING(lua))
1374 lua->run_time = 0;
Thierry FOURNIERdc9ca962015-03-05 11:16:52 +01001375
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +02001376 /* Lock the whole Lua execution. This lock must be before the
1377 * label "resume_execution".
1378 */
Thierry Fournier021d9862020-11-28 23:42:03 +01001379 if (lua->state_id == 0)
Willy Tarreau1e7bef12021-08-20 15:47:25 +02001380 lua_take_global_lock();
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +02001381
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001382resume_execution:
1383
1384 /* This hook interrupts the Lua processing each 'hlua_nb_instruction'
1385 * instructions. it is used for preventing infinite loops.
1386 */
1387 lua_sethook(lua->T, hlua_hook, LUA_MASKCOUNT, hlua_nb_instruction);
1388
Thierry FOURNIER1bfc09b2015-03-05 17:10:14 +01001389 /* Remove all flags except the running flags. */
Thierry FOURNIER2f3867f2015-09-28 01:02:01 +02001390 HLUA_SET_RUN(lua);
1391 HLUA_CLR_CTRLYIELD(lua);
1392 HLUA_CLR_WAKERESWR(lua);
1393 HLUA_CLR_WAKEREQWR(lua);
Christopher Faulet1f43a342021-08-04 17:58:21 +02001394 HLUA_CLR_NOYIELD(lua);
1395 if (!yield_allowed)
1396 HLUA_SET_NOYIELD(lua);
Thierry FOURNIER1bfc09b2015-03-05 17:10:14 +01001397
Christopher Fauletbc275a92020-02-26 14:55:16 +01001398 /* Update the start time and reset wake_time. */
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001399 lua->start_time = now_ms;
Christopher Fauletbc275a92020-02-26 14:55:16 +01001400 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001401
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001402 /* Call the function. */
Christopher Faulet08ed98f2020-07-28 10:33:25 +02001403#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504
Thierry Fournier021d9862020-11-28 23:42:03 +01001404 ret = lua_resume(lua->T, hlua_states[lua->state_id], lua->nargs, &nres);
Christopher Faulet08ed98f2020-07-28 10:33:25 +02001405#else
Thierry Fournier021d9862020-11-28 23:42:03 +01001406 ret = lua_resume(lua->T, hlua_states[lua->state_id], lua->nargs);
Christopher Faulet08ed98f2020-07-28 10:33:25 +02001407#endif
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001408 switch (ret) {
1409
1410 case LUA_OK:
1411 ret = HLUA_E_OK;
1412 break;
1413
1414 case LUA_YIELD:
Thierry FOURNIERdc9ca962015-03-05 11:16:52 +01001415 /* Check if the execution timeout is expired. It it is the case, we
1416 * break the Lua execution.
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001417 */
Willy Tarreau55542642021-10-08 09:33:24 +02001418 clock_update_date(0, 1);
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001419 lua->run_time += now_ms - lua->start_time;
1420 if (lua->max_time && lua->run_time > lua->max_time) {
Thierry FOURNIERdc9ca962015-03-05 11:16:52 +01001421 lua_settop(lua->T, 0); /* Empty the stack. */
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001422 ret = HLUA_E_ETMOUT;
Thierry FOURNIERdc9ca962015-03-05 11:16:52 +01001423 break;
1424 }
1425 /* Process the forced yield. if the general yield is not allowed or
1426 * if no task were associated this the current Lua execution
1427 * coroutine, we resume the execution. Else we want to return in the
1428 * scheduler and we want to be waked up again, to continue the
1429 * current Lua execution. So we schedule our own task.
1430 */
1431 if (HLUA_IS_CTRLYIELDING(lua)) {
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001432 if (!yield_allowed || !lua->task)
1433 goto resume_execution;
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001434 task_wakeup(lua->task, TASK_WOKEN_MSG);
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001435 }
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001436 if (!yield_allowed) {
1437 lua_settop(lua->T, 0); /* Empty the stack. */
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001438 ret = HLUA_E_YIELD;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001439 break;
1440 }
1441 ret = HLUA_E_AGAIN;
1442 break;
1443
1444 case LUA_ERRRUN:
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02001445
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001446 /* Special exit case. The traditional exit is returned as an error
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02001447 * because the errors ares the only one mean to return immediately
1448 * from and lua execution.
1449 */
1450 if (lua->flags & HLUA_EXIT) {
1451 ret = HLUA_E_OK;
Christopher Faulet7716cdf2020-01-29 11:53:30 +01001452 hlua_ctx_renew(lua, 1);
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02001453 break;
1454 }
1455
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001456 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001457 if (!lua_checkstack(lua->T, 1)) {
1458 ret = HLUA_E_ERR;
1459 break;
1460 }
1461 msg = lua_tostring(lua->T, -1);
1462 lua_settop(lua->T, 0); /* Empty the stack. */
1463 lua_pop(lua->T, 1);
Christopher Fauletd09cc512021-03-24 14:48:45 +01001464 trace = hlua_traceback(lua->T, ", ");
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001465 if (msg)
Thierry Fournier46278ff2020-11-29 11:48:12 +01001466 lua_pushfstring(lua->T, "[state-id %d] runtime error: %s from %s", lua->state_id, msg, trace);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001467 else
Thierry Fournier46278ff2020-11-29 11:48:12 +01001468 lua_pushfstring(lua->T, "[state-id %d] unknown runtime error from %s", lua->state_id, trace);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001469 ret = HLUA_E_ERRMSG;
1470 break;
1471
1472 case LUA_ERRMEM:
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001473 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001474 lua_settop(lua->T, 0); /* Empty the stack. */
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001475 ret = HLUA_E_NOMEM;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001476 break;
1477
1478 case LUA_ERRERR:
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001479 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001480 if (!lua_checkstack(lua->T, 1)) {
1481 ret = HLUA_E_ERR;
1482 break;
1483 }
1484 msg = lua_tostring(lua->T, -1);
1485 lua_settop(lua->T, 0); /* Empty the stack. */
1486 lua_pop(lua->T, 1);
1487 if (msg)
Thierry Fournier46278ff2020-11-29 11:48:12 +01001488 lua_pushfstring(lua->T, "[state-id %d] message handler error: %s", lua->state_id, msg);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001489 else
Thierry Fournier46278ff2020-11-29 11:48:12 +01001490 lua_pushfstring(lua->T, "[state-id %d] message handler error", lua->state_id);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001491 ret = HLUA_E_ERRMSG;
1492 break;
1493
1494 default:
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001495 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001496 lua_settop(lua->T, 0); /* Empty the stack. */
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001497 ret = HLUA_E_ERR;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001498 break;
1499 }
1500
1501 switch (ret) {
1502 case HLUA_E_AGAIN:
1503 break;
1504
1505 case HLUA_E_ERRMSG:
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001506 notification_purge(&lua->com);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001507 hlua_ctx_renew(lua, 1);
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01001508 HLUA_CLR_RUN(lua);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001509 break;
1510
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001511 case HLUA_E_ETMOUT:
1512 case HLUA_E_NOMEM:
1513 case HLUA_E_YIELD:
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001514 case HLUA_E_ERR:
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01001515 HLUA_CLR_RUN(lua);
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001516 notification_purge(&lua->com);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001517 hlua_ctx_renew(lua, 0);
1518 break;
1519
1520 case HLUA_E_OK:
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01001521 HLUA_CLR_RUN(lua);
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001522 notification_purge(&lua->com);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001523 break;
1524 }
1525
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +02001526 /* This is the main exit point, remove the Lua lock. */
Thierry Fournier021d9862020-11-28 23:42:03 +01001527 if (lua->state_id == 0)
Willy Tarreau1e7bef12021-08-20 15:47:25 +02001528 lua_drop_global_lock();
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +02001529
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001530 return ret;
1531}
1532
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02001533/* This function exit the current code. */
1534__LJMP static int hlua_done(lua_State *L)
1535{
Thierry Fournier4234dbd2020-11-28 13:18:23 +01001536 struct hlua *hlua;
1537
1538 /* Get hlua struct, or NULL if we execute from main lua state */
1539 hlua = hlua_gethlua(L);
1540 if (!hlua)
1541 return 0;
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02001542
1543 hlua->flags |= HLUA_EXIT;
1544 WILL_LJMP(lua_error(L));
1545
1546 return 0;
1547}
1548
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001549/* This function is an LUA binding. It provides a function
1550 * for deleting ACL from a referenced ACL file.
1551 */
1552__LJMP static int hlua_del_acl(lua_State *L)
1553{
1554 const char *name;
1555 const char *key;
1556 struct pat_ref *ref;
1557
1558 MAY_LJMP(check_args(L, 2, "del_acl"));
1559
1560 name = MAY_LJMP(luaL_checkstring(L, 1));
1561 key = MAY_LJMP(luaL_checkstring(L, 2));
1562
1563 ref = pat_ref_lookup(name);
1564 if (!ref)
Vincent Bernata72db182015-10-06 16:05:59 +02001565 WILL_LJMP(luaL_error(L, "'del_acl': unknown acl file '%s'", name));
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001566
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001567 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001568 pat_ref_delete(ref, key);
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001569 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001570 return 0;
1571}
1572
1573/* This function is an LUA binding. It provides a function
1574 * for deleting map entry from a referenced map file.
1575 */
1576static int hlua_del_map(lua_State *L)
1577{
1578 const char *name;
1579 const char *key;
1580 struct pat_ref *ref;
1581
1582 MAY_LJMP(check_args(L, 2, "del_map"));
1583
1584 name = MAY_LJMP(luaL_checkstring(L, 1));
1585 key = MAY_LJMP(luaL_checkstring(L, 2));
1586
1587 ref = pat_ref_lookup(name);
1588 if (!ref)
Vincent Bernata72db182015-10-06 16:05:59 +02001589 WILL_LJMP(luaL_error(L, "'del_map': unknown acl file '%s'", name));
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001590
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001591 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001592 pat_ref_delete(ref, key);
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001593 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001594 return 0;
1595}
1596
1597/* This function is an LUA binding. It provides a function
1598 * for adding ACL pattern from a referenced ACL file.
1599 */
1600static int hlua_add_acl(lua_State *L)
1601{
1602 const char *name;
1603 const char *key;
1604 struct pat_ref *ref;
1605
1606 MAY_LJMP(check_args(L, 2, "add_acl"));
1607
1608 name = MAY_LJMP(luaL_checkstring(L, 1));
1609 key = MAY_LJMP(luaL_checkstring(L, 2));
1610
1611 ref = pat_ref_lookup(name);
1612 if (!ref)
Vincent Bernata72db182015-10-06 16:05:59 +02001613 WILL_LJMP(luaL_error(L, "'add_acl': unknown acl file '%s'", name));
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001614
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001615 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001616 if (pat_ref_find_elt(ref, key) == NULL)
1617 pat_ref_add(ref, key, NULL, NULL);
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001618 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001619 return 0;
1620}
1621
1622/* This function is an LUA binding. It provides a function
1623 * for setting map pattern and sample from a referenced map
1624 * file.
1625 */
1626static int hlua_set_map(lua_State *L)
1627{
1628 const char *name;
1629 const char *key;
1630 const char *value;
1631 struct pat_ref *ref;
1632
1633 MAY_LJMP(check_args(L, 3, "set_map"));
1634
1635 name = MAY_LJMP(luaL_checkstring(L, 1));
1636 key = MAY_LJMP(luaL_checkstring(L, 2));
1637 value = MAY_LJMP(luaL_checkstring(L, 3));
1638
1639 ref = pat_ref_lookup(name);
1640 if (!ref)
Vincent Bernata72db182015-10-06 16:05:59 +02001641 WILL_LJMP(luaL_error(L, "'set_map': unknown map file '%s'", name));
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001642
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001643 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001644 if (pat_ref_find_elt(ref, key) != NULL)
1645 pat_ref_set(ref, key, value, NULL);
1646 else
1647 pat_ref_add(ref, key, value, NULL);
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001648 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001649 return 0;
1650}
1651
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01001652/* A class is a lot of memory that contain data. This data can be a table,
1653 * an integer or user data. This data is associated with a metatable. This
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001654 * metatable have an original version registered in the global context with
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01001655 * the name of the object (_G[<name>] = <metable> ).
1656 *
1657 * A metable is a table that modify the standard behavior of a standard
1658 * access to the associated data. The entries of this new metatable are
1659 * defined as is:
1660 *
1661 * http://lua-users.org/wiki/MetatableEvents
1662 *
1663 * __index
1664 *
1665 * we access an absent field in a table, the result is nil. This is
1666 * true, but it is not the whole truth. Actually, such access triggers
1667 * the interpreter to look for an __index metamethod: If there is no
1668 * such method, as usually happens, then the access results in nil;
1669 * otherwise, the metamethod will provide the result.
1670 *
1671 * Control 'prototype' inheritance. When accessing "myTable[key]" and
1672 * the key does not appear in the table, but the metatable has an __index
1673 * property:
1674 *
1675 * - if the value is a function, the function is called, passing in the
1676 * table and the key; the return value of that function is returned as
1677 * the result.
1678 *
1679 * - if the value is another table, the value of the key in that table is
1680 * asked for and returned (and if it doesn't exist in that table, but that
1681 * table's metatable has an __index property, then it continues on up)
1682 *
1683 * - Use "rawget(myTable,key)" to skip this metamethod.
1684 *
1685 * http://www.lua.org/pil/13.4.1.html
1686 *
1687 * __newindex
1688 *
1689 * Like __index, but control property assignment.
1690 *
1691 * __mode - Control weak references. A string value with one or both
1692 * of the characters 'k' and 'v' which specifies that the the
1693 * keys and/or values in the table are weak references.
1694 *
1695 * __call - Treat a table like a function. When a table is followed by
1696 * parenthesis such as "myTable( 'foo' )" and the metatable has
1697 * a __call key pointing to a function, that function is invoked
1698 * (passing any specified arguments) and the return value is
1699 * returned.
1700 *
1701 * __metatable - Hide the metatable. When "getmetatable( myTable )" is
1702 * called, if the metatable for myTable has a __metatable
1703 * key, the value of that key is returned instead of the
1704 * actual metatable.
1705 *
1706 * __tostring - Control string representation. When the builtin
1707 * "tostring( myTable )" function is called, if the metatable
1708 * for myTable has a __tostring property set to a function,
1709 * that function is invoked (passing myTable to it) and the
1710 * return value is used as the string representation.
1711 *
1712 * __len - Control table length. When the table length is requested using
1713 * the length operator ( '#' ), if the metatable for myTable has
1714 * a __len key pointing to a function, that function is invoked
1715 * (passing myTable to it) and the return value used as the value
1716 * of "#myTable".
1717 *
1718 * __gc - Userdata finalizer code. When userdata is set to be garbage
1719 * collected, if the metatable has a __gc field pointing to a
1720 * function, that function is first invoked, passing the userdata
1721 * to it. The __gc metamethod is not called for tables.
1722 * (See http://lua-users.org/lists/lua-l/2006-11/msg00508.html)
1723 *
1724 * Special metamethods for redefining standard operators:
1725 * http://www.lua.org/pil/13.1.html
1726 *
1727 * __add "+"
1728 * __sub "-"
1729 * __mul "*"
1730 * __div "/"
1731 * __unm "!"
1732 * __pow "^"
1733 * __concat ".."
1734 *
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05001735 * Special methods for redefining standard relations
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01001736 * http://www.lua.org/pil/13.2.html
1737 *
1738 * __eq "=="
1739 * __lt "<"
1740 * __le "<="
1741 */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001742
1743/*
1744 *
1745 *
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001746 * Class Map
1747 *
1748 *
1749 */
1750
1751/* Returns a struct hlua_map if the stack entry "ud" is
1752 * a class session, otherwise it throws an error.
1753 */
1754__LJMP static struct map_descriptor *hlua_checkmap(lua_State *L, int ud)
1755{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02001756 return MAY_LJMP(hlua_checkudata(L, ud, class_map_ref));
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001757}
1758
1759/* This function is the map constructor. It don't need
1760 * the class Map object. It creates and return a new Map
1761 * object. It must be called only during "body" or "init"
1762 * context because it process some filesystem accesses.
1763 */
1764__LJMP static int hlua_map_new(struct lua_State *L)
1765{
1766 const char *fn;
1767 int match = PAT_MATCH_STR;
1768 struct sample_conv conv;
1769 const char *file = "";
1770 int line = 0;
1771 lua_Debug ar;
1772 char *err = NULL;
1773 struct arg args[2];
1774
1775 if (lua_gettop(L) < 1 || lua_gettop(L) > 2)
1776 WILL_LJMP(luaL_error(L, "'new' needs at least 1 argument."));
1777
1778 fn = MAY_LJMP(luaL_checkstring(L, 1));
1779
1780 if (lua_gettop(L) >= 2) {
1781 match = MAY_LJMP(luaL_checkinteger(L, 2));
1782 if (match < 0 || match >= PAT_MATCH_NUM)
1783 WILL_LJMP(luaL_error(L, "'new' needs a valid match method."));
1784 }
1785
1786 /* Get Lua filename and line number. */
1787 if (lua_getstack(L, 1, &ar)) { /* check function at level */
1788 lua_getinfo(L, "Sl", &ar); /* get info about it */
1789 if (ar.currentline > 0) { /* is there info? */
1790 file = ar.short_src;
1791 line = ar.currentline;
1792 }
1793 }
1794
1795 /* fill fake sample_conv struct. */
1796 conv.kw = ""; /* unused. */
1797 conv.process = NULL; /* unused. */
1798 conv.arg_mask = 0; /* unused. */
1799 conv.val_args = NULL; /* unused. */
1800 conv.out_type = SMP_T_STR;
1801 conv.private = (void *)(long)match;
1802 switch (match) {
1803 case PAT_MATCH_STR: conv.in_type = SMP_T_STR; break;
1804 case PAT_MATCH_BEG: conv.in_type = SMP_T_STR; break;
1805 case PAT_MATCH_SUB: conv.in_type = SMP_T_STR; break;
1806 case PAT_MATCH_DIR: conv.in_type = SMP_T_STR; break;
1807 case PAT_MATCH_DOM: conv.in_type = SMP_T_STR; break;
1808 case PAT_MATCH_END: conv.in_type = SMP_T_STR; break;
1809 case PAT_MATCH_REG: conv.in_type = SMP_T_STR; break;
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001810 case PAT_MATCH_INT: conv.in_type = SMP_T_SINT; break;
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001811 case PAT_MATCH_IP: conv.in_type = SMP_T_ADDR; break;
1812 default:
1813 WILL_LJMP(luaL_error(L, "'new' doesn't support this match mode."));
1814 }
1815
1816 /* fill fake args. */
1817 args[0].type = ARGT_STR;
Christopher Faulet73292e92020-08-06 08:40:09 +02001818 args[0].data.str.area = strdup(fn);
1819 args[0].data.str.data = strlen(fn);
1820 args[0].data.str.size = args[0].data.str.data+1;
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001821 args[1].type = ARGT_STOP;
1822
1823 /* load the map. */
1824 if (!sample_load_map(args, &conv, file, line, &err)) {
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001825 /* error case: we can't use luaL_error because we must
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001826 * free the err variable.
1827 */
1828 luaL_where(L, 1);
1829 lua_pushfstring(L, "'new': %s.", err);
1830 lua_concat(L, 2);
1831 free(err);
Christopher Faulet6ad7df42020-08-07 11:45:18 +02001832 chunk_destroy(&args[0].data.str);
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001833 WILL_LJMP(lua_error(L));
1834 }
1835
1836 /* create the lua object. */
1837 lua_newtable(L);
1838 lua_pushlightuserdata(L, args[0].data.map);
1839 lua_rawseti(L, -2, 0);
1840
1841 /* Pop a class Map metatable and affect it to the userdata. */
1842 lua_rawgeti(L, LUA_REGISTRYINDEX, class_map_ref);
1843 lua_setmetatable(L, -2);
1844
1845
1846 return 1;
1847}
1848
1849__LJMP static inline int _hlua_map_lookup(struct lua_State *L, int str)
1850{
1851 struct map_descriptor *desc;
1852 struct pattern *pat;
1853 struct sample smp;
1854
1855 MAY_LJMP(check_args(L, 2, "lookup"));
1856 desc = MAY_LJMP(hlua_checkmap(L, 1));
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001857 if (desc->pat.expect_type == SMP_T_SINT) {
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001858 smp.data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001859 smp.data.u.sint = MAY_LJMP(luaL_checkinteger(L, 2));
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001860 }
1861 else {
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001862 smp.data.type = SMP_T_STR;
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001863 smp.flags = SMP_F_CONST;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001864 smp.data.u.str.area = (char *)MAY_LJMP(luaL_checklstring(L, 2, (size_t *)&smp.data.u.str.data));
Thierry Fournier91dc0c02020-11-10 20:38:20 +01001865 smp.data.u.str.size = smp.data.u.str.data + 1;
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001866 }
1867
1868 pat = pattern_exec_match(&desc->pat, &smp, 1);
Thierry FOURNIER503bb092015-08-19 08:35:43 +02001869 if (!pat || !pat->data) {
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001870 if (str)
1871 lua_pushstring(L, "");
1872 else
1873 lua_pushnil(L);
1874 return 1;
1875 }
1876
1877 /* The Lua pattern must return a string, so we can't check the returned type */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001878 lua_pushlstring(L, pat->data->u.str.area, pat->data->u.str.data);
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001879 return 1;
1880}
1881
1882__LJMP static int hlua_map_lookup(struct lua_State *L)
1883{
1884 return _hlua_map_lookup(L, 0);
1885}
1886
1887__LJMP static int hlua_map_slookup(struct lua_State *L)
1888{
1889 return _hlua_map_lookup(L, 1);
1890}
1891
1892/*
1893 *
1894 *
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001895 * Class Socket
1896 *
1897 *
1898 */
1899
1900__LJMP static struct hlua_socket *hlua_checksocket(lua_State *L, int ud)
1901{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02001902 return MAY_LJMP(hlua_checkudata(L, ud, class_socket_ref));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001903}
1904
1905/* This function is the handler called for each I/O on the established
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001906 * connection. It is used for notify space available to send or data
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001907 * received.
1908 */
Willy Tarreau00a37f02015-04-13 12:05:19 +02001909static void hlua_socket_handler(struct appctx *appctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001910{
Christopher Faulet908628c2022-03-25 16:43:49 +01001911 struct conn_stream *cs = appctx->owner;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001912
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02001913 if (appctx->ctx.hlua_cosocket.die) {
Christopher Fauletda098e62022-03-31 17:44:45 +02001914 cs_shutw(cs);
1915 cs_shutr(cs);
Christopher Faulet908628c2022-03-25 16:43:49 +01001916 cs_ic(cs)->flags |= CF_READ_NULL;
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001917 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read);
1918 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write);
Christopher Faulet908628c2022-03-25 16:43:49 +01001919 stream_shutdown(__cs_strm(cs), SF_ERR_KILLED);
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02001920 }
1921
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001922 /* If we can't write, wakeup the pending write signals. */
Christopher Faulet908628c2022-03-25 16:43:49 +01001923 if (channel_output_closed(cs_ic(cs)))
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001924 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write);
Thierry FOURNIER6d695e62015-09-27 19:29:38 +02001925
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001926 /* If we can't read, wakeup the pending read signals. */
Christopher Faulet908628c2022-03-25 16:43:49 +01001927 if (channel_input_closed(cs_oc(cs)))
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001928 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read);
Thierry FOURNIER6d695e62015-09-27 19:29:38 +02001929
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02001930 /* if the connection is not established, inform the stream that we want
Thierry FOURNIER316e3192015-09-04 18:25:53 +02001931 * to be notified whenever the connection completes.
1932 */
Christopher Faulet62e75742022-03-31 09:16:34 +02001933 if (cs_opposite(cs)->state < CS_ST_EST) {
Christopher Fauleta0bdec32022-04-04 07:51:21 +02001934 cs_cant_get(cs);
1935 cs_rx_conn_blk(cs);
1936 cs_rx_endp_more(cs);
Willy Tarreaud4da1962015-04-20 01:31:23 +02001937 return;
Thierry FOURNIER316e3192015-09-04 18:25:53 +02001938 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001939
1940 /* This function is called after the connect. */
Thierry FOURNIER18d09902016-12-16 09:25:38 +01001941 appctx->ctx.hlua_cosocket.connected = 1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001942
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001943 /* Wake the tasks which wants to write if the buffer have available space. */
Christopher Faulet908628c2022-03-25 16:43:49 +01001944 if (channel_may_recv(cs_ic(cs)))
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001945 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001946
1947 /* Wake the tasks which wants to read if the buffer contains data. */
Christopher Faulet908628c2022-03-25 16:43:49 +01001948 if (!channel_is_empty(cs_oc(cs)))
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001949 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read);
Thierry FOURNIER101b9762018-05-27 01:27:40 +02001950
1951 /* Some data were injected in the buffer, notify the stream
1952 * interface.
1953 */
Christopher Faulet908628c2022-03-25 16:43:49 +01001954 if (!channel_is_empty(cs_ic(cs)))
Christopher Faulet13045f02022-04-01 14:23:38 +02001955 cs_update(cs);
Thierry FOURNIER101b9762018-05-27 01:27:40 +02001956
1957 /* If write notifications are registered, we considers we want
Willy Tarreau3367d412018-11-15 10:57:41 +01001958 * to write, so we clear the blocking flag.
Thierry FOURNIER101b9762018-05-27 01:27:40 +02001959 */
1960 if (notification_registered(&appctx->ctx.hlua_cosocket.wake_on_write))
Christopher Fauleta0bdec32022-04-04 07:51:21 +02001961 cs_rx_endp_more(cs);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001962}
1963
Willy Tarreau87b09662015-04-03 00:22:06 +02001964/* This function is called when the "struct stream" is destroyed.
1965 * Remove the link from the object to this stream.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001966 * Wake all the pending signals.
1967 */
Willy Tarreau00a37f02015-04-13 12:05:19 +02001968static void hlua_socket_release(struct appctx *appctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001969{
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001970 struct xref *peer;
1971
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001972 /* Remove my link in the original object. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001973 peer = xref_get_peer_and_lock(&appctx->ctx.hlua_cosocket.xref);
1974 if (peer)
1975 xref_disconnect(&appctx->ctx.hlua_cosocket.xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001976
1977 /* Wake all the task waiting for me. */
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001978 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read);
1979 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001980}
1981
1982/* If the garbage collectio of the object is launch, nobody
Willy Tarreau87b09662015-04-03 00:22:06 +02001983 * uses this object. If the stream does not exists, just quit.
1984 * Send the shutdown signal to the stream. In some cases,
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001985 * pending signal can rest in the read and write lists. destroy
1986 * it.
1987 */
1988__LJMP static int hlua_socket_gc(lua_State *L)
1989{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001990 struct hlua_socket *socket;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001991 struct appctx *appctx;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001992 struct xref *peer;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001993
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001994 MAY_LJMP(check_args(L, 1, "__gc"));
1995
1996 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001997 peer = xref_get_peer_and_lock(&socket->xref);
1998 if (!peer)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001999 return 0;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002000 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002001
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002002 /* Set the flag which destroy the session. */
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02002003 appctx->ctx.hlua_cosocket.die = 1;
2004 appctx_wakeup(appctx);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002005
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002006 /* Remove all reference between the Lua stack and the coroutine stream. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002007 xref_disconnect(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002008 return 0;
2009}
2010
2011/* The close function send shutdown signal and break the
Willy Tarreau87b09662015-04-03 00:22:06 +02002012 * links between the stream and the object.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002013 */
sada05ed3302018-05-11 11:48:18 -07002014__LJMP static int hlua_socket_close_helper(lua_State *L)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002015{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002016 struct hlua_socket *socket;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002017 struct appctx *appctx;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002018 struct xref *peer;
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002019 struct hlua *hlua;
2020
2021 /* Get hlua struct, or NULL if we execute from main lua state */
2022 hlua = hlua_gethlua(L);
2023 if (!hlua)
2024 return 0;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002025
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002026 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002027
2028 /* Check if we run on the same thread than the xreator thread.
2029 * We cannot access to the socket if the thread is different.
2030 */
2031 if (socket->tid != tid)
2032 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2033
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002034 peer = xref_get_peer_and_lock(&socket->xref);
2035 if (!peer)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002036 return 0;
Willy Tarreauf31af932020-01-14 09:59:38 +01002037
2038 hlua->gc_count--;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002039 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002040
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002041 /* Set the flag which destroy the session. */
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02002042 appctx->ctx.hlua_cosocket.die = 1;
2043 appctx_wakeup(appctx);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002044
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002045 /* Remove all reference between the Lua stack and the coroutine stream. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002046 xref_disconnect(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002047 return 0;
2048}
2049
sada05ed3302018-05-11 11:48:18 -07002050/* The close function calls close_helper.
2051 */
2052__LJMP static int hlua_socket_close(lua_State *L)
2053{
2054 MAY_LJMP(check_args(L, 1, "close"));
2055 return hlua_socket_close_helper(L);
2056}
2057
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002058/* This Lua function assumes that the stack contain three parameters.
2059 * 1 - USERDATA containing a struct socket
2060 * 2 - INTEGER with values of the macro defined below
2061 * If the integer is -1, we must read at most one line.
2062 * If the integer is -2, we ust read all the data until the
2063 * end of the stream.
2064 * If the integer is positive value, we must read a number of
2065 * bytes corresponding to this value.
2066 */
2067#define HLSR_READ_LINE (-1)
2068#define HLSR_READ_ALL (-2)
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002069__LJMP static int hlua_socket_receive_yield(struct lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002070{
2071 struct hlua_socket *socket = MAY_LJMP(hlua_checksocket(L, 1));
2072 int wanted = lua_tointeger(L, 2);
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002073 struct hlua *hlua;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002074 struct appctx *appctx;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02002075 size_t len;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002076 int nblk;
Willy Tarreau206ba832018-06-14 15:27:31 +02002077 const char *blk1;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02002078 size_t len1;
Willy Tarreau206ba832018-06-14 15:27:31 +02002079 const char *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02002080 size_t len2;
Thierry FOURNIER00543922015-03-09 18:35:06 +01002081 int skip_at_end = 0;
Willy Tarreau81389672015-03-10 12:03:52 +01002082 struct channel *oc;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002083 struct stream *s;
2084 struct xref *peer;
Thierry FOURNIER8c126c72018-05-25 16:27:44 +02002085 int missing_bytes;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002086
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002087 /* Get hlua struct, or NULL if we execute from main lua state */
2088 hlua = hlua_gethlua(L);
2089
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002090 /* Check if this lua stack is schedulable. */
2091 if (!hlua || !hlua->task)
2092 WILL_LJMP(luaL_error(L, "The 'receive' function is only allowed in "
2093 "'frontend', 'backend' or 'task'"));
2094
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002095 /* Check if we run on the same thread than the xreator thread.
2096 * We cannot access to the socket if the thread is different.
2097 */
2098 if (socket->tid != tid)
2099 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2100
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002101 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002102 peer = xref_get_peer_and_lock(&socket->xref);
2103 if (!peer)
2104 goto no_peer;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002105 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
Christopher Faulet908628c2022-03-25 16:43:49 +01002106 s = __cs_strm(appctx->owner);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002107
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002108 oc = &s->res;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002109 if (wanted == HLSR_READ_LINE) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002110 /* Read line. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02002111 nblk = co_getline_nc(oc, &blk1, &len1, &blk2, &len2);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002112 if (nblk < 0) /* Connection close. */
2113 goto connection_closed;
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002114 if (nblk == 0) /* No data available. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002115 goto connection_empty;
Thierry FOURNIER00543922015-03-09 18:35:06 +01002116
2117 /* remove final \r\n. */
2118 if (nblk == 1) {
2119 if (blk1[len1-1] == '\n') {
2120 len1--;
2121 skip_at_end++;
2122 if (blk1[len1-1] == '\r') {
2123 len1--;
2124 skip_at_end++;
2125 }
2126 }
2127 }
2128 else {
2129 if (blk2[len2-1] == '\n') {
2130 len2--;
2131 skip_at_end++;
2132 if (blk2[len2-1] == '\r') {
2133 len2--;
2134 skip_at_end++;
2135 }
2136 }
2137 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002138 }
2139
2140 else if (wanted == HLSR_READ_ALL) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002141 /* Read all the available data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02002142 nblk = co_getblk_nc(oc, &blk1, &len1, &blk2, &len2);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002143 if (nblk < 0) /* Connection close. */
2144 goto connection_closed;
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002145 if (nblk == 0) /* No data available. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002146 goto connection_empty;
2147 }
2148
2149 else {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002150 /* Read a block of data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02002151 nblk = co_getblk_nc(oc, &blk1, &len1, &blk2, &len2);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002152 if (nblk < 0) /* Connection close. */
2153 goto connection_closed;
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002154 if (nblk == 0) /* No data available. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002155 goto connection_empty;
2156
Thierry FOURNIER8c126c72018-05-25 16:27:44 +02002157 missing_bytes = wanted - socket->b.n;
2158 if (len1 > missing_bytes) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002159 nblk = 1;
Thierry FOURNIER8c126c72018-05-25 16:27:44 +02002160 len1 = missing_bytes;
2161 } if (nblk == 2 && len1 + len2 > missing_bytes)
2162 len2 = missing_bytes - len1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002163 }
2164
2165 len = len1;
2166
2167 luaL_addlstring(&socket->b, blk1, len1);
2168 if (nblk == 2) {
2169 len += len2;
2170 luaL_addlstring(&socket->b, blk2, len2);
2171 }
2172
2173 /* Consume data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02002174 co_skip(oc, len + skip_at_end);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002175
2176 /* Don't wait anything. */
Thierry FOURNIER7e4ee472018-05-25 15:03:50 +02002177 appctx_wakeup(appctx);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002178
2179 /* If the pattern reclaim to read all the data
2180 * in the connection, got out.
2181 */
2182 if (wanted == HLSR_READ_ALL)
2183 goto connection_empty;
Thierry FOURNIER8c126c72018-05-25 16:27:44 +02002184 else if (wanted >= 0 && socket->b.n < wanted)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002185 goto connection_empty;
2186
2187 /* Return result. */
2188 luaL_pushresult(&socket->b);
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002189 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002190 return 1;
2191
2192connection_closed:
2193
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002194 xref_unlock(&socket->xref, peer);
2195
2196no_peer:
2197
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002198 /* If the buffer containds data. */
2199 if (socket->b.n > 0) {
2200 luaL_pushresult(&socket->b);
2201 return 1;
2202 }
2203 lua_pushnil(L);
2204 lua_pushstring(L, "connection closed.");
2205 return 2;
2206
2207connection_empty:
2208
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002209 if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_read, hlua->task)) {
2210 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002211 WILL_LJMP(luaL_error(L, "out of memory"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002212 }
2213 xref_unlock(&socket->xref, peer);
Willy Tarreau9635e032018-10-16 17:52:55 +02002214 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_receive_yield, TICK_ETERNITY, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002215 return 0;
2216}
2217
Tim Duesterhusb33754c2018-01-04 19:32:14 +01002218/* This Lua function gets two parameters. The first one can be string
2219 * or a number. If the string is "*l", the user requires one line. If
2220 * the string is "*a", the user requires all the contents of the stream.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002221 * If the value is a number, the user require a number of bytes equal
2222 * to the value. The default value is "*l" (a line).
2223 *
Tim Duesterhusb33754c2018-01-04 19:32:14 +01002224 * This parameter with a variable type is converted in integer. This
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002225 * integer takes this values:
2226 * -1 : read a line
2227 * -2 : read all the stream
Tim Duesterhusb33754c2018-01-04 19:32:14 +01002228 * >0 : amount of bytes.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002229 *
Tim Duesterhusb33754c2018-01-04 19:32:14 +01002230 * The second parameter is optional. It contains a string that must be
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002231 * concatenated with the read data.
2232 */
2233__LJMP static int hlua_socket_receive(struct lua_State *L)
2234{
2235 int wanted = HLSR_READ_LINE;
2236 const char *pattern;
Christopher Fauletc31b2002021-05-03 10:11:13 +02002237 int lastarg, type;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002238 char *error;
2239 size_t len;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002240 struct hlua_socket *socket;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002241
2242 if (lua_gettop(L) < 1 || lua_gettop(L) > 3)
2243 WILL_LJMP(luaL_error(L, "The 'receive' function requires between 1 and 3 arguments."));
2244
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002245 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002246
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002247 /* Check if we run on the same thread than the xreator thread.
2248 * We cannot access to the socket if the thread is different.
2249 */
2250 if (socket->tid != tid)
2251 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2252
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002253 /* check for pattern. */
2254 if (lua_gettop(L) >= 2) {
2255 type = lua_type(L, 2);
2256 if (type == LUA_TSTRING) {
2257 pattern = lua_tostring(L, 2);
2258 if (strcmp(pattern, "*a") == 0)
2259 wanted = HLSR_READ_ALL;
2260 else if (strcmp(pattern, "*l") == 0)
2261 wanted = HLSR_READ_LINE;
2262 else {
2263 wanted = strtoll(pattern, &error, 10);
2264 if (*error != '\0')
2265 WILL_LJMP(luaL_error(L, "Unsupported pattern."));
2266 }
2267 }
2268 else if (type == LUA_TNUMBER) {
2269 wanted = lua_tointeger(L, 2);
2270 if (wanted < 0)
2271 WILL_LJMP(luaL_error(L, "Unsupported size."));
2272 }
2273 }
2274
2275 /* Set pattern. */
2276 lua_pushinteger(L, wanted);
Tim Duesterhusc6e377e2018-01-04 19:32:13 +01002277
2278 /* Check if we would replace the top by itself. */
2279 if (lua_gettop(L) != 2)
2280 lua_replace(L, 2);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002281
Christopher Fauletc31b2002021-05-03 10:11:13 +02002282 /* Save index of the top of the stack because since buffers are used, it
2283 * may change
2284 */
2285 lastarg = lua_gettop(L);
2286
Tim Duesterhusb33754c2018-01-04 19:32:14 +01002287 /* init buffer, and fill it with prefix. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002288 luaL_buffinit(L, &socket->b);
2289
2290 /* Check prefix. */
Christopher Fauletc31b2002021-05-03 10:11:13 +02002291 if (lastarg >= 3) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002292 if (lua_type(L, 3) != LUA_TSTRING)
2293 WILL_LJMP(luaL_error(L, "Expect a 'string' for the prefix"));
2294 pattern = lua_tolstring(L, 3, &len);
2295 luaL_addlstring(&socket->b, pattern, len);
2296 }
2297
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002298 return __LJMP(hlua_socket_receive_yield(L, 0, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002299}
2300
2301/* Write the Lua input string in the output buffer.
Mark Lakes22154b42018-01-29 14:38:40 -08002302 * This function returns a yield if no space is available.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002303 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002304static int hlua_socket_write_yield(struct lua_State *L,int status, lua_KContext ctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002305{
2306 struct hlua_socket *socket;
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002307 struct hlua *hlua;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002308 struct appctx *appctx;
2309 size_t buf_len;
2310 const char *buf;
2311 int len;
2312 int send_len;
2313 int sent;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002314 struct xref *peer;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002315 struct stream *s;
Christopher Faulet908628c2022-03-25 16:43:49 +01002316 struct conn_stream *cs;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002317
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002318 /* Get hlua struct, or NULL if we execute from main lua state */
2319 hlua = hlua_gethlua(L);
2320
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002321 /* Check if this lua stack is schedulable. */
2322 if (!hlua || !hlua->task)
2323 WILL_LJMP(luaL_error(L, "The 'write' function is only allowed in "
2324 "'frontend', 'backend' or 'task'"));
2325
2326 /* Get object */
2327 socket = MAY_LJMP(hlua_checksocket(L, 1));
2328 buf = MAY_LJMP(luaL_checklstring(L, 2, &buf_len));
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002329 sent = MAY_LJMP(luaL_checkinteger(L, 3));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002330
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002331 /* Check if we run on the same thread than the xreator thread.
2332 * We cannot access to the socket if the thread is different.
2333 */
2334 if (socket->tid != tid)
2335 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2336
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002337 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002338 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002339 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002340 lua_pushinteger(L, -1);
2341 return 1;
2342 }
2343 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
Christopher Faulet908628c2022-03-25 16:43:49 +01002344 cs = appctx->owner;
2345 s = __cs_strm(cs);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002346
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002347 /* Check for connection close. */
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002348 if (channel_output_closed(&s->req)) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002349 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002350 lua_pushinteger(L, -1);
2351 return 1;
2352 }
2353
2354 /* Update the input buffer data. */
2355 buf += sent;
2356 send_len = buf_len - sent;
2357
2358 /* All the data are sent. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002359 if (sent >= buf_len) {
2360 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002361 return 1; /* Implicitly return the length sent. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002362 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002363
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002364 /* Check if the buffer is available because HAProxy doesn't allocate
Thierry FOURNIER486d52a2015-03-09 17:51:43 +01002365 * the request buffer if its not required.
2366 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002367 if (s->req.buf.size == 0) {
Christopher Faulet8f45eec2022-04-01 17:19:36 +02002368 if (!cs_alloc_ibuf(cs, &appctx->buffer_wait))
Christopher Faulet33834b12016-12-19 09:29:06 +01002369 goto hlua_socket_write_yield_return;
Thierry FOURNIER486d52a2015-03-09 17:51:43 +01002370 }
2371
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002372 /* Check for available space. */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002373 len = b_room(&s->req.buf);
Christopher Faulet33834b12016-12-19 09:29:06 +01002374 if (len <= 0) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002375 goto hlua_socket_write_yield_return;
Christopher Faulet33834b12016-12-19 09:29:06 +01002376 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002377
2378 /* send data */
2379 if (len < send_len)
2380 send_len = len;
Thierry FOURNIER66b89192018-05-27 01:14:47 +02002381 len = ci_putblk(&s->req, buf, send_len);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002382
2383 /* "Not enough space" (-1), "Buffer too little to contain
2384 * the data" (-2) are not expected because the available length
2385 * is tested.
2386 * Other unknown error are also not expected.
2387 */
2388 if (len <= 0) {
Willy Tarreaubc18da12015-03-13 14:00:47 +01002389 if (len == -1)
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002390 s->req.flags |= CF_WAKE_WRITE;
Willy Tarreaubc18da12015-03-13 14:00:47 +01002391
sada05ed3302018-05-11 11:48:18 -07002392 MAY_LJMP(hlua_socket_close_helper(L));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002393 lua_pop(L, 1);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002394 lua_pushinteger(L, -1);
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002395 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002396 return 1;
2397 }
2398
2399 /* update buffers. */
Thierry FOURNIER101b9762018-05-27 01:27:40 +02002400 appctx_wakeup(appctx);
Willy Tarreaude70fa12015-09-26 11:25:05 +02002401
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002402 s->req.rex = TICK_ETERNITY;
2403 s->res.wex = TICK_ETERNITY;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002404
2405 /* Update length sent. */
2406 lua_pop(L, 1);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002407 lua_pushinteger(L, sent + len);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002408
2409 /* All the data buffer is sent ? */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002410 if (sent + len >= buf_len) {
2411 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002412 return 1;
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002413 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002414
2415hlua_socket_write_yield_return:
Thierry FOURNIERba42fcd2018-05-27 00:59:48 +02002416 if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_write, hlua->task)) {
2417 xref_unlock(&socket->xref, peer);
2418 WILL_LJMP(luaL_error(L, "out of memory"));
2419 }
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002420 xref_unlock(&socket->xref, peer);
Willy Tarreau9635e032018-10-16 17:52:55 +02002421 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_write_yield, TICK_ETERNITY, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002422 return 0;
2423}
2424
2425/* This function initiate the send of data. It just check the input
2426 * parameters and push an integer in the Lua stack that contain the
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002427 * amount of data written to the buffer. This is used by the function
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002428 * "hlua_socket_write_yield" that can yield.
2429 *
2430 * The Lua function gets between 3 and 4 parameters. The first one is
2431 * the associated object. The second is a string buffer. The third is
2432 * a facultative integer that represents where is the buffer position
2433 * of the start of the data that can send. The first byte is the
2434 * position "1". The default value is "1". The fourth argument is a
2435 * facultative integer that represents where is the buffer position
2436 * of the end of the data that can send. The default is the last byte.
2437 */
2438static int hlua_socket_send(struct lua_State *L)
2439{
2440 int i;
2441 int j;
2442 const char *buf;
2443 size_t buf_len;
2444
2445 /* Check number of arguments. */
2446 if (lua_gettop(L) < 2 || lua_gettop(L) > 4)
2447 WILL_LJMP(luaL_error(L, "'send' needs between 2 and 4 arguments"));
2448
2449 /* Get the string. */
2450 buf = MAY_LJMP(luaL_checklstring(L, 2, &buf_len));
2451
2452 /* Get and check j. */
2453 if (lua_gettop(L) == 4) {
2454 j = MAY_LJMP(luaL_checkinteger(L, 4));
2455 if (j < 0)
2456 j = buf_len + j + 1;
2457 if (j > buf_len)
2458 j = buf_len + 1;
2459 lua_pop(L, 1);
2460 }
2461 else
2462 j = buf_len;
2463
2464 /* Get and check i. */
2465 if (lua_gettop(L) == 3) {
2466 i = MAY_LJMP(luaL_checkinteger(L, 3));
2467 if (i < 0)
2468 i = buf_len + i + 1;
2469 if (i > buf_len)
2470 i = buf_len + 1;
2471 lua_pop(L, 1);
2472 } else
2473 i = 1;
2474
2475 /* Check bth i and j. */
2476 if (i > j) {
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002477 lua_pushinteger(L, 0);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002478 return 1;
2479 }
2480 if (i == 0 && j == 0) {
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002481 lua_pushinteger(L, 0);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002482 return 1;
2483 }
2484 if (i == 0)
2485 i = 1;
2486 if (j == 0)
2487 j = 1;
2488
2489 /* Pop the string. */
2490 lua_pop(L, 1);
2491
2492 /* Update the buffer length. */
2493 buf += i - 1;
2494 buf_len = j - i + 1;
2495 lua_pushlstring(L, buf, buf_len);
2496
2497 /* This unsigned is used to remember the amount of sent data. */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002498 lua_pushinteger(L, 0);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002499
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002500 return MAY_LJMP(hlua_socket_write_yield(L, 0, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002501}
2502
Willy Tarreau22b0a682015-06-17 19:43:49 +02002503#define SOCKET_INFO_MAX_LEN sizeof("[0000:0000:0000:0000:0000:0000:0000:0000]:12345")
Christopher Faulete6465b32021-10-22 15:36:08 +02002504__LJMP static inline int hlua_socket_info(struct lua_State *L, const struct sockaddr_storage *addr)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002505{
2506 static char buffer[SOCKET_INFO_MAX_LEN];
2507 int ret;
2508 int len;
2509 char *p;
2510
2511 ret = addr_to_str(addr, buffer+1, SOCKET_INFO_MAX_LEN-1);
2512 if (ret <= 0) {
2513 lua_pushnil(L);
2514 return 1;
2515 }
2516
2517 if (ret == AF_UNIX) {
2518 lua_pushstring(L, buffer+1);
2519 return 1;
2520 }
2521 else if (ret == AF_INET6) {
2522 buffer[0] = '[';
2523 len = strlen(buffer);
2524 buffer[len] = ']';
2525 len++;
2526 buffer[len] = ':';
2527 len++;
2528 p = buffer;
2529 }
2530 else if (ret == AF_INET) {
2531 p = buffer + 1;
2532 len = strlen(p);
2533 p[len] = ':';
2534 len++;
2535 }
2536 else {
2537 lua_pushnil(L);
2538 return 1;
2539 }
2540
2541 if (port_to_str(addr, p + len, SOCKET_INFO_MAX_LEN-1 - len) <= 0) {
2542 lua_pushnil(L);
2543 return 1;
2544 }
2545
2546 lua_pushstring(L, p);
2547 return 1;
2548}
2549
2550/* Returns information about the peer of the connection. */
2551__LJMP static int hlua_socket_getpeername(struct lua_State *L)
2552{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002553 struct hlua_socket *socket;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002554 struct xref *peer;
2555 struct appctx *appctx;
Christopher Faulet908628c2022-03-25 16:43:49 +01002556 struct conn_stream *cs;
Christopher Faulet16f16af2021-10-27 09:34:56 +02002557 const struct sockaddr_storage *dst;
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002558 int ret;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002559
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002560 MAY_LJMP(check_args(L, 1, "getpeername"));
2561
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002562 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002563
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002564 /* Check if we run on the same thread than the xreator thread.
2565 * We cannot access to the socket if the thread is different.
2566 */
2567 if (socket->tid != tid)
2568 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2569
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002570 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002571 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002572 if (!peer) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002573 lua_pushnil(L);
2574 return 1;
2575 }
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002576 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
Christopher Faulet908628c2022-03-25 16:43:49 +01002577 cs = appctx->owner;
Christopher Faulet8da67aa2022-03-29 17:53:09 +02002578 dst = cs_dst(cs_opposite(cs));
Christopher Faulet16f16af2021-10-27 09:34:56 +02002579 if (!dst) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002580 xref_unlock(&socket->xref, peer);
Willy Tarreaua71f6422016-11-16 17:00:14 +01002581 lua_pushnil(L);
2582 return 1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002583 }
2584
Christopher Faulet16f16af2021-10-27 09:34:56 +02002585 ret = MAY_LJMP(hlua_socket_info(L, dst));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002586 xref_unlock(&socket->xref, peer);
2587 return ret;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002588}
2589
2590/* Returns information about my connection side. */
2591static int hlua_socket_getsockname(struct lua_State *L)
2592{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002593 struct hlua_socket *socket;
2594 struct connection *conn;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002595 struct appctx *appctx;
2596 struct xref *peer;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002597 struct stream *s;
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002598 int ret;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002599
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002600 MAY_LJMP(check_args(L, 1, "getsockname"));
2601
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002602 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002603
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002604 /* Check if we run on the same thread than the xreator thread.
2605 * We cannot access to the socket if the thread is different.
2606 */
2607 if (socket->tid != tid)
2608 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2609
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002610 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002611 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002612 if (!peer) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002613 lua_pushnil(L);
2614 return 1;
2615 }
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002616 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
Christopher Faulet908628c2022-03-25 16:43:49 +01002617 s = __cs_strm(appctx->owner);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002618
Christopher Faulet95a61e82021-12-22 14:22:03 +01002619 conn = cs_conn(s->csb);
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002620 if (!conn || !conn_get_src(conn)) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002621 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002622 lua_pushnil(L);
2623 return 1;
2624 }
2625
Willy Tarreau9da9a6f2019-07-17 14:49:44 +02002626 ret = hlua_socket_info(L, conn->src);
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002627 xref_unlock(&socket->xref, peer);
2628 return ret;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002629}
2630
2631/* This struct define the applet. */
Willy Tarreau30576452015-04-13 13:50:30 +02002632static struct applet update_applet = {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002633 .obj_type = OBJ_TYPE_APPLET,
2634 .name = "<LUA_TCP>",
2635 .fct = hlua_socket_handler,
2636 .release = hlua_socket_release,
2637};
2638
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002639__LJMP static int hlua_socket_connect_yield(struct lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002640{
2641 struct hlua_socket *socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002642 struct hlua *hlua;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002643 struct xref *peer;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002644 struct appctx *appctx;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002645 struct stream *s;
2646
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002647 /* Get hlua struct, or NULL if we execute from main lua state */
2648 hlua = hlua_gethlua(L);
2649 if (!hlua)
2650 return 0;
2651
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002652 /* Check if we run on the same thread than the xreator thread.
2653 * We cannot access to the socket if the thread is different.
2654 */
2655 if (socket->tid != tid)
2656 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2657
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002658 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002659 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002660 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002661 lua_pushnil(L);
2662 lua_pushstring(L, "Can't connect");
2663 return 2;
2664 }
2665 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
Christopher Faulet908628c2022-03-25 16:43:49 +01002666 s = __cs_strm(appctx->owner);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002667
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002668 /* Check if we run on the same thread than the xreator thread.
2669 * We cannot access to the socket if the thread is different.
2670 */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002671 if (socket->tid != tid) {
2672 xref_unlock(&socket->xref, peer);
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002673 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002674 }
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002675
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002676 /* Check for connection close. */
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002677 if (!hlua || channel_output_closed(&s->req)) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002678 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002679 lua_pushnil(L);
2680 lua_pushstring(L, "Can't connect");
2681 return 2;
2682 }
2683
Christopher Faulet693b23b2022-02-28 09:09:05 +01002684 appctx = __cs_appctx(s->csf);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002685
2686 /* Check for connection established. */
Thierry FOURNIER18d09902016-12-16 09:25:38 +01002687 if (appctx->ctx.hlua_cosocket.connected) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002688 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002689 lua_pushinteger(L, 1);
2690 return 1;
2691 }
2692
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002693 if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_write, hlua->task)) {
2694 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002695 WILL_LJMP(luaL_error(L, "out of memory error"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002696 }
2697 xref_unlock(&socket->xref, peer);
Willy Tarreau9635e032018-10-16 17:52:55 +02002698 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_connect_yield, TICK_ETERNITY, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002699 return 0;
2700}
2701
2702/* This function fail or initite the connection. */
2703__LJMP static int hlua_socket_connect(struct lua_State *L)
2704{
2705 struct hlua_socket *socket;
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002706 int port = -1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002707 const char *ip;
Thierry FOURNIER95ad96a2015-03-09 18:12:40 +01002708 struct hlua *hlua;
2709 struct appctx *appctx;
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002710 int low, high;
2711 struct sockaddr_storage *addr;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002712 struct xref *peer;
Christopher Faulet908628c2022-03-25 16:43:49 +01002713 struct conn_stream *cs;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002714 struct stream *s;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002715
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002716 if (lua_gettop(L) < 2)
2717 WILL_LJMP(luaL_error(L, "connect: need at least 2 arguments"));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002718
2719 /* Get args. */
2720 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002721
2722 /* Check if we run on the same thread than the xreator thread.
2723 * We cannot access to the socket if the thread is different.
2724 */
2725 if (socket->tid != tid)
2726 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2727
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002728 ip = MAY_LJMP(luaL_checkstring(L, 2));
Tim Duesterhus6edab862018-01-06 19:04:45 +01002729 if (lua_gettop(L) >= 3) {
2730 luaL_Buffer b;
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002731 port = MAY_LJMP(luaL_checkinteger(L, 3));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002732
Tim Duesterhus6edab862018-01-06 19:04:45 +01002733 /* Force the ip to end with a colon, to support IPv6 addresses
2734 * that are not enclosed within square brackets.
2735 */
2736 if (port > 0) {
2737 luaL_buffinit(L, &b);
2738 luaL_addstring(&b, ip);
2739 luaL_addchar(&b, ':');
2740 luaL_pushresult(&b);
2741 ip = lua_tolstring(L, lua_gettop(L), NULL);
2742 }
2743 }
2744
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002745 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002746 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002747 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002748 lua_pushnil(L);
2749 return 1;
2750 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002751
2752 /* Parse ip address. */
Willy Tarreau5fc93282020-09-16 18:25:03 +02002753 addr = str2sa_range(ip, NULL, &low, &high, NULL, NULL, NULL, NULL, NULL, PA_O_PORT_OK | PA_O_STREAM);
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002754 if (!addr) {
2755 xref_unlock(&socket->xref, peer);
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002756 WILL_LJMP(luaL_error(L, "connect: cannot parse destination address '%s'", ip));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002757 }
Willy Tarreau9da9a6f2019-07-17 14:49:44 +02002758
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002759 /* Set port. */
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002760 if (low == 0) {
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002761 if (addr->ss_family == AF_INET) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002762 if (port == -1) {
2763 xref_unlock(&socket->xref, peer);
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002764 WILL_LJMP(luaL_error(L, "connect: port missing"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002765 }
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002766 ((struct sockaddr_in *)addr)->sin_port = htons(port);
2767 } else if (addr->ss_family == AF_INET6) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002768 if (port == -1) {
2769 xref_unlock(&socket->xref, peer);
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002770 WILL_LJMP(luaL_error(L, "connect: port missing"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002771 }
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002772 ((struct sockaddr_in6 *)addr)->sin6_port = htons(port);
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002773 }
2774 }
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002775
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002776 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
Christopher Faulet908628c2022-03-25 16:43:49 +01002777 cs = appctx->owner;
2778 s = __cs_strm(cs);
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002779
Christopher Faulet8da67aa2022-03-29 17:53:09 +02002780 if (!sockaddr_alloc(&cs_opposite(cs)->dst, addr, sizeof(*addr))) {
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002781 xref_unlock(&socket->xref, peer);
2782 WILL_LJMP(luaL_error(L, "connect: internal error"));
2783 }
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002784 s->flags |= SF_ADDR_SET;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002785
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002786 /* Get hlua struct, or NULL if we execute from main lua state */
Thierry FOURNIER95ad96a2015-03-09 18:12:40 +01002787 hlua = hlua_gethlua(L);
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002788 if (!hlua)
2789 return 0;
Willy Tarreaubdc97a82015-08-24 15:42:28 +02002790
2791 /* inform the stream that we want to be notified whenever the
2792 * connection completes.
2793 */
Christopher Fauleta0bdec32022-04-04 07:51:21 +02002794 cs_cant_get(s->csf);
2795 cs_rx_endp_more(s->csf);
Thierry FOURNIER8c8fbbe2015-09-26 17:02:35 +02002796 appctx_wakeup(appctx);
Willy Tarreaubdc97a82015-08-24 15:42:28 +02002797
Willy Tarreauf31af932020-01-14 09:59:38 +01002798 hlua->gc_count++;
Thierry FOURNIER7c39ab42015-09-27 22:53:33 +02002799
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002800 if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_write, hlua->task)) {
2801 xref_unlock(&socket->xref, peer);
Thierry FOURNIER95ad96a2015-03-09 18:12:40 +01002802 WILL_LJMP(luaL_error(L, "out of memory"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002803 }
2804 xref_unlock(&socket->xref, peer);
PiBa-NL706d5ee2018-05-05 23:51:42 +02002805
2806 task_wakeup(s->task, TASK_WOKEN_INIT);
2807 /* Return yield waiting for connection. */
2808
Willy Tarreau9635e032018-10-16 17:52:55 +02002809 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_connect_yield, TICK_ETERNITY, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002810
2811 return 0;
2812}
2813
Baptiste Assmann84bb4932015-03-02 21:40:06 +01002814#ifdef USE_OPENSSL
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002815__LJMP static int hlua_socket_connect_ssl(struct lua_State *L)
2816{
2817 struct hlua_socket *socket;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002818 struct xref *peer;
2819 struct appctx *appctx;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002820 struct stream *s;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002821
2822 MAY_LJMP(check_args(L, 3, "connect_ssl"));
2823 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002824
2825 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002826 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002827 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002828 lua_pushnil(L);
2829 return 1;
2830 }
2831 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
Christopher Faulet908628c2022-03-25 16:43:49 +01002832 s = __cs_strm(appctx->owner);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002833
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +01002834 s->target = &socket_ssl->obj_type;
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002835 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002836 return MAY_LJMP(hlua_socket_connect(L));
2837}
Baptiste Assmann84bb4932015-03-02 21:40:06 +01002838#endif
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002839
2840__LJMP static int hlua_socket_setoption(struct lua_State *L)
2841{
2842 return 0;
2843}
2844
2845__LJMP static int hlua_socket_settimeout(struct lua_State *L)
2846{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002847 struct hlua_socket *socket;
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002848 int tmout;
Mark Lakes56cc1252018-03-27 09:48:06 +02002849 double dtmout;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002850 struct xref *peer;
2851 struct appctx *appctx;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002852 struct stream *s;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002853
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002854 MAY_LJMP(check_args(L, 2, "settimeout"));
2855
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002856 socket = MAY_LJMP(hlua_checksocket(L, 1));
Mark Lakes56cc1252018-03-27 09:48:06 +02002857
Cyril Bonté7ee465f2018-08-19 22:08:50 +02002858 /* convert the timeout to millis */
2859 dtmout = MAY_LJMP(luaL_checknumber(L, 2)) * 1000;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002860
Thierry Fournier17a921b2018-03-08 09:59:02 +01002861 /* Check for negative values */
Mark Lakes56cc1252018-03-27 09:48:06 +02002862 if (dtmout < 0)
Thierry Fournier17a921b2018-03-08 09:59:02 +01002863 WILL_LJMP(luaL_error(L, "settimeout: cannot set negatives values"));
2864
Mark Lakes56cc1252018-03-27 09:48:06 +02002865 if (dtmout > INT_MAX) /* overflow check */
Cyril Bonté7ee465f2018-08-19 22:08:50 +02002866 WILL_LJMP(luaL_error(L, "settimeout: cannot set values larger than %d ms", INT_MAX));
Mark Lakes56cc1252018-03-27 09:48:06 +02002867
2868 tmout = MS_TO_TICKS((int)dtmout);
Cyril Bonté7ee465f2018-08-19 22:08:50 +02002869 if (tmout == 0)
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05002870 tmout++; /* very small timeouts are adjusted to a minimum of 1ms */
Mark Lakes56cc1252018-03-27 09:48:06 +02002871
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002872 /* Check if we run on the same thread than the xreator thread.
2873 * We cannot access to the socket if the thread is different.
2874 */
2875 if (socket->tid != tid)
2876 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2877
Mark Lakes56cc1252018-03-27 09:48:06 +02002878 /* check for connection break. If some data were read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002879 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002880 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002881 hlua_pusherror(L, "socket: not yet initialised, you can't set timeouts.");
2882 WILL_LJMP(lua_error(L));
2883 return 0;
2884 }
2885 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
Christopher Faulet908628c2022-03-25 16:43:49 +01002886 s = __cs_strm(appctx->owner);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002887
Cyril Bonté7bb63452018-08-17 23:51:02 +02002888 s->sess->fe->timeout.connect = tmout;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002889 s->req.rto = tmout;
2890 s->req.wto = tmout;
2891 s->res.rto = tmout;
2892 s->res.wto = tmout;
Cyril Bonté7bb63452018-08-17 23:51:02 +02002893 s->req.rex = tick_add_ifset(now_ms, tmout);
2894 s->req.wex = tick_add_ifset(now_ms, tmout);
2895 s->res.rex = tick_add_ifset(now_ms, tmout);
2896 s->res.wex = tick_add_ifset(now_ms, tmout);
2897
2898 s->task->expire = tick_add_ifset(now_ms, tmout);
2899 task_queue(s->task);
2900
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002901 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002902
Thierry Fourniere9636f12018-03-08 09:54:32 +01002903 lua_pushinteger(L, 1);
Tim Duesterhus119a5f12018-01-06 19:16:25 +01002904 return 1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002905}
2906
2907__LJMP static int hlua_socket_new(lua_State *L)
2908{
2909 struct hlua_socket *socket;
2910 struct appctx *appctx;
Willy Tarreau15b5e142015-04-04 14:38:25 +02002911 struct session *sess;
Christopher Faulet13a35e52021-12-20 15:34:16 +01002912 struct conn_stream *cs;
Christopher Fauleta9e8b392022-03-23 11:01:09 +01002913 struct stream *s;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002914
2915 /* Check stack size. */
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01002916 if (!lua_checkstack(L, 3)) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002917 hlua_pusherror(L, "socket: full stack");
2918 goto out_fail_conf;
2919 }
2920
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01002921 /* Create the object: obj[0] = userdata. */
2922 lua_newtable(L);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002923 socket = MAY_LJMP(lua_newuserdata(L, sizeof(*socket)));
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01002924 lua_rawseti(L, -2, 0);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002925 memset(socket, 0, sizeof(*socket));
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002926 socket->tid = tid;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002927
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05002928 /* Check if the various memory pools are initialized. */
Willy Tarreaubafbe012017-11-24 17:34:44 +01002929 if (!pool_head_stream || !pool_head_buffer) {
Thierry FOURNIER4a6170c2015-03-09 17:07:10 +01002930 hlua_pusherror(L, "socket: uninitialized pools.");
2931 goto out_fail_conf;
2932 }
2933
Willy Tarreau87b09662015-04-03 00:22:06 +02002934 /* Pop a class stream metatable and affect it to the userdata. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002935 lua_rawgeti(L, LUA_REGISTRYINDEX, class_socket_ref);
2936 lua_setmetatable(L, -2);
2937
Willy Tarreaud420a972015-04-06 00:39:18 +02002938 /* Create the applet context */
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01002939 appctx = appctx_new(&update_applet, NULL);
Willy Tarreau61cf7c82015-04-06 00:48:33 +02002940 if (!appctx) {
2941 hlua_pusherror(L, "socket: out of memory");
Christopher Fauleta9e8b392022-03-23 11:01:09 +01002942 goto out_fail_conf;
Willy Tarreau61cf7c82015-04-06 00:48:33 +02002943 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002944
Thierry FOURNIER18d09902016-12-16 09:25:38 +01002945 appctx->ctx.hlua_cosocket.connected = 0;
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02002946 appctx->ctx.hlua_cosocket.die = 0;
Thierry FOURNIER18d09902016-12-16 09:25:38 +01002947 LIST_INIT(&appctx->ctx.hlua_cosocket.wake_on_write);
2948 LIST_INIT(&appctx->ctx.hlua_cosocket.wake_on_read);
Willy Tarreaub2bf8332015-04-04 15:58:58 +02002949
Willy Tarreaud420a972015-04-06 00:39:18 +02002950 /* Now create a session, task and stream for this applet */
Amaury Denoyelle239fdbf2021-03-24 10:22:03 +01002951 sess = session_new(socket_proxy, NULL, &appctx->obj_type);
Willy Tarreaud420a972015-04-06 00:39:18 +02002952 if (!sess) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002953 hlua_pusherror(L, "socket: out of memory");
Christopher Faulet13a35e52021-12-20 15:34:16 +01002954 goto out_fail_appctx;
2955 }
2956
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01002957 cs = cs_new_from_applet(appctx->endp, sess, &BUF_NULL);
Christopher Fauleta9e8b392022-03-23 11:01:09 +01002958 if (!cs) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002959 hlua_pusherror(L, "socket: out of memory");
Christopher Faulet2479e5f2022-01-19 14:50:11 +01002960 goto out_fail_sess;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002961 }
2962
Christopher Fauleta9e8b392022-03-23 11:01:09 +01002963 s = DISGUISE(cs_strm(cs));
Christopher Faulet2479e5f2022-01-19 14:50:11 +01002964
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002965 /* Initialise cross reference between stream and Lua socket object. */
2966 xref_create(&socket->xref, &appctx->ctx.hlua_cosocket.xref);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002967
Christopher Faulet6b0a0fb2022-04-04 11:29:28 +02002968 /* Configure "right" conn-stream. this "si" is used to connect
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002969 * and retrieve data from the server. The connection is initialized
2970 * with the "struct server".
2971 */
Christopher Faulet62e75742022-03-31 09:16:34 +02002972 cs_set_state(s->csb, CS_ST_ASS);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002973
2974 /* Force destination server. */
Christopher Fauleta9e8b392022-03-23 11:01:09 +01002975 s->flags |= SF_DIRECT | SF_ASSIGNED | SF_BE_ASSIGNED;
2976 s->target = &socket_tcp->obj_type;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002977
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002978 return 1;
2979
Willy Tarreaud420a972015-04-06 00:39:18 +02002980 out_fail_sess:
Christopher Faulet13a35e52021-12-20 15:34:16 +01002981 session_free(sess);
2982 out_fail_appctx:
Willy Tarreaud420a972015-04-06 00:39:18 +02002983 appctx_free(appctx);
2984 out_fail_conf:
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002985 WILL_LJMP(lua_error(L));
2986 return 0;
2987}
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01002988
2989/*
2990 *
2991 *
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002992 * Class Channel
2993 *
2994 *
2995 */
2996
2997/* Returns the struct hlua_channel join to the class channel in the
2998 * stack entry "ud" or throws an argument error.
2999 */
Willy Tarreau47860ed2015-03-10 14:07:50 +01003000__LJMP static struct channel *hlua_checkchannel(lua_State *L, int ud)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003001{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02003002 return MAY_LJMP(hlua_checkudata(L, ud, class_channel_ref));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003003}
3004
Willy Tarreau47860ed2015-03-10 14:07:50 +01003005/* Pushes the channel onto the top of the stack. If the stask does not have a
3006 * free slots, the function fails and returns 0;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003007 */
Willy Tarreau2a71af42015-03-10 13:51:50 +01003008static int hlua_channel_new(lua_State *L, struct channel *channel)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003009{
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003010 /* Check stack size. */
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01003011 if (!lua_checkstack(L, 3))
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003012 return 0;
3013
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01003014 lua_newtable(L);
Willy Tarreau47860ed2015-03-10 14:07:50 +01003015 lua_pushlightuserdata(L, channel);
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01003016 lua_rawseti(L, -2, 0);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003017
3018 /* Pop a class sesison metatable and affect it to the userdata. */
3019 lua_rawgeti(L, LUA_REGISTRYINDEX, class_channel_ref);
3020 lua_setmetatable(L, -2);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003021 return 1;
3022}
3023
Christopher Faulet9f55a502020-02-25 15:21:02 +01003024/* Helper function returning a filter attached to a channel at the position <ud>
3025 * in the stack, filling the current offset and length of the filter. If no
Ilya Shipitsinff0f2782021-08-22 22:18:07 +05003026 * filter is attached, NULL is returned and <offset> and <len> are not
Christopher Faulet9f55a502020-02-25 15:21:02 +01003027 * initialized.
3028 */
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003029static struct filter *hlua_channel_filter(lua_State *L, int ud, struct channel *chn, size_t *offset, size_t *len)
Christopher Faulet9f55a502020-02-25 15:21:02 +01003030{
3031 struct filter *filter = NULL;
3032
3033 if (lua_getfield(L, ud, "__filter") == LUA_TLIGHTUSERDATA) {
3034 struct hlua_flt_ctx *flt_ctx;
3035
3036 filter = lua_touserdata (L, -1);
3037 flt_ctx = filter->ctx;
3038 if (hlua_filter_from_payload(filter)) {
3039 *offset = flt_ctx->cur_off[CHN_IDX(chn)];
3040 *len = flt_ctx->cur_len[CHN_IDX(chn)];
3041 }
3042 }
3043
3044 lua_pop(L, 1);
3045 return filter;
3046}
3047
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003048/* Copies <len> bytes of data present in the channel's buffer, starting at the
3049* offset <offset>, and put it in a LUA string variable. It is the caller
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003050* responsibility to ensure <len> and <offset> are valid. It always return the
3051* length of the built string. <len> may be 0, in this case, an empty string is
3052* created and 0 is returned.
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003053*/
3054static inline int _hlua_channel_dup(struct channel *chn, lua_State *L, size_t offset, size_t len)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003055{
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003056 size_t block1, block2;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003057 luaL_Buffer b;
3058
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003059 block1 = len;
3060 if (block1 > b_contig_data(&chn->buf, b_peek_ofs(&chn->buf, offset)))
3061 block1 = b_contig_data(&chn->buf, b_peek_ofs(&chn->buf, offset));
3062 block2 = len - block1;
3063
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003064 luaL_buffinit(L, &b);
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003065 luaL_addlstring(&b, b_peek(&chn->buf, offset), block1);
3066 if (block2)
3067 luaL_addlstring(&b, b_orig(&chn->buf), block2);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003068 luaL_pushresult(&b);
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003069 return len;
3070}
3071
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003072/* Inserts the string <str> to the channel's buffer at the offset <offset>. This
3073 * function returns -1 if data cannot be copied. Otherwise, it returns the
3074 * number of bytes copied.
3075 */
3076static int _hlua_channel_insert(struct channel *chn, lua_State *L, struct ist str, size_t offset)
3077{
3078 int ret = 0;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003079
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003080 /* Nothing to do, just return */
3081 if (unlikely(istlen(str) == 0))
3082 goto end;
3083
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003084 if (istlen(str) > c_room(chn)) {
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003085 ret = -1;
3086 goto end;
3087 }
3088 ret = b_insert_blk(&chn->buf, offset, istptr(str), istlen(str));
3089
3090 end:
3091 return ret;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003092}
3093
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003094/* Removes <len> bytes of data at the absolute position <offset>.
3095 */
3096static void _hlua_channel_delete(struct channel *chn, size_t offset, size_t len)
3097{
3098 size_t end = offset + len;
3099
3100 if (b_peek(&chn->buf, end) != b_tail(&chn->buf))
3101 b_move(&chn->buf, b_peek_ofs(&chn->buf, end),
3102 b_data(&chn->buf) - end, -len);
3103 b_sub(&chn->buf, len);
3104}
3105
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003106/* Copies input data in the channel's buffer. It is possible to set a specific
3107 * offset (0 by default) and a length (all remaining input data starting for the
3108 * offset by default). If there is not enough input data and more data can be
3109 * received, this function yields.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003110 *
3111 * From an action, All input data are considered. For a filter, the offset and
3112 * the length of input data to consider are retrieved from the filter context.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003113 */
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003114__LJMP static int hlua_channel_get_data_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003115{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003116 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003117 struct filter *filter;
3118 size_t input, output;
3119 int offset, len;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003120
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003121 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003122
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003123 output = co_data(chn);
3124 input = ci_data(chn);
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003125
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003126 filter = hlua_channel_filter(L, 1, chn, &output, &input);
3127 if (filter && !hlua_filter_from_payload(filter))
3128 WILL_LJMP(lua_error(L));
3129
3130 offset = output;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003131 if (lua_gettop(L) > 1) {
3132 offset = MAY_LJMP(luaL_checkinteger(L, 2));
3133 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02003134 offset = MAX(0, (int)input + offset);
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003135 offset += output;
3136 if (offset < output || offset > input + output) {
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003137 lua_pushfstring(L, "offset out of range.");
3138 WILL_LJMP(lua_error(L));
3139 }
3140 }
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003141 len = output + input - offset;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003142 if (lua_gettop(L) == 3) {
3143 len = MAY_LJMP(luaL_checkinteger(L, 3));
3144 if (!len)
3145 goto dup;
3146 if (len == -1)
3147 len = global.tune.bufsize;
3148 if (len < 0) {
3149 lua_pushfstring(L, "length out of range.");
3150 WILL_LJMP(lua_error(L));
3151 }
3152 }
3153
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003154 if (offset + len > output + input) {
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003155 if (!HLUA_CANT_YIELD(hlua_gethlua(L)) && !channel_input_closed(chn) && channel_may_recv(chn)) {
3156 /* Yield waiting for more data, as requested */
3157 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_get_data_yield, TICK_ETERNITY, 0));
3158 }
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003159 len = output + input - offset;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003160 }
3161
3162 dup:
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003163 _hlua_channel_dup(chn, L, offset, len);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003164 return 1;
3165}
3166
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003167/* Copies the first line (including the trailing LF) of input data in the
3168 * channel's buffer. It is possible to set a specific offset (0 by default) and
3169 * a length (all remaining input data starting for the offset by default). If
3170 * there is not enough input data and more data can be received, the function
3171 * yields. If a length is explicitly specified, no more data are
3172 * copied. Otherwise, if no LF is found and more data can be received, this
3173 * function yields.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003174 *
3175 * From an action, All input data are considered. For a filter, the offset and
3176 * the length of input data to consider are retrieved from the filter context.
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003177 */
3178__LJMP static int hlua_channel_get_line_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003179{
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003180 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003181 struct filter *filter;
3182 size_t l, input, output;
3183 int offset, len;
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003184
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003185 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003186 output = co_data(chn);
3187 input = ci_data(chn);
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003188
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003189 filter = hlua_channel_filter(L, 1, chn, &output, &input);
3190 if (filter && !hlua_filter_from_payload(filter))
3191 WILL_LJMP(lua_error(L));
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003192
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003193 offset = output;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003194 if (lua_gettop(L) > 1) {
3195 offset = MAY_LJMP(luaL_checkinteger(L, 2));
3196 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02003197 offset = MAX(0, (int)input + offset);
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003198 offset += output;
3199 if (offset < output || offset > input + output) {
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003200 lua_pushfstring(L, "offset out of range.");
3201 WILL_LJMP(lua_error(L));
3202 }
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003203 }
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003204
3205 len = output + input - offset;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003206 if (lua_gettop(L) == 3) {
3207 len = MAY_LJMP(luaL_checkinteger(L, 3));
3208 if (!len)
3209 goto dup;
3210 if (len == -1)
3211 len = global.tune.bufsize;
3212 if (len < 0) {
3213 lua_pushfstring(L, "length out of range.");
3214 WILL_LJMP(lua_error(L));
3215 }
3216 }
3217
3218 for (l = 0; l < len; l++) {
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003219 if (l + offset >= output + input)
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003220 break;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003221 if (*(b_peek(&chn->buf, offset + l)) == '\n') {
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003222 len = l+1;
3223 goto dup;
3224 }
3225 }
3226
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003227 if (offset + len > output + input) {
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003228 if (!HLUA_CANT_YIELD(hlua_gethlua(L)) && !channel_input_closed(chn) && channel_may_recv(chn)) {
3229 /* Yield waiting for more data */
3230 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_get_line_yield, TICK_ETERNITY, 0));
3231 }
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003232 len = output + input - offset;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003233 }
3234
3235 dup:
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003236 _hlua_channel_dup(chn, L, offset, len);
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003237 return 1;
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003238}
3239
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003240/* [ DEPRECATED ]
3241 *
3242 * Duplicate all input data foud in the channel's buffer. The data are not
3243 * removed from the buffer. This function relies on _hlua_channel_dup().
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003244 *
3245 * From an action, All input data are considered. For a filter, the offset and
3246 * the length of input data to consider are retrieved from the filter context.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003247 */
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003248__LJMP static int hlua_channel_dup(lua_State *L)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003249{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003250 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003251 struct filter *filter;
3252 size_t offset, len;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003253
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003254 MAY_LJMP(check_args(L, 1, "dup"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003255 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003256 if (IS_HTX_STRM(chn_strm(chn))) {
3257 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3258 WILL_LJMP(lua_error(L));
3259 }
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003260
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003261 offset = co_data(chn);
3262 len = ci_data(chn);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003263
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003264 filter = hlua_channel_filter(L, 1, chn, &offset, &len);
3265 if (filter && !hlua_filter_from_payload(filter))
3266 WILL_LJMP(lua_error(L));
3267
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003268 if (!ci_data(chn) && channel_input_closed(chn)) {
3269 lua_pushnil(L);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003270 return 1;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003271 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003272
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003273 _hlua_channel_dup(chn, L, offset, len);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003274 return 1;
3275}
3276
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003277/* [ DEPRECATED ]
3278 *
3279 * Get all input data foud in the channel's buffer. The data are removed from
3280 * the buffer after the copy. This function relies on _hlua_channel_dup() and
3281 * _hlua_channel_delete().
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003282 *
3283 * From an action, All input data are considered. For a filter, the offset and
3284 * the length of input data to consider are retrieved from the filter context.
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003285 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003286__LJMP static int hlua_channel_get(lua_State *L)
3287{
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003288 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003289 struct filter *filter;
3290 size_t offset, len;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003291 int ret;
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003292
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003293 MAY_LJMP(check_args(L, 1, "get"));
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003294 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3295 if (IS_HTX_STRM(chn_strm(chn))) {
3296 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3297 WILL_LJMP(lua_error(L));
3298 }
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003299
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003300 offset = co_data(chn);
3301 len = ci_data(chn);
3302
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003303 filter = hlua_channel_filter(L, 1, chn, &offset, &len);
3304 if (filter && !hlua_filter_from_payload(filter))
3305 WILL_LJMP(lua_error(L));
3306
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003307 if (!ci_data(chn) && channel_input_closed(chn)) {
3308 lua_pushnil(L);
3309 return 1;
3310 }
3311
3312 ret = _hlua_channel_dup(chn, L, offset, len);
3313 _hlua_channel_delete(chn, offset, ret);
3314 return 1;
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003315}
3316
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003317/* This functions consumes and returns one line. If the channel is closed,
3318 * and the last data does not contains a final '\n', the data are returned
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003319 * without the final '\n'. When no more data are available, it returns nil
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003320 * value.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003321 *
3322 * From an action, All input data are considered. For a filter, the offset and
3323 * the length of input data to consider are retrieved from the filter context.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003324 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003325__LJMP static int hlua_channel_getline_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003326{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003327 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003328 struct filter *filter;
3329 size_t l, offset, len;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003330 int ret;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003331
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003332 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003333
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003334 offset = co_data(chn);
3335 len = ci_data(chn);
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003336
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003337 filter = hlua_channel_filter(L, 1, chn, &offset, &len);
3338 if (filter && !hlua_filter_from_payload(filter))
3339 WILL_LJMP(lua_error(L));
3340
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003341 if (!ci_data(chn) && channel_input_closed(chn)) {
3342 lua_pushnil(L);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003343 return 1;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003344 }
3345
3346 for (l = 0; l < len; l++) {
3347 if (*(b_peek(&chn->buf, offset+l)) == '\n') {
3348 len = l+1;
3349 goto dup;
3350 }
3351 }
3352
3353 if (!HLUA_CANT_YIELD(hlua_gethlua(L)) && !channel_input_closed(chn) && channel_may_recv(chn)) {
3354 /* Yield waiting for more data */
3355 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_getline_yield, TICK_ETERNITY, 0));
3356 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003357
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003358 dup:
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003359 ret = _hlua_channel_dup(chn, L, offset, len);
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003360 _hlua_channel_delete(chn, offset, ret);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003361 return 1;
3362}
3363
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003364/* [ DEPRECATED ]
3365 *
3366 * Check arguments for the function "hlua_channel_getline_yield".
3367 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003368__LJMP static int hlua_channel_getline(lua_State *L)
3369{
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003370 struct channel *chn;
3371
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003372 MAY_LJMP(check_args(L, 1, "getline"));
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003373 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3374 if (IS_HTX_STRM(chn_strm(chn))) {
3375 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3376 WILL_LJMP(lua_error(L));
3377 }
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003378 return MAY_LJMP(hlua_channel_getline_yield(L, 0, 0));
3379}
3380
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003381/* Retrieves a given amount of input data at the given offset. By default all
3382 * available input data are returned. The offset may be negactive to start from
3383 * the end of input data. The length may be -1 to set it to the maximum buffer
3384 * size.
3385 */
3386__LJMP static int hlua_channel_get_data(lua_State *L)
3387{
3388 struct channel *chn;
3389
3390 if (lua_gettop(L) < 1 || lua_gettop(L) > 3)
3391 WILL_LJMP(luaL_error(L, "'data' expects at most 2 arguments"));
3392 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3393 if (IS_HTX_STRM(chn_strm(chn))) {
3394 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3395 WILL_LJMP(lua_error(L));
3396 }
3397 return MAY_LJMP(hlua_channel_get_data_yield(L, 0, 0));
3398}
3399
3400/* Retrieves a given amount of input data at the given offset. By default all
3401 * available input data are returned. The offset may be negactive to start from
3402 * the end of input data. The length may be -1 to set it to the maximum buffer
3403 * size.
3404 */
3405__LJMP static int hlua_channel_get_line(lua_State *L)
3406{
3407 struct channel *chn;
3408
3409 if (lua_gettop(L) < 1 || lua_gettop(L) > 3)
3410 WILL_LJMP(luaL_error(L, "'line' expects at most 2 arguments"));
3411 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3412 if (IS_HTX_STRM(chn_strm(chn))) {
3413 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3414 WILL_LJMP(lua_error(L));
3415 }
3416 return MAY_LJMP(hlua_channel_get_line_yield(L, 0, 0));
3417}
3418
3419/* Appends a string into the input side of channel. It returns the length of the
3420 * written string, or -1 if the channel is closed or if the buffer size is too
3421 * little for the data. 0 may be returned if nothing is copied. This function
3422 * does not yield.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003423 *
3424 * For a filter, the context is updated on success.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003425 */
Christopher Faulet23976d92021-08-06 09:59:49 +02003426__LJMP static int hlua_channel_append(lua_State *L)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003427{
Christopher Faulet23976d92021-08-06 09:59:49 +02003428 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003429 struct filter *filter;
Christopher Faulet23976d92021-08-06 09:59:49 +02003430 const char *str;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003431 size_t sz, offset, len;
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003432 int ret;
Christopher Faulet23976d92021-08-06 09:59:49 +02003433
3434 MAY_LJMP(check_args(L, 2, "append"));
3435 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003436 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01003437 if (IS_HTX_STRM(chn_strm(chn))) {
Thierry Fournier77016da2020-08-15 14:35:51 +02003438 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
Christopher Faulet3f829a42018-12-13 21:56:45 +01003439 WILL_LJMP(lua_error(L));
Thierry Fournier77016da2020-08-15 14:35:51 +02003440 }
Christopher Faulet3f829a42018-12-13 21:56:45 +01003441
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003442 offset = co_data(chn);
3443 len = ci_data(chn);
3444
3445 filter = hlua_channel_filter(L, 1, chn, &offset, &len);
3446 if (filter && !hlua_filter_from_payload(filter))
3447 WILL_LJMP(lua_error(L));
3448
3449 ret = _hlua_channel_insert(chn, L, ist2(str, sz), offset);
3450 if (ret > 0 && filter) {
3451 struct hlua_flt_ctx *flt_ctx = filter->ctx;
3452
3453 flt_update_offsets(filter, chn, ret);
3454 flt_ctx->cur_len[CHN_IDX(chn)] += ret;
3455 }
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003456 lua_pushinteger(L, ret);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003457 return 1;
3458}
3459
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003460/* Prepends a string into the input side of channel. It returns the length of the
3461 * written string, or -1 if the channel is closed or if the buffer size is too
3462 * little for the data. 0 may be returned if nothing is copied. This function
3463 * does not yield.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003464 *
3465 * For a filter, the context is updated on success.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003466 */
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003467__LJMP static int hlua_channel_prepend(lua_State *L)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003468{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003469 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003470 struct filter *filter;
Christopher Faulet23976d92021-08-06 09:59:49 +02003471 const char *str;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003472 size_t sz, offset, len;
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003473 int ret;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003474
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003475 MAY_LJMP(check_args(L, 2, "prepend"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003476 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003477 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
3478 if (IS_HTX_STRM(chn_strm(chn))) {
3479 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3480 WILL_LJMP(lua_error(L));
3481 }
3482
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003483 offset = co_data(chn);
3484 len = ci_data(chn);
3485
3486 filter = hlua_channel_filter(L, 1, chn, &offset, &len);
3487 if (filter && !hlua_filter_from_payload(filter))
3488 WILL_LJMP(lua_error(L));
3489
3490 ret = _hlua_channel_insert(chn, L, ist2(str, sz), offset);
3491 if (ret > 0 && filter) {
3492 struct hlua_flt_ctx *flt_ctx = filter->ctx;
3493
3494 flt_update_offsets(filter, chn, ret);
3495 flt_ctx->cur_len[CHN_IDX(chn)] += ret;
3496 }
3497
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003498 lua_pushinteger(L, ret);
3499 return 1;
3500}
3501
3502/* Inserts a given amount of input data at the given offset by a string
3503 * content. By default the string is appended at the end of input data. It
3504 * returns the length of the written string, or -1 if the channel is closed or
3505 * if the buffer size is too little for the data.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003506 *
3507 * For a filter, the context is updated on success.
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003508 */
3509__LJMP static int hlua_channel_insert_data(lua_State *L)
3510{
3511 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003512 struct filter *filter;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003513 const char *str;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003514 size_t sz, input, output;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003515 int ret, offset;
3516
3517 if (lua_gettop(L) < 2 || lua_gettop(L) > 3)
3518 WILL_LJMP(luaL_error(L, "'insert' expects at least 1 argument and at most 2 arguments"));
3519 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3520 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003521
3522 output = co_data(chn);
3523 input = ci_data(chn);
3524
3525 filter = hlua_channel_filter(L, 1, chn, &output, &input);
3526 if (filter && !hlua_filter_from_payload(filter))
3527 WILL_LJMP(lua_error(L));
3528
3529 offset = input + output;
3530 if (lua_gettop(L) > 2) {
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003531 offset = MAY_LJMP(luaL_checkinteger(L, 3));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003532 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02003533 offset = MAX(0, (int)input + offset);
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003534 offset += output;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003535 if (offset < output || offset > output + input) {
3536 lua_pushfstring(L, "offset out of range.");
3537 WILL_LJMP(lua_error(L));
3538 }
3539 }
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003540 if (IS_HTX_STRM(chn_strm(chn))) {
3541 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3542 WILL_LJMP(lua_error(L));
3543 }
3544
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003545 ret = _hlua_channel_insert(chn, L, ist2(str, sz), offset);
3546 if (ret > 0 && filter) {
3547 struct hlua_flt_ctx *flt_ctx = filter->ctx;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003548
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003549 flt_update_offsets(filter, chn, ret);
3550 flt_ctx->cur_len[CHN_IDX(chn)] += ret;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003551 }
3552
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003553 lua_pushinteger(L, ret);
3554 return 1;
3555}
3556/* Replaces a given amount of input data at the given offset by a string
3557 * content. By default all remaining data are removed (offset = 0 and len =
3558 * -1). It returns the length of the written string, or -1 if the channel is
3559 * closed or if the buffer size is too little for the data.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003560 *
3561 * For a filter, the context is updated on success.
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003562 */
3563__LJMP static int hlua_channel_set_data(lua_State *L)
3564{
3565 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003566 struct filter *filter;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003567 const char *str;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003568 size_t sz, input, output;
3569 int ret, offset, len;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003570
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003571 if (lua_gettop(L) < 2 || lua_gettop(L) > 4)
3572 WILL_LJMP(luaL_error(L, "'set' expects at least 1 argument and at most 3 arguments"));
3573 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3574 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003575
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01003576 if (IS_HTX_STRM(chn_strm(chn))) {
Thierry Fournier77016da2020-08-15 14:35:51 +02003577 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
Christopher Faulet3f829a42018-12-13 21:56:45 +01003578 WILL_LJMP(lua_error(L));
Thierry Fournier77016da2020-08-15 14:35:51 +02003579 }
Christopher Faulet3f829a42018-12-13 21:56:45 +01003580
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003581 output = co_data(chn);
3582 input = ci_data(chn);
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003583
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003584 filter = hlua_channel_filter(L, 1, chn, &output, &input);
3585 if (filter && !hlua_filter_from_payload(filter))
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003586 WILL_LJMP(lua_error(L));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003587
3588 offset = output;
3589 if (lua_gettop(L) > 2) {
3590 offset = MAY_LJMP(luaL_checkinteger(L, 3));
3591 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02003592 offset = MAX(0, (int)input + offset);
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003593 offset += output;
3594 if (offset < output || offset > input + output) {
3595 lua_pushfstring(L, "offset out of range.");
3596 WILL_LJMP(lua_error(L));
3597 }
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003598 }
3599
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003600 len = output + input - offset;
3601 if (lua_gettop(L) == 4) {
3602 len = MAY_LJMP(luaL_checkinteger(L, 4));
3603 if (!len)
3604 goto set;
3605 if (len == -1)
3606 len = output + input - offset;
3607 if (len < 0 || offset + len > output + input) {
3608 lua_pushfstring(L, "length out of range.");
3609 WILL_LJMP(lua_error(L));
3610 }
3611 }
3612
3613 set:
Christopher Faulet23976d92021-08-06 09:59:49 +02003614 /* Be sure we can copied the string once input data will be removed. */
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003615 if (sz > c_room(chn) + len)
Christopher Faulet23976d92021-08-06 09:59:49 +02003616 lua_pushinteger(L, -1);
3617 else {
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003618 _hlua_channel_delete(chn, offset, len);
3619 ret = _hlua_channel_insert(chn, L, ist2(str, sz), offset);
3620 if (filter) {
3621 struct hlua_flt_ctx *flt_ctx = filter->ctx;
3622
3623 len -= (ret > 0 ? ret : 0);
3624 flt_update_offsets(filter, chn, -len);
3625 flt_ctx->cur_len[CHN_IDX(chn)] -= len;
3626 }
3627
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003628 lua_pushinteger(L, ret);
Christopher Faulet23976d92021-08-06 09:59:49 +02003629 }
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003630 return 1;
3631}
3632
3633/* Removes a given amount of input data at the given offset. By default all
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003634 * input data are removed (offset = 0 and len = -1). It returns the amount of
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003635 * the removed data.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003636 *
3637 * For a filter, the context is updated on success.
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003638 */
3639__LJMP static int hlua_channel_del_data(lua_State *L)
3640{
3641 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003642 struct filter *filter;
3643 size_t input, output;
3644 int offset, len;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003645
3646 if (lua_gettop(L) < 1 || lua_gettop(L) > 3)
3647 WILL_LJMP(luaL_error(L, "'remove' expects at most 2 arguments"));
3648 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003649
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003650 if (IS_HTX_STRM(chn_strm(chn))) {
3651 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3652 WILL_LJMP(lua_error(L));
3653 }
3654
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003655 output = co_data(chn);
3656 input = ci_data(chn);
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003657
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003658 filter = hlua_channel_filter(L, 1, chn, &output, &input);
3659 if (filter && !hlua_filter_from_payload(filter))
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003660 WILL_LJMP(lua_error(L));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003661
3662 offset = output;
3663 if (lua_gettop(L) > 2) {
3664 offset = MAY_LJMP(luaL_checkinteger(L, 3));
3665 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02003666 offset = MAX(0, (int)input + offset);
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003667 offset += output;
3668 if (offset < output || offset > input + output) {
3669 lua_pushfstring(L, "offset out of range.");
3670 WILL_LJMP(lua_error(L));
3671 }
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003672 }
3673
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003674 len = output + input - offset;
3675 if (lua_gettop(L) == 4) {
3676 len = MAY_LJMP(luaL_checkinteger(L, 4));
3677 if (!len)
3678 goto end;
3679 if (len == -1)
3680 len = output + input - offset;
3681 if (len < 0 || offset + len > output + input) {
3682 lua_pushfstring(L, "length out of range.");
3683 WILL_LJMP(lua_error(L));
3684 }
3685 }
3686
3687 _hlua_channel_delete(chn, offset, len);
3688 if (filter) {
3689 struct hlua_flt_ctx *flt_ctx = filter->ctx;
3690
3691 flt_update_offsets(filter, chn, -len);
3692 flt_ctx->cur_len[CHN_IDX(chn)] -= len;
3693 }
3694
3695 end:
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003696 lua_pushinteger(L, len);
Christopher Faulet23976d92021-08-06 09:59:49 +02003697 return 1;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003698}
3699
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003700/* Append data in the output side of the buffer. This data is immediately
3701 * sent. The function returns the amount of data written. If the buffer
3702 * cannot contain the data, the function yields. The function returns -1
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003703 * if the channel is closed.
3704 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003705__LJMP static int hlua_channel_send_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003706{
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003707 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003708 struct filter *filter;
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003709 const char *str;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003710 size_t offset, len, sz;
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003711 int l, ret;
Thierry Fournier4234dbd2020-11-28 13:18:23 +01003712 struct hlua *hlua;
3713
3714 /* Get hlua struct, or NULL if we execute from main lua state */
3715 hlua = hlua_gethlua(L);
3716 if (!hlua) {
3717 lua_pushnil(L);
3718 return 1;
3719 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003720
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003721 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3722 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
3723 l = MAY_LJMP(luaL_checkinteger(L, 3));
Christopher Faulet3f829a42018-12-13 21:56:45 +01003724
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003725 offset = co_data(chn);
3726 len = ci_data(chn);
3727
3728 filter = hlua_channel_filter(L, 1, chn, &offset, &len);
3729 if (filter && !hlua_filter_from_payload(filter))
3730 WILL_LJMP(lua_error(L));
3731
3732
Willy Tarreau47860ed2015-03-10 14:07:50 +01003733 if (unlikely(channel_output_closed(chn))) {
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003734 lua_pushinteger(L, -1);
3735 return 1;
3736 }
3737
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003738 len = c_room(chn);
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003739 if (len > sz -l) {
3740 if (filter) {
3741 lua_pushinteger(L, -1);
3742 return 1;
3743 }
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003744 len = sz - l;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003745 }
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003746
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003747 ret = _hlua_channel_insert(chn, L, ist2(str, len), offset);
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003748 if (ret == -1) {
3749 lua_pop(L, 1);
3750 lua_pushinteger(L, -1);
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003751 return 1;
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003752 }
3753 if (ret) {
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003754 if (filter) {
3755 struct hlua_flt_ctx *flt_ctx = filter->ctx;
3756
3757
3758 flt_update_offsets(filter, chn, ret);
3759 FLT_OFF(filter, chn) += ret;
3760 flt_ctx->cur_off[CHN_IDX(chn)] += ret;
3761 }
3762 else
3763 c_adv(chn, ret);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003764
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003765 l += ret;
3766 lua_pop(L, 1);
3767 lua_pushinteger(L, l);
3768 }
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003769
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003770 if (l < sz) {
3771 /* Yield only if the channel's output is not empty.
3772 * Otherwise it means we cannot add more data. */
3773 if (co_data(chn) == 0 || HLUA_CANT_YIELD(hlua_gethlua(L)))
Christopher Faulet2e60aa42021-08-05 11:58:37 +02003774 return 1;
3775
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003776 /* If we are waiting for space in the response buffer, we
3777 * must set the flag WAKERESWR. This flag required the task
3778 * wake up if any activity is detected on the response buffer.
3779 */
Willy Tarreau47860ed2015-03-10 14:07:50 +01003780 if (chn->flags & CF_ISRESP)
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003781 HLUA_SET_WAKERESWR(hlua);
Thierry FOURNIER53e08ec2015-03-06 00:35:53 +01003782 else
3783 HLUA_SET_WAKEREQWR(hlua);
Willy Tarreau9635e032018-10-16 17:52:55 +02003784 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_send_yield, TICK_ETERNITY, 0));
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003785 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003786
3787 return 1;
3788}
3789
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05003790/* Just a wrapper of "_hlua_channel_send". This wrapper permits
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003791 * yield the LUA process, and resume it without checking the
3792 * input arguments.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003793 *
3794 * This function cannot be called from a filter.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003795 */
3796__LJMP static int hlua_channel_send(lua_State *L)
3797{
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003798 struct channel *chn;
3799
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003800 MAY_LJMP(check_args(L, 2, "send"));
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003801 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3802 if (IS_HTX_STRM(chn_strm(chn))) {
3803 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3804 WILL_LJMP(lua_error(L));
3805 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003806 lua_pushinteger(L, 0);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003807 return MAY_LJMP(hlua_channel_send_yield(L, 0, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003808}
3809
3810/* This function forward and amount of butes. The data pass from
3811 * the input side of the buffer to the output side, and can be
3812 * forwarded. This function never fails.
3813 *
3814 * The Lua function takes an amount of bytes to be forwarded in
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05003815 * input. It returns the number of bytes forwarded.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003816 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003817__LJMP static int hlua_channel_forward_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003818{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003819 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003820 struct filter *filter;
3821 size_t offset, len, fwd;
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003822 int l, max;
Thierry Fournier4234dbd2020-11-28 13:18:23 +01003823 struct hlua *hlua;
3824
3825 /* Get hlua struct, or NULL if we execute from main lua state */
3826 hlua = hlua_gethlua(L);
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003827 if (!hlua) {
3828 lua_pushnil(L);
Thierry Fournier4234dbd2020-11-28 13:18:23 +01003829 return 1;
Thierry Fournier77016da2020-08-15 14:35:51 +02003830 }
Christopher Faulet3f829a42018-12-13 21:56:45 +01003831
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003832 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003833 fwd = MAY_LJMP(luaL_checkinteger(L, 2));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003834 l = MAY_LJMP(luaL_checkinteger(L, -1));
3835
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003836 offset = co_data(chn);
3837 len = ci_data(chn);
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003838
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003839 filter = hlua_channel_filter(L, 1, chn, &offset, &len);
3840 if (filter && !hlua_filter_from_payload(filter))
3841 WILL_LJMP(lua_error(L));
3842
3843 max = fwd - l;
3844 if (max > len)
3845 max = len;
3846
3847 if (filter) {
3848 struct hlua_flt_ctx *flt_ctx = filter->ctx;
3849
3850 FLT_OFF(filter, chn) += max;
3851 flt_ctx->cur_off[CHN_IDX(chn)] += max;
3852 flt_ctx->cur_len[CHN_IDX(chn)] -= max;
3853 }
3854 else
3855 channel_forward(chn, max);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003856
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003857 l += max;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003858 lua_pop(L, 1);
3859 lua_pushinteger(L, l);
3860
3861 /* Check if it miss bytes to forward. */
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003862 if (l < fwd) {
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003863 /* The the input channel or the output channel are closed, we
3864 * must return the amount of data forwarded.
3865 */
Christopher Faulet2e60aa42021-08-05 11:58:37 +02003866 if (channel_input_closed(chn) || channel_output_closed(chn) || HLUA_CANT_YIELD(hlua_gethlua(L)))
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003867 return 1;
3868
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003869 /* If we are waiting for space data in the response buffer, we
3870 * must set the flag WAKERESWR. This flag required the task
3871 * wake up if any activity is detected on the response buffer.
3872 */
Willy Tarreau47860ed2015-03-10 14:07:50 +01003873 if (chn->flags & CF_ISRESP)
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003874 HLUA_SET_WAKERESWR(hlua);
Thierry FOURNIER53e08ec2015-03-06 00:35:53 +01003875 else
3876 HLUA_SET_WAKEREQWR(hlua);
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003877
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003878 /* Otherwise, we can yield waiting for new data in the inpout side. */
Willy Tarreau9635e032018-10-16 17:52:55 +02003879 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_forward_yield, TICK_ETERNITY, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003880 }
3881
3882 return 1;
3883}
3884
3885/* Just check the input and prepare the stack for the previous
3886 * function "hlua_channel_forward_yield"
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003887 *
3888 * This function cannot be called from a filter.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003889 */
3890__LJMP static int hlua_channel_forward(lua_State *L)
3891{
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003892 struct channel *chn;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003893
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003894 MAY_LJMP(check_args(L, 2, "forward"));
3895 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3896 if (IS_HTX_STRM(chn_strm(chn))) {
3897 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3898 WILL_LJMP(lua_error(L));
3899 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003900 lua_pushinteger(L, 0);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003901 return MAY_LJMP(hlua_channel_forward_yield(L, 0, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003902}
3903
3904/* Just returns the number of bytes available in the input
3905 * side of the buffer. This function never fails.
3906 */
3907__LJMP static int hlua_channel_get_in_len(lua_State *L)
3908{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003909 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003910 struct filter *filter;
3911 size_t output, input;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003912
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003913 MAY_LJMP(check_args(L, 1, "input"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003914 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003915
3916 output = co_data(chn);
3917 input = ci_data(chn);
3918 filter = hlua_channel_filter(L, 1, chn, &output, &input);
3919 if (filter || !IS_HTX_STRM(chn_strm(chn)))
3920 lua_pushinteger(L, input);
3921 else {
Christopher Fauleta3ceac12018-12-14 13:39:09 +01003922 struct htx *htx = htxbuf(&chn->buf);
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003923
Christopher Fauleta3ceac12018-12-14 13:39:09 +01003924 lua_pushinteger(L, htx->data - co_data(chn));
3925 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003926 return 1;
3927}
3928
Thierry FOURNIER / OZON.IO65192f32016-11-07 15:28:40 +01003929/* Returns true if the channel is full. */
3930__LJMP static int hlua_channel_is_full(lua_State *L)
3931{
3932 struct channel *chn;
Thierry FOURNIER / OZON.IO65192f32016-11-07 15:28:40 +01003933
3934 MAY_LJMP(check_args(L, 1, "is_full"));
3935 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Faulet0ec740e2020-02-26 11:59:19 +01003936 /* ignore the reserve, we are not on a producer side (ie in an
3937 * applet).
3938 */
3939 lua_pushboolean(L, channel_full(chn, 0));
Thierry FOURNIER / OZON.IO65192f32016-11-07 15:28:40 +01003940 return 1;
3941}
3942
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003943/* Returns true if the channel may still receive data. */
3944__LJMP static int hlua_channel_may_recv(lua_State *L)
3945{
3946 struct channel *chn;
3947
3948 MAY_LJMP(check_args(L, 1, "may_recv"));
3949 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3950 lua_pushboolean(L, (!channel_input_closed(chn) && channel_may_recv(chn)));
3951 return 1;
3952}
3953
Christopher Faulet2ac9ba22020-02-25 10:15:50 +01003954/* Returns true if the channel is the response channel. */
3955__LJMP static int hlua_channel_is_resp(lua_State *L)
3956{
3957 struct channel *chn;
3958
3959 MAY_LJMP(check_args(L, 1, "is_resp"));
3960 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3961
3962 lua_pushboolean(L, !!(chn->flags & CF_ISRESP));
3963 return 1;
3964}
3965
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003966/* Just returns the number of bytes available in the output
3967 * side of the buffer. This function never fails.
3968 */
3969__LJMP static int hlua_channel_get_out_len(lua_State *L)
3970{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003971 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003972 size_t output, input;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003973
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003974 MAY_LJMP(check_args(L, 1, "output"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003975 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003976
3977 output = co_data(chn);
3978 input = ci_data(chn);
3979 hlua_channel_filter(L, 1, chn, &output, &input);
3980
3981 lua_pushinteger(L, output);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003982 return 1;
3983}
3984
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003985/*
3986 *
3987 *
3988 * Class Fetches
3989 *
3990 *
3991 */
3992
3993/* Returns a struct hlua_session if the stack entry "ud" is
Willy Tarreau87b09662015-04-03 00:22:06 +02003994 * a class stream, otherwise it throws an error.
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003995 */
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01003996__LJMP static struct hlua_smp *hlua_checkfetches(lua_State *L, int ud)
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003997{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02003998 return MAY_LJMP(hlua_checkudata(L, ud, class_fetches_ref));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003999}
4000
4001/* This function creates and push in the stack a fetch object according
4002 * with a current TXN.
4003 */
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004004static int hlua_fetches_new(lua_State *L, struct hlua_txn *txn, unsigned int flags)
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004005{
Willy Tarreau7073c472015-04-06 11:15:40 +02004006 struct hlua_smp *hsmp;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004007
4008 /* Check stack size. */
4009 if (!lua_checkstack(L, 3))
4010 return 0;
4011
4012 /* Create the object: obj[0] = userdata.
4013 * Note that the base of the Fetches object is the
4014 * transaction object.
4015 */
4016 lua_newtable(L);
Willy Tarreau7073c472015-04-06 11:15:40 +02004017 hsmp = lua_newuserdata(L, sizeof(*hsmp));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004018 lua_rawseti(L, -2, 0);
4019
Willy Tarreau7073c472015-04-06 11:15:40 +02004020 hsmp->s = txn->s;
4021 hsmp->p = txn->p;
Thierry FOURNIERc4eebc82015-11-02 10:01:59 +01004022 hsmp->dir = txn->dir;
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004023 hsmp->flags = flags;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004024
4025 /* Pop a class sesison metatable and affect it to the userdata. */
4026 lua_rawgeti(L, LUA_REGISTRYINDEX, class_fetches_ref);
4027 lua_setmetatable(L, -2);
4028
4029 return 1;
4030}
4031
4032/* This function is an LUA binding. It is called with each sample-fetch.
4033 * It uses closure argument to store the associated sample-fetch. It
4034 * returns only one argument or throws an error. An error is thrown
4035 * only if an error is encountered during the argument parsing. If
4036 * the "sample-fetch" function fails, nil is returned.
4037 */
4038__LJMP static int hlua_run_sample_fetch(lua_State *L)
4039{
Willy Tarreaub2ccb562015-04-06 11:11:15 +02004040 struct hlua_smp *hsmp;
Willy Tarreau2ec22742015-03-10 14:27:20 +01004041 struct sample_fetch *f;
Frédéric Lécaillef874a832018-06-15 13:56:04 +02004042 struct arg args[ARGM_NBARGS + 1] = {{0}};
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004043 int i;
4044 struct sample smp;
4045
4046 /* Get closure arguments. */
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02004047 f = lua_touserdata(L, lua_upvalueindex(1));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004048
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004049 /* Get traditional arguments. */
Willy Tarreaub2ccb562015-04-06 11:11:15 +02004050 hsmp = MAY_LJMP(hlua_checkfetches(L, 1));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004051
Thierry FOURNIERca988662015-12-20 18:43:03 +01004052 /* Check execution authorization. */
4053 if (f->use & SMP_USE_HTTP_ANY &&
4054 !(hsmp->flags & HLUA_F_MAY_USE_HTTP)) {
4055 lua_pushfstring(L, "the sample-fetch '%s' needs an HTTP parser which "
4056 "is not available in Lua services", f->kw);
4057 WILL_LJMP(lua_error(L));
4058 }
4059
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004060 /* Get extra arguments. */
4061 for (i = 0; i < lua_gettop(L) - 1; i++) {
4062 if (i >= ARGM_NBARGS)
4063 break;
4064 hlua_lua2arg(L, i + 2, &args[i]);
4065 }
4066 args[i].type = ARGT_STOP;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004067 args[i].data.str.area = NULL;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004068
4069 /* Check arguments. */
Willy Tarreaub2ccb562015-04-06 11:11:15 +02004070 MAY_LJMP(hlua_lua2arg_check(L, 2, args, f->arg_mask, hsmp->p));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004071
4072 /* Run the special args checker. */
Willy Tarreau2ec22742015-03-10 14:27:20 +01004073 if (f->val_args && !f->val_args(args, NULL)) {
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004074 lua_pushfstring(L, "error in arguments");
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004075 goto error;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004076 }
4077
4078 /* Initialise the sample. */
4079 memset(&smp, 0, sizeof(smp));
4080
4081 /* Run the sample fetch process. */
Willy Tarreau1777ea62016-03-10 16:15:46 +01004082 smp_set_owner(&smp, hsmp->p, hsmp->s->sess, hsmp->s, hsmp->dir & SMP_OPT_DIR);
Thierry FOURNIER0786d052015-05-11 15:42:45 +02004083 if (!f->process(args, &smp, f->kw, f->private)) {
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004084 if (hsmp->flags & HLUA_F_AS_STRING)
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01004085 lua_pushstring(L, "");
4086 else
4087 lua_pushnil(L);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004088 goto end;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004089 }
4090
4091 /* Convert the returned sample in lua value. */
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004092 if (hsmp->flags & HLUA_F_AS_STRING)
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01004093 hlua_smp2lua_str(L, &smp);
4094 else
4095 hlua_smp2lua(L, &smp);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004096
4097 end:
Willy Tarreauee0d7272021-07-16 10:26:56 +02004098 free_args(args);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004099 return 1;
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004100
4101 error:
Willy Tarreauee0d7272021-07-16 10:26:56 +02004102 free_args(args);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004103 WILL_LJMP(lua_error(L));
4104 return 0; /* Never reached */
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004105}
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01004106
4107/*
4108 *
4109 *
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004110 * Class Converters
4111 *
4112 *
4113 */
4114
4115/* Returns a struct hlua_session if the stack entry "ud" is
Willy Tarreau87b09662015-04-03 00:22:06 +02004116 * a class stream, otherwise it throws an error.
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004117 */
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01004118__LJMP static struct hlua_smp *hlua_checkconverters(lua_State *L, int ud)
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004119{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02004120 return MAY_LJMP(hlua_checkudata(L, ud, class_converters_ref));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004121}
4122
4123/* This function creates and push in the stack a Converters object
4124 * according with a current TXN.
4125 */
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004126static int hlua_converters_new(lua_State *L, struct hlua_txn *txn, unsigned int flags)
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004127{
Willy Tarreau7073c472015-04-06 11:15:40 +02004128 struct hlua_smp *hsmp;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004129
4130 /* Check stack size. */
4131 if (!lua_checkstack(L, 3))
4132 return 0;
4133
4134 /* Create the object: obj[0] = userdata.
4135 * Note that the base of the Converters object is the
4136 * same than the TXN object.
4137 */
4138 lua_newtable(L);
Willy Tarreau7073c472015-04-06 11:15:40 +02004139 hsmp = lua_newuserdata(L, sizeof(*hsmp));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004140 lua_rawseti(L, -2, 0);
4141
Willy Tarreau7073c472015-04-06 11:15:40 +02004142 hsmp->s = txn->s;
4143 hsmp->p = txn->p;
Thierry FOURNIERc4eebc82015-11-02 10:01:59 +01004144 hsmp->dir = txn->dir;
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004145 hsmp->flags = flags;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004146
Willy Tarreau87b09662015-04-03 00:22:06 +02004147 /* Pop a class stream metatable and affect it to the table. */
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004148 lua_rawgeti(L, LUA_REGISTRYINDEX, class_converters_ref);
4149 lua_setmetatable(L, -2);
4150
4151 return 1;
4152}
4153
4154/* This function is an LUA binding. It is called with each converter.
4155 * It uses closure argument to store the associated converter. It
4156 * returns only one argument or throws an error. An error is thrown
4157 * only if an error is encountered during the argument parsing. If
4158 * the converter function function fails, nil is returned.
4159 */
4160__LJMP static int hlua_run_sample_conv(lua_State *L)
4161{
Willy Tarreauda5f1082015-04-06 11:17:13 +02004162 struct hlua_smp *hsmp;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004163 struct sample_conv *conv;
Frédéric Lécaillef874a832018-06-15 13:56:04 +02004164 struct arg args[ARGM_NBARGS + 1] = {{0}};
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004165 int i;
4166 struct sample smp;
4167
4168 /* Get closure arguments. */
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02004169 conv = lua_touserdata(L, lua_upvalueindex(1));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004170
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004171 /* Get traditional arguments. */
Willy Tarreauda5f1082015-04-06 11:17:13 +02004172 hsmp = MAY_LJMP(hlua_checkconverters(L, 1));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004173
4174 /* Get extra arguments. */
4175 for (i = 0; i < lua_gettop(L) - 2; i++) {
4176 if (i >= ARGM_NBARGS)
4177 break;
4178 hlua_lua2arg(L, i + 3, &args[i]);
4179 }
4180 args[i].type = ARGT_STOP;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004181 args[i].data.str.area = NULL;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004182
4183 /* Check arguments. */
Willy Tarreauda5f1082015-04-06 11:17:13 +02004184 MAY_LJMP(hlua_lua2arg_check(L, 3, args, conv->arg_mask, hsmp->p));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004185
4186 /* Run the special args checker. */
4187 if (conv->val_args && !conv->val_args(args, conv, "", 0, NULL)) {
4188 hlua_pusherror(L, "error in arguments");
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004189 goto error;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004190 }
4191
4192 /* Initialise the sample. */
Amaury Denoyellebc0af6a2020-10-29 17:21:20 +01004193 memset(&smp, 0, sizeof(smp));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004194 if (!hlua_lua2smp(L, 2, &smp)) {
4195 hlua_pusherror(L, "error in the input argument");
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004196 goto error;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004197 }
4198
Willy Tarreau1777ea62016-03-10 16:15:46 +01004199 smp_set_owner(&smp, hsmp->p, hsmp->s->sess, hsmp->s, hsmp->dir & SMP_OPT_DIR);
4200
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004201 /* Apply expected cast. */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02004202 if (!sample_casts[smp.data.type][conv->in_type]) {
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004203 hlua_pusherror(L, "invalid input argument: cannot cast '%s' to '%s'",
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02004204 smp_to_type[smp.data.type], smp_to_type[conv->in_type]);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004205 goto error;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004206 }
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02004207 if (sample_casts[smp.data.type][conv->in_type] != c_none &&
4208 !sample_casts[smp.data.type][conv->in_type](&smp)) {
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004209 hlua_pusherror(L, "error during the input argument casting");
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004210 goto error;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004211 }
4212
4213 /* Run the sample conversion process. */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02004214 if (!conv->process(args, &smp, conv->private)) {
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004215 if (hsmp->flags & HLUA_F_AS_STRING)
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01004216 lua_pushstring(L, "");
4217 else
Willy Tarreaua678b432015-08-28 10:14:59 +02004218 lua_pushnil(L);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004219 goto end;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004220 }
4221
4222 /* Convert the returned sample in lua value. */
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004223 if (hsmp->flags & HLUA_F_AS_STRING)
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01004224 hlua_smp2lua_str(L, &smp);
4225 else
4226 hlua_smp2lua(L, &smp);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004227 end:
Willy Tarreauee0d7272021-07-16 10:26:56 +02004228 free_args(args);
Willy Tarreaua678b432015-08-28 10:14:59 +02004229 return 1;
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004230
4231 error:
Willy Tarreauee0d7272021-07-16 10:26:56 +02004232 free_args(args);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004233 WILL_LJMP(lua_error(L));
4234 return 0; /* Never reached */
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004235}
4236
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004237/*
4238 *
4239 *
4240 * Class AppletTCP
4241 *
4242 *
4243 */
4244
4245/* Returns a struct hlua_txn if the stack entry "ud" is
4246 * a class stream, otherwise it throws an error.
4247 */
4248__LJMP static struct hlua_appctx *hlua_checkapplet_tcp(lua_State *L, int ud)
4249{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02004250 return MAY_LJMP(hlua_checkudata(L, ud, class_applet_tcp_ref));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004251}
4252
4253/* This function creates and push in the stack an Applet object
4254 * according with a current TXN.
4255 */
4256static int hlua_applet_tcp_new(lua_State *L, struct appctx *ctx)
4257{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004258 struct hlua_appctx *luactx;
Christopher Faulet908628c2022-03-25 16:43:49 +01004259 struct stream *s = __cs_strm(ctx->owner);
Christopher Faulet2da02ae2022-02-24 13:45:27 +01004260 struct proxy *p;
4261
4262 ALREADY_CHECKED(s);
4263 p = s->be;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004264
4265 /* Check stack size. */
4266 if (!lua_checkstack(L, 3))
4267 return 0;
4268
4269 /* Create the object: obj[0] = userdata.
4270 * Note that the base of the Converters object is the
4271 * same than the TXN object.
4272 */
4273 lua_newtable(L);
Willy Tarreau7e702d12021-04-28 17:59:21 +02004274 luactx = lua_newuserdata(L, sizeof(*luactx));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004275 lua_rawseti(L, -2, 0);
Willy Tarreau7e702d12021-04-28 17:59:21 +02004276 luactx->appctx = ctx;
4277 luactx->htxn.s = s;
4278 luactx->htxn.p = p;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004279
4280 /* Create the "f" field that contains a list of fetches. */
4281 lua_pushstring(L, "f");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004282 if (!hlua_fetches_new(L, &luactx->htxn, 0))
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004283 return 0;
4284 lua_settable(L, -3);
4285
4286 /* Create the "sf" field that contains a list of stringsafe fetches. */
4287 lua_pushstring(L, "sf");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004288 if (!hlua_fetches_new(L, &luactx->htxn, HLUA_F_AS_STRING))
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004289 return 0;
4290 lua_settable(L, -3);
4291
4292 /* Create the "c" field that contains a list of converters. */
4293 lua_pushstring(L, "c");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004294 if (!hlua_converters_new(L, &luactx->htxn, 0))
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004295 return 0;
4296 lua_settable(L, -3);
4297
4298 /* Create the "sc" field that contains a list of stringsafe converters. */
4299 lua_pushstring(L, "sc");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004300 if (!hlua_converters_new(L, &luactx->htxn, HLUA_F_AS_STRING))
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004301 return 0;
4302 lua_settable(L, -3);
4303
4304 /* Pop a class stream metatable and affect it to the table. */
4305 lua_rawgeti(L, LUA_REGISTRYINDEX, class_applet_tcp_ref);
4306 lua_setmetatable(L, -2);
4307
4308 return 1;
4309}
4310
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004311__LJMP static int hlua_applet_tcp_set_var(lua_State *L)
4312{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004313 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004314 struct stream *s;
4315 const char *name;
4316 size_t len;
4317 struct sample smp;
4318
Tim Duesterhus4e172c92020-05-19 13:49:42 +02004319 if (lua_gettop(L) < 3 || lua_gettop(L) > 4)
4320 WILL_LJMP(luaL_error(L, "'set_var' needs between 3 and 4 arguments"));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004321
4322 /* It is useles to retrieve the stream, but this function
4323 * runs only in a stream context.
4324 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004325 luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004326 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004327 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004328
4329 /* Converts the third argument in a sample. */
Amaury Denoyellebc0af6a2020-10-29 17:21:20 +01004330 memset(&smp, 0, sizeof(smp));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004331 hlua_lua2smp(L, 3, &smp);
4332
4333 /* Store the sample in a variable. */
4334 smp_set_owner(&smp, s->be, s->sess, s, 0);
Tim Duesterhus4e172c92020-05-19 13:49:42 +02004335
4336 if (lua_gettop(L) == 4 && lua_toboolean(L, 4))
4337 lua_pushboolean(L, vars_set_by_name_ifexist(name, len, &smp) != 0);
4338 else
4339 lua_pushboolean(L, vars_set_by_name(name, len, &smp) != 0);
4340
Tim Duesterhus84ebc132020-05-19 13:49:41 +02004341 return 1;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004342}
4343
4344__LJMP static int hlua_applet_tcp_unset_var(lua_State *L)
4345{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004346 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004347 struct stream *s;
4348 const char *name;
4349 size_t len;
4350 struct sample smp;
4351
4352 MAY_LJMP(check_args(L, 2, "unset_var"));
4353
4354 /* It is useles to retrieve the stream, but this function
4355 * runs only in a stream context.
4356 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004357 luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004358 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004359 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004360
4361 /* Unset the variable. */
4362 smp_set_owner(&smp, s->be, s->sess, s, 0);
Tim Duesterhus84ebc132020-05-19 13:49:41 +02004363 lua_pushboolean(L, vars_unset_by_name_ifexist(name, len, &smp) != 0);
4364 return 1;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004365}
4366
4367__LJMP static int hlua_applet_tcp_get_var(lua_State *L)
4368{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004369 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004370 struct stream *s;
4371 const char *name;
4372 size_t len;
4373 struct sample smp;
4374
4375 MAY_LJMP(check_args(L, 2, "get_var"));
4376
4377 /* It is useles to retrieve the stream, but this function
4378 * runs only in a stream context.
4379 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004380 luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004381 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004382 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004383
4384 smp_set_owner(&smp, s->be, s->sess, s, 0);
Willy Tarreaue352b9d2021-09-03 11:52:38 +02004385 if (!vars_get_by_name(name, len, &smp, NULL)) {
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004386 lua_pushnil(L);
4387 return 1;
4388 }
4389
4390 return hlua_smp2lua(L, &smp);
4391}
4392
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004393__LJMP static int hlua_applet_tcp_set_priv(lua_State *L)
4394{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004395 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
4396 struct stream *s = luactx->htxn.s;
Thierry FOURNIER3b0a6d42016-12-16 08:48:32 +01004397 struct hlua *hlua;
4398
4399 /* Note that this hlua struct is from the session and not from the applet. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01004400 if (!s->hlua)
4401 return 0;
4402 hlua = s->hlua;
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004403
4404 MAY_LJMP(check_args(L, 2, "set_priv"));
4405
4406 /* Remove previous value. */
Thierry FOURNIERe068b602017-04-26 13:27:05 +02004407 luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref);
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004408
4409 /* Get and store new value. */
4410 lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */
4411 hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */
4412
4413 return 0;
4414}
4415
4416__LJMP static int hlua_applet_tcp_get_priv(lua_State *L)
4417{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004418 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
4419 struct stream *s = luactx->htxn.s;
Thierry FOURNIER3b0a6d42016-12-16 08:48:32 +01004420 struct hlua *hlua;
4421
4422 /* Note that this hlua struct is from the session and not from the applet. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01004423 if (!s->hlua) {
4424 lua_pushnil(L);
4425 return 1;
4426 }
4427 hlua = s->hlua;
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004428
4429 /* Push configuration index in the stack. */
4430 lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref);
4431
4432 return 1;
4433}
4434
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004435/* If expected data not yet available, it returns a yield. This function
4436 * consumes the data in the buffer. It returns a string containing the
4437 * data. This string can be empty.
4438 */
4439__LJMP static int hlua_applet_tcp_getline_yield(lua_State *L, int status, lua_KContext ctx)
4440{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004441 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Christopher Faulet908628c2022-03-25 16:43:49 +01004442 struct conn_stream *cs = luactx->appctx->owner;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004443 int ret;
Willy Tarreau206ba832018-06-14 15:27:31 +02004444 const char *blk1;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02004445 size_t len1;
Willy Tarreau206ba832018-06-14 15:27:31 +02004446 const char *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02004447 size_t len2;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004448
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004449 /* Read the maximum amount of data available. */
Christopher Faulet908628c2022-03-25 16:43:49 +01004450 ret = co_getline_nc(cs_oc(cs), &blk1, &len1, &blk2, &len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004451
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004452 /* Data not yet available. return yield. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004453 if (ret == 0) {
Christopher Fauleta0bdec32022-04-04 07:51:21 +02004454 cs_cant_get(cs);
Willy Tarreau9635e032018-10-16 17:52:55 +02004455 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_getline_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004456 }
4457
4458 /* End of data: commit the total strings and return. */
4459 if (ret < 0) {
Willy Tarreau7e702d12021-04-28 17:59:21 +02004460 luaL_pushresult(&luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004461 return 1;
4462 }
4463
4464 /* Ensure that the block 2 length is usable. */
4465 if (ret == 1)
4466 len2 = 0;
4467
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07004468 /* don't check the max length read and don't check. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004469 luaL_addlstring(&luactx->b, blk1, len1);
4470 luaL_addlstring(&luactx->b, blk2, len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004471
4472 /* Consume input channel output buffer data. */
Christopher Faulet908628c2022-03-25 16:43:49 +01004473 co_skip(cs_oc(cs), len1 + len2);
Willy Tarreau7e702d12021-04-28 17:59:21 +02004474 luaL_pushresult(&luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004475 return 1;
4476}
4477
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004478/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004479__LJMP static int hlua_applet_tcp_getline(lua_State *L)
4480{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004481 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004482
4483 /* Initialise the string catenation. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004484 luaL_buffinit(L, &luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004485
4486 return MAY_LJMP(hlua_applet_tcp_getline_yield(L, 0, 0));
4487}
4488
4489/* If expected data not yet available, it returns a yield. This function
4490 * consumes the data in the buffer. It returns a string containing the
4491 * data. This string can be empty.
4492 */
4493__LJMP static int hlua_applet_tcp_recv_yield(lua_State *L, int status, lua_KContext ctx)
4494{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004495 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Christopher Faulet908628c2022-03-25 16:43:49 +01004496 struct conn_stream *cs = luactx->appctx->owner;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02004497 size_t len = MAY_LJMP(luaL_checkinteger(L, 2));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004498 int ret;
Willy Tarreau206ba832018-06-14 15:27:31 +02004499 const char *blk1;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02004500 size_t len1;
Willy Tarreau206ba832018-06-14 15:27:31 +02004501 const char *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02004502 size_t len2;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004503
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004504 /* Read the maximum amount of data available. */
Christopher Faulet908628c2022-03-25 16:43:49 +01004505 ret = co_getblk_nc(cs_oc(cs), &blk1, &len1, &blk2, &len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004506
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004507 /* Data not yet available. return yield. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004508 if (ret == 0) {
Christopher Fauleta0bdec32022-04-04 07:51:21 +02004509 cs_cant_get(cs);
Willy Tarreau9635e032018-10-16 17:52:55 +02004510 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_recv_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004511 }
4512
4513 /* End of data: commit the total strings and return. */
4514 if (ret < 0) {
Willy Tarreau7e702d12021-04-28 17:59:21 +02004515 luaL_pushresult(&luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004516 return 1;
4517 }
4518
4519 /* Ensure that the block 2 length is usable. */
4520 if (ret == 1)
4521 len2 = 0;
4522
4523 if (len == -1) {
4524
4525 /* If len == -1, catenate all the data avalaile and
4526 * yield because we want to get all the data until
4527 * the end of data stream.
4528 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004529 luaL_addlstring(&luactx->b, blk1, len1);
4530 luaL_addlstring(&luactx->b, blk2, len2);
Christopher Faulet908628c2022-03-25 16:43:49 +01004531 co_skip(cs_oc(cs), len1 + len2);
Christopher Fauleta0bdec32022-04-04 07:51:21 +02004532 cs_cant_get(cs);
Willy Tarreau9635e032018-10-16 17:52:55 +02004533 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_recv_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004534
4535 } else {
4536
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05004537 /* Copy the first block caping to the length required. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004538 if (len1 > len)
4539 len1 = len;
Willy Tarreau7e702d12021-04-28 17:59:21 +02004540 luaL_addlstring(&luactx->b, blk1, len1);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004541 len -= len1;
4542
4543 /* Copy the second block. */
4544 if (len2 > len)
4545 len2 = len;
Willy Tarreau7e702d12021-04-28 17:59:21 +02004546 luaL_addlstring(&luactx->b, blk2, len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004547 len -= len2;
4548
4549 /* Consume input channel output buffer data. */
Christopher Faulet908628c2022-03-25 16:43:49 +01004550 co_skip(cs_oc(cs), len1 + len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004551
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004552 /* If there is no other data available, yield waiting for new data. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004553 if (len > 0) {
4554 lua_pushinteger(L, len);
4555 lua_replace(L, 2);
Christopher Fauleta0bdec32022-04-04 07:51:21 +02004556 cs_cant_get(cs);
Willy Tarreau9635e032018-10-16 17:52:55 +02004557 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_recv_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004558 }
4559
4560 /* return the result. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004561 luaL_pushresult(&luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004562 return 1;
4563 }
4564
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004565 /* we never execute this */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004566 hlua_pusherror(L, "Lua: internal error");
4567 WILL_LJMP(lua_error(L));
4568 return 0;
4569}
4570
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004571/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004572__LJMP static int hlua_applet_tcp_recv(lua_State *L)
4573{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004574 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004575 int len = -1;
4576
4577 if (lua_gettop(L) > 2)
4578 WILL_LJMP(luaL_error(L, "The 'recv' function requires between 1 and 2 arguments."));
4579 if (lua_gettop(L) >= 2) {
4580 len = MAY_LJMP(luaL_checkinteger(L, 2));
4581 lua_pop(L, 1);
4582 }
4583
4584 /* Confirm or set the required length */
4585 lua_pushinteger(L, len);
4586
4587 /* Initialise the string catenation. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004588 luaL_buffinit(L, &luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004589
4590 return MAY_LJMP(hlua_applet_tcp_recv_yield(L, 0, 0));
4591}
4592
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004593/* Append data in the output side of the buffer. This data is immediately
4594 * sent. The function returns the amount of data written. If the buffer
4595 * cannot contain the data, the function yields. The function returns -1
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004596 * if the channel is closed.
4597 */
4598__LJMP static int hlua_applet_tcp_send_yield(lua_State *L, int status, lua_KContext ctx)
4599{
4600 size_t len;
Willy Tarreau7e702d12021-04-28 17:59:21 +02004601 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004602 const char *str = MAY_LJMP(luaL_checklstring(L, 2, &len));
4603 int l = MAY_LJMP(luaL_checkinteger(L, 3));
Christopher Faulet908628c2022-03-25 16:43:49 +01004604 struct conn_stream *cs = luactx->appctx->owner;
4605 struct channel *chn = cs_ic(cs);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004606 int max;
4607
4608 /* Get the max amount of data which can write as input in the channel. */
4609 max = channel_recv_max(chn);
4610 if (max > (len - l))
4611 max = len - l;
4612
4613 /* Copy data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02004614 ci_putblk(chn, str + l, max);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004615
4616 /* update counters. */
4617 l += max;
4618 lua_pop(L, 1);
4619 lua_pushinteger(L, l);
4620
4621 /* If some data is not send, declares the situation to the
4622 * applet, and returns a yield.
4623 */
4624 if (l < len) {
Christopher Fauleta0bdec32022-04-04 07:51:21 +02004625 cs_rx_room_blk(cs);
Willy Tarreau9635e032018-10-16 17:52:55 +02004626 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_send_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004627 }
4628
4629 return 1;
4630}
4631
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05004632/* Just a wrapper of "hlua_applet_tcp_send_yield". This wrapper permits
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004633 * yield the LUA process, and resume it without checking the
4634 * input arguments.
4635 */
4636__LJMP static int hlua_applet_tcp_send(lua_State *L)
4637{
4638 MAY_LJMP(check_args(L, 2, "send"));
4639 lua_pushinteger(L, 0);
4640
4641 return MAY_LJMP(hlua_applet_tcp_send_yield(L, 0, 0));
4642}
4643
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004644/*
4645 *
4646 *
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004647 * Class AppletHTTP
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004648 *
4649 *
4650 */
4651
4652/* Returns a struct hlua_txn if the stack entry "ud" is
Willy Tarreau87b09662015-04-03 00:22:06 +02004653 * a class stream, otherwise it throws an error.
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004654 */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004655__LJMP static struct hlua_appctx *hlua_checkapplet_http(lua_State *L, int ud)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004656{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02004657 return MAY_LJMP(hlua_checkudata(L, ud, class_applet_http_ref));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004658}
4659
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004660/* This function creates and push in the stack an Applet object
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004661 * according with a current TXN.
4662 */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004663static int hlua_applet_http_new(lua_State *L, struct appctx *ctx)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004664{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004665 struct hlua_appctx *luactx;
Thierry FOURNIER841475e2015-12-11 17:10:09 +01004666 struct hlua_txn htxn;
Christopher Faulet908628c2022-03-25 16:43:49 +01004667 struct stream *s = __cs_strm(ctx->owner);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004668 struct proxy *px = s->be;
Christopher Fauleta2097962019-07-15 16:25:33 +02004669 struct htx *htx;
4670 struct htx_blk *blk;
4671 struct htx_sl *sl;
4672 struct ist path;
4673 unsigned long long len = 0;
4674 int32_t pos;
Amaury Denoyellec453f952021-07-06 11:40:12 +02004675 struct http_uri_parser parser;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004676
4677 /* Check stack size. */
4678 if (!lua_checkstack(L, 3))
4679 return 0;
4680
4681 /* Create the object: obj[0] = userdata.
4682 * Note that the base of the Converters object is the
4683 * same than the TXN object.
4684 */
4685 lua_newtable(L);
Willy Tarreau7e702d12021-04-28 17:59:21 +02004686 luactx = lua_newuserdata(L, sizeof(*luactx));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004687 lua_rawseti(L, -2, 0);
Willy Tarreau7e702d12021-04-28 17:59:21 +02004688 luactx->appctx = ctx;
4689 luactx->appctx->ctx.hlua_apphttp.status = 200; /* Default status code returned. */
4690 luactx->appctx->ctx.hlua_apphttp.reason = NULL; /* Use default reason based on status */
4691 luactx->htxn.s = s;
4692 luactx->htxn.p = px;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004693
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004694 /* Create the "f" field that contains a list of fetches. */
4695 lua_pushstring(L, "f");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004696 if (!hlua_fetches_new(L, &luactx->htxn, 0))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004697 return 0;
4698 lua_settable(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004699
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004700 /* Create the "sf" field that contains a list of stringsafe fetches. */
4701 lua_pushstring(L, "sf");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004702 if (!hlua_fetches_new(L, &luactx->htxn, HLUA_F_AS_STRING))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004703 return 0;
4704 lua_settable(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004705
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004706 /* Create the "c" field that contains a list of converters. */
4707 lua_pushstring(L, "c");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004708 if (!hlua_converters_new(L, &luactx->htxn, 0))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004709 return 0;
4710 lua_settable(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004711
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004712 /* Create the "sc" field that contains a list of stringsafe converters. */
4713 lua_pushstring(L, "sc");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004714 if (!hlua_converters_new(L, &luactx->htxn, HLUA_F_AS_STRING))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004715 return 0;
4716 lua_settable(L, -3);
Willy Tarreaueee5b512015-04-03 23:46:31 +02004717
Christopher Fauleta2097962019-07-15 16:25:33 +02004718 htx = htxbuf(&s->req.buf);
4719 blk = htx_get_first_blk(htx);
Christopher Fauletea009732019-11-18 15:50:25 +01004720 BUG_ON(!blk || htx_get_blk_type(blk) != HTX_BLK_REQ_SL);
Christopher Fauleta2097962019-07-15 16:25:33 +02004721 sl = htx_get_blk_ptr(htx, blk);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004722
Christopher Fauleta2097962019-07-15 16:25:33 +02004723 /* Stores the request method. */
4724 lua_pushstring(L, "method");
4725 lua_pushlstring(L, HTX_SL_REQ_MPTR(sl), HTX_SL_REQ_MLEN(sl));
4726 lua_settable(L, -3);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004727
Christopher Fauleta2097962019-07-15 16:25:33 +02004728 /* Stores the http version. */
4729 lua_pushstring(L, "version");
4730 lua_pushlstring(L, HTX_SL_REQ_VPTR(sl), HTX_SL_REQ_VLEN(sl));
4731 lua_settable(L, -3);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004732
Christopher Fauleta2097962019-07-15 16:25:33 +02004733 /* creates an array of headers. hlua_http_get_headers() crates and push
4734 * the array on the top of the stack.
4735 */
4736 lua_pushstring(L, "headers");
4737 htxn.s = s;
4738 htxn.p = px;
4739 htxn.dir = SMP_OPT_DIR_REQ;
Christopher Faulet9d1332b2020-02-24 16:46:16 +01004740 if (!hlua_http_get_headers(L, &htxn.s->txn->req))
Christopher Fauleta2097962019-07-15 16:25:33 +02004741 return 0;
4742 lua_settable(L, -3);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004743
Amaury Denoyellec453f952021-07-06 11:40:12 +02004744 parser = http_uri_parser_init(htx_sl_req_uri(sl));
4745 path = http_parse_path(&parser);
Tim Duesterhused526372020-03-05 17:56:33 +01004746 if (isttest(path)) {
Christopher Fauleta2097962019-07-15 16:25:33 +02004747 char *p, *q, *end;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004748
Christopher Fauleta2097962019-07-15 16:25:33 +02004749 p = path.ptr;
Tim Duesterhus4c8f75f2021-11-06 15:14:44 +01004750 end = istend(path);
Christopher Fauleta2097962019-07-15 16:25:33 +02004751 q = p;
4752 while (q < end && *q != '?')
4753 q++;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004754
Thierry FOURNIER7d388632017-02-22 02:06:16 +01004755 /* Stores the request path. */
Christopher Fauleta2097962019-07-15 16:25:33 +02004756 lua_pushstring(L, "path");
4757 lua_pushlstring(L, p, q - p);
Thierry FOURNIER7d388632017-02-22 02:06:16 +01004758 lua_settable(L, -3);
Thierry FOURNIER04c57b32015-03-18 13:43:10 +01004759
Christopher Fauleta2097962019-07-15 16:25:33 +02004760 /* Stores the query string. */
4761 lua_pushstring(L, "qs");
4762 if (*q == '?')
4763 q++;
4764 lua_pushlstring(L, q, end - q);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004765 lua_settable(L, -3);
Christopher Fauleta2097962019-07-15 16:25:33 +02004766 }
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004767
Christopher Fauleta2097962019-07-15 16:25:33 +02004768 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
4769 struct htx_blk *blk = htx_get_blk(htx, pos);
4770 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004771
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004772 if (type == HTX_BLK_TLR || type == HTX_BLK_EOT)
Christopher Fauleta2097962019-07-15 16:25:33 +02004773 break;
4774 if (type == HTX_BLK_DATA)
4775 len += htx_get_blksz(blk);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004776 }
Christopher Fauleta2097962019-07-15 16:25:33 +02004777 if (htx->extra != ULLONG_MAX)
4778 len += htx->extra;
4779
4780 /* Stores the request path. */
4781 lua_pushstring(L, "length");
4782 lua_pushinteger(L, len);
4783 lua_settable(L, -3);
Thierry FOURNIER04c57b32015-03-18 13:43:10 +01004784
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004785 /* Create an empty array of HTTP request headers. */
4786 lua_pushstring(L, "response");
4787 lua_newtable(L);
4788 lua_settable(L, -3);
Thierry FOURNIER04c57b32015-03-18 13:43:10 +01004789
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004790 /* Pop a class stream metatable and affect it to the table. */
4791 lua_rawgeti(L, LUA_REGISTRYINDEX, class_applet_http_ref);
4792 lua_setmetatable(L, -2);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004793
4794 return 1;
4795}
4796
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004797__LJMP static int hlua_applet_http_set_var(lua_State *L)
4798{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004799 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004800 struct stream *s;
4801 const char *name;
4802 size_t len;
4803 struct sample smp;
4804
Tim Duesterhus4e172c92020-05-19 13:49:42 +02004805 if (lua_gettop(L) < 3 || lua_gettop(L) > 4)
4806 WILL_LJMP(luaL_error(L, "'set_var' needs between 3 and 4 arguments"));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004807
4808 /* It is useles to retrieve the stream, but this function
4809 * runs only in a stream context.
4810 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004811 luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004812 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004813 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004814
4815 /* Converts the third argument in a sample. */
Amaury Denoyellebc0af6a2020-10-29 17:21:20 +01004816 memset(&smp, 0, sizeof(smp));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004817 hlua_lua2smp(L, 3, &smp);
4818
4819 /* Store the sample in a variable. */
4820 smp_set_owner(&smp, s->be, s->sess, s, 0);
Tim Duesterhus4e172c92020-05-19 13:49:42 +02004821
4822 if (lua_gettop(L) == 4 && lua_toboolean(L, 4))
4823 lua_pushboolean(L, vars_set_by_name_ifexist(name, len, &smp) != 0);
4824 else
4825 lua_pushboolean(L, vars_set_by_name(name, len, &smp) != 0);
4826
Tim Duesterhus84ebc132020-05-19 13:49:41 +02004827 return 1;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004828}
4829
4830__LJMP static int hlua_applet_http_unset_var(lua_State *L)
4831{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004832 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004833 struct stream *s;
4834 const char *name;
4835 size_t len;
4836 struct sample smp;
4837
4838 MAY_LJMP(check_args(L, 2, "unset_var"));
4839
4840 /* It is useles to retrieve the stream, but this function
4841 * runs only in a stream context.
4842 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004843 luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004844 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004845 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004846
4847 /* Unset the variable. */
4848 smp_set_owner(&smp, s->be, s->sess, s, 0);
Tim Duesterhus84ebc132020-05-19 13:49:41 +02004849 lua_pushboolean(L, vars_unset_by_name_ifexist(name, len, &smp) != 0);
4850 return 1;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004851}
4852
4853__LJMP static int hlua_applet_http_get_var(lua_State *L)
4854{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004855 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004856 struct stream *s;
4857 const char *name;
4858 size_t len;
4859 struct sample smp;
4860
4861 MAY_LJMP(check_args(L, 2, "get_var"));
4862
4863 /* It is useles to retrieve the stream, but this function
4864 * runs only in a stream context.
4865 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004866 luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004867 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004868 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004869
4870 smp_set_owner(&smp, s->be, s->sess, s, 0);
Willy Tarreaue352b9d2021-09-03 11:52:38 +02004871 if (!vars_get_by_name(name, len, &smp, NULL)) {
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004872 lua_pushnil(L);
4873 return 1;
4874 }
4875
4876 return hlua_smp2lua(L, &smp);
4877}
4878
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004879__LJMP static int hlua_applet_http_set_priv(lua_State *L)
4880{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004881 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4882 struct stream *s = luactx->htxn.s;
Thierry FOURNIER3b0a6d42016-12-16 08:48:32 +01004883 struct hlua *hlua;
4884
4885 /* Note that this hlua struct is from the session and not from the applet. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01004886 if (!s->hlua)
4887 return 0;
4888 hlua = s->hlua;
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004889
4890 MAY_LJMP(check_args(L, 2, "set_priv"));
4891
4892 /* Remove previous value. */
Thierry FOURNIERe068b602017-04-26 13:27:05 +02004893 luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref);
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004894
4895 /* Get and store new value. */
4896 lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */
4897 hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */
4898
4899 return 0;
4900}
4901
4902__LJMP static int hlua_applet_http_get_priv(lua_State *L)
4903{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004904 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4905 struct stream *s = luactx->htxn.s;
Thierry FOURNIER3b0a6d42016-12-16 08:48:32 +01004906 struct hlua *hlua;
4907
4908 /* Note that this hlua struct is from the session and not from the applet. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01004909 if (!s->hlua) {
4910 lua_pushnil(L);
4911 return 1;
4912 }
4913 hlua = s->hlua;
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004914
4915 /* Push configuration index in the stack. */
4916 lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref);
4917
4918 return 1;
4919}
4920
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004921/* If expected data not yet available, it returns a yield. This function
4922 * consumes the data in the buffer. It returns a string containing the
4923 * data. This string can be empty.
4924 */
Christopher Fauleta2097962019-07-15 16:25:33 +02004925__LJMP static int hlua_applet_http_getline_yield(lua_State *L, int status, lua_KContext ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004926{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004927 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Christopher Faulet908628c2022-03-25 16:43:49 +01004928 struct conn_stream *cs = luactx->appctx->owner;
4929 struct channel *req = cs_oc(cs);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004930 struct htx *htx;
4931 struct htx_blk *blk;
4932 size_t count;
4933 int stop = 0;
4934
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004935 htx = htx_from_buf(&req->buf);
4936 count = co_data(req);
Christopher Fauleta3f15502019-05-13 15:27:23 +02004937 blk = htx_get_first_blk(htx);
Christopher Fauletcc26b132018-12-18 21:20:57 +01004938
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004939 while (count && !stop && blk) {
4940 enum htx_blk_type type = htx_get_blk_type(blk);
4941 uint32_t sz = htx_get_blksz(blk);
4942 struct ist v;
4943 uint32_t vlen;
4944 char *nl;
4945
4946 vlen = sz;
4947 if (vlen > count) {
4948 if (type != HTX_BLK_DATA)
4949 break;
4950 vlen = count;
4951 }
4952
4953 switch (type) {
4954 case HTX_BLK_UNUSED:
4955 break;
4956
4957 case HTX_BLK_DATA:
4958 v = htx_get_blk_value(htx, blk);
4959 v.len = vlen;
4960 nl = istchr(v, '\n');
4961 if (nl != NULL) {
4962 stop = 1;
4963 vlen = nl - v.ptr + 1;
4964 }
Willy Tarreau7e702d12021-04-28 17:59:21 +02004965 luaL_addlstring(&luactx->b, v.ptr, vlen);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004966 break;
4967
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004968 case HTX_BLK_TLR:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004969 case HTX_BLK_EOT:
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004970 stop = 1;
4971 break;
4972
4973 default:
4974 break;
4975 }
4976
Willy Tarreau84240042022-02-28 16:51:23 +01004977 c_rew(req, vlen);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004978 count -= vlen;
4979 if (sz == vlen)
4980 blk = htx_remove_blk(htx, blk);
4981 else {
4982 htx_cut_data_blk(htx, blk, vlen);
4983 break;
4984 }
4985 }
4986
Christopher Fauleteccb31c2021-04-02 14:24:56 +02004987 /* The message was fully consumed and no more data are expected
4988 * (EOM flag set).
4989 */
4990 if (htx_is_empty(htx) && (htx->flags & HTX_FL_EOM))
4991 stop = 1;
4992
Christopher Faulet0ae79d02019-02-27 21:36:59 +01004993 htx_to_buf(htx, &req->buf);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004994 if (!stop) {
Christopher Fauleta0bdec32022-04-04 07:51:21 +02004995 cs_cant_get(cs);
Christopher Fauleta2097962019-07-15 16:25:33 +02004996 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_getline_yield, TICK_ETERNITY, 0));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004997 }
4998
4999 /* return the result. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02005000 luaL_pushresult(&luactx->b);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005001 return 1;
5002}
5003
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005004
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08005005/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005006__LJMP static int hlua_applet_http_getline(lua_State *L)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005007{
Willy Tarreau7e702d12021-04-28 17:59:21 +02005008 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005009
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005010 /* Initialise the string catenation. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02005011 luaL_buffinit(L, &luactx->b);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005012
Christopher Fauleta2097962019-07-15 16:25:33 +02005013 return MAY_LJMP(hlua_applet_http_getline_yield(L, 0, 0));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005014}
5015
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005016/* If expected data not yet available, it returns a yield. This function
5017 * consumes the data in the buffer. It returns a string containing the
5018 * data. This string can be empty.
5019 */
Christopher Fauleta2097962019-07-15 16:25:33 +02005020__LJMP static int hlua_applet_http_recv_yield(lua_State *L, int status, lua_KContext ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005021{
Willy Tarreau7e702d12021-04-28 17:59:21 +02005022 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Christopher Faulet908628c2022-03-25 16:43:49 +01005023 struct conn_stream *cs = luactx->appctx->owner;
5024 struct channel *req = cs_oc(cs);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005025 struct htx *htx;
5026 struct htx_blk *blk;
5027 size_t count;
5028 int len;
5029
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005030 htx = htx_from_buf(&req->buf);
5031 len = MAY_LJMP(luaL_checkinteger(L, 2));
5032 count = co_data(req);
Christopher Faulet29f17582019-05-23 11:03:26 +02005033 blk = htx_get_head_blk(htx);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005034 while (count && len && blk) {
5035 enum htx_blk_type type = htx_get_blk_type(blk);
5036 uint32_t sz = htx_get_blksz(blk);
5037 struct ist v;
5038 uint32_t vlen;
5039
5040 vlen = sz;
5041 if (len > 0 && vlen > len)
5042 vlen = len;
5043 if (vlen > count) {
5044 if (type != HTX_BLK_DATA)
5045 break;
5046 vlen = count;
5047 }
5048
5049 switch (type) {
5050 case HTX_BLK_UNUSED:
5051 break;
5052
5053 case HTX_BLK_DATA:
5054 v = htx_get_blk_value(htx, blk);
Willy Tarreau7e702d12021-04-28 17:59:21 +02005055 luaL_addlstring(&luactx->b, v.ptr, vlen);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005056 break;
5057
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005058 case HTX_BLK_TLR:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005059 case HTX_BLK_EOT:
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005060 len = 0;
5061 break;
5062
5063 default:
5064 break;
5065 }
5066
Willy Tarreau84240042022-02-28 16:51:23 +01005067 c_rew(req, vlen);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005068 count -= vlen;
5069 if (len > 0)
5070 len -= vlen;
5071 if (sz == vlen)
5072 blk = htx_remove_blk(htx, blk);
5073 else {
5074 htx_cut_data_blk(htx, blk, vlen);
5075 break;
5076 }
5077 }
5078
Christopher Fauleteccb31c2021-04-02 14:24:56 +02005079 /* The message was fully consumed and no more data are expected
5080 * (EOM flag set).
5081 */
5082 if (htx_is_empty(htx) && (htx->flags & HTX_FL_EOM))
5083 len = 0;
5084
Christopher Faulet0ae79d02019-02-27 21:36:59 +01005085 htx_to_buf(htx, &req->buf);
5086
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005087 /* If we are no other data available, yield waiting for new data. */
5088 if (len) {
5089 if (len > 0) {
5090 lua_pushinteger(L, len);
5091 lua_replace(L, 2);
5092 }
Christopher Fauleta0bdec32022-04-04 07:51:21 +02005093 cs_cant_get(cs);
Willy Tarreau9635e032018-10-16 17:52:55 +02005094 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_recv_yield, TICK_ETERNITY, 0));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005095 }
5096
5097 /* return the result. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02005098 luaL_pushresult(&luactx->b);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005099 return 1;
5100}
5101
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08005102/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005103__LJMP static int hlua_applet_http_recv(lua_State *L)
5104{
Willy Tarreau7e702d12021-04-28 17:59:21 +02005105 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005106 int len = -1;
5107
5108 /* Check arguments. */
5109 if (lua_gettop(L) > 2)
5110 WILL_LJMP(luaL_error(L, "The 'recv' function requires between 1 and 2 arguments."));
5111 if (lua_gettop(L) >= 2) {
5112 len = MAY_LJMP(luaL_checkinteger(L, 2));
5113 lua_pop(L, 1);
5114 }
5115
Christopher Fauleta2097962019-07-15 16:25:33 +02005116 lua_pushinteger(L, len);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005117
Christopher Fauleta2097962019-07-15 16:25:33 +02005118 /* Initialise the string catenation. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02005119 luaL_buffinit(L, &luactx->b);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005120
Christopher Fauleta2097962019-07-15 16:25:33 +02005121 return MAY_LJMP(hlua_applet_http_recv_yield(L, 0, 0));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005122}
5123
5124/* Append data in the output side of the buffer. This data is immediately
5125 * sent. The function returns the amount of data written. If the buffer
5126 * cannot contain the data, the function yields. The function returns -1
5127 * if the channel is closed.
5128 */
Christopher Fauleta2097962019-07-15 16:25:33 +02005129__LJMP static int hlua_applet_http_send_yield(lua_State *L, int status, lua_KContext ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005130{
Willy Tarreau7e702d12021-04-28 17:59:21 +02005131 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Christopher Faulet908628c2022-03-25 16:43:49 +01005132 struct conn_stream *cs = luactx->appctx->owner;
5133 struct channel *res = cs_ic(cs);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005134 struct htx *htx = htx_from_buf(&res->buf);
5135 const char *data;
5136 size_t len;
5137 int l = MAY_LJMP(luaL_checkinteger(L, 3));
5138 int max;
5139
Christopher Faulet9060fc02019-07-03 11:39:30 +02005140 max = htx_get_max_blksz(htx, channel_htx_recv_max(res, htx));
Christopher Faulet4b0e9b22019-01-09 12:16:58 +01005141 if (!max)
5142 goto snd_yield;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005143
5144 data = MAY_LJMP(luaL_checklstring(L, 2, &len));
5145
5146 /* Get the max amount of data which can write as input in the channel. */
5147 if (max > (len - l))
5148 max = len - l;
5149
5150 /* Copy data. */
Willy Tarreau0a7ef022019-05-28 10:30:11 +02005151 max = htx_add_data(htx, ist2(data + l, max));
Christopher Fauletf6cce3f2019-02-27 21:20:09 +01005152 channel_add_input(res, max);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005153
5154 /* update counters. */
5155 l += max;
5156 lua_pop(L, 1);
5157 lua_pushinteger(L, l);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005158
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005159 /* If some data is not send, declares the situation to the
5160 * applet, and returns a yield.
5161 */
5162 if (l < len) {
Christopher Faulet4b0e9b22019-01-09 12:16:58 +01005163 snd_yield:
Christopher Faulet0ae79d02019-02-27 21:36:59 +01005164 htx_to_buf(htx, &res->buf);
Christopher Fauleta0bdec32022-04-04 07:51:21 +02005165 cs_rx_room_blk(cs);
Willy Tarreau9635e032018-10-16 17:52:55 +02005166 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_send_yield, TICK_ETERNITY, 0));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005167 }
5168
Christopher Fauleta2097962019-07-15 16:25:33 +02005169 htx_to_buf(htx, &res->buf);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005170 return 1;
5171}
5172
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05005173/* Just a wrapper of "hlua_applet_send_yield". This wrapper permits
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005174 * yield the LUA process, and resume it without checking the
5175 * input arguments.
5176 */
5177__LJMP static int hlua_applet_http_send(lua_State *L)
5178{
Willy Tarreau7e702d12021-04-28 17:59:21 +02005179 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005180
5181 /* We want to send some data. Headers must be sent. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02005182 if (!(luactx->appctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT)) {
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005183 hlua_pusherror(L, "Lua: 'send' you must call start_response() before sending data.");
5184 WILL_LJMP(lua_error(L));
5185 }
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005186
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05005187 /* This integer is used for followinf the amount of data sent. */
Christopher Fauleta2097962019-07-15 16:25:33 +02005188 lua_pushinteger(L, 0);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005189
Christopher Fauleta2097962019-07-15 16:25:33 +02005190 return MAY_LJMP(hlua_applet_http_send_yield(L, 0, 0));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005191}
5192
5193__LJMP static int hlua_applet_http_addheader(lua_State *L)
5194{
5195 const char *name;
5196 int ret;
5197
5198 MAY_LJMP(hlua_checkapplet_http(L, 1));
5199 name = MAY_LJMP(luaL_checkstring(L, 2));
5200 MAY_LJMP(luaL_checkstring(L, 3));
5201
5202 /* Push in the stack the "response" entry. */
5203 ret = lua_getfield(L, 1, "response");
5204 if (ret != LUA_TTABLE) {
5205 hlua_pusherror(L, "Lua: 'add_header' internal error: AppletHTTP['response'] "
5206 "is expected as an array. %s found", lua_typename(L, ret));
5207 WILL_LJMP(lua_error(L));
5208 }
5209
5210 /* check if the header is already registered if it is not
5211 * the case, register it.
5212 */
5213 ret = lua_getfield(L, -1, name);
5214 if (ret == LUA_TNIL) {
5215
5216 /* Entry not found. */
5217 lua_pop(L, 1); /* remove the nil. The "response" table is the top of the stack. */
5218
5219 /* Insert the new header name in the array in the top of the stack.
5220 * It left the new array in the top of the stack.
5221 */
5222 lua_newtable(L);
5223 lua_pushvalue(L, 2);
5224 lua_pushvalue(L, -2);
5225 lua_settable(L, -4);
5226
5227 } else if (ret != LUA_TTABLE) {
5228
5229 /* corruption error. */
5230 hlua_pusherror(L, "Lua: 'add_header' internal error: AppletHTTP['response']['%s'] "
5231 "is expected as an array. %s found", name, lua_typename(L, ret));
5232 WILL_LJMP(lua_error(L));
5233 }
5234
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07005235 /* Now the top of thestack is an array of values. We push
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005236 * the header value as new entry.
5237 */
5238 lua_pushvalue(L, 3);
5239 ret = lua_rawlen(L, -2);
5240 lua_rawseti(L, -2, ret + 1);
5241 lua_pushboolean(L, 1);
5242 return 1;
5243}
5244
5245__LJMP static int hlua_applet_http_status(lua_State *L)
5246{
Willy Tarreau7e702d12021-04-28 17:59:21 +02005247 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005248 int status = MAY_LJMP(luaL_checkinteger(L, 2));
Robin H. Johnson52f5db22017-01-01 13:10:52 -08005249 const char *reason = MAY_LJMP(luaL_optlstring(L, 3, NULL, NULL));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005250
5251 if (status < 100 || status > 599) {
5252 lua_pushboolean(L, 0);
5253 return 1;
5254 }
5255
Willy Tarreau7e702d12021-04-28 17:59:21 +02005256 luactx->appctx->ctx.hlua_apphttp.status = status;
5257 luactx->appctx->ctx.hlua_apphttp.reason = reason;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005258 lua_pushboolean(L, 1);
5259 return 1;
5260}
5261
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005262
Christopher Fauleta2097962019-07-15 16:25:33 +02005263__LJMP static int hlua_applet_http_send_response(lua_State *L)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005264{
Willy Tarreau7e702d12021-04-28 17:59:21 +02005265 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Christopher Faulet908628c2022-03-25 16:43:49 +01005266 struct conn_stream *cs = luactx->appctx->owner;
5267 struct channel *res = cs_ic(cs);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005268 struct htx *htx;
5269 struct htx_sl *sl;
5270 struct h1m h1m;
5271 const char *status, *reason;
5272 const char *name, *value;
5273 size_t nlen, vlen;
5274 unsigned int flags;
5275
5276 /* Send the message at once. */
5277 htx = htx_from_buf(&res->buf);
5278 h1m_init_res(&h1m);
5279
5280 /* Use the same http version than the request. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02005281 status = ultoa_r(luactx->appctx->ctx.hlua_apphttp.status, trash.area, trash.size);
5282 reason = luactx->appctx->ctx.hlua_apphttp.reason;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005283 if (reason == NULL)
Willy Tarreau7e702d12021-04-28 17:59:21 +02005284 reason = http_get_reason(luactx->appctx->ctx.hlua_apphttp.status);
5285 if (luactx->appctx->ctx.hlua_apphttp.flags & APPLET_HTTP11) {
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005286 flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11);
5287 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"), ist(status), ist(reason));
5288 }
5289 else {
5290 flags = HTX_SL_F_IS_RESP;
5291 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.0"), ist(status), ist(reason));
5292 }
5293 if (!sl) {
5294 hlua_pusherror(L, "Lua applet http '%s': Failed to create response.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005295 luactx->appctx->rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005296 WILL_LJMP(lua_error(L));
5297 }
Willy Tarreau7e702d12021-04-28 17:59:21 +02005298 sl->info.res.status = luactx->appctx->ctx.hlua_apphttp.status;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005299
5300 /* Get the array associated to the field "response" in the object AppletHTTP. */
5301 lua_pushvalue(L, 0);
5302 if (lua_getfield(L, 1, "response") != LUA_TTABLE) {
5303 hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response'] missing.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005304 luactx->appctx->rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005305 WILL_LJMP(lua_error(L));
5306 }
5307
5308 /* Browse the list of headers. */
5309 lua_pushnil(L);
5310 while(lua_next(L, -2) != 0) {
5311 /* We expect a string as -2. */
5312 if (lua_type(L, -2) != LUA_TSTRING) {
5313 hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response'][] element must be a string. got %s.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005314 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005315 lua_typename(L, lua_type(L, -2)));
5316 WILL_LJMP(lua_error(L));
5317 }
5318 name = lua_tolstring(L, -2, &nlen);
5319
5320 /* We expect an array as -1. */
5321 if (lua_type(L, -1) != LUA_TTABLE) {
5322 hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response']['%s'] element must be an table. got %s.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005323 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005324 name,
5325 lua_typename(L, lua_type(L, -1)));
5326 WILL_LJMP(lua_error(L));
5327 }
5328
5329 /* Browse the table who is on the top of the stack. */
5330 lua_pushnil(L);
5331 while(lua_next(L, -2) != 0) {
5332 int id;
5333
5334 /* We expect a number as -2. */
5335 if (lua_type(L, -2) != LUA_TNUMBER) {
5336 hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response']['%s'][] element must be a number. got %s.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005337 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005338 name,
5339 lua_typename(L, lua_type(L, -2)));
5340 WILL_LJMP(lua_error(L));
5341 }
5342 id = lua_tointeger(L, -2);
5343
5344 /* We expect a string as -2. */
5345 if (lua_type(L, -1) != LUA_TSTRING) {
5346 hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response']['%s'][%d] element must be a string. got %s.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005347 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005348 name, id,
5349 lua_typename(L, lua_type(L, -1)));
5350 WILL_LJMP(lua_error(L));
5351 }
5352 value = lua_tolstring(L, -1, &vlen);
5353
5354 /* Simple Protocol checks. */
Christopher Faulet545fbba2021-09-28 09:36:25 +02005355 if (isteqi(ist2(name, nlen), ist("transfer-encoding"))) {
5356 int ret;
5357
5358 ret = h1_parse_xfer_enc_header(&h1m, ist2(value, vlen));
5359 if (ret < 0) {
5360 hlua_pusherror(L, "Lua applet http '%s': Invalid '%s' header.\n",
5361 luactx->appctx->rule->arg.hlua_rule->fcn->name,
5362 name);
5363 WILL_LJMP(lua_error(L));
5364 }
5365 else if (ret == 0)
5366 goto next; /* Skip it */
5367 }
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005368 else if (isteqi(ist2(name, nlen), ist("content-length"))) {
5369 struct ist v = ist2(value, vlen);
5370 int ret;
5371
5372 ret = h1_parse_cont_len_header(&h1m, &v);
5373 if (ret < 0) {
5374 hlua_pusherror(L, "Lua applet http '%s': Invalid '%s' header.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005375 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005376 name);
5377 WILL_LJMP(lua_error(L));
5378 }
5379 else if (ret == 0)
5380 goto next; /* Skip it */
5381 }
5382
5383 /* Add a new header */
5384 if (!htx_add_header(htx, ist2(name, nlen), ist2(value, vlen))) {
5385 hlua_pusherror(L, "Lua applet http '%s': Failed to add header '%s' in the response.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005386 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005387 name);
5388 WILL_LJMP(lua_error(L));
5389 }
5390 next:
5391 /* Remove the array from the stack, and get next element with a remaining string. */
5392 lua_pop(L, 1);
5393 }
5394
5395 /* Remove the array from the stack, and get next element with a remaining string. */
5396 lua_pop(L, 1);
5397 }
5398
5399 if (h1m.flags & H1_MF_CHNK)
5400 h1m.flags &= ~H1_MF_CLEN;
5401 if (h1m.flags & (H1_MF_CLEN|H1_MF_CHNK))
5402 h1m.flags |= H1_MF_XFER_LEN;
5403
5404 /* Uset HTX start-line flags */
5405 if (h1m.flags & H1_MF_XFER_ENC)
5406 flags |= HTX_SL_F_XFER_ENC;
5407 if (h1m.flags & H1_MF_XFER_LEN) {
5408 flags |= HTX_SL_F_XFER_LEN;
5409 if (h1m.flags & H1_MF_CHNK)
5410 flags |= HTX_SL_F_CHNK;
5411 else if (h1m.flags & H1_MF_CLEN)
5412 flags |= HTX_SL_F_CLEN;
5413 if (h1m.body_len == 0)
5414 flags |= HTX_SL_F_BODYLESS;
5415 }
5416 sl->flags |= flags;
5417
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07005418 /* If we don't have a content-length set, and the HTTP version is 1.1
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005419 * and the status code implies the presence of a message body, we must
5420 * announce a transfer encoding chunked. This is required by haproxy
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05005421 * for the keepalive compliance. If the applet announces a transfer-encoding
5422 * chunked itself, don't do anything.
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005423 */
5424 if ((flags & (HTX_SL_F_VER_11|HTX_SL_F_XFER_LEN)) == HTX_SL_F_VER_11 &&
Willy Tarreau7e702d12021-04-28 17:59:21 +02005425 luactx->appctx->ctx.hlua_apphttp.status >= 200 &&
5426 luactx->appctx->ctx.hlua_apphttp.status != 204 &&
5427 luactx->appctx->ctx.hlua_apphttp.status != 304) {
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005428 /* Add a new header */
5429 sl->flags |= (HTX_SL_F_XFER_ENC|H1_MF_CHNK|H1_MF_XFER_LEN);
5430 if (!htx_add_header(htx, ist("transfer-encoding"), ist("chunked"))) {
5431 hlua_pusherror(L, "Lua applet http '%s': Failed to add header 'transfer-encoding' in the response.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005432 luactx->appctx->rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005433 WILL_LJMP(lua_error(L));
5434 }
5435 }
5436
5437 /* Finalize headers. */
5438 if (!htx_add_endof(htx, HTX_BLK_EOH)) {
5439 hlua_pusherror(L, "Lua applet http '%s': Failed create the response.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005440 luactx->appctx->rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005441 WILL_LJMP(lua_error(L));
5442 }
5443
5444 if (htx_used_space(htx) > b_size(&res->buf) - global.tune.maxrewrite) {
5445 b_reset(&res->buf);
5446 hlua_pusherror(L, "Lua: 'start_response': response header block too big");
5447 WILL_LJMP(lua_error(L));
5448 }
5449
5450 htx_to_buf(htx, &res->buf);
Christopher Fauletf6cce3f2019-02-27 21:20:09 +01005451 channel_add_input(res, htx->data);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005452
5453 /* Headers sent, set the flag. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02005454 luactx->appctx->ctx.hlua_apphttp.flags |= APPLET_HDR_SENT;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005455 return 0;
5456
5457}
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005458/* We will build the status line and the headers of the HTTP response.
5459 * We will try send at once if its not possible, we give back the hand
5460 * waiting for more room.
5461 */
Christopher Fauleta2097962019-07-15 16:25:33 +02005462__LJMP static int hlua_applet_http_start_response_yield(lua_State *L, int status, lua_KContext ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005463{
Willy Tarreau7e702d12021-04-28 17:59:21 +02005464 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Christopher Faulet908628c2022-03-25 16:43:49 +01005465 struct conn_stream *cs = luactx->appctx->owner;
5466 struct channel *res = cs_ic(cs);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005467
5468 if (co_data(res)) {
Christopher Fauleta0bdec32022-04-04 07:51:21 +02005469 cs_rx_room_blk(cs);
Christopher Fauleta2097962019-07-15 16:25:33 +02005470 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_start_response_yield, TICK_ETERNITY, 0));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005471 }
Christopher Fauleta2097962019-07-15 16:25:33 +02005472 return MAY_LJMP(hlua_applet_http_send_response(L));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005473}
5474
5475
Christopher Fauleta2097962019-07-15 16:25:33 +02005476__LJMP static int hlua_applet_http_start_response(lua_State *L)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005477{
Christopher Fauleta2097962019-07-15 16:25:33 +02005478 return MAY_LJMP(hlua_applet_http_start_response_yield(L, 0, 0));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005479}
5480
Christopher Fauleta2097962019-07-15 16:25:33 +02005481/*
5482 *
5483 *
5484 * Class HTTP
5485 *
5486 *
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005487 */
Christopher Fauleta2097962019-07-15 16:25:33 +02005488
5489/* Returns a struct hlua_txn if the stack entry "ud" is
5490 * a class stream, otherwise it throws an error.
5491 */
5492__LJMP static struct hlua_txn *hlua_checkhttp(lua_State *L, int ud)
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005493{
Christopher Fauleta2097962019-07-15 16:25:33 +02005494 return MAY_LJMP(hlua_checkudata(L, ud, class_http_ref));
5495}
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005496
Christopher Fauleta2097962019-07-15 16:25:33 +02005497/* This function creates and push in the stack a HTTP object
5498 * according with a current TXN.
5499 */
5500static int hlua_http_new(lua_State *L, struct hlua_txn *txn)
5501{
5502 struct hlua_txn *htxn;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005503
Christopher Fauleta2097962019-07-15 16:25:33 +02005504 /* Check stack size. */
5505 if (!lua_checkstack(L, 3))
5506 return 0;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005507
Christopher Fauleta2097962019-07-15 16:25:33 +02005508 /* Create the object: obj[0] = userdata.
5509 * Note that the base of the Converters object is the
5510 * same than the TXN object.
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005511 */
Christopher Fauleta2097962019-07-15 16:25:33 +02005512 lua_newtable(L);
5513 htxn = lua_newuserdata(L, sizeof(*htxn));
5514 lua_rawseti(L, -2, 0);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005515
5516 htxn->s = txn->s;
5517 htxn->p = txn->p;
Christopher Faulet256b69a2019-05-23 11:14:21 +02005518 htxn->dir = txn->dir;
5519 htxn->flags = txn->flags;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005520
5521 /* Pop a class stream metatable and affect it to the table. */
5522 lua_rawgeti(L, LUA_REGISTRYINDEX, class_http_ref);
5523 lua_setmetatable(L, -2);
5524
5525 return 1;
5526}
5527
Christopher Fauletdf97ac42020-02-26 16:57:19 +01005528/* This function creates and returns an array containing the status-line
5529 * elements. This function does not fails.
5530 */
5531__LJMP static int hlua_http_get_stline(lua_State *L, struct htx_sl *sl)
5532{
5533 /* Create the table. */
5534 lua_newtable(L);
5535
5536 if (sl->flags & HTX_SL_F_IS_RESP) {
5537 lua_pushstring(L, "version");
5538 lua_pushlstring(L, HTX_SL_RES_VPTR(sl), HTX_SL_RES_VLEN(sl));
5539 lua_settable(L, -3);
5540 lua_pushstring(L, "code");
5541 lua_pushlstring(L, HTX_SL_RES_CPTR(sl), HTX_SL_RES_CLEN(sl));
5542 lua_settable(L, -3);
5543 lua_pushstring(L, "reason");
5544 lua_pushlstring(L, HTX_SL_RES_RPTR(sl), HTX_SL_RES_RLEN(sl));
5545 lua_settable(L, -3);
5546 }
5547 else {
5548 lua_pushstring(L, "method");
5549 lua_pushlstring(L, HTX_SL_REQ_MPTR(sl), HTX_SL_REQ_MLEN(sl));
5550 lua_settable(L, -3);
5551 lua_pushstring(L, "uri");
5552 lua_pushlstring(L, HTX_SL_REQ_UPTR(sl), HTX_SL_REQ_ULEN(sl));
5553 lua_settable(L, -3);
5554 lua_pushstring(L, "version");
5555 lua_pushlstring(L, HTX_SL_REQ_VPTR(sl), HTX_SL_REQ_VLEN(sl));
5556 lua_settable(L, -3);
5557 }
5558 return 1;
5559}
5560
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005561/* This function creates ans returns an array of HTTP headers.
5562 * This function does not fails. It is used as wrapper with the
5563 * 2 following functions.
5564 */
Christopher Faulet9d1332b2020-02-24 16:46:16 +01005565__LJMP static int hlua_http_get_headers(lua_State *L, struct http_msg *msg)
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005566{
Christopher Fauleta2097962019-07-15 16:25:33 +02005567 struct htx *htx;
5568 int32_t pos;
5569
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005570 /* Create the table. */
5571 lua_newtable(L);
5572
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005573
Christopher Fauleta2097962019-07-15 16:25:33 +02005574 htx = htxbuf(&msg->chn->buf);
5575 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
5576 struct htx_blk *blk = htx_get_blk(htx, pos);
5577 enum htx_blk_type type = htx_get_blk_type(blk);
5578 struct ist n, v;
5579 int len;
Christopher Faulet724a12c2018-12-13 22:12:15 +01005580
Christopher Fauleta2097962019-07-15 16:25:33 +02005581 if (type == HTX_BLK_HDR) {
5582 n = htx_get_blk_name(htx,blk);
5583 v = htx_get_blk_value(htx, blk);
Christopher Faulet724a12c2018-12-13 22:12:15 +01005584 }
Christopher Fauleta2097962019-07-15 16:25:33 +02005585 else if (type == HTX_BLK_EOH)
5586 break;
5587 else
5588 continue;
Christopher Faulet724a12c2018-12-13 22:12:15 +01005589
Christopher Fauleta2097962019-07-15 16:25:33 +02005590 /* Check for existing entry:
5591 * assume that the table is on the top of the stack, and
5592 * push the key in the stack, the function lua_gettable()
5593 * perform the lookup.
5594 */
5595 lua_pushlstring(L, n.ptr, n.len);
5596 lua_gettable(L, -2);
Christopher Faulet724a12c2018-12-13 22:12:15 +01005597
Christopher Fauleta2097962019-07-15 16:25:33 +02005598 switch (lua_type(L, -1)) {
5599 case LUA_TNIL:
5600 /* Table not found, create it. */
5601 lua_pop(L, 1); /* remove the nil value. */
5602 lua_pushlstring(L, n.ptr, n.len); /* push the header name as key. */
5603 lua_newtable(L); /* create and push empty table. */
5604 lua_pushlstring(L, v.ptr, v.len); /* push header value. */
5605 lua_rawseti(L, -2, 0); /* index header value (pop it). */
5606 lua_rawset(L, -3); /* index new table with header name (pop the values). */
Christopher Faulet724a12c2018-12-13 22:12:15 +01005607 break;
Christopher Faulet724a12c2018-12-13 22:12:15 +01005608
Christopher Fauleta2097962019-07-15 16:25:33 +02005609 case LUA_TTABLE:
5610 /* Entry found: push the value in the table. */
5611 len = lua_rawlen(L, -1);
5612 lua_pushlstring(L, v.ptr, v.len); /* push header value. */
5613 lua_rawseti(L, -2, len+1); /* index header value (pop it). */
5614 lua_pop(L, 1); /* remove the table (it is stored in the main table). */
5615 break;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005616
Christopher Fauleta2097962019-07-15 16:25:33 +02005617 default:
5618 /* Other cases are errors. */
5619 hlua_pusherror(L, "internal error during the parsing of headers.");
5620 WILL_LJMP(lua_error(L));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005621 }
5622 }
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005623 return 1;
5624}
5625
5626__LJMP static int hlua_http_req_get_headers(lua_State *L)
5627{
5628 struct hlua_txn *htxn;
5629
5630 MAY_LJMP(check_args(L, 1, "req_get_headers"));
5631 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5632
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005633 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005634 WILL_LJMP(lua_error(L));
5635
Christopher Faulet9d1332b2020-02-24 16:46:16 +01005636 return hlua_http_get_headers(L, &htxn->s->txn->req);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005637}
5638
5639__LJMP static int hlua_http_res_get_headers(lua_State *L)
5640{
5641 struct hlua_txn *htxn;
5642
5643 MAY_LJMP(check_args(L, 1, "res_get_headers"));
5644 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5645
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005646 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005647 WILL_LJMP(lua_error(L));
5648
Christopher Faulet9d1332b2020-02-24 16:46:16 +01005649 return hlua_http_get_headers(L, &htxn->s->txn->rsp);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005650}
5651
5652/* This function replace full header, or just a value in
5653 * the request or in the response. It is a wrapper fir the
5654 * 4 following functions.
5655 */
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005656__LJMP static inline int hlua_http_rep_hdr(lua_State *L, struct http_msg *msg, int full)
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005657{
5658 size_t name_len;
5659 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
5660 const char *reg = MAY_LJMP(luaL_checkstring(L, 3));
5661 const char *value = MAY_LJMP(luaL_checkstring(L, 4));
Christopher Fauleta2097962019-07-15 16:25:33 +02005662 struct htx *htx;
Dragan Dosen26743032019-04-30 15:54:36 +02005663 struct my_regex *re;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005664
Dragan Dosen26743032019-04-30 15:54:36 +02005665 if (!(re = regex_comp(reg, 1, 1, NULL)))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005666 WILL_LJMP(luaL_argerror(L, 3, "invalid regex"));
5667
Christopher Fauleta2097962019-07-15 16:25:33 +02005668 htx = htxbuf(&msg->chn->buf);
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005669 http_replace_hdrs(chn_strm(msg->chn), htx, ist2(name, name_len), value, re, full);
Dragan Dosen26743032019-04-30 15:54:36 +02005670 regex_free(re);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005671 return 0;
5672}
5673
5674__LJMP static int hlua_http_req_rep_hdr(lua_State *L)
5675{
5676 struct hlua_txn *htxn;
5677
5678 MAY_LJMP(check_args(L, 4, "req_rep_hdr"));
5679 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5680
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005681 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005682 WILL_LJMP(lua_error(L));
5683
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005684 return MAY_LJMP(hlua_http_rep_hdr(L, &htxn->s->txn->req, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005685}
5686
5687__LJMP static int hlua_http_res_rep_hdr(lua_State *L)
5688{
5689 struct hlua_txn *htxn;
5690
5691 MAY_LJMP(check_args(L, 4, "res_rep_hdr"));
5692 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5693
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005694 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005695 WILL_LJMP(lua_error(L));
5696
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005697 return MAY_LJMP(hlua_http_rep_hdr(L, &htxn->s->txn->rsp, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005698}
5699
5700__LJMP static int hlua_http_req_rep_val(lua_State *L)
5701{
5702 struct hlua_txn *htxn;
5703
5704 MAY_LJMP(check_args(L, 4, "req_rep_hdr"));
5705 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5706
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005707 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005708 WILL_LJMP(lua_error(L));
5709
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005710 return MAY_LJMP(hlua_http_rep_hdr(L, &htxn->s->txn->req, 0));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005711}
5712
5713__LJMP static int hlua_http_res_rep_val(lua_State *L)
5714{
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005715 struct hlua_txn *htxn;
5716
5717 MAY_LJMP(check_args(L, 4, "res_rep_val"));
5718 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5719
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005720 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005721 WILL_LJMP(lua_error(L));
5722
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005723 return MAY_LJMP(hlua_http_rep_hdr(L, &htxn->s->txn->rsp, 0));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005724}
5725
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08005726/* This function deletes all the occurrences of an header.
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005727 * It is a wrapper for the 2 following functions.
5728 */
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005729__LJMP static inline int hlua_http_del_hdr(lua_State *L, struct http_msg *msg)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005730{
5731 size_t len;
5732 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Christopher Fauleta2097962019-07-15 16:25:33 +02005733 struct htx *htx = htxbuf(&msg->chn->buf);
5734 struct http_hdr_ctx ctx;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005735
Christopher Fauleta2097962019-07-15 16:25:33 +02005736 ctx.blk = NULL;
5737 while (http_find_header(htx, ist2(name, len), &ctx, 1))
5738 http_remove_header(htx, &ctx);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005739 return 0;
5740}
5741
5742__LJMP static int hlua_http_req_del_hdr(lua_State *L)
5743{
5744 struct hlua_txn *htxn;
5745
5746 MAY_LJMP(check_args(L, 2, "req_del_hdr"));
5747 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5748
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005749 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005750 WILL_LJMP(lua_error(L));
5751
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005752 return hlua_http_del_hdr(L, &htxn->s->txn->req);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005753}
5754
5755__LJMP static int hlua_http_res_del_hdr(lua_State *L)
5756{
5757 struct hlua_txn *htxn;
5758
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005759 MAY_LJMP(check_args(L, 2, "res_del_hdr"));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005760 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5761
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005762 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005763 WILL_LJMP(lua_error(L));
5764
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005765 return hlua_http_del_hdr(L, &htxn->s->txn->rsp);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005766}
5767
5768/* This function adds an header. It is a wrapper used by
5769 * the 2 following functions.
5770 */
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005771__LJMP static inline int hlua_http_add_hdr(lua_State *L, struct http_msg *msg)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005772{
5773 size_t name_len;
5774 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
5775 size_t value_len;
5776 const char *value = MAY_LJMP(luaL_checklstring(L, 3, &value_len));
Christopher Fauleta2097962019-07-15 16:25:33 +02005777 struct htx *htx = htxbuf(&msg->chn->buf);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005778
Christopher Fauleta2097962019-07-15 16:25:33 +02005779 lua_pushboolean(L, http_add_header(htx, ist2(name, name_len),
5780 ist2(value, value_len)));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005781 return 0;
5782}
5783
Christopher Fauletdf97ac42020-02-26 16:57:19 +01005784__LJMP static int hlua_http_req_add_hdr(lua_State *L)
5785{
5786 struct hlua_txn *htxn;
5787
5788 MAY_LJMP(check_args(L, 3, "req_add_hdr"));
5789 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5790
5791 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
5792 WILL_LJMP(lua_error(L));
5793
5794 return hlua_http_add_hdr(L, &htxn->s->txn->req);
5795}
5796
5797__LJMP static int hlua_http_res_add_hdr(lua_State *L)
5798{
5799 struct hlua_txn *htxn;
5800
5801 MAY_LJMP(check_args(L, 3, "res_add_hdr"));
5802 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5803
5804 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
5805 WILL_LJMP(lua_error(L));
5806
5807 return hlua_http_add_hdr(L, &htxn->s->txn->rsp);
5808}
5809
5810static int hlua_http_req_set_hdr(lua_State *L)
5811{
5812 struct hlua_txn *htxn;
5813
5814 MAY_LJMP(check_args(L, 3, "req_set_hdr"));
5815 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5816
5817 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
5818 WILL_LJMP(lua_error(L));
5819
5820 hlua_http_del_hdr(L, &htxn->s->txn->req);
5821 return hlua_http_add_hdr(L, &htxn->s->txn->req);
5822}
5823
5824static int hlua_http_res_set_hdr(lua_State *L)
5825{
5826 struct hlua_txn *htxn;
5827
5828 MAY_LJMP(check_args(L, 3, "res_set_hdr"));
5829 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5830
5831 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
5832 WILL_LJMP(lua_error(L));
5833
5834 hlua_http_del_hdr(L, &htxn->s->txn->rsp);
5835 return hlua_http_add_hdr(L, &htxn->s->txn->rsp);
5836}
5837
5838/* This function set the method. */
5839static int hlua_http_req_set_meth(lua_State *L)
5840{
5841 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5842 size_t name_len;
5843 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
5844
5845 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
5846 WILL_LJMP(lua_error(L));
5847
5848 lua_pushboolean(L, http_req_replace_stline(0, name, name_len, htxn->p, htxn->s) != -1);
5849 return 1;
5850}
5851
5852/* This function set the method. */
5853static int hlua_http_req_set_path(lua_State *L)
5854{
5855 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5856 size_t name_len;
5857 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
5858
5859 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
5860 WILL_LJMP(lua_error(L));
5861
5862 lua_pushboolean(L, http_req_replace_stline(1, name, name_len, htxn->p, htxn->s) != -1);
5863 return 1;
5864}
5865
5866/* This function set the query-string. */
5867static int hlua_http_req_set_query(lua_State *L)
5868{
5869 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5870 size_t name_len;
5871 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
5872
5873 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
5874 WILL_LJMP(lua_error(L));
5875
5876 /* Check length. */
5877 if (name_len > trash.size - 1) {
5878 lua_pushboolean(L, 0);
5879 return 1;
5880 }
5881
5882 /* Add the mark question as prefix. */
5883 chunk_reset(&trash);
5884 trash.area[trash.data++] = '?';
5885 memcpy(trash.area + trash.data, name, name_len);
5886 trash.data += name_len;
5887
5888 lua_pushboolean(L,
5889 http_req_replace_stline(2, trash.area, trash.data, htxn->p, htxn->s) != -1);
5890 return 1;
5891}
5892
5893/* This function set the uri. */
5894static int hlua_http_req_set_uri(lua_State *L)
5895{
5896 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5897 size_t name_len;
5898 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
5899
5900 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
5901 WILL_LJMP(lua_error(L));
5902
5903 lua_pushboolean(L, http_req_replace_stline(3, name, name_len, htxn->p, htxn->s) != -1);
5904 return 1;
5905}
5906
5907/* This function set the response code & optionally reason. */
5908static int hlua_http_res_set_status(lua_State *L)
5909{
5910 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5911 unsigned int code = MAY_LJMP(luaL_checkinteger(L, 2));
5912 const char *str = MAY_LJMP(luaL_optlstring(L, 3, NULL, NULL));
5913 const struct ist reason = ist2(str, (str ? strlen(str) : 0));
5914
5915 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
5916 WILL_LJMP(lua_error(L));
5917
5918 http_res_set_status(code, reason, htxn->s);
5919 return 0;
5920}
5921
5922/*
5923 *
5924 *
5925 * Class HTTPMessage
5926 *
5927 *
5928 */
5929
5930/* Returns a struct http_msg if the stack entry "ud" is a class HTTPMessage,
5931 * otherwise it throws an error.
5932 */
5933__LJMP static struct http_msg *hlua_checkhttpmsg(lua_State *L, int ud)
5934{
5935 return MAY_LJMP(hlua_checkudata(L, ud, class_http_msg_ref));
5936}
5937
5938/* Creates and pushes on the stack a HTTP object according with a current TXN.
5939 */
Christopher Faulet78c35472020-02-26 17:14:08 +01005940static int hlua_http_msg_new(lua_State *L, struct http_msg *msg)
Christopher Fauletdf97ac42020-02-26 16:57:19 +01005941{
5942 /* Check stack size. */
5943 if (!lua_checkstack(L, 3))
5944 return 0;
5945
5946 lua_newtable(L);
5947 lua_pushlightuserdata(L, msg);
5948 lua_rawseti(L, -2, 0);
5949
5950 /* Create the "channel" field that contains the request channel object. */
5951 lua_pushstring(L, "channel");
5952 if (!hlua_channel_new(L, msg->chn))
5953 return 0;
5954 lua_rawset(L, -3);
5955
5956 /* Pop a class stream metatable and affect it to the table. */
5957 lua_rawgeti(L, LUA_REGISTRYINDEX, class_http_msg_ref);
5958 lua_setmetatable(L, -2);
5959
5960 return 1;
5961}
5962
5963/* Helper function returning a filter attached to the HTTP message at the
5964 * position <ud> in the stack, filling the current offset and length of the
Ilya Shipitsinff0f2782021-08-22 22:18:07 +05005965 * filter. If no filter is attached, NULL is returned and <offset> and <len> are
Christopher Fauletdf97ac42020-02-26 16:57:19 +01005966 * filled with output and input length respectively.
5967 */
5968static struct filter *hlua_http_msg_filter(lua_State *L, int ud, struct http_msg *msg, size_t *offset, size_t *len)
5969{
5970 struct channel *chn = msg->chn;
5971 struct htx *htx = htxbuf(&chn->buf);
5972 struct filter *filter = NULL;
5973
5974 *offset = co_data(msg->chn);
5975 *len = htx->data - co_data(msg->chn);
5976
5977 if (lua_getfield(L, ud, "__filter") == LUA_TLIGHTUSERDATA) {
5978 filter = lua_touserdata (L, -1);
5979 if (msg->msg_state >= HTTP_MSG_DATA) {
5980 struct hlua_flt_ctx *flt_ctx = filter->ctx;
5981
5982 *offset = flt_ctx->cur_off[CHN_IDX(chn)];
5983 *len = flt_ctx->cur_len[CHN_IDX(chn)];
5984 }
5985 }
5986
5987 lua_pop(L, 1);
5988 return filter;
5989}
5990
5991/* Returns true if the channel attached to the HTTP message is the response
5992 * channel.
5993 */
5994__LJMP static int hlua_http_msg_is_resp(lua_State *L)
5995{
5996 struct http_msg *msg;
5997
5998 MAY_LJMP(check_args(L, 1, "is_resp"));
5999 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6000
6001 lua_pushboolean(L, !!(msg->chn->flags & CF_ISRESP));
6002 return 1;
6003}
6004
6005/* Returns an array containing the elements status-line of the HTTP message. It relies
6006 * on hlua_http_get_stline().
6007 */
6008__LJMP static int hlua_http_msg_get_stline(lua_State *L)
6009{
6010 struct http_msg *msg;
6011 struct htx *htx;
6012 struct htx_sl *sl;
6013
6014 MAY_LJMP(check_args(L, 1, "get_stline"));
6015 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6016
6017 if (msg->msg_state > HTTP_MSG_BODY)
6018 WILL_LJMP(lua_error(L));
6019
6020 htx = htxbuf(&msg->chn->buf);
6021 sl = http_get_stline(htx);
6022 if (!sl)
6023 return 0;
6024 return hlua_http_get_stline(L, sl);
6025}
6026
6027/* Returns an array containing all headers of the HTTP message. it relies on
6028 * hlua_http_get_headers().
6029 */
6030__LJMP static int hlua_http_msg_get_headers(lua_State *L)
6031{
6032 struct http_msg *msg;
6033
6034 MAY_LJMP(check_args(L, 1, "get_headers"));
6035 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6036
6037 if (msg->msg_state > HTTP_MSG_BODY)
6038 WILL_LJMP(lua_error(L));
6039
6040 return hlua_http_get_headers(L, msg);
6041}
6042
6043/* Deletes all occurrences of an header in the HTTP message matching on its
6044 * name. It relies on hlua_http_del_hdr().
6045 */
6046__LJMP static int hlua_http_msg_del_hdr(lua_State *L)
6047{
6048 struct http_msg *msg;
6049
6050 MAY_LJMP(check_args(L, 2, "del_header"));
6051 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6052
6053 if (msg->msg_state > HTTP_MSG_BODY)
6054 WILL_LJMP(lua_error(L));
6055
6056 return hlua_http_del_hdr(L, msg);
6057}
6058
Ilya Shipitsinff0f2782021-08-22 22:18:07 +05006059/* Matches the full value line of all occurrences of an header in the HTTP
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006060 * message given its name against a regex and replaces it if it matches. It
6061 * relies on hlua_http_rep_hdr().
6062 */
6063__LJMP static int hlua_http_msg_rep_hdr(lua_State *L)
6064{
6065 struct http_msg *msg;
6066
6067 MAY_LJMP(check_args(L, 4, "rep_header"));
6068 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6069
6070 if (msg->msg_state > HTTP_MSG_BODY)
6071 WILL_LJMP(lua_error(L));
6072
6073 return hlua_http_rep_hdr(L, msg, 1);
6074}
6075
Ilya Shipitsinbd6b4be2021-10-15 16:18:21 +05006076/* Matches all comma-separated values of all occurrences of an header in the HTTP
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006077 * message given its name against a regex and replaces it if it matches. It
6078 * relies on hlua_http_rep_hdr().
6079 */
6080__LJMP static int hlua_http_msg_rep_val(lua_State *L)
6081{
6082 struct http_msg *msg;
6083
6084 MAY_LJMP(check_args(L, 4, "rep_value"));
6085 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6086
6087 if (msg->msg_state > HTTP_MSG_BODY)
6088 WILL_LJMP(lua_error(L));
6089
6090 return hlua_http_rep_hdr(L, msg, 0);
6091}
6092
6093/* Add an header in the HTTP message. It relies on hlua_http_add_hdr() */
6094__LJMP static int hlua_http_msg_add_hdr(lua_State *L)
6095{
6096 struct http_msg *msg;
6097
6098 MAY_LJMP(check_args(L, 3, "add_header"));
6099 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6100
6101 if (msg->msg_state > HTTP_MSG_BODY)
6102 WILL_LJMP(lua_error(L));
6103
6104 return hlua_http_add_hdr(L, msg);
6105}
6106
6107/* Add an header in the HTTP message removing existing headers with the same
6108 * name. It relies on hlua_http_del_hdr() and hlua_http_add_hdr().
6109 */
6110__LJMP static int hlua_http_msg_set_hdr(lua_State *L)
6111{
6112 struct http_msg *msg;
6113
6114 MAY_LJMP(check_args(L, 3, "set_header"));
6115 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6116
6117 if (msg->msg_state > HTTP_MSG_BODY)
6118 WILL_LJMP(lua_error(L));
6119
6120 hlua_http_del_hdr(L, msg);
6121 return hlua_http_add_hdr(L, msg);
6122}
6123
6124/* Rewrites the request method. It relies on http_req_replace_stline(). */
6125__LJMP static int hlua_http_msg_set_meth(lua_State *L)
6126{
6127 struct stream *s;
6128 struct http_msg *msg;
6129 const char *name;
6130 size_t name_len;
6131
6132 MAY_LJMP(check_args(L, 2, "set_method"));
6133 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6134 name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
6135
6136 if ((msg->chn->flags & CF_ISRESP) || msg->msg_state > HTTP_MSG_BODY)
6137 WILL_LJMP(lua_error(L));
6138
6139 s = chn_strm(msg->chn);
6140 lua_pushboolean(L, http_req_replace_stline(0, name, name_len, s->be, s) != -1);
6141 return 1;
6142}
6143
6144/* Rewrites the request path. It relies on http_req_replace_stline(). */
6145__LJMP static int hlua_http_msg_set_path(lua_State *L)
6146{
6147 struct stream *s;
6148 struct http_msg *msg;
6149 const char *name;
6150 size_t name_len;
6151
6152 MAY_LJMP(check_args(L, 2, "set_path"));
6153 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6154 name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
6155
6156 if ((msg->chn->flags & CF_ISRESP) || msg->msg_state > HTTP_MSG_BODY)
6157 WILL_LJMP(lua_error(L));
6158
6159 s = chn_strm(msg->chn);
6160 lua_pushboolean(L, http_req_replace_stline(1, name, name_len, s->be, s) != -1);
6161 return 1;
6162}
6163
6164/* Rewrites the request query-string. It relies on http_req_replace_stline(). */
6165__LJMP static int hlua_http_msg_set_query(lua_State *L)
6166{
6167 struct stream *s;
6168 struct http_msg *msg;
6169 const char *name;
6170 size_t name_len;
6171
6172 MAY_LJMP(check_args(L, 2, "set_query"));
6173 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6174 name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
6175
6176 if ((msg->chn->flags & CF_ISRESP) || msg->msg_state > HTTP_MSG_BODY)
6177 WILL_LJMP(lua_error(L));
6178
6179 /* Check length. */
6180 if (name_len > trash.size - 1) {
6181 lua_pushboolean(L, 0);
6182 return 1;
6183 }
6184
6185 /* Add the mark question as prefix. */
6186 chunk_reset(&trash);
6187 trash.area[trash.data++] = '?';
6188 memcpy(trash.area + trash.data, name, name_len);
6189 trash.data += name_len;
6190
6191 s = chn_strm(msg->chn);
6192 lua_pushboolean(L, http_req_replace_stline(2, trash.area, trash.data, s->be, s) != -1);
6193 return 1;
6194}
6195
6196/* Rewrites the request URI. It relies on http_req_replace_stline(). */
6197__LJMP static int hlua_http_msg_set_uri(lua_State *L)
6198{
6199 struct stream *s;
6200 struct http_msg *msg;
6201 const char *name;
6202 size_t name_len;
6203
6204 MAY_LJMP(check_args(L, 2, "set_uri"));
6205 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6206 name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
6207
6208 if ((msg->chn->flags & CF_ISRESP) || msg->msg_state > HTTP_MSG_BODY)
6209 WILL_LJMP(lua_error(L));
6210
6211 s = chn_strm(msg->chn);
6212 lua_pushboolean(L, http_req_replace_stline(3, name, name_len, s->be, s) != -1);
6213 return 1;
6214}
6215
6216/* Rewrites the response status code. It relies on http_res_set_status(). */
6217__LJMP static int hlua_http_msg_set_status(lua_State *L)
6218{
6219 struct http_msg *msg;
6220 unsigned int code;
6221 const char *reason;
6222 size_t reason_len;
6223
6224 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6225 code = MAY_LJMP(luaL_checkinteger(L, 2));
6226 reason = MAY_LJMP(luaL_optlstring(L, 3, NULL, &reason_len));
6227
6228 if (!(msg->chn->flags & CF_ISRESP) || msg->msg_state > HTTP_MSG_BODY)
6229 WILL_LJMP(lua_error(L));
6230
6231 lua_pushboolean(L, http_res_set_status(code, ist2(reason, reason_len), chn_strm(msg->chn)) != -1);
6232 return 1;
6233}
6234
6235/* Returns true if the HTTP message is full. */
6236__LJMP static int hlua_http_msg_is_full(lua_State *L)
6237{
6238 struct http_msg *msg;
6239
6240 MAY_LJMP(check_args(L, 1, "is_full"));
6241 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6242 lua_pushboolean(L, channel_full(msg->chn, 0));
6243 return 1;
6244}
6245
6246/* Returns true if the HTTP message may still receive data. */
6247__LJMP static int hlua_http_msg_may_recv(lua_State *L)
6248{
6249 struct http_msg *msg;
6250 struct htx *htx;
6251
6252 MAY_LJMP(check_args(L, 1, "may_recv"));
6253 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6254 htx = htxbuf(&msg->chn->buf);
6255 lua_pushboolean(L, (htx_expect_more(htx) && !channel_input_closed(msg->chn) && channel_may_recv(msg->chn)));
6256 return 1;
6257}
6258
6259/* Returns true if the HTTP message EOM was received */
6260__LJMP static int hlua_http_msg_is_eom(lua_State *L)
6261{
6262 struct http_msg *msg;
6263 struct htx *htx;
6264
6265 MAY_LJMP(check_args(L, 1, "may_recv"));
6266 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6267 htx = htxbuf(&msg->chn->buf);
6268 lua_pushboolean(L, !htx_expect_more(htx));
6269 return 1;
6270}
6271
6272/* Returns the number of bytes available in the input side of the HTTP
6273 * message. This function never fails.
6274 */
6275__LJMP static int hlua_http_msg_get_in_len(lua_State *L)
6276{
6277 struct http_msg *msg;
Christopher Fauleteae8afa2020-02-26 17:15:48 +01006278 size_t output, input;
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006279
6280 MAY_LJMP(check_args(L, 1, "input"));
6281 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
Christopher Fauleteae8afa2020-02-26 17:15:48 +01006282 hlua_http_msg_filter(L, 1, msg, &output, &input);
6283 lua_pushinteger(L, input);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006284 return 1;
6285}
6286
6287/* Returns the number of bytes available in the output side of the HTTP
6288 * message. This function never fails.
6289 */
6290__LJMP static int hlua_http_msg_get_out_len(lua_State *L)
6291{
6292 struct http_msg *msg;
Christopher Fauleteae8afa2020-02-26 17:15:48 +01006293 size_t output, input;
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006294
6295 MAY_LJMP(check_args(L, 1, "output"));
6296 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
Christopher Fauleteae8afa2020-02-26 17:15:48 +01006297 hlua_http_msg_filter(L, 1, msg, &output, &input);
6298 lua_pushinteger(L, output);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006299 return 1;
6300}
6301
6302/* Copies at most <len> bytes of DATA blocks from the HTTP message <msg>
6303 * starting at the offset <offset> and put it in a string LUA variables. It
Ilya Shipitsinff0f2782021-08-22 22:18:07 +05006304 * returns the built string length. It stops on the first non-DATA HTX
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006305 * block. This function is called during the payload filtering, so the headers
6306 * are already scheduled for output (from the filter point of view).
6307 */
6308static int _hlua_http_msg_dup(struct http_msg *msg, lua_State *L, size_t offset, size_t len)
6309{
6310 struct htx *htx = htxbuf(&msg->chn->buf);
6311 struct htx_blk *blk;
6312 struct htx_ret htxret;
6313 luaL_Buffer b;
6314 int ret = 0;
6315
6316 luaL_buffinit(L, &b);
6317 htxret = htx_find_offset(htx, offset);
6318 for (blk = htxret.blk, offset = htxret.ret; blk && len; blk = htx_get_next_blk(htx, blk)) {
6319 enum htx_blk_type type = htx_get_blk_type(blk);
6320 struct ist v;
6321
6322 switch (type) {
6323 case HTX_BLK_UNUSED:
6324 break;
6325
6326 case HTX_BLK_DATA:
6327 v = htx_get_blk_value(htx, blk);
Tim Duesterhusb113b5c2021-09-15 13:58:44 +02006328 v = istadv(v, offset);
Tim Duesterhus2471f5c2021-11-08 09:05:01 +01006329 v = isttrim(v, len);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006330
6331 luaL_addlstring(&b, v.ptr, v.len);
6332 ret += v.len;
6333 break;
6334
6335 default:
vishnu0af4bd72021-10-24 06:46:24 +05306336 if (!ret)
6337 goto no_data;
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006338 goto end;
6339 }
6340 offset = 0;
6341 }
6342
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006343end:
vishnu0af4bd72021-10-24 06:46:24 +05306344 if (!ret && (htx->flags & HTX_FL_EOM))
6345 goto no_data;
6346 luaL_pushresult(&b);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006347 return ret;
vishnu0af4bd72021-10-24 06:46:24 +05306348
6349 no_data:
6350 /* Remove the empty string and push nil on the stack */
6351 lua_pop(L, 1);
6352 lua_pushnil(L);
6353 return 0;
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006354}
6355
6356/* Copies the string <str> to the HTTP message <msg> at the offset
6357 * <offset>. This function returns -1 if data cannot be copied. Otherwise, it
Ilya Shipitsinff0f2782021-08-22 22:18:07 +05006358 * returns the amount of data written. This function is responsible to update
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006359 * the filter context.
6360 */
6361static int _hlua_http_msg_insert(struct http_msg *msg, struct filter *filter, struct ist str, size_t offset)
6362{
6363 struct htx *htx = htx_from_buf(&msg->chn->buf);
6364 struct htx_ret htxret;
6365 int /*max, */ret = 0;
6366
6367 /* Nothing to do, just return */
6368 if (unlikely(istlen(str) == 0))
6369 goto end;
6370
6371 if (istlen(str) > htx_free_data_space(htx)) {
6372 ret = -1;
6373 goto end;
6374 }
6375
6376 htxret = htx_find_offset(htx, offset);
6377 if (!htxret.blk || htx_get_blk_type(htxret.blk) != HTX_BLK_DATA) {
6378 if (!htx_add_last_data(htx, str))
6379 goto end;
6380 }
6381 else {
6382 struct ist v = htx_get_blk_value(htx, htxret.blk);
6383 v.ptr += htxret.ret;
6384 v.len = 0;
6385 if (!htx_replace_blk_value(htx, htxret.blk, v, str))
6386 goto end;
6387 }
6388 ret = str.len;
6389 if (ret) {
6390 struct hlua_flt_ctx *flt_ctx = filter->ctx;
6391 flt_update_offsets(filter, msg->chn, ret);
6392 flt_ctx->cur_len[CHN_IDX(msg->chn)] += ret;
6393 }
6394
6395 end:
6396 htx_to_buf(htx, &msg->chn->buf);
6397 return ret;
6398}
6399
6400/* Helper function removing at most <len> bytes of DATA blocks at the absolute
6401 * position <offset>. It stops on the first non-DATA HTX block. This function is
6402 * called during the payload filtering, so the headers are already scheduled for
Ilya Shipitsinff0f2782021-08-22 22:18:07 +05006403 * output (from the filter point of view). This function is responsible to
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006404 * update the filter context.
6405 */
6406static void _hlua_http_msg_delete(struct http_msg *msg, struct filter *filter, size_t offset, size_t len)
6407{
6408 struct hlua_flt_ctx *flt_ctx = filter->ctx;
6409 struct htx *htx = htx_from_buf(&msg->chn->buf);
6410 struct htx_blk *blk;
6411 struct htx_ret htxret;
6412 size_t ret = 0;
6413
6414 /* Be sure <len> is always the amount of DATA to remove */
6415 if (htx->data == offset+len && htx_get_tail_type(htx) == HTX_BLK_DATA) {
6416 htx_truncate(htx, offset);
6417 ret = len;
6418 goto end;
6419 }
6420
6421 htxret = htx_find_offset(htx, offset);
6422 blk = htxret.blk;
6423 if (htxret.ret) {
6424 struct ist v;
6425
6426 if (htx_get_blk_type(blk) != HTX_BLK_DATA)
6427 goto end;
6428 v = htx_get_blk_value(htx, blk);
6429 v.ptr += htxret.ret;
Tim Duesterhus2471f5c2021-11-08 09:05:01 +01006430 v = isttrim(v, len);
Tim Duesterhusb113b5c2021-09-15 13:58:44 +02006431 blk = htx_replace_blk_value(htx, blk, v, IST_NULL);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006432 len -= v.len;
6433 ret += v.len;
6434 }
6435
6436
6437 while (blk && len) {
6438 enum htx_blk_type type = htx_get_blk_type(blk);
6439 uint32_t sz = htx_get_blksz(blk);
6440
6441 switch (type) {
6442 case HTX_BLK_UNUSED:
6443 break;
6444
6445 case HTX_BLK_DATA:
6446 if (len < sz) {
6447 htx_cut_data_blk(htx, blk, len);
6448 ret += len;
6449 goto end;
6450 }
6451 break;
6452
6453 default:
6454 goto end;
6455 }
6456
Ilya Shipitsinff0f2782021-08-22 22:18:07 +05006457 /* Remove all the data block */
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006458 len -= sz;
6459 ret += sz;
6460 blk = htx_remove_blk(htx, blk);
6461 }
6462
6463end:
6464 flt_update_offsets(filter, msg->chn, -ret);
6465 flt_ctx->cur_len[CHN_IDX(msg->chn)] -= ret;
6466 /* WARNING: we don't call htx_to_buf() on purpose, because we don't want
6467 * to loose the EOM flag if the message is empty.
6468 */
6469}
6470
6471/* Copies input data found in an HTTP message. Unlike the channel function used
6472 * to duplicate raw data, this one can only be called inside a filter, from
6473 * http_payload callback. So it cannot yield. An exception is returned if it is
6474 * called from another callback. If nothing was copied, a nil value is pushed on
6475 * the stack.
6476 */
6477__LJMP static int hlua_http_msg_get_body(lua_State *L)
6478{
6479 struct http_msg *msg;
6480 struct filter *filter;
6481 size_t output, input;
6482 int offset, len;
6483
6484 if (lua_gettop(L) < 1 || lua_gettop(L) > 3)
6485 WILL_LJMP(luaL_error(L, "'data' expects at most 2 arguments"));
6486 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6487
6488 if (msg->msg_state < HTTP_MSG_DATA)
6489 WILL_LJMP(lua_error(L));
6490
6491 filter = hlua_http_msg_filter(L, 1, msg, &output, &input);
6492 if (!filter || !hlua_filter_from_payload(filter))
6493 WILL_LJMP(lua_error(L));
6494
6495 if (!ci_data(msg->chn) && channel_input_closed(msg->chn)) {
6496 lua_pushnil(L);
6497 return 1;
6498 }
6499
6500 offset = output;
6501 if (lua_gettop(L) > 1) {
6502 offset = MAY_LJMP(luaL_checkinteger(L, 2));
6503 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02006504 offset = MAX(0, (int)input + offset);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006505 offset += output;
6506 if (offset < output || offset > input + output) {
6507 lua_pushfstring(L, "offset out of range.");
6508 WILL_LJMP(lua_error(L));
6509 }
6510 }
6511 len = output + input - offset;
6512 if (lua_gettop(L) == 3) {
6513 len = MAY_LJMP(luaL_checkinteger(L, 3));
6514 if (!len)
6515 goto dup;
6516 if (len == -1)
6517 len = global.tune.bufsize;
6518 if (len < 0) {
6519 lua_pushfstring(L, "length out of range.");
6520 WILL_LJMP(lua_error(L));
6521 }
6522 }
6523
6524 dup:
6525 _hlua_http_msg_dup(msg, L, offset, len);
6526 return 1;
6527}
6528
6529/* Appends a string to the HTTP message, after all existing DATA blocks but
6530 * before the trailers, if any. It returns the amount of data written or -1 if
6531 * nothing was copied. Unlike the channel function used to append data, this one
6532 * can only be called inside a filter, from http_payload callback. So it cannot
6533 * yield. An exception is returned if it is called from another callback.
6534 */
6535__LJMP static int hlua_http_msg_append(lua_State *L)
6536{
6537 struct http_msg *msg;
6538 struct filter *filter;
6539 const char *str;
6540 size_t offset, len, sz;
6541 int ret;
6542
6543 MAY_LJMP(check_args(L, 2, "append"));
6544 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6545
6546 if (msg->msg_state < HTTP_MSG_DATA)
6547 WILL_LJMP(lua_error(L));
6548
6549 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
6550 filter = hlua_http_msg_filter(L, 1, msg, &offset, &len);
6551 if (!filter || !hlua_filter_from_payload(filter))
6552 WILL_LJMP(lua_error(L));
6553
6554 ret = _hlua_http_msg_insert(msg, filter, ist2(str, sz), offset+len);
6555 lua_pushinteger(L, ret);
6556 return 1;
6557}
6558
6559/* Prepends a string to the HTTP message, before all existing DATA blocks. It
6560 * returns the amount of data written or -1 if nothing was copied. Unlike the
6561 * channel function used to prepend data, this one can only be called inside a
6562 * filter, from http_payload callback. So it cannot yield. An exception is
6563 * returned if it is called from another callback.
6564 */
6565__LJMP static int hlua_http_msg_prepend(lua_State *L)
6566{
6567 struct http_msg *msg;
6568 struct filter *filter;
6569 const char *str;
6570 size_t offset, len, sz;
6571 int ret;
6572
6573 MAY_LJMP(check_args(L, 2, "prepend"));
6574 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006575
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006576 if (msg->msg_state < HTTP_MSG_DATA)
6577 WILL_LJMP(lua_error(L));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006578
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006579 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
6580 filter = hlua_http_msg_filter(L, 1, msg, &offset, &len);
6581 if (!filter || !hlua_filter_from_payload(filter))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006582 WILL_LJMP(lua_error(L));
6583
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006584 ret = _hlua_http_msg_insert(msg, filter, ist2(str, sz), offset);
6585 lua_pushinteger(L, ret);
6586 return 1;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006587}
6588
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006589/* Inserts a string to the HTTP message at a given offset. By default the string
6590 * is appended at the end of DATA blocks. It returns the amount of data written
6591 * or -1 if nothing was copied. Unlike the channel function used to insert data,
6592 * this one can only be called inside a filter, from http_payload callback. So
6593 * it cannot yield. An exception is returned if it is called from another
6594 * callback.
6595 */
6596__LJMP static int hlua_http_msg_insert_data(lua_State *L)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006597{
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006598 struct http_msg *msg;
6599 struct filter *filter;
6600 const char *str;
6601 size_t input, output, sz;
6602 int offset;
6603 int ret;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006604
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006605 if (lua_gettop(L) < 2 || lua_gettop(L) > 3)
6606 WILL_LJMP(luaL_error(L, "'insert' expects at least 1 argument and at most 2 arguments"));
6607 MAY_LJMP(check_args(L, 2, "insert"));
6608 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006609
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006610 if (msg->msg_state < HTTP_MSG_DATA)
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006611 WILL_LJMP(lua_error(L));
6612
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006613 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
6614 filter = hlua_http_msg_filter(L, 1, msg, &input, &output);
6615 if (!filter || !hlua_filter_from_payload(filter))
6616 WILL_LJMP(lua_error(L));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006617
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006618 offset = input + output;
6619 if (lua_gettop(L) > 2) {
6620 offset = MAY_LJMP(luaL_checkinteger(L, 3));
6621 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02006622 offset = MAX(0, (int)input + offset);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006623 offset += output;
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006624 if (offset < output || offset > output + input) {
6625 lua_pushfstring(L, "offset out of range.");
6626 WILL_LJMP(lua_error(L));
6627 }
6628 }
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006629
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006630 ret = _hlua_http_msg_insert(msg, filter, ist2(str, sz), offset);
6631 lua_pushinteger(L, ret);
6632 return 1;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006633}
6634
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006635/* Removes a given amount of data from the HTTP message at a given offset. By
6636 * default all DATA blocks are removed. It returns the amount of data
6637 * removed. Unlike the channel function used to remove data, this one can only
6638 * be called inside a filter, from http_payload callback. So it cannot yield. An
6639 * exception is returned if it is called from another callback.
6640 */
6641__LJMP static int hlua_http_msg_del_data(lua_State *L)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006642{
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006643 struct http_msg *msg;
6644 struct filter *filter;
6645 size_t input, output;
6646 int offset, len;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006647
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006648 if (lua_gettop(L) < 1 || lua_gettop(L) > 3)
6649 WILL_LJMP(luaL_error(L, "'insert' expects at most 2 arguments"));
6650 MAY_LJMP(check_args(L, 2, "insert"));
6651 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006652
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006653 if (msg->msg_state < HTTP_MSG_DATA)
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006654 WILL_LJMP(lua_error(L));
6655
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006656 filter = hlua_http_msg_filter(L, 1, msg, &input, &output);
6657 if (!filter || !hlua_filter_from_payload(filter))
6658 WILL_LJMP(lua_error(L));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006659
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006660 offset = input + output;
6661 if (lua_gettop(L) > 2) {
6662 offset = MAY_LJMP(luaL_checkinteger(L, 3));
6663 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02006664 offset = MAX(0, (int)input + offset);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006665 offset += output;
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006666 if (offset < output || offset > output + input) {
6667 lua_pushfstring(L, "offset out of range.");
6668 WILL_LJMP(lua_error(L));
6669 }
6670 }
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006671
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006672 len = output + input - offset;
6673 if (lua_gettop(L) == 4) {
6674 len = MAY_LJMP(luaL_checkinteger(L, 4));
6675 if (!len)
6676 goto end;
6677 if (len == -1)
6678 len = output + input - offset;
6679 if (len < 0 || offset + len > output + input) {
6680 lua_pushfstring(L, "length out of range.");
6681 WILL_LJMP(lua_error(L));
6682 }
6683 }
6684
6685 _hlua_http_msg_delete(msg, filter, offset, len);
6686
6687 end:
6688 lua_pushinteger(L, len);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006689 return 1;
6690}
6691
Ilya Shipitsinff0f2782021-08-22 22:18:07 +05006692/* Replaces a given amount of data at the given offset by a string. By default,
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006693 * all remaining data are removed, accordingly to the filter context. It returns
6694 * the amount of data written or -1 if nothing was copied. Unlike the channel
6695 * function used to replace data, this one can only be called inside a filter,
6696 * from http_payload callback. So it cannot yield. An exception is returned if
6697 * it is called from another callback.
6698 */
6699__LJMP static int hlua_http_msg_set_data(lua_State *L)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006700{
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006701 struct http_msg *msg;
6702 struct filter *filter;
6703 struct htx *htx;
6704 const char *str;
6705 size_t input, output, sz;
6706 int offset, len;
6707 int ret;
Thierry FOURNIER / OZON.IOb84ae922016-08-02 23:44:58 +02006708
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006709 if (lua_gettop(L) < 2 || lua_gettop(L) > 4)
6710 WILL_LJMP(luaL_error(L, "'set' expects at least 1 argument and at most 3 arguments"));
6711 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6712
6713 if (msg->msg_state < HTTP_MSG_DATA)
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006714 WILL_LJMP(lua_error(L));
6715
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006716 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
6717 filter = hlua_http_msg_filter(L, 1, msg, &output, &input);
6718 if (!filter || !hlua_filter_from_payload(filter))
6719 WILL_LJMP(lua_error(L));
6720
6721 offset = output;
6722 if (lua_gettop(L) > 2) {
6723 offset = MAY_LJMP(luaL_checkinteger(L, 3));
6724 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02006725 offset = MAX(0, (int)input + offset);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006726 offset += output;
6727 if (offset < output || offset > input + output) {
6728 lua_pushfstring(L, "offset out of range.");
6729 WILL_LJMP(lua_error(L));
6730 }
6731 }
6732
6733 len = output + input - offset;
6734 if (lua_gettop(L) == 4) {
6735 len = MAY_LJMP(luaL_checkinteger(L, 4));
6736 if (!len)
6737 goto set;
6738 if (len == -1)
6739 len = output + input - offset;
6740 if (len < 0 || offset + len > output + input) {
6741 lua_pushfstring(L, "length out of range.");
6742 WILL_LJMP(lua_error(L));
6743 }
6744 }
6745
6746 set:
6747 /* Be sure we can copied the string once input data will be removed. */
6748 htx = htx_from_buf(&msg->chn->buf);
6749 if (sz > htx_free_data_space(htx) + len)
6750 lua_pushinteger(L, -1);
6751 else {
6752 _hlua_http_msg_delete(msg, filter, offset, len);
6753 ret = _hlua_http_msg_insert(msg, filter, ist2(str, sz), offset);
6754 lua_pushinteger(L, ret);
6755 }
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006756 return 1;
6757}
6758
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006759/* Prepends data into an HTTP message and forward it, from the filter point of
6760 * view. It returns the amount of data written or -1 if nothing was sent. Unlike
6761 * the channel function used to send data, this one can only be called inside a
6762 * filter, from http_payload callback. So it cannot yield. An exception is
6763 * returned if it is called from another callback.
6764 */
6765__LJMP static int hlua_http_msg_send(lua_State *L)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006766{
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006767 struct http_msg *msg;
6768 struct filter *filter;
6769 struct htx *htx;
6770 const char *str;
6771 size_t offset, len, sz;
6772 int ret;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006773
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006774 MAY_LJMP(check_args(L, 2, "send"));
6775 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6776
6777 if (msg->msg_state < HTTP_MSG_DATA)
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006778 WILL_LJMP(lua_error(L));
6779
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006780 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
6781 filter = hlua_http_msg_filter(L, 1, msg, &offset, &len);
6782 if (!filter || !hlua_filter_from_payload(filter))
6783 WILL_LJMP(lua_error(L));
6784
6785 /* Return an error if the channel's output is closed */
6786 if (unlikely(channel_output_closed(msg->chn))) {
6787 lua_pushinteger(L, -1);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006788 return 1;
6789 }
6790
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006791 htx = htx_from_buf(&msg->chn->buf);
6792 if (sz > htx_free_data_space(htx)) {
6793 lua_pushinteger(L, -1);
6794 return 1;
6795 }
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006796
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006797 ret = _hlua_http_msg_insert(msg, filter, ist2(str, sz), offset);
6798 if (ret > 0) {
6799 struct hlua_flt_ctx *flt_ctx = filter->ctx;
6800
6801 FLT_OFF(filter, msg->chn) += ret;
6802 flt_ctx->cur_len[CHN_IDX(msg->chn)] -= ret;
6803 flt_ctx->cur_off[CHN_IDX(msg->chn)] += ret;
6804 }
6805
6806 lua_pushinteger(L, ret);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006807 return 1;
6808}
6809
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006810/* Forwards a given amount of bytes. It return -1 if the channel's output is
6811 * closed. Otherwise, it returns the number of bytes forwarded. Unlike the
6812 * channel function used to forward data, this one can only be called inside a
6813 * filter, from http_payload callback. So it cannot yield. An exception is
6814 * returned if it is called from another callback. All other functions deal with
6815 * DATA block, this one not.
6816*/
6817__LJMP static int hlua_http_msg_forward(lua_State *L)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006818{
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006819 struct http_msg *msg;
6820 struct filter *filter;
6821 size_t offset, len;
6822 int fwd, ret = 0;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006823
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006824 MAY_LJMP(check_args(L, 2, "forward"));
6825 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6826
6827 if (msg->msg_state < HTTP_MSG_DATA)
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006828 WILL_LJMP(lua_error(L));
6829
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006830 fwd = MAY_LJMP(luaL_checkinteger(L, 2));
6831 filter = hlua_http_msg_filter(L, 1, msg, &offset, &len);
6832 if (!filter || !hlua_filter_from_payload(filter))
6833 WILL_LJMP(lua_error(L));
6834
6835 /* Nothing to do, just return */
6836 if (!fwd)
6837 goto end;
6838
6839 /* Return an error if the channel's output is closed */
6840 if (unlikely(channel_output_closed(msg->chn))) {
6841 ret = -1;
6842 goto end;
6843 }
6844
6845 ret = fwd;
6846 if (ret > len)
6847 ret = len;
6848
6849 if (ret) {
6850 struct hlua_flt_ctx *flt_ctx = filter->ctx;
6851
6852 FLT_OFF(filter, msg->chn) += ret;
6853 flt_ctx->cur_off[CHN_IDX(msg->chn)] += ret;
6854 flt_ctx->cur_len[CHN_IDX(msg->chn)] -= ret;
6855 }
6856
6857 end:
6858 lua_pushinteger(L, ret);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006859 return 1;
6860}
6861
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006862/* Set EOM flag on the HTX message.
6863 *
6864 * NOTE: Not sure it is a good idea to manipulate this flag but for now I don't
6865 * really know how to do without this feature.
6866 */
6867__LJMP static int hlua_http_msg_set_eom(lua_State *L)
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +02006868{
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006869 struct http_msg *msg;
6870 struct htx *htx;
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +02006871
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006872 MAY_LJMP(check_args(L, 1, "set_eom"));
6873 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6874 htx = htxbuf(&msg->chn->buf);
6875 htx->flags |= HTX_FL_EOM;
6876 return 0;
6877}
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006878
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006879/* Unset EOM flag on the HTX message.
6880 *
6881 * NOTE: Not sure it is a good idea to manipulate this flag but for now I don't
6882 * really know how to do without this feature.
6883 */
6884__LJMP static int hlua_http_msg_unset_eom(lua_State *L)
6885{
6886 struct http_msg *msg;
6887 struct htx *htx;
6888
6889 MAY_LJMP(check_args(L, 1, "set_eom"));
6890 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6891 htx = htxbuf(&msg->chn->buf);
6892 htx->flags &= ~HTX_FL_EOM;
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +02006893 return 0;
6894}
6895
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006896/*
6897 *
6898 *
William Lallemand3956c4e2021-09-21 16:25:15 +02006899 * Class HTTPClient
6900 *
6901 *
6902 */
6903__LJMP static struct hlua_httpclient *hlua_checkhttpclient(lua_State *L, int ud)
6904{
6905 return MAY_LJMP(hlua_checkudata(L, ud, class_httpclient_ref));
6906}
6907
William Lallemandf77f1de2021-09-28 19:10:38 +02006908
6909/* stops the httpclient and ask it to kill itself */
6910__LJMP static int hlua_httpclient_gc(lua_State *L)
6911{
6912 struct hlua_httpclient *hlua_hc;
6913
6914 MAY_LJMP(check_args(L, 1, "__gc"));
6915
6916 hlua_hc = MAY_LJMP(hlua_checkhttpclient(L, 1));
6917
6918 httpclient_stop_and_destroy(hlua_hc->hc);
6919
6920 hlua_hc->hc = NULL;
6921
6922
6923 return 0;
6924}
6925
6926
William Lallemand3956c4e2021-09-21 16:25:15 +02006927__LJMP static int hlua_httpclient_new(lua_State *L)
6928{
6929 struct hlua_httpclient *hlua_hc;
6930 struct hlua *hlua;
6931
6932 /* Get hlua struct, or NULL if we execute from main lua state */
6933 hlua = hlua_gethlua(L);
6934 if (!hlua)
6935 return 0;
6936
6937 /* Check stack size. */
6938 if (!lua_checkstack(L, 3)) {
6939 hlua_pusherror(L, "httpclient: full stack");
6940 goto err;
6941 }
6942 /* Create the object: obj[0] = userdata. */
6943 lua_newtable(L);
6944 hlua_hc = MAY_LJMP(lua_newuserdata(L, sizeof(*hlua_hc)));
6945 lua_rawseti(L, -2, 0);
6946 memset(hlua_hc, 0, sizeof(*hlua_hc));
6947
6948 hlua_hc->hc = httpclient_new(hlua, 0, IST_NULL);
6949 if (!hlua_hc->hc)
6950 goto err;
6951
6952 /* Pop a class stream metatable and affect it to the userdata. */
6953 lua_rawgeti(L, LUA_REGISTRYINDEX, class_httpclient_ref);
6954 lua_setmetatable(L, -2);
6955
6956 return 1;
6957
6958 err:
6959 WILL_LJMP(lua_error(L));
6960 return 0;
6961}
6962
6963
6964/*
6965 * Callback of the httpclient, this callback wakes the lua task up, once the
6966 * httpclient receives some data
6967 *
6968 */
6969
William Lallemandbd5739e2021-10-28 15:41:38 +02006970static void hlua_httpclient_cb(struct httpclient *hc)
William Lallemand3956c4e2021-09-21 16:25:15 +02006971{
6972 struct hlua *hlua = hc->caller;
6973
6974 if (!hlua || !hlua->task)
6975 return;
6976
6977 task_wakeup(hlua->task, TASK_WOKEN_MSG);
6978}
6979
6980/*
William Lallemandd7df73a2021-09-23 17:54:00 +02006981 * Fill the lua stack with headers from the httpclient response
6982 * This works the same way as the hlua_http_get_headers() function
6983 */
6984__LJMP static int hlua_httpclient_get_headers(lua_State *L, struct hlua_httpclient *hlua_hc)
6985{
6986 struct http_hdr *hdr;
6987
6988 lua_newtable(L);
6989
William Lallemandef574b22021-10-05 16:19:31 +02006990 for (hdr = hlua_hc->hc->res.hdrs; hdr && isttest(hdr->n); hdr++) {
William Lallemandd7df73a2021-09-23 17:54:00 +02006991 struct ist n, v;
6992 int len;
6993
6994 n = hdr->n;
6995 v = hdr->v;
6996
6997 /* Check for existing entry:
6998 * assume that the table is on the top of the stack, and
6999 * push the key in the stack, the function lua_gettable()
7000 * perform the lookup.
7001 */
7002
7003 lua_pushlstring(L, n.ptr, n.len);
7004 lua_gettable(L, -2);
7005
7006 switch (lua_type(L, -1)) {
7007 case LUA_TNIL:
7008 /* Table not found, create it. */
7009 lua_pop(L, 1); /* remove the nil value. */
7010 lua_pushlstring(L, n.ptr, n.len); /* push the header name as key. */
7011 lua_newtable(L); /* create and push empty table. */
7012 lua_pushlstring(L, v.ptr, v.len); /* push header value. */
7013 lua_rawseti(L, -2, 0); /* index header value (pop it). */
7014 lua_rawset(L, -3); /* index new table with header name (pop the values). */
7015 break;
7016
7017 case LUA_TTABLE:
7018 /* Entry found: push the value in the table. */
7019 len = lua_rawlen(L, -1);
7020 lua_pushlstring(L, v.ptr, v.len); /* push header value. */
7021 lua_rawseti(L, -2, len+1); /* index header value (pop it). */
7022 lua_pop(L, 1); /* remove the table (it is stored in the main table). */
7023 break;
7024
7025 default:
7026 /* Other cases are errors. */
7027 hlua_pusherror(L, "internal error during the parsing of headers.");
7028 WILL_LJMP(lua_error(L));
7029 }
7030 }
7031 return 1;
7032}
7033
7034/*
William Lallemand746e6f32021-10-06 10:57:44 +02007035 * Allocate and return an array of http_hdr ist extracted from the <headers> lua table
7036 *
7037 * Caller must free the result
7038 */
7039struct http_hdr *hlua_httpclient_table_to_hdrs(lua_State *L)
7040{
7041 struct http_hdr hdrs[global.tune.max_http_hdr];
7042 struct http_hdr *result = NULL;
7043 uint32_t hdr_num = 0;
7044
7045 lua_pushnil(L);
7046 while (lua_next(L, -2) != 0) {
7047 struct ist name, value;
7048 const char *n, *v;
7049 size_t nlen, vlen;
7050
7051 if (!lua_isstring(L, -2) || !lua_istable(L, -1)) {
7052 /* Skip element if the key is not a string or if the value is not a table */
7053 goto next_hdr;
7054 }
7055
7056 n = lua_tolstring(L, -2, &nlen);
7057 name = ist2(n, nlen);
7058
7059 /* Loop on header's values */
7060 lua_pushnil(L);
7061 while (lua_next(L, -2)) {
7062 if (!lua_isstring(L, -1)) {
7063 /* Skip the value if it is not a string */
7064 goto next_value;
7065 }
7066
7067 v = lua_tolstring(L, -1, &vlen);
7068 value = ist2(v, vlen);
7069 name = ist2(n, nlen);
7070
7071 hdrs[hdr_num].n = istdup(name);
7072 hdrs[hdr_num].v = istdup(value);
7073
7074 hdr_num++;
7075
7076 next_value:
7077 lua_pop(L, 1);
7078 }
7079
7080 next_hdr:
7081 lua_pop(L, 1);
7082
7083 }
7084
7085 if (hdr_num) {
7086 /* alloc and copy the headers in the httpclient struct */
Tim Duesterhus16cc16d2021-11-06 15:14:45 +01007087 result = calloc((hdr_num + 1), sizeof(*result));
William Lallemand746e6f32021-10-06 10:57:44 +02007088 if (!result)
7089 goto skip_headers;
7090 memcpy(result, hdrs, sizeof(struct http_hdr) * (hdr_num + 1));
7091
7092 result[hdr_num].n = IST_NULL;
7093 result[hdr_num].v = IST_NULL;
7094 }
7095
7096skip_headers:
William Lallemand746e6f32021-10-06 10:57:44 +02007097
7098 return result;
7099}
7100
7101
William Lallemandbd5739e2021-10-28 15:41:38 +02007102/*
7103 * For each yield, checks if there is some data in the httpclient and push them
7104 * in the lua buffer, once the httpclient finished its job, push the result on
7105 * the stack
7106 */
7107__LJMP static int hlua_httpclient_rcv_yield(lua_State *L, int status, lua_KContext ctx)
7108{
7109 struct buffer *tr;
7110 int res;
7111 struct hlua *hlua = hlua_gethlua(L);
7112 struct hlua_httpclient *hlua_hc = hlua_checkhttpclient(L, 1);
7113
7114
7115 tr = get_trash_chunk();
7116
7117 res = httpclient_res_xfer(hlua_hc->hc, tr);
7118 luaL_addlstring(&hlua_hc->b, b_orig(tr), res);
7119
7120 if (!httpclient_data(hlua_hc->hc) && httpclient_ended(hlua_hc->hc)) {
7121
7122 luaL_pushresult(&hlua_hc->b);
7123 lua_settable(L, -3);
7124
7125 lua_pushstring(L, "status");
7126 lua_pushinteger(L, hlua_hc->hc->res.status);
7127 lua_settable(L, -3);
7128
7129
7130 lua_pushstring(L, "reason");
7131 lua_pushlstring(L, hlua_hc->hc->res.reason.ptr, hlua_hc->hc->res.reason.len);
7132 lua_settable(L, -3);
7133
7134 lua_pushstring(L, "headers");
7135 hlua_httpclient_get_headers(L, hlua_hc);
7136 lua_settable(L, -3);
7137
7138 return 1;
7139 }
7140
7141 if (httpclient_data(hlua_hc->hc))
7142 task_wakeup(hlua->task, TASK_WOKEN_MSG);
7143
7144 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_httpclient_rcv_yield, TICK_ETERNITY, 0));
7145
7146 return 0;
7147}
7148
7149/*
7150 * Call this when trying to stream a body during a request
7151 */
7152__LJMP static int hlua_httpclient_snd_yield(lua_State *L, int status, lua_KContext ctx)
7153{
7154 struct hlua *hlua;
7155 struct hlua_httpclient *hlua_hc = hlua_checkhttpclient(L, 1);
7156 const char *body_str = NULL;
7157 int ret;
7158 int end = 0;
7159 size_t buf_len;
7160 size_t to_send = 0;
7161
7162 hlua = hlua_gethlua(L);
7163
7164 if (!hlua || !hlua->task)
7165 WILL_LJMP(luaL_error(L, "The 'get' function is only allowed in "
7166 "'frontend', 'backend' or 'task'"));
7167
7168 ret = lua_getfield(L, -1, "body");
7169 if (ret != LUA_TSTRING)
7170 goto rcv;
7171
7172 body_str = lua_tolstring(L, -1, &buf_len);
7173 lua_pop(L, 1);
7174
Christopher Fauletfc591292022-01-12 14:46:03 +01007175 to_send = buf_len - hlua_hc->sent;
William Lallemandbd5739e2021-10-28 15:41:38 +02007176
7177 if ((hlua_hc->sent + to_send) >= buf_len)
7178 end = 1;
7179
7180 /* the end flag is always set since we are using the whole remaining size */
7181 hlua_hc->sent += httpclient_req_xfer(hlua_hc->hc, ist2(body_str + hlua_hc->sent, to_send), end);
7182
7183 if (buf_len > hlua_hc->sent) {
7184 /* still need to process the buffer */
7185 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_httpclient_snd_yield, TICK_ETERNITY, 0));
7186 } else {
7187 goto rcv;
7188 /* we sent the whole request buffer we can recv */
7189 }
7190 return 0;
7191
7192rcv:
7193
7194 /* we return a "res" object */
7195 lua_newtable(L);
7196
William Lallemandbd5739e2021-10-28 15:41:38 +02007197 lua_pushstring(L, "body");
William Lallemandd1187eb2021-11-02 10:40:06 +01007198 luaL_buffinit(L, &hlua_hc->b);
William Lallemandbd5739e2021-10-28 15:41:38 +02007199
William Lallemand933fe392021-11-04 09:45:58 +01007200 task_wakeup(hlua->task, TASK_WOKEN_MSG);
William Lallemandbd5739e2021-10-28 15:41:38 +02007201 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_httpclient_rcv_yield, TICK_ETERNITY, 0));
7202
7203 return 1;
7204}
William Lallemand746e6f32021-10-06 10:57:44 +02007205
William Lallemand3956c4e2021-09-21 16:25:15 +02007206/*
William Lallemanddc2cc902021-10-26 11:43:26 +02007207 * Send an HTTP request and wait for a response
William Lallemand3956c4e2021-09-21 16:25:15 +02007208 */
7209
William Lallemanddc2cc902021-10-26 11:43:26 +02007210__LJMP static int hlua_httpclient_send(lua_State *L, enum http_meth_t meth)
William Lallemand3956c4e2021-09-21 16:25:15 +02007211{
7212 struct hlua_httpclient *hlua_hc;
William Lallemand746e6f32021-10-06 10:57:44 +02007213 struct http_hdr *hdrs = NULL;
7214 struct http_hdr *hdrs_i = NULL;
William Lallemand3956c4e2021-09-21 16:25:15 +02007215 struct hlua *hlua;
William Lallemand746e6f32021-10-06 10:57:44 +02007216 const char *url_str = NULL;
William Lallemanddec25c32021-10-25 19:48:37 +02007217 const char *body_str = NULL;
William Lallemandbd5739e2021-10-28 15:41:38 +02007218 size_t buf_len;
William Lallemand746e6f32021-10-06 10:57:44 +02007219 int ret;
William Lallemand3956c4e2021-09-21 16:25:15 +02007220
7221 hlua = hlua_gethlua(L);
7222
7223 if (!hlua || !hlua->task)
7224 WILL_LJMP(luaL_error(L, "The 'get' function is only allowed in "
7225 "'frontend', 'backend' or 'task'"));
7226
William Lallemand746e6f32021-10-06 10:57:44 +02007227 if (lua_gettop(L) != 2 || lua_type(L, -1) != LUA_TTABLE)
7228 WILL_LJMP(luaL_error(L, "'get' needs a table as argument"));
7229
William Lallemand4f4f2b72022-02-17 20:00:23 +01007230 hlua_hc = hlua_checkhttpclient(L, 1);
7231
William Lallemand7177a952022-03-03 15:33:12 +01007232 lua_pushnil(L); /* first key */
7233 while (lua_next(L, 2)) {
7234 if (strcmp(lua_tostring(L, -2), "dst") == 0) {
7235 if (httpclient_set_dst(hlua_hc->hc, lua_tostring(L, -1)) < 0)
7236 WILL_LJMP(luaL_error(L, "Can't use the 'dst' argument"));
William Lallemand4f4f2b72022-02-17 20:00:23 +01007237
William Lallemand7177a952022-03-03 15:33:12 +01007238 } else if (strcmp(lua_tostring(L, -2), "url") == 0) {
7239 if (lua_type(L, -1) != LUA_TSTRING)
7240 WILL_LJMP(luaL_error(L, "invalid parameter in 'url', must be a string"));
7241 url_str = lua_tostring(L, -1);
William Lallemand3956c4e2021-09-21 16:25:15 +02007242
William Lallemand7177a952022-03-03 15:33:12 +01007243 } else if (strcmp(lua_tostring(L, -2), "timeout") == 0) {
7244 if (lua_type(L, -1) != LUA_TNUMBER)
7245 WILL_LJMP(luaL_error(L, "invalid parameter in 'timeout', must be a number"));
7246 httpclient_set_timeout(hlua_hc->hc, lua_tointeger(L, -1));
William Lallemandb4a4ef62022-02-23 14:18:16 +01007247
William Lallemand7177a952022-03-03 15:33:12 +01007248 } else if (strcmp(lua_tostring(L, -2), "headers") == 0) {
7249 if (lua_type(L, -1) != LUA_TTABLE)
7250 WILL_LJMP(luaL_error(L, "invalid parameter in 'headers', must be a table"));
7251 hdrs = hlua_httpclient_table_to_hdrs(L);
William Lallemand79416cb2021-09-24 14:51:44 +02007252
William Lallemand7177a952022-03-03 15:33:12 +01007253 } else if (strcmp(lua_tostring(L, -2), "body") == 0) {
7254 if (lua_type(L, -1) != LUA_TSTRING)
7255 WILL_LJMP(luaL_error(L, "invalid parameter in 'body', must be a string"));
7256 body_str = lua_tolstring(L, -1, &buf_len);
William Lallemandbd5739e2021-10-28 15:41:38 +02007257
William Lallemand7177a952022-03-03 15:33:12 +01007258 } else {
7259 WILL_LJMP(luaL_error(L, "'%s' invalid parameter name", lua_tostring(L, -2)));
7260 }
7261 /* removes 'value'; keeps 'key' for next iteration */
7262 lua_pop(L, 1);
7263 }
William Lallemanddec25c32021-10-25 19:48:37 +02007264
William Lallemand746e6f32021-10-06 10:57:44 +02007265 if (!url_str) {
7266 WILL_LJMP(luaL_error(L, "'get' need a 'url' argument"));
7267 return 0;
7268 }
William Lallemand3956c4e2021-09-21 16:25:15 +02007269
William Lallemand10a37362022-03-02 16:18:26 +01007270 hlua_hc->sent = 0;
William Lallemand3956c4e2021-09-21 16:25:15 +02007271
7272 hlua_hc->hc->req.url = istdup(ist(url_str));
William Lallemanddc2cc902021-10-26 11:43:26 +02007273 hlua_hc->hc->req.meth = meth;
William Lallemand3956c4e2021-09-21 16:25:15 +02007274
7275 /* update the httpclient callbacks */
William Lallemandbd5739e2021-10-28 15:41:38 +02007276 hlua_hc->hc->ops.res_stline = hlua_httpclient_cb;
7277 hlua_hc->hc->ops.res_headers = hlua_httpclient_cb;
7278 hlua_hc->hc->ops.res_payload = hlua_httpclient_cb;
William Lallemand8f170c72022-03-15 10:52:07 +01007279 hlua_hc->hc->ops.res_end = hlua_httpclient_cb;
William Lallemand3956c4e2021-09-21 16:25:15 +02007280
William Lallemandbd5739e2021-10-28 15:41:38 +02007281 /* a body is available, it will use the request callback */
7282 if (body_str) {
7283 hlua_hc->hc->ops.req_payload = hlua_httpclient_cb;
7284 }
William Lallemand3956c4e2021-09-21 16:25:15 +02007285
William Lallemandbd5739e2021-10-28 15:41:38 +02007286 ret = httpclient_req_gen(hlua_hc->hc, hlua_hc->hc->req.url, meth, hdrs, IST_NULL);
William Lallemand3956c4e2021-09-21 16:25:15 +02007287
William Lallemand746e6f32021-10-06 10:57:44 +02007288 /* free the temporary headers array */
7289 hdrs_i = hdrs;
7290 while (hdrs_i && isttest(hdrs_i->n)) {
7291 istfree(&hdrs_i->n);
7292 istfree(&hdrs_i->v);
7293 hdrs_i++;
7294 }
7295 ha_free(&hdrs);
7296
7297
William Lallemand6137a9e2021-10-26 15:01:53 +02007298 if (ret != ERR_NONE) {
7299 WILL_LJMP(luaL_error(L, "Can't generate the HTTP request"));
7300 return 0;
7301 }
7302
William Lallemandc2d3db42022-04-26 11:46:13 +02007303 if (!httpclient_start(hlua_hc->hc))
7304 WILL_LJMP(luaL_error(L, "couldn't start the httpclient"));
William Lallemand6137a9e2021-10-26 15:01:53 +02007305
William Lallemandbd5739e2021-10-28 15:41:38 +02007306 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_httpclient_snd_yield, TICK_ETERNITY, 0));
William Lallemand3956c4e2021-09-21 16:25:15 +02007307
William Lallemand3956c4e2021-09-21 16:25:15 +02007308 return 0;
7309}
7310
7311/*
William Lallemanddc2cc902021-10-26 11:43:26 +02007312 * Sends an HTTP HEAD request and wait for a response
7313 *
7314 * httpclient:head(url, headers, payload)
7315 */
7316__LJMP static int hlua_httpclient_head(lua_State *L)
7317{
7318 return hlua_httpclient_send(L, HTTP_METH_HEAD);
7319}
7320
7321/*
7322 * Send an HTTP GET request and wait for a response
7323 *
7324 * httpclient:get(url, headers, payload)
7325 */
7326__LJMP static int hlua_httpclient_get(lua_State *L)
7327{
7328 return hlua_httpclient_send(L, HTTP_METH_GET);
7329
7330}
7331
7332/*
7333 * Sends an HTTP PUT request and wait for a response
7334 *
7335 * httpclient:put(url, headers, payload)
7336 */
7337__LJMP static int hlua_httpclient_put(lua_State *L)
7338{
7339 return hlua_httpclient_send(L, HTTP_METH_PUT);
7340}
7341
7342/*
7343 * Send an HTTP POST request and wait for a response
7344 *
7345 * httpclient:post(url, headers, payload)
7346 */
7347__LJMP static int hlua_httpclient_post(lua_State *L)
7348{
7349 return hlua_httpclient_send(L, HTTP_METH_POST);
7350}
7351
7352
7353/*
7354 * Sends an HTTP DELETE request and wait for a response
7355 *
7356 * httpclient:delete(url, headers, payload)
7357 */
7358__LJMP static int hlua_httpclient_delete(lua_State *L)
7359{
7360 return hlua_httpclient_send(L, HTTP_METH_DELETE);
7361}
7362
7363/*
William Lallemand3956c4e2021-09-21 16:25:15 +02007364 *
7365 *
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01007366 * Class TXN
7367 *
7368 *
7369 */
7370
7371/* Returns a struct hlua_session if the stack entry "ud" is
Willy Tarreau87b09662015-04-03 00:22:06 +02007372 * a class stream, otherwise it throws an error.
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01007373 */
7374__LJMP static struct hlua_txn *hlua_checktxn(lua_State *L, int ud)
7375{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02007376 return MAY_LJMP(hlua_checkudata(L, ud, class_txn_ref));
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01007377}
7378
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02007379__LJMP static int hlua_set_var(lua_State *L)
7380{
7381 struct hlua_txn *htxn;
7382 const char *name;
7383 size_t len;
7384 struct sample smp;
7385
Tim Duesterhus4e172c92020-05-19 13:49:42 +02007386 if (lua_gettop(L) < 3 || lua_gettop(L) > 4)
7387 WILL_LJMP(luaL_error(L, "'set_var' needs between 3 and 4 arguments"));
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02007388
7389 /* It is useles to retrieve the stream, but this function
7390 * runs only in a stream context.
7391 */
7392 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7393 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
7394
7395 /* Converts the third argument in a sample. */
Amaury Denoyellebc0af6a2020-10-29 17:21:20 +01007396 memset(&smp, 0, sizeof(smp));
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02007397 hlua_lua2smp(L, 3, &smp);
7398
7399 /* Store the sample in a variable. */
Willy Tarreau7560dd42016-03-10 16:28:58 +01007400 smp_set_owner(&smp, htxn->p, htxn->s->sess, htxn->s, htxn->dir & SMP_OPT_DIR);
Tim Duesterhus4e172c92020-05-19 13:49:42 +02007401
7402 if (lua_gettop(L) == 4 && lua_toboolean(L, 4))
7403 lua_pushboolean(L, vars_set_by_name_ifexist(name, len, &smp) != 0);
7404 else
7405 lua_pushboolean(L, vars_set_by_name(name, len, &smp) != 0);
7406
Tim Duesterhus84ebc132020-05-19 13:49:41 +02007407 return 1;
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02007408}
7409
Christopher Faulet85d79c92016-11-09 16:54:56 +01007410__LJMP static int hlua_unset_var(lua_State *L)
7411{
7412 struct hlua_txn *htxn;
7413 const char *name;
7414 size_t len;
7415 struct sample smp;
7416
7417 MAY_LJMP(check_args(L, 2, "unset_var"));
7418
7419 /* It is useles to retrieve the stream, but this function
7420 * runs only in a stream context.
7421 */
7422 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7423 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
7424
7425 /* Unset the variable. */
7426 smp_set_owner(&smp, htxn->p, htxn->s->sess, htxn->s, htxn->dir & SMP_OPT_DIR);
Tim Duesterhus84ebc132020-05-19 13:49:41 +02007427 lua_pushboolean(L, vars_unset_by_name_ifexist(name, len, &smp) != 0);
7428 return 1;
Christopher Faulet85d79c92016-11-09 16:54:56 +01007429}
7430
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02007431__LJMP static int hlua_get_var(lua_State *L)
7432{
7433 struct hlua_txn *htxn;
7434 const char *name;
7435 size_t len;
7436 struct sample smp;
7437
7438 MAY_LJMP(check_args(L, 2, "get_var"));
7439
7440 /* It is useles to retrieve the stream, but this function
7441 * runs only in a stream context.
7442 */
7443 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7444 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
7445
Willy Tarreau7560dd42016-03-10 16:28:58 +01007446 smp_set_owner(&smp, htxn->p, htxn->s->sess, htxn->s, htxn->dir & SMP_OPT_DIR);
Willy Tarreaue352b9d2021-09-03 11:52:38 +02007447 if (!vars_get_by_name(name, len, &smp, NULL)) {
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02007448 lua_pushnil(L);
7449 return 1;
7450 }
7451
7452 return hlua_smp2lua(L, &smp);
7453}
7454
Willy Tarreau59551662015-03-10 14:23:13 +01007455__LJMP static int hlua_set_priv(lua_State *L)
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01007456{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01007457 struct hlua *hlua;
7458
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01007459 MAY_LJMP(check_args(L, 2, "set_priv"));
7460
Willy Tarreau87b09662015-04-03 00:22:06 +02007461 /* It is useles to retrieve the stream, but this function
7462 * runs only in a stream context.
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01007463 */
7464 MAY_LJMP(hlua_checktxn(L, 1));
Thierry Fournier4234dbd2020-11-28 13:18:23 +01007465
7466 /* Get hlua struct, or NULL if we execute from main lua state */
Willy Tarreau80f5fae2015-02-27 16:38:20 +01007467 hlua = hlua_gethlua(L);
Thierry Fournier4234dbd2020-11-28 13:18:23 +01007468 if (!hlua)
7469 return 0;
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01007470
7471 /* Remove previous value. */
Thierry FOURNIERe068b602017-04-26 13:27:05 +02007472 luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref);
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01007473
7474 /* Get and store new value. */
7475 lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */
7476 hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */
7477
7478 return 0;
7479}
7480
Willy Tarreau59551662015-03-10 14:23:13 +01007481__LJMP static int hlua_get_priv(lua_State *L)
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01007482{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01007483 struct hlua *hlua;
7484
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01007485 MAY_LJMP(check_args(L, 1, "get_priv"));
7486
Willy Tarreau87b09662015-04-03 00:22:06 +02007487 /* It is useles to retrieve the stream, but this function
7488 * runs only in a stream context.
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01007489 */
7490 MAY_LJMP(hlua_checktxn(L, 1));
Thierry Fournier4234dbd2020-11-28 13:18:23 +01007491
7492 /* Get hlua struct, or NULL if we execute from main lua state */
Willy Tarreau80f5fae2015-02-27 16:38:20 +01007493 hlua = hlua_gethlua(L);
Thierry Fournier4234dbd2020-11-28 13:18:23 +01007494 if (!hlua) {
7495 lua_pushnil(L);
7496 return 1;
7497 }
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01007498
7499 /* Push configuration index in the stack. */
7500 lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref);
7501
7502 return 1;
7503}
7504
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01007505/* Create stack entry containing a class TXN. This function
7506 * return 0 if the stack does not contains free slots,
7507 * otherwise it returns 1.
7508 */
Thierry FOURNIERab00df62016-07-14 11:42:37 +02007509static int hlua_txn_new(lua_State *L, struct stream *s, struct proxy *p, int dir, int flags)
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01007510{
Willy Tarreaude491382015-04-06 11:04:28 +02007511 struct hlua_txn *htxn;
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01007512
7513 /* Check stack size. */
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01007514 if (!lua_checkstack(L, 3))
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01007515 return 0;
7516
7517 /* NOTE: The allocation never fails. The failure
7518 * throw an error, and the function never returns.
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08007519 * if the throw is not available, the process is aborted.
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01007520 */
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01007521 /* Create the object: obj[0] = userdata. */
7522 lua_newtable(L);
Willy Tarreaude491382015-04-06 11:04:28 +02007523 htxn = lua_newuserdata(L, sizeof(*htxn));
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01007524 lua_rawseti(L, -2, 0);
7525
Willy Tarreaude491382015-04-06 11:04:28 +02007526 htxn->s = s;
7527 htxn->p = p;
Thierry FOURNIERc4eebc82015-11-02 10:01:59 +01007528 htxn->dir = dir;
Thierry FOURNIERab00df62016-07-14 11:42:37 +02007529 htxn->flags = flags;
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01007530
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01007531 /* Create the "f" field that contains a list of fetches. */
7532 lua_pushstring(L, "f");
Thierry FOURNIERca988662015-12-20 18:43:03 +01007533 if (!hlua_fetches_new(L, htxn, HLUA_F_MAY_USE_HTTP))
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01007534 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02007535 lua_rawset(L, -3);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01007536
7537 /* Create the "sf" field that contains a list of stringsafe fetches. */
7538 lua_pushstring(L, "sf");
Thierry FOURNIERca988662015-12-20 18:43:03 +01007539 if (!hlua_fetches_new(L, htxn, HLUA_F_MAY_USE_HTTP | HLUA_F_AS_STRING))
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01007540 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02007541 lua_rawset(L, -3);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01007542
Thierry FOURNIER594afe72015-03-10 23:58:30 +01007543 /* Create the "c" field that contains a list of converters. */
7544 lua_pushstring(L, "c");
Willy Tarreaude491382015-04-06 11:04:28 +02007545 if (!hlua_converters_new(L, htxn, 0))
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01007546 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02007547 lua_rawset(L, -3);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01007548
7549 /* Create the "sc" field that contains a list of stringsafe converters. */
7550 lua_pushstring(L, "sc");
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01007551 if (!hlua_converters_new(L, htxn, HLUA_F_AS_STRING))
Thierry FOURNIER594afe72015-03-10 23:58:30 +01007552 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02007553 lua_rawset(L, -3);
Thierry FOURNIER594afe72015-03-10 23:58:30 +01007554
Thierry FOURNIER397826a2015-03-11 19:39:09 +01007555 /* Create the "req" field that contains the request channel object. */
7556 lua_pushstring(L, "req");
Willy Tarreau2a71af42015-03-10 13:51:50 +01007557 if (!hlua_channel_new(L, &s->req))
Thierry FOURNIER397826a2015-03-11 19:39:09 +01007558 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02007559 lua_rawset(L, -3);
Thierry FOURNIER397826a2015-03-11 19:39:09 +01007560
7561 /* Create the "res" field that contains the response channel object. */
7562 lua_pushstring(L, "res");
Willy Tarreau2a71af42015-03-10 13:51:50 +01007563 if (!hlua_channel_new(L, &s->res))
Thierry FOURNIER397826a2015-03-11 19:39:09 +01007564 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02007565 lua_rawset(L, -3);
Thierry FOURNIER397826a2015-03-11 19:39:09 +01007566
Thierry FOURNIER08504f42015-03-16 14:17:08 +01007567 /* Creates the HTTP object is the current proxy allows http. */
7568 lua_pushstring(L, "http");
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01007569 if (IS_HTX_STRM(s)) {
Willy Tarreaude491382015-04-06 11:04:28 +02007570 if (!hlua_http_new(L, htxn))
Thierry FOURNIER08504f42015-03-16 14:17:08 +01007571 return 0;
7572 }
7573 else
7574 lua_pushnil(L);
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02007575 lua_rawset(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01007576
Christopher Faulet78c35472020-02-26 17:14:08 +01007577 if ((htxn->flags & HLUA_TXN_CTX_MASK) == HLUA_TXN_FLT_CTX) {
7578 /* HTTPMessage object are created when a lua TXN is created from
7579 * a filter context only
7580 */
7581
7582 /* Creates the HTTP-Request object is the current proxy allows http. */
7583 lua_pushstring(L, "http_req");
7584 if (p->mode == PR_MODE_HTTP) {
7585 if (!hlua_http_msg_new(L, &s->txn->req))
7586 return 0;
7587 }
7588 else
7589 lua_pushnil(L);
7590 lua_rawset(L, -3);
7591
7592 /* Creates the HTTP-Response object is the current proxy allows http. */
7593 lua_pushstring(L, "http_res");
7594 if (p->mode == PR_MODE_HTTP) {
7595 if (!hlua_http_msg_new(L, &s->txn->rsp))
7596 return 0;
7597 }
7598 else
7599 lua_pushnil(L);
7600 lua_rawset(L, -3);
7601 }
7602
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01007603 /* Pop a class sesison metatable and affect it to the userdata. */
7604 lua_rawgeti(L, LUA_REGISTRYINDEX, class_txn_ref);
7605 lua_setmetatable(L, -2);
7606
7607 return 1;
7608}
7609
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01007610__LJMP static int hlua_txn_deflog(lua_State *L)
7611{
7612 const char *msg;
7613 struct hlua_txn *htxn;
7614
7615 MAY_LJMP(check_args(L, 2, "deflog"));
7616 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7617 msg = MAY_LJMP(luaL_checkstring(L, 2));
7618
7619 hlua_sendlog(htxn->s->be, htxn->s->logs.level, msg);
7620 return 0;
7621}
7622
7623__LJMP static int hlua_txn_log(lua_State *L)
7624{
7625 int level;
7626 const char *msg;
7627 struct hlua_txn *htxn;
7628
7629 MAY_LJMP(check_args(L, 3, "log"));
7630 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7631 level = MAY_LJMP(luaL_checkinteger(L, 2));
7632 msg = MAY_LJMP(luaL_checkstring(L, 3));
7633
7634 if (level < 0 || level >= NB_LOG_LEVELS)
7635 WILL_LJMP(luaL_argerror(L, 1, "Invalid loglevel."));
7636
7637 hlua_sendlog(htxn->s->be, level, msg);
7638 return 0;
7639}
7640
7641__LJMP static int hlua_txn_log_debug(lua_State *L)
7642{
7643 const char *msg;
7644 struct hlua_txn *htxn;
7645
7646 MAY_LJMP(check_args(L, 2, "Debug"));
7647 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7648 msg = MAY_LJMP(luaL_checkstring(L, 2));
7649 hlua_sendlog(htxn->s->be, LOG_DEBUG, msg);
7650 return 0;
7651}
7652
7653__LJMP static int hlua_txn_log_info(lua_State *L)
7654{
7655 const char *msg;
7656 struct hlua_txn *htxn;
7657
7658 MAY_LJMP(check_args(L, 2, "Info"));
7659 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7660 msg = MAY_LJMP(luaL_checkstring(L, 2));
7661 hlua_sendlog(htxn->s->be, LOG_INFO, msg);
7662 return 0;
7663}
7664
7665__LJMP static int hlua_txn_log_warning(lua_State *L)
7666{
7667 const char *msg;
7668 struct hlua_txn *htxn;
7669
7670 MAY_LJMP(check_args(L, 2, "Warning"));
7671 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7672 msg = MAY_LJMP(luaL_checkstring(L, 2));
7673 hlua_sendlog(htxn->s->be, LOG_WARNING, msg);
7674 return 0;
7675}
7676
7677__LJMP static int hlua_txn_log_alert(lua_State *L)
7678{
7679 const char *msg;
7680 struct hlua_txn *htxn;
7681
7682 MAY_LJMP(check_args(L, 2, "Alert"));
7683 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7684 msg = MAY_LJMP(luaL_checkstring(L, 2));
7685 hlua_sendlog(htxn->s->be, LOG_ALERT, msg);
7686 return 0;
7687}
7688
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01007689__LJMP static int hlua_txn_set_loglevel(lua_State *L)
7690{
7691 struct hlua_txn *htxn;
7692 int ll;
7693
7694 MAY_LJMP(check_args(L, 2, "set_loglevel"));
7695 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7696 ll = MAY_LJMP(luaL_checkinteger(L, 2));
7697
7698 if (ll < 0 || ll > 7)
7699 WILL_LJMP(luaL_argerror(L, 2, "Bad log level. It must be between 0 and 7"));
7700
7701 htxn->s->logs.level = ll;
7702 return 0;
7703}
7704
7705__LJMP static int hlua_txn_set_tos(lua_State *L)
7706{
7707 struct hlua_txn *htxn;
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01007708 int tos;
7709
7710 MAY_LJMP(check_args(L, 2, "set_tos"));
7711 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7712 tos = MAY_LJMP(luaL_checkinteger(L, 2));
7713
Willy Tarreau1a18b542018-12-11 16:37:42 +01007714 conn_set_tos(objt_conn(htxn->s->sess->origin), tos);
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01007715 return 0;
7716}
7717
7718__LJMP static int hlua_txn_set_mark(lua_State *L)
7719{
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01007720 struct hlua_txn *htxn;
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01007721 int mark;
7722
7723 MAY_LJMP(check_args(L, 2, "set_mark"));
7724 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7725 mark = MAY_LJMP(luaL_checkinteger(L, 2));
7726
Lukas Tribus579e3e32019-08-11 18:03:45 +02007727 conn_set_mark(objt_conn(htxn->s->sess->origin), mark);
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01007728 return 0;
7729}
7730
Patrick Hemmer268a7072018-05-11 12:52:31 -04007731__LJMP static int hlua_txn_set_priority_class(lua_State *L)
7732{
7733 struct hlua_txn *htxn;
7734
7735 MAY_LJMP(check_args(L, 2, "set_priority_class"));
7736 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7737 htxn->s->priority_class = queue_limit_class(MAY_LJMP(luaL_checkinteger(L, 2)));
7738 return 0;
7739}
7740
7741__LJMP static int hlua_txn_set_priority_offset(lua_State *L)
7742{
7743 struct hlua_txn *htxn;
7744
7745 MAY_LJMP(check_args(L, 2, "set_priority_offset"));
7746 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7747 htxn->s->priority_offset = queue_limit_offset(MAY_LJMP(luaL_checkinteger(L, 2)));
7748 return 0;
7749}
7750
Christopher Faulet700d9e82020-01-31 12:21:52 +01007751/* Forward the Reply object to the client. This function converts the reply in
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05007752 * HTX an push it to into the response channel. It is response to forward the
Christopher Faulet700d9e82020-01-31 12:21:52 +01007753 * message and terminate the transaction. It returns 1 on success and 0 on
7754 * error. The Reply must be on top of the stack.
7755 */
7756__LJMP static int hlua_txn_forward_reply(lua_State *L, struct stream *s)
7757{
7758 struct htx *htx;
7759 struct htx_sl *sl;
7760 struct h1m h1m;
7761 const char *status, *reason, *body;
7762 size_t status_len, reason_len, body_len;
7763 int ret, code, flags;
7764
7765 code = 200;
7766 status = "200";
7767 status_len = 3;
7768 ret = lua_getfield(L, -1, "status");
7769 if (ret == LUA_TNUMBER) {
7770 code = lua_tointeger(L, -1);
7771 status = lua_tolstring(L, -1, &status_len);
7772 }
7773 lua_pop(L, 1);
7774
7775 reason = http_get_reason(code);
7776 reason_len = strlen(reason);
7777 ret = lua_getfield(L, -1, "reason");
7778 if (ret == LUA_TSTRING)
7779 reason = lua_tolstring(L, -1, &reason_len);
7780 lua_pop(L, 1);
7781
7782 body = NULL;
7783 body_len = 0;
7784 ret = lua_getfield(L, -1, "body");
7785 if (ret == LUA_TSTRING)
7786 body = lua_tolstring(L, -1, &body_len);
7787 lua_pop(L, 1);
7788
7789 /* Prepare the response before inserting the headers */
7790 h1m_init_res(&h1m);
7791 htx = htx_from_buf(&s->res.buf);
7792 channel_htx_truncate(&s->res, htx);
7793 if (s->txn->req.flags & HTTP_MSGF_VER_11) {
7794 flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11);
7795 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"),
7796 ist2(status, status_len), ist2(reason, reason_len));
7797 }
7798 else {
7799 flags = HTX_SL_F_IS_RESP;
7800 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.0"),
7801 ist2(status, status_len), ist2(reason, reason_len));
7802 }
7803 if (!sl)
7804 goto fail;
7805 sl->info.res.status = code;
7806
7807 /* Push in the stack the "headers" entry. */
7808 ret = lua_getfield(L, -1, "headers");
7809 if (ret != LUA_TTABLE)
7810 goto skip_headers;
7811
7812 lua_pushnil(L);
7813 while (lua_next(L, -2) != 0) {
7814 struct ist name, value;
7815 const char *n, *v;
7816 size_t nlen, vlen;
7817
7818 if (!lua_isstring(L, -2) || !lua_istable(L, -1)) {
7819 /* Skip element if the key is not a string or if the value is not a table */
7820 goto next_hdr;
7821 }
7822
7823 n = lua_tolstring(L, -2, &nlen);
7824 name = ist2(n, nlen);
7825 if (isteqi(name, ist("content-length"))) {
7826 /* Always skip content-length header. It will be added
7827 * later with the correct len
7828 */
7829 goto next_hdr;
7830 }
7831
7832 /* Loop on header's values */
7833 lua_pushnil(L);
7834 while (lua_next(L, -2)) {
7835 if (!lua_isstring(L, -1)) {
7836 /* Skip the value if it is not a string */
7837 goto next_value;
7838 }
7839
7840 v = lua_tolstring(L, -1, &vlen);
7841 value = ist2(v, vlen);
7842
7843 if (isteqi(name, ist("transfer-encoding")))
7844 h1_parse_xfer_enc_header(&h1m, value);
7845 if (!htx_add_header(htx, ist2(n, nlen), ist2(v, vlen)))
7846 goto fail;
7847
7848 next_value:
7849 lua_pop(L, 1);
7850 }
7851
7852 next_hdr:
7853 lua_pop(L, 1);
7854 }
7855 skip_headers:
7856 lua_pop(L, 1);
7857
7858 /* Update h1m flags: CLEN is set if CHNK is not present */
7859 if (!(h1m.flags & H1_MF_CHNK)) {
7860 const char *clen = ultoa(body_len);
7861
7862 h1m.flags |= H1_MF_CLEN;
7863 if (!htx_add_header(htx, ist("content-length"), ist(clen)))
7864 goto fail;
7865 }
7866 if (h1m.flags & (H1_MF_CLEN|H1_MF_CHNK))
7867 h1m.flags |= H1_MF_XFER_LEN;
7868
7869 /* Update HTX start-line flags */
7870 if (h1m.flags & H1_MF_XFER_ENC)
7871 flags |= HTX_SL_F_XFER_ENC;
7872 if (h1m.flags & H1_MF_XFER_LEN) {
7873 flags |= HTX_SL_F_XFER_LEN;
7874 if (h1m.flags & H1_MF_CHNK)
7875 flags |= HTX_SL_F_CHNK;
7876 else if (h1m.flags & H1_MF_CLEN)
7877 flags |= HTX_SL_F_CLEN;
7878 if (h1m.body_len == 0)
7879 flags |= HTX_SL_F_BODYLESS;
7880 }
7881 sl->flags |= flags;
7882
7883
7884 if (!htx_add_endof(htx, HTX_BLK_EOH) ||
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01007885 (body_len && !htx_add_data_atonce(htx, ist2(body, body_len))))
Christopher Faulet700d9e82020-01-31 12:21:52 +01007886 goto fail;
7887
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01007888 htx->flags |= HTX_FL_EOM;
7889
Christopher Faulet700d9e82020-01-31 12:21:52 +01007890 /* Now, forward the response and terminate the transaction */
7891 s->txn->status = code;
7892 htx_to_buf(htx, &s->res.buf);
7893 if (!http_forward_proxy_resp(s, 1))
7894 goto fail;
7895
7896 return 1;
7897
7898 fail:
7899 channel_htx_truncate(&s->res, htx);
7900 return 0;
7901}
7902
7903/* Terminate a transaction if called from a lua action. For TCP streams,
7904 * processing is just aborted. Nothing is returned to the client and all
7905 * arguments are ignored. For HTTP streams, if a reply is passed as argument, it
7906 * is forwarded to the client before terminating the transaction. On success,
7907 * the function exits with ACT_RET_DONE code. If an error occurred, it exits
7908 * with ACT_RET_ERR code. If this function is not called from a lua action, it
7909 * just exits without any processing.
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01007910 */
Thierry FOURNIER4bb375c2015-08-26 08:42:21 +02007911__LJMP static int hlua_txn_done(lua_State *L)
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01007912{
Willy Tarreaub2ccb562015-04-06 11:11:15 +02007913 struct hlua_txn *htxn;
Christopher Faulet700d9e82020-01-31 12:21:52 +01007914 struct stream *s;
7915 int finst;
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01007916
Willy Tarreaub2ccb562015-04-06 11:11:15 +02007917 htxn = MAY_LJMP(hlua_checktxn(L, 1));
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01007918
Christopher Faulet700d9e82020-01-31 12:21:52 +01007919 /* If the flags NOTERM is set, we cannot terminate the session, so we
7920 * just end the execution of the current lua code. */
7921 if (htxn->flags & HLUA_TXN_NOTERM)
Thierry FOURNIERab00df62016-07-14 11:42:37 +02007922 WILL_LJMP(hlua_done(L));
Thierry FOURNIERab00df62016-07-14 11:42:37 +02007923
Christopher Faulet700d9e82020-01-31 12:21:52 +01007924 s = htxn->s;
Christopher Fauletd8f0e072020-02-25 09:45:51 +01007925 if (!IS_HTX_STRM(htxn->s)) {
Christopher Faulet700d9e82020-01-31 12:21:52 +01007926 struct channel *req = &s->req;
7927 struct channel *res = &s->res;
Willy Tarreau81389672015-03-10 12:03:52 +01007928
Christopher Faulet700d9e82020-01-31 12:21:52 +01007929 channel_auto_read(req);
7930 channel_abort(req);
7931 channel_auto_close(req);
7932 channel_erase(req);
7933
7934 res->wex = tick_add_ifset(now_ms, res->wto);
7935 channel_auto_read(res);
7936 channel_auto_close(res);
7937 channel_shutr_now(res);
7938
7939 finst = ((htxn->dir == SMP_OPT_DIR_REQ) ? SF_FINST_R : SF_FINST_D);
7940 goto done;
Christopher Fauletfe6a71b2019-07-26 16:40:24 +02007941 }
Thierry FOURNIER10ec2142015-08-24 17:23:45 +02007942
Christopher Faulet700d9e82020-01-31 12:21:52 +01007943 if (lua_gettop(L) == 1 || !lua_istable(L, 2)) {
7944 /* No reply or invalid reply */
7945 s->txn->status = 0;
7946 http_reply_and_close(s, 0, NULL);
7947 }
7948 else {
7949 /* Remove extra args to have the reply on top of the stack */
7950 if (lua_gettop(L) > 2)
7951 lua_pop(L, lua_gettop(L) - 2);
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01007952
Christopher Faulet700d9e82020-01-31 12:21:52 +01007953 if (!hlua_txn_forward_reply(L, s)) {
7954 if (!(s->flags & SF_ERR_MASK))
7955 s->flags |= SF_ERR_PRXCOND;
7956 lua_pushinteger(L, ACT_RET_ERR);
7957 WILL_LJMP(hlua_done(L));
7958 return 0; /* Never reached */
7959 }
Christopher Faulet4d0e2632019-07-16 10:52:40 +02007960 }
Thierry FOURNIER4bb375c2015-08-26 08:42:21 +02007961
Christopher Faulet700d9e82020-01-31 12:21:52 +01007962 finst = ((htxn->dir == SMP_OPT_DIR_REQ) ? SF_FINST_R : SF_FINST_H);
7963 if (htxn->dir == SMP_OPT_DIR_REQ) {
7964 /* let's log the request time */
7965 s->logs.tv_request = now;
7966 if (s->sess->fe == s->be) /* report it if the request was intercepted by the frontend */
Willy Tarreau4781b152021-04-06 13:53:36 +02007967 _HA_ATOMIC_INC(&s->sess->fe->fe_counters.intercepted_req);
Christopher Faulet700d9e82020-01-31 12:21:52 +01007968 }
Christopher Fauletfe6a71b2019-07-26 16:40:24 +02007969
Christopher Faulet700d9e82020-01-31 12:21:52 +01007970 done:
7971 if (!(s->flags & SF_ERR_MASK))
7972 s->flags |= SF_ERR_LOCAL;
7973 if (!(s->flags & SF_FINST_MASK))
7974 s->flags |= finst;
Christopher Fauletfe6a71b2019-07-26 16:40:24 +02007975
Christopher Faulete48d1dc2021-08-13 14:11:17 +02007976 if ((htxn->flags & HLUA_TXN_CTX_MASK) == HLUA_TXN_FLT_CTX)
7977 lua_pushinteger(L, -1);
7978 else
7979 lua_pushinteger(L, ACT_RET_ABRT);
Thierry FOURNIER4bb375c2015-08-26 08:42:21 +02007980 WILL_LJMP(hlua_done(L));
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01007981 return 0;
7982}
7983
Christopher Faulet700d9e82020-01-31 12:21:52 +01007984/*
7985 *
7986 *
7987 * Class REPLY
7988 *
7989 *
7990 */
7991
7992/* Pushes the TXN reply onto the top of the stack. If the stask does not have a
7993 * free slots, the function fails and returns 0;
7994 */
7995static int hlua_txn_reply_new(lua_State *L)
7996{
7997 struct hlua_txn *htxn;
7998 const char *reason, *body = NULL;
7999 int ret, status;
8000
8001 htxn = MAY_LJMP(hlua_checktxn(L, 1));
Christopher Fauletd8f0e072020-02-25 09:45:51 +01008002 if (!IS_HTX_STRM(htxn->s)) {
Christopher Faulet700d9e82020-01-31 12:21:52 +01008003 hlua_pusherror(L, "txn object is not an HTTP transaction.");
8004 WILL_LJMP(lua_error(L));
8005 }
8006
8007 /* Default value */
8008 status = 200;
8009 reason = http_get_reason(status);
8010
8011 if (lua_istable(L, 2)) {
8012 /* load status and reason from the table argument at index 2 */
8013 ret = lua_getfield(L, 2, "status");
8014 if (ret == LUA_TNIL)
8015 goto reason;
8016 else if (ret != LUA_TNUMBER) {
8017 /* invalid status: ignore the reason */
8018 goto body;
8019 }
8020 status = lua_tointeger(L, -1);
8021
8022 reason:
8023 lua_pop(L, 1); /* restore the stack: remove status */
8024 ret = lua_getfield(L, 2, "reason");
8025 if (ret == LUA_TSTRING)
8026 reason = lua_tostring(L, -1);
8027
8028 body:
8029 lua_pop(L, 1); /* restore the stack: remove invalid status or reason */
8030 ret = lua_getfield(L, 2, "body");
8031 if (ret == LUA_TSTRING)
8032 body = lua_tostring(L, -1);
8033 lua_pop(L, 1); /* restore the stack: remove body */
8034 }
8035
8036 /* Create the Reply table */
8037 lua_newtable(L);
8038
8039 /* Add status element */
8040 lua_pushstring(L, "status");
8041 lua_pushinteger(L, status);
8042 lua_settable(L, -3);
8043
8044 /* Add reason element */
8045 reason = http_get_reason(status);
8046 lua_pushstring(L, "reason");
8047 lua_pushstring(L, reason);
8048 lua_settable(L, -3);
8049
8050 /* Add body element, nil if undefined */
8051 lua_pushstring(L, "body");
8052 if (body)
8053 lua_pushstring(L, body);
8054 else
8055 lua_pushnil(L);
8056 lua_settable(L, -3);
8057
8058 /* Add headers element */
8059 lua_pushstring(L, "headers");
8060 lua_newtable(L);
8061
8062 /* stack: [ txn, <Arg:table>, <Reply:table>, "headers", <headers:table> ] */
8063 if (lua_istable(L, 2)) {
8064 /* load headers from the table argument at index 2. If it is a table, copy it. */
8065 ret = lua_getfield(L, 2, "headers");
8066 if (ret == LUA_TTABLE) {
8067 /* stack: [ ... <headers:table>, <table> ] */
8068 lua_pushnil(L);
8069 while (lua_next(L, -2) != 0) {
8070 /* stack: [ ... <headers:table>, <table>, k, v] */
8071 if (!lua_isstring(L, -1) && !lua_istable(L, -1)) {
8072 /* invalid value type, skip it */
8073 lua_pop(L, 1);
8074 continue;
8075 }
8076
8077
8078 /* Duplicate the key and swap it with the value. */
8079 lua_pushvalue(L, -2);
8080 lua_insert(L, -2);
8081 /* stack: [ ... <headers:table>, <table>, k, k, v ] */
8082
8083 lua_newtable(L);
8084 lua_insert(L, -2);
8085 /* stack: [ ... <headers:table>, <table>, k, k, <inner:table>, v ] */
8086
8087 if (lua_isstring(L, -1)) {
8088 /* push the value in the inner table */
8089 lua_rawseti(L, -2, 1);
8090 }
8091 else { /* table */
8092 lua_pushnil(L);
8093 while (lua_next(L, -2) != 0) {
8094 /* stack: [ ... <headers:table>, <table>, k, k, <inner:table>, <v:table>, k2, v2 ] */
8095 if (!lua_isstring(L, -1)) {
8096 /* invalid value type, skip it*/
8097 lua_pop(L, 1);
8098 continue;
8099 }
8100 /* push the value in the inner table */
8101 lua_rawseti(L, -4, lua_rawlen(L, -4) + 1);
8102 /* stack: [ ... <headers:table>, <table>, k, k, <inner:table>, <v:table>, k2 ] */
8103 }
8104 lua_pop(L, 1);
8105 /* stack: [ ... <headers:table>, <table>, k, k, <inner:table> ] */
8106 }
8107
8108 /* push (k,v) on the stack in the headers table:
8109 * stack: [ ... <headers:table>, <table>, k, k, v ]
8110 */
8111 lua_settable(L, -5);
8112 /* stack: [ ... <headers:table>, <table>, k ] */
8113 }
8114 }
8115 lua_pop(L, 1);
8116 }
8117 /* stack: [ txn, <Arg:table>, <Reply:table>, "headers", <headers:table> ] */
8118 lua_settable(L, -3);
8119 /* stack: [ txn, <Arg:table>, <Reply:table> ] */
8120
8121 /* Pop a class sesison metatable and affect it to the userdata. */
8122 lua_rawgeti(L, LUA_REGISTRYINDEX, class_txn_reply_ref);
8123 lua_setmetatable(L, -2);
8124 return 1;
8125}
8126
8127/* Set the reply status code, and optionally the reason. If no reason is
8128 * provided, the default one corresponding to the status code is used.
8129 */
8130__LJMP static int hlua_txn_reply_set_status(lua_State *L)
8131{
8132 int status = MAY_LJMP(luaL_checkinteger(L, 2));
8133 const char *reason = MAY_LJMP(luaL_optlstring(L, 3, NULL, NULL));
8134
8135 /* First argument (self) must be a table */
8136 luaL_checktype(L, 1, LUA_TTABLE);
8137
8138 if (status < 100 || status > 599) {
8139 lua_pushboolean(L, 0);
8140 return 1;
8141 }
8142 if (!reason)
8143 reason = http_get_reason(status);
8144
8145 lua_pushinteger(L, status);
8146 lua_setfield(L, 1, "status");
8147
8148 lua_pushstring(L, reason);
8149 lua_setfield(L, 1, "reason");
8150
8151 lua_pushboolean(L, 1);
8152 return 1;
8153}
8154
8155/* Add a header into the reply object. Each header name is associated to an
8156 * array of values in the "headers" table. If the header name is not found, a
8157 * new entry is created.
8158 */
8159__LJMP static int hlua_txn_reply_add_header(lua_State *L)
8160{
8161 const char *name = MAY_LJMP(luaL_checkstring(L, 2));
8162 const char *value = MAY_LJMP(luaL_checkstring(L, 3));
8163 int ret;
8164
8165 /* First argument (self) must be a table */
8166 luaL_checktype(L, 1, LUA_TTABLE);
8167
8168 /* Push in the stack the "headers" entry. */
8169 ret = lua_getfield(L, 1, "headers");
8170 if (ret != LUA_TTABLE) {
8171 hlua_pusherror(L, "Reply['headers'] is expected to a an array. %s found", lua_typename(L, ret));
8172 WILL_LJMP(lua_error(L));
8173 }
8174
8175 /* check if the header is already registered. If not, register it. */
8176 ret = lua_getfield(L, -1, name);
8177 if (ret == LUA_TNIL) {
8178 /* Entry not found. */
8179 lua_pop(L, 1); /* remove the nil. The "headers" table is the top of the stack. */
8180
8181 /* Insert the new header name in the array in the top of the stack.
8182 * It left the new array in the top of the stack.
8183 */
8184 lua_newtable(L);
8185 lua_pushstring(L, name);
8186 lua_pushvalue(L, -2);
8187 lua_settable(L, -4);
8188 }
8189 else if (ret != LUA_TTABLE) {
8190 hlua_pusherror(L, "Reply['headers']['%s'] is expected to be an array. %s found", name, lua_typename(L, ret));
8191 WILL_LJMP(lua_error(L));
8192 }
8193
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07008194 /* Now the top of thestack is an array of values. We push
Christopher Faulet700d9e82020-01-31 12:21:52 +01008195 * the header value as new entry.
8196 */
8197 lua_pushstring(L, value);
8198 ret = lua_rawlen(L, -2);
8199 lua_rawseti(L, -2, ret + 1);
8200
8201 lua_pushboolean(L, 1);
8202 return 1;
8203}
8204
8205/* Remove all occurrences of a given header name. */
8206__LJMP static int hlua_txn_reply_del_header(lua_State *L)
8207{
8208 const char *name = MAY_LJMP(luaL_checkstring(L, 2));
8209 int ret;
8210
8211 /* First argument (self) must be a table */
8212 luaL_checktype(L, 1, LUA_TTABLE);
8213
8214 /* Push in the stack the "headers" entry. */
8215 ret = lua_getfield(L, 1, "headers");
8216 if (ret != LUA_TTABLE) {
8217 hlua_pusherror(L, "Reply['headers'] is expected to be an array. %s found", lua_typename(L, ret));
8218 WILL_LJMP(lua_error(L));
8219 }
8220
8221 lua_pushstring(L, name);
8222 lua_pushnil(L);
8223 lua_settable(L, -3);
8224
8225 lua_pushboolean(L, 1);
8226 return 1;
8227}
8228
8229/* Set the reply's body. Overwrite any existing entry. */
8230__LJMP static int hlua_txn_reply_set_body(lua_State *L)
8231{
8232 const char *payload = MAY_LJMP(luaL_checkstring(L, 2));
8233
8234 /* First argument (self) must be a table */
8235 luaL_checktype(L, 1, LUA_TTABLE);
8236
8237 lua_pushstring(L, payload);
8238 lua_setfield(L, 1, "body");
8239
8240 lua_pushboolean(L, 1);
8241 return 1;
8242}
8243
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01008244__LJMP static int hlua_log(lua_State *L)
8245{
8246 int level;
8247 const char *msg;
8248
8249 MAY_LJMP(check_args(L, 2, "log"));
8250 level = MAY_LJMP(luaL_checkinteger(L, 1));
8251 msg = MAY_LJMP(luaL_checkstring(L, 2));
8252
8253 if (level < 0 || level >= NB_LOG_LEVELS)
8254 WILL_LJMP(luaL_argerror(L, 1, "Invalid loglevel."));
8255
8256 hlua_sendlog(NULL, level, msg);
8257 return 0;
8258}
8259
8260__LJMP static int hlua_log_debug(lua_State *L)
8261{
8262 const char *msg;
8263
8264 MAY_LJMP(check_args(L, 1, "debug"));
8265 msg = MAY_LJMP(luaL_checkstring(L, 1));
8266 hlua_sendlog(NULL, LOG_DEBUG, msg);
8267 return 0;
8268}
8269
8270__LJMP static int hlua_log_info(lua_State *L)
8271{
8272 const char *msg;
8273
8274 MAY_LJMP(check_args(L, 1, "info"));
8275 msg = MAY_LJMP(luaL_checkstring(L, 1));
8276 hlua_sendlog(NULL, LOG_INFO, msg);
8277 return 0;
8278}
8279
8280__LJMP static int hlua_log_warning(lua_State *L)
8281{
8282 const char *msg;
8283
8284 MAY_LJMP(check_args(L, 1, "warning"));
8285 msg = MAY_LJMP(luaL_checkstring(L, 1));
8286 hlua_sendlog(NULL, LOG_WARNING, msg);
8287 return 0;
8288}
8289
8290__LJMP static int hlua_log_alert(lua_State *L)
8291{
8292 const char *msg;
8293
8294 MAY_LJMP(check_args(L, 1, "alert"));
8295 msg = MAY_LJMP(luaL_checkstring(L, 1));
8296 hlua_sendlog(NULL, LOG_ALERT, msg);
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01008297 return 0;
8298}
8299
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01008300__LJMP static int hlua_sleep_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008301{
8302 int wakeup_ms = lua_tointeger(L, -1);
Willy Tarreau12c02702021-09-30 16:12:31 +02008303 if (!tick_is_expired(wakeup_ms, now_ms))
Willy Tarreau9635e032018-10-16 17:52:55 +02008304 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_sleep_yield, wakeup_ms, 0));
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008305 return 0;
8306}
8307
8308__LJMP static int hlua_sleep(lua_State *L)
8309{
8310 unsigned int delay;
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01008311 unsigned int wakeup_ms;
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008312
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01008313 MAY_LJMP(check_args(L, 1, "sleep"));
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008314
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01008315 delay = MAY_LJMP(luaL_checkinteger(L, 1)) * 1000;
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01008316 wakeup_ms = tick_add(now_ms, delay);
8317 lua_pushinteger(L, wakeup_ms);
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008318
Willy Tarreau9635e032018-10-16 17:52:55 +02008319 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_sleep_yield, wakeup_ms, 0));
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01008320 return 0;
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008321}
8322
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01008323__LJMP static int hlua_msleep(lua_State *L)
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008324{
8325 unsigned int delay;
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01008326 unsigned int wakeup_ms;
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008327
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01008328 MAY_LJMP(check_args(L, 1, "msleep"));
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008329
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01008330 delay = MAY_LJMP(luaL_checkinteger(L, 1));
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01008331 wakeup_ms = tick_add(now_ms, delay);
8332 lua_pushinteger(L, wakeup_ms);
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008333
Willy Tarreau9635e032018-10-16 17:52:55 +02008334 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_sleep_yield, wakeup_ms, 0));
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01008335 return 0;
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008336}
8337
Thierry FOURNIER13416fe2015-02-17 15:01:59 +01008338/* This functionis an LUA binding. it permits to give back
8339 * the hand at the HAProxy scheduler. It is used when the
8340 * LUA processing consumes a lot of time.
8341 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01008342__LJMP static int hlua_yield_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01008343{
8344 return 0;
8345}
8346
Thierry FOURNIER13416fe2015-02-17 15:01:59 +01008347__LJMP static int hlua_yield(lua_State *L)
8348{
Willy Tarreau9635e032018-10-16 17:52:55 +02008349 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_yield_yield, TICK_ETERNITY, HLUA_CTRLYIELD));
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01008350 return 0;
Thierry FOURNIER13416fe2015-02-17 15:01:59 +01008351}
8352
Thierry FOURNIER37196f42015-02-16 19:34:56 +01008353/* This function change the nice of the currently executed
8354 * task. It is used set low or high priority at the current
8355 * task.
8356 */
Willy Tarreau59551662015-03-10 14:23:13 +01008357__LJMP static int hlua_set_nice(lua_State *L)
Thierry FOURNIER37196f42015-02-16 19:34:56 +01008358{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01008359 struct hlua *hlua;
8360 int nice;
Thierry FOURNIER37196f42015-02-16 19:34:56 +01008361
Willy Tarreau80f5fae2015-02-27 16:38:20 +01008362 MAY_LJMP(check_args(L, 1, "set_nice"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01008363 nice = MAY_LJMP(luaL_checkinteger(L, 1));
Thierry FOURNIER37196f42015-02-16 19:34:56 +01008364
Thierry Fournier4234dbd2020-11-28 13:18:23 +01008365 /* Get hlua struct, or NULL if we execute from main lua state */
8366 hlua = hlua_gethlua(L);
8367
8368 /* If the task is not set, I'm in a start mode. */
Thierry FOURNIER37196f42015-02-16 19:34:56 +01008369 if (!hlua || !hlua->task)
8370 return 0;
8371
8372 if (nice < -1024)
8373 nice = -1024;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01008374 else if (nice > 1024)
Thierry FOURNIER37196f42015-02-16 19:34:56 +01008375 nice = 1024;
8376
8377 hlua->task->nice = nice;
8378 return 0;
8379}
8380
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08008381/* This function is used as a callback of a task. It is called by the
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008382 * HAProxy task subsystem when the task is awaked. The LUA runtime can
8383 * return an E_AGAIN signal, the emmiter of this signal must set a
8384 * signal to wake the task.
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008385 *
8386 * Task wrapper are longjmp safe because the only one Lua code
8387 * executed is the safe hlua_ctx_resume();
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008388 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01008389struct task *hlua_process_task(struct task *task, void *context, unsigned int state)
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008390{
Olivier Houchard9f6af332018-05-25 14:04:04 +02008391 struct hlua *hlua = context;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008392 enum hlua_exec status;
8393
Christopher Faulet5bc99722018-04-25 10:34:45 +02008394 if (task->thread_mask == MAX_THREADS_MASK)
8395 task_set_affinity(task, tid_bit);
8396
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008397 /* If it is the first call to the task, we must initialize the
8398 * execution timeouts.
8399 */
8400 if (!HLUA_IS_RUNNING(hlua))
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02008401 hlua->max_time = hlua_timeout_task;
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008402
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008403 /* Execute the Lua code. */
8404 status = hlua_ctx_resume(hlua, 1);
8405
8406 switch (status) {
8407 /* finished or yield */
8408 case HLUA_E_OK:
8409 hlua_ctx_destroy(hlua);
Olivier Houchard3f795f72019-04-17 22:51:06 +02008410 task_destroy(task);
Tim Duesterhuscd235c62018-04-24 13:56:01 +02008411 task = NULL;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008412 break;
8413
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01008414 case HLUA_E_AGAIN: /* co process or timeout wake me later. */
Thierry FOURNIERcb146882017-12-10 17:10:57 +01008415 notification_gc(&hlua->com);
PiBa-NLfe971b32018-05-02 22:27:14 +02008416 task->expire = hlua->wake_time;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008417 break;
8418
8419 /* finished with error. */
8420 case HLUA_E_ERRMSG:
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008421 SEND_ERR(NULL, "Lua task: %s.\n", lua_tostring(hlua->T, -1));
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008422 hlua_ctx_destroy(hlua);
Olivier Houchard3f795f72019-04-17 22:51:06 +02008423 task_destroy(task);
Emeric Brun253e53e2017-10-17 18:58:40 +02008424 task = NULL;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008425 break;
8426
8427 case HLUA_E_ERR:
8428 default:
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008429 SEND_ERR(NULL, "Lua task: unknown error.\n");
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008430 hlua_ctx_destroy(hlua);
Olivier Houchard3f795f72019-04-17 22:51:06 +02008431 task_destroy(task);
Emeric Brun253e53e2017-10-17 18:58:40 +02008432 task = NULL;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008433 break;
8434 }
Emeric Brun253e53e2017-10-17 18:58:40 +02008435 return task;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008436}
8437
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008438/* This function is an LUA binding that register LUA function to be
8439 * executed after the HAProxy configuration parsing and before the
8440 * HAProxy scheduler starts. This function expect only one LUA
8441 * argument that is a function. This function returns nothing, but
8442 * throws if an error is encountered.
8443 */
8444__LJMP static int hlua_register_init(lua_State *L)
8445{
8446 struct hlua_init_function *init;
8447 int ref;
8448
8449 MAY_LJMP(check_args(L, 1, "register_init"));
8450
8451 ref = MAY_LJMP(hlua_checkfunction(L, 1));
8452
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02008453 init = calloc(1, sizeof(*init));
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008454 if (!init)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01008455 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008456
8457 init->function_ref = ref;
Willy Tarreau2b718102021-04-21 07:32:39 +02008458 LIST_APPEND(&hlua_init_functions[hlua_state_id], &init->l);
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008459 return 0;
8460}
8461
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008462/* This functio is an LUA binding. It permits to register a task
8463 * executed in parallel of the main HAroxy activity. The task is
8464 * created and it is set in the HAProxy scheduler. It can be called
8465 * from the "init" section, "post init" or during the runtime.
8466 *
8467 * Lua prototype:
8468 *
8469 * <none> core.register_task(<function>)
8470 */
8471static int hlua_register_task(lua_State *L)
8472{
Christopher Faulet5294ec02021-04-12 12:24:47 +02008473 struct hlua *hlua = NULL;
8474 struct task *task = NULL;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008475 int ref;
Thierry Fournier021d9862020-11-28 23:42:03 +01008476 int state_id;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008477
8478 MAY_LJMP(check_args(L, 1, "register_task"));
8479
8480 ref = MAY_LJMP(hlua_checkfunction(L, 1));
8481
Thierry Fournier75fc0292020-11-28 13:18:56 +01008482 /* Get the reference state. If the reference is NULL, L is the master
8483 * state, otherwise hlua->T is.
8484 */
8485 hlua = hlua_gethlua(L);
8486 if (hlua)
Thierry Fournier021d9862020-11-28 23:42:03 +01008487 /* we are in runtime processing */
8488 state_id = hlua->state_id;
Thierry Fournier75fc0292020-11-28 13:18:56 +01008489 else
Thierry Fournier021d9862020-11-28 23:42:03 +01008490 /* we are in initialization mode */
Thierry Fournierc7492592020-11-28 23:57:24 +01008491 state_id = hlua_state_id;
Thierry Fournier75fc0292020-11-28 13:18:56 +01008492
Willy Tarreaubafbe012017-11-24 17:34:44 +01008493 hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008494 if (!hlua)
Christopher Faulet5294ec02021-04-12 12:24:47 +02008495 goto alloc_error;
Christopher Faulet1e8433f2021-03-24 15:03:01 +01008496 HLUA_INIT(hlua);
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008497
Thierry Fournier59f11be2020-11-29 00:37:41 +01008498 /* We are in the common lua state, execute the task anywhere,
8499 * otherwise, inherit the current thread identifier
8500 */
8501 if (state_id == 0)
Willy Tarreaubeeabf52021-10-01 18:23:30 +02008502 task = task_new_anywhere();
Thierry Fournier59f11be2020-11-29 00:37:41 +01008503 else
Willy Tarreaubeeabf52021-10-01 18:23:30 +02008504 task = task_new_here();
Willy Tarreaue09101e2018-10-16 17:37:12 +02008505 if (!task)
Christopher Faulet5294ec02021-04-12 12:24:47 +02008506 goto alloc_error;
Willy Tarreaue09101e2018-10-16 17:37:12 +02008507
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008508 task->context = hlua;
8509 task->process = hlua_process_task;
8510
Thierry Fournier021d9862020-11-28 23:42:03 +01008511 if (!hlua_ctx_init(hlua, state_id, task, 1))
Christopher Faulet5294ec02021-04-12 12:24:47 +02008512 goto alloc_error;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008513
8514 /* Restore the function in the stack. */
8515 lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, ref);
8516 hlua->nargs = 0;
8517
8518 /* Schedule task. */
Willy Tarreaue3957f82021-09-30 16:17:37 +02008519 task_wakeup(task, TASK_WOKEN_INIT);
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008520
8521 return 0;
Christopher Faulet5294ec02021-04-12 12:24:47 +02008522
8523 alloc_error:
8524 task_destroy(task);
8525 hlua_ctx_destroy(hlua);
8526 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
8527 return 0; /* Never reached */
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008528}
8529
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008530/* Wrapper called by HAProxy to execute an LUA converter. This wrapper
8531 * doesn't allow "yield" functions because the HAProxy engine cannot
8532 * resume converters.
8533 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02008534static int hlua_sample_conv_wrapper(const struct arg *arg_p, struct sample *smp, void *private)
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008535{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02008536 struct hlua_function *fcn = private;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02008537 struct stream *stream = smp->strm;
Thierry Fournierfd107a22016-02-19 19:57:23 +01008538 const char *error;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008539
Willy Tarreaube508f12016-03-10 11:47:01 +01008540 if (!stream)
8541 return 0;
8542
Willy Tarreau87b09662015-04-03 00:22:06 +02008543 /* In the execution wrappers linked with a stream, the
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01008544 * Lua context can be not initialized. This behavior
8545 * permits to save performances because a systematic
8546 * Lua initialization cause 5% performances loss.
8547 */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008548 if (!stream->hlua) {
Christopher Faulet1e8433f2021-03-24 15:03:01 +01008549 struct hlua *hlua;
8550
8551 hlua = pool_alloc(pool_head_hlua);
8552 if (!hlua) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008553 SEND_ERR(stream->be, "Lua converter '%s': can't initialize Lua context.\n", fcn->name);
8554 return 0;
8555 }
Christopher Faulet1e8433f2021-03-24 15:03:01 +01008556 HLUA_INIT(hlua);
8557 stream->hlua = hlua;
Thierry Fournierc7492592020-11-28 23:57:24 +01008558 if (!hlua_ctx_init(stream->hlua, fcn_ref_to_stack_id(fcn), stream->task, 0)) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008559 SEND_ERR(stream->be, "Lua converter '%s': can't initialize Lua context.\n", fcn->name);
8560 return 0;
8561 }
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01008562 }
8563
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008564 /* If it is the first run, initialize the data for the call. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008565 if (!HLUA_IS_RUNNING(stream->hlua)) {
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008566
8567 /* The following Lua calls can fail. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008568 if (!SET_SAFE_LJMP(stream->hlua)) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008569 if (lua_type(stream->hlua->T, -1) == LUA_TSTRING)
8570 error = lua_tostring(stream->hlua->T, -1);
Thierry Fournierfd107a22016-02-19 19:57:23 +01008571 else
8572 error = "critical error";
8573 SEND_ERR(stream->be, "Lua converter '%s': %s.\n", fcn->name, error);
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008574 return 0;
8575 }
8576
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008577 /* Check stack available size. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008578 if (!lua_checkstack(stream->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008579 SEND_ERR(stream->be, "Lua converter '%s': full stack.\n", fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008580 RESET_SAFE_LJMP(stream->hlua);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008581 return 0;
8582 }
8583
8584 /* Restore the function in the stack. */
Thierry Fournierc7492592020-11-28 23:57:24 +01008585 lua_rawgeti(stream->hlua->T, LUA_REGISTRYINDEX, fcn->function_ref[stream->hlua->state_id]);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008586
8587 /* convert input sample and pust-it in the stack. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008588 if (!lua_checkstack(stream->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008589 SEND_ERR(stream->be, "Lua converter '%s': full stack.\n", fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008590 RESET_SAFE_LJMP(stream->hlua);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008591 return 0;
8592 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008593 hlua_smp2lua(stream->hlua->T, smp);
8594 stream->hlua->nargs = 1;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008595
8596 /* push keywords in the stack. */
8597 if (arg_p) {
8598 for (; arg_p->type != ARGT_STOP; arg_p++) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008599 if (!lua_checkstack(stream->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008600 SEND_ERR(stream->be, "Lua converter '%s': full stack.\n", fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008601 RESET_SAFE_LJMP(stream->hlua);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008602 return 0;
8603 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008604 hlua_arg2lua(stream->hlua->T, arg_p);
8605 stream->hlua->nargs++;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008606 }
8607 }
8608
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008609 /* We must initialize the execution timeouts. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008610 stream->hlua->max_time = hlua_timeout_session;
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008611
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008612 /* At this point the execution is safe. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008613 RESET_SAFE_LJMP(stream->hlua);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008614 }
8615
8616 /* Execute the function. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008617 switch (hlua_ctx_resume(stream->hlua, 0)) {
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008618 /* finished. */
8619 case HLUA_E_OK:
Thierry FOURNIERfd80df12017-05-12 16:32:20 +02008620 /* If the stack is empty, the function fails. */
8621 if (lua_gettop(stream->hlua->T) <= 0)
8622 return 0;
8623
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008624 /* Convert the returned value in sample. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008625 hlua_lua2smp(stream->hlua->T, -1, smp);
8626 lua_pop(stream->hlua->T, 1);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008627 return 1;
8628
8629 /* yield. */
8630 case HLUA_E_AGAIN:
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008631 SEND_ERR(stream->be, "Lua converter '%s': cannot use yielded functions.\n", fcn->name);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008632 return 0;
8633
8634 /* finished with error. */
8635 case HLUA_E_ERRMSG:
8636 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008637 SEND_ERR(stream->be, "Lua converter '%s': %s.\n",
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008638 fcn->name, lua_tostring(stream->hlua->T, -1));
8639 lua_pop(stream->hlua->T, 1);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008640 return 0;
8641
Thierry Fournierd5b073c2018-05-21 19:42:47 +02008642 case HLUA_E_ETMOUT:
8643 SEND_ERR(stream->be, "Lua converter '%s': execution timeout.\n", fcn->name);
8644 return 0;
8645
8646 case HLUA_E_NOMEM:
8647 SEND_ERR(stream->be, "Lua converter '%s': out of memory error.\n", fcn->name);
8648 return 0;
8649
8650 case HLUA_E_YIELD:
8651 SEND_ERR(stream->be, "Lua converter '%s': yield functions like core.tcp() or core.sleep() are not allowed.\n", fcn->name);
8652 return 0;
8653
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008654 case HLUA_E_ERR:
8655 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008656 SEND_ERR(stream->be, "Lua converter '%s' returns an unknown error.\n", fcn->name);
Tim Duesterhus588b3142020-05-29 14:35:51 +02008657 /* fall through */
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008658
8659 default:
8660 return 0;
8661 }
8662}
8663
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008664/* Wrapper called by HAProxy to execute a sample-fetch. this wrapper
8665 * doesn't allow "yield" functions because the HAProxy engine cannot
Willy Tarreaube508f12016-03-10 11:47:01 +01008666 * resume sample-fetches. This function will be called by the sample
8667 * fetch engine to call lua-based fetch operations.
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008668 */
Thierry FOURNIER0786d052015-05-11 15:42:45 +02008669static int hlua_sample_fetch_wrapper(const struct arg *arg_p, struct sample *smp,
8670 const char *kw, void *private)
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008671{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02008672 struct hlua_function *fcn = private;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02008673 struct stream *stream = smp->strm;
Thierry Fournierfd107a22016-02-19 19:57:23 +01008674 const char *error;
Christopher Faulet8c9e6bb2021-08-06 16:29:41 +02008675 unsigned int hflags = HLUA_TXN_NOTERM | HLUA_TXN_SMP_CTX;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008676
Willy Tarreaube508f12016-03-10 11:47:01 +01008677 if (!stream)
8678 return 0;
Christopher Fauletafd8f102018-11-08 11:34:21 +01008679
Willy Tarreau87b09662015-04-03 00:22:06 +02008680 /* In the execution wrappers linked with a stream, the
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01008681 * Lua context can be not initialized. This behavior
8682 * permits to save performances because a systematic
8683 * Lua initialization cause 5% performances loss.
8684 */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008685 if (!stream->hlua) {
Christopher Faulet1e8433f2021-03-24 15:03:01 +01008686 struct hlua *hlua;
8687
8688 hlua = pool_alloc(pool_head_hlua);
8689 if (!hlua) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008690 SEND_ERR(stream->be, "Lua sample-fetch '%s': can't initialize Lua context.\n", fcn->name);
8691 return 0;
8692 }
Christopher Faulet1e8433f2021-03-24 15:03:01 +01008693 hlua->T = NULL;
8694 stream->hlua = hlua;
Thierry Fournierc7492592020-11-28 23:57:24 +01008695 if (!hlua_ctx_init(stream->hlua, fcn_ref_to_stack_id(fcn), stream->task, 0)) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008696 SEND_ERR(stream->be, "Lua sample-fetch '%s': can't initialize Lua context.\n", fcn->name);
8697 return 0;
8698 }
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01008699 }
8700
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008701 /* If it is the first run, initialize the data for the call. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008702 if (!HLUA_IS_RUNNING(stream->hlua)) {
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008703
8704 /* The following Lua calls can fail. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008705 if (!SET_SAFE_LJMP(stream->hlua)) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008706 if (lua_type(stream->hlua->T, -1) == LUA_TSTRING)
8707 error = lua_tostring(stream->hlua->T, -1);
Thierry Fournierfd107a22016-02-19 19:57:23 +01008708 else
8709 error = "critical error";
8710 SEND_ERR(smp->px, "Lua sample-fetch '%s': %s.\n", fcn->name, error);
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008711 return 0;
8712 }
8713
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008714 /* Check stack available size. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008715 if (!lua_checkstack(stream->hlua->T, 2)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008716 SEND_ERR(smp->px, "Lua sample-fetch '%s': full stack.\n", fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008717 RESET_SAFE_LJMP(stream->hlua);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008718 return 0;
8719 }
8720
8721 /* Restore the function in the stack. */
Thierry Fournierc7492592020-11-28 23:57:24 +01008722 lua_rawgeti(stream->hlua->T, LUA_REGISTRYINDEX, fcn->function_ref[stream->hlua->state_id]);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008723
8724 /* push arguments in the stack. */
Christopher Fauletbfab2dd2019-07-26 15:09:53 +02008725 if (!hlua_txn_new(stream->hlua->T, stream, smp->px, smp->opt & SMP_OPT_DIR, hflags)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008726 SEND_ERR(smp->px, "Lua sample-fetch '%s': full stack.\n", fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008727 RESET_SAFE_LJMP(stream->hlua);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008728 return 0;
8729 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008730 stream->hlua->nargs = 1;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008731
8732 /* push keywords in the stack. */
8733 for (; arg_p && arg_p->type != ARGT_STOP; arg_p++) {
8734 /* Check stack available size. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008735 if (!lua_checkstack(stream->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008736 SEND_ERR(smp->px, "Lua sample-fetch '%s': full stack.\n", fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008737 RESET_SAFE_LJMP(stream->hlua);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008738 return 0;
8739 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008740 hlua_arg2lua(stream->hlua->T, arg_p);
8741 stream->hlua->nargs++;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008742 }
8743
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008744 /* We must initialize the execution timeouts. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008745 stream->hlua->max_time = hlua_timeout_session;
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008746
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008747 /* At this point the execution is safe. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008748 RESET_SAFE_LJMP(stream->hlua);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008749 }
8750
8751 /* Execute the function. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008752 switch (hlua_ctx_resume(stream->hlua, 0)) {
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008753 /* finished. */
8754 case HLUA_E_OK:
Thierry FOURNIERfd80df12017-05-12 16:32:20 +02008755 /* If the stack is empty, the function fails. */
8756 if (lua_gettop(stream->hlua->T) <= 0)
8757 return 0;
8758
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008759 /* Convert the returned value in sample. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008760 hlua_lua2smp(stream->hlua->T, -1, smp);
8761 lua_pop(stream->hlua->T, 1);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008762
8763 /* Set the end of execution flag. */
8764 smp->flags &= ~SMP_F_MAY_CHANGE;
8765 return 1;
8766
8767 /* yield. */
8768 case HLUA_E_AGAIN:
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008769 SEND_ERR(smp->px, "Lua sample-fetch '%s': cannot use yielded functions.\n", fcn->name);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008770 return 0;
8771
8772 /* finished with error. */
8773 case HLUA_E_ERRMSG:
8774 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008775 SEND_ERR(smp->px, "Lua sample-fetch '%s': %s.\n",
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008776 fcn->name, lua_tostring(stream->hlua->T, -1));
8777 lua_pop(stream->hlua->T, 1);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008778 return 0;
8779
Thierry Fournierd5b073c2018-05-21 19:42:47 +02008780 case HLUA_E_ETMOUT:
Thierry Fournierd5b073c2018-05-21 19:42:47 +02008781 SEND_ERR(smp->px, "Lua sample-fetch '%s': execution timeout.\n", fcn->name);
8782 return 0;
8783
8784 case HLUA_E_NOMEM:
Thierry Fournierd5b073c2018-05-21 19:42:47 +02008785 SEND_ERR(smp->px, "Lua sample-fetch '%s': out of memory error.\n", fcn->name);
8786 return 0;
8787
8788 case HLUA_E_YIELD:
Thierry Fournierd5b073c2018-05-21 19:42:47 +02008789 SEND_ERR(smp->px, "Lua sample-fetch '%s': yield not allowed.\n", fcn->name);
8790 return 0;
8791
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008792 case HLUA_E_ERR:
8793 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008794 SEND_ERR(smp->px, "Lua sample-fetch '%s' returns an unknown error.\n", fcn->name);
Tim Duesterhus588b3142020-05-29 14:35:51 +02008795 /* fall through */
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008796
8797 default:
8798 return 0;
8799 }
8800}
8801
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008802/* This function is an LUA binding used for registering
8803 * "sample-conv" functions. It expects a converter name used
8804 * in the haproxy configuration file, and an LUA function.
8805 */
8806__LJMP static int hlua_register_converters(lua_State *L)
8807{
8808 struct sample_conv_kw_list *sck;
8809 const char *name;
8810 int ref;
8811 int len;
Christopher Fauletaa224302021-04-12 14:08:21 +02008812 struct hlua_function *fcn = NULL;
Thierry Fournierf67442e2020-11-28 20:41:07 +01008813 struct sample_conv *sc;
8814 struct buffer *trash;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008815
8816 MAY_LJMP(check_args(L, 2, "register_converters"));
8817
8818 /* First argument : converter name. */
8819 name = MAY_LJMP(luaL_checkstring(L, 1));
8820
8821 /* Second argument : lua function. */
8822 ref = MAY_LJMP(hlua_checkfunction(L, 2));
8823
Thierry Fournierf67442e2020-11-28 20:41:07 +01008824 /* Check if the converter is already registered */
8825 trash = get_trash_chunk();
8826 chunk_printf(trash, "lua.%s", name);
8827 sc = find_sample_conv(trash->area, trash->data);
8828 if (sc != NULL) {
Thierry Fournier59f11be2020-11-29 00:37:41 +01008829 fcn = sc->private;
8830 if (fcn->function_ref[hlua_state_id] != -1) {
8831 ha_warning("Trying to register converter 'lua.%s' more than once. "
8832 "This will become a hard error in version 2.5.\n", name);
8833 }
8834 fcn->function_ref[hlua_state_id] = ref;
8835 return 0;
Thierry Fournierf67442e2020-11-28 20:41:07 +01008836 }
8837
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008838 /* Allocate and fill the sample fetch keyword struct. */
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02008839 sck = calloc(1, sizeof(*sck) + sizeof(struct sample_conv) * 2);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008840 if (!sck)
Christopher Fauletaa224302021-04-12 14:08:21 +02008841 goto alloc_error;
Thierry Fournier62a22aa2020-11-28 21:06:35 +01008842 fcn = new_hlua_function();
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008843 if (!fcn)
Christopher Fauletaa224302021-04-12 14:08:21 +02008844 goto alloc_error;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008845
8846 /* Fill fcn. */
8847 fcn->name = strdup(name);
8848 if (!fcn->name)
Christopher Fauletaa224302021-04-12 14:08:21 +02008849 goto alloc_error;
Thierry Fournierc7492592020-11-28 23:57:24 +01008850 fcn->function_ref[hlua_state_id] = ref;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008851
8852 /* List head */
8853 sck->list.n = sck->list.p = NULL;
8854
8855 /* converter keyword. */
8856 len = strlen("lua.") + strlen(name) + 1;
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02008857 sck->kw[0].kw = calloc(1, len);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008858 if (!sck->kw[0].kw)
Christopher Fauletaa224302021-04-12 14:08:21 +02008859 goto alloc_error;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008860
8861 snprintf((char *)sck->kw[0].kw, len, "lua.%s", name);
8862 sck->kw[0].process = hlua_sample_conv_wrapper;
David Carlier0c437f42016-04-27 16:21:56 +01008863 sck->kw[0].arg_mask = ARG12(0,STR,STR,STR,STR,STR,STR,STR,STR,STR,STR,STR,STR);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008864 sck->kw[0].val_args = NULL;
8865 sck->kw[0].in_type = SMP_T_STR;
8866 sck->kw[0].out_type = SMP_T_STR;
8867 sck->kw[0].private = fcn;
8868
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008869 /* Register this new converter */
8870 sample_register_convs(sck);
8871
8872 return 0;
Christopher Fauletaa224302021-04-12 14:08:21 +02008873
8874 alloc_error:
8875 release_hlua_function(fcn);
8876 ha_free(&sck);
8877 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
8878 return 0; /* Never reached */
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008879}
8880
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08008881/* This function is an LUA binding used for registering
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008882 * "sample-fetch" functions. It expects a converter name used
8883 * in the haproxy configuration file, and an LUA function.
8884 */
8885__LJMP static int hlua_register_fetches(lua_State *L)
8886{
8887 const char *name;
8888 int ref;
8889 int len;
8890 struct sample_fetch_kw_list *sfk;
Christopher Faulet2567f182021-04-12 14:11:50 +02008891 struct hlua_function *fcn = NULL;
Thierry Fournierf67442e2020-11-28 20:41:07 +01008892 struct sample_fetch *sf;
8893 struct buffer *trash;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008894
8895 MAY_LJMP(check_args(L, 2, "register_fetches"));
8896
8897 /* First argument : sample-fetch name. */
8898 name = MAY_LJMP(luaL_checkstring(L, 1));
8899
8900 /* Second argument : lua function. */
8901 ref = MAY_LJMP(hlua_checkfunction(L, 2));
8902
Thierry Fournierf67442e2020-11-28 20:41:07 +01008903 /* Check if the sample-fetch is already registered */
8904 trash = get_trash_chunk();
8905 chunk_printf(trash, "lua.%s", name);
8906 sf = find_sample_fetch(trash->area, trash->data);
8907 if (sf != NULL) {
Thierry Fournier59f11be2020-11-29 00:37:41 +01008908 fcn = sf->private;
8909 if (fcn->function_ref[hlua_state_id] != -1) {
8910 ha_warning("Trying to register sample-fetch 'lua.%s' more than once. "
8911 "This will become a hard error in version 2.5.\n", name);
8912 }
8913 fcn->function_ref[hlua_state_id] = ref;
8914 return 0;
Thierry Fournierf67442e2020-11-28 20:41:07 +01008915 }
8916
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008917 /* Allocate and fill the sample fetch keyword struct. */
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02008918 sfk = calloc(1, sizeof(*sfk) + sizeof(struct sample_fetch) * 2);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008919 if (!sfk)
Christopher Faulet2567f182021-04-12 14:11:50 +02008920 goto alloc_error;
Thierry Fournier62a22aa2020-11-28 21:06:35 +01008921 fcn = new_hlua_function();
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008922 if (!fcn)
Christopher Faulet2567f182021-04-12 14:11:50 +02008923 goto alloc_error;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008924
8925 /* Fill fcn. */
8926 fcn->name = strdup(name);
8927 if (!fcn->name)
Christopher Faulet2567f182021-04-12 14:11:50 +02008928 goto alloc_error;
Thierry Fournierc7492592020-11-28 23:57:24 +01008929 fcn->function_ref[hlua_state_id] = ref;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008930
8931 /* List head */
8932 sfk->list.n = sfk->list.p = NULL;
8933
8934 /* sample-fetch keyword. */
8935 len = strlen("lua.") + strlen(name) + 1;
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02008936 sfk->kw[0].kw = calloc(1, len);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008937 if (!sfk->kw[0].kw)
Christopher Faulet2567f182021-04-12 14:11:50 +02008938 goto alloc_error;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008939
8940 snprintf((char *)sfk->kw[0].kw, len, "lua.%s", name);
8941 sfk->kw[0].process = hlua_sample_fetch_wrapper;
David Carlier0c437f42016-04-27 16:21:56 +01008942 sfk->kw[0].arg_mask = ARG12(0,STR,STR,STR,STR,STR,STR,STR,STR,STR,STR,STR,STR);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008943 sfk->kw[0].val_args = NULL;
8944 sfk->kw[0].out_type = SMP_T_STR;
8945 sfk->kw[0].use = SMP_USE_HTTP_ANY;
8946 sfk->kw[0].val = 0;
8947 sfk->kw[0].private = fcn;
8948
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008949 /* Register this new fetch. */
8950 sample_register_fetches(sfk);
8951
8952 return 0;
Christopher Faulet2567f182021-04-12 14:11:50 +02008953
8954 alloc_error:
8955 release_hlua_function(fcn);
8956 ha_free(&sfk);
8957 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
8958 return 0; /* Never reached */
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008959}
8960
Christopher Faulet501465d2020-02-26 14:54:16 +01008961/* This function is a lua binding to set the wake_time.
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01008962 */
Christopher Faulet501465d2020-02-26 14:54:16 +01008963__LJMP static int hlua_set_wake_time(lua_State *L)
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01008964{
Thierry Fournier4234dbd2020-11-28 13:18:23 +01008965 struct hlua *hlua;
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01008966 unsigned int delay;
8967 unsigned int wakeup_ms;
8968
Thierry Fournier4234dbd2020-11-28 13:18:23 +01008969 /* Get hlua struct, or NULL if we execute from main lua state */
8970 hlua = hlua_gethlua(L);
8971 if (!hlua) {
8972 return 0;
8973 }
8974
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01008975 MAY_LJMP(check_args(L, 1, "wake_time"));
8976
8977 delay = MAY_LJMP(luaL_checkinteger(L, 1));
8978 wakeup_ms = tick_add(now_ms, delay);
8979 hlua->wake_time = wakeup_ms;
8980 return 0;
8981}
8982
Christopher Faulet7716cdf2020-01-29 11:53:30 +01008983/* This function is a wrapper to execute each LUA function declared as an action
8984 * wrapper during the initialisation period. This function may return any
8985 * ACT_RET_* value. On error ACT_RET_CONT is returned and the action is
8986 * ignored. If the lua action yields, ACT_RET_YIELD is returned. On success, the
8987 * return value is the first element on the stack.
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01008988 */
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02008989static enum act_return hlua_action(struct act_rule *rule, struct proxy *px,
Willy Tarreau658b85b2015-09-27 10:00:49 +02008990 struct session *sess, struct stream *s, int flags)
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01008991{
8992 char **arg;
Christopher Faulet8c9e6bb2021-08-06 16:29:41 +02008993 unsigned int hflags = HLUA_TXN_ACT_CTX;
Christopher Faulet7716cdf2020-01-29 11:53:30 +01008994 int dir, act_ret = ACT_RET_CONT;
Thierry Fournierfd107a22016-02-19 19:57:23 +01008995 const char *error;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02008996
8997 switch (rule->from) {
Christopher Fauletd8f0e072020-02-25 09:45:51 +01008998 case ACT_F_TCP_REQ_CNT: dir = SMP_OPT_DIR_REQ; break;
8999 case ACT_F_TCP_RES_CNT: dir = SMP_OPT_DIR_RES; break;
9000 case ACT_F_HTTP_REQ: dir = SMP_OPT_DIR_REQ; break;
9001 case ACT_F_HTTP_RES: dir = SMP_OPT_DIR_RES; break;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02009002 default:
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02009003 SEND_ERR(px, "Lua: internal error while execute action.\n");
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009004 goto end;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02009005 }
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009006
Willy Tarreau87b09662015-04-03 00:22:06 +02009007 /* In the execution wrappers linked with a stream, the
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01009008 * Lua context can be not initialized. This behavior
9009 * permits to save performances because a systematic
9010 * Lua initialization cause 5% performances loss.
9011 */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01009012 if (!s->hlua) {
Christopher Faulet1e8433f2021-03-24 15:03:01 +01009013 struct hlua *hlua;
9014
9015 hlua = pool_alloc(pool_head_hlua);
9016 if (!hlua) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01009017 SEND_ERR(px, "Lua action '%s': can't initialize Lua context.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009018 rule->arg.hlua_rule->fcn->name);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009019 goto end;
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01009020 }
Christopher Faulet1e8433f2021-03-24 15:03:01 +01009021 HLUA_INIT(hlua);
9022 s->hlua = hlua;
Thierry Fournierc7492592020-11-28 23:57:24 +01009023 if (!hlua_ctx_init(s->hlua, fcn_ref_to_stack_id(rule->arg.hlua_rule->fcn), s->task, 0)) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01009024 SEND_ERR(px, "Lua action '%s': can't initialize Lua context.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009025 rule->arg.hlua_rule->fcn->name);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009026 goto end;
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01009027 }
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01009028 }
9029
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009030 /* If it is the first run, initialize the data for the call. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01009031 if (!HLUA_IS_RUNNING(s->hlua)) {
Thierry FOURNIERbabae282015-09-17 11:36:37 +02009032
9033 /* The following Lua calls can fail. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009034 if (!SET_SAFE_LJMP(s->hlua)) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01009035 if (lua_type(s->hlua->T, -1) == LUA_TSTRING)
9036 error = lua_tostring(s->hlua->T, -1);
Thierry Fournierfd107a22016-02-19 19:57:23 +01009037 else
9038 error = "critical error";
9039 SEND_ERR(px, "Lua function '%s': %s.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009040 rule->arg.hlua_rule->fcn->name, error);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009041 goto end;
Thierry FOURNIERbabae282015-09-17 11:36:37 +02009042 }
9043
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009044 /* Check stack available size. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01009045 if (!lua_checkstack(s->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02009046 SEND_ERR(px, "Lua function '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009047 rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009048 RESET_SAFE_LJMP(s->hlua);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009049 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009050 }
9051
9052 /* Restore the function in the stack. */
Thierry Fournierc7492592020-11-28 23:57:24 +01009053 lua_rawgeti(s->hlua->T, LUA_REGISTRYINDEX, rule->arg.hlua_rule->fcn->function_ref[s->hlua->state_id]);
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009054
Willy Tarreau87b09662015-04-03 00:22:06 +02009055 /* Create and and push object stream in the stack. */
Christopher Fauletbfab2dd2019-07-26 15:09:53 +02009056 if (!hlua_txn_new(s->hlua->T, s, px, dir, hflags)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02009057 SEND_ERR(px, "Lua function '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009058 rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009059 RESET_SAFE_LJMP(s->hlua);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009060 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009061 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01009062 s->hlua->nargs = 1;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009063
9064 /* push keywords in the stack. */
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02009065 for (arg = rule->arg.hlua_rule->args; arg && *arg; arg++) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01009066 if (!lua_checkstack(s->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02009067 SEND_ERR(px, "Lua function '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009068 rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009069 RESET_SAFE_LJMP(s->hlua);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009070 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009071 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01009072 lua_pushstring(s->hlua->T, *arg);
9073 s->hlua->nargs++;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009074 }
9075
Thierry FOURNIERbabae282015-09-17 11:36:37 +02009076 /* Now the execution is safe. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009077 RESET_SAFE_LJMP(s->hlua);
Thierry FOURNIERbabae282015-09-17 11:36:37 +02009078
Thierry FOURNIERbd413492015-03-03 16:52:26 +01009079 /* We must initialize the execution timeouts. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01009080 s->hlua->max_time = hlua_timeout_session;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009081 }
9082
9083 /* Execute the function. */
Christopher Faulet105ba6c2019-12-18 14:41:51 +01009084 switch (hlua_ctx_resume(s->hlua, !(flags & ACT_OPT_FINAL))) {
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009085 /* finished. */
9086 case HLUA_E_OK:
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009087 /* Catch the return value */
9088 if (lua_gettop(s->hlua->T) > 0)
9089 act_ret = lua_tointeger(s->hlua->T, -1);
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009090
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01009091 /* Set timeout in the required channel. */
Christopher Faulet498c4832020-07-28 11:59:58 +02009092 if (act_ret == ACT_RET_YIELD) {
9093 if (flags & ACT_OPT_FINAL)
9094 goto err_yield;
9095
Christopher Faulet8f587ea2020-07-28 12:01:55 +02009096 if (dir == SMP_OPT_DIR_REQ)
9097 s->req.analyse_exp = tick_first((tick_is_expired(s->req.analyse_exp, now_ms) ? 0 : s->req.analyse_exp),
9098 s->hlua->wake_time);
9099 else
9100 s->res.analyse_exp = tick_first((tick_is_expired(s->res.analyse_exp, now_ms) ? 0 : s->res.analyse_exp),
9101 s->hlua->wake_time);
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01009102 }
9103 goto end;
9104
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009105 /* yield. */
9106 case HLUA_E_AGAIN:
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01009107 /* Set timeout in the required channel. */
Christopher Faulet8f587ea2020-07-28 12:01:55 +02009108 if (dir == SMP_OPT_DIR_REQ)
9109 s->req.analyse_exp = tick_first((tick_is_expired(s->req.analyse_exp, now_ms) ? 0 : s->req.analyse_exp),
9110 s->hlua->wake_time);
9111 else
9112 s->res.analyse_exp = tick_first((tick_is_expired(s->res.analyse_exp, now_ms) ? 0 : s->res.analyse_exp),
9113 s->hlua->wake_time);
9114
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009115 /* Some actions can be wake up when a "write" event
9116 * is detected on a response channel. This is useful
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08009117 * only for actions targeted on the requests.
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009118 */
Christopher Faulet51fa3582019-07-26 14:54:52 +02009119 if (HLUA_IS_WAKERESWR(s->hlua))
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01009120 s->res.flags |= CF_WAKE_WRITE;
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01009121 if (HLUA_IS_WAKEREQWR(s->hlua))
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01009122 s->req.flags |= CF_WAKE_WRITE;
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009123 act_ret = ACT_RET_YIELD;
9124 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009125
9126 /* finished with error. */
9127 case HLUA_E_ERRMSG:
9128 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02009129 SEND_ERR(px, "Lua function '%s': %s.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009130 rule->arg.hlua_rule->fcn->name, lua_tostring(s->hlua->T, -1));
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01009131 lua_pop(s->hlua->T, 1);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009132 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009133
Thierry Fournierd5b073c2018-05-21 19:42:47 +02009134 case HLUA_E_ETMOUT:
Thierry Fournierad5345f2020-11-29 02:05:57 +01009135 SEND_ERR(px, "Lua function '%s': execution timeout.\n", rule->arg.hlua_rule->fcn->name);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009136 goto end;
Thierry Fournierd5b073c2018-05-21 19:42:47 +02009137
9138 case HLUA_E_NOMEM:
Thierry Fournierad5345f2020-11-29 02:05:57 +01009139 SEND_ERR(px, "Lua function '%s': out of memory error.\n", rule->arg.hlua_rule->fcn->name);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009140 goto end;
Thierry Fournierd5b073c2018-05-21 19:42:47 +02009141
9142 case HLUA_E_YIELD:
Christopher Faulet498c4832020-07-28 11:59:58 +02009143 err_yield:
9144 act_ret = ACT_RET_CONT;
Thierry Fournierd5b073c2018-05-21 19:42:47 +02009145 SEND_ERR(px, "Lua function '%s': aborting Lua processing on expired timeout.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009146 rule->arg.hlua_rule->fcn->name);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009147 goto end;
Thierry Fournierd5b073c2018-05-21 19:42:47 +02009148
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009149 case HLUA_E_ERR:
9150 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02009151 SEND_ERR(px, "Lua function '%s' return an unknown error.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009152 rule->arg.hlua_rule->fcn->name);
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009153
9154 default:
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009155 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009156 }
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009157
9158 end:
Christopher Faulet2361fd92020-07-30 10:40:58 +02009159 if (act_ret != ACT_RET_YIELD && s->hlua)
Christopher Faulet8f587ea2020-07-28 12:01:55 +02009160 s->hlua->wake_time = TICK_ETERNITY;
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009161 return act_ret;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009162}
9163
Willy Tarreau144f84a2021-03-02 16:09:26 +01009164struct task *hlua_applet_wakeup(struct task *t, void *context, unsigned int state)
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009165{
Olivier Houchard9f6af332018-05-25 14:04:04 +02009166 struct appctx *ctx = context;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009167
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009168 appctx_wakeup(ctx);
Willy Tarreaud9587412017-08-23 16:07:33 +02009169 t->expire = TICK_ETERNITY;
Willy Tarreaud1aa41f2017-07-21 16:41:56 +02009170 return t;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009171}
9172
Christopher Faulet4aa1d282022-01-13 16:01:35 +01009173static int hlua_applet_tcp_init(struct appctx *ctx)
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009174{
Christopher Faulet908628c2022-03-25 16:43:49 +01009175 struct conn_stream *cs = ctx->owner;
9176 struct stream *strm = __cs_strm(cs);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009177 struct hlua *hlua;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009178 struct task *task;
9179 char **arg;
Thierry Fournierfd107a22016-02-19 19:57:23 +01009180 const char *error;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009181
Willy Tarreaubafbe012017-11-24 17:34:44 +01009182 hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009183 if (!hlua) {
Christopher Faulet4aa1d282022-01-13 16:01:35 +01009184 SEND_ERR(strm->be, "Lua applet tcp '%s': out of memory.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009185 ctx->rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009186 return 0;
9187 }
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009188 HLUA_INIT(hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009189 ctx->ctx.hlua_apptcp.hlua = hlua;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009190 ctx->ctx.hlua_apptcp.flags = 0;
9191
9192 /* Create task used by signal to wakeup applets. */
Willy Tarreaubeeabf52021-10-01 18:23:30 +02009193 task = task_new_here();
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009194 if (!task) {
Christopher Faulet4aa1d282022-01-13 16:01:35 +01009195 SEND_ERR(strm->be, "Lua applet tcp '%s': out of memory.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009196 ctx->rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009197 return 0;
9198 }
9199 task->nice = 0;
9200 task->context = ctx;
9201 task->process = hlua_applet_wakeup;
9202 ctx->ctx.hlua_apptcp.task = task;
9203
9204 /* In the execution wrappers linked with a stream, the
9205 * Lua context can be not initialized. This behavior
9206 * permits to save performances because a systematic
9207 * Lua initialization cause 5% performances loss.
9208 */
Thierry Fournierc7492592020-11-28 23:57:24 +01009209 if (!hlua_ctx_init(hlua, fcn_ref_to_stack_id(ctx->rule->arg.hlua_rule->fcn), task, 0)) {
Christopher Faulet4aa1d282022-01-13 16:01:35 +01009210 SEND_ERR(strm->be, "Lua applet tcp '%s': can't initialize Lua context.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009211 ctx->rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009212 return 0;
9213 }
9214
9215 /* Set timeout according with the applet configuration. */
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02009216 hlua->max_time = ctx->applet->timeout;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009217
9218 /* The following Lua calls can fail. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009219 if (!SET_SAFE_LJMP(hlua)) {
Thierry Fournierfd107a22016-02-19 19:57:23 +01009220 if (lua_type(hlua->T, -1) == LUA_TSTRING)
9221 error = lua_tostring(hlua->T, -1);
9222 else
9223 error = "critical error";
Christopher Faulet4aa1d282022-01-13 16:01:35 +01009224 SEND_ERR(strm->be, "Lua applet tcp '%s': %s.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009225 ctx->rule->arg.hlua_rule->fcn->name, error);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009226 return 0;
9227 }
9228
9229 /* Check stack available size. */
9230 if (!lua_checkstack(hlua->T, 1)) {
Christopher Faulet4aa1d282022-01-13 16:01:35 +01009231 SEND_ERR(strm->be, "Lua applet tcp '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009232 ctx->rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009233 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009234 return 0;
9235 }
9236
9237 /* Restore the function in the stack. */
Thierry Fournierc7492592020-11-28 23:57:24 +01009238 lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, ctx->rule->arg.hlua_rule->fcn->function_ref[hlua->state_id]);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009239
9240 /* Create and and push object stream in the stack. */
9241 if (!hlua_applet_tcp_new(hlua->T, ctx)) {
Christopher Faulet4aa1d282022-01-13 16:01:35 +01009242 SEND_ERR(strm->be, "Lua applet tcp '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009243 ctx->rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009244 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009245 return 0;
9246 }
9247 hlua->nargs = 1;
9248
9249 /* push keywords in the stack. */
9250 for (arg = ctx->rule->arg.hlua_rule->args; arg && *arg; arg++) {
9251 if (!lua_checkstack(hlua->T, 1)) {
Christopher Faulet4aa1d282022-01-13 16:01:35 +01009252 SEND_ERR(strm->be, "Lua applet tcp '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009253 ctx->rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009254 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009255 return 0;
9256 }
9257 lua_pushstring(hlua->T, *arg);
9258 hlua->nargs++;
9259 }
9260
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009261 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009262
9263 /* Wakeup the applet ASAP. */
Christopher Fauleta0bdec32022-04-04 07:51:21 +02009264 cs_cant_get(cs);
9265 cs_rx_endp_more(cs);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009266
9267 return 1;
9268}
9269
Willy Tarreau60409db2019-08-21 14:14:50 +02009270void hlua_applet_tcp_fct(struct appctx *ctx)
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009271{
Christopher Faulet908628c2022-03-25 16:43:49 +01009272 struct conn_stream *cs = ctx->owner;
9273 struct stream *strm = __cs_strm(cs);
9274 struct channel *res = cs_ic(cs);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009275 struct act_rule *rule = ctx->rule;
9276 struct proxy *px = strm->be;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009277 struct hlua *hlua = ctx->ctx.hlua_apptcp.hlua;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009278
9279 /* The applet execution is already done. */
Olivier Houchard594c8c52018-08-28 14:41:31 +02009280 if (ctx->ctx.hlua_apptcp.flags & APPLET_DONE) {
9281 /* eat the whole request */
Christopher Faulet908628c2022-03-25 16:43:49 +01009282 co_skip(cs_oc(cs), co_data(cs_oc(cs)));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009283 return;
Olivier Houchard594c8c52018-08-28 14:41:31 +02009284 }
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009285
9286 /* If the stream is disconnect or closed, ldo nothing. */
Christopher Faulet62e75742022-03-31 09:16:34 +02009287 if (unlikely(cs->state == CS_ST_DIS || cs->state == CS_ST_CLO))
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009288 return;
9289
9290 /* Execute the function. */
9291 switch (hlua_ctx_resume(hlua, 1)) {
9292 /* finished. */
9293 case HLUA_E_OK:
9294 ctx->ctx.hlua_apptcp.flags |= APPLET_DONE;
9295
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009296 /* eat the whole request */
Christopher Faulet908628c2022-03-25 16:43:49 +01009297 co_skip(cs_oc(cs), co_data(cs_oc(cs)));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009298 res->flags |= CF_READ_NULL;
Christopher Fauletda098e62022-03-31 17:44:45 +02009299 cs_shutr(cs);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009300 return;
9301
9302 /* yield. */
9303 case HLUA_E_AGAIN:
Thierry Fournier0164f202016-02-20 17:47:43 +01009304 if (hlua->wake_time != TICK_ETERNITY)
9305 task_schedule(ctx->ctx.hlua_apptcp.task, hlua->wake_time);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009306 return;
9307
9308 /* finished with error. */
9309 case HLUA_E_ERRMSG:
9310 /* Display log. */
9311 SEND_ERR(px, "Lua applet tcp '%s': %s.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009312 rule->arg.hlua_rule->fcn->name, lua_tostring(hlua->T, -1));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009313 lua_pop(hlua->T, 1);
9314 goto error;
9315
Thierry Fournierd5b073c2018-05-21 19:42:47 +02009316 case HLUA_E_ETMOUT:
9317 SEND_ERR(px, "Lua applet tcp '%s': execution timeout.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009318 rule->arg.hlua_rule->fcn->name);
Thierry Fournierd5b073c2018-05-21 19:42:47 +02009319 goto error;
9320
9321 case HLUA_E_NOMEM:
9322 SEND_ERR(px, "Lua applet tcp '%s': out of memory error.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009323 rule->arg.hlua_rule->fcn->name);
Thierry Fournierd5b073c2018-05-21 19:42:47 +02009324 goto error;
9325
9326 case HLUA_E_YIELD: /* unexpected */
9327 SEND_ERR(px, "Lua applet tcp '%s': yield not allowed.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009328 rule->arg.hlua_rule->fcn->name);
Thierry Fournierd5b073c2018-05-21 19:42:47 +02009329 goto error;
9330
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009331 case HLUA_E_ERR:
9332 /* Display log. */
9333 SEND_ERR(px, "Lua applet tcp '%s' return an unknown error.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009334 rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009335 goto error;
9336
9337 default:
9338 goto error;
9339 }
9340
9341error:
9342
9343 /* For all other cases, just close the stream. */
Christopher Fauletda098e62022-03-31 17:44:45 +02009344 cs_shutw(cs);
9345 cs_shutr(cs);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009346 ctx->ctx.hlua_apptcp.flags |= APPLET_DONE;
9347}
9348
9349static void hlua_applet_tcp_release(struct appctx *ctx)
9350{
Olivier Houchard3f795f72019-04-17 22:51:06 +02009351 task_destroy(ctx->ctx.hlua_apptcp.task);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009352 ctx->ctx.hlua_apptcp.task = NULL;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009353 hlua_ctx_destroy(ctx->ctx.hlua_apptcp.hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009354 ctx->ctx.hlua_apptcp.hlua = NULL;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009355}
9356
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009357/* The function returns 1 if the initialisation is complete, 0 if
9358 * an errors occurs and -1 if more data are required for initializing
9359 * the applet.
9360 */
Christopher Faulet4aa1d282022-01-13 16:01:35 +01009361static int hlua_applet_http_init(struct appctx *ctx)
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009362{
Christopher Faulet908628c2022-03-25 16:43:49 +01009363 struct conn_stream *cs = ctx->owner;
9364 struct stream *strm = __cs_strm(cs);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009365 struct http_txn *txn;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009366 struct hlua *hlua;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009367 char **arg;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009368 struct task *task;
Thierry Fournierfd107a22016-02-19 19:57:23 +01009369 const char *error;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009370
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009371 txn = strm->txn;
Willy Tarreaubafbe012017-11-24 17:34:44 +01009372 hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009373 if (!hlua) {
Christopher Faulet4aa1d282022-01-13 16:01:35 +01009374 SEND_ERR(strm->be, "Lua applet http '%s': out of memory.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009375 ctx->rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009376 return 0;
9377 }
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009378 HLUA_INIT(hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009379 ctx->ctx.hlua_apphttp.hlua = hlua;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009380 ctx->ctx.hlua_apphttp.left_bytes = -1;
9381 ctx->ctx.hlua_apphttp.flags = 0;
9382
Thierry FOURNIERd93ea2b2015-12-20 19:14:52 +01009383 if (txn->req.flags & HTTP_MSGF_VER_11)
9384 ctx->ctx.hlua_apphttp.flags |= APPLET_HTTP11;
9385
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009386 /* Create task used by signal to wakeup applets. */
Willy Tarreaubeeabf52021-10-01 18:23:30 +02009387 task = task_new_here();
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009388 if (!task) {
Christopher Faulet4aa1d282022-01-13 16:01:35 +01009389 SEND_ERR(strm->be, "Lua applet http '%s': out of memory.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009390 ctx->rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009391 return 0;
9392 }
9393 task->nice = 0;
9394 task->context = ctx;
9395 task->process = hlua_applet_wakeup;
9396 ctx->ctx.hlua_apphttp.task = task;
9397
9398 /* In the execution wrappers linked with a stream, the
9399 * Lua context can be not initialized. This behavior
9400 * permits to save performances because a systematic
9401 * Lua initialization cause 5% performances loss.
9402 */
Thierry Fournierc7492592020-11-28 23:57:24 +01009403 if (!hlua_ctx_init(hlua, fcn_ref_to_stack_id(ctx->rule->arg.hlua_rule->fcn), task, 0)) {
Christopher Faulet4aa1d282022-01-13 16:01:35 +01009404 SEND_ERR(strm->be, "Lua applet http '%s': can't initialize Lua context.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009405 ctx->rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009406 return 0;
9407 }
9408
9409 /* Set timeout according with the applet configuration. */
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02009410 hlua->max_time = ctx->applet->timeout;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009411
9412 /* The following Lua calls can fail. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009413 if (!SET_SAFE_LJMP(hlua)) {
Thierry Fournierfd107a22016-02-19 19:57:23 +01009414 if (lua_type(hlua->T, -1) == LUA_TSTRING)
9415 error = lua_tostring(hlua->T, -1);
9416 else
9417 error = "critical error";
Christopher Faulet4aa1d282022-01-13 16:01:35 +01009418 SEND_ERR(strm->be, "Lua applet http '%s': %s.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009419 ctx->rule->arg.hlua_rule->fcn->name, error);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009420 return 0;
9421 }
9422
9423 /* Check stack available size. */
9424 if (!lua_checkstack(hlua->T, 1)) {
Christopher Faulet4aa1d282022-01-13 16:01:35 +01009425 SEND_ERR(strm->be, "Lua applet http '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009426 ctx->rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009427 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009428 return 0;
9429 }
9430
9431 /* Restore the function in the stack. */
Thierry Fournierc7492592020-11-28 23:57:24 +01009432 lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, ctx->rule->arg.hlua_rule->fcn->function_ref[hlua->state_id]);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009433
9434 /* Create and and push object stream in the stack. */
9435 if (!hlua_applet_http_new(hlua->T, ctx)) {
Christopher Faulet4aa1d282022-01-13 16:01:35 +01009436 SEND_ERR(strm->be, "Lua applet http '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009437 ctx->rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009438 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009439 return 0;
9440 }
9441 hlua->nargs = 1;
9442
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009443 /* push keywords in the stack. */
9444 for (arg = ctx->rule->arg.hlua_rule->args; arg && *arg; arg++) {
9445 if (!lua_checkstack(hlua->T, 1)) {
Christopher Faulet4aa1d282022-01-13 16:01:35 +01009446 SEND_ERR(strm->be, "Lua applet http '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009447 ctx->rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009448 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009449 return 0;
9450 }
9451 lua_pushstring(hlua->T, *arg);
9452 hlua->nargs++;
9453 }
9454
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009455 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009456
9457 /* Wakeup the applet when data is ready for read. */
Christopher Fauleta0bdec32022-04-04 07:51:21 +02009458 cs_cant_get(cs);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009459
9460 return 1;
9461}
9462
Willy Tarreau60409db2019-08-21 14:14:50 +02009463void hlua_applet_http_fct(struct appctx *ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009464{
Christopher Faulet908628c2022-03-25 16:43:49 +01009465 struct conn_stream *cs = ctx->owner;
9466 struct stream *strm = __cs_strm(cs);
9467 struct channel *req = cs_oc(cs);
9468 struct channel *res = cs_ic(cs);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009469 struct act_rule *rule = ctx->rule;
9470 struct proxy *px = strm->be;
9471 struct hlua *hlua = ctx->ctx.hlua_apphttp.hlua;
9472 struct htx *req_htx, *res_htx;
9473
9474 res_htx = htx_from_buf(&res->buf);
9475
9476 /* If the stream is disconnect or closed, ldo nothing. */
Christopher Faulet62e75742022-03-31 09:16:34 +02009477 if (unlikely(cs->state == CS_ST_DIS || cs->state == CS_ST_CLO))
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009478 goto out;
9479
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05009480 /* Check if the input buffer is available. */
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009481 if (!b_size(&res->buf)) {
Christopher Fauleta0bdec32022-04-04 07:51:21 +02009482 cs_rx_room_blk(cs);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009483 goto out;
9484 }
9485 /* check that the output is not closed */
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01009486 if (res->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_SHUTR))
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009487 ctx->ctx.hlua_apphttp.flags |= APPLET_DONE;
9488
9489 /* Set the currently running flag. */
9490 if (!HLUA_IS_RUNNING(hlua) &&
9491 !(ctx->ctx.hlua_apphttp.flags & APPLET_DONE)) {
Christopher Fauletbd878d22021-04-28 10:50:21 +02009492 if (!co_data(req)) {
Christopher Fauleta0bdec32022-04-04 07:51:21 +02009493 cs_cant_get(cs);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009494 goto out;
9495 }
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009496 }
9497
9498 /* Executes The applet if it is not done. */
9499 if (!(ctx->ctx.hlua_apphttp.flags & APPLET_DONE)) {
9500
9501 /* Execute the function. */
9502 switch (hlua_ctx_resume(hlua, 1)) {
9503 /* finished. */
9504 case HLUA_E_OK:
9505 ctx->ctx.hlua_apphttp.flags |= APPLET_DONE;
9506 break;
9507
9508 /* yield. */
9509 case HLUA_E_AGAIN:
9510 if (hlua->wake_time != TICK_ETERNITY)
9511 task_schedule(ctx->ctx.hlua_apphttp.task, hlua->wake_time);
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01009512 goto out;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009513
9514 /* finished with error. */
9515 case HLUA_E_ERRMSG:
9516 /* Display log. */
9517 SEND_ERR(px, "Lua applet http '%s': %s.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009518 rule->arg.hlua_rule->fcn->name, lua_tostring(hlua->T, -1));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009519 lua_pop(hlua->T, 1);
9520 goto error;
9521
9522 case HLUA_E_ETMOUT:
9523 SEND_ERR(px, "Lua applet http '%s': execution timeout.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009524 rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009525 goto error;
9526
9527 case HLUA_E_NOMEM:
9528 SEND_ERR(px, "Lua applet http '%s': out of memory error.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009529 rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009530 goto error;
9531
9532 case HLUA_E_YIELD: /* unexpected */
9533 SEND_ERR(px, "Lua applet http '%s': yield not allowed.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009534 rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009535 goto error;
9536
9537 case HLUA_E_ERR:
9538 /* Display log. */
9539 SEND_ERR(px, "Lua applet http '%s' return an unknown error.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009540 rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009541 goto error;
9542
9543 default:
9544 goto error;
9545 }
9546 }
9547
9548 if (ctx->ctx.hlua_apphttp.flags & APPLET_DONE) {
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01009549 if (ctx->ctx.hlua_apphttp.flags & APPLET_RSP_SENT)
9550 goto done;
9551
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009552 if (!(ctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT))
9553 goto error;
9554
Christopher Fauletf89af9c2022-04-07 10:07:18 +02009555 /* no more data are expected. If the response buffer is empty
9556 * for a chunked message, be sure to add something (EOT block in
9557 * this case) to have something to send. It is important to be
9558 * sure the EOM flags will be handled by the endpoint.
9559 */
9560 if (htx_is_empty(res_htx) && (strm->txn->rsp.flags & (HTTP_MSGF_XFER_LEN|HTTP_MSGF_CNT_LEN)) == HTTP_MSGF_XFER_LEN) {
9561 if (!htx_add_endof(res_htx, HTX_BLK_EOT)) {
Christopher Fauleta0bdec32022-04-04 07:51:21 +02009562 cs_rx_room_blk(cs);
Christopher Fauletf89af9c2022-04-07 10:07:18 +02009563 goto out;
9564 }
9565 channel_add_input(res, 1);
9566 }
9567
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01009568 res_htx->flags |= HTX_FL_EOM;
Christopher Faulet908628c2022-03-25 16:43:49 +01009569 cs->endp->flags |= CS_EP_EOI;
Christopher Fauletd8d27082022-03-07 15:50:54 +01009570 res->flags |= CF_EOI;
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01009571 strm->txn->status = ctx->ctx.hlua_apphttp.status;
9572 ctx->ctx.hlua_apphttp.flags |= APPLET_RSP_SENT;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009573 }
9574
9575 done:
9576 if (ctx->ctx.hlua_apphttp.flags & APPLET_DONE) {
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01009577 if (!(res->flags & CF_SHUTR)) {
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009578 res->flags |= CF_READ_NULL;
Christopher Fauletda098e62022-03-31 17:44:45 +02009579 cs_shutr(cs);
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01009580 }
9581
9582 /* eat the whole request */
9583 if (co_data(req)) {
9584 req_htx = htx_from_buf(&req->buf);
9585 co_htx_skip(req, req_htx, co_data(req));
9586 htx_to_buf(req_htx, &req->buf);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009587 }
9588 }
9589
9590 out:
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009591 htx_to_buf(res_htx, &res->buf);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009592 return;
9593
9594 error:
9595
9596 /* If we are in HTTP mode, and we are not send any
9597 * data, return a 500 server error in best effort:
9598 * if there is no room available in the buffer,
9599 * just close the connection.
9600 */
9601 if (!(ctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT)) {
Christopher Fauletf7346382019-07-17 22:02:08 +02009602 struct buffer *err = &http_err_chunks[HTTP_ERR_500];
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009603
9604 channel_erase(res);
9605 res->buf.data = b_data(err);
9606 memcpy(res->buf.area, b_head(err), b_data(err));
9607 res_htx = htx_from_buf(&res->buf);
Christopher Fauletf6cce3f2019-02-27 21:20:09 +01009608 channel_add_input(res, res_htx->data);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009609 }
9610 if (!(strm->flags & SF_ERR_MASK))
9611 strm->flags |= SF_ERR_RESOURCE;
9612 ctx->ctx.hlua_apphttp.flags |= APPLET_DONE;
9613 goto done;
9614}
9615
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009616static void hlua_applet_http_release(struct appctx *ctx)
9617{
Olivier Houchard3f795f72019-04-17 22:51:06 +02009618 task_destroy(ctx->ctx.hlua_apphttp.task);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009619 ctx->ctx.hlua_apphttp.task = NULL;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009620 hlua_ctx_destroy(ctx->ctx.hlua_apphttp.hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009621 ctx->ctx.hlua_apphttp.hlua = NULL;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009622}
9623
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02009624/* global {tcp|http}-request parser. Return ACT_RET_PRS_OK in
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05009625 * success case, else return ACT_RET_PRS_ERR.
Thierry FOURNIERbabae282015-09-17 11:36:37 +02009626 *
9627 * This function can fail with an abort() due to an Lua critical error.
9628 * We are in the configuration parsing process of HAProxy, this abort() is
9629 * tolerated.
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009630 */
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02009631static enum act_parse_ret action_register_lua(const char **args, int *cur_arg, struct proxy *px,
9632 struct act_rule *rule, char **err)
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009633{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02009634 struct hlua_function *fcn = rule->kw->private;
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009635 int i;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009636
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02009637 /* Memory for the rule. */
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02009638 rule->arg.hlua_rule = calloc(1, sizeof(*rule->arg.hlua_rule));
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02009639 if (!rule->arg.hlua_rule) {
9640 memprintf(err, "out of memory error");
Christopher Faulet528526f2021-04-12 14:37:32 +02009641 goto error;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02009642 }
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009643
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009644 /* Memory for arguments. */
Tim Duesterhuse52b6e52020-09-12 20:26:43 +02009645 rule->arg.hlua_rule->args = calloc(fcn->nargs + 1,
9646 sizeof(*rule->arg.hlua_rule->args));
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009647 if (!rule->arg.hlua_rule->args) {
9648 memprintf(err, "out of memory error");
Christopher Faulet528526f2021-04-12 14:37:32 +02009649 goto error;
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009650 }
9651
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02009652 /* Reference the Lua function and store the reference. */
Thierry Fournierad5345f2020-11-29 02:05:57 +01009653 rule->arg.hlua_rule->fcn = fcn;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02009654
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009655 /* Expect some arguments */
9656 for (i = 0; i < fcn->nargs; i++) {
Thierry FOURNIER1725c2e2019-01-06 19:38:49 +01009657 if (*args[*cur_arg] == '\0') {
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009658 memprintf(err, "expect %d arguments", fcn->nargs);
Christopher Faulet528526f2021-04-12 14:37:32 +02009659 goto error;
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009660 }
Thierry FOURNIER1725c2e2019-01-06 19:38:49 +01009661 rule->arg.hlua_rule->args[i] = strdup(args[*cur_arg]);
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009662 if (!rule->arg.hlua_rule->args[i]) {
9663 memprintf(err, "out of memory error");
Christopher Faulet528526f2021-04-12 14:37:32 +02009664 goto error;
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009665 }
9666 (*cur_arg)++;
9667 }
9668 rule->arg.hlua_rule->args[i] = NULL;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02009669
Thierry FOURNIER42148732015-09-02 17:17:33 +02009670 rule->action = ACT_CUSTOM;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02009671 rule->action_ptr = hlua_action;
Thierry FOURNIERafa80492015-08-19 09:04:15 +02009672 return ACT_RET_PRS_OK;
Christopher Faulet528526f2021-04-12 14:37:32 +02009673
9674 error:
9675 if (rule->arg.hlua_rule) {
9676 if (rule->arg.hlua_rule->args) {
9677 for (i = 0; i < fcn->nargs; i++)
9678 ha_free(&rule->arg.hlua_rule->args[i]);
9679 ha_free(&rule->arg.hlua_rule->args);
9680 }
9681 ha_free(&rule->arg.hlua_rule);
9682 }
9683 return ACT_RET_PRS_ERR;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009684}
9685
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009686static enum act_parse_ret action_register_service_http(const char **args, int *cur_arg, struct proxy *px,
9687 struct act_rule *rule, char **err)
9688{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02009689 struct hlua_function *fcn = rule->kw->private;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009690
Thierry FOURNIER718e2a72015-12-20 20:13:14 +01009691 /* HTTP applets are forbidden in tcp-request rules.
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05009692 * HTTP applet request requires everything initialized by
Thierry FOURNIER718e2a72015-12-20 20:13:14 +01009693 * "http_process_request" (analyzer flag AN_REQ_HTTP_INNER).
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05009694 * The applet will be immediately initialized, but its before
Thierry FOURNIER718e2a72015-12-20 20:13:14 +01009695 * the call of this analyzer.
9696 */
9697 if (rule->from != ACT_F_HTTP_REQ) {
9698 memprintf(err, "HTTP applets are forbidden from 'tcp-request' rulesets");
9699 return ACT_RET_PRS_ERR;
9700 }
9701
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009702 /* Memory for the rule. */
9703 rule->arg.hlua_rule = calloc(1, sizeof(*rule->arg.hlua_rule));
9704 if (!rule->arg.hlua_rule) {
9705 memprintf(err, "out of memory error");
9706 return ACT_RET_PRS_ERR;
9707 }
9708
9709 /* Reference the Lua function and store the reference. */
Thierry Fournierad5345f2020-11-29 02:05:57 +01009710 rule->arg.hlua_rule->fcn = fcn;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009711
9712 /* TODO: later accept arguments. */
9713 rule->arg.hlua_rule->args = NULL;
9714
9715 /* Add applet pointer in the rule. */
9716 rule->applet.obj_type = OBJ_TYPE_APPLET;
9717 rule->applet.name = fcn->name;
9718 rule->applet.init = hlua_applet_http_init;
9719 rule->applet.fct = hlua_applet_http_fct;
9720 rule->applet.release = hlua_applet_http_release;
9721 rule->applet.timeout = hlua_timeout_applet;
9722
9723 return ACT_RET_PRS_OK;
9724}
9725
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009726/* This function is an LUA binding used for registering
9727 * "sample-conv" functions. It expects a converter name used
9728 * in the haproxy configuration file, and an LUA function.
9729 */
9730__LJMP static int hlua_register_action(lua_State *L)
9731{
Christopher Faulet4fc9da02021-04-12 15:08:12 +02009732 struct action_kw_list *akl = NULL;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009733 const char *name;
9734 int ref;
9735 int len;
Christopher Faulet4fc9da02021-04-12 15:08:12 +02009736 struct hlua_function *fcn = NULL;
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009737 int nargs;
Thierry Fournierf67442e2020-11-28 20:41:07 +01009738 struct buffer *trash;
9739 struct action_kw *akw;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009740
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009741 /* Initialise the number of expected arguments at 0. */
9742 nargs = 0;
9743
9744 if (lua_gettop(L) < 3 || lua_gettop(L) > 4)
9745 WILL_LJMP(luaL_error(L, "'register_action' needs between 3 and 4 arguments"));
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009746
9747 /* First argument : converter name. */
9748 name = MAY_LJMP(luaL_checkstring(L, 1));
9749
9750 /* Second argument : environment. */
9751 if (lua_type(L, 2) != LUA_TTABLE)
9752 WILL_LJMP(luaL_error(L, "register_action: second argument must be a table of strings"));
9753
9754 /* Third argument : lua function. */
9755 ref = MAY_LJMP(hlua_checkfunction(L, 3));
9756
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08009757 /* Fourth argument : number of mandatory arguments expected on the configuration line. */
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009758 if (lua_gettop(L) >= 4)
9759 nargs = MAY_LJMP(luaL_checkinteger(L, 4));
9760
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08009761 /* browse the second argument as an array. */
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009762 lua_pushnil(L);
9763 while (lua_next(L, 2) != 0) {
9764 if (lua_type(L, -1) != LUA_TSTRING)
9765 WILL_LJMP(luaL_error(L, "register_action: second argument must be a table of strings"));
9766
Thierry Fournierf67442e2020-11-28 20:41:07 +01009767 /* Check if action exists */
9768 trash = get_trash_chunk();
9769 chunk_printf(trash, "lua.%s", name);
9770 if (strcmp(lua_tostring(L, -1), "tcp-req") == 0) {
9771 akw = tcp_req_cont_action(trash->area);
9772 } else if (strcmp(lua_tostring(L, -1), "tcp-res") == 0) {
9773 akw = tcp_res_cont_action(trash->area);
9774 } else if (strcmp(lua_tostring(L, -1), "http-req") == 0) {
9775 akw = action_http_req_custom(trash->area);
9776 } else if (strcmp(lua_tostring(L, -1), "http-res") == 0) {
9777 akw = action_http_res_custom(trash->area);
9778 } else {
9779 akw = NULL;
9780 }
9781 if (akw != NULL) {
Thierry Fournier59f11be2020-11-29 00:37:41 +01009782 fcn = akw->private;
9783 if (fcn->function_ref[hlua_state_id] != -1) {
9784 ha_warning("Trying to register action 'lua.%s' more than once. "
9785 "This will become a hard error in version 2.5.\n", name);
9786 }
9787 fcn->function_ref[hlua_state_id] = ref;
9788
9789 /* pop the environment string. */
9790 lua_pop(L, 1);
9791 continue;
Thierry Fournierf67442e2020-11-28 20:41:07 +01009792 }
9793
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009794 /* Check required environment. Only accepted "http" or "tcp". */
9795 /* Allocate and fill the sample fetch keyword struct. */
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02009796 akl = calloc(1, sizeof(*akl) + sizeof(struct action_kw) * 2);
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009797 if (!akl)
Christopher Faulet4fc9da02021-04-12 15:08:12 +02009798 goto alloc_error;;
Thierry Fournier62a22aa2020-11-28 21:06:35 +01009799 fcn = new_hlua_function();
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009800 if (!fcn)
Christopher Faulet4fc9da02021-04-12 15:08:12 +02009801 goto alloc_error;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009802
9803 /* Fill fcn. */
9804 fcn->name = strdup(name);
9805 if (!fcn->name)
Christopher Faulet4fc9da02021-04-12 15:08:12 +02009806 goto alloc_error;
Thierry Fournierc7492592020-11-28 23:57:24 +01009807 fcn->function_ref[hlua_state_id] = ref;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009808
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07009809 /* Set the expected number of arguments. */
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009810 fcn->nargs = nargs;
9811
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009812 /* List head */
9813 akl->list.n = akl->list.p = NULL;
9814
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009815 /* action keyword. */
9816 len = strlen("lua.") + strlen(name) + 1;
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02009817 akl->kw[0].kw = calloc(1, len);
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009818 if (!akl->kw[0].kw)
Christopher Faulet4fc9da02021-04-12 15:08:12 +02009819 goto alloc_error;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009820
9821 snprintf((char *)akl->kw[0].kw, len, "lua.%s", name);
9822
Amaury Denoyellee4a617c2021-05-06 15:33:09 +02009823 akl->kw[0].flags = 0;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009824 akl->kw[0].private = fcn;
9825 akl->kw[0].parse = action_register_lua;
9826
9827 /* select the action registering point. */
9828 if (strcmp(lua_tostring(L, -1), "tcp-req") == 0)
9829 tcp_req_cont_keywords_register(akl);
9830 else if (strcmp(lua_tostring(L, -1), "tcp-res") == 0)
9831 tcp_res_cont_keywords_register(akl);
9832 else if (strcmp(lua_tostring(L, -1), "http-req") == 0)
9833 http_req_keywords_register(akl);
9834 else if (strcmp(lua_tostring(L, -1), "http-res") == 0)
9835 http_res_keywords_register(akl);
Christopher Faulet4fc9da02021-04-12 15:08:12 +02009836 else {
9837 release_hlua_function(fcn);
9838 if (akl)
9839 ha_free((char **)&(akl->kw[0].kw));
9840 ha_free(&akl);
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01009841 WILL_LJMP(luaL_error(L, "Lua action environment '%s' is unknown. "
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009842 "'tcp-req', 'tcp-res', 'http-req' or 'http-res' "
9843 "are expected.", lua_tostring(L, -1)));
Christopher Faulet4fc9da02021-04-12 15:08:12 +02009844 }
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009845
9846 /* pop the environment string. */
9847 lua_pop(L, 1);
Christopher Faulet4fc9da02021-04-12 15:08:12 +02009848
9849 /* reset for next loop */
9850 akl = NULL;
9851 fcn = NULL;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009852 }
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009853 return ACT_RET_PRS_OK;
Christopher Faulet4fc9da02021-04-12 15:08:12 +02009854
9855 alloc_error:
9856 release_hlua_function(fcn);
9857 ha_free(&akl);
9858 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
9859 return 0; /* Never reached */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009860}
9861
9862static enum act_parse_ret action_register_service_tcp(const char **args, int *cur_arg, struct proxy *px,
9863 struct act_rule *rule, char **err)
9864{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02009865 struct hlua_function *fcn = rule->kw->private;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009866
Christopher Faulet280f85b2019-07-15 15:02:04 +02009867 if (px->mode == PR_MODE_HTTP) {
9868 memprintf(err, "Lua TCP services cannot be used on HTTP proxies");
Christopher Fauletafd8f102018-11-08 11:34:21 +01009869 return ACT_RET_PRS_ERR;
9870 }
9871
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009872 /* Memory for the rule. */
9873 rule->arg.hlua_rule = calloc(1, sizeof(*rule->arg.hlua_rule));
9874 if (!rule->arg.hlua_rule) {
9875 memprintf(err, "out of memory error");
9876 return ACT_RET_PRS_ERR;
9877 }
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009878
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009879 /* Reference the Lua function and store the reference. */
Thierry Fournierad5345f2020-11-29 02:05:57 +01009880 rule->arg.hlua_rule->fcn = fcn;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009881
9882 /* TODO: later accept arguments. */
9883 rule->arg.hlua_rule->args = NULL;
9884
9885 /* Add applet pointer in the rule. */
9886 rule->applet.obj_type = OBJ_TYPE_APPLET;
9887 rule->applet.name = fcn->name;
9888 rule->applet.init = hlua_applet_tcp_init;
9889 rule->applet.fct = hlua_applet_tcp_fct;
9890 rule->applet.release = hlua_applet_tcp_release;
9891 rule->applet.timeout = hlua_timeout_applet;
9892
9893 return 0;
9894}
9895
9896/* This function is an LUA binding used for registering
9897 * "sample-conv" functions. It expects a converter name used
9898 * in the haproxy configuration file, and an LUA function.
9899 */
9900__LJMP static int hlua_register_service(lua_State *L)
9901{
9902 struct action_kw_list *akl;
9903 const char *name;
9904 const char *env;
9905 int ref;
9906 int len;
Christopher Faulet5c028d72021-04-12 15:11:44 +02009907 struct hlua_function *fcn = NULL;
Thierry Fournierf67442e2020-11-28 20:41:07 +01009908 struct buffer *trash;
9909 struct action_kw *akw;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009910
9911 MAY_LJMP(check_args(L, 3, "register_service"));
9912
9913 /* First argument : converter name. */
9914 name = MAY_LJMP(luaL_checkstring(L, 1));
9915
9916 /* Second argument : environment. */
9917 env = MAY_LJMP(luaL_checkstring(L, 2));
9918
9919 /* Third argument : lua function. */
9920 ref = MAY_LJMP(hlua_checkfunction(L, 3));
9921
Thierry Fournierf67442e2020-11-28 20:41:07 +01009922 /* Check for service already registered */
9923 trash = get_trash_chunk();
9924 chunk_printf(trash, "lua.%s", name);
9925 akw = service_find(trash->area);
9926 if (akw != NULL) {
Thierry Fournier59f11be2020-11-29 00:37:41 +01009927 fcn = akw->private;
9928 if (fcn->function_ref[hlua_state_id] != -1) {
9929 ha_warning("Trying to register service 'lua.%s' more than once. "
9930 "This will become a hard error in version 2.5.\n", name);
9931 }
9932 fcn->function_ref[hlua_state_id] = ref;
9933 return 0;
Thierry Fournierf67442e2020-11-28 20:41:07 +01009934 }
9935
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009936 /* Allocate and fill the sample fetch keyword struct. */
9937 akl = calloc(1, sizeof(*akl) + sizeof(struct action_kw) * 2);
9938 if (!akl)
Christopher Faulet5c028d72021-04-12 15:11:44 +02009939 goto alloc_error;
Thierry Fournier62a22aa2020-11-28 21:06:35 +01009940 fcn = new_hlua_function();
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009941 if (!fcn)
Christopher Faulet5c028d72021-04-12 15:11:44 +02009942 goto alloc_error;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009943
9944 /* Fill fcn. */
9945 len = strlen("<lua.>") + strlen(name) + 1;
9946 fcn->name = calloc(1, len);
9947 if (!fcn->name)
Christopher Faulet5c028d72021-04-12 15:11:44 +02009948 goto alloc_error;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009949 snprintf((char *)fcn->name, len, "<lua.%s>", name);
Thierry Fournierc7492592020-11-28 23:57:24 +01009950 fcn->function_ref[hlua_state_id] = ref;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009951
9952 /* List head */
9953 akl->list.n = akl->list.p = NULL;
9954
9955 /* converter keyword. */
9956 len = strlen("lua.") + strlen(name) + 1;
9957 akl->kw[0].kw = calloc(1, len);
9958 if (!akl->kw[0].kw)
Christopher Faulet5c028d72021-04-12 15:11:44 +02009959 goto alloc_error;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009960
9961 snprintf((char *)akl->kw[0].kw, len, "lua.%s", name);
9962
Thierry FOURNIER / OZON.IO02564fd2016-11-12 11:07:05 +01009963 /* Check required environment. Only accepted "http" or "tcp". */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009964 if (strcmp(env, "tcp") == 0)
9965 akl->kw[0].parse = action_register_service_tcp;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009966 else if (strcmp(env, "http") == 0)
9967 akl->kw[0].parse = action_register_service_http;
Christopher Faulet5c028d72021-04-12 15:11:44 +02009968 else {
9969 release_hlua_function(fcn);
9970 if (akl)
9971 ha_free((char **)&(akl->kw[0].kw));
9972 ha_free(&akl);
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01009973 WILL_LJMP(luaL_error(L, "Lua service environment '%s' is unknown. "
Eric Salamafe7456f2017-12-21 14:30:07 +01009974 "'tcp' or 'http' are expected.", env));
Christopher Faulet5c028d72021-04-12 15:11:44 +02009975 }
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009976
Amaury Denoyellee4a617c2021-05-06 15:33:09 +02009977 akl->kw[0].flags = 0;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009978 akl->kw[0].private = fcn;
9979
9980 /* End of array. */
9981 memset(&akl->kw[1], 0, sizeof(*akl->kw));
9982
9983 /* Register this new converter */
9984 service_keywords_register(akl);
9985
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009986 return 0;
Christopher Faulet5c028d72021-04-12 15:11:44 +02009987
9988 alloc_error:
9989 release_hlua_function(fcn);
9990 ha_free(&akl);
9991 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
9992 return 0; /* Never reached */
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009993}
9994
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01009995/* This function initialises Lua cli handler. It copies the
9996 * arguments in the Lua stack and create channel IO objects.
9997 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02009998static int hlua_cli_parse_fct(char **args, char *payload, struct appctx *appctx, void *private)
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01009999{
10000 struct hlua *hlua;
10001 struct hlua_function *fcn;
10002 int i;
10003 const char *error;
10004
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010005 fcn = private;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +010010006 appctx->ctx.hlua_cli.fcn = private;
10007
Willy Tarreaubafbe012017-11-24 17:34:44 +010010008 hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +010010009 if (!hlua) {
10010 SEND_ERR(NULL, "Lua cli '%s': out of memory.\n", fcn->name);
Thierry FOURNIER1be34152016-12-17 12:09:51 +010010011 return 1;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +010010012 }
10013 HLUA_INIT(hlua);
10014 appctx->ctx.hlua_cli.hlua = hlua;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010015
10016 /* Create task used by signal to wakeup applets.
Ilya Shipitsind4259502020-04-08 01:07:56 +050010017 * We use the same wakeup function than the Lua applet_tcp and
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010018 * applet_http. It is absolutely compatible.
10019 */
Willy Tarreaubeeabf52021-10-01 18:23:30 +020010020 appctx->ctx.hlua_cli.task = task_new_here();
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010021 if (!appctx->ctx.hlua_cli.task) {
Thierry FOURNIERffbf5692016-12-16 11:14:06 +010010022 SEND_ERR(NULL, "Lua cli '%s': out of memory.\n", fcn->name);
Thierry FOURNIER1be34152016-12-17 12:09:51 +010010023 goto error;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010024 }
10025 appctx->ctx.hlua_cli.task->nice = 0;
10026 appctx->ctx.hlua_cli.task->context = appctx;
10027 appctx->ctx.hlua_cli.task->process = hlua_applet_wakeup;
10028
10029 /* Initialises the Lua context */
Thierry Fournierc7492592020-11-28 23:57:24 +010010030 if (!hlua_ctx_init(hlua, fcn_ref_to_stack_id(fcn), appctx->ctx.hlua_cli.task, 0)) {
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010031 SEND_ERR(NULL, "Lua cli '%s': can't initialize Lua context.\n", fcn->name);
Thierry FOURNIER1be34152016-12-17 12:09:51 +010010032 goto error;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010033 }
10034
10035 /* The following Lua calls can fail. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +010010036 if (!SET_SAFE_LJMP(hlua)) {
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010037 if (lua_type(hlua->T, -1) == LUA_TSTRING)
10038 error = lua_tostring(hlua->T, -1);
10039 else
10040 error = "critical error";
10041 SEND_ERR(NULL, "Lua cli '%s': %s.\n", fcn->name, error);
10042 goto error;
10043 }
10044
10045 /* Check stack available size. */
10046 if (!lua_checkstack(hlua->T, 2)) {
10047 SEND_ERR(NULL, "Lua cli '%s': full stack.\n", fcn->name);
10048 goto error;
10049 }
10050
10051 /* Restore the function in the stack. */
Thierry Fournierc7492592020-11-28 23:57:24 +010010052 lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, fcn->function_ref[hlua->state_id]);
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010053
10054 /* Once the arguments parsed, the CLI is like an AppletTCP,
10055 * so push AppletTCP in the stack.
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010056 */
10057 if (!hlua_applet_tcp_new(hlua->T, appctx)) {
10058 SEND_ERR(NULL, "Lua cli '%s': full stack.\n", fcn->name);
10059 goto error;
10060 }
10061 hlua->nargs = 1;
10062
10063 /* push keywords in the stack. */
10064 for (i = 0; *args[i]; i++) {
10065 /* Check stack available size. */
10066 if (!lua_checkstack(hlua->T, 1)) {
10067 SEND_ERR(NULL, "Lua cli '%s': full stack.\n", fcn->name);
10068 goto error;
10069 }
10070 lua_pushstring(hlua->T, args[i]);
10071 hlua->nargs++;
10072 }
10073
10074 /* We must initialize the execution timeouts. */
10075 hlua->max_time = hlua_timeout_session;
10076
10077 /* At this point the execution is safe. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +010010078 RESET_SAFE_LJMP(hlua);
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010079
10080 /* It's ok */
10081 return 0;
10082
10083 /* It's not ok. */
10084error:
Thierry Fournier7cbe5042020-11-28 17:02:21 +010010085 RESET_SAFE_LJMP(hlua);
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010086 hlua_ctx_destroy(hlua);
Thierry FOURNIER1be34152016-12-17 12:09:51 +010010087 appctx->ctx.hlua_cli.hlua = NULL;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010088 return 1;
10089}
10090
10091static int hlua_cli_io_handler_fct(struct appctx *appctx)
10092{
10093 struct hlua *hlua;
Christopher Faulet908628c2022-03-25 16:43:49 +010010094 struct conn_stream *cs;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010095 struct hlua_function *fcn;
10096
Thierry FOURNIERebed6e92016-12-16 11:54:07 +010010097 hlua = appctx->ctx.hlua_cli.hlua;
Christopher Faulet908628c2022-03-25 16:43:49 +010010098 cs = appctx->owner;
Willy Tarreau8ae4f752016-12-14 15:41:45 +010010099 fcn = appctx->ctx.hlua_cli.fcn;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010100
10101 /* If the stream is disconnect or closed, ldo nothing. */
Christopher Faulet62e75742022-03-31 09:16:34 +020010102 if (unlikely(cs->state == CS_ST_DIS || cs->state == CS_ST_CLO))
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010103 return 1;
10104
10105 /* Execute the function. */
10106 switch (hlua_ctx_resume(hlua, 1)) {
10107
10108 /* finished. */
10109 case HLUA_E_OK:
10110 return 1;
10111
10112 /* yield. */
10113 case HLUA_E_AGAIN:
10114 /* We want write. */
10115 if (HLUA_IS_WAKERESWR(hlua))
Christopher Fauleta0bdec32022-04-04 07:51:21 +020010116 cs_rx_room_blk(cs);
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010117 /* Set the timeout. */
10118 if (hlua->wake_time != TICK_ETERNITY)
10119 task_schedule(hlua->task, hlua->wake_time);
10120 return 0;
10121
10122 /* finished with error. */
10123 case HLUA_E_ERRMSG:
10124 /* Display log. */
10125 SEND_ERR(NULL, "Lua cli '%s': %s.\n",
10126 fcn->name, lua_tostring(hlua->T, -1));
10127 lua_pop(hlua->T, 1);
10128 return 1;
10129
Thierry Fournierd5b073c2018-05-21 19:42:47 +020010130 case HLUA_E_ETMOUT:
10131 SEND_ERR(NULL, "Lua converter '%s': execution timeout.\n",
10132 fcn->name);
10133 return 1;
10134
10135 case HLUA_E_NOMEM:
10136 SEND_ERR(NULL, "Lua converter '%s': out of memory error.\n",
10137 fcn->name);
10138 return 1;
10139
10140 case HLUA_E_YIELD: /* unexpected */
10141 SEND_ERR(NULL, "Lua converter '%s': yield not allowed.\n",
10142 fcn->name);
10143 return 1;
10144
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010145 case HLUA_E_ERR:
10146 /* Display log. */
10147 SEND_ERR(NULL, "Lua cli '%s' return an unknown error.\n",
10148 fcn->name);
10149 return 1;
10150
10151 default:
10152 return 1;
10153 }
10154
10155 return 1;
10156}
10157
10158static void hlua_cli_io_release_fct(struct appctx *appctx)
10159{
Thierry FOURNIERebed6e92016-12-16 11:54:07 +010010160 hlua_ctx_destroy(appctx->ctx.hlua_cli.hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +010010161 appctx->ctx.hlua_cli.hlua = NULL;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010162}
10163
10164/* This function is an LUA binding used for registering
10165 * new keywords in the cli. It expects a list of keywords
10166 * which are the "path". It is limited to 5 keywords. A
10167 * description of the command, a function to be executed
10168 * for the parsing and a function for io handlers.
10169 */
10170__LJMP static int hlua_register_cli(lua_State *L)
10171{
10172 struct cli_kw_list *cli_kws;
10173 const char *message;
10174 int ref_io;
10175 int len;
Christopher Faulet3a9a12b2021-04-12 15:31:29 +020010176 struct hlua_function *fcn = NULL;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010177 int index;
10178 int i;
Thierry Fournierf67442e2020-11-28 20:41:07 +010010179 struct buffer *trash;
10180 const char *kw[5];
10181 struct cli_kw *cli_kw;
Christopher Faulet3a9a12b2021-04-12 15:31:29 +020010182 const char *errmsg;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010183
10184 MAY_LJMP(check_args(L, 3, "register_cli"));
10185
10186 /* First argument : an array of maximum 5 keywords. */
10187 if (!lua_istable(L, 1))
10188 WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table"));
10189
10190 /* Second argument : string with contextual message. */
10191 message = MAY_LJMP(luaL_checkstring(L, 2));
10192
10193 /* Third and fourth argument : lua function. */
10194 ref_io = MAY_LJMP(hlua_checkfunction(L, 3));
10195
Thierry Fournierf67442e2020-11-28 20:41:07 +010010196 /* Check for CLI service already registered */
10197 trash = get_trash_chunk();
10198 index = 0;
10199 lua_pushnil(L);
10200 memset(kw, 0, sizeof(kw));
10201 while (lua_next(L, 1) != 0) {
10202 if (index >= CLI_PREFIX_KW_NB)
10203 WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table with a maximum of 5 entries"));
10204 if (lua_type(L, -1) != LUA_TSTRING)
10205 WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table filled with strings"));
10206 kw[index] = lua_tostring(L, -1);
10207 if (index == 0)
10208 chunk_printf(trash, "%s", kw[index]);
10209 else
10210 chunk_appendf(trash, " %s", kw[index]);
10211 index++;
10212 lua_pop(L, 1);
10213 }
10214 cli_kw = cli_find_kw_exact((char **)kw);
10215 if (cli_kw != NULL) {
Thierry Fournier59f11be2020-11-29 00:37:41 +010010216 fcn = cli_kw->private;
10217 if (fcn->function_ref[hlua_state_id] != -1) {
10218 ha_warning("Trying to register CLI keyword 'lua.%s' more than once. "
10219 "This will become a hard error in version 2.5.\n", trash->area);
10220 }
10221 fcn->function_ref[hlua_state_id] = ref_io;
10222 return 0;
Thierry Fournierf67442e2020-11-28 20:41:07 +010010223 }
10224
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010225 /* Allocate and fill the sample fetch keyword struct. */
10226 cli_kws = calloc(1, sizeof(*cli_kws) + sizeof(struct cli_kw) * 2);
Christopher Faulet3a9a12b2021-04-12 15:31:29 +020010227 if (!cli_kws) {
10228 errmsg = "Lua out of memory error.";
10229 goto error;
10230 }
Thierry Fournier62a22aa2020-11-28 21:06:35 +010010231 fcn = new_hlua_function();
Christopher Faulet3a9a12b2021-04-12 15:31:29 +020010232 if (!fcn) {
10233 errmsg = "Lua out of memory error.";
10234 goto error;
10235 }
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010236
10237 /* Fill path. */
10238 index = 0;
10239 lua_pushnil(L);
10240 while(lua_next(L, 1) != 0) {
Christopher Faulet3a9a12b2021-04-12 15:31:29 +020010241 if (index >= 5) {
10242 errmsg = "1st argument must be a table with a maximum of 5 entries";
10243 goto error;
10244 }
10245 if (lua_type(L, -1) != LUA_TSTRING) {
10246 errmsg = "1st argument must be a table filled with strings";
10247 goto error;
10248 }
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010249 cli_kws->kw[0].str_kw[index] = strdup(lua_tostring(L, -1));
Christopher Faulet3a9a12b2021-04-12 15:31:29 +020010250 if (!cli_kws->kw[0].str_kw[index]) {
10251 errmsg = "Lua out of memory error.";
10252 goto error;
10253 }
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010254 index++;
10255 lua_pop(L, 1);
10256 }
10257
10258 /* Copy help message. */
10259 cli_kws->kw[0].usage = strdup(message);
Christopher Faulet3a9a12b2021-04-12 15:31:29 +020010260 if (!cli_kws->kw[0].usage) {
10261 errmsg = "Lua out of memory error.";
10262 goto error;
10263 }
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010264
10265 /* Fill fcn io handler. */
10266 len = strlen("<lua.cli>") + 1;
10267 for (i = 0; i < index; i++)
10268 len += strlen(cli_kws->kw[0].str_kw[i]) + 1;
10269 fcn->name = calloc(1, len);
Christopher Faulet3a9a12b2021-04-12 15:31:29 +020010270 if (!fcn->name) {
10271 errmsg = "Lua out of memory error.";
10272 goto error;
10273 }
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010274 strncat((char *)fcn->name, "<lua.cli", len);
10275 for (i = 0; i < index; i++) {
10276 strncat((char *)fcn->name, ".", len);
10277 strncat((char *)fcn->name, cli_kws->kw[0].str_kw[i], len);
10278 }
10279 strncat((char *)fcn->name, ">", len);
Thierry Fournierc7492592020-11-28 23:57:24 +010010280 fcn->function_ref[hlua_state_id] = ref_io;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010281
10282 /* Fill last entries. */
10283 cli_kws->kw[0].private = fcn;
10284 cli_kws->kw[0].parse = hlua_cli_parse_fct;
10285 cli_kws->kw[0].io_handler = hlua_cli_io_handler_fct;
10286 cli_kws->kw[0].io_release = hlua_cli_io_release_fct;
10287
10288 /* Register this new converter */
10289 cli_register_kw(cli_kws);
10290
10291 return 0;
Christopher Faulet3a9a12b2021-04-12 15:31:29 +020010292
10293 error:
10294 release_hlua_function(fcn);
10295 if (cli_kws) {
10296 for (i = 0; i < index; i++)
10297 ha_free((char **)&(cli_kws->kw[0].str_kw[i]));
10298 ha_free((char **)&(cli_kws->kw[0].usage));
10299 }
10300 ha_free(&cli_kws);
10301 WILL_LJMP(luaL_error(L, errmsg));
10302 return 0; /* Never reached */
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010303}
10304
Christopher Faulet69c581a2021-05-31 08:54:04 +020010305static int hlua_filter_init_per_thread(struct proxy *px, struct flt_conf *fconf)
10306{
10307 struct hlua_flt_config *conf = fconf->conf;
10308 lua_State *L;
10309 int error, pos, state_id, flt_ref;
10310
10311 state_id = reg_flt_to_stack_id(conf->reg);
10312 L = hlua_states[state_id];
10313 pos = lua_gettop(L);
10314
10315 /* The filter parsing function */
10316 lua_rawgeti(L, LUA_REGISTRYINDEX, conf->reg->fun_ref[state_id]);
10317
10318 /* Push the filter class on the stack and resolve all callbacks */
10319 lua_rawgeti(L, LUA_REGISTRYINDEX, conf->reg->flt_ref[state_id]);
10320
10321 /* Duplicate the filter class so each filter will have its own copy */
10322 lua_newtable(L);
10323 lua_pushnil(L);
10324
10325 while (lua_next(L, pos+2)) {
10326 lua_pushvalue(L, -2);
10327 lua_insert(L, -2);
10328 lua_settable(L, -4);
10329 }
10330 flt_ref = luaL_ref(L, LUA_REGISTRYINDEX);
10331
10332 /* Remove the original lua filter class from the stack */
10333 lua_pop(L, 1);
10334
10335 /* Push the copy on the stack */
10336 lua_rawgeti(L, LUA_REGISTRYINDEX, flt_ref);
10337
10338 /* extra args are pushed in a table */
10339 lua_newtable(L);
10340 for (pos = 0; conf->args[pos]; pos++) {
10341 /* Check stack available size. */
10342 if (!lua_checkstack(L, 1)) {
10343 ha_alert("Lua filter '%s' : Lua error : full stack.", conf->reg->name);
10344 goto error;
10345 }
10346 lua_pushstring(L, conf->args[pos]);
10347 lua_rawseti(L, -2, lua_rawlen(L, -2) + 1);
10348 }
10349
10350 error = lua_pcall(L, 2, LUA_MULTRET, 0);
10351 switch (error) {
10352 case LUA_OK:
10353 /* replace the filter ref */
10354 conf->ref[state_id] = flt_ref;
10355 break;
10356 case LUA_ERRRUN:
10357 ha_alert("Lua filter '%s' : runtime error : %s", conf->reg->name, lua_tostring(L, -1));
10358 goto error;
10359 case LUA_ERRMEM:
10360 ha_alert("Lua filter '%s' : out of memory error", conf->reg->name);
10361 goto error;
10362 case LUA_ERRERR:
10363 ha_alert("Lua filter '%s' : message handler error : %s", conf->reg->name, lua_tostring(L, -1));
10364 goto error;
10365#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM <= 503
10366 case LUA_ERRGCMM:
10367 ha_alert("Lua filter '%s' : garbage collector error : %s", conf->reg->name, lua_tostring(L, -1));
10368 goto error;
10369#endif
10370 default:
Ilya Shipitsinff0f2782021-08-22 22:18:07 +050010371 ha_alert("Lua filter '%s' : unknown error : %s", conf->reg->name, lua_tostring(L, -1));
Christopher Faulet69c581a2021-05-31 08:54:04 +020010372 goto error;
10373 }
10374
10375 lua_settop(L, 0);
10376 return 0;
10377
10378 error:
10379 lua_settop(L, 0);
10380 return -1;
10381}
10382
10383static void hlua_filter_deinit_per_thread(struct proxy *px, struct flt_conf *fconf)
10384{
10385 struct hlua_flt_config *conf = fconf->conf;
10386 lua_State *L;
10387 int state_id;
10388
10389 if (!conf)
10390 return;
10391
10392 state_id = reg_flt_to_stack_id(conf->reg);
10393 L = hlua_states[state_id];
10394 luaL_unref(L, LUA_REGISTRYINDEX, conf->ref[state_id]);
10395}
10396
10397static int hlua_filter_init(struct proxy *px, struct flt_conf *fconf)
10398{
10399 struct hlua_flt_config *conf = fconf->conf;
10400 int state_id = reg_flt_to_stack_id(conf->reg);
10401
10402 /* Rely on per-thread init for global scripts */
10403 if (!state_id)
10404 return hlua_filter_init_per_thread(px, fconf);
10405 return 0;
10406}
10407
10408static void hlua_filter_deinit(struct proxy *px, struct flt_conf *fconf)
10409{
10410
10411 if (fconf->conf) {
10412 struct hlua_flt_config *conf = fconf->conf;
10413 int state_id = reg_flt_to_stack_id(conf->reg);
10414 int pos;
10415
10416 /* Rely on per-thread deinit for global scripts */
10417 if (!state_id)
10418 hlua_filter_deinit_per_thread(px, fconf);
10419
10420 for (pos = 0; conf->args[pos]; pos++)
10421 free(conf->args[pos]);
10422 free(conf->args);
10423 }
10424 ha_free(&fconf->conf);
10425 ha_free((char **)&fconf->id);
10426 ha_free(&fconf->ops);
10427}
10428
10429static int hlua_filter_new(struct stream *s, struct filter *filter)
10430{
10431 struct hlua_flt_config *conf = FLT_CONF(filter);
10432 struct hlua_flt_ctx *flt_ctx = NULL;
10433 int ret = 1;
10434
10435 /* In the execution wrappers linked with a stream, the
10436 * Lua context can be not initialized. This behavior
10437 * permits to save performances because a systematic
10438 * Lua initialization cause 5% performances loss.
10439 */
10440 if (!s->hlua) {
10441 struct hlua *hlua;
10442
10443 hlua = pool_alloc(pool_head_hlua);
10444 if (!hlua) {
10445 SEND_ERR(s->be, "Lua filter '%s': can't initialize Lua context.\n",
10446 conf->reg->name);
10447 ret = 0;
10448 goto end;
10449 }
10450 HLUA_INIT(hlua);
10451 s->hlua = hlua;
10452 if (!hlua_ctx_init(s->hlua, reg_flt_to_stack_id(conf->reg), s->task, 0)) {
10453 SEND_ERR(s->be, "Lua filter '%s': can't initialize Lua context.\n",
10454 conf->reg->name);
10455 ret = 0;
10456 goto end;
10457 }
10458 }
10459
10460 flt_ctx = pool_zalloc(pool_head_hlua_flt_ctx);
10461 if (!flt_ctx) {
10462 SEND_ERR(s->be, "Lua filter '%s': can't initialize filter Lua context.\n",
10463 conf->reg->name);
10464 ret = 0;
10465 goto end;
10466 }
10467 flt_ctx->hlua[0] = pool_alloc(pool_head_hlua);
10468 flt_ctx->hlua[1] = pool_alloc(pool_head_hlua);
10469 if (!flt_ctx->hlua[0] || !flt_ctx->hlua[1]) {
10470 SEND_ERR(s->be, "Lua filter '%s': can't initialize filter Lua context.\n",
10471 conf->reg->name);
10472 ret = 0;
10473 goto end;
10474 }
10475 HLUA_INIT(flt_ctx->hlua[0]);
10476 HLUA_INIT(flt_ctx->hlua[1]);
10477 if (!hlua_ctx_init(flt_ctx->hlua[0], reg_flt_to_stack_id(conf->reg), s->task, 0) ||
10478 !hlua_ctx_init(flt_ctx->hlua[1], reg_flt_to_stack_id(conf->reg), s->task, 0)) {
10479 SEND_ERR(s->be, "Lua filter '%s': can't initialize filter Lua context.\n",
10480 conf->reg->name);
10481 ret = 0;
10482 goto end;
10483 }
10484
10485 if (!HLUA_IS_RUNNING(s->hlua)) {
10486 /* The following Lua calls can fail. */
10487 if (!SET_SAFE_LJMP(s->hlua)) {
10488 const char *error;
10489
10490 if (lua_type(s->hlua->T, -1) == LUA_TSTRING)
10491 error = lua_tostring(s->hlua->T, -1);
10492 else
10493 error = "critical error";
10494 SEND_ERR(s->be, "Lua filter '%s': %s.\n", conf->reg->name, error);
10495 ret = 0;
10496 goto end;
10497 }
10498
10499 /* Check stack size. */
10500 if (!lua_checkstack(s->hlua->T, 1)) {
10501 SEND_ERR(s->be, "Lua filter '%s': full stack.\n", conf->reg->name);
Tim Duesterhus22817382021-09-11 23:17:25 +020010502 RESET_SAFE_LJMP(s->hlua);
Christopher Faulet69c581a2021-05-31 08:54:04 +020010503 ret = 0;
10504 goto end;
10505 }
10506
10507 lua_rawgeti(s->hlua->T, LUA_REGISTRYINDEX, conf->ref[s->hlua->state_id]);
10508 if (lua_getfield(s->hlua->T, -1, "new") != LUA_TFUNCTION) {
10509 SEND_ERR(s->be, "Lua filter '%s': 'new' field is not a function.\n",
10510 conf->reg->name);
10511 RESET_SAFE_LJMP(s->hlua);
10512 ret = 0;
10513 goto end;
10514 }
10515 lua_insert(s->hlua->T, -2);
10516
10517 /* Push the copy on the stack */
10518 s->hlua->nargs = 1;
10519
10520 /* We must initialize the execution timeouts. */
10521 s->hlua->max_time = hlua_timeout_session;
10522
10523 /* At this point the execution is safe. */
10524 RESET_SAFE_LJMP(s->hlua);
10525 }
10526
10527 switch (hlua_ctx_resume(s->hlua, 0)) {
10528 case HLUA_E_OK:
10529 /* Nothing returned or not a table, ignore the filter for current stream */
10530 if (!lua_gettop(s->hlua->T) || !lua_istable(s->hlua->T, 1)) {
10531 ret = 0;
10532 goto end;
10533 }
10534
10535 /* Attached the filter pointer to the ctx */
10536 lua_pushstring(s->hlua->T, "__filter");
10537 lua_pushlightuserdata(s->hlua->T, filter);
10538 lua_settable(s->hlua->T, -3);
10539
10540 /* Save a ref on the filter ctx */
10541 lua_pushvalue(s->hlua->T, 1);
10542 flt_ctx->ref = luaL_ref(s->hlua->T, LUA_REGISTRYINDEX);
10543 filter->ctx = flt_ctx;
10544 break;
10545 case HLUA_E_ERRMSG:
10546 SEND_ERR(s->be, "Lua filter '%s' : %s.\n", conf->reg->name, lua_tostring(s->hlua->T, -1));
10547 ret = -1;
10548 goto end;
10549 case HLUA_E_ETMOUT:
10550 SEND_ERR(s->be, "Lua filter '%s' : 'new' execution timeout.\n", conf->reg->name);
10551 ret = 0;
10552 goto end;
10553 case HLUA_E_NOMEM:
10554 SEND_ERR(s->be, "Lua filter '%s' : out of memory error.\n", conf->reg->name);
10555 ret = 0;
10556 goto end;
10557 case HLUA_E_AGAIN:
10558 case HLUA_E_YIELD:
10559 SEND_ERR(s->be, "Lua filter '%s': yield functions like core.tcp() or core.sleep()"
10560 " are not allowed from 'new' function.\n", conf->reg->name);
10561 ret = 0;
10562 goto end;
10563 case HLUA_E_ERR:
10564 SEND_ERR(s->be, "Lua filter '%s': 'new' returns an unknown error.\n", conf->reg->name);
10565 ret = 0;
10566 goto end;
10567 default:
10568 ret = 0;
10569 goto end;
10570 }
10571
10572 end:
10573 if (s->hlua)
10574 lua_settop(s->hlua->T, 0);
10575 if (ret <= 0) {
10576 if (flt_ctx) {
10577 hlua_ctx_destroy(flt_ctx->hlua[0]);
10578 hlua_ctx_destroy(flt_ctx->hlua[1]);
10579 pool_free(pool_head_hlua_flt_ctx, flt_ctx);
10580 }
10581 }
10582 return ret;
10583}
10584
10585static void hlua_filter_delete(struct stream *s, struct filter *filter)
10586{
10587 struct hlua_flt_ctx *flt_ctx = filter->ctx;
10588
10589 luaL_unref(s->hlua->T, LUA_REGISTRYINDEX, flt_ctx->ref);
10590 hlua_ctx_destroy(flt_ctx->hlua[0]);
10591 hlua_ctx_destroy(flt_ctx->hlua[1]);
10592 pool_free(pool_head_hlua_flt_ctx, flt_ctx);
10593 filter->ctx = NULL;
10594}
10595
Christopher Faulet9f55a502020-02-25 15:21:02 +010010596static int hlua_filter_from_payload(struct filter *filter)
10597{
10598 struct hlua_flt_ctx *flt_ctx = filter->ctx;
10599
10600 return (flt_ctx && !!(flt_ctx->flags & HLUA_FLT_CTX_FL_PAYLOAD));
10601}
10602
Christopher Fauletc404f112020-02-26 15:03:09 +010010603static int hlua_filter_callback(struct stream *s, struct filter *filter, const char *fun,
10604 int dir, unsigned int flags)
10605{
10606 struct hlua *flt_hlua;
10607 struct hlua_flt_config *conf = FLT_CONF(filter);
10608 struct hlua_flt_ctx *flt_ctx = filter->ctx;
10609 unsigned int hflags = HLUA_TXN_FLT_CTX;
10610 int ret = 1;
10611
10612 flt_hlua = flt_ctx->hlua[(dir == SMP_OPT_DIR_REQ ? 0 : 1)];
10613 if (!flt_hlua)
10614 goto end;
10615
10616 if (!HLUA_IS_RUNNING(flt_hlua)) {
10617 int extra_idx = lua_gettop(flt_hlua->T);
10618
10619 /* The following Lua calls can fail. */
10620 if (!SET_SAFE_LJMP(flt_hlua)) {
10621 const char *error;
10622
10623 if (lua_type(flt_hlua->T, -1) == LUA_TSTRING)
10624 error = lua_tostring(flt_hlua->T, -1);
10625 else
10626 error = "critical error";
10627 SEND_ERR(s->be, "Lua filter '%s': %s.\n", conf->reg->name, error);
10628 goto end;
10629 }
10630
10631 /* Check stack size. */
10632 if (!lua_checkstack(flt_hlua->T, 3)) {
10633 SEND_ERR(s->be, "Lua filter '%s': full stack.\n", conf->reg->name);
10634 RESET_SAFE_LJMP(flt_hlua);
10635 goto end;
10636 }
10637
10638 lua_rawgeti(flt_hlua->T, LUA_REGISTRYINDEX, flt_ctx->ref);
10639 if (lua_getfield(flt_hlua->T, -1, fun) != LUA_TFUNCTION) {
10640 RESET_SAFE_LJMP(flt_hlua);
10641 goto end;
10642 }
10643 lua_insert(flt_hlua->T, -2);
10644
10645 if (!hlua_txn_new(flt_hlua->T, s, s->be, dir, hflags)) {
10646 SEND_ERR(s->be, "Lua filter '%s': full stack.\n", conf->reg->name);
10647 RESET_SAFE_LJMP(flt_hlua);
10648 goto end;
10649 }
10650 flt_hlua->nargs = 2;
10651
10652 if (flags & HLUA_FLT_CB_ARG_CHN) {
10653 if (dir == SMP_OPT_DIR_REQ)
10654 lua_getfield(flt_hlua->T, -1, "req");
10655 else
10656 lua_getfield(flt_hlua->T, -1, "res");
10657 if (lua_type(flt_hlua->T, -1) == LUA_TTABLE) {
10658 lua_pushstring(flt_hlua->T, "__filter");
10659 lua_pushlightuserdata(flt_hlua->T, filter);
10660 lua_settable(flt_hlua->T, -3);
10661 }
10662 flt_hlua->nargs++;
10663 }
10664 else if (flags & HLUA_FLT_CB_ARG_HTTP_MSG) {
Christopher Fauleteae8afa2020-02-26 17:15:48 +010010665 if (dir == SMP_OPT_DIR_REQ)
10666 lua_getfield(flt_hlua->T, -1, "http_req");
10667 else
10668 lua_getfield(flt_hlua->T, -1, "http_res");
10669 if (lua_type(flt_hlua->T, -1) == LUA_TTABLE) {
10670 lua_pushstring(flt_hlua->T, "__filter");
10671 lua_pushlightuserdata(flt_hlua->T, filter);
10672 lua_settable(flt_hlua->T, -3);
10673 }
10674 flt_hlua->nargs++;
Christopher Fauletc404f112020-02-26 15:03:09 +010010675 }
10676
10677 /* Check stack size. */
10678 if (!lua_checkstack(flt_hlua->T, 1)) {
10679 SEND_ERR(s->be, "Lua filter '%s': full stack.\n", conf->reg->name);
10680 RESET_SAFE_LJMP(flt_hlua);
10681 goto end;
10682 }
10683
10684 while (extra_idx--) {
10685 lua_pushvalue(flt_hlua->T, 1);
10686 lua_remove(flt_hlua->T, 1);
10687 flt_hlua->nargs++;
10688 }
10689
10690 /* We must initialize the execution timeouts. */
10691 flt_hlua->max_time = hlua_timeout_session;
10692
10693 /* At this point the execution is safe. */
10694 RESET_SAFE_LJMP(flt_hlua);
10695 }
10696
10697 switch (hlua_ctx_resume(flt_hlua, !(flags & HLUA_FLT_CB_FINAL))) {
10698 case HLUA_E_OK:
10699 /* Catch the return value if it required */
10700 if ((flags & HLUA_FLT_CB_RETVAL) && lua_gettop(flt_hlua->T) > 0) {
10701 ret = lua_tointeger(flt_hlua->T, -1);
10702 lua_settop(flt_hlua->T, 0); /* Empty the stack. */
10703 }
10704
10705 /* Set timeout in the required channel. */
10706 if (flt_hlua->wake_time != TICK_ETERNITY) {
10707 if (dir == SMP_OPT_DIR_REQ)
10708 s->req.analyse_exp = flt_hlua->wake_time;
10709 else
10710 s->res.analyse_exp = flt_hlua->wake_time;
10711 }
10712 break;
10713 case HLUA_E_AGAIN:
10714 /* Set timeout in the required channel. */
10715 if (flt_hlua->wake_time != TICK_ETERNITY) {
10716 if (dir == SMP_OPT_DIR_REQ)
10717 s->req.analyse_exp = flt_hlua->wake_time;
10718 else
10719 s->res.analyse_exp = flt_hlua->wake_time;
10720 }
10721 /* Some actions can be wake up when a "write" event
10722 * is detected on a response channel. This is useful
10723 * only for actions targeted on the requests.
10724 */
10725 if (HLUA_IS_WAKERESWR(flt_hlua))
10726 s->res.flags |= CF_WAKE_WRITE;
10727 if (HLUA_IS_WAKEREQWR(flt_hlua))
10728 s->req.flags |= CF_WAKE_WRITE;
10729 ret = 0;
10730 goto end;
10731 case HLUA_E_ERRMSG:
10732 SEND_ERR(s->be, "Lua filter '%s' : %s.\n", conf->reg->name, lua_tostring(flt_hlua->T, -1));
10733 ret = -1;
10734 goto end;
10735 case HLUA_E_ETMOUT:
10736 SEND_ERR(s->be, "Lua filter '%s' : '%s' callback execution timeout.\n", conf->reg->name, fun);
10737 goto end;
10738 case HLUA_E_NOMEM:
10739 SEND_ERR(s->be, "Lua filter '%s' : out of memory error.\n", conf->reg->name);
10740 goto end;
10741 case HLUA_E_YIELD:
10742 SEND_ERR(s->be, "Lua filter '%s': yield functions like core.tcp() or core.sleep()"
10743 " are not allowed from '%s' callback.\n", conf->reg->name, fun);
10744 goto end;
10745 case HLUA_E_ERR:
10746 SEND_ERR(s->be, "Lua filter '%s': '%s' returns an unknown error.\n", conf->reg->name, fun);
10747 goto end;
10748 default:
10749 goto end;
10750 }
10751
10752
10753 end:
10754 return ret;
10755}
10756
10757static int hlua_filter_start_analyze(struct stream *s, struct filter *filter, struct channel *chn)
10758{
10759 struct hlua_flt_ctx *flt_ctx = filter->ctx;
10760
10761 flt_ctx->flags = 0;
10762 return hlua_filter_callback(s, filter, "start_analyze",
10763 (!(chn->flags & CF_ISRESP) ? SMP_OPT_DIR_REQ : SMP_OPT_DIR_RES),
10764 (HLUA_FLT_CB_FINAL | HLUA_FLT_CB_RETVAL | HLUA_FLT_CB_ARG_CHN));
10765}
10766
10767static int hlua_filter_end_analyze(struct stream *s, struct filter *filter, struct channel *chn)
10768{
10769 struct hlua_flt_ctx *flt_ctx = filter->ctx;
10770
10771 flt_ctx->flags &= ~HLUA_FLT_CTX_FL_PAYLOAD;
10772 return hlua_filter_callback(s, filter, "end_analyze",
10773 (!(chn->flags & CF_ISRESP) ? SMP_OPT_DIR_REQ : SMP_OPT_DIR_RES),
10774 (HLUA_FLT_CB_FINAL | HLUA_FLT_CB_RETVAL | HLUA_FLT_CB_ARG_CHN));
10775}
10776
Christopher Fauleteae8afa2020-02-26 17:15:48 +010010777static int hlua_filter_http_headers(struct stream *s, struct filter *filter, struct http_msg *msg)
10778{
10779 struct hlua_flt_ctx *flt_ctx = filter->ctx;
10780
10781 flt_ctx->flags &= ~HLUA_FLT_CTX_FL_PAYLOAD;
10782 return hlua_filter_callback(s, filter, "http_headers",
10783 (!(msg->chn->flags & CF_ISRESP) ? SMP_OPT_DIR_REQ : SMP_OPT_DIR_RES),
10784 (HLUA_FLT_CB_FINAL | HLUA_FLT_CB_RETVAL | HLUA_FLT_CB_ARG_HTTP_MSG));
10785}
10786
10787static int hlua_filter_http_payload(struct stream *s, struct filter *filter, struct http_msg *msg,
10788 unsigned int offset, unsigned int len)
10789{
10790 struct hlua_flt_ctx *flt_ctx = filter->ctx;
10791 struct hlua *flt_hlua;
10792 int dir = (!(msg->chn->flags & CF_ISRESP) ? SMP_OPT_DIR_REQ : SMP_OPT_DIR_RES);
10793 int idx = (dir == SMP_OPT_DIR_REQ ? 0 : 1);
10794 int ret;
10795
10796 flt_hlua = flt_ctx->hlua[idx];
10797 flt_ctx->cur_off[idx] = offset;
10798 flt_ctx->cur_len[idx] = len;
10799 flt_ctx->flags |= HLUA_FLT_CTX_FL_PAYLOAD;
10800 ret = hlua_filter_callback(s, filter, "http_payload", dir, (HLUA_FLT_CB_FINAL | HLUA_FLT_CB_ARG_HTTP_MSG));
10801 if (ret != -1) {
10802 ret = flt_ctx->cur_len[idx];
10803 if (lua_gettop(flt_hlua->T) > 0) {
10804 ret = lua_tointeger(flt_hlua->T, -1);
10805 if (ret > flt_ctx->cur_len[idx])
10806 ret = flt_ctx->cur_len[idx];
10807 lua_settop(flt_hlua->T, 0); /* Empty the stack. */
10808 }
10809 }
10810 return ret;
10811}
10812
10813static int hlua_filter_http_end(struct stream *s, struct filter *filter, struct http_msg *msg)
10814{
10815 struct hlua_flt_ctx *flt_ctx = filter->ctx;
10816
10817 flt_ctx->flags &= ~HLUA_FLT_CTX_FL_PAYLOAD;
10818 return hlua_filter_callback(s, filter, "http_end",
10819 (!(msg->chn->flags & CF_ISRESP) ? SMP_OPT_DIR_REQ : SMP_OPT_DIR_RES),
10820 (HLUA_FLT_CB_FINAL | HLUA_FLT_CB_RETVAL | HLUA_FLT_CB_ARG_HTTP_MSG));
10821}
10822
Christopher Fauletc404f112020-02-26 15:03:09 +010010823static int hlua_filter_tcp_payload(struct stream *s, struct filter *filter, struct channel *chn,
10824 unsigned int offset, unsigned int len)
10825{
10826 struct hlua_flt_ctx *flt_ctx = filter->ctx;
10827 struct hlua *flt_hlua;
10828 int dir = (!(chn->flags & CF_ISRESP) ? SMP_OPT_DIR_REQ : SMP_OPT_DIR_RES);
10829 int idx = (dir == SMP_OPT_DIR_REQ ? 0 : 1);
10830 int ret;
10831
10832 flt_hlua = flt_ctx->hlua[idx];
10833 flt_ctx->cur_off[idx] = offset;
10834 flt_ctx->cur_len[idx] = len;
10835 flt_ctx->flags |= HLUA_FLT_CTX_FL_PAYLOAD;
10836 ret = hlua_filter_callback(s, filter, "tcp_payload", dir, (HLUA_FLT_CB_FINAL | HLUA_FLT_CB_ARG_CHN));
10837 if (ret != -1) {
10838 ret = flt_ctx->cur_len[idx];
10839 if (lua_gettop(flt_hlua->T) > 0) {
10840 ret = lua_tointeger(flt_hlua->T, -1);
10841 if (ret > flt_ctx->cur_len[idx])
10842 ret = flt_ctx->cur_len[idx];
10843 lua_settop(flt_hlua->T, 0); /* Empty the stack. */
10844 }
10845 }
10846 return ret;
10847}
10848
Christopher Faulet69c581a2021-05-31 08:54:04 +020010849static int hlua_filter_parse_fct(char **args, int *cur_arg, struct proxy *px,
10850 struct flt_conf *fconf, char **err, void *private)
10851{
10852 struct hlua_reg_filter *reg_flt = private;
10853 lua_State *L;
10854 struct hlua_flt_config *conf = NULL;
10855 const char *flt_id = NULL;
10856 int state_id, pos, flt_flags = 0;
10857 struct flt_ops *hlua_flt_ops = NULL;
10858
10859 state_id = reg_flt_to_stack_id(reg_flt);
10860 L = hlua_states[state_id];
10861
10862 /* Initialize the filter ops with default callbacks */
10863 hlua_flt_ops = calloc(1, sizeof(*hlua_flt_ops));
Christopher Fauletc86bb872021-08-13 08:33:57 +020010864 if (!hlua_flt_ops)
10865 goto error;
Christopher Faulet69c581a2021-05-31 08:54:04 +020010866 hlua_flt_ops->init = hlua_filter_init;
10867 hlua_flt_ops->deinit = hlua_filter_deinit;
10868 if (state_id) {
10869 /* Set per-thread callback if script is loaded per-thread */
10870 hlua_flt_ops->init_per_thread = hlua_filter_init_per_thread;
10871 hlua_flt_ops->deinit_per_thread = hlua_filter_deinit_per_thread;
10872 }
10873 hlua_flt_ops->attach = hlua_filter_new;
10874 hlua_flt_ops->detach = hlua_filter_delete;
10875
10876 /* Push the filter class on the stack and resolve all callbacks */
10877 lua_rawgeti(L, LUA_REGISTRYINDEX, reg_flt->flt_ref[state_id]);
10878
Christopher Fauletc404f112020-02-26 15:03:09 +010010879 if (lua_getfield(L, -1, "start_analyze") == LUA_TFUNCTION)
10880 hlua_flt_ops->channel_start_analyze = hlua_filter_start_analyze;
10881 lua_pop(L, 1);
10882 if (lua_getfield(L, -1, "end_analyze") == LUA_TFUNCTION)
10883 hlua_flt_ops->channel_end_analyze = hlua_filter_end_analyze;
10884 lua_pop(L, 1);
Christopher Fauleteae8afa2020-02-26 17:15:48 +010010885 if (lua_getfield(L, -1, "http_headers") == LUA_TFUNCTION)
10886 hlua_flt_ops->http_headers = hlua_filter_http_headers;
10887 lua_pop(L, 1);
10888 if (lua_getfield(L, -1, "http_payload") == LUA_TFUNCTION)
10889 hlua_flt_ops->http_payload = hlua_filter_http_payload;
10890 lua_pop(L, 1);
10891 if (lua_getfield(L, -1, "http_end") == LUA_TFUNCTION)
10892 hlua_flt_ops->http_end = hlua_filter_http_end;
10893 lua_pop(L, 1);
Christopher Fauletc404f112020-02-26 15:03:09 +010010894 if (lua_getfield(L, -1, "tcp_payload") == LUA_TFUNCTION)
10895 hlua_flt_ops->tcp_payload = hlua_filter_tcp_payload;
10896 lua_pop(L, 1);
Christopher Faulet69c581a2021-05-31 08:54:04 +020010897
10898 /* Get id and flags of the filter class */
10899 if (lua_getfield(L, -1, "id") == LUA_TSTRING)
10900 flt_id = lua_tostring(L, -1);
10901 lua_pop(L, 1);
10902 if (lua_getfield(L, -1, "flags") == LUA_TNUMBER)
10903 flt_flags = lua_tointeger(L, -1);
10904 lua_pop(L, 1);
10905
10906 /* Create the filter config */
10907 conf = calloc(1, sizeof(*conf));
Christopher Fauletc86bb872021-08-13 08:33:57 +020010908 if (!conf)
Christopher Faulet69c581a2021-05-31 08:54:04 +020010909 goto error;
Christopher Faulet69c581a2021-05-31 08:54:04 +020010910 conf->reg = reg_flt;
10911
10912 /* duplicate args */
10913 for (pos = 0; *args[*cur_arg + 1 + pos]; pos++);
10914 conf->args = calloc(pos + 1, sizeof(*conf->args));
Christopher Fauletc86bb872021-08-13 08:33:57 +020010915 if (!conf->args)
10916 goto error;
10917 for (pos = 0; *args[*cur_arg + 1 + pos]; pos++) {
Christopher Faulet69c581a2021-05-31 08:54:04 +020010918 conf->args[pos] = strdup(args[*cur_arg + 1 + pos]);
Christopher Fauletc86bb872021-08-13 08:33:57 +020010919 if (!conf->args[pos])
10920 goto error;
10921 }
Christopher Faulet69c581a2021-05-31 08:54:04 +020010922 conf->args[pos] = NULL;
10923 *cur_arg += pos + 1;
10924
Christopher Fauletc86bb872021-08-13 08:33:57 +020010925 if (flt_id) {
10926 fconf->id = strdup(flt_id);
10927 if (!fconf->id)
10928 goto error;
10929 }
Christopher Faulet69c581a2021-05-31 08:54:04 +020010930 fconf->flags = flt_flags;
10931 fconf->conf = conf;
10932 fconf->ops = hlua_flt_ops;
10933
10934 lua_settop(L, 0);
10935 return 0;
10936
10937 error:
Christopher Fauletc86bb872021-08-13 08:33:57 +020010938 memprintf(err, "Lua filter '%s' : Lua out of memory error", reg_flt->name);
Christopher Faulet69c581a2021-05-31 08:54:04 +020010939 free(hlua_flt_ops);
Christopher Fauletc86bb872021-08-13 08:33:57 +020010940 if (conf && conf->args) {
10941 for (pos = 0; conf->args[pos]; pos++)
10942 free(conf->args[pos]);
10943 free(conf->args);
10944 }
Christopher Faulet69c581a2021-05-31 08:54:04 +020010945 free(conf);
Christopher Fauletc86bb872021-08-13 08:33:57 +020010946 free((char *)fconf->id);
Christopher Faulet69c581a2021-05-31 08:54:04 +020010947 lua_settop(L, 0);
10948 return -1;
10949}
10950
Christopher Fauletc404f112020-02-26 15:03:09 +010010951__LJMP static int hlua_register_data_filter(lua_State *L)
10952{
10953 struct filter *filter;
10954 struct channel *chn;
10955
10956 MAY_LJMP(check_args(L, 2, "register_data_filter"));
10957 MAY_LJMP(luaL_checktype(L, 1, LUA_TTABLE));
10958 chn = MAY_LJMP(hlua_checkchannel(L, 2));
10959
10960 lua_getfield(L, 1, "__filter");
10961 MAY_LJMP(luaL_checktype(L, -1, LUA_TLIGHTUSERDATA));
10962 filter = lua_touserdata (L, -1);
10963 lua_pop(L, 1);
10964
10965 register_data_filter(chn_strm(chn), chn, filter);
10966 return 1;
10967}
10968
10969__LJMP static int hlua_unregister_data_filter(lua_State *L)
10970{
10971 struct filter *filter;
10972 struct channel *chn;
10973
10974 MAY_LJMP(check_args(L, 2, "unregister_data_filter"));
10975 MAY_LJMP(luaL_checktype(L, 1, LUA_TTABLE));
10976 chn = MAY_LJMP(hlua_checkchannel(L, 2));
10977
10978 lua_getfield(L, 1, "__filter");
10979 MAY_LJMP(luaL_checktype(L, -1, LUA_TLIGHTUSERDATA));
10980 filter = lua_touserdata (L, -1);
10981 lua_pop(L, 1);
10982
10983 unregister_data_filter(chn_strm(chn), chn, filter);
10984 return 1;
10985}
10986
Christopher Faulet69c581a2021-05-31 08:54:04 +020010987/* This function is an LUA binding used for registering a filter. It expects a
Ilya Shipitsinff0f2782021-08-22 22:18:07 +050010988 * filter name used in the haproxy configuration file and a LUA function to
Christopher Faulet69c581a2021-05-31 08:54:04 +020010989 * parse configuration arguments.
10990 */
10991__LJMP static int hlua_register_filter(lua_State *L)
10992{
10993 struct buffer *trash;
10994 struct flt_kw_list *fkl;
10995 struct flt_kw *fkw;
10996 const char *name;
10997 struct hlua_reg_filter *reg_flt= NULL;
10998 int flt_ref, fun_ref;
10999 int len;
11000
11001 MAY_LJMP(check_args(L, 3, "register_filter"));
11002
11003 /* First argument : filter name. */
11004 name = MAY_LJMP(luaL_checkstring(L, 1));
11005
11006 /* Second argument : The filter class */
11007 flt_ref = MAY_LJMP(hlua_checktable(L, 2));
11008
11009 /* Third argument : lua function. */
11010 fun_ref = MAY_LJMP(hlua_checkfunction(L, 3));
11011
11012 trash = get_trash_chunk();
11013 chunk_printf(trash, "lua.%s", name);
11014 fkw = flt_find_kw(trash->area);
11015 if (fkw != NULL) {
11016 reg_flt = fkw->private;
11017 if (reg_flt->flt_ref[hlua_state_id] != -1 || reg_flt->fun_ref[hlua_state_id] != -1) {
11018 ha_warning("Trying to register filter 'lua.%s' more than once. "
11019 "This will become a hard error in version 2.5.\n", name);
11020 }
11021 reg_flt->flt_ref[hlua_state_id] = flt_ref;
11022 reg_flt->fun_ref[hlua_state_id] = fun_ref;
11023 return 0;
11024 }
11025
11026 fkl = calloc(1, sizeof(*fkl) + sizeof(struct flt_kw) * 2);
11027 if (!fkl)
11028 goto alloc_error;
11029 fkl->scope = "HLUA";
11030
11031 reg_flt = new_hlua_reg_filter(name);
11032 if (!reg_flt)
11033 goto alloc_error;
11034
11035 reg_flt->flt_ref[hlua_state_id] = flt_ref;
11036 reg_flt->fun_ref[hlua_state_id] = fun_ref;
11037
11038 /* The filter keyword */
11039 len = strlen("lua.") + strlen(name) + 1;
11040 fkl->kw[0].kw = calloc(1, len);
11041 if (!fkl->kw[0].kw)
11042 goto alloc_error;
11043
11044 snprintf((char *)fkl->kw[0].kw, len, "lua.%s", name);
11045
11046 fkl->kw[0].parse = hlua_filter_parse_fct;
11047 fkl->kw[0].private = reg_flt;
11048 memset(&fkl->kw[1], 0, sizeof(*fkl->kw));
11049
11050 /* Register this new filter */
11051 flt_register_keywords(fkl);
11052
11053 return 0;
11054
11055 alloc_error:
11056 release_hlua_reg_filter(reg_flt);
11057 ha_free(&fkl);
11058 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
11059 return 0; /* Never reached */
11060}
11061
Thierry FOURNIERbd413492015-03-03 16:52:26 +010011062static int hlua_read_timeout(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +010011063 const struct proxy *defpx, const char *file, int line,
Thierry FOURNIERbd413492015-03-03 16:52:26 +010011064 char **err, unsigned int *timeout)
11065{
11066 const char *error;
11067
11068 error = parse_time_err(args[1], timeout, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +020011069 if (error == PARSE_TIME_OVER) {
11070 memprintf(err, "timer overflow in argument <%s> to <%s> (maximum value is 2147483647 ms or ~24.8 days)",
11071 args[1], args[0]);
11072 return -1;
11073 }
11074 else if (error == PARSE_TIME_UNDER) {
11075 memprintf(err, "timer underflow in argument <%s> to <%s> (minimum non-null value is 1 ms)",
11076 args[1], args[0]);
11077 return -1;
11078 }
11079 else if (error) {
Thierry FOURNIERbd413492015-03-03 16:52:26 +010011080 memprintf(err, "%s: invalid timeout", args[0]);
11081 return -1;
11082 }
11083 return 0;
11084}
11085
11086static int hlua_session_timeout(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +010011087 const struct proxy *defpx, const char *file, int line,
Thierry FOURNIERbd413492015-03-03 16:52:26 +010011088 char **err)
11089{
11090 return hlua_read_timeout(args, section_type, curpx, defpx,
11091 file, line, err, &hlua_timeout_session);
11092}
11093
11094static int hlua_task_timeout(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +010011095 const struct proxy *defpx, const char *file, int line,
Thierry FOURNIERbd413492015-03-03 16:52:26 +010011096 char **err)
11097{
11098 return hlua_read_timeout(args, section_type, curpx, defpx,
11099 file, line, err, &hlua_timeout_task);
11100}
11101
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +020011102static int hlua_applet_timeout(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +010011103 const struct proxy *defpx, const char *file, int line,
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +020011104 char **err)
11105{
11106 return hlua_read_timeout(args, section_type, curpx, defpx,
11107 file, line, err, &hlua_timeout_applet);
11108}
11109
Thierry FOURNIERee9f8022015-03-03 17:37:37 +010011110static int hlua_forced_yield(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +010011111 const struct proxy *defpx, const char *file, int line,
Thierry FOURNIERee9f8022015-03-03 17:37:37 +010011112 char **err)
11113{
11114 char *error;
11115
11116 hlua_nb_instruction = strtoll(args[1], &error, 10);
11117 if (*error != '\0') {
11118 memprintf(err, "%s: invalid number", args[0]);
11119 return -1;
11120 }
11121 return 0;
11122}
11123
Willy Tarreau32f61e22015-03-18 17:54:59 +010011124static int hlua_parse_maxmem(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +010011125 const struct proxy *defpx, const char *file, int line,
Willy Tarreau32f61e22015-03-18 17:54:59 +010011126 char **err)
11127{
11128 char *error;
11129
11130 if (*(args[1]) == 0) {
11131 memprintf(err, "'%s' expects an integer argument (Lua memory size in MB).\n", args[0]);
11132 return -1;
11133 }
11134 hlua_global_allocator.limit = strtoll(args[1], &error, 10) * 1024L * 1024L;
11135 if (*error != '\0') {
11136 memprintf(err, "%s: invalid number %s (error at '%c')", args[0], args[1], *error);
11137 return -1;
11138 }
11139 return 0;
11140}
11141
11142
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011143/* This function is called by the main configuration key "lua-load". It loads and
11144 * execute an lua file during the parsing of the HAProxy configuration file. It is
11145 * the main lua entry point.
11146 *
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -080011147 * This function runs with the HAProxy keywords API. It returns -1 if an error
11148 * occurs, otherwise it returns 0.
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011149 *
11150 * In some error case, LUA set an error message in top of the stack. This function
11151 * returns this error message in the HAProxy logs and pop it from the stack.
Thierry FOURNIERbabae282015-09-17 11:36:37 +020011152 *
11153 * This function can fail with an abort() due to an Lua critical error.
11154 * We are in the configuration parsing process of HAProxy, this abort() is
11155 * tolerated.
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011156 */
Thierry Fournierc93c15c2020-11-28 15:02:13 +010011157static int hlua_load_state(char *filename, lua_State *L, char **err)
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011158{
11159 int error;
11160
11161 /* Just load and compile the file. */
Thierry Fournierc93c15c2020-11-28 15:02:13 +010011162 error = luaL_loadfile(L, filename);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011163 if (error) {
Thierry Fournierc93c15c2020-11-28 15:02:13 +010011164 memprintf(err, "error in Lua file '%s': %s", filename, lua_tostring(L, -1));
11165 lua_pop(L, 1);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011166 return -1;
11167 }
11168
11169 /* If no syntax error where detected, execute the code. */
Thierry Fournierc93c15c2020-11-28 15:02:13 +010011170 error = lua_pcall(L, 0, LUA_MULTRET, 0);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011171 switch (error) {
11172 case LUA_OK:
11173 break;
11174 case LUA_ERRRUN:
Thierry Fournierc93c15c2020-11-28 15:02:13 +010011175 memprintf(err, "Lua runtime error: %s\n", lua_tostring(L, -1));
11176 lua_pop(L, 1);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011177 return -1;
11178 case LUA_ERRMEM:
Thierry Fournierde6145f2020-11-29 00:55:53 +010011179 memprintf(err, "Lua out of memory error\n");
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011180 return -1;
11181 case LUA_ERRERR:
Thierry Fournierc93c15c2020-11-28 15:02:13 +010011182 memprintf(err, "Lua message handler error: %s\n", lua_tostring(L, -1));
11183 lua_pop(L, 1);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011184 return -1;
Christopher Faulet08ed98f2020-07-28 10:33:25 +020011185#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM <= 503
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011186 case LUA_ERRGCMM:
Thierry Fournierc93c15c2020-11-28 15:02:13 +010011187 memprintf(err, "Lua garbage collector error: %s\n", lua_tostring(L, -1));
11188 lua_pop(L, 1);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011189 return -1;
Christopher Faulet08ed98f2020-07-28 10:33:25 +020011190#endif
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011191 default:
Thierry Fournierc93c15c2020-11-28 15:02:13 +010011192 memprintf(err, "Lua unknown error: %s\n", lua_tostring(L, -1));
11193 lua_pop(L, 1);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011194 return -1;
11195 }
11196
11197 return 0;
11198}
11199
Thierry Fournierc93c15c2020-11-28 15:02:13 +010011200static int hlua_load(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +010011201 const struct proxy *defpx, const char *file, int line,
Thierry Fournierc93c15c2020-11-28 15:02:13 +010011202 char **err)
11203{
11204 if (*(args[1]) == 0) {
11205 memprintf(err, "'%s' expects a file name as parameter.\n", args[0]);
11206 return -1;
11207 }
11208
Thierry Fournier59f11be2020-11-29 00:37:41 +010011209 /* loading for global state */
Thierry Fournierc7492592020-11-28 23:57:24 +010011210 hlua_state_id = 0;
Willy Tarreau43ab05b2021-09-28 09:43:11 +020011211 ha_set_thread(NULL);
Thierry Fournierafc63e22020-11-28 17:06:51 +010011212 return hlua_load_state(args[1], hlua_states[0], err);
Thierry Fournierc93c15c2020-11-28 15:02:13 +010011213}
11214
Thierry Fournier59f11be2020-11-29 00:37:41 +010011215static int hlua_load_per_thread(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +010011216 const struct proxy *defpx, const char *file, int line,
Thierry Fournier59f11be2020-11-29 00:37:41 +010011217 char **err)
11218{
11219 int len;
11220
11221 if (*(args[1]) == 0) {
11222 memprintf(err, "'%s' expects a file as parameter.\n", args[0]);
11223 return -1;
11224 }
11225
11226 if (per_thread_load == NULL) {
11227 /* allocate the first entry large enough to store the final NULL */
11228 per_thread_load = calloc(1, sizeof(*per_thread_load));
11229 if (per_thread_load == NULL) {
11230 memprintf(err, "out of memory error");
11231 return -1;
11232 }
11233 }
11234
11235 /* count used entries */
11236 for (len = 0; per_thread_load[len] != NULL; len++)
11237 ;
11238
11239 per_thread_load = realloc(per_thread_load, (len + 2) * sizeof(*per_thread_load));
11240 if (per_thread_load == NULL) {
11241 memprintf(err, "out of memory error");
11242 return -1;
11243 }
11244
11245 per_thread_load[len] = strdup(args[1]);
11246 per_thread_load[len + 1] = NULL;
11247
11248 if (per_thread_load[len] == NULL) {
11249 memprintf(err, "out of memory error");
11250 return -1;
11251 }
11252
11253 /* loading for thread 1 only */
11254 hlua_state_id = 1;
Willy Tarreau43ab05b2021-09-28 09:43:11 +020011255 ha_set_thread(NULL);
Thierry Fournier59f11be2020-11-29 00:37:41 +010011256 return hlua_load_state(args[1], hlua_states[1], err);
11257}
11258
Tim Duesterhusc9fc9f22020-01-12 13:55:39 +010011259/* Prepend the given <path> followed by a semicolon to the `package.<type>` variable
11260 * in the given <ctx>.
11261 */
Thierry Fournier3fb9e512020-11-28 10:13:12 +010011262static int hlua_prepend_path(lua_State *L, char *type, char *path)
Tim Duesterhusc9fc9f22020-01-12 13:55:39 +010011263{
Thierry Fournier3fb9e512020-11-28 10:13:12 +010011264 lua_getglobal(L, "package"); /* push package variable */
11265 lua_pushstring(L, path); /* push given path */
11266 lua_pushstring(L, ";"); /* push semicolon */
11267 lua_getfield(L, -3, type); /* push old path */
11268 lua_concat(L, 3); /* concatenate to new path */
11269 lua_setfield(L, -2, type); /* store new path */
11270 lua_pop(L, 1); /* pop package variable */
Tim Duesterhusc9fc9f22020-01-12 13:55:39 +010011271
11272 return 0;
11273}
11274
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +010011275static int hlua_config_prepend_path(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +010011276 const struct proxy *defpx, const char *file, int line,
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +010011277 char **err)
11278{
11279 char *path;
11280 char *type = "path";
Tim Duesterhus621e74a2021-01-03 20:04:36 +010011281 struct prepend_path *p = NULL;
Bertrand Jacquin7fbc7702021-11-24 21:16:06 +000011282 size_t i;
Thierry Fournier59f11be2020-11-29 00:37:41 +010011283
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +010011284 if (too_many_args(2, args, err, NULL)) {
Tim Duesterhus621e74a2021-01-03 20:04:36 +010011285 goto err;
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +010011286 }
11287
11288 if (!(*args[1])) {
11289 memprintf(err, "'%s' expects to receive a <path> as argument", args[0]);
Tim Duesterhus621e74a2021-01-03 20:04:36 +010011290 goto err;
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +010011291 }
11292 path = args[1];
11293
11294 if (*args[2]) {
11295 if (strcmp(args[2], "path") != 0 && strcmp(args[2], "cpath") != 0) {
11296 memprintf(err, "'%s' expects <type> to either be 'path' or 'cpath'", args[0]);
Tim Duesterhus621e74a2021-01-03 20:04:36 +010011297 goto err;
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +010011298 }
11299 type = args[2];
11300 }
11301
Thierry Fournier59f11be2020-11-29 00:37:41 +010011302 p = calloc(1, sizeof(*p));
11303 if (p == NULL) {
Tim Duesterhusf89d43a2021-01-03 20:04:37 +010011304 memprintf(err, "memory allocation failed");
Tim Duesterhus621e74a2021-01-03 20:04:36 +010011305 goto err;
Thierry Fournier59f11be2020-11-29 00:37:41 +010011306 }
11307 p->path = strdup(path);
11308 if (p->path == NULL) {
Tim Duesterhusf89d43a2021-01-03 20:04:37 +010011309 memprintf(err, "memory allocation failed");
Tim Duesterhus621e74a2021-01-03 20:04:36 +010011310 goto err2;
Thierry Fournier59f11be2020-11-29 00:37:41 +010011311 }
11312 p->type = strdup(type);
11313 if (p->type == NULL) {
Tim Duesterhusf89d43a2021-01-03 20:04:37 +010011314 memprintf(err, "memory allocation failed");
Tim Duesterhus621e74a2021-01-03 20:04:36 +010011315 goto err2;
Thierry Fournier59f11be2020-11-29 00:37:41 +010011316 }
Willy Tarreau2b718102021-04-21 07:32:39 +020011317 LIST_APPEND(&prepend_path_list, &p->l);
Thierry Fournier59f11be2020-11-29 00:37:41 +010011318
Tim Duesterhus9e5e5862021-10-11 18:51:08 +020011319 /* Handle the global state and the per-thread state for the first
11320 * thread. The remaining threads will be initialized based on
11321 * prepend_path_list.
11322 */
Bertrand Jacquin7fbc7702021-11-24 21:16:06 +000011323 for (i = 0; i < 2; i++) {
Tim Duesterhus9e5e5862021-10-11 18:51:08 +020011324 lua_State *L = hlua_states[i];
11325 const char *error;
11326
11327 if (setjmp(safe_ljmp_env) != 0) {
11328 lua_atpanic(L, hlua_panic_safe);
11329 if (lua_type(L, -1) == LUA_TSTRING)
11330 error = lua_tostring(L, -1);
11331 else
11332 error = "critical error";
11333 fprintf(stderr, "lua-prepend-path: %s.\n", error);
11334 exit(1);
11335 } else {
11336 lua_atpanic(L, hlua_panic_ljmp);
11337 }
11338
11339 hlua_prepend_path(L, type, path);
11340
11341 lua_atpanic(L, hlua_panic_safe);
11342 }
11343
Thierry Fournier59f11be2020-11-29 00:37:41 +010011344 return 0;
Tim Duesterhus621e74a2021-01-03 20:04:36 +010011345
11346err2:
11347 free(p->type);
11348 free(p->path);
11349err:
11350 free(p);
11351 return -1;
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +010011352}
11353
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011354/* configuration keywords declaration */
11355static struct cfg_kw_list cfg_kws = {{ },{
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +010011356 { CFG_GLOBAL, "lua-prepend-path", hlua_config_prepend_path },
Thierry FOURNIERbd413492015-03-03 16:52:26 +010011357 { CFG_GLOBAL, "lua-load", hlua_load },
Thierry Fournier59f11be2020-11-29 00:37:41 +010011358 { CFG_GLOBAL, "lua-load-per-thread", hlua_load_per_thread },
Thierry FOURNIERbd413492015-03-03 16:52:26 +010011359 { CFG_GLOBAL, "tune.lua.session-timeout", hlua_session_timeout },
11360 { CFG_GLOBAL, "tune.lua.task-timeout", hlua_task_timeout },
Thierry FOURNIER56da1012015-10-01 08:42:31 +020011361 { CFG_GLOBAL, "tune.lua.service-timeout", hlua_applet_timeout },
Thierry FOURNIERee9f8022015-03-03 17:37:37 +010011362 { CFG_GLOBAL, "tune.lua.forced-yield", hlua_forced_yield },
Willy Tarreau32f61e22015-03-18 17:54:59 +010011363 { CFG_GLOBAL, "tune.lua.maxmem", hlua_parse_maxmem },
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011364 { 0, NULL, NULL },
11365}};
11366
Willy Tarreau0108d902018-11-25 19:14:37 +010011367INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
11368
William Lallemand52139182022-03-30 15:05:42 +020011369#ifdef USE_OPENSSL
Christopher Fauletafd8f102018-11-08 11:34:21 +010011370
William Lallemand30fcca12022-03-30 12:03:12 +020011371/*
11372 * This function replace a ckch_store by another one, and rebuild the ckch_inst and all its dependencies.
11373 * It does the sam as "cli_io_handler_commit_cert" but for lua, the major
11374 * difference is that the yield in lua and for the CLI is not handled the same
11375 * way.
11376 */
11377__LJMP static int hlua_ckch_commit_yield(lua_State *L, int status, lua_KContext ctx)
11378{
11379 struct ckch_inst **lua_ckchi = lua_touserdata(L, -1);
11380 struct ckch_store **lua_ckchs = lua_touserdata(L, -2);
11381 struct ckch_inst *ckchi = *lua_ckchi;
11382 struct ckch_store *old_ckchs = lua_ckchs[0];
11383 struct ckch_store *new_ckchs = lua_ckchs[1];
11384 struct hlua *hlua;
11385 char *err = NULL;
11386 int y = 1;
11387
11388 hlua = hlua_gethlua(L);
11389
11390 /* get the first ckchi to copy */
11391 if (ckchi == NULL)
11392 ckchi = LIST_ELEM(old_ckchs->ckch_inst.n, typeof(ckchi), by_ckchs);
11393
11394 /* walk through the old ckch_inst and creates new ckch_inst using the updated ckchs */
11395 list_for_each_entry_from(ckchi, &old_ckchs->ckch_inst, by_ckchs) {
11396 struct ckch_inst *new_inst;
11397
11398 /* it takes a lot of CPU to creates SSL_CTXs, so we yield every 10 CKCH instances */
11399 if (y % 10 == 0) {
11400
11401 *lua_ckchi = ckchi;
11402
11403 task_wakeup(hlua->task, TASK_WOKEN_MSG);
11404 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_ckch_commit_yield, TICK_ETERNITY, 0));
11405 }
11406
11407 if (ckch_inst_rebuild(new_ckchs, ckchi, &new_inst, &err))
11408 goto error;
11409
11410 /* link the new ckch_inst to the duplicate */
11411 LIST_APPEND(&new_ckchs->ckch_inst, &new_inst->by_ckchs);
11412 y++;
11413 }
11414
11415 /* The generation is finished, we can insert everything */
11416 ckch_store_replace(old_ckchs, new_ckchs);
11417
11418 lua_pop(L, 2); /* pop the lua_ckchs and ckchi */
11419
11420 HA_SPIN_UNLOCK(CKCH_LOCK, &ckch_lock);
11421
11422 return 0;
11423
11424error:
11425 ckch_store_free(new_ckchs);
11426 HA_SPIN_UNLOCK(CKCH_LOCK, &ckch_lock);
11427 WILL_LJMP(luaL_error(L, "%s", err));
11428 free(err);
11429
11430 return 0;
11431}
11432
11433/*
11434 * Replace a ckch_store <filename> in the ckchs_tree with a ckch_store created
11435 * from the table in parameter.
11436 *
11437 * This is equivalent to "set ssl cert" + "commit ssl cert" over the CLI, which
11438 * means it does not need to have a transaction since everything is done in the
11439 * same function.
11440 *
11441 * CertCache.set{filename="", crt="", key="", sctl="", ocsp="", issuer=""}
11442 *
11443 */
11444__LJMP static int hlua_ckch_set(lua_State *L)
11445{
11446 struct hlua *hlua;
11447 struct ckch_inst **lua_ckchi;
11448 struct ckch_store **lua_ckchs;
11449 struct ckch_store *old_ckchs = NULL;
11450 struct ckch_store *new_ckchs = NULL;
11451 int errcode = 0;
11452 char *err = NULL;
11453 struct cert_exts *cert_ext = NULL;
11454 char *filename;
11455 struct cert_key_and_chain *ckch;
11456 int ret;
11457
11458 if (lua_type(L, -1) != LUA_TTABLE)
11459 WILL_LJMP(luaL_error(L, "'CertCache.set' needs a table as argument"));
11460
11461 hlua = hlua_gethlua(L);
11462
11463 /* FIXME: this should not return an error but should come back later */
11464 if (HA_SPIN_TRYLOCK(CKCH_LOCK, &ckch_lock))
11465 WILL_LJMP(luaL_error(L, "CertCache already under lock"));
11466
11467 ret = lua_getfield(L, -1, "filename");
11468 if (ret != LUA_TSTRING) {
11469 memprintf(&err, "%sNo filename specified!\n", err ? err : "");
11470 errcode |= ERR_ALERT | ERR_FATAL;
11471 goto end;
11472 }
11473 filename = (char *)lua_tostring(L, -1);
11474
11475
11476 /* look for the filename in the tree */
11477 old_ckchs = ckchs_lookup(filename);
11478 if (!old_ckchs) {
11479 memprintf(&err, "%sCan't replace a certificate which is not referenced by the configuration!\n", err ? err : "");
11480 errcode |= ERR_ALERT | ERR_FATAL;
11481 goto end;
11482 }
11483 /* TODO: handle extra_files_noext */
11484
11485 new_ckchs = ckchs_dup(old_ckchs);
11486 if (!new_ckchs) {
11487 memprintf(&err, "%sCannot allocate memory!\n", err ? err : "");
11488 errcode |= ERR_ALERT | ERR_FATAL;
11489 goto end;
11490 }
11491
11492 ckch = new_ckchs->ckch;
11493
11494 /* loop on the field in the table, which have the same name as the
11495 * possible extensions of files */
11496 lua_pushnil(L);
11497 while (lua_next(L, 1)) {
11498 int i;
11499 const char *field = lua_tostring(L, -2);
11500 char *payload = (char *)lua_tostring(L, -1);
11501
11502 if (!field || strcmp(field, "filename") == 0) {
11503 lua_pop(L, 1);
11504 continue;
11505 }
11506
11507 for (i = 0; field && cert_exts[i].ext != NULL; i++) {
11508 if (strcmp(field, cert_exts[i].ext) == 0) {
11509 cert_ext = &cert_exts[i];
11510 break;
11511 }
11512 }
11513
11514 /* this is the default type, the field is not supported */
11515 if (cert_ext == NULL) {
11516 memprintf(&err, "%sUnsupported field '%s'\n", err ? err : "", field);
11517 errcode |= ERR_ALERT | ERR_FATAL;
11518 goto end;
11519 }
11520
11521 /* appply the change on the duplicate */
11522 if (cert_exts->load(filename, payload, ckch, &err) != 0) {
11523 memprintf(&err, "%sCan't load the payload\n", err ? err : "");
11524 errcode |= ERR_ALERT | ERR_FATAL;
11525 goto end;
11526 }
11527 lua_pop(L, 1);
11528 }
11529
11530 /* store the pointers on the lua stack */
11531 lua_ckchs = lua_newuserdata(L, sizeof(struct ckch_store *) * 2);
11532 lua_ckchs[0] = old_ckchs;
11533 lua_ckchs[1] = new_ckchs;
11534 lua_ckchi = lua_newuserdata(L, sizeof(struct ckch_inst *));
11535 *lua_ckchi = NULL;
11536
11537 task_wakeup(hlua->task, TASK_WOKEN_MSG);
11538 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_ckch_commit_yield, TICK_ETERNITY, 0));
11539
11540end:
11541 HA_SPIN_UNLOCK(CKCH_LOCK, &ckch_lock);
11542
11543 if (errcode & ERR_CODE) {
11544 ckch_store_free(new_ckchs);
11545 WILL_LJMP(luaL_error(L, "%s", err));
11546 }
11547 free(err);
11548
11549 return 0;
11550}
11551
William Lallemand52139182022-03-30 15:05:42 +020011552#else
11553
11554__LJMP static int hlua_ckch_set(lua_State *L)
11555{
11556 WILL_LJMP(luaL_error(L, "'CertCache.set' needs an HAProxy built with OpenSSL"));
11557
11558 return 0;
11559}
11560#endif /* ! USE_OPENSSL */
11561
11562
11563
Thierry FOURNIERbabae282015-09-17 11:36:37 +020011564/* This function can fail with an abort() due to an Lua critical error.
11565 * We are in the initialisation process of HAProxy, this abort() is
11566 * tolerated.
11567 */
Thierry Fournierb8cef172020-11-28 15:37:17 +010011568int hlua_post_init_state(lua_State *L)
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +010011569{
11570 struct hlua_init_function *init;
11571 const char *msg;
11572 enum hlua_exec ret;
Thierry Fournierfd107a22016-02-19 19:57:23 +010011573 const char *error;
Thierry Fournier670db242020-11-28 10:49:59 +010011574 const char *kind;
11575 const char *trace;
11576 int return_status = 1;
11577#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504
11578 int nres;
11579#endif
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +010011580
Willy Tarreaucdb53462020-12-02 12:12:00 +010011581 /* disable memory limit checks if limit is not set */
11582 if (!hlua_global_allocator.limit)
11583 hlua_global_allocator.limit = ~hlua_global_allocator.limit;
11584
Ilya Shipitsin856aabc2020-04-16 23:51:34 +050011585 /* Call post initialisation function in safe environment. */
Thierry Fournier3c539322020-11-28 16:05:05 +010011586 if (setjmp(safe_ljmp_env) != 0) {
11587 lua_atpanic(L, hlua_panic_safe);
Thierry Fournierb8cef172020-11-28 15:37:17 +010011588 if (lua_type(L, -1) == LUA_TSTRING)
11589 error = lua_tostring(L, -1);
Thierry Fournier3d4a6752016-02-19 20:53:30 +010011590 else
11591 error = "critical error";
11592 fprintf(stderr, "Lua post-init: %s.\n", error);
11593 exit(1);
Thierry Fournier3c539322020-11-28 16:05:05 +010011594 } else {
11595 lua_atpanic(L, hlua_panic_ljmp);
Thierry Fournier3d4a6752016-02-19 20:53:30 +010011596 }
Frédéric Lécaille54f2bcf2018-08-29 13:46:24 +020011597
Thierry Fournierb8cef172020-11-28 15:37:17 +010011598 hlua_fcn_post_init(L);
Thierry Fournier3d4a6752016-02-19 20:53:30 +010011599
Thierry Fournierc7492592020-11-28 23:57:24 +010011600 list_for_each_entry(init, &hlua_init_functions[hlua_state_id], l) {
Thierry Fournierb8cef172020-11-28 15:37:17 +010011601 lua_rawgeti(L, LUA_REGISTRYINDEX, init->function_ref);
Thierry Fournier670db242020-11-28 10:49:59 +010011602
11603#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504
Thierry Fournierb8cef172020-11-28 15:37:17 +010011604 ret = lua_resume(L, L, 0, &nres);
Thierry Fournier670db242020-11-28 10:49:59 +010011605#else
Thierry Fournierb8cef172020-11-28 15:37:17 +010011606 ret = lua_resume(L, L, 0);
Thierry Fournier670db242020-11-28 10:49:59 +010011607#endif
11608 kind = NULL;
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +010011609 switch (ret) {
Thierry Fournier670db242020-11-28 10:49:59 +010011610
11611 case LUA_OK:
Thierry Fournierb8cef172020-11-28 15:37:17 +010011612 lua_pop(L, -1);
Thierry Fournier13d08b72020-11-28 11:02:58 +010011613 break;
Thierry Fournier670db242020-11-28 10:49:59 +010011614
11615 case LUA_ERRERR:
11616 kind = "message handler error";
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -070011617 /* Fall through */
Thierry Fournier670db242020-11-28 10:49:59 +010011618 case LUA_ERRRUN:
11619 if (!kind)
11620 kind = "runtime error";
Thierry Fournierb8cef172020-11-28 15:37:17 +010011621 msg = lua_tostring(L, -1);
11622 lua_settop(L, 0); /* Empty the stack. */
11623 lua_pop(L, 1);
Christopher Fauletd09cc512021-03-24 14:48:45 +010011624 trace = hlua_traceback(L, ", ");
Thierry Fournier670db242020-11-28 10:49:59 +010011625 if (msg)
11626 ha_alert("Lua init: %s: '%s' from %s\n", kind, msg, trace);
11627 else
11628 ha_alert("Lua init: unknown %s from %s\n", kind, trace);
11629 return_status = 0;
11630 break;
11631
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +010011632 default:
Thierry Fournier670db242020-11-28 10:49:59 +010011633 /* Unknown error */
11634 kind = "Unknown error";
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -070011635 /* Fall through */
Thierry Fournier670db242020-11-28 10:49:59 +010011636 case LUA_YIELD:
11637 /* yield is not configured at this step, this state doesn't happen */
11638 if (!kind)
11639 kind = "yield not allowed";
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -070011640 /* Fall through */
Thierry Fournier670db242020-11-28 10:49:59 +010011641 case LUA_ERRMEM:
11642 if (!kind)
11643 kind = "out of memory error";
Thierry Fournierb8cef172020-11-28 15:37:17 +010011644 lua_settop(L, 0);
11645 lua_pop(L, 1);
Christopher Fauletd09cc512021-03-24 14:48:45 +010011646 trace = hlua_traceback(L, ", ");
Thierry Fournier670db242020-11-28 10:49:59 +010011647 ha_alert("Lua init: %s: %s\n", kind, trace);
11648 return_status = 0;
11649 break;
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +010011650 }
Thierry Fournier670db242020-11-28 10:49:59 +010011651 if (!return_status)
11652 break;
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +010011653 }
Thierry Fournier3c539322020-11-28 16:05:05 +010011654
11655 lua_atpanic(L, hlua_panic_safe);
Thierry Fournier670db242020-11-28 10:49:59 +010011656 return return_status;
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +010011657}
11658
Thierry Fournierb8cef172020-11-28 15:37:17 +010011659int hlua_post_init()
11660{
Thierry Fournier59f11be2020-11-29 00:37:41 +010011661 int ret;
11662 int i;
11663 int errors;
11664 char *err = NULL;
11665 struct hlua_function *fcn;
Christopher Faulet69c581a2021-05-31 08:54:04 +020011666 struct hlua_reg_filter *reg_flt;
Thierry Fournier59f11be2020-11-29 00:37:41 +010011667
Willy Tarreaub1310492021-08-30 09:35:18 +020011668#if defined(USE_OPENSSL)
Thierry Fournierb8cef172020-11-28 15:37:17 +010011669 /* Initialize SSL server. */
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +010011670 if (socket_ssl->xprt->prepare_srv) {
Thierry Fournierb8cef172020-11-28 15:37:17 +010011671 int saved_used_backed = global.ssl_used_backend;
11672 // don't affect maxconn automatic computation
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +010011673 socket_ssl->xprt->prepare_srv(socket_ssl);
Thierry Fournierb8cef172020-11-28 15:37:17 +010011674 global.ssl_used_backend = saved_used_backed;
11675 }
11676#endif
11677
Thierry Fournierc7492592020-11-28 23:57:24 +010011678 /* Perform post init of common thread */
11679 hlua_state_id = 0;
Willy Tarreau43ab05b2021-09-28 09:43:11 +020011680 ha_set_thread(&ha_thread_info[0]);
Thierry Fournier59f11be2020-11-29 00:37:41 +010011681 ret = hlua_post_init_state(hlua_states[hlua_state_id]);
11682 if (ret == 0)
11683 return 0;
11684
11685 /* init remaining lua states and load files */
11686 for (hlua_state_id = 2; hlua_state_id < global.nbthread + 1; hlua_state_id++) {
11687
11688 /* set thread context */
Willy Tarreau43ab05b2021-09-28 09:43:11 +020011689 ha_set_thread(&ha_thread_info[hlua_state_id - 1]);
Thierry Fournier59f11be2020-11-29 00:37:41 +010011690
11691 /* Init lua state */
11692 hlua_states[hlua_state_id] = hlua_init_state(hlua_state_id);
11693
11694 /* Load lua files */
11695 for (i = 0; per_thread_load && per_thread_load[i]; i++) {
11696 ret = hlua_load_state(per_thread_load[i], hlua_states[hlua_state_id], &err);
11697 if (ret != 0) {
11698 ha_alert("Lua init: %s\n", err);
11699 return 0;
11700 }
11701 }
11702 }
11703
11704 /* Reset thread context */
Willy Tarreau43ab05b2021-09-28 09:43:11 +020011705 ha_set_thread(NULL);
Thierry Fournier59f11be2020-11-29 00:37:41 +010011706
11707 /* Execute post init for all states */
11708 for (hlua_state_id = 1; hlua_state_id < global.nbthread + 1; hlua_state_id++) {
11709
11710 /* set thread context */
Willy Tarreau43ab05b2021-09-28 09:43:11 +020011711 ha_set_thread(&ha_thread_info[hlua_state_id - 1]);
Thierry Fournier59f11be2020-11-29 00:37:41 +010011712
11713 /* run post init */
11714 ret = hlua_post_init_state(hlua_states[hlua_state_id]);
11715 if (ret == 0)
11716 return 0;
11717 }
11718
11719 /* Reset thread context */
Willy Tarreau43ab05b2021-09-28 09:43:11 +020011720 ha_set_thread(NULL);
Thierry Fournier59f11be2020-11-29 00:37:41 +010011721
11722 /* control functions registering. Each function must have:
11723 * - only the function_ref[0] set positive and all other to -1
11724 * - only the function_ref[0] set to -1 and all other positive
11725 * This ensure a same reference is not used both in shared
11726 * lua state and thread dedicated lua state. Note: is the case
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +050011727 * reach, the shared state is priority, but the bug will be
Thierry Fournier59f11be2020-11-29 00:37:41 +010011728 * complicated to found for the end user.
11729 */
11730 errors = 0;
11731 list_for_each_entry(fcn, &referenced_functions, l) {
11732 ret = 0;
11733 for (i = 1; i < global.nbthread + 1; i++) {
11734 if (fcn->function_ref[i] == -1)
11735 ret--;
11736 else
11737 ret++;
11738 }
11739 if (abs(ret) != global.nbthread) {
11740 ha_alert("Lua function '%s' is not referenced in all thread. "
11741 "Expect function in all thread or in none thread.\n", fcn->name);
11742 errors++;
11743 continue;
11744 }
11745
11746 if ((fcn->function_ref[0] == -1) == (ret < 0)) {
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +050011747 ha_alert("Lua function '%s' is referenced both ins shared Lua context (through lua-load) "
11748 "and per-thread Lua context (through lua-load-per-thread). these two context "
Thierry Fournier59f11be2020-11-29 00:37:41 +010011749 "exclusive.\n", fcn->name);
11750 errors++;
11751 }
11752 }
11753
Christopher Faulet69c581a2021-05-31 08:54:04 +020011754 /* Do the same with registered filters */
11755 list_for_each_entry(reg_flt, &referenced_filters, l) {
11756 ret = 0;
11757 for (i = 1; i < global.nbthread + 1; i++) {
11758 if (reg_flt->flt_ref[i] == -1)
11759 ret--;
11760 else
11761 ret++;
11762 }
11763 if (abs(ret) != global.nbthread) {
11764 ha_alert("Lua filter '%s' is not referenced in all thread. "
11765 "Expect function in all thread or in none thread.\n", reg_flt->name);
11766 errors++;
11767 continue;
11768 }
11769
11770 if ((reg_flt->flt_ref[0] == -1) == (ret < 0)) {
11771 ha_alert("Lua filter '%s' is referenced both ins shared Lua context (through lua-load) "
11772 "and per-thread Lua context (through lua-load-per-thread). these two context "
11773 "exclusive.\n", fcn->name);
11774 errors++;
11775 }
11776 }
11777
11778
Thierry Fournier59f11be2020-11-29 00:37:41 +010011779 if (errors > 0)
11780 return 0;
11781
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +050011782 /* after this point, this global will no longer be used, so set to
Thierry Fournier59f11be2020-11-29 00:37:41 +010011783 * -1 in order to have probably a segfault if someone use it
11784 */
11785 hlua_state_id = -1;
11786
11787 return 1;
Thierry Fournierb8cef172020-11-28 15:37:17 +010011788}
11789
Willy Tarreau32f61e22015-03-18 17:54:59 +010011790/* The memory allocator used by the Lua stack. <ud> is a pointer to the
11791 * allocator's context. <ptr> is the pointer to alloc/free/realloc. <osize>
11792 * is the previously allocated size or the kind of object in case of a new
Willy Tarreaud36c7fa2020-12-02 12:26:29 +010011793 * allocation. <nsize> is the requested new size. A new allocation is
11794 * indicated by <ptr> being NULL. A free is indicated by <nsize> being
Willy Tarreaucdb53462020-12-02 12:12:00 +010011795 * zero. This one verifies that the limits are respected but is optimized
11796 * for the fast case where limits are not used, hence stats are not updated.
Willy Tarreaua5efdff2021-10-22 16:00:02 +020011797 *
11798 * Warning: while this API ressembles glibc's realloc() a lot, glibc surpasses
11799 * POSIX by making realloc(ptr,0) an effective free(), but others do not do
11800 * that and will simply allocate zero as if it were the result of malloc(0),
11801 * so mapping this onto realloc() will lead to memory leaks on non-glibc
11802 * systems.
Willy Tarreau32f61e22015-03-18 17:54:59 +010011803 */
11804static void *hlua_alloc(void *ud, void *ptr, size_t osize, size_t nsize)
11805{
11806 struct hlua_mem_allocator *zone = ud;
Willy Tarreaucdb53462020-12-02 12:12:00 +010011807 size_t limit, old, new;
11808
11809 /* a limit of ~0 means unlimited and boot complete, so there's no need
11810 * for accounting anymore.
11811 */
Willy Tarreaua5efdff2021-10-22 16:00:02 +020011812 if (likely(~zone->limit == 0)) {
11813 if (!nsize)
11814 ha_free(&ptr);
11815 else
11816 ptr = realloc(ptr, nsize);
11817 return ptr;
11818 }
Willy Tarreau32f61e22015-03-18 17:54:59 +010011819
Willy Tarreaud36c7fa2020-12-02 12:26:29 +010011820 if (!ptr)
11821 osize = 0;
Willy Tarreau32f61e22015-03-18 17:54:59 +010011822
Willy Tarreaucdb53462020-12-02 12:12:00 +010011823 /* enforce strict limits across all threads */
11824 limit = zone->limit;
11825 old = _HA_ATOMIC_LOAD(&zone->allocated);
11826 do {
11827 new = old + nsize - osize;
11828 if (unlikely(nsize && limit && new > limit))
11829 return NULL;
11830 } while (!_HA_ATOMIC_CAS(&zone->allocated, &old, new));
Willy Tarreau32f61e22015-03-18 17:54:59 +010011831
Willy Tarreaua5efdff2021-10-22 16:00:02 +020011832 if (!nsize)
11833 ha_free(&ptr);
11834 else
11835 ptr = realloc(ptr, nsize);
Willy Tarreaucdb53462020-12-02 12:12:00 +010011836
11837 if (unlikely(!ptr && nsize)) // failed
11838 _HA_ATOMIC_SUB(&zone->allocated, nsize - osize);
11839
11840 __ha_barrier_atomic_store();
Willy Tarreau32f61e22015-03-18 17:54:59 +010011841 return ptr;
11842}
11843
Thierry Fournierecb83c22020-11-28 15:49:44 +010011844/* This function can fail with an abort() due to a Lua critical error.
Thierry FOURNIERbabae282015-09-17 11:36:37 +020011845 * We are in the initialisation process of HAProxy, this abort() is
11846 * tolerated.
11847 */
Thierry Fournierecb83c22020-11-28 15:49:44 +010011848lua_State *hlua_init_state(int thread_num)
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +010011849{
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +010011850 int i;
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +010011851 int idx;
11852 struct sample_fetch *sf;
Thierry FOURNIER594afe72015-03-10 23:58:30 +010011853 struct sample_conv *sc;
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +010011854 char *p;
Thierry Fournierfd107a22016-02-19 19:57:23 +010011855 const char *error_msg;
Thierry Fournier4234dbd2020-11-28 13:18:23 +010011856 void **context;
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011857 lua_State *L;
Thierry Fournier59f11be2020-11-29 00:37:41 +010011858 struct prepend_path *pp;
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +010011859
Thierry FOURNIER380d0932015-01-23 14:27:52 +010011860 /* Init main lua stack. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011861 L = lua_newstate(hlua_alloc, &hlua_global_allocator);
Thierry FOURNIER380d0932015-01-23 14:27:52 +010011862
Thierry Fournier4234dbd2020-11-28 13:18:23 +010011863 /* Initialise Lua context to NULL */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011864 context = lua_getextraspace(L);
Thierry Fournier4234dbd2020-11-28 13:18:23 +010011865 *context = NULL;
11866
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -080011867 /* From this point, until the end of the initialisation function,
Thierry FOURNIERbabae282015-09-17 11:36:37 +020011868 * the Lua function can fail with an abort. We are in the initialisation
11869 * process of HAProxy, this abort() is tolerated.
11870 */
11871
Thierry Fournier3c539322020-11-28 16:05:05 +010011872 /* Call post initialisation function in safe environment. */
11873 if (setjmp(safe_ljmp_env) != 0) {
11874 lua_atpanic(L, hlua_panic_safe);
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011875 if (lua_type(L, -1) == LUA_TSTRING)
11876 error_msg = lua_tostring(L, -1);
Thierry Fournier2f05cc62020-11-28 16:08:02 +010011877 else
11878 error_msg = "critical error";
11879 fprintf(stderr, "Lua init: %s.\n", error_msg);
11880 exit(1);
Thierry Fournier3c539322020-11-28 16:05:05 +010011881 } else {
11882 lua_atpanic(L, hlua_panic_ljmp);
Thierry Fournier2f05cc62020-11-28 16:08:02 +010011883 }
11884
Thierry FOURNIER380d0932015-01-23 14:27:52 +010011885 /* Initialise lua. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011886 luaL_openlibs(L);
Tim Duesterhus541fe1e2020-01-12 13:55:41 +010011887#define HLUA_PREPEND_PATH_TOSTRING1(x) #x
11888#define HLUA_PREPEND_PATH_TOSTRING(x) HLUA_PREPEND_PATH_TOSTRING1(x)
11889#ifdef HLUA_PREPEND_PATH
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011890 hlua_prepend_path(L, "path", HLUA_PREPEND_PATH_TOSTRING(HLUA_PREPEND_PATH));
Tim Duesterhus541fe1e2020-01-12 13:55:41 +010011891#endif
11892#ifdef HLUA_PREPEND_CPATH
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011893 hlua_prepend_path(L, "cpath", HLUA_PREPEND_PATH_TOSTRING(HLUA_PREPEND_CPATH));
Tim Duesterhus541fe1e2020-01-12 13:55:41 +010011894#endif
11895#undef HLUA_PREPEND_PATH_TOSTRING
11896#undef HLUA_PREPEND_PATH_TOSTRING1
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +010011897
Thierry Fournier59f11be2020-11-29 00:37:41 +010011898 /* Apply configured prepend path */
11899 list_for_each_entry(pp, &prepend_path_list, l)
11900 hlua_prepend_path(L, pp->type, pp->path);
11901
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +010011902 /*
11903 *
11904 * Create "core" object.
11905 *
11906 */
11907
Thierry FOURNIERa2d8c652015-03-11 17:29:39 +010011908 /* This table entry is the object "core" base. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011909 lua_newtable(L);
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +010011910
Thierry Fournierecb83c22020-11-28 15:49:44 +010011911 /* set the thread id */
11912 hlua_class_const_int(L, "thread", thread_num);
11913
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +010011914 /* Push the loglevel constants. */
Willy Tarreau80f5fae2015-02-27 16:38:20 +010011915 for (i = 0; i < NB_LOG_LEVELS; i++)
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011916 hlua_class_const_int(L, log_levels[i], i);
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +010011917
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +010011918 /* Register special functions. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011919 hlua_class_function(L, "register_init", hlua_register_init);
11920 hlua_class_function(L, "register_task", hlua_register_task);
11921 hlua_class_function(L, "register_fetches", hlua_register_fetches);
11922 hlua_class_function(L, "register_converters", hlua_register_converters);
11923 hlua_class_function(L, "register_action", hlua_register_action);
11924 hlua_class_function(L, "register_service", hlua_register_service);
11925 hlua_class_function(L, "register_cli", hlua_register_cli);
Christopher Faulet69c581a2021-05-31 08:54:04 +020011926 hlua_class_function(L, "register_filter", hlua_register_filter);
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011927 hlua_class_function(L, "yield", hlua_yield);
11928 hlua_class_function(L, "set_nice", hlua_set_nice);
11929 hlua_class_function(L, "sleep", hlua_sleep);
11930 hlua_class_function(L, "msleep", hlua_msleep);
11931 hlua_class_function(L, "add_acl", hlua_add_acl);
11932 hlua_class_function(L, "del_acl", hlua_del_acl);
11933 hlua_class_function(L, "set_map", hlua_set_map);
11934 hlua_class_function(L, "del_map", hlua_del_map);
11935 hlua_class_function(L, "tcp", hlua_socket_new);
William Lallemand3956c4e2021-09-21 16:25:15 +020011936 hlua_class_function(L, "httpclient", hlua_httpclient_new);
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011937 hlua_class_function(L, "log", hlua_log);
11938 hlua_class_function(L, "Debug", hlua_log_debug);
11939 hlua_class_function(L, "Info", hlua_log_info);
11940 hlua_class_function(L, "Warning", hlua_log_warning);
11941 hlua_class_function(L, "Alert", hlua_log_alert);
11942 hlua_class_function(L, "done", hlua_done);
11943 hlua_fcn_reg_core_fcn(L);
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +010011944
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011945 lua_setglobal(L, "core");
Thierry FOURNIER65f34c62015-02-16 20:11:43 +010011946
11947 /*
11948 *
Christopher Faulet0f3c8902020-01-31 18:57:12 +010011949 * Create "act" object.
11950 *
11951 */
11952
11953 /* This table entry is the object "act" base. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011954 lua_newtable(L);
Christopher Faulet0f3c8902020-01-31 18:57:12 +010011955
11956 /* push action return constants */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011957 hlua_class_const_int(L, "CONTINUE", ACT_RET_CONT);
11958 hlua_class_const_int(L, "STOP", ACT_RET_STOP);
11959 hlua_class_const_int(L, "YIELD", ACT_RET_YIELD);
11960 hlua_class_const_int(L, "ERROR", ACT_RET_ERR);
11961 hlua_class_const_int(L, "DONE", ACT_RET_DONE);
11962 hlua_class_const_int(L, "DENY", ACT_RET_DENY);
11963 hlua_class_const_int(L, "ABORT", ACT_RET_ABRT);
11964 hlua_class_const_int(L, "INVALID", ACT_RET_INV);
Christopher Faulet0f3c8902020-01-31 18:57:12 +010011965
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011966 hlua_class_function(L, "wake_time", hlua_set_wake_time);
Christopher Faulet2c2c2e32020-01-31 19:07:52 +010011967
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011968 lua_setglobal(L, "act");
Christopher Faulet0f3c8902020-01-31 18:57:12 +010011969
11970 /*
11971 *
Christopher Faulet69c581a2021-05-31 08:54:04 +020011972 * Create "Filter" object.
11973 *
11974 */
11975
11976 /* This table entry is the object "filter" base. */
11977 lua_newtable(L);
11978
11979 /* push flags and constants */
11980 hlua_class_const_int(L, "CONTINUE", 1);
11981 hlua_class_const_int(L, "WAIT", 0);
11982 hlua_class_const_int(L, "ERROR", -1);
11983
11984 hlua_class_const_int(L, "FLT_CFG_FL_HTX", FLT_CFG_FL_HTX);
11985
Christopher Fauletc404f112020-02-26 15:03:09 +010011986 hlua_class_function(L, "wake_time", hlua_set_wake_time);
11987 hlua_class_function(L, "register_data_filter", hlua_register_data_filter);
11988 hlua_class_function(L, "unregister_data_filter", hlua_unregister_data_filter);
11989
Christopher Faulet69c581a2021-05-31 08:54:04 +020011990 lua_setglobal(L, "filter");
11991
11992 /*
11993 *
Thierry FOURNIER3def3932015-04-07 11:27:54 +020011994 * Register class Map
11995 *
11996 */
11997
11998 /* This table entry is the object "Map" base. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011999 lua_newtable(L);
Thierry FOURNIER3def3932015-04-07 11:27:54 +020012000
12001 /* register pattern types. */
12002 for (i=0; i<PAT_MATCH_NUM; i++)
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012003 hlua_class_const_int(L, pat_match_names[i], i);
Thierry FOURNIER4dc71972017-01-28 08:33:08 +010012004 for (i=0; i<PAT_MATCH_NUM; i++) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +020012005 snprintf(trash.area, trash.size, "_%s", pat_match_names[i]);
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012006 hlua_class_const_int(L, trash.area, i);
Thierry FOURNIER4dc71972017-01-28 08:33:08 +010012007 }
Thierry FOURNIER3def3932015-04-07 11:27:54 +020012008
12009 /* register constructor. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012010 hlua_class_function(L, "new", hlua_map_new);
Thierry FOURNIER3def3932015-04-07 11:27:54 +020012011
12012 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012013 lua_newtable(L);
Thierry FOURNIER3def3932015-04-07 11:27:54 +020012014
Ilya Shipitsind4259502020-04-08 01:07:56 +050012015 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012016 lua_pushstring(L, "__index");
12017 lua_newtable(L);
Thierry FOURNIER3def3932015-04-07 11:27:54 +020012018
12019 /* Register . */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012020 hlua_class_function(L, "lookup", hlua_map_lookup);
12021 hlua_class_function(L, "slookup", hlua_map_slookup);
Thierry FOURNIER3def3932015-04-07 11:27:54 +020012022
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012023 lua_rawset(L, -3);
Thierry FOURNIER3def3932015-04-07 11:27:54 +020012024
Thierry Fournier45e78d72016-02-19 18:34:46 +010012025 /* Register previous table in the registry with reference and named entry.
12026 * The function hlua_register_metatable() pops the stack, so we
12027 * previously create a copy of the table.
12028 */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012029 lua_pushvalue(L, -1); /* Copy the -1 entry and push it on the stack. */
12030 class_map_ref = hlua_register_metatable(L, CLASS_MAP);
Thierry FOURNIER3def3932015-04-07 11:27:54 +020012031
12032 /* Assign the metatable to the mai Map object. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012033 lua_setmetatable(L, -2);
Thierry FOURNIER3def3932015-04-07 11:27:54 +020012034
12035 /* Set a name to the table. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012036 lua_setglobal(L, "Map");
Thierry FOURNIER3def3932015-04-07 11:27:54 +020012037
12038 /*
12039 *
William Lallemand30fcca12022-03-30 12:03:12 +020012040 * Register "CertCache" class
12041 *
12042 */
12043
12044 /* Create and fill the metatable. */
12045 lua_newtable(L);
12046 /* Register */
12047 hlua_class_function(L, "set", hlua_ckch_set);
12048 lua_setglobal(L, CLASS_CERTCACHE); /* Create global object called Regex */
12049
12050 /*
12051 *
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +010012052 * Register class Channel
12053 *
12054 */
12055
12056 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012057 lua_newtable(L);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +010012058
Ilya Shipitsind4259502020-04-08 01:07:56 +050012059 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012060 lua_pushstring(L, "__index");
12061 lua_newtable(L);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +010012062
12063 /* Register . */
Christopher Faulet6a79fc12021-08-06 16:02:36 +020012064 hlua_class_function(L, "data", hlua_channel_get_data);
12065 hlua_class_function(L, "line", hlua_channel_get_line);
12066 hlua_class_function(L, "set", hlua_channel_set_data);
12067 hlua_class_function(L, "remove", hlua_channel_del_data);
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012068 hlua_class_function(L, "append", hlua_channel_append);
Christopher Faulet6a79fc12021-08-06 16:02:36 +020012069 hlua_class_function(L, "prepend", hlua_channel_prepend);
12070 hlua_class_function(L, "insert", hlua_channel_insert_data);
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012071 hlua_class_function(L, "send", hlua_channel_send);
12072 hlua_class_function(L, "forward", hlua_channel_forward);
Christopher Faulet6a79fc12021-08-06 16:02:36 +020012073 hlua_class_function(L, "input", hlua_channel_get_in_len);
12074 hlua_class_function(L, "output", hlua_channel_get_out_len);
12075 hlua_class_function(L, "may_recv", hlua_channel_may_recv);
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012076 hlua_class_function(L, "is_full", hlua_channel_is_full);
12077 hlua_class_function(L, "is_resp", hlua_channel_is_resp);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +010012078
Christopher Faulet6a79fc12021-08-06 16:02:36 +020012079 /* Deprecated API */
12080 hlua_class_function(L, "get", hlua_channel_get);
12081 hlua_class_function(L, "dup", hlua_channel_dup);
12082 hlua_class_function(L, "getline", hlua_channel_getline);
12083 hlua_class_function(L, "get_in_len", hlua_channel_get_in_len);
12084 hlua_class_function(L, "get_out_len", hlua_channel_get_out_len);
12085
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012086 lua_rawset(L, -3);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +010012087
12088 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012089 class_channel_ref = hlua_register_metatable(L, CLASS_CHANNEL);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +010012090
12091 /*
12092 *
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +010012093 * Register class Fetches
Thierry FOURNIER65f34c62015-02-16 20:11:43 +010012094 *
12095 */
12096
12097 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012098 lua_newtable(L);
Thierry FOURNIER65f34c62015-02-16 20:11:43 +010012099
Ilya Shipitsind4259502020-04-08 01:07:56 +050012100 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012101 lua_pushstring(L, "__index");
12102 lua_newtable(L);
Thierry FOURNIER65f34c62015-02-16 20:11:43 +010012103
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +010012104 /* Browse existing fetches and create the associated
12105 * object method.
12106 */
12107 sf = NULL;
12108 while ((sf = sample_fetch_getnext(sf, &idx)) != NULL) {
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +010012109 /* gL.Tua doesn't support '.' and '-' in the function names, replace it
12110 * by an underscore.
12111 */
Willy Tarreau5ef96562021-08-26 16:48:53 +020012112 strlcpy2(trash.area, sf->kw, trash.size);
Willy Tarreau843b7cb2018-07-13 10:54:26 +020012113 for (p = trash.area; *p; p++)
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +010012114 if (*p == '.' || *p == '-' || *p == '+')
12115 *p = '_';
12116
12117 /* Register the function. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012118 lua_pushstring(L, trash.area);
12119 lua_pushlightuserdata(L, sf);
12120 lua_pushcclosure(L, hlua_run_sample_fetch, 1);
12121 lua_rawset(L, -3);
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +010012122 }
12123
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012124 lua_rawset(L, -3);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +010012125
12126 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012127 class_fetches_ref = hlua_register_metatable(L, CLASS_FETCHES);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +010012128
12129 /*
12130 *
Thierry FOURNIER594afe72015-03-10 23:58:30 +010012131 * Register class Converters
12132 *
12133 */
12134
12135 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012136 lua_newtable(L);
Thierry FOURNIER594afe72015-03-10 23:58:30 +010012137
12138 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012139 lua_pushstring(L, "__index");
12140 lua_newtable(L);
Thierry FOURNIER594afe72015-03-10 23:58:30 +010012141
12142 /* Browse existing converters and create the associated
12143 * object method.
12144 */
12145 sc = NULL;
12146 while ((sc = sample_conv_getnext(sc, &idx)) != NULL) {
Thierry FOURNIER594afe72015-03-10 23:58:30 +010012147 /* gL.Tua doesn't support '.' and '-' in the function names, replace it
12148 * by an underscore.
12149 */
Willy Tarreau5ef96562021-08-26 16:48:53 +020012150 strlcpy2(trash.area, sc->kw, trash.size);
Willy Tarreau843b7cb2018-07-13 10:54:26 +020012151 for (p = trash.area; *p; p++)
Thierry FOURNIER594afe72015-03-10 23:58:30 +010012152 if (*p == '.' || *p == '-' || *p == '+')
12153 *p = '_';
12154
12155 /* Register the function. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012156 lua_pushstring(L, trash.area);
12157 lua_pushlightuserdata(L, sc);
12158 lua_pushcclosure(L, hlua_run_sample_conv, 1);
12159 lua_rawset(L, -3);
Thierry FOURNIER594afe72015-03-10 23:58:30 +010012160 }
12161
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012162 lua_rawset(L, -3);
Thierry FOURNIER594afe72015-03-10 23:58:30 +010012163
12164 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012165 class_converters_ref = hlua_register_metatable(L, CLASS_CONVERTERS);
Thierry FOURNIER594afe72015-03-10 23:58:30 +010012166
12167 /*
12168 *
Thierry FOURNIER08504f42015-03-16 14:17:08 +010012169 * Register class HTTP
12170 *
12171 */
12172
12173 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012174 lua_newtable(L);
Thierry FOURNIER08504f42015-03-16 14:17:08 +010012175
Ilya Shipitsind4259502020-04-08 01:07:56 +050012176 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012177 lua_pushstring(L, "__index");
12178 lua_newtable(L);
Thierry FOURNIER08504f42015-03-16 14:17:08 +010012179
12180 /* Register Lua functions. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012181 hlua_class_function(L, "req_get_headers",hlua_http_req_get_headers);
12182 hlua_class_function(L, "req_del_header", hlua_http_req_del_hdr);
12183 hlua_class_function(L, "req_rep_header", hlua_http_req_rep_hdr);
12184 hlua_class_function(L, "req_rep_value", hlua_http_req_rep_val);
12185 hlua_class_function(L, "req_add_header", hlua_http_req_add_hdr);
12186 hlua_class_function(L, "req_set_header", hlua_http_req_set_hdr);
12187 hlua_class_function(L, "req_set_method", hlua_http_req_set_meth);
12188 hlua_class_function(L, "req_set_path", hlua_http_req_set_path);
12189 hlua_class_function(L, "req_set_query", hlua_http_req_set_query);
12190 hlua_class_function(L, "req_set_uri", hlua_http_req_set_uri);
Thierry FOURNIER08504f42015-03-16 14:17:08 +010012191
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012192 hlua_class_function(L, "res_get_headers",hlua_http_res_get_headers);
12193 hlua_class_function(L, "res_del_header", hlua_http_res_del_hdr);
12194 hlua_class_function(L, "res_rep_header", hlua_http_res_rep_hdr);
12195 hlua_class_function(L, "res_rep_value", hlua_http_res_rep_val);
12196 hlua_class_function(L, "res_add_header", hlua_http_res_add_hdr);
12197 hlua_class_function(L, "res_set_header", hlua_http_res_set_hdr);
12198 hlua_class_function(L, "res_set_status", hlua_http_res_set_status);
Thierry FOURNIER08504f42015-03-16 14:17:08 +010012199
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012200 lua_rawset(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +010012201
12202 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012203 class_http_ref = hlua_register_metatable(L, CLASS_HTTP);
Thierry FOURNIER08504f42015-03-16 14:17:08 +010012204
Christopher Fauletdf97ac42020-02-26 16:57:19 +010012205 /*
12206 *
12207 * Register class HTTPMessage
12208 *
12209 */
12210
12211 /* Create and fill the metatable. */
12212 lua_newtable(L);
12213
Ilya Shipitsinff0f2782021-08-22 22:18:07 +050012214 /* Create and fill the __index entry. */
Christopher Fauletdf97ac42020-02-26 16:57:19 +010012215 lua_pushstring(L, "__index");
12216 lua_newtable(L);
12217
12218 /* Register Lua functions. */
12219 hlua_class_function(L, "is_resp", hlua_http_msg_is_resp);
12220 hlua_class_function(L, "get_stline", hlua_http_msg_get_stline);
12221 hlua_class_function(L, "get_headers", hlua_http_msg_get_headers);
12222 hlua_class_function(L, "del_header", hlua_http_msg_del_hdr);
12223 hlua_class_function(L, "rep_header", hlua_http_msg_rep_hdr);
12224 hlua_class_function(L, "rep_value", hlua_http_msg_rep_val);
12225 hlua_class_function(L, "add_header", hlua_http_msg_add_hdr);
12226 hlua_class_function(L, "set_header", hlua_http_msg_set_hdr);
12227 hlua_class_function(L, "set_method", hlua_http_msg_set_meth);
12228 hlua_class_function(L, "set_path", hlua_http_msg_set_path);
12229 hlua_class_function(L, "set_query", hlua_http_msg_set_query);
12230 hlua_class_function(L, "set_uri", hlua_http_msg_set_uri);
12231 hlua_class_function(L, "set_status", hlua_http_msg_set_status);
12232 hlua_class_function(L, "is_full", hlua_http_msg_is_full);
12233 hlua_class_function(L, "may_recv", hlua_http_msg_may_recv);
12234 hlua_class_function(L, "eom", hlua_http_msg_is_eom);
12235 hlua_class_function(L, "input", hlua_http_msg_get_in_len);
12236 hlua_class_function(L, "output", hlua_http_msg_get_out_len);
12237
12238 hlua_class_function(L, "body", hlua_http_msg_get_body);
12239 hlua_class_function(L, "set", hlua_http_msg_set_data);
12240 hlua_class_function(L, "remove", hlua_http_msg_del_data);
12241 hlua_class_function(L, "append", hlua_http_msg_append);
12242 hlua_class_function(L, "prepend", hlua_http_msg_prepend);
12243 hlua_class_function(L, "insert", hlua_http_msg_insert_data);
12244 hlua_class_function(L, "set_eom", hlua_http_msg_set_eom);
12245 hlua_class_function(L, "unset_eom", hlua_http_msg_unset_eom);
12246
12247 hlua_class_function(L, "send", hlua_http_msg_send);
12248 hlua_class_function(L, "forward", hlua_http_msg_forward);
12249
12250 lua_rawset(L, -3);
12251
12252 /* Register previous table in the registry with reference and named entry. */
12253 class_http_msg_ref = hlua_register_metatable(L, CLASS_HTTP_MSG);
William Lallemand3956c4e2021-09-21 16:25:15 +020012254
12255 /*
12256 *
12257 * Register class HTTPClient
12258 *
12259 */
12260
12261 /* Create and fill the metatable. */
12262 lua_newtable(L);
12263 lua_pushstring(L, "__index");
12264 lua_newtable(L);
12265 hlua_class_function(L, "get", hlua_httpclient_get);
William Lallemanddc2cc902021-10-26 11:43:26 +020012266 hlua_class_function(L, "head", hlua_httpclient_head);
12267 hlua_class_function(L, "put", hlua_httpclient_put);
12268 hlua_class_function(L, "post", hlua_httpclient_post);
12269 hlua_class_function(L, "delete", hlua_httpclient_delete);
William Lallemand3956c4e2021-09-21 16:25:15 +020012270 lua_settable(L, -3); /* Sets the __index entry. */
William Lallemandf77f1de2021-09-28 19:10:38 +020012271 /* Register the garbage collector entry. */
12272 lua_pushstring(L, "__gc");
12273 lua_pushcclosure(L, hlua_httpclient_gc, 0);
12274 lua_settable(L, -3); /* Push the last 2 entries in the table at index -3 */
12275
William Lallemand3956c4e2021-09-21 16:25:15 +020012276
12277
12278 class_httpclient_ref = hlua_register_metatable(L, CLASS_HTTPCLIENT);
Thierry FOURNIER08504f42015-03-16 14:17:08 +010012279 /*
12280 *
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +020012281 * Register class AppletTCP
12282 *
12283 */
12284
12285 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012286 lua_newtable(L);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +020012287
Ilya Shipitsind4259502020-04-08 01:07:56 +050012288 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012289 lua_pushstring(L, "__index");
12290 lua_newtable(L);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +020012291
12292 /* Register Lua functions. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012293 hlua_class_function(L, "getline", hlua_applet_tcp_getline);
12294 hlua_class_function(L, "receive", hlua_applet_tcp_recv);
12295 hlua_class_function(L, "send", hlua_applet_tcp_send);
12296 hlua_class_function(L, "set_priv", hlua_applet_tcp_set_priv);
12297 hlua_class_function(L, "get_priv", hlua_applet_tcp_get_priv);
12298 hlua_class_function(L, "set_var", hlua_applet_tcp_set_var);
12299 hlua_class_function(L, "unset_var", hlua_applet_tcp_unset_var);
12300 hlua_class_function(L, "get_var", hlua_applet_tcp_get_var);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +020012301
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012302 lua_settable(L, -3);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +020012303
12304 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012305 class_applet_tcp_ref = hlua_register_metatable(L, CLASS_APPLET_TCP);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +020012306
12307 /*
12308 *
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +020012309 * Register class AppletHTTP
12310 *
12311 */
12312
12313 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012314 lua_newtable(L);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +020012315
Ilya Shipitsind4259502020-04-08 01:07:56 +050012316 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012317 lua_pushstring(L, "__index");
12318 lua_newtable(L);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +020012319
12320 /* Register Lua functions. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012321 hlua_class_function(L, "set_priv", hlua_applet_http_set_priv);
12322 hlua_class_function(L, "get_priv", hlua_applet_http_get_priv);
12323 hlua_class_function(L, "set_var", hlua_applet_http_set_var);
12324 hlua_class_function(L, "unset_var", hlua_applet_http_unset_var);
12325 hlua_class_function(L, "get_var", hlua_applet_http_get_var);
12326 hlua_class_function(L, "getline", hlua_applet_http_getline);
12327 hlua_class_function(L, "receive", hlua_applet_http_recv);
12328 hlua_class_function(L, "send", hlua_applet_http_send);
12329 hlua_class_function(L, "add_header", hlua_applet_http_addheader);
12330 hlua_class_function(L, "set_status", hlua_applet_http_status);
12331 hlua_class_function(L, "start_response", hlua_applet_http_start_response);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +020012332
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012333 lua_settable(L, -3);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +020012334
12335 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012336 class_applet_http_ref = hlua_register_metatable(L, CLASS_APPLET_HTTP);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +020012337
12338 /*
12339 *
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +010012340 * Register class TXN
12341 *
12342 */
12343
12344 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012345 lua_newtable(L);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +010012346
Ilya Shipitsind4259502020-04-08 01:07:56 +050012347 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012348 lua_pushstring(L, "__index");
12349 lua_newtable(L);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +010012350
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +010012351 /* Register Lua functions. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012352 hlua_class_function(L, "set_priv", hlua_set_priv);
12353 hlua_class_function(L, "get_priv", hlua_get_priv);
12354 hlua_class_function(L, "set_var", hlua_set_var);
12355 hlua_class_function(L, "unset_var", hlua_unset_var);
12356 hlua_class_function(L, "get_var", hlua_get_var);
12357 hlua_class_function(L, "done", hlua_txn_done);
12358 hlua_class_function(L, "reply", hlua_txn_reply_new);
12359 hlua_class_function(L, "set_loglevel", hlua_txn_set_loglevel);
12360 hlua_class_function(L, "set_tos", hlua_txn_set_tos);
12361 hlua_class_function(L, "set_mark", hlua_txn_set_mark);
12362 hlua_class_function(L, "set_priority_class", hlua_txn_set_priority_class);
12363 hlua_class_function(L, "set_priority_offset", hlua_txn_set_priority_offset);
12364 hlua_class_function(L, "deflog", hlua_txn_deflog);
12365 hlua_class_function(L, "log", hlua_txn_log);
12366 hlua_class_function(L, "Debug", hlua_txn_log_debug);
12367 hlua_class_function(L, "Info", hlua_txn_log_info);
12368 hlua_class_function(L, "Warning", hlua_txn_log_warning);
12369 hlua_class_function(L, "Alert", hlua_txn_log_alert);
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +010012370
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012371 lua_rawset(L, -3);
Thierry FOURNIER65f34c62015-02-16 20:11:43 +010012372
12373 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012374 class_txn_ref = hlua_register_metatable(L, CLASS_TXN);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012375
12376 /*
12377 *
Christopher Faulet700d9e82020-01-31 12:21:52 +010012378 * Register class reply
12379 *
12380 */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012381 lua_newtable(L);
12382 lua_pushstring(L, "__index");
12383 lua_newtable(L);
12384 hlua_class_function(L, "set_status", hlua_txn_reply_set_status);
12385 hlua_class_function(L, "add_header", hlua_txn_reply_add_header);
12386 hlua_class_function(L, "del_header", hlua_txn_reply_del_header);
12387 hlua_class_function(L, "set_body", hlua_txn_reply_set_body);
12388 lua_settable(L, -3); /* Sets the __index entry. */
12389 class_txn_reply_ref = luaL_ref(L, LUA_REGISTRYINDEX);
Christopher Faulet700d9e82020-01-31 12:21:52 +010012390
12391
12392 /*
12393 *
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012394 * Register class Socket
12395 *
12396 */
12397
12398 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012399 lua_newtable(L);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012400
Ilya Shipitsind4259502020-04-08 01:07:56 +050012401 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012402 lua_pushstring(L, "__index");
12403 lua_newtable(L);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012404
Baptiste Assmann84bb4932015-03-02 21:40:06 +010012405#ifdef USE_OPENSSL
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012406 hlua_class_function(L, "connect_ssl", hlua_socket_connect_ssl);
Baptiste Assmann84bb4932015-03-02 21:40:06 +010012407#endif
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012408 hlua_class_function(L, "connect", hlua_socket_connect);
12409 hlua_class_function(L, "send", hlua_socket_send);
12410 hlua_class_function(L, "receive", hlua_socket_receive);
12411 hlua_class_function(L, "close", hlua_socket_close);
12412 hlua_class_function(L, "getpeername", hlua_socket_getpeername);
12413 hlua_class_function(L, "getsockname", hlua_socket_getsockname);
12414 hlua_class_function(L, "setoption", hlua_socket_setoption);
12415 hlua_class_function(L, "settimeout", hlua_socket_settimeout);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012416
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012417 lua_rawset(L, -3); /* Push the last 2 entries in the table at index -3 */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012418
12419 /* Register the garbage collector entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012420 lua_pushstring(L, "__gc");
12421 lua_pushcclosure(L, hlua_socket_gc, 0);
12422 lua_rawset(L, -3); /* Push the last 2 entries in the table at index -3 */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012423
12424 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012425 class_socket_ref = hlua_register_metatable(L, CLASS_SOCKET);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012426
Thierry Fournieraafc7772020-12-04 11:47:47 +010012427 lua_atpanic(L, hlua_panic_safe);
12428
12429 return L;
12430}
12431
12432void hlua_init(void) {
12433 int i;
Amaury Denoyelle239fdbf2021-03-24 10:22:03 +010012434 char *errmsg;
Thierry Fournieraafc7772020-12-04 11:47:47 +010012435#ifdef USE_OPENSSL
12436 struct srv_kw *kw;
12437 int tmp_error;
12438 char *error;
12439 char *args[] = { /* SSL client configuration. */
12440 "ssl",
12441 "verify",
12442 "none",
12443 NULL
12444 };
12445#endif
12446
12447 /* Init post init function list head */
12448 for (i = 0; i < MAX_THREADS + 1; i++)
12449 LIST_INIT(&hlua_init_functions[i]);
12450
12451 /* Init state for common/shared lua parts */
12452 hlua_state_id = 0;
Willy Tarreau43ab05b2021-09-28 09:43:11 +020012453 ha_set_thread(NULL);
Thierry Fournieraafc7772020-12-04 11:47:47 +010012454 hlua_states[0] = hlua_init_state(0);
12455
12456 /* Init state 1 for thread 0. We have at least one thread. */
12457 hlua_state_id = 1;
Willy Tarreau43ab05b2021-09-28 09:43:11 +020012458 ha_set_thread(NULL);
Thierry Fournieraafc7772020-12-04 11:47:47 +010012459 hlua_states[1] = hlua_init_state(1);
12460
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012461 /* Proxy and server configuration initialisation. */
William Lallemand6bb77b92021-07-28 15:48:16 +020012462 socket_proxy = alloc_new_proxy("LUA-SOCKET", PR_CAP_FE|PR_CAP_BE|PR_CAP_INT, &errmsg);
Amaury Denoyelle239fdbf2021-03-24 10:22:03 +010012463 if (!socket_proxy) {
12464 fprintf(stderr, "Lua init: %s\n", errmsg);
12465 exit(1);
12466 }
12467 proxy_preset_defaults(socket_proxy);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012468
12469 /* Init TCP server: unchanged parameters */
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +010012470 socket_tcp = new_server(socket_proxy);
12471 if (!socket_tcp) {
12472 fprintf(stderr, "Lua init: failed to allocate tcp server socket\n");
12473 exit(1);
12474 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012475
12476#ifdef USE_OPENSSL
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012477 /* Init TCP server: unchanged parameters */
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +010012478 socket_ssl = new_server(socket_proxy);
12479 if (!socket_ssl) {
12480 fprintf(stderr, "Lua init: failed to allocate ssl server socket\n");
12481 exit(1);
12482 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012483
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +010012484 socket_ssl->use_ssl = 1;
12485 socket_ssl->xprt = xprt_get(XPRT_SSL);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012486
Bertrand Jacquin80839ff2021-01-21 19:14:46 +000012487 for (i = 0; args[i] != NULL; i++) {
12488 if ((kw = srv_find_kw(args[i])) != NULL) { /* Maybe it's registered server keyword */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012489 /*
12490 *
12491 * If the keyword is not known, we can search in the registered
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -080012492 * server keywords. This is useful to configure special SSL
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012493 * features like client certificates and ssl_verify.
12494 *
12495 */
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +010012496 tmp_error = kw->parse(args, &i, socket_proxy, socket_ssl, &error);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012497 if (tmp_error != 0) {
12498 fprintf(stderr, "INTERNAL ERROR: %s\n", error);
12499 abort(); /* This must be never arrives because the command line
12500 not editable by the user. */
12501 }
Bertrand Jacquin80839ff2021-01-21 19:14:46 +000012502 i += kw->skip;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012503 }
12504 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012505#endif
Thierry Fournier75933d42016-01-21 09:30:18 +010012506
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +010012507}
Willy Tarreaubb57d942016-12-21 19:04:56 +010012508
Tim Duesterhusd0c0ca22020-07-04 11:53:26 +020012509static void hlua_deinit()
12510{
Willy Tarreau186f3762020-12-04 11:48:12 +010012511 int thr;
Christopher Faulet69c581a2021-05-31 08:54:04 +020012512 struct hlua_reg_filter *reg_flt, *reg_flt_bck;
12513
12514 list_for_each_entry_safe(reg_flt, reg_flt_bck, &referenced_filters, l)
12515 release_hlua_reg_filter(reg_flt);
Willy Tarreau186f3762020-12-04 11:48:12 +010012516
12517 for (thr = 0; thr < MAX_THREADS+1; thr++) {
12518 if (hlua_states[thr])
12519 lua_close(hlua_states[thr]);
12520 }
Willy Tarreau430bf4a2021-03-04 09:45:32 +010012521
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +020012522 srv_drop(socket_tcp);
Willy Tarreau430bf4a2021-03-04 09:45:32 +010012523
Willy Tarreau0f143af2021-03-05 10:41:48 +010012524#ifdef USE_OPENSSL
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +020012525 srv_drop(socket_ssl);
Willy Tarreau0f143af2021-03-05 10:41:48 +010012526#endif
Amaury Denoyelle239fdbf2021-03-24 10:22:03 +010012527
12528 free_proxy(socket_proxy);
Tim Duesterhusd0c0ca22020-07-04 11:53:26 +020012529}
12530
12531REGISTER_POST_DEINIT(hlua_deinit);
12532
Willy Tarreau80713382018-11-26 10:19:54 +010012533static void hlua_register_build_options(void)
12534{
Willy Tarreaubb57d942016-12-21 19:04:56 +010012535 char *ptr = NULL;
Willy Tarreau80713382018-11-26 10:19:54 +010012536
Willy Tarreaubb57d942016-12-21 19:04:56 +010012537 memprintf(&ptr, "Built with Lua version : %s", LUA_RELEASE);
12538 hap_register_build_opts(ptr, 1);
12539}
Willy Tarreau80713382018-11-26 10:19:54 +010012540
12541INITCALL0(STG_REGISTER, hlua_register_build_options);