blob: 06fa163dc023637f690b0e5ded334e849d149b58 [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 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002784
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002785 /* Get hlua struct, or NULL if we execute from main lua state */
Thierry FOURNIER95ad96a2015-03-09 18:12:40 +01002786 hlua = hlua_gethlua(L);
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002787 if (!hlua)
2788 return 0;
Willy Tarreaubdc97a82015-08-24 15:42:28 +02002789
2790 /* inform the stream that we want to be notified whenever the
2791 * connection completes.
2792 */
Christopher Fauleta0bdec32022-04-04 07:51:21 +02002793 cs_cant_get(s->csf);
2794 cs_rx_endp_more(s->csf);
Thierry FOURNIER8c8fbbe2015-09-26 17:02:35 +02002795 appctx_wakeup(appctx);
Willy Tarreaubdc97a82015-08-24 15:42:28 +02002796
Willy Tarreauf31af932020-01-14 09:59:38 +01002797 hlua->gc_count++;
Thierry FOURNIER7c39ab42015-09-27 22:53:33 +02002798
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002799 if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_write, hlua->task)) {
2800 xref_unlock(&socket->xref, peer);
Thierry FOURNIER95ad96a2015-03-09 18:12:40 +01002801 WILL_LJMP(luaL_error(L, "out of memory"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002802 }
2803 xref_unlock(&socket->xref, peer);
PiBa-NL706d5ee2018-05-05 23:51:42 +02002804
2805 task_wakeup(s->task, TASK_WOKEN_INIT);
2806 /* Return yield waiting for connection. */
2807
Willy Tarreau9635e032018-10-16 17:52:55 +02002808 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_connect_yield, TICK_ETERNITY, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002809
2810 return 0;
2811}
2812
Baptiste Assmann84bb4932015-03-02 21:40:06 +01002813#ifdef USE_OPENSSL
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002814__LJMP static int hlua_socket_connect_ssl(struct lua_State *L)
2815{
2816 struct hlua_socket *socket;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002817 struct xref *peer;
2818 struct appctx *appctx;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002819 struct stream *s;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002820
2821 MAY_LJMP(check_args(L, 3, "connect_ssl"));
2822 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002823
2824 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002825 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002826 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002827 lua_pushnil(L);
2828 return 1;
2829 }
2830 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
Christopher Faulet908628c2022-03-25 16:43:49 +01002831 s = __cs_strm(appctx->owner);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002832
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +01002833 s->target = &socket_ssl->obj_type;
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002834 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002835 return MAY_LJMP(hlua_socket_connect(L));
2836}
Baptiste Assmann84bb4932015-03-02 21:40:06 +01002837#endif
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002838
2839__LJMP static int hlua_socket_setoption(struct lua_State *L)
2840{
2841 return 0;
2842}
2843
2844__LJMP static int hlua_socket_settimeout(struct lua_State *L)
2845{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002846 struct hlua_socket *socket;
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002847 int tmout;
Mark Lakes56cc1252018-03-27 09:48:06 +02002848 double dtmout;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002849 struct xref *peer;
2850 struct appctx *appctx;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002851 struct stream *s;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002852
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002853 MAY_LJMP(check_args(L, 2, "settimeout"));
2854
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002855 socket = MAY_LJMP(hlua_checksocket(L, 1));
Mark Lakes56cc1252018-03-27 09:48:06 +02002856
Cyril Bonté7ee465f2018-08-19 22:08:50 +02002857 /* convert the timeout to millis */
2858 dtmout = MAY_LJMP(luaL_checknumber(L, 2)) * 1000;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002859
Thierry Fournier17a921b2018-03-08 09:59:02 +01002860 /* Check for negative values */
Mark Lakes56cc1252018-03-27 09:48:06 +02002861 if (dtmout < 0)
Thierry Fournier17a921b2018-03-08 09:59:02 +01002862 WILL_LJMP(luaL_error(L, "settimeout: cannot set negatives values"));
2863
Mark Lakes56cc1252018-03-27 09:48:06 +02002864 if (dtmout > INT_MAX) /* overflow check */
Cyril Bonté7ee465f2018-08-19 22:08:50 +02002865 WILL_LJMP(luaL_error(L, "settimeout: cannot set values larger than %d ms", INT_MAX));
Mark Lakes56cc1252018-03-27 09:48:06 +02002866
2867 tmout = MS_TO_TICKS((int)dtmout);
Cyril Bonté7ee465f2018-08-19 22:08:50 +02002868 if (tmout == 0)
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05002869 tmout++; /* very small timeouts are adjusted to a minimum of 1ms */
Mark Lakes56cc1252018-03-27 09:48:06 +02002870
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002871 /* Check if we run on the same thread than the xreator thread.
2872 * We cannot access to the socket if the thread is different.
2873 */
2874 if (socket->tid != tid)
2875 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2876
Mark Lakes56cc1252018-03-27 09:48:06 +02002877 /* check for connection break. If some data were read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002878 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002879 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002880 hlua_pusherror(L, "socket: not yet initialised, you can't set timeouts.");
2881 WILL_LJMP(lua_error(L));
2882 return 0;
2883 }
2884 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
Christopher Faulet908628c2022-03-25 16:43:49 +01002885 s = __cs_strm(appctx->owner);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002886
Cyril Bonté7bb63452018-08-17 23:51:02 +02002887 s->sess->fe->timeout.connect = tmout;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002888 s->req.rto = tmout;
2889 s->req.wto = tmout;
2890 s->res.rto = tmout;
2891 s->res.wto = tmout;
Cyril Bonté7bb63452018-08-17 23:51:02 +02002892 s->req.rex = tick_add_ifset(now_ms, tmout);
2893 s->req.wex = tick_add_ifset(now_ms, tmout);
2894 s->res.rex = tick_add_ifset(now_ms, tmout);
2895 s->res.wex = tick_add_ifset(now_ms, tmout);
2896
2897 s->task->expire = tick_add_ifset(now_ms, tmout);
2898 task_queue(s->task);
2899
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002900 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002901
Thierry Fourniere9636f12018-03-08 09:54:32 +01002902 lua_pushinteger(L, 1);
Tim Duesterhus119a5f12018-01-06 19:16:25 +01002903 return 1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002904}
2905
2906__LJMP static int hlua_socket_new(lua_State *L)
2907{
2908 struct hlua_socket *socket;
2909 struct appctx *appctx;
Willy Tarreau15b5e142015-04-04 14:38:25 +02002910 struct session *sess;
Christopher Faulet13a35e52021-12-20 15:34:16 +01002911 struct conn_stream *cs;
Christopher Fauleta9e8b392022-03-23 11:01:09 +01002912 struct stream *s;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002913
2914 /* Check stack size. */
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01002915 if (!lua_checkstack(L, 3)) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002916 hlua_pusherror(L, "socket: full stack");
2917 goto out_fail_conf;
2918 }
2919
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01002920 /* Create the object: obj[0] = userdata. */
2921 lua_newtable(L);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002922 socket = MAY_LJMP(lua_newuserdata(L, sizeof(*socket)));
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01002923 lua_rawseti(L, -2, 0);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002924 memset(socket, 0, sizeof(*socket));
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002925 socket->tid = tid;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002926
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05002927 /* Check if the various memory pools are initialized. */
Willy Tarreaubafbe012017-11-24 17:34:44 +01002928 if (!pool_head_stream || !pool_head_buffer) {
Thierry FOURNIER4a6170c2015-03-09 17:07:10 +01002929 hlua_pusherror(L, "socket: uninitialized pools.");
2930 goto out_fail_conf;
2931 }
2932
Willy Tarreau87b09662015-04-03 00:22:06 +02002933 /* Pop a class stream metatable and affect it to the userdata. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002934 lua_rawgeti(L, LUA_REGISTRYINDEX, class_socket_ref);
2935 lua_setmetatable(L, -2);
2936
Willy Tarreaud420a972015-04-06 00:39:18 +02002937 /* Create the applet context */
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01002938 appctx = appctx_new(&update_applet, NULL);
Willy Tarreau61cf7c82015-04-06 00:48:33 +02002939 if (!appctx) {
2940 hlua_pusherror(L, "socket: out of memory");
Christopher Fauleta9e8b392022-03-23 11:01:09 +01002941 goto out_fail_conf;
Willy Tarreau61cf7c82015-04-06 00:48:33 +02002942 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002943
Thierry FOURNIER18d09902016-12-16 09:25:38 +01002944 appctx->ctx.hlua_cosocket.connected = 0;
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02002945 appctx->ctx.hlua_cosocket.die = 0;
Thierry FOURNIER18d09902016-12-16 09:25:38 +01002946 LIST_INIT(&appctx->ctx.hlua_cosocket.wake_on_write);
2947 LIST_INIT(&appctx->ctx.hlua_cosocket.wake_on_read);
Willy Tarreaub2bf8332015-04-04 15:58:58 +02002948
Willy Tarreaud420a972015-04-06 00:39:18 +02002949 /* Now create a session, task and stream for this applet */
Amaury Denoyelle239fdbf2021-03-24 10:22:03 +01002950 sess = session_new(socket_proxy, NULL, &appctx->obj_type);
Willy Tarreaud420a972015-04-06 00:39:18 +02002951 if (!sess) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002952 hlua_pusherror(L, "socket: out of memory");
Christopher Faulet13a35e52021-12-20 15:34:16 +01002953 goto out_fail_appctx;
2954 }
2955
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01002956 cs = cs_new_from_applet(appctx->endp, sess, &BUF_NULL);
Christopher Fauleta9e8b392022-03-23 11:01:09 +01002957 if (!cs) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002958 hlua_pusherror(L, "socket: out of memory");
Christopher Faulet2479e5f2022-01-19 14:50:11 +01002959 goto out_fail_sess;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002960 }
2961
Christopher Fauleta9e8b392022-03-23 11:01:09 +01002962 s = DISGUISE(cs_strm(cs));
Christopher Faulet2479e5f2022-01-19 14:50:11 +01002963
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002964 /* Initialise cross reference between stream and Lua socket object. */
2965 xref_create(&socket->xref, &appctx->ctx.hlua_cosocket.xref);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002966
Christopher Faulet6b0a0fb2022-04-04 11:29:28 +02002967 /* Configure "right" conn-stream. this "si" is used to connect
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002968 * and retrieve data from the server. The connection is initialized
2969 * with the "struct server".
2970 */
Christopher Faulet62e75742022-03-31 09:16:34 +02002971 cs_set_state(s->csb, CS_ST_ASS);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002972
2973 /* Force destination server. */
Christopher Fauleta9e8b392022-03-23 11:01:09 +01002974 s->flags |= SF_DIRECT | SF_ASSIGNED | SF_BE_ASSIGNED;
2975 s->target = &socket_tcp->obj_type;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002976
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002977 return 1;
2978
Willy Tarreaud420a972015-04-06 00:39:18 +02002979 out_fail_sess:
Christopher Faulet13a35e52021-12-20 15:34:16 +01002980 session_free(sess);
2981 out_fail_appctx:
Willy Tarreaud420a972015-04-06 00:39:18 +02002982 appctx_free(appctx);
2983 out_fail_conf:
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002984 WILL_LJMP(lua_error(L));
2985 return 0;
2986}
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01002987
2988/*
2989 *
2990 *
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002991 * Class Channel
2992 *
2993 *
2994 */
2995
2996/* Returns the struct hlua_channel join to the class channel in the
2997 * stack entry "ud" or throws an argument error.
2998 */
Willy Tarreau47860ed2015-03-10 14:07:50 +01002999__LJMP static struct channel *hlua_checkchannel(lua_State *L, int ud)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003000{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02003001 return MAY_LJMP(hlua_checkudata(L, ud, class_channel_ref));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003002}
3003
Willy Tarreau47860ed2015-03-10 14:07:50 +01003004/* Pushes the channel onto the top of the stack. If the stask does not have a
3005 * free slots, the function fails and returns 0;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003006 */
Willy Tarreau2a71af42015-03-10 13:51:50 +01003007static int hlua_channel_new(lua_State *L, struct channel *channel)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003008{
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003009 /* Check stack size. */
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01003010 if (!lua_checkstack(L, 3))
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003011 return 0;
3012
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01003013 lua_newtable(L);
Willy Tarreau47860ed2015-03-10 14:07:50 +01003014 lua_pushlightuserdata(L, channel);
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01003015 lua_rawseti(L, -2, 0);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003016
3017 /* Pop a class sesison metatable and affect it to the userdata. */
3018 lua_rawgeti(L, LUA_REGISTRYINDEX, class_channel_ref);
3019 lua_setmetatable(L, -2);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003020 return 1;
3021}
3022
Christopher Faulet9f55a502020-02-25 15:21:02 +01003023/* Helper function returning a filter attached to a channel at the position <ud>
3024 * in the stack, filling the current offset and length of the filter. If no
Ilya Shipitsinff0f2782021-08-22 22:18:07 +05003025 * filter is attached, NULL is returned and <offset> and <len> are not
Christopher Faulet9f55a502020-02-25 15:21:02 +01003026 * initialized.
3027 */
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003028static 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 +01003029{
3030 struct filter *filter = NULL;
3031
3032 if (lua_getfield(L, ud, "__filter") == LUA_TLIGHTUSERDATA) {
3033 struct hlua_flt_ctx *flt_ctx;
3034
3035 filter = lua_touserdata (L, -1);
3036 flt_ctx = filter->ctx;
3037 if (hlua_filter_from_payload(filter)) {
3038 *offset = flt_ctx->cur_off[CHN_IDX(chn)];
3039 *len = flt_ctx->cur_len[CHN_IDX(chn)];
3040 }
3041 }
3042
3043 lua_pop(L, 1);
3044 return filter;
3045}
3046
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003047/* Copies <len> bytes of data present in the channel's buffer, starting at the
3048* offset <offset>, and put it in a LUA string variable. It is the caller
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003049* responsibility to ensure <len> and <offset> are valid. It always return the
3050* length of the built string. <len> may be 0, in this case, an empty string is
3051* created and 0 is returned.
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003052*/
3053static inline int _hlua_channel_dup(struct channel *chn, lua_State *L, size_t offset, size_t len)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003054{
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003055 size_t block1, block2;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003056 luaL_Buffer b;
3057
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003058 block1 = len;
3059 if (block1 > b_contig_data(&chn->buf, b_peek_ofs(&chn->buf, offset)))
3060 block1 = b_contig_data(&chn->buf, b_peek_ofs(&chn->buf, offset));
3061 block2 = len - block1;
3062
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003063 luaL_buffinit(L, &b);
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003064 luaL_addlstring(&b, b_peek(&chn->buf, offset), block1);
3065 if (block2)
3066 luaL_addlstring(&b, b_orig(&chn->buf), block2);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003067 luaL_pushresult(&b);
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003068 return len;
3069}
3070
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003071/* Inserts the string <str> to the channel's buffer at the offset <offset>. This
3072 * function returns -1 if data cannot be copied. Otherwise, it returns the
3073 * number of bytes copied.
3074 */
3075static int _hlua_channel_insert(struct channel *chn, lua_State *L, struct ist str, size_t offset)
3076{
3077 int ret = 0;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003078
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003079 /* Nothing to do, just return */
3080 if (unlikely(istlen(str) == 0))
3081 goto end;
3082
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003083 if (istlen(str) > c_room(chn)) {
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003084 ret = -1;
3085 goto end;
3086 }
3087 ret = b_insert_blk(&chn->buf, offset, istptr(str), istlen(str));
3088
3089 end:
3090 return ret;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003091}
3092
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003093/* Removes <len> bytes of data at the absolute position <offset>.
3094 */
3095static void _hlua_channel_delete(struct channel *chn, size_t offset, size_t len)
3096{
3097 size_t end = offset + len;
3098
3099 if (b_peek(&chn->buf, end) != b_tail(&chn->buf))
3100 b_move(&chn->buf, b_peek_ofs(&chn->buf, end),
3101 b_data(&chn->buf) - end, -len);
3102 b_sub(&chn->buf, len);
3103}
3104
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003105/* Copies input data in the channel's buffer. It is possible to set a specific
3106 * offset (0 by default) and a length (all remaining input data starting for the
3107 * offset by default). If there is not enough input data and more data can be
3108 * received, this function yields.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003109 *
3110 * From an action, All input data are considered. For a filter, the offset and
3111 * the length of input data to consider are retrieved from the filter context.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003112 */
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003113__LJMP static int hlua_channel_get_data_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003114{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003115 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003116 struct filter *filter;
3117 size_t input, output;
3118 int offset, len;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003119
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003120 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003121
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003122 output = co_data(chn);
3123 input = ci_data(chn);
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003124
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003125 filter = hlua_channel_filter(L, 1, chn, &output, &input);
3126 if (filter && !hlua_filter_from_payload(filter))
3127 WILL_LJMP(lua_error(L));
3128
3129 offset = output;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003130 if (lua_gettop(L) > 1) {
3131 offset = MAY_LJMP(luaL_checkinteger(L, 2));
3132 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02003133 offset = MAX(0, (int)input + offset);
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003134 offset += output;
3135 if (offset < output || offset > input + output) {
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003136 lua_pushfstring(L, "offset out of range.");
3137 WILL_LJMP(lua_error(L));
3138 }
3139 }
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003140 len = output + input - offset;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003141 if (lua_gettop(L) == 3) {
3142 len = MAY_LJMP(luaL_checkinteger(L, 3));
3143 if (!len)
3144 goto dup;
3145 if (len == -1)
3146 len = global.tune.bufsize;
3147 if (len < 0) {
3148 lua_pushfstring(L, "length out of range.");
3149 WILL_LJMP(lua_error(L));
3150 }
3151 }
3152
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003153 if (offset + len > output + input) {
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003154 if (!HLUA_CANT_YIELD(hlua_gethlua(L)) && !channel_input_closed(chn) && channel_may_recv(chn)) {
3155 /* Yield waiting for more data, as requested */
3156 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_get_data_yield, TICK_ETERNITY, 0));
3157 }
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003158 len = output + input - offset;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003159 }
3160
3161 dup:
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003162 _hlua_channel_dup(chn, L, offset, len);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003163 return 1;
3164}
3165
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003166/* Copies the first line (including the trailing LF) of input data in the
3167 * channel's buffer. It is possible to set a specific offset (0 by default) and
3168 * a length (all remaining input data starting for the offset by default). If
3169 * there is not enough input data and more data can be received, the function
3170 * yields. If a length is explicitly specified, no more data are
3171 * copied. Otherwise, if no LF is found and more data can be received, this
3172 * function yields.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003173 *
3174 * From an action, All input data are considered. For a filter, the offset and
3175 * the length of input data to consider are retrieved from the filter context.
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003176 */
3177__LJMP static int hlua_channel_get_line_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003178{
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003179 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003180 struct filter *filter;
3181 size_t l, input, output;
3182 int offset, len;
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003183
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003184 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003185 output = co_data(chn);
3186 input = ci_data(chn);
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003187
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003188 filter = hlua_channel_filter(L, 1, chn, &output, &input);
3189 if (filter && !hlua_filter_from_payload(filter))
3190 WILL_LJMP(lua_error(L));
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003191
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003192 offset = output;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003193 if (lua_gettop(L) > 1) {
3194 offset = MAY_LJMP(luaL_checkinteger(L, 2));
3195 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02003196 offset = MAX(0, (int)input + offset);
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003197 offset += output;
3198 if (offset < output || offset > input + output) {
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003199 lua_pushfstring(L, "offset out of range.");
3200 WILL_LJMP(lua_error(L));
3201 }
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003202 }
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003203
3204 len = output + input - offset;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003205 if (lua_gettop(L) == 3) {
3206 len = MAY_LJMP(luaL_checkinteger(L, 3));
3207 if (!len)
3208 goto dup;
3209 if (len == -1)
3210 len = global.tune.bufsize;
3211 if (len < 0) {
3212 lua_pushfstring(L, "length out of range.");
3213 WILL_LJMP(lua_error(L));
3214 }
3215 }
3216
3217 for (l = 0; l < len; l++) {
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003218 if (l + offset >= output + input)
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003219 break;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003220 if (*(b_peek(&chn->buf, offset + l)) == '\n') {
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003221 len = l+1;
3222 goto dup;
3223 }
3224 }
3225
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003226 if (offset + len > output + input) {
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003227 if (!HLUA_CANT_YIELD(hlua_gethlua(L)) && !channel_input_closed(chn) && channel_may_recv(chn)) {
3228 /* Yield waiting for more data */
3229 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_get_line_yield, TICK_ETERNITY, 0));
3230 }
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003231 len = output + input - offset;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003232 }
3233
3234 dup:
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003235 _hlua_channel_dup(chn, L, offset, len);
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003236 return 1;
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003237}
3238
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003239/* [ DEPRECATED ]
3240 *
3241 * Duplicate all input data foud in the channel's buffer. The data are not
3242 * removed from the buffer. This function relies on _hlua_channel_dup().
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003243 *
3244 * From an action, All input data are considered. For a filter, the offset and
3245 * the length of input data to consider are retrieved from the filter context.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003246 */
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003247__LJMP static int hlua_channel_dup(lua_State *L)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003248{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003249 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003250 struct filter *filter;
3251 size_t offset, len;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003252
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003253 MAY_LJMP(check_args(L, 1, "dup"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003254 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003255 if (IS_HTX_STRM(chn_strm(chn))) {
3256 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3257 WILL_LJMP(lua_error(L));
3258 }
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003259
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003260 offset = co_data(chn);
3261 len = ci_data(chn);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003262
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003263 filter = hlua_channel_filter(L, 1, chn, &offset, &len);
3264 if (filter && !hlua_filter_from_payload(filter))
3265 WILL_LJMP(lua_error(L));
3266
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003267 if (!ci_data(chn) && channel_input_closed(chn)) {
3268 lua_pushnil(L);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003269 return 1;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003270 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003271
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003272 _hlua_channel_dup(chn, L, offset, len);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003273 return 1;
3274}
3275
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003276/* [ DEPRECATED ]
3277 *
3278 * Get all input data foud in the channel's buffer. The data are removed from
3279 * the buffer after the copy. This function relies on _hlua_channel_dup() and
3280 * _hlua_channel_delete().
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003281 *
3282 * From an action, All input data are considered. For a filter, the offset and
3283 * the length of input data to consider are retrieved from the filter context.
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003284 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003285__LJMP static int hlua_channel_get(lua_State *L)
3286{
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003287 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003288 struct filter *filter;
3289 size_t offset, len;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003290 int ret;
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003291
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003292 MAY_LJMP(check_args(L, 1, "get"));
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003293 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3294 if (IS_HTX_STRM(chn_strm(chn))) {
3295 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3296 WILL_LJMP(lua_error(L));
3297 }
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003298
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003299 offset = co_data(chn);
3300 len = ci_data(chn);
3301
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003302 filter = hlua_channel_filter(L, 1, chn, &offset, &len);
3303 if (filter && !hlua_filter_from_payload(filter))
3304 WILL_LJMP(lua_error(L));
3305
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003306 if (!ci_data(chn) && channel_input_closed(chn)) {
3307 lua_pushnil(L);
3308 return 1;
3309 }
3310
3311 ret = _hlua_channel_dup(chn, L, offset, len);
3312 _hlua_channel_delete(chn, offset, ret);
3313 return 1;
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003314}
3315
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003316/* This functions consumes and returns one line. If the channel is closed,
3317 * and the last data does not contains a final '\n', the data are returned
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003318 * without the final '\n'. When no more data are available, it returns nil
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003319 * value.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003320 *
3321 * From an action, All input data are considered. For a filter, the offset and
3322 * the length of input data to consider are retrieved from the filter context.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003323 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003324__LJMP static int hlua_channel_getline_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003325{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003326 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003327 struct filter *filter;
3328 size_t l, offset, len;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003329 int ret;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003330
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003331 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003332
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003333 offset = co_data(chn);
3334 len = ci_data(chn);
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003335
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003336 filter = hlua_channel_filter(L, 1, chn, &offset, &len);
3337 if (filter && !hlua_filter_from_payload(filter))
3338 WILL_LJMP(lua_error(L));
3339
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003340 if (!ci_data(chn) && channel_input_closed(chn)) {
3341 lua_pushnil(L);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003342 return 1;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003343 }
3344
3345 for (l = 0; l < len; l++) {
3346 if (*(b_peek(&chn->buf, offset+l)) == '\n') {
3347 len = l+1;
3348 goto dup;
3349 }
3350 }
3351
3352 if (!HLUA_CANT_YIELD(hlua_gethlua(L)) && !channel_input_closed(chn) && channel_may_recv(chn)) {
3353 /* Yield waiting for more data */
3354 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_getline_yield, TICK_ETERNITY, 0));
3355 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003356
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003357 dup:
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003358 ret = _hlua_channel_dup(chn, L, offset, len);
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003359 _hlua_channel_delete(chn, offset, ret);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003360 return 1;
3361}
3362
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003363/* [ DEPRECATED ]
3364 *
3365 * Check arguments for the function "hlua_channel_getline_yield".
3366 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003367__LJMP static int hlua_channel_getline(lua_State *L)
3368{
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003369 struct channel *chn;
3370
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003371 MAY_LJMP(check_args(L, 1, "getline"));
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003372 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3373 if (IS_HTX_STRM(chn_strm(chn))) {
3374 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3375 WILL_LJMP(lua_error(L));
3376 }
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003377 return MAY_LJMP(hlua_channel_getline_yield(L, 0, 0));
3378}
3379
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003380/* Retrieves a given amount of input data at the given offset. By default all
3381 * available input data are returned. The offset may be negactive to start from
3382 * the end of input data. The length may be -1 to set it to the maximum buffer
3383 * size.
3384 */
3385__LJMP static int hlua_channel_get_data(lua_State *L)
3386{
3387 struct channel *chn;
3388
3389 if (lua_gettop(L) < 1 || lua_gettop(L) > 3)
3390 WILL_LJMP(luaL_error(L, "'data' expects at most 2 arguments"));
3391 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3392 if (IS_HTX_STRM(chn_strm(chn))) {
3393 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3394 WILL_LJMP(lua_error(L));
3395 }
3396 return MAY_LJMP(hlua_channel_get_data_yield(L, 0, 0));
3397}
3398
3399/* Retrieves a given amount of input data at the given offset. By default all
3400 * available input data are returned. The offset may be negactive to start from
3401 * the end of input data. The length may be -1 to set it to the maximum buffer
3402 * size.
3403 */
3404__LJMP static int hlua_channel_get_line(lua_State *L)
3405{
3406 struct channel *chn;
3407
3408 if (lua_gettop(L) < 1 || lua_gettop(L) > 3)
3409 WILL_LJMP(luaL_error(L, "'line' expects at most 2 arguments"));
3410 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3411 if (IS_HTX_STRM(chn_strm(chn))) {
3412 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3413 WILL_LJMP(lua_error(L));
3414 }
3415 return MAY_LJMP(hlua_channel_get_line_yield(L, 0, 0));
3416}
3417
3418/* Appends a string into the input side of channel. It returns the length of the
3419 * written string, or -1 if the channel is closed or if the buffer size is too
3420 * little for the data. 0 may be returned if nothing is copied. This function
3421 * does not yield.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003422 *
3423 * For a filter, the context is updated on success.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003424 */
Christopher Faulet23976d92021-08-06 09:59:49 +02003425__LJMP static int hlua_channel_append(lua_State *L)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003426{
Christopher Faulet23976d92021-08-06 09:59:49 +02003427 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003428 struct filter *filter;
Christopher Faulet23976d92021-08-06 09:59:49 +02003429 const char *str;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003430 size_t sz, offset, len;
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003431 int ret;
Christopher Faulet23976d92021-08-06 09:59:49 +02003432
3433 MAY_LJMP(check_args(L, 2, "append"));
3434 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003435 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01003436 if (IS_HTX_STRM(chn_strm(chn))) {
Thierry Fournier77016da2020-08-15 14:35:51 +02003437 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
Christopher Faulet3f829a42018-12-13 21:56:45 +01003438 WILL_LJMP(lua_error(L));
Thierry Fournier77016da2020-08-15 14:35:51 +02003439 }
Christopher Faulet3f829a42018-12-13 21:56:45 +01003440
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003441 offset = co_data(chn);
3442 len = ci_data(chn);
3443
3444 filter = hlua_channel_filter(L, 1, chn, &offset, &len);
3445 if (filter && !hlua_filter_from_payload(filter))
3446 WILL_LJMP(lua_error(L));
3447
3448 ret = _hlua_channel_insert(chn, L, ist2(str, sz), offset);
3449 if (ret > 0 && filter) {
3450 struct hlua_flt_ctx *flt_ctx = filter->ctx;
3451
3452 flt_update_offsets(filter, chn, ret);
3453 flt_ctx->cur_len[CHN_IDX(chn)] += ret;
3454 }
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003455 lua_pushinteger(L, ret);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003456 return 1;
3457}
3458
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003459/* Prepends a string into the input side of channel. It returns the length of the
3460 * written string, or -1 if the channel is closed or if the buffer size is too
3461 * little for the data. 0 may be returned if nothing is copied. This function
3462 * does not yield.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003463 *
3464 * For a filter, the context is updated on success.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003465 */
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003466__LJMP static int hlua_channel_prepend(lua_State *L)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003467{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003468 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003469 struct filter *filter;
Christopher Faulet23976d92021-08-06 09:59:49 +02003470 const char *str;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003471 size_t sz, offset, len;
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003472 int ret;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003473
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003474 MAY_LJMP(check_args(L, 2, "prepend"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003475 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003476 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
3477 if (IS_HTX_STRM(chn_strm(chn))) {
3478 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3479 WILL_LJMP(lua_error(L));
3480 }
3481
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003482 offset = co_data(chn);
3483 len = ci_data(chn);
3484
3485 filter = hlua_channel_filter(L, 1, chn, &offset, &len);
3486 if (filter && !hlua_filter_from_payload(filter))
3487 WILL_LJMP(lua_error(L));
3488
3489 ret = _hlua_channel_insert(chn, L, ist2(str, sz), offset);
3490 if (ret > 0 && filter) {
3491 struct hlua_flt_ctx *flt_ctx = filter->ctx;
3492
3493 flt_update_offsets(filter, chn, ret);
3494 flt_ctx->cur_len[CHN_IDX(chn)] += ret;
3495 }
3496
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003497 lua_pushinteger(L, ret);
3498 return 1;
3499}
3500
3501/* Inserts a given amount of input data at the given offset by a string
3502 * content. By default the string is appended at the end of input data. It
3503 * returns the length of the written string, or -1 if the channel is closed or
3504 * if the buffer size is too little for the data.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003505 *
3506 * For a filter, the context is updated on success.
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003507 */
3508__LJMP static int hlua_channel_insert_data(lua_State *L)
3509{
3510 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003511 struct filter *filter;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003512 const char *str;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003513 size_t sz, input, output;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003514 int ret, offset;
3515
3516 if (lua_gettop(L) < 2 || lua_gettop(L) > 3)
3517 WILL_LJMP(luaL_error(L, "'insert' expects at least 1 argument and at most 2 arguments"));
3518 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3519 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003520
3521 output = co_data(chn);
3522 input = ci_data(chn);
3523
3524 filter = hlua_channel_filter(L, 1, chn, &output, &input);
3525 if (filter && !hlua_filter_from_payload(filter))
3526 WILL_LJMP(lua_error(L));
3527
3528 offset = input + output;
3529 if (lua_gettop(L) > 2) {
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003530 offset = MAY_LJMP(luaL_checkinteger(L, 3));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003531 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02003532 offset = MAX(0, (int)input + offset);
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003533 offset += output;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003534 if (offset < output || offset > output + input) {
3535 lua_pushfstring(L, "offset out of range.");
3536 WILL_LJMP(lua_error(L));
3537 }
3538 }
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003539 if (IS_HTX_STRM(chn_strm(chn))) {
3540 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3541 WILL_LJMP(lua_error(L));
3542 }
3543
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003544 ret = _hlua_channel_insert(chn, L, ist2(str, sz), offset);
3545 if (ret > 0 && filter) {
3546 struct hlua_flt_ctx *flt_ctx = filter->ctx;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003547
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003548 flt_update_offsets(filter, chn, ret);
3549 flt_ctx->cur_len[CHN_IDX(chn)] += ret;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003550 }
3551
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003552 lua_pushinteger(L, ret);
3553 return 1;
3554}
3555/* Replaces a given amount of input data at the given offset by a string
3556 * content. By default all remaining data are removed (offset = 0 and len =
3557 * -1). It returns the length of the written string, or -1 if the channel is
3558 * closed or if the buffer size is too little for the data.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003559 *
3560 * For a filter, the context is updated on success.
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003561 */
3562__LJMP static int hlua_channel_set_data(lua_State *L)
3563{
3564 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003565 struct filter *filter;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003566 const char *str;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003567 size_t sz, input, output;
3568 int ret, offset, len;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003569
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003570 if (lua_gettop(L) < 2 || lua_gettop(L) > 4)
3571 WILL_LJMP(luaL_error(L, "'set' expects at least 1 argument and at most 3 arguments"));
3572 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3573 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003574
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01003575 if (IS_HTX_STRM(chn_strm(chn))) {
Thierry Fournier77016da2020-08-15 14:35:51 +02003576 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
Christopher Faulet3f829a42018-12-13 21:56:45 +01003577 WILL_LJMP(lua_error(L));
Thierry Fournier77016da2020-08-15 14:35:51 +02003578 }
Christopher Faulet3f829a42018-12-13 21:56:45 +01003579
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003580 output = co_data(chn);
3581 input = ci_data(chn);
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003582
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003583 filter = hlua_channel_filter(L, 1, chn, &output, &input);
3584 if (filter && !hlua_filter_from_payload(filter))
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003585 WILL_LJMP(lua_error(L));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003586
3587 offset = output;
3588 if (lua_gettop(L) > 2) {
3589 offset = MAY_LJMP(luaL_checkinteger(L, 3));
3590 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02003591 offset = MAX(0, (int)input + offset);
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003592 offset += output;
3593 if (offset < output || offset > input + output) {
3594 lua_pushfstring(L, "offset out of range.");
3595 WILL_LJMP(lua_error(L));
3596 }
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003597 }
3598
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003599 len = output + input - offset;
3600 if (lua_gettop(L) == 4) {
3601 len = MAY_LJMP(luaL_checkinteger(L, 4));
3602 if (!len)
3603 goto set;
3604 if (len == -1)
3605 len = output + input - offset;
3606 if (len < 0 || offset + len > output + input) {
3607 lua_pushfstring(L, "length out of range.");
3608 WILL_LJMP(lua_error(L));
3609 }
3610 }
3611
3612 set:
Christopher Faulet23976d92021-08-06 09:59:49 +02003613 /* Be sure we can copied the string once input data will be removed. */
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003614 if (sz > c_room(chn) + len)
Christopher Faulet23976d92021-08-06 09:59:49 +02003615 lua_pushinteger(L, -1);
3616 else {
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003617 _hlua_channel_delete(chn, offset, len);
3618 ret = _hlua_channel_insert(chn, L, ist2(str, sz), offset);
3619 if (filter) {
3620 struct hlua_flt_ctx *flt_ctx = filter->ctx;
3621
3622 len -= (ret > 0 ? ret : 0);
3623 flt_update_offsets(filter, chn, -len);
3624 flt_ctx->cur_len[CHN_IDX(chn)] -= len;
3625 }
3626
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003627 lua_pushinteger(L, ret);
Christopher Faulet23976d92021-08-06 09:59:49 +02003628 }
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003629 return 1;
3630}
3631
3632/* Removes a given amount of input data at the given offset. By default all
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003633 * input data are removed (offset = 0 and len = -1). It returns the amount of
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003634 * the removed data.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003635 *
3636 * For a filter, the context is updated on success.
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003637 */
3638__LJMP static int hlua_channel_del_data(lua_State *L)
3639{
3640 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003641 struct filter *filter;
3642 size_t input, output;
3643 int offset, len;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003644
3645 if (lua_gettop(L) < 1 || lua_gettop(L) > 3)
3646 WILL_LJMP(luaL_error(L, "'remove' expects at most 2 arguments"));
3647 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003648
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003649 if (IS_HTX_STRM(chn_strm(chn))) {
3650 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3651 WILL_LJMP(lua_error(L));
3652 }
3653
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003654 output = co_data(chn);
3655 input = ci_data(chn);
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003656
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003657 filter = hlua_channel_filter(L, 1, chn, &output, &input);
3658 if (filter && !hlua_filter_from_payload(filter))
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003659 WILL_LJMP(lua_error(L));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003660
3661 offset = output;
3662 if (lua_gettop(L) > 2) {
3663 offset = MAY_LJMP(luaL_checkinteger(L, 3));
3664 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02003665 offset = MAX(0, (int)input + offset);
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003666 offset += output;
3667 if (offset < output || offset > input + output) {
3668 lua_pushfstring(L, "offset out of range.");
3669 WILL_LJMP(lua_error(L));
3670 }
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003671 }
3672
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003673 len = output + input - offset;
3674 if (lua_gettop(L) == 4) {
3675 len = MAY_LJMP(luaL_checkinteger(L, 4));
3676 if (!len)
3677 goto end;
3678 if (len == -1)
3679 len = output + input - offset;
3680 if (len < 0 || offset + len > output + input) {
3681 lua_pushfstring(L, "length out of range.");
3682 WILL_LJMP(lua_error(L));
3683 }
3684 }
3685
3686 _hlua_channel_delete(chn, offset, len);
3687 if (filter) {
3688 struct hlua_flt_ctx *flt_ctx = filter->ctx;
3689
3690 flt_update_offsets(filter, chn, -len);
3691 flt_ctx->cur_len[CHN_IDX(chn)] -= len;
3692 }
3693
3694 end:
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003695 lua_pushinteger(L, len);
Christopher Faulet23976d92021-08-06 09:59:49 +02003696 return 1;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003697}
3698
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003699/* Append data in the output side of the buffer. This data is immediately
3700 * sent. The function returns the amount of data written. If the buffer
3701 * cannot contain the data, the function yields. The function returns -1
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003702 * if the channel is closed.
3703 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003704__LJMP static int hlua_channel_send_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003705{
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003706 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003707 struct filter *filter;
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003708 const char *str;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003709 size_t offset, len, sz;
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003710 int l, ret;
Thierry Fournier4234dbd2020-11-28 13:18:23 +01003711 struct hlua *hlua;
3712
3713 /* Get hlua struct, or NULL if we execute from main lua state */
3714 hlua = hlua_gethlua(L);
3715 if (!hlua) {
3716 lua_pushnil(L);
3717 return 1;
3718 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003719
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003720 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3721 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
3722 l = MAY_LJMP(luaL_checkinteger(L, 3));
Christopher Faulet3f829a42018-12-13 21:56:45 +01003723
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003724 offset = co_data(chn);
3725 len = ci_data(chn);
3726
3727 filter = hlua_channel_filter(L, 1, chn, &offset, &len);
3728 if (filter && !hlua_filter_from_payload(filter))
3729 WILL_LJMP(lua_error(L));
3730
3731
Willy Tarreau47860ed2015-03-10 14:07:50 +01003732 if (unlikely(channel_output_closed(chn))) {
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003733 lua_pushinteger(L, -1);
3734 return 1;
3735 }
3736
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003737 len = c_room(chn);
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003738 if (len > sz -l) {
3739 if (filter) {
3740 lua_pushinteger(L, -1);
3741 return 1;
3742 }
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003743 len = sz - l;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003744 }
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003745
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003746 ret = _hlua_channel_insert(chn, L, ist2(str, len), offset);
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003747 if (ret == -1) {
3748 lua_pop(L, 1);
3749 lua_pushinteger(L, -1);
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003750 return 1;
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003751 }
3752 if (ret) {
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003753 if (filter) {
3754 struct hlua_flt_ctx *flt_ctx = filter->ctx;
3755
3756
3757 flt_update_offsets(filter, chn, ret);
3758 FLT_OFF(filter, chn) += ret;
3759 flt_ctx->cur_off[CHN_IDX(chn)] += ret;
3760 }
3761 else
3762 c_adv(chn, ret);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003763
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003764 l += ret;
3765 lua_pop(L, 1);
3766 lua_pushinteger(L, l);
3767 }
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003768
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003769 if (l < sz) {
3770 /* Yield only if the channel's output is not empty.
3771 * Otherwise it means we cannot add more data. */
3772 if (co_data(chn) == 0 || HLUA_CANT_YIELD(hlua_gethlua(L)))
Christopher Faulet2e60aa42021-08-05 11:58:37 +02003773 return 1;
3774
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003775 /* If we are waiting for space in the response buffer, we
3776 * must set the flag WAKERESWR. This flag required the task
3777 * wake up if any activity is detected on the response buffer.
3778 */
Willy Tarreau47860ed2015-03-10 14:07:50 +01003779 if (chn->flags & CF_ISRESP)
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003780 HLUA_SET_WAKERESWR(hlua);
Thierry FOURNIER53e08ec2015-03-06 00:35:53 +01003781 else
3782 HLUA_SET_WAKEREQWR(hlua);
Willy Tarreau9635e032018-10-16 17:52:55 +02003783 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_send_yield, TICK_ETERNITY, 0));
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003784 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003785
3786 return 1;
3787}
3788
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05003789/* Just a wrapper of "_hlua_channel_send". This wrapper permits
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003790 * yield the LUA process, and resume it without checking the
3791 * input arguments.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003792 *
3793 * This function cannot be called from a filter.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003794 */
3795__LJMP static int hlua_channel_send(lua_State *L)
3796{
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003797 struct channel *chn;
3798
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003799 MAY_LJMP(check_args(L, 2, "send"));
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003800 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3801 if (IS_HTX_STRM(chn_strm(chn))) {
3802 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3803 WILL_LJMP(lua_error(L));
3804 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003805 lua_pushinteger(L, 0);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003806 return MAY_LJMP(hlua_channel_send_yield(L, 0, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003807}
3808
3809/* This function forward and amount of butes. The data pass from
3810 * the input side of the buffer to the output side, and can be
3811 * forwarded. This function never fails.
3812 *
3813 * The Lua function takes an amount of bytes to be forwarded in
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05003814 * input. It returns the number of bytes forwarded.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003815 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003816__LJMP static int hlua_channel_forward_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003817{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003818 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003819 struct filter *filter;
3820 size_t offset, len, fwd;
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003821 int l, max;
Thierry Fournier4234dbd2020-11-28 13:18:23 +01003822 struct hlua *hlua;
3823
3824 /* Get hlua struct, or NULL if we execute from main lua state */
3825 hlua = hlua_gethlua(L);
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003826 if (!hlua) {
3827 lua_pushnil(L);
Thierry Fournier4234dbd2020-11-28 13:18:23 +01003828 return 1;
Thierry Fournier77016da2020-08-15 14:35:51 +02003829 }
Christopher Faulet3f829a42018-12-13 21:56:45 +01003830
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003831 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003832 fwd = MAY_LJMP(luaL_checkinteger(L, 2));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003833 l = MAY_LJMP(luaL_checkinteger(L, -1));
3834
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003835 offset = co_data(chn);
3836 len = ci_data(chn);
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003837
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003838 filter = hlua_channel_filter(L, 1, chn, &offset, &len);
3839 if (filter && !hlua_filter_from_payload(filter))
3840 WILL_LJMP(lua_error(L));
3841
3842 max = fwd - l;
3843 if (max > len)
3844 max = len;
3845
3846 if (filter) {
3847 struct hlua_flt_ctx *flt_ctx = filter->ctx;
3848
3849 FLT_OFF(filter, chn) += max;
3850 flt_ctx->cur_off[CHN_IDX(chn)] += max;
3851 flt_ctx->cur_len[CHN_IDX(chn)] -= max;
3852 }
3853 else
3854 channel_forward(chn, max);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003855
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003856 l += max;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003857 lua_pop(L, 1);
3858 lua_pushinteger(L, l);
3859
3860 /* Check if it miss bytes to forward. */
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003861 if (l < fwd) {
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003862 /* The the input channel or the output channel are closed, we
3863 * must return the amount of data forwarded.
3864 */
Christopher Faulet2e60aa42021-08-05 11:58:37 +02003865 if (channel_input_closed(chn) || channel_output_closed(chn) || HLUA_CANT_YIELD(hlua_gethlua(L)))
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003866 return 1;
3867
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003868 /* If we are waiting for space data in the response buffer, we
3869 * must set the flag WAKERESWR. This flag required the task
3870 * wake up if any activity is detected on the response buffer.
3871 */
Willy Tarreau47860ed2015-03-10 14:07:50 +01003872 if (chn->flags & CF_ISRESP)
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003873 HLUA_SET_WAKERESWR(hlua);
Thierry FOURNIER53e08ec2015-03-06 00:35:53 +01003874 else
3875 HLUA_SET_WAKEREQWR(hlua);
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003876
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003877 /* Otherwise, we can yield waiting for new data in the inpout side. */
Willy Tarreau9635e032018-10-16 17:52:55 +02003878 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_forward_yield, TICK_ETERNITY, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003879 }
3880
3881 return 1;
3882}
3883
3884/* Just check the input and prepare the stack for the previous
3885 * function "hlua_channel_forward_yield"
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003886 *
3887 * This function cannot be called from a filter.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003888 */
3889__LJMP static int hlua_channel_forward(lua_State *L)
3890{
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003891 struct channel *chn;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003892
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003893 MAY_LJMP(check_args(L, 2, "forward"));
3894 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3895 if (IS_HTX_STRM(chn_strm(chn))) {
3896 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3897 WILL_LJMP(lua_error(L));
3898 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003899 lua_pushinteger(L, 0);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003900 return MAY_LJMP(hlua_channel_forward_yield(L, 0, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003901}
3902
3903/* Just returns the number of bytes available in the input
3904 * side of the buffer. This function never fails.
3905 */
3906__LJMP static int hlua_channel_get_in_len(lua_State *L)
3907{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003908 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003909 struct filter *filter;
3910 size_t output, input;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003911
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003912 MAY_LJMP(check_args(L, 1, "input"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003913 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003914
3915 output = co_data(chn);
3916 input = ci_data(chn);
3917 filter = hlua_channel_filter(L, 1, chn, &output, &input);
3918 if (filter || !IS_HTX_STRM(chn_strm(chn)))
3919 lua_pushinteger(L, input);
3920 else {
Christopher Fauleta3ceac12018-12-14 13:39:09 +01003921 struct htx *htx = htxbuf(&chn->buf);
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003922
Christopher Fauleta3ceac12018-12-14 13:39:09 +01003923 lua_pushinteger(L, htx->data - co_data(chn));
3924 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003925 return 1;
3926}
3927
Thierry FOURNIER / OZON.IO65192f32016-11-07 15:28:40 +01003928/* Returns true if the channel is full. */
3929__LJMP static int hlua_channel_is_full(lua_State *L)
3930{
3931 struct channel *chn;
Thierry FOURNIER / OZON.IO65192f32016-11-07 15:28:40 +01003932
3933 MAY_LJMP(check_args(L, 1, "is_full"));
3934 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Faulet0ec740e2020-02-26 11:59:19 +01003935 /* ignore the reserve, we are not on a producer side (ie in an
3936 * applet).
3937 */
3938 lua_pushboolean(L, channel_full(chn, 0));
Thierry FOURNIER / OZON.IO65192f32016-11-07 15:28:40 +01003939 return 1;
3940}
3941
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003942/* Returns true if the channel may still receive data. */
3943__LJMP static int hlua_channel_may_recv(lua_State *L)
3944{
3945 struct channel *chn;
3946
3947 MAY_LJMP(check_args(L, 1, "may_recv"));
3948 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3949 lua_pushboolean(L, (!channel_input_closed(chn) && channel_may_recv(chn)));
3950 return 1;
3951}
3952
Christopher Faulet2ac9ba22020-02-25 10:15:50 +01003953/* Returns true if the channel is the response channel. */
3954__LJMP static int hlua_channel_is_resp(lua_State *L)
3955{
3956 struct channel *chn;
3957
3958 MAY_LJMP(check_args(L, 1, "is_resp"));
3959 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3960
3961 lua_pushboolean(L, !!(chn->flags & CF_ISRESP));
3962 return 1;
3963}
3964
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003965/* Just returns the number of bytes available in the output
3966 * side of the buffer. This function never fails.
3967 */
3968__LJMP static int hlua_channel_get_out_len(lua_State *L)
3969{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003970 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003971 size_t output, input;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003972
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003973 MAY_LJMP(check_args(L, 1, "output"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003974 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003975
3976 output = co_data(chn);
3977 input = ci_data(chn);
3978 hlua_channel_filter(L, 1, chn, &output, &input);
3979
3980 lua_pushinteger(L, output);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003981 return 1;
3982}
3983
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003984/*
3985 *
3986 *
3987 * Class Fetches
3988 *
3989 *
3990 */
3991
3992/* Returns a struct hlua_session if the stack entry "ud" is
Willy Tarreau87b09662015-04-03 00:22:06 +02003993 * a class stream, otherwise it throws an error.
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003994 */
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01003995__LJMP static struct hlua_smp *hlua_checkfetches(lua_State *L, int ud)
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003996{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02003997 return MAY_LJMP(hlua_checkudata(L, ud, class_fetches_ref));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003998}
3999
4000/* This function creates and push in the stack a fetch object according
4001 * with a current TXN.
4002 */
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004003static int hlua_fetches_new(lua_State *L, struct hlua_txn *txn, unsigned int flags)
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004004{
Willy Tarreau7073c472015-04-06 11:15:40 +02004005 struct hlua_smp *hsmp;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004006
4007 /* Check stack size. */
4008 if (!lua_checkstack(L, 3))
4009 return 0;
4010
4011 /* Create the object: obj[0] = userdata.
4012 * Note that the base of the Fetches object is the
4013 * transaction object.
4014 */
4015 lua_newtable(L);
Willy Tarreau7073c472015-04-06 11:15:40 +02004016 hsmp = lua_newuserdata(L, sizeof(*hsmp));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004017 lua_rawseti(L, -2, 0);
4018
Willy Tarreau7073c472015-04-06 11:15:40 +02004019 hsmp->s = txn->s;
4020 hsmp->p = txn->p;
Thierry FOURNIERc4eebc82015-11-02 10:01:59 +01004021 hsmp->dir = txn->dir;
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004022 hsmp->flags = flags;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004023
4024 /* Pop a class sesison metatable and affect it to the userdata. */
4025 lua_rawgeti(L, LUA_REGISTRYINDEX, class_fetches_ref);
4026 lua_setmetatable(L, -2);
4027
4028 return 1;
4029}
4030
4031/* This function is an LUA binding. It is called with each sample-fetch.
4032 * It uses closure argument to store the associated sample-fetch. It
4033 * returns only one argument or throws an error. An error is thrown
4034 * only if an error is encountered during the argument parsing. If
4035 * the "sample-fetch" function fails, nil is returned.
4036 */
4037__LJMP static int hlua_run_sample_fetch(lua_State *L)
4038{
Willy Tarreaub2ccb562015-04-06 11:11:15 +02004039 struct hlua_smp *hsmp;
Willy Tarreau2ec22742015-03-10 14:27:20 +01004040 struct sample_fetch *f;
Frédéric Lécaillef874a832018-06-15 13:56:04 +02004041 struct arg args[ARGM_NBARGS + 1] = {{0}};
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004042 int i;
4043 struct sample smp;
4044
4045 /* Get closure arguments. */
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02004046 f = lua_touserdata(L, lua_upvalueindex(1));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004047
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004048 /* Get traditional arguments. */
Willy Tarreaub2ccb562015-04-06 11:11:15 +02004049 hsmp = MAY_LJMP(hlua_checkfetches(L, 1));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004050
Thierry FOURNIERca988662015-12-20 18:43:03 +01004051 /* Check execution authorization. */
4052 if (f->use & SMP_USE_HTTP_ANY &&
4053 !(hsmp->flags & HLUA_F_MAY_USE_HTTP)) {
4054 lua_pushfstring(L, "the sample-fetch '%s' needs an HTTP parser which "
4055 "is not available in Lua services", f->kw);
4056 WILL_LJMP(lua_error(L));
4057 }
4058
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004059 /* Get extra arguments. */
4060 for (i = 0; i < lua_gettop(L) - 1; i++) {
4061 if (i >= ARGM_NBARGS)
4062 break;
4063 hlua_lua2arg(L, i + 2, &args[i]);
4064 }
4065 args[i].type = ARGT_STOP;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004066 args[i].data.str.area = NULL;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004067
4068 /* Check arguments. */
Willy Tarreaub2ccb562015-04-06 11:11:15 +02004069 MAY_LJMP(hlua_lua2arg_check(L, 2, args, f->arg_mask, hsmp->p));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004070
4071 /* Run the special args checker. */
Willy Tarreau2ec22742015-03-10 14:27:20 +01004072 if (f->val_args && !f->val_args(args, NULL)) {
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004073 lua_pushfstring(L, "error in arguments");
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004074 goto error;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004075 }
4076
4077 /* Initialise the sample. */
4078 memset(&smp, 0, sizeof(smp));
4079
4080 /* Run the sample fetch process. */
Willy Tarreau1777ea62016-03-10 16:15:46 +01004081 smp_set_owner(&smp, hsmp->p, hsmp->s->sess, hsmp->s, hsmp->dir & SMP_OPT_DIR);
Thierry FOURNIER0786d052015-05-11 15:42:45 +02004082 if (!f->process(args, &smp, f->kw, f->private)) {
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004083 if (hsmp->flags & HLUA_F_AS_STRING)
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01004084 lua_pushstring(L, "");
4085 else
4086 lua_pushnil(L);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004087 goto end;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004088 }
4089
4090 /* Convert the returned sample in lua value. */
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004091 if (hsmp->flags & HLUA_F_AS_STRING)
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01004092 hlua_smp2lua_str(L, &smp);
4093 else
4094 hlua_smp2lua(L, &smp);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004095
4096 end:
Willy Tarreauee0d7272021-07-16 10:26:56 +02004097 free_args(args);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004098 return 1;
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004099
4100 error:
Willy Tarreauee0d7272021-07-16 10:26:56 +02004101 free_args(args);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004102 WILL_LJMP(lua_error(L));
4103 return 0; /* Never reached */
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004104}
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01004105
4106/*
4107 *
4108 *
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004109 * Class Converters
4110 *
4111 *
4112 */
4113
4114/* Returns a struct hlua_session if the stack entry "ud" is
Willy Tarreau87b09662015-04-03 00:22:06 +02004115 * a class stream, otherwise it throws an error.
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004116 */
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01004117__LJMP static struct hlua_smp *hlua_checkconverters(lua_State *L, int ud)
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004118{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02004119 return MAY_LJMP(hlua_checkudata(L, ud, class_converters_ref));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004120}
4121
4122/* This function creates and push in the stack a Converters object
4123 * according with a current TXN.
4124 */
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004125static int hlua_converters_new(lua_State *L, struct hlua_txn *txn, unsigned int flags)
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004126{
Willy Tarreau7073c472015-04-06 11:15:40 +02004127 struct hlua_smp *hsmp;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004128
4129 /* Check stack size. */
4130 if (!lua_checkstack(L, 3))
4131 return 0;
4132
4133 /* Create the object: obj[0] = userdata.
4134 * Note that the base of the Converters object is the
4135 * same than the TXN object.
4136 */
4137 lua_newtable(L);
Willy Tarreau7073c472015-04-06 11:15:40 +02004138 hsmp = lua_newuserdata(L, sizeof(*hsmp));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004139 lua_rawseti(L, -2, 0);
4140
Willy Tarreau7073c472015-04-06 11:15:40 +02004141 hsmp->s = txn->s;
4142 hsmp->p = txn->p;
Thierry FOURNIERc4eebc82015-11-02 10:01:59 +01004143 hsmp->dir = txn->dir;
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004144 hsmp->flags = flags;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004145
Willy Tarreau87b09662015-04-03 00:22:06 +02004146 /* Pop a class stream metatable and affect it to the table. */
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004147 lua_rawgeti(L, LUA_REGISTRYINDEX, class_converters_ref);
4148 lua_setmetatable(L, -2);
4149
4150 return 1;
4151}
4152
4153/* This function is an LUA binding. It is called with each converter.
4154 * It uses closure argument to store the associated converter. It
4155 * returns only one argument or throws an error. An error is thrown
4156 * only if an error is encountered during the argument parsing. If
4157 * the converter function function fails, nil is returned.
4158 */
4159__LJMP static int hlua_run_sample_conv(lua_State *L)
4160{
Willy Tarreauda5f1082015-04-06 11:17:13 +02004161 struct hlua_smp *hsmp;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004162 struct sample_conv *conv;
Frédéric Lécaillef874a832018-06-15 13:56:04 +02004163 struct arg args[ARGM_NBARGS + 1] = {{0}};
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004164 int i;
4165 struct sample smp;
4166
4167 /* Get closure arguments. */
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02004168 conv = lua_touserdata(L, lua_upvalueindex(1));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004169
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004170 /* Get traditional arguments. */
Willy Tarreauda5f1082015-04-06 11:17:13 +02004171 hsmp = MAY_LJMP(hlua_checkconverters(L, 1));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004172
4173 /* Get extra arguments. */
4174 for (i = 0; i < lua_gettop(L) - 2; i++) {
4175 if (i >= ARGM_NBARGS)
4176 break;
4177 hlua_lua2arg(L, i + 3, &args[i]);
4178 }
4179 args[i].type = ARGT_STOP;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004180 args[i].data.str.area = NULL;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004181
4182 /* Check arguments. */
Willy Tarreauda5f1082015-04-06 11:17:13 +02004183 MAY_LJMP(hlua_lua2arg_check(L, 3, args, conv->arg_mask, hsmp->p));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004184
4185 /* Run the special args checker. */
4186 if (conv->val_args && !conv->val_args(args, conv, "", 0, NULL)) {
4187 hlua_pusherror(L, "error in arguments");
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004188 goto error;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004189 }
4190
4191 /* Initialise the sample. */
Amaury Denoyellebc0af6a2020-10-29 17:21:20 +01004192 memset(&smp, 0, sizeof(smp));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004193 if (!hlua_lua2smp(L, 2, &smp)) {
4194 hlua_pusherror(L, "error in the input argument");
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004195 goto error;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004196 }
4197
Willy Tarreau1777ea62016-03-10 16:15:46 +01004198 smp_set_owner(&smp, hsmp->p, hsmp->s->sess, hsmp->s, hsmp->dir & SMP_OPT_DIR);
4199
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004200 /* Apply expected cast. */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02004201 if (!sample_casts[smp.data.type][conv->in_type]) {
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004202 hlua_pusherror(L, "invalid input argument: cannot cast '%s' to '%s'",
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02004203 smp_to_type[smp.data.type], smp_to_type[conv->in_type]);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004204 goto error;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004205 }
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02004206 if (sample_casts[smp.data.type][conv->in_type] != c_none &&
4207 !sample_casts[smp.data.type][conv->in_type](&smp)) {
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004208 hlua_pusherror(L, "error during the input argument casting");
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004209 goto error;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004210 }
4211
4212 /* Run the sample conversion process. */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02004213 if (!conv->process(args, &smp, conv->private)) {
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004214 if (hsmp->flags & HLUA_F_AS_STRING)
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01004215 lua_pushstring(L, "");
4216 else
Willy Tarreaua678b432015-08-28 10:14:59 +02004217 lua_pushnil(L);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004218 goto end;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004219 }
4220
4221 /* Convert the returned sample in lua value. */
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004222 if (hsmp->flags & HLUA_F_AS_STRING)
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01004223 hlua_smp2lua_str(L, &smp);
4224 else
4225 hlua_smp2lua(L, &smp);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004226 end:
Willy Tarreauee0d7272021-07-16 10:26:56 +02004227 free_args(args);
Willy Tarreaua678b432015-08-28 10:14:59 +02004228 return 1;
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004229
4230 error:
Willy Tarreauee0d7272021-07-16 10:26:56 +02004231 free_args(args);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004232 WILL_LJMP(lua_error(L));
4233 return 0; /* Never reached */
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004234}
4235
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004236/*
4237 *
4238 *
4239 * Class AppletTCP
4240 *
4241 *
4242 */
4243
4244/* Returns a struct hlua_txn if the stack entry "ud" is
4245 * a class stream, otherwise it throws an error.
4246 */
4247__LJMP static struct hlua_appctx *hlua_checkapplet_tcp(lua_State *L, int ud)
4248{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02004249 return MAY_LJMP(hlua_checkudata(L, ud, class_applet_tcp_ref));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004250}
4251
4252/* This function creates and push in the stack an Applet object
4253 * according with a current TXN.
4254 */
4255static int hlua_applet_tcp_new(lua_State *L, struct appctx *ctx)
4256{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004257 struct hlua_appctx *luactx;
Christopher Faulet908628c2022-03-25 16:43:49 +01004258 struct stream *s = __cs_strm(ctx->owner);
Christopher Faulet2da02ae2022-02-24 13:45:27 +01004259 struct proxy *p;
4260
4261 ALREADY_CHECKED(s);
4262 p = s->be;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004263
4264 /* Check stack size. */
4265 if (!lua_checkstack(L, 3))
4266 return 0;
4267
4268 /* Create the object: obj[0] = userdata.
4269 * Note that the base of the Converters object is the
4270 * same than the TXN object.
4271 */
4272 lua_newtable(L);
Willy Tarreau7e702d12021-04-28 17:59:21 +02004273 luactx = lua_newuserdata(L, sizeof(*luactx));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004274 lua_rawseti(L, -2, 0);
Willy Tarreau7e702d12021-04-28 17:59:21 +02004275 luactx->appctx = ctx;
4276 luactx->htxn.s = s;
4277 luactx->htxn.p = p;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004278
4279 /* Create the "f" field that contains a list of fetches. */
4280 lua_pushstring(L, "f");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004281 if (!hlua_fetches_new(L, &luactx->htxn, 0))
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004282 return 0;
4283 lua_settable(L, -3);
4284
4285 /* Create the "sf" field that contains a list of stringsafe fetches. */
4286 lua_pushstring(L, "sf");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004287 if (!hlua_fetches_new(L, &luactx->htxn, HLUA_F_AS_STRING))
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004288 return 0;
4289 lua_settable(L, -3);
4290
4291 /* Create the "c" field that contains a list of converters. */
4292 lua_pushstring(L, "c");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004293 if (!hlua_converters_new(L, &luactx->htxn, 0))
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004294 return 0;
4295 lua_settable(L, -3);
4296
4297 /* Create the "sc" field that contains a list of stringsafe converters. */
4298 lua_pushstring(L, "sc");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004299 if (!hlua_converters_new(L, &luactx->htxn, HLUA_F_AS_STRING))
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004300 return 0;
4301 lua_settable(L, -3);
4302
4303 /* Pop a class stream metatable and affect it to the table. */
4304 lua_rawgeti(L, LUA_REGISTRYINDEX, class_applet_tcp_ref);
4305 lua_setmetatable(L, -2);
4306
4307 return 1;
4308}
4309
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004310__LJMP static int hlua_applet_tcp_set_var(lua_State *L)
4311{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004312 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004313 struct stream *s;
4314 const char *name;
4315 size_t len;
4316 struct sample smp;
4317
Tim Duesterhus4e172c92020-05-19 13:49:42 +02004318 if (lua_gettop(L) < 3 || lua_gettop(L) > 4)
4319 WILL_LJMP(luaL_error(L, "'set_var' needs between 3 and 4 arguments"));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004320
4321 /* It is useles to retrieve the stream, but this function
4322 * runs only in a stream context.
4323 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004324 luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004325 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004326 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004327
4328 /* Converts the third argument in a sample. */
Amaury Denoyellebc0af6a2020-10-29 17:21:20 +01004329 memset(&smp, 0, sizeof(smp));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004330 hlua_lua2smp(L, 3, &smp);
4331
4332 /* Store the sample in a variable. */
4333 smp_set_owner(&smp, s->be, s->sess, s, 0);
Tim Duesterhus4e172c92020-05-19 13:49:42 +02004334
4335 if (lua_gettop(L) == 4 && lua_toboolean(L, 4))
4336 lua_pushboolean(L, vars_set_by_name_ifexist(name, len, &smp) != 0);
4337 else
4338 lua_pushboolean(L, vars_set_by_name(name, len, &smp) != 0);
4339
Tim Duesterhus84ebc132020-05-19 13:49:41 +02004340 return 1;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004341}
4342
4343__LJMP static int hlua_applet_tcp_unset_var(lua_State *L)
4344{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004345 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004346 struct stream *s;
4347 const char *name;
4348 size_t len;
4349 struct sample smp;
4350
4351 MAY_LJMP(check_args(L, 2, "unset_var"));
4352
4353 /* It is useles to retrieve the stream, but this function
4354 * runs only in a stream context.
4355 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004356 luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004357 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004358 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004359
4360 /* Unset the variable. */
4361 smp_set_owner(&smp, s->be, s->sess, s, 0);
Tim Duesterhus84ebc132020-05-19 13:49:41 +02004362 lua_pushboolean(L, vars_unset_by_name_ifexist(name, len, &smp) != 0);
4363 return 1;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004364}
4365
4366__LJMP static int hlua_applet_tcp_get_var(lua_State *L)
4367{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004368 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004369 struct stream *s;
4370 const char *name;
4371 size_t len;
4372 struct sample smp;
4373
4374 MAY_LJMP(check_args(L, 2, "get_var"));
4375
4376 /* It is useles to retrieve the stream, but this function
4377 * runs only in a stream context.
4378 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004379 luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004380 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004381 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004382
4383 smp_set_owner(&smp, s->be, s->sess, s, 0);
Willy Tarreaue352b9d2021-09-03 11:52:38 +02004384 if (!vars_get_by_name(name, len, &smp, NULL)) {
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004385 lua_pushnil(L);
4386 return 1;
4387 }
4388
4389 return hlua_smp2lua(L, &smp);
4390}
4391
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004392__LJMP static int hlua_applet_tcp_set_priv(lua_State *L)
4393{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004394 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
4395 struct stream *s = luactx->htxn.s;
Thierry FOURNIER3b0a6d42016-12-16 08:48:32 +01004396 struct hlua *hlua;
4397
4398 /* Note that this hlua struct is from the session and not from the applet. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01004399 if (!s->hlua)
4400 return 0;
4401 hlua = s->hlua;
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004402
4403 MAY_LJMP(check_args(L, 2, "set_priv"));
4404
4405 /* Remove previous value. */
Thierry FOURNIERe068b602017-04-26 13:27:05 +02004406 luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref);
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004407
4408 /* Get and store new value. */
4409 lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */
4410 hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */
4411
4412 return 0;
4413}
4414
4415__LJMP static int hlua_applet_tcp_get_priv(lua_State *L)
4416{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004417 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
4418 struct stream *s = luactx->htxn.s;
Thierry FOURNIER3b0a6d42016-12-16 08:48:32 +01004419 struct hlua *hlua;
4420
4421 /* Note that this hlua struct is from the session and not from the applet. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01004422 if (!s->hlua) {
4423 lua_pushnil(L);
4424 return 1;
4425 }
4426 hlua = s->hlua;
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004427
4428 /* Push configuration index in the stack. */
4429 lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref);
4430
4431 return 1;
4432}
4433
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004434/* If expected data not yet available, it returns a yield. This function
4435 * consumes the data in the buffer. It returns a string containing the
4436 * data. This string can be empty.
4437 */
4438__LJMP static int hlua_applet_tcp_getline_yield(lua_State *L, int status, lua_KContext ctx)
4439{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004440 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Christopher Faulet908628c2022-03-25 16:43:49 +01004441 struct conn_stream *cs = luactx->appctx->owner;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004442 int ret;
Willy Tarreau206ba832018-06-14 15:27:31 +02004443 const char *blk1;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02004444 size_t len1;
Willy Tarreau206ba832018-06-14 15:27:31 +02004445 const char *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02004446 size_t len2;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004447
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004448 /* Read the maximum amount of data available. */
Christopher Faulet908628c2022-03-25 16:43:49 +01004449 ret = co_getline_nc(cs_oc(cs), &blk1, &len1, &blk2, &len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004450
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004451 /* Data not yet available. return yield. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004452 if (ret == 0) {
Christopher Fauleta0bdec32022-04-04 07:51:21 +02004453 cs_cant_get(cs);
Willy Tarreau9635e032018-10-16 17:52:55 +02004454 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_getline_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004455 }
4456
4457 /* End of data: commit the total strings and return. */
4458 if (ret < 0) {
Willy Tarreau7e702d12021-04-28 17:59:21 +02004459 luaL_pushresult(&luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004460 return 1;
4461 }
4462
4463 /* Ensure that the block 2 length is usable. */
4464 if (ret == 1)
4465 len2 = 0;
4466
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07004467 /* don't check the max length read and don't check. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004468 luaL_addlstring(&luactx->b, blk1, len1);
4469 luaL_addlstring(&luactx->b, blk2, len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004470
4471 /* Consume input channel output buffer data. */
Christopher Faulet908628c2022-03-25 16:43:49 +01004472 co_skip(cs_oc(cs), len1 + len2);
Willy Tarreau7e702d12021-04-28 17:59:21 +02004473 luaL_pushresult(&luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004474 return 1;
4475}
4476
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004477/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004478__LJMP static int hlua_applet_tcp_getline(lua_State *L)
4479{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004480 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004481
4482 /* Initialise the string catenation. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004483 luaL_buffinit(L, &luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004484
4485 return MAY_LJMP(hlua_applet_tcp_getline_yield(L, 0, 0));
4486}
4487
4488/* If expected data not yet available, it returns a yield. This function
4489 * consumes the data in the buffer. It returns a string containing the
4490 * data. This string can be empty.
4491 */
4492__LJMP static int hlua_applet_tcp_recv_yield(lua_State *L, int status, lua_KContext ctx)
4493{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004494 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Christopher Faulet908628c2022-03-25 16:43:49 +01004495 struct conn_stream *cs = luactx->appctx->owner;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02004496 size_t len = MAY_LJMP(luaL_checkinteger(L, 2));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004497 int ret;
Willy Tarreau206ba832018-06-14 15:27:31 +02004498 const char *blk1;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02004499 size_t len1;
Willy Tarreau206ba832018-06-14 15:27:31 +02004500 const char *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02004501 size_t len2;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004502
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004503 /* Read the maximum amount of data available. */
Christopher Faulet908628c2022-03-25 16:43:49 +01004504 ret = co_getblk_nc(cs_oc(cs), &blk1, &len1, &blk2, &len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004505
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004506 /* Data not yet available. return yield. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004507 if (ret == 0) {
Christopher Fauleta0bdec32022-04-04 07:51:21 +02004508 cs_cant_get(cs);
Willy Tarreau9635e032018-10-16 17:52:55 +02004509 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_recv_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004510 }
4511
4512 /* End of data: commit the total strings and return. */
4513 if (ret < 0) {
Willy Tarreau7e702d12021-04-28 17:59:21 +02004514 luaL_pushresult(&luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004515 return 1;
4516 }
4517
4518 /* Ensure that the block 2 length is usable. */
4519 if (ret == 1)
4520 len2 = 0;
4521
4522 if (len == -1) {
4523
4524 /* If len == -1, catenate all the data avalaile and
4525 * yield because we want to get all the data until
4526 * the end of data stream.
4527 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004528 luaL_addlstring(&luactx->b, blk1, len1);
4529 luaL_addlstring(&luactx->b, blk2, len2);
Christopher Faulet908628c2022-03-25 16:43:49 +01004530 co_skip(cs_oc(cs), len1 + len2);
Christopher Fauleta0bdec32022-04-04 07:51:21 +02004531 cs_cant_get(cs);
Willy Tarreau9635e032018-10-16 17:52:55 +02004532 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_recv_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004533
4534 } else {
4535
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05004536 /* Copy the first block caping to the length required. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004537 if (len1 > len)
4538 len1 = len;
Willy Tarreau7e702d12021-04-28 17:59:21 +02004539 luaL_addlstring(&luactx->b, blk1, len1);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004540 len -= len1;
4541
4542 /* Copy the second block. */
4543 if (len2 > len)
4544 len2 = len;
Willy Tarreau7e702d12021-04-28 17:59:21 +02004545 luaL_addlstring(&luactx->b, blk2, len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004546 len -= len2;
4547
4548 /* Consume input channel output buffer data. */
Christopher Faulet908628c2022-03-25 16:43:49 +01004549 co_skip(cs_oc(cs), len1 + len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004550
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004551 /* If there is no other data available, yield waiting for new data. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004552 if (len > 0) {
4553 lua_pushinteger(L, len);
4554 lua_replace(L, 2);
Christopher Fauleta0bdec32022-04-04 07:51:21 +02004555 cs_cant_get(cs);
Willy Tarreau9635e032018-10-16 17:52:55 +02004556 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_recv_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004557 }
4558
4559 /* return the result. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004560 luaL_pushresult(&luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004561 return 1;
4562 }
4563
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004564 /* we never execute this */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004565 hlua_pusherror(L, "Lua: internal error");
4566 WILL_LJMP(lua_error(L));
4567 return 0;
4568}
4569
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004570/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004571__LJMP static int hlua_applet_tcp_recv(lua_State *L)
4572{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004573 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004574 int len = -1;
4575
4576 if (lua_gettop(L) > 2)
4577 WILL_LJMP(luaL_error(L, "The 'recv' function requires between 1 and 2 arguments."));
4578 if (lua_gettop(L) >= 2) {
4579 len = MAY_LJMP(luaL_checkinteger(L, 2));
4580 lua_pop(L, 1);
4581 }
4582
4583 /* Confirm or set the required length */
4584 lua_pushinteger(L, len);
4585
4586 /* Initialise the string catenation. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004587 luaL_buffinit(L, &luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004588
4589 return MAY_LJMP(hlua_applet_tcp_recv_yield(L, 0, 0));
4590}
4591
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004592/* Append data in the output side of the buffer. This data is immediately
4593 * sent. The function returns the amount of data written. If the buffer
4594 * cannot contain the data, the function yields. The function returns -1
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004595 * if the channel is closed.
4596 */
4597__LJMP static int hlua_applet_tcp_send_yield(lua_State *L, int status, lua_KContext ctx)
4598{
4599 size_t len;
Willy Tarreau7e702d12021-04-28 17:59:21 +02004600 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004601 const char *str = MAY_LJMP(luaL_checklstring(L, 2, &len));
4602 int l = MAY_LJMP(luaL_checkinteger(L, 3));
Christopher Faulet908628c2022-03-25 16:43:49 +01004603 struct conn_stream *cs = luactx->appctx->owner;
4604 struct channel *chn = cs_ic(cs);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004605 int max;
4606
4607 /* Get the max amount of data which can write as input in the channel. */
4608 max = channel_recv_max(chn);
4609 if (max > (len - l))
4610 max = len - l;
4611
4612 /* Copy data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02004613 ci_putblk(chn, str + l, max);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004614
4615 /* update counters. */
4616 l += max;
4617 lua_pop(L, 1);
4618 lua_pushinteger(L, l);
4619
4620 /* If some data is not send, declares the situation to the
4621 * applet, and returns a yield.
4622 */
4623 if (l < len) {
Christopher Fauleta0bdec32022-04-04 07:51:21 +02004624 cs_rx_room_blk(cs);
Willy Tarreau9635e032018-10-16 17:52:55 +02004625 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_send_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004626 }
4627
4628 return 1;
4629}
4630
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05004631/* Just a wrapper of "hlua_applet_tcp_send_yield". This wrapper permits
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004632 * yield the LUA process, and resume it without checking the
4633 * input arguments.
4634 */
4635__LJMP static int hlua_applet_tcp_send(lua_State *L)
4636{
4637 MAY_LJMP(check_args(L, 2, "send"));
4638 lua_pushinteger(L, 0);
4639
4640 return MAY_LJMP(hlua_applet_tcp_send_yield(L, 0, 0));
4641}
4642
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004643/*
4644 *
4645 *
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004646 * Class AppletHTTP
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004647 *
4648 *
4649 */
4650
4651/* Returns a struct hlua_txn if the stack entry "ud" is
Willy Tarreau87b09662015-04-03 00:22:06 +02004652 * a class stream, otherwise it throws an error.
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004653 */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004654__LJMP static struct hlua_appctx *hlua_checkapplet_http(lua_State *L, int ud)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004655{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02004656 return MAY_LJMP(hlua_checkudata(L, ud, class_applet_http_ref));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004657}
4658
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004659/* This function creates and push in the stack an Applet object
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004660 * according with a current TXN.
4661 */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004662static int hlua_applet_http_new(lua_State *L, struct appctx *ctx)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004663{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004664 struct hlua_appctx *luactx;
Thierry FOURNIER841475e2015-12-11 17:10:09 +01004665 struct hlua_txn htxn;
Christopher Faulet908628c2022-03-25 16:43:49 +01004666 struct stream *s = __cs_strm(ctx->owner);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004667 struct proxy *px = s->be;
Christopher Fauleta2097962019-07-15 16:25:33 +02004668 struct htx *htx;
4669 struct htx_blk *blk;
4670 struct htx_sl *sl;
4671 struct ist path;
4672 unsigned long long len = 0;
4673 int32_t pos;
Amaury Denoyellec453f952021-07-06 11:40:12 +02004674 struct http_uri_parser parser;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004675
4676 /* Check stack size. */
4677 if (!lua_checkstack(L, 3))
4678 return 0;
4679
4680 /* Create the object: obj[0] = userdata.
4681 * Note that the base of the Converters object is the
4682 * same than the TXN object.
4683 */
4684 lua_newtable(L);
Willy Tarreau7e702d12021-04-28 17:59:21 +02004685 luactx = lua_newuserdata(L, sizeof(*luactx));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004686 lua_rawseti(L, -2, 0);
Willy Tarreau7e702d12021-04-28 17:59:21 +02004687 luactx->appctx = ctx;
4688 luactx->appctx->ctx.hlua_apphttp.status = 200; /* Default status code returned. */
4689 luactx->appctx->ctx.hlua_apphttp.reason = NULL; /* Use default reason based on status */
4690 luactx->htxn.s = s;
4691 luactx->htxn.p = px;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004692
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004693 /* Create the "f" field that contains a list of fetches. */
4694 lua_pushstring(L, "f");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004695 if (!hlua_fetches_new(L, &luactx->htxn, 0))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004696 return 0;
4697 lua_settable(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004698
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004699 /* Create the "sf" field that contains a list of stringsafe fetches. */
4700 lua_pushstring(L, "sf");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004701 if (!hlua_fetches_new(L, &luactx->htxn, HLUA_F_AS_STRING))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004702 return 0;
4703 lua_settable(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004704
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004705 /* Create the "c" field that contains a list of converters. */
4706 lua_pushstring(L, "c");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004707 if (!hlua_converters_new(L, &luactx->htxn, 0))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004708 return 0;
4709 lua_settable(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004710
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004711 /* Create the "sc" field that contains a list of stringsafe converters. */
4712 lua_pushstring(L, "sc");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004713 if (!hlua_converters_new(L, &luactx->htxn, HLUA_F_AS_STRING))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004714 return 0;
4715 lua_settable(L, -3);
Willy Tarreaueee5b512015-04-03 23:46:31 +02004716
Christopher Fauleta2097962019-07-15 16:25:33 +02004717 htx = htxbuf(&s->req.buf);
4718 blk = htx_get_first_blk(htx);
Christopher Fauletea009732019-11-18 15:50:25 +01004719 BUG_ON(!blk || htx_get_blk_type(blk) != HTX_BLK_REQ_SL);
Christopher Fauleta2097962019-07-15 16:25:33 +02004720 sl = htx_get_blk_ptr(htx, blk);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004721
Christopher Fauleta2097962019-07-15 16:25:33 +02004722 /* Stores the request method. */
4723 lua_pushstring(L, "method");
4724 lua_pushlstring(L, HTX_SL_REQ_MPTR(sl), HTX_SL_REQ_MLEN(sl));
4725 lua_settable(L, -3);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004726
Christopher Fauleta2097962019-07-15 16:25:33 +02004727 /* Stores the http version. */
4728 lua_pushstring(L, "version");
4729 lua_pushlstring(L, HTX_SL_REQ_VPTR(sl), HTX_SL_REQ_VLEN(sl));
4730 lua_settable(L, -3);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004731
Christopher Fauleta2097962019-07-15 16:25:33 +02004732 /* creates an array of headers. hlua_http_get_headers() crates and push
4733 * the array on the top of the stack.
4734 */
4735 lua_pushstring(L, "headers");
4736 htxn.s = s;
4737 htxn.p = px;
4738 htxn.dir = SMP_OPT_DIR_REQ;
Christopher Faulet9d1332b2020-02-24 16:46:16 +01004739 if (!hlua_http_get_headers(L, &htxn.s->txn->req))
Christopher Fauleta2097962019-07-15 16:25:33 +02004740 return 0;
4741 lua_settable(L, -3);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004742
Amaury Denoyellec453f952021-07-06 11:40:12 +02004743 parser = http_uri_parser_init(htx_sl_req_uri(sl));
4744 path = http_parse_path(&parser);
Tim Duesterhused526372020-03-05 17:56:33 +01004745 if (isttest(path)) {
Christopher Fauleta2097962019-07-15 16:25:33 +02004746 char *p, *q, *end;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004747
Christopher Fauleta2097962019-07-15 16:25:33 +02004748 p = path.ptr;
Tim Duesterhus4c8f75f2021-11-06 15:14:44 +01004749 end = istend(path);
Christopher Fauleta2097962019-07-15 16:25:33 +02004750 q = p;
4751 while (q < end && *q != '?')
4752 q++;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004753
Thierry FOURNIER7d388632017-02-22 02:06:16 +01004754 /* Stores the request path. */
Christopher Fauleta2097962019-07-15 16:25:33 +02004755 lua_pushstring(L, "path");
4756 lua_pushlstring(L, p, q - p);
Thierry FOURNIER7d388632017-02-22 02:06:16 +01004757 lua_settable(L, -3);
Thierry FOURNIER04c57b32015-03-18 13:43:10 +01004758
Christopher Fauleta2097962019-07-15 16:25:33 +02004759 /* Stores the query string. */
4760 lua_pushstring(L, "qs");
4761 if (*q == '?')
4762 q++;
4763 lua_pushlstring(L, q, end - q);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004764 lua_settable(L, -3);
Christopher Fauleta2097962019-07-15 16:25:33 +02004765 }
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004766
Christopher Fauleta2097962019-07-15 16:25:33 +02004767 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
4768 struct htx_blk *blk = htx_get_blk(htx, pos);
4769 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004770
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004771 if (type == HTX_BLK_TLR || type == HTX_BLK_EOT)
Christopher Fauleta2097962019-07-15 16:25:33 +02004772 break;
4773 if (type == HTX_BLK_DATA)
4774 len += htx_get_blksz(blk);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004775 }
Christopher Fauleta2097962019-07-15 16:25:33 +02004776 if (htx->extra != ULLONG_MAX)
4777 len += htx->extra;
4778
4779 /* Stores the request path. */
4780 lua_pushstring(L, "length");
4781 lua_pushinteger(L, len);
4782 lua_settable(L, -3);
Thierry FOURNIER04c57b32015-03-18 13:43:10 +01004783
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004784 /* Create an empty array of HTTP request headers. */
4785 lua_pushstring(L, "response");
4786 lua_newtable(L);
4787 lua_settable(L, -3);
Thierry FOURNIER04c57b32015-03-18 13:43:10 +01004788
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004789 /* Pop a class stream metatable and affect it to the table. */
4790 lua_rawgeti(L, LUA_REGISTRYINDEX, class_applet_http_ref);
4791 lua_setmetatable(L, -2);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004792
4793 return 1;
4794}
4795
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004796__LJMP static int hlua_applet_http_set_var(lua_State *L)
4797{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004798 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004799 struct stream *s;
4800 const char *name;
4801 size_t len;
4802 struct sample smp;
4803
Tim Duesterhus4e172c92020-05-19 13:49:42 +02004804 if (lua_gettop(L) < 3 || lua_gettop(L) > 4)
4805 WILL_LJMP(luaL_error(L, "'set_var' needs between 3 and 4 arguments"));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004806
4807 /* It is useles to retrieve the stream, but this function
4808 * runs only in a stream context.
4809 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004810 luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004811 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004812 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004813
4814 /* Converts the third argument in a sample. */
Amaury Denoyellebc0af6a2020-10-29 17:21:20 +01004815 memset(&smp, 0, sizeof(smp));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004816 hlua_lua2smp(L, 3, &smp);
4817
4818 /* Store the sample in a variable. */
4819 smp_set_owner(&smp, s->be, s->sess, s, 0);
Tim Duesterhus4e172c92020-05-19 13:49:42 +02004820
4821 if (lua_gettop(L) == 4 && lua_toboolean(L, 4))
4822 lua_pushboolean(L, vars_set_by_name_ifexist(name, len, &smp) != 0);
4823 else
4824 lua_pushboolean(L, vars_set_by_name(name, len, &smp) != 0);
4825
Tim Duesterhus84ebc132020-05-19 13:49:41 +02004826 return 1;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004827}
4828
4829__LJMP static int hlua_applet_http_unset_var(lua_State *L)
4830{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004831 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004832 struct stream *s;
4833 const char *name;
4834 size_t len;
4835 struct sample smp;
4836
4837 MAY_LJMP(check_args(L, 2, "unset_var"));
4838
4839 /* It is useles to retrieve the stream, but this function
4840 * runs only in a stream context.
4841 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004842 luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004843 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004844 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004845
4846 /* Unset the variable. */
4847 smp_set_owner(&smp, s->be, s->sess, s, 0);
Tim Duesterhus84ebc132020-05-19 13:49:41 +02004848 lua_pushboolean(L, vars_unset_by_name_ifexist(name, len, &smp) != 0);
4849 return 1;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004850}
4851
4852__LJMP static int hlua_applet_http_get_var(lua_State *L)
4853{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004854 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004855 struct stream *s;
4856 const char *name;
4857 size_t len;
4858 struct sample smp;
4859
4860 MAY_LJMP(check_args(L, 2, "get_var"));
4861
4862 /* It is useles to retrieve the stream, but this function
4863 * runs only in a stream context.
4864 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004865 luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004866 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004867 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004868
4869 smp_set_owner(&smp, s->be, s->sess, s, 0);
Willy Tarreaue352b9d2021-09-03 11:52:38 +02004870 if (!vars_get_by_name(name, len, &smp, NULL)) {
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004871 lua_pushnil(L);
4872 return 1;
4873 }
4874
4875 return hlua_smp2lua(L, &smp);
4876}
4877
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004878__LJMP static int hlua_applet_http_set_priv(lua_State *L)
4879{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004880 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4881 struct stream *s = luactx->htxn.s;
Thierry FOURNIER3b0a6d42016-12-16 08:48:32 +01004882 struct hlua *hlua;
4883
4884 /* Note that this hlua struct is from the session and not from the applet. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01004885 if (!s->hlua)
4886 return 0;
4887 hlua = s->hlua;
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004888
4889 MAY_LJMP(check_args(L, 2, "set_priv"));
4890
4891 /* Remove previous value. */
Thierry FOURNIERe068b602017-04-26 13:27:05 +02004892 luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref);
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004893
4894 /* Get and store new value. */
4895 lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */
4896 hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */
4897
4898 return 0;
4899}
4900
4901__LJMP static int hlua_applet_http_get_priv(lua_State *L)
4902{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004903 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4904 struct stream *s = luactx->htxn.s;
Thierry FOURNIER3b0a6d42016-12-16 08:48:32 +01004905 struct hlua *hlua;
4906
4907 /* Note that this hlua struct is from the session and not from the applet. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01004908 if (!s->hlua) {
4909 lua_pushnil(L);
4910 return 1;
4911 }
4912 hlua = s->hlua;
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004913
4914 /* Push configuration index in the stack. */
4915 lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref);
4916
4917 return 1;
4918}
4919
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004920/* If expected data not yet available, it returns a yield. This function
4921 * consumes the data in the buffer. It returns a string containing the
4922 * data. This string can be empty.
4923 */
Christopher Fauleta2097962019-07-15 16:25:33 +02004924__LJMP static int hlua_applet_http_getline_yield(lua_State *L, int status, lua_KContext ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004925{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004926 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Christopher Faulet908628c2022-03-25 16:43:49 +01004927 struct conn_stream *cs = luactx->appctx->owner;
4928 struct channel *req = cs_oc(cs);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004929 struct htx *htx;
4930 struct htx_blk *blk;
4931 size_t count;
4932 int stop = 0;
4933
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004934 htx = htx_from_buf(&req->buf);
4935 count = co_data(req);
Christopher Fauleta3f15502019-05-13 15:27:23 +02004936 blk = htx_get_first_blk(htx);
Christopher Fauletcc26b132018-12-18 21:20:57 +01004937
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004938 while (count && !stop && blk) {
4939 enum htx_blk_type type = htx_get_blk_type(blk);
4940 uint32_t sz = htx_get_blksz(blk);
4941 struct ist v;
4942 uint32_t vlen;
4943 char *nl;
4944
4945 vlen = sz;
4946 if (vlen > count) {
4947 if (type != HTX_BLK_DATA)
4948 break;
4949 vlen = count;
4950 }
4951
4952 switch (type) {
4953 case HTX_BLK_UNUSED:
4954 break;
4955
4956 case HTX_BLK_DATA:
4957 v = htx_get_blk_value(htx, blk);
4958 v.len = vlen;
4959 nl = istchr(v, '\n');
4960 if (nl != NULL) {
4961 stop = 1;
4962 vlen = nl - v.ptr + 1;
4963 }
Willy Tarreau7e702d12021-04-28 17:59:21 +02004964 luaL_addlstring(&luactx->b, v.ptr, vlen);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004965 break;
4966
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004967 case HTX_BLK_TLR:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004968 case HTX_BLK_EOT:
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004969 stop = 1;
4970 break;
4971
4972 default:
4973 break;
4974 }
4975
Willy Tarreau84240042022-02-28 16:51:23 +01004976 c_rew(req, vlen);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004977 count -= vlen;
4978 if (sz == vlen)
4979 blk = htx_remove_blk(htx, blk);
4980 else {
4981 htx_cut_data_blk(htx, blk, vlen);
4982 break;
4983 }
4984 }
4985
Christopher Fauleteccb31c2021-04-02 14:24:56 +02004986 /* The message was fully consumed and no more data are expected
4987 * (EOM flag set).
4988 */
4989 if (htx_is_empty(htx) && (htx->flags & HTX_FL_EOM))
4990 stop = 1;
4991
Christopher Faulet0ae79d02019-02-27 21:36:59 +01004992 htx_to_buf(htx, &req->buf);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004993 if (!stop) {
Christopher Fauleta0bdec32022-04-04 07:51:21 +02004994 cs_cant_get(cs);
Christopher Fauleta2097962019-07-15 16:25:33 +02004995 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_getline_yield, TICK_ETERNITY, 0));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004996 }
4997
4998 /* return the result. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004999 luaL_pushresult(&luactx->b);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005000 return 1;
5001}
5002
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005003
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08005004/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005005__LJMP static int hlua_applet_http_getline(lua_State *L)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005006{
Willy Tarreau7e702d12021-04-28 17:59:21 +02005007 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005008
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005009 /* Initialise the string catenation. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02005010 luaL_buffinit(L, &luactx->b);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005011
Christopher Fauleta2097962019-07-15 16:25:33 +02005012 return MAY_LJMP(hlua_applet_http_getline_yield(L, 0, 0));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005013}
5014
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005015/* If expected data not yet available, it returns a yield. This function
5016 * consumes the data in the buffer. It returns a string containing the
5017 * data. This string can be empty.
5018 */
Christopher Fauleta2097962019-07-15 16:25:33 +02005019__LJMP static int hlua_applet_http_recv_yield(lua_State *L, int status, lua_KContext ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005020{
Willy Tarreau7e702d12021-04-28 17:59:21 +02005021 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Christopher Faulet908628c2022-03-25 16:43:49 +01005022 struct conn_stream *cs = luactx->appctx->owner;
5023 struct channel *req = cs_oc(cs);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005024 struct htx *htx;
5025 struct htx_blk *blk;
5026 size_t count;
5027 int len;
5028
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005029 htx = htx_from_buf(&req->buf);
5030 len = MAY_LJMP(luaL_checkinteger(L, 2));
5031 count = co_data(req);
Christopher Faulet29f17582019-05-23 11:03:26 +02005032 blk = htx_get_head_blk(htx);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005033 while (count && len && blk) {
5034 enum htx_blk_type type = htx_get_blk_type(blk);
5035 uint32_t sz = htx_get_blksz(blk);
5036 struct ist v;
5037 uint32_t vlen;
5038
5039 vlen = sz;
5040 if (len > 0 && vlen > len)
5041 vlen = len;
5042 if (vlen > count) {
5043 if (type != HTX_BLK_DATA)
5044 break;
5045 vlen = count;
5046 }
5047
5048 switch (type) {
5049 case HTX_BLK_UNUSED:
5050 break;
5051
5052 case HTX_BLK_DATA:
5053 v = htx_get_blk_value(htx, blk);
Willy Tarreau7e702d12021-04-28 17:59:21 +02005054 luaL_addlstring(&luactx->b, v.ptr, vlen);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005055 break;
5056
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005057 case HTX_BLK_TLR:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005058 case HTX_BLK_EOT:
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005059 len = 0;
5060 break;
5061
5062 default:
5063 break;
5064 }
5065
Willy Tarreau84240042022-02-28 16:51:23 +01005066 c_rew(req, vlen);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005067 count -= vlen;
5068 if (len > 0)
5069 len -= vlen;
5070 if (sz == vlen)
5071 blk = htx_remove_blk(htx, blk);
5072 else {
5073 htx_cut_data_blk(htx, blk, vlen);
5074 break;
5075 }
5076 }
5077
Christopher Fauleteccb31c2021-04-02 14:24:56 +02005078 /* The message was fully consumed and no more data are expected
5079 * (EOM flag set).
5080 */
5081 if (htx_is_empty(htx) && (htx->flags & HTX_FL_EOM))
5082 len = 0;
5083
Christopher Faulet0ae79d02019-02-27 21:36:59 +01005084 htx_to_buf(htx, &req->buf);
5085
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005086 /* If we are no other data available, yield waiting for new data. */
5087 if (len) {
5088 if (len > 0) {
5089 lua_pushinteger(L, len);
5090 lua_replace(L, 2);
5091 }
Christopher Fauleta0bdec32022-04-04 07:51:21 +02005092 cs_cant_get(cs);
Willy Tarreau9635e032018-10-16 17:52:55 +02005093 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_recv_yield, TICK_ETERNITY, 0));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005094 }
5095
5096 /* return the result. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02005097 luaL_pushresult(&luactx->b);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005098 return 1;
5099}
5100
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08005101/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005102__LJMP static int hlua_applet_http_recv(lua_State *L)
5103{
Willy Tarreau7e702d12021-04-28 17:59:21 +02005104 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005105 int len = -1;
5106
5107 /* Check arguments. */
5108 if (lua_gettop(L) > 2)
5109 WILL_LJMP(luaL_error(L, "The 'recv' function requires between 1 and 2 arguments."));
5110 if (lua_gettop(L) >= 2) {
5111 len = MAY_LJMP(luaL_checkinteger(L, 2));
5112 lua_pop(L, 1);
5113 }
5114
Christopher Fauleta2097962019-07-15 16:25:33 +02005115 lua_pushinteger(L, len);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005116
Christopher Fauleta2097962019-07-15 16:25:33 +02005117 /* Initialise the string catenation. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02005118 luaL_buffinit(L, &luactx->b);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005119
Christopher Fauleta2097962019-07-15 16:25:33 +02005120 return MAY_LJMP(hlua_applet_http_recv_yield(L, 0, 0));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005121}
5122
5123/* Append data in the output side of the buffer. This data is immediately
5124 * sent. The function returns the amount of data written. If the buffer
5125 * cannot contain the data, the function yields. The function returns -1
5126 * if the channel is closed.
5127 */
Christopher Fauleta2097962019-07-15 16:25:33 +02005128__LJMP static int hlua_applet_http_send_yield(lua_State *L, int status, lua_KContext ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005129{
Willy Tarreau7e702d12021-04-28 17:59:21 +02005130 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Christopher Faulet908628c2022-03-25 16:43:49 +01005131 struct conn_stream *cs = luactx->appctx->owner;
5132 struct channel *res = cs_ic(cs);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005133 struct htx *htx = htx_from_buf(&res->buf);
5134 const char *data;
5135 size_t len;
5136 int l = MAY_LJMP(luaL_checkinteger(L, 3));
5137 int max;
5138
Christopher Faulet9060fc02019-07-03 11:39:30 +02005139 max = htx_get_max_blksz(htx, channel_htx_recv_max(res, htx));
Christopher Faulet4b0e9b22019-01-09 12:16:58 +01005140 if (!max)
5141 goto snd_yield;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005142
5143 data = MAY_LJMP(luaL_checklstring(L, 2, &len));
5144
5145 /* Get the max amount of data which can write as input in the channel. */
5146 if (max > (len - l))
5147 max = len - l;
5148
5149 /* Copy data. */
Willy Tarreau0a7ef022019-05-28 10:30:11 +02005150 max = htx_add_data(htx, ist2(data + l, max));
Christopher Fauletf6cce3f2019-02-27 21:20:09 +01005151 channel_add_input(res, max);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005152
5153 /* update counters. */
5154 l += max;
5155 lua_pop(L, 1);
5156 lua_pushinteger(L, l);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005157
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005158 /* If some data is not send, declares the situation to the
5159 * applet, and returns a yield.
5160 */
5161 if (l < len) {
Christopher Faulet4b0e9b22019-01-09 12:16:58 +01005162 snd_yield:
Christopher Faulet0ae79d02019-02-27 21:36:59 +01005163 htx_to_buf(htx, &res->buf);
Christopher Fauleta0bdec32022-04-04 07:51:21 +02005164 cs_rx_room_blk(cs);
Willy Tarreau9635e032018-10-16 17:52:55 +02005165 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_send_yield, TICK_ETERNITY, 0));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005166 }
5167
Christopher Fauleta2097962019-07-15 16:25:33 +02005168 htx_to_buf(htx, &res->buf);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005169 return 1;
5170}
5171
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05005172/* Just a wrapper of "hlua_applet_send_yield". This wrapper permits
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005173 * yield the LUA process, and resume it without checking the
5174 * input arguments.
5175 */
5176__LJMP static int hlua_applet_http_send(lua_State *L)
5177{
Willy Tarreau7e702d12021-04-28 17:59:21 +02005178 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005179
5180 /* We want to send some data. Headers must be sent. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02005181 if (!(luactx->appctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT)) {
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005182 hlua_pusherror(L, "Lua: 'send' you must call start_response() before sending data.");
5183 WILL_LJMP(lua_error(L));
5184 }
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005185
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05005186 /* This integer is used for followinf the amount of data sent. */
Christopher Fauleta2097962019-07-15 16:25:33 +02005187 lua_pushinteger(L, 0);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005188
Christopher Fauleta2097962019-07-15 16:25:33 +02005189 return MAY_LJMP(hlua_applet_http_send_yield(L, 0, 0));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005190}
5191
5192__LJMP static int hlua_applet_http_addheader(lua_State *L)
5193{
5194 const char *name;
5195 int ret;
5196
5197 MAY_LJMP(hlua_checkapplet_http(L, 1));
5198 name = MAY_LJMP(luaL_checkstring(L, 2));
5199 MAY_LJMP(luaL_checkstring(L, 3));
5200
5201 /* Push in the stack the "response" entry. */
5202 ret = lua_getfield(L, 1, "response");
5203 if (ret != LUA_TTABLE) {
5204 hlua_pusherror(L, "Lua: 'add_header' internal error: AppletHTTP['response'] "
5205 "is expected as an array. %s found", lua_typename(L, ret));
5206 WILL_LJMP(lua_error(L));
5207 }
5208
5209 /* check if the header is already registered if it is not
5210 * the case, register it.
5211 */
5212 ret = lua_getfield(L, -1, name);
5213 if (ret == LUA_TNIL) {
5214
5215 /* Entry not found. */
5216 lua_pop(L, 1); /* remove the nil. The "response" table is the top of the stack. */
5217
5218 /* Insert the new header name in the array in the top of the stack.
5219 * It left the new array in the top of the stack.
5220 */
5221 lua_newtable(L);
5222 lua_pushvalue(L, 2);
5223 lua_pushvalue(L, -2);
5224 lua_settable(L, -4);
5225
5226 } else if (ret != LUA_TTABLE) {
5227
5228 /* corruption error. */
5229 hlua_pusherror(L, "Lua: 'add_header' internal error: AppletHTTP['response']['%s'] "
5230 "is expected as an array. %s found", name, lua_typename(L, ret));
5231 WILL_LJMP(lua_error(L));
5232 }
5233
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07005234 /* Now the top of thestack is an array of values. We push
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005235 * the header value as new entry.
5236 */
5237 lua_pushvalue(L, 3);
5238 ret = lua_rawlen(L, -2);
5239 lua_rawseti(L, -2, ret + 1);
5240 lua_pushboolean(L, 1);
5241 return 1;
5242}
5243
5244__LJMP static int hlua_applet_http_status(lua_State *L)
5245{
Willy Tarreau7e702d12021-04-28 17:59:21 +02005246 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005247 int status = MAY_LJMP(luaL_checkinteger(L, 2));
Robin H. Johnson52f5db22017-01-01 13:10:52 -08005248 const char *reason = MAY_LJMP(luaL_optlstring(L, 3, NULL, NULL));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005249
5250 if (status < 100 || status > 599) {
5251 lua_pushboolean(L, 0);
5252 return 1;
5253 }
5254
Willy Tarreau7e702d12021-04-28 17:59:21 +02005255 luactx->appctx->ctx.hlua_apphttp.status = status;
5256 luactx->appctx->ctx.hlua_apphttp.reason = reason;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005257 lua_pushboolean(L, 1);
5258 return 1;
5259}
5260
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005261
Christopher Fauleta2097962019-07-15 16:25:33 +02005262__LJMP static int hlua_applet_http_send_response(lua_State *L)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005263{
Willy Tarreau7e702d12021-04-28 17:59:21 +02005264 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Christopher Faulet908628c2022-03-25 16:43:49 +01005265 struct conn_stream *cs = luactx->appctx->owner;
5266 struct channel *res = cs_ic(cs);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005267 struct htx *htx;
5268 struct htx_sl *sl;
5269 struct h1m h1m;
5270 const char *status, *reason;
5271 const char *name, *value;
5272 size_t nlen, vlen;
5273 unsigned int flags;
5274
5275 /* Send the message at once. */
5276 htx = htx_from_buf(&res->buf);
5277 h1m_init_res(&h1m);
5278
5279 /* Use the same http version than the request. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02005280 status = ultoa_r(luactx->appctx->ctx.hlua_apphttp.status, trash.area, trash.size);
5281 reason = luactx->appctx->ctx.hlua_apphttp.reason;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005282 if (reason == NULL)
Willy Tarreau7e702d12021-04-28 17:59:21 +02005283 reason = http_get_reason(luactx->appctx->ctx.hlua_apphttp.status);
5284 if (luactx->appctx->ctx.hlua_apphttp.flags & APPLET_HTTP11) {
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005285 flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11);
5286 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"), ist(status), ist(reason));
5287 }
5288 else {
5289 flags = HTX_SL_F_IS_RESP;
5290 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.0"), ist(status), ist(reason));
5291 }
5292 if (!sl) {
5293 hlua_pusherror(L, "Lua applet http '%s': Failed to create response.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005294 luactx->appctx->rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005295 WILL_LJMP(lua_error(L));
5296 }
Willy Tarreau7e702d12021-04-28 17:59:21 +02005297 sl->info.res.status = luactx->appctx->ctx.hlua_apphttp.status;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005298
5299 /* Get the array associated to the field "response" in the object AppletHTTP. */
5300 lua_pushvalue(L, 0);
5301 if (lua_getfield(L, 1, "response") != LUA_TTABLE) {
5302 hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response'] missing.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005303 luactx->appctx->rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005304 WILL_LJMP(lua_error(L));
5305 }
5306
5307 /* Browse the list of headers. */
5308 lua_pushnil(L);
5309 while(lua_next(L, -2) != 0) {
5310 /* We expect a string as -2. */
5311 if (lua_type(L, -2) != LUA_TSTRING) {
5312 hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response'][] element must be a string. got %s.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005313 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005314 lua_typename(L, lua_type(L, -2)));
5315 WILL_LJMP(lua_error(L));
5316 }
5317 name = lua_tolstring(L, -2, &nlen);
5318
5319 /* We expect an array as -1. */
5320 if (lua_type(L, -1) != LUA_TTABLE) {
5321 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 +02005322 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005323 name,
5324 lua_typename(L, lua_type(L, -1)));
5325 WILL_LJMP(lua_error(L));
5326 }
5327
5328 /* Browse the table who is on the top of the stack. */
5329 lua_pushnil(L);
5330 while(lua_next(L, -2) != 0) {
5331 int id;
5332
5333 /* We expect a number as -2. */
5334 if (lua_type(L, -2) != LUA_TNUMBER) {
5335 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 +02005336 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005337 name,
5338 lua_typename(L, lua_type(L, -2)));
5339 WILL_LJMP(lua_error(L));
5340 }
5341 id = lua_tointeger(L, -2);
5342
5343 /* We expect a string as -2. */
5344 if (lua_type(L, -1) != LUA_TSTRING) {
5345 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 +02005346 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005347 name, id,
5348 lua_typename(L, lua_type(L, -1)));
5349 WILL_LJMP(lua_error(L));
5350 }
5351 value = lua_tolstring(L, -1, &vlen);
5352
5353 /* Simple Protocol checks. */
Christopher Faulet545fbba2021-09-28 09:36:25 +02005354 if (isteqi(ist2(name, nlen), ist("transfer-encoding"))) {
5355 int ret;
5356
5357 ret = h1_parse_xfer_enc_header(&h1m, ist2(value, vlen));
5358 if (ret < 0) {
5359 hlua_pusherror(L, "Lua applet http '%s': Invalid '%s' header.\n",
5360 luactx->appctx->rule->arg.hlua_rule->fcn->name,
5361 name);
5362 WILL_LJMP(lua_error(L));
5363 }
5364 else if (ret == 0)
5365 goto next; /* Skip it */
5366 }
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005367 else if (isteqi(ist2(name, nlen), ist("content-length"))) {
5368 struct ist v = ist2(value, vlen);
5369 int ret;
5370
5371 ret = h1_parse_cont_len_header(&h1m, &v);
5372 if (ret < 0) {
5373 hlua_pusherror(L, "Lua applet http '%s': Invalid '%s' header.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005374 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005375 name);
5376 WILL_LJMP(lua_error(L));
5377 }
5378 else if (ret == 0)
5379 goto next; /* Skip it */
5380 }
5381
5382 /* Add a new header */
5383 if (!htx_add_header(htx, ist2(name, nlen), ist2(value, vlen))) {
5384 hlua_pusherror(L, "Lua applet http '%s': Failed to add header '%s' in the response.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005385 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005386 name);
5387 WILL_LJMP(lua_error(L));
5388 }
5389 next:
5390 /* Remove the array from the stack, and get next element with a remaining string. */
5391 lua_pop(L, 1);
5392 }
5393
5394 /* Remove the array from the stack, and get next element with a remaining string. */
5395 lua_pop(L, 1);
5396 }
5397
5398 if (h1m.flags & H1_MF_CHNK)
5399 h1m.flags &= ~H1_MF_CLEN;
5400 if (h1m.flags & (H1_MF_CLEN|H1_MF_CHNK))
5401 h1m.flags |= H1_MF_XFER_LEN;
5402
5403 /* Uset HTX start-line flags */
5404 if (h1m.flags & H1_MF_XFER_ENC)
5405 flags |= HTX_SL_F_XFER_ENC;
5406 if (h1m.flags & H1_MF_XFER_LEN) {
5407 flags |= HTX_SL_F_XFER_LEN;
5408 if (h1m.flags & H1_MF_CHNK)
5409 flags |= HTX_SL_F_CHNK;
5410 else if (h1m.flags & H1_MF_CLEN)
5411 flags |= HTX_SL_F_CLEN;
5412 if (h1m.body_len == 0)
5413 flags |= HTX_SL_F_BODYLESS;
5414 }
5415 sl->flags |= flags;
5416
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07005417 /* If we don't have a content-length set, and the HTTP version is 1.1
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005418 * and the status code implies the presence of a message body, we must
5419 * announce a transfer encoding chunked. This is required by haproxy
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05005420 * for the keepalive compliance. If the applet announces a transfer-encoding
5421 * chunked itself, don't do anything.
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005422 */
5423 if ((flags & (HTX_SL_F_VER_11|HTX_SL_F_XFER_LEN)) == HTX_SL_F_VER_11 &&
Willy Tarreau7e702d12021-04-28 17:59:21 +02005424 luactx->appctx->ctx.hlua_apphttp.status >= 200 &&
5425 luactx->appctx->ctx.hlua_apphttp.status != 204 &&
5426 luactx->appctx->ctx.hlua_apphttp.status != 304) {
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005427 /* Add a new header */
5428 sl->flags |= (HTX_SL_F_XFER_ENC|H1_MF_CHNK|H1_MF_XFER_LEN);
5429 if (!htx_add_header(htx, ist("transfer-encoding"), ist("chunked"))) {
5430 hlua_pusherror(L, "Lua applet http '%s': Failed to add header 'transfer-encoding' in the response.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005431 luactx->appctx->rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005432 WILL_LJMP(lua_error(L));
5433 }
5434 }
5435
5436 /* Finalize headers. */
5437 if (!htx_add_endof(htx, HTX_BLK_EOH)) {
5438 hlua_pusherror(L, "Lua applet http '%s': Failed create the response.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005439 luactx->appctx->rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005440 WILL_LJMP(lua_error(L));
5441 }
5442
5443 if (htx_used_space(htx) > b_size(&res->buf) - global.tune.maxrewrite) {
5444 b_reset(&res->buf);
5445 hlua_pusherror(L, "Lua: 'start_response': response header block too big");
5446 WILL_LJMP(lua_error(L));
5447 }
5448
5449 htx_to_buf(htx, &res->buf);
Christopher Fauletf6cce3f2019-02-27 21:20:09 +01005450 channel_add_input(res, htx->data);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005451
5452 /* Headers sent, set the flag. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02005453 luactx->appctx->ctx.hlua_apphttp.flags |= APPLET_HDR_SENT;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005454 return 0;
5455
5456}
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005457/* We will build the status line and the headers of the HTTP response.
5458 * We will try send at once if its not possible, we give back the hand
5459 * waiting for more room.
5460 */
Christopher Fauleta2097962019-07-15 16:25:33 +02005461__LJMP static int hlua_applet_http_start_response_yield(lua_State *L, int status, lua_KContext ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005462{
Willy Tarreau7e702d12021-04-28 17:59:21 +02005463 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Christopher Faulet908628c2022-03-25 16:43:49 +01005464 struct conn_stream *cs = luactx->appctx->owner;
5465 struct channel *res = cs_ic(cs);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005466
5467 if (co_data(res)) {
Christopher Fauleta0bdec32022-04-04 07:51:21 +02005468 cs_rx_room_blk(cs);
Christopher Fauleta2097962019-07-15 16:25:33 +02005469 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_start_response_yield, TICK_ETERNITY, 0));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005470 }
Christopher Fauleta2097962019-07-15 16:25:33 +02005471 return MAY_LJMP(hlua_applet_http_send_response(L));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005472}
5473
5474
Christopher Fauleta2097962019-07-15 16:25:33 +02005475__LJMP static int hlua_applet_http_start_response(lua_State *L)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005476{
Christopher Fauleta2097962019-07-15 16:25:33 +02005477 return MAY_LJMP(hlua_applet_http_start_response_yield(L, 0, 0));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005478}
5479
Christopher Fauleta2097962019-07-15 16:25:33 +02005480/*
5481 *
5482 *
5483 * Class HTTP
5484 *
5485 *
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005486 */
Christopher Fauleta2097962019-07-15 16:25:33 +02005487
5488/* Returns a struct hlua_txn if the stack entry "ud" is
5489 * a class stream, otherwise it throws an error.
5490 */
5491__LJMP static struct hlua_txn *hlua_checkhttp(lua_State *L, int ud)
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005492{
Christopher Fauleta2097962019-07-15 16:25:33 +02005493 return MAY_LJMP(hlua_checkudata(L, ud, class_http_ref));
5494}
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005495
Christopher Fauleta2097962019-07-15 16:25:33 +02005496/* This function creates and push in the stack a HTTP object
5497 * according with a current TXN.
5498 */
5499static int hlua_http_new(lua_State *L, struct hlua_txn *txn)
5500{
5501 struct hlua_txn *htxn;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005502
Christopher Fauleta2097962019-07-15 16:25:33 +02005503 /* Check stack size. */
5504 if (!lua_checkstack(L, 3))
5505 return 0;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005506
Christopher Fauleta2097962019-07-15 16:25:33 +02005507 /* Create the object: obj[0] = userdata.
5508 * Note that the base of the Converters object is the
5509 * same than the TXN object.
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005510 */
Christopher Fauleta2097962019-07-15 16:25:33 +02005511 lua_newtable(L);
5512 htxn = lua_newuserdata(L, sizeof(*htxn));
5513 lua_rawseti(L, -2, 0);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005514
5515 htxn->s = txn->s;
5516 htxn->p = txn->p;
Christopher Faulet256b69a2019-05-23 11:14:21 +02005517 htxn->dir = txn->dir;
5518 htxn->flags = txn->flags;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005519
5520 /* Pop a class stream metatable and affect it to the table. */
5521 lua_rawgeti(L, LUA_REGISTRYINDEX, class_http_ref);
5522 lua_setmetatable(L, -2);
5523
5524 return 1;
5525}
5526
Christopher Fauletdf97ac42020-02-26 16:57:19 +01005527/* This function creates and returns an array containing the status-line
5528 * elements. This function does not fails.
5529 */
5530__LJMP static int hlua_http_get_stline(lua_State *L, struct htx_sl *sl)
5531{
5532 /* Create the table. */
5533 lua_newtable(L);
5534
5535 if (sl->flags & HTX_SL_F_IS_RESP) {
5536 lua_pushstring(L, "version");
5537 lua_pushlstring(L, HTX_SL_RES_VPTR(sl), HTX_SL_RES_VLEN(sl));
5538 lua_settable(L, -3);
5539 lua_pushstring(L, "code");
5540 lua_pushlstring(L, HTX_SL_RES_CPTR(sl), HTX_SL_RES_CLEN(sl));
5541 lua_settable(L, -3);
5542 lua_pushstring(L, "reason");
5543 lua_pushlstring(L, HTX_SL_RES_RPTR(sl), HTX_SL_RES_RLEN(sl));
5544 lua_settable(L, -3);
5545 }
5546 else {
5547 lua_pushstring(L, "method");
5548 lua_pushlstring(L, HTX_SL_REQ_MPTR(sl), HTX_SL_REQ_MLEN(sl));
5549 lua_settable(L, -3);
5550 lua_pushstring(L, "uri");
5551 lua_pushlstring(L, HTX_SL_REQ_UPTR(sl), HTX_SL_REQ_ULEN(sl));
5552 lua_settable(L, -3);
5553 lua_pushstring(L, "version");
5554 lua_pushlstring(L, HTX_SL_REQ_VPTR(sl), HTX_SL_REQ_VLEN(sl));
5555 lua_settable(L, -3);
5556 }
5557 return 1;
5558}
5559
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005560/* This function creates ans returns an array of HTTP headers.
5561 * This function does not fails. It is used as wrapper with the
5562 * 2 following functions.
5563 */
Christopher Faulet9d1332b2020-02-24 16:46:16 +01005564__LJMP static int hlua_http_get_headers(lua_State *L, struct http_msg *msg)
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005565{
Christopher Fauleta2097962019-07-15 16:25:33 +02005566 struct htx *htx;
5567 int32_t pos;
5568
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005569 /* Create the table. */
5570 lua_newtable(L);
5571
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005572
Christopher Fauleta2097962019-07-15 16:25:33 +02005573 htx = htxbuf(&msg->chn->buf);
5574 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
5575 struct htx_blk *blk = htx_get_blk(htx, pos);
5576 enum htx_blk_type type = htx_get_blk_type(blk);
5577 struct ist n, v;
5578 int len;
Christopher Faulet724a12c2018-12-13 22:12:15 +01005579
Christopher Fauleta2097962019-07-15 16:25:33 +02005580 if (type == HTX_BLK_HDR) {
5581 n = htx_get_blk_name(htx,blk);
5582 v = htx_get_blk_value(htx, blk);
Christopher Faulet724a12c2018-12-13 22:12:15 +01005583 }
Christopher Fauleta2097962019-07-15 16:25:33 +02005584 else if (type == HTX_BLK_EOH)
5585 break;
5586 else
5587 continue;
Christopher Faulet724a12c2018-12-13 22:12:15 +01005588
Christopher Fauleta2097962019-07-15 16:25:33 +02005589 /* Check for existing entry:
5590 * assume that the table is on the top of the stack, and
5591 * push the key in the stack, the function lua_gettable()
5592 * perform the lookup.
5593 */
5594 lua_pushlstring(L, n.ptr, n.len);
5595 lua_gettable(L, -2);
Christopher Faulet724a12c2018-12-13 22:12:15 +01005596
Christopher Fauleta2097962019-07-15 16:25:33 +02005597 switch (lua_type(L, -1)) {
5598 case LUA_TNIL:
5599 /* Table not found, create it. */
5600 lua_pop(L, 1); /* remove the nil value. */
5601 lua_pushlstring(L, n.ptr, n.len); /* push the header name as key. */
5602 lua_newtable(L); /* create and push empty table. */
5603 lua_pushlstring(L, v.ptr, v.len); /* push header value. */
5604 lua_rawseti(L, -2, 0); /* index header value (pop it). */
5605 lua_rawset(L, -3); /* index new table with header name (pop the values). */
Christopher Faulet724a12c2018-12-13 22:12:15 +01005606 break;
Christopher Faulet724a12c2018-12-13 22:12:15 +01005607
Christopher Fauleta2097962019-07-15 16:25:33 +02005608 case LUA_TTABLE:
5609 /* Entry found: push the value in the table. */
5610 len = lua_rawlen(L, -1);
5611 lua_pushlstring(L, v.ptr, v.len); /* push header value. */
5612 lua_rawseti(L, -2, len+1); /* index header value (pop it). */
5613 lua_pop(L, 1); /* remove the table (it is stored in the main table). */
5614 break;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005615
Christopher Fauleta2097962019-07-15 16:25:33 +02005616 default:
5617 /* Other cases are errors. */
5618 hlua_pusherror(L, "internal error during the parsing of headers.");
5619 WILL_LJMP(lua_error(L));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005620 }
5621 }
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005622 return 1;
5623}
5624
5625__LJMP static int hlua_http_req_get_headers(lua_State *L)
5626{
5627 struct hlua_txn *htxn;
5628
5629 MAY_LJMP(check_args(L, 1, "req_get_headers"));
5630 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5631
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005632 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005633 WILL_LJMP(lua_error(L));
5634
Christopher Faulet9d1332b2020-02-24 16:46:16 +01005635 return hlua_http_get_headers(L, &htxn->s->txn->req);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005636}
5637
5638__LJMP static int hlua_http_res_get_headers(lua_State *L)
5639{
5640 struct hlua_txn *htxn;
5641
5642 MAY_LJMP(check_args(L, 1, "res_get_headers"));
5643 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5644
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005645 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005646 WILL_LJMP(lua_error(L));
5647
Christopher Faulet9d1332b2020-02-24 16:46:16 +01005648 return hlua_http_get_headers(L, &htxn->s->txn->rsp);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005649}
5650
5651/* This function replace full header, or just a value in
5652 * the request or in the response. It is a wrapper fir the
5653 * 4 following functions.
5654 */
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005655__LJMP static inline int hlua_http_rep_hdr(lua_State *L, struct http_msg *msg, int full)
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005656{
5657 size_t name_len;
5658 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
5659 const char *reg = MAY_LJMP(luaL_checkstring(L, 3));
5660 const char *value = MAY_LJMP(luaL_checkstring(L, 4));
Christopher Fauleta2097962019-07-15 16:25:33 +02005661 struct htx *htx;
Dragan Dosen26743032019-04-30 15:54:36 +02005662 struct my_regex *re;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005663
Dragan Dosen26743032019-04-30 15:54:36 +02005664 if (!(re = regex_comp(reg, 1, 1, NULL)))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005665 WILL_LJMP(luaL_argerror(L, 3, "invalid regex"));
5666
Christopher Fauleta2097962019-07-15 16:25:33 +02005667 htx = htxbuf(&msg->chn->buf);
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005668 http_replace_hdrs(chn_strm(msg->chn), htx, ist2(name, name_len), value, re, full);
Dragan Dosen26743032019-04-30 15:54:36 +02005669 regex_free(re);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005670 return 0;
5671}
5672
5673__LJMP static int hlua_http_req_rep_hdr(lua_State *L)
5674{
5675 struct hlua_txn *htxn;
5676
5677 MAY_LJMP(check_args(L, 4, "req_rep_hdr"));
5678 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5679
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005680 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005681 WILL_LJMP(lua_error(L));
5682
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005683 return MAY_LJMP(hlua_http_rep_hdr(L, &htxn->s->txn->req, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005684}
5685
5686__LJMP static int hlua_http_res_rep_hdr(lua_State *L)
5687{
5688 struct hlua_txn *htxn;
5689
5690 MAY_LJMP(check_args(L, 4, "res_rep_hdr"));
5691 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5692
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005693 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005694 WILL_LJMP(lua_error(L));
5695
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005696 return MAY_LJMP(hlua_http_rep_hdr(L, &htxn->s->txn->rsp, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005697}
5698
5699__LJMP static int hlua_http_req_rep_val(lua_State *L)
5700{
5701 struct hlua_txn *htxn;
5702
5703 MAY_LJMP(check_args(L, 4, "req_rep_hdr"));
5704 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5705
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005706 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005707 WILL_LJMP(lua_error(L));
5708
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005709 return MAY_LJMP(hlua_http_rep_hdr(L, &htxn->s->txn->req, 0));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005710}
5711
5712__LJMP static int hlua_http_res_rep_val(lua_State *L)
5713{
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005714 struct hlua_txn *htxn;
5715
5716 MAY_LJMP(check_args(L, 4, "res_rep_val"));
5717 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5718
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005719 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005720 WILL_LJMP(lua_error(L));
5721
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005722 return MAY_LJMP(hlua_http_rep_hdr(L, &htxn->s->txn->rsp, 0));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005723}
5724
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08005725/* This function deletes all the occurrences of an header.
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005726 * It is a wrapper for the 2 following functions.
5727 */
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005728__LJMP static inline int hlua_http_del_hdr(lua_State *L, struct http_msg *msg)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005729{
5730 size_t len;
5731 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Christopher Fauleta2097962019-07-15 16:25:33 +02005732 struct htx *htx = htxbuf(&msg->chn->buf);
5733 struct http_hdr_ctx ctx;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005734
Christopher Fauleta2097962019-07-15 16:25:33 +02005735 ctx.blk = NULL;
5736 while (http_find_header(htx, ist2(name, len), &ctx, 1))
5737 http_remove_header(htx, &ctx);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005738 return 0;
5739}
5740
5741__LJMP static int hlua_http_req_del_hdr(lua_State *L)
5742{
5743 struct hlua_txn *htxn;
5744
5745 MAY_LJMP(check_args(L, 2, "req_del_hdr"));
5746 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5747
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005748 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005749 WILL_LJMP(lua_error(L));
5750
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005751 return hlua_http_del_hdr(L, &htxn->s->txn->req);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005752}
5753
5754__LJMP static int hlua_http_res_del_hdr(lua_State *L)
5755{
5756 struct hlua_txn *htxn;
5757
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005758 MAY_LJMP(check_args(L, 2, "res_del_hdr"));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005759 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5760
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005761 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005762 WILL_LJMP(lua_error(L));
5763
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005764 return hlua_http_del_hdr(L, &htxn->s->txn->rsp);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005765}
5766
5767/* This function adds an header. It is a wrapper used by
5768 * the 2 following functions.
5769 */
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005770__LJMP static inline int hlua_http_add_hdr(lua_State *L, struct http_msg *msg)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005771{
5772 size_t name_len;
5773 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
5774 size_t value_len;
5775 const char *value = MAY_LJMP(luaL_checklstring(L, 3, &value_len));
Christopher Fauleta2097962019-07-15 16:25:33 +02005776 struct htx *htx = htxbuf(&msg->chn->buf);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005777
Christopher Fauleta2097962019-07-15 16:25:33 +02005778 lua_pushboolean(L, http_add_header(htx, ist2(name, name_len),
5779 ist2(value, value_len)));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005780 return 0;
5781}
5782
Christopher Fauletdf97ac42020-02-26 16:57:19 +01005783__LJMP static int hlua_http_req_add_hdr(lua_State *L)
5784{
5785 struct hlua_txn *htxn;
5786
5787 MAY_LJMP(check_args(L, 3, "req_add_hdr"));
5788 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5789
5790 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
5791 WILL_LJMP(lua_error(L));
5792
5793 return hlua_http_add_hdr(L, &htxn->s->txn->req);
5794}
5795
5796__LJMP static int hlua_http_res_add_hdr(lua_State *L)
5797{
5798 struct hlua_txn *htxn;
5799
5800 MAY_LJMP(check_args(L, 3, "res_add_hdr"));
5801 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5802
5803 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
5804 WILL_LJMP(lua_error(L));
5805
5806 return hlua_http_add_hdr(L, &htxn->s->txn->rsp);
5807}
5808
5809static int hlua_http_req_set_hdr(lua_State *L)
5810{
5811 struct hlua_txn *htxn;
5812
5813 MAY_LJMP(check_args(L, 3, "req_set_hdr"));
5814 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5815
5816 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
5817 WILL_LJMP(lua_error(L));
5818
5819 hlua_http_del_hdr(L, &htxn->s->txn->req);
5820 return hlua_http_add_hdr(L, &htxn->s->txn->req);
5821}
5822
5823static int hlua_http_res_set_hdr(lua_State *L)
5824{
5825 struct hlua_txn *htxn;
5826
5827 MAY_LJMP(check_args(L, 3, "res_set_hdr"));
5828 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5829
5830 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
5831 WILL_LJMP(lua_error(L));
5832
5833 hlua_http_del_hdr(L, &htxn->s->txn->rsp);
5834 return hlua_http_add_hdr(L, &htxn->s->txn->rsp);
5835}
5836
5837/* This function set the method. */
5838static int hlua_http_req_set_meth(lua_State *L)
5839{
5840 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5841 size_t name_len;
5842 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
5843
5844 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
5845 WILL_LJMP(lua_error(L));
5846
5847 lua_pushboolean(L, http_req_replace_stline(0, name, name_len, htxn->p, htxn->s) != -1);
5848 return 1;
5849}
5850
5851/* This function set the method. */
5852static int hlua_http_req_set_path(lua_State *L)
5853{
5854 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5855 size_t name_len;
5856 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
5857
5858 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
5859 WILL_LJMP(lua_error(L));
5860
5861 lua_pushboolean(L, http_req_replace_stline(1, name, name_len, htxn->p, htxn->s) != -1);
5862 return 1;
5863}
5864
5865/* This function set the query-string. */
5866static int hlua_http_req_set_query(lua_State *L)
5867{
5868 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5869 size_t name_len;
5870 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
5871
5872 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
5873 WILL_LJMP(lua_error(L));
5874
5875 /* Check length. */
5876 if (name_len > trash.size - 1) {
5877 lua_pushboolean(L, 0);
5878 return 1;
5879 }
5880
5881 /* Add the mark question as prefix. */
5882 chunk_reset(&trash);
5883 trash.area[trash.data++] = '?';
5884 memcpy(trash.area + trash.data, name, name_len);
5885 trash.data += name_len;
5886
5887 lua_pushboolean(L,
5888 http_req_replace_stline(2, trash.area, trash.data, htxn->p, htxn->s) != -1);
5889 return 1;
5890}
5891
5892/* This function set the uri. */
5893static int hlua_http_req_set_uri(lua_State *L)
5894{
5895 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5896 size_t name_len;
5897 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
5898
5899 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
5900 WILL_LJMP(lua_error(L));
5901
5902 lua_pushboolean(L, http_req_replace_stline(3, name, name_len, htxn->p, htxn->s) != -1);
5903 return 1;
5904}
5905
5906/* This function set the response code & optionally reason. */
5907static int hlua_http_res_set_status(lua_State *L)
5908{
5909 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5910 unsigned int code = MAY_LJMP(luaL_checkinteger(L, 2));
5911 const char *str = MAY_LJMP(luaL_optlstring(L, 3, NULL, NULL));
5912 const struct ist reason = ist2(str, (str ? strlen(str) : 0));
5913
5914 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
5915 WILL_LJMP(lua_error(L));
5916
5917 http_res_set_status(code, reason, htxn->s);
5918 return 0;
5919}
5920
5921/*
5922 *
5923 *
5924 * Class HTTPMessage
5925 *
5926 *
5927 */
5928
5929/* Returns a struct http_msg if the stack entry "ud" is a class HTTPMessage,
5930 * otherwise it throws an error.
5931 */
5932__LJMP static struct http_msg *hlua_checkhttpmsg(lua_State *L, int ud)
5933{
5934 return MAY_LJMP(hlua_checkudata(L, ud, class_http_msg_ref));
5935}
5936
5937/* Creates and pushes on the stack a HTTP object according with a current TXN.
5938 */
Christopher Faulet78c35472020-02-26 17:14:08 +01005939static int hlua_http_msg_new(lua_State *L, struct http_msg *msg)
Christopher Fauletdf97ac42020-02-26 16:57:19 +01005940{
5941 /* Check stack size. */
5942 if (!lua_checkstack(L, 3))
5943 return 0;
5944
5945 lua_newtable(L);
5946 lua_pushlightuserdata(L, msg);
5947 lua_rawseti(L, -2, 0);
5948
5949 /* Create the "channel" field that contains the request channel object. */
5950 lua_pushstring(L, "channel");
5951 if (!hlua_channel_new(L, msg->chn))
5952 return 0;
5953 lua_rawset(L, -3);
5954
5955 /* Pop a class stream metatable and affect it to the table. */
5956 lua_rawgeti(L, LUA_REGISTRYINDEX, class_http_msg_ref);
5957 lua_setmetatable(L, -2);
5958
5959 return 1;
5960}
5961
5962/* Helper function returning a filter attached to the HTTP message at the
5963 * position <ud> in the stack, filling the current offset and length of the
Ilya Shipitsinff0f2782021-08-22 22:18:07 +05005964 * filter. If no filter is attached, NULL is returned and <offset> and <len> are
Christopher Fauletdf97ac42020-02-26 16:57:19 +01005965 * filled with output and input length respectively.
5966 */
5967static struct filter *hlua_http_msg_filter(lua_State *L, int ud, struct http_msg *msg, size_t *offset, size_t *len)
5968{
5969 struct channel *chn = msg->chn;
5970 struct htx *htx = htxbuf(&chn->buf);
5971 struct filter *filter = NULL;
5972
5973 *offset = co_data(msg->chn);
5974 *len = htx->data - co_data(msg->chn);
5975
5976 if (lua_getfield(L, ud, "__filter") == LUA_TLIGHTUSERDATA) {
5977 filter = lua_touserdata (L, -1);
5978 if (msg->msg_state >= HTTP_MSG_DATA) {
5979 struct hlua_flt_ctx *flt_ctx = filter->ctx;
5980
5981 *offset = flt_ctx->cur_off[CHN_IDX(chn)];
5982 *len = flt_ctx->cur_len[CHN_IDX(chn)];
5983 }
5984 }
5985
5986 lua_pop(L, 1);
5987 return filter;
5988}
5989
5990/* Returns true if the channel attached to the HTTP message is the response
5991 * channel.
5992 */
5993__LJMP static int hlua_http_msg_is_resp(lua_State *L)
5994{
5995 struct http_msg *msg;
5996
5997 MAY_LJMP(check_args(L, 1, "is_resp"));
5998 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
5999
6000 lua_pushboolean(L, !!(msg->chn->flags & CF_ISRESP));
6001 return 1;
6002}
6003
6004/* Returns an array containing the elements status-line of the HTTP message. It relies
6005 * on hlua_http_get_stline().
6006 */
6007__LJMP static int hlua_http_msg_get_stline(lua_State *L)
6008{
6009 struct http_msg *msg;
6010 struct htx *htx;
6011 struct htx_sl *sl;
6012
6013 MAY_LJMP(check_args(L, 1, "get_stline"));
6014 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6015
6016 if (msg->msg_state > HTTP_MSG_BODY)
6017 WILL_LJMP(lua_error(L));
6018
6019 htx = htxbuf(&msg->chn->buf);
6020 sl = http_get_stline(htx);
6021 if (!sl)
6022 return 0;
6023 return hlua_http_get_stline(L, sl);
6024}
6025
6026/* Returns an array containing all headers of the HTTP message. it relies on
6027 * hlua_http_get_headers().
6028 */
6029__LJMP static int hlua_http_msg_get_headers(lua_State *L)
6030{
6031 struct http_msg *msg;
6032
6033 MAY_LJMP(check_args(L, 1, "get_headers"));
6034 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6035
6036 if (msg->msg_state > HTTP_MSG_BODY)
6037 WILL_LJMP(lua_error(L));
6038
6039 return hlua_http_get_headers(L, msg);
6040}
6041
6042/* Deletes all occurrences of an header in the HTTP message matching on its
6043 * name. It relies on hlua_http_del_hdr().
6044 */
6045__LJMP static int hlua_http_msg_del_hdr(lua_State *L)
6046{
6047 struct http_msg *msg;
6048
6049 MAY_LJMP(check_args(L, 2, "del_header"));
6050 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6051
6052 if (msg->msg_state > HTTP_MSG_BODY)
6053 WILL_LJMP(lua_error(L));
6054
6055 return hlua_http_del_hdr(L, msg);
6056}
6057
Ilya Shipitsinff0f2782021-08-22 22:18:07 +05006058/* Matches the full value line of all occurrences of an header in the HTTP
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006059 * message given its name against a regex and replaces it if it matches. It
6060 * relies on hlua_http_rep_hdr().
6061 */
6062__LJMP static int hlua_http_msg_rep_hdr(lua_State *L)
6063{
6064 struct http_msg *msg;
6065
6066 MAY_LJMP(check_args(L, 4, "rep_header"));
6067 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6068
6069 if (msg->msg_state > HTTP_MSG_BODY)
6070 WILL_LJMP(lua_error(L));
6071
6072 return hlua_http_rep_hdr(L, msg, 1);
6073}
6074
Ilya Shipitsinbd6b4be2021-10-15 16:18:21 +05006075/* Matches all comma-separated values of all occurrences of an header in the HTTP
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006076 * message given its name against a regex and replaces it if it matches. It
6077 * relies on hlua_http_rep_hdr().
6078 */
6079__LJMP static int hlua_http_msg_rep_val(lua_State *L)
6080{
6081 struct http_msg *msg;
6082
6083 MAY_LJMP(check_args(L, 4, "rep_value"));
6084 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6085
6086 if (msg->msg_state > HTTP_MSG_BODY)
6087 WILL_LJMP(lua_error(L));
6088
6089 return hlua_http_rep_hdr(L, msg, 0);
6090}
6091
6092/* Add an header in the HTTP message. It relies on hlua_http_add_hdr() */
6093__LJMP static int hlua_http_msg_add_hdr(lua_State *L)
6094{
6095 struct http_msg *msg;
6096
6097 MAY_LJMP(check_args(L, 3, "add_header"));
6098 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6099
6100 if (msg->msg_state > HTTP_MSG_BODY)
6101 WILL_LJMP(lua_error(L));
6102
6103 return hlua_http_add_hdr(L, msg);
6104}
6105
6106/* Add an header in the HTTP message removing existing headers with the same
6107 * name. It relies on hlua_http_del_hdr() and hlua_http_add_hdr().
6108 */
6109__LJMP static int hlua_http_msg_set_hdr(lua_State *L)
6110{
6111 struct http_msg *msg;
6112
6113 MAY_LJMP(check_args(L, 3, "set_header"));
6114 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6115
6116 if (msg->msg_state > HTTP_MSG_BODY)
6117 WILL_LJMP(lua_error(L));
6118
6119 hlua_http_del_hdr(L, msg);
6120 return hlua_http_add_hdr(L, msg);
6121}
6122
6123/* Rewrites the request method. It relies on http_req_replace_stline(). */
6124__LJMP static int hlua_http_msg_set_meth(lua_State *L)
6125{
6126 struct stream *s;
6127 struct http_msg *msg;
6128 const char *name;
6129 size_t name_len;
6130
6131 MAY_LJMP(check_args(L, 2, "set_method"));
6132 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6133 name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
6134
6135 if ((msg->chn->flags & CF_ISRESP) || msg->msg_state > HTTP_MSG_BODY)
6136 WILL_LJMP(lua_error(L));
6137
6138 s = chn_strm(msg->chn);
6139 lua_pushboolean(L, http_req_replace_stline(0, name, name_len, s->be, s) != -1);
6140 return 1;
6141}
6142
6143/* Rewrites the request path. It relies on http_req_replace_stline(). */
6144__LJMP static int hlua_http_msg_set_path(lua_State *L)
6145{
6146 struct stream *s;
6147 struct http_msg *msg;
6148 const char *name;
6149 size_t name_len;
6150
6151 MAY_LJMP(check_args(L, 2, "set_path"));
6152 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6153 name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
6154
6155 if ((msg->chn->flags & CF_ISRESP) || msg->msg_state > HTTP_MSG_BODY)
6156 WILL_LJMP(lua_error(L));
6157
6158 s = chn_strm(msg->chn);
6159 lua_pushboolean(L, http_req_replace_stline(1, name, name_len, s->be, s) != -1);
6160 return 1;
6161}
6162
6163/* Rewrites the request query-string. It relies on http_req_replace_stline(). */
6164__LJMP static int hlua_http_msg_set_query(lua_State *L)
6165{
6166 struct stream *s;
6167 struct http_msg *msg;
6168 const char *name;
6169 size_t name_len;
6170
6171 MAY_LJMP(check_args(L, 2, "set_query"));
6172 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6173 name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
6174
6175 if ((msg->chn->flags & CF_ISRESP) || msg->msg_state > HTTP_MSG_BODY)
6176 WILL_LJMP(lua_error(L));
6177
6178 /* Check length. */
6179 if (name_len > trash.size - 1) {
6180 lua_pushboolean(L, 0);
6181 return 1;
6182 }
6183
6184 /* Add the mark question as prefix. */
6185 chunk_reset(&trash);
6186 trash.area[trash.data++] = '?';
6187 memcpy(trash.area + trash.data, name, name_len);
6188 trash.data += name_len;
6189
6190 s = chn_strm(msg->chn);
6191 lua_pushboolean(L, http_req_replace_stline(2, trash.area, trash.data, s->be, s) != -1);
6192 return 1;
6193}
6194
6195/* Rewrites the request URI. It relies on http_req_replace_stline(). */
6196__LJMP static int hlua_http_msg_set_uri(lua_State *L)
6197{
6198 struct stream *s;
6199 struct http_msg *msg;
6200 const char *name;
6201 size_t name_len;
6202
6203 MAY_LJMP(check_args(L, 2, "set_uri"));
6204 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6205 name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
6206
6207 if ((msg->chn->flags & CF_ISRESP) || msg->msg_state > HTTP_MSG_BODY)
6208 WILL_LJMP(lua_error(L));
6209
6210 s = chn_strm(msg->chn);
6211 lua_pushboolean(L, http_req_replace_stline(3, name, name_len, s->be, s) != -1);
6212 return 1;
6213}
6214
6215/* Rewrites the response status code. It relies on http_res_set_status(). */
6216__LJMP static int hlua_http_msg_set_status(lua_State *L)
6217{
6218 struct http_msg *msg;
6219 unsigned int code;
6220 const char *reason;
6221 size_t reason_len;
6222
6223 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6224 code = MAY_LJMP(luaL_checkinteger(L, 2));
6225 reason = MAY_LJMP(luaL_optlstring(L, 3, NULL, &reason_len));
6226
6227 if (!(msg->chn->flags & CF_ISRESP) || msg->msg_state > HTTP_MSG_BODY)
6228 WILL_LJMP(lua_error(L));
6229
6230 lua_pushboolean(L, http_res_set_status(code, ist2(reason, reason_len), chn_strm(msg->chn)) != -1);
6231 return 1;
6232}
6233
6234/* Returns true if the HTTP message is full. */
6235__LJMP static int hlua_http_msg_is_full(lua_State *L)
6236{
6237 struct http_msg *msg;
6238
6239 MAY_LJMP(check_args(L, 1, "is_full"));
6240 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6241 lua_pushboolean(L, channel_full(msg->chn, 0));
6242 return 1;
6243}
6244
6245/* Returns true if the HTTP message may still receive data. */
6246__LJMP static int hlua_http_msg_may_recv(lua_State *L)
6247{
6248 struct http_msg *msg;
6249 struct htx *htx;
6250
6251 MAY_LJMP(check_args(L, 1, "may_recv"));
6252 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6253 htx = htxbuf(&msg->chn->buf);
6254 lua_pushboolean(L, (htx_expect_more(htx) && !channel_input_closed(msg->chn) && channel_may_recv(msg->chn)));
6255 return 1;
6256}
6257
6258/* Returns true if the HTTP message EOM was received */
6259__LJMP static int hlua_http_msg_is_eom(lua_State *L)
6260{
6261 struct http_msg *msg;
6262 struct htx *htx;
6263
6264 MAY_LJMP(check_args(L, 1, "may_recv"));
6265 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6266 htx = htxbuf(&msg->chn->buf);
6267 lua_pushboolean(L, !htx_expect_more(htx));
6268 return 1;
6269}
6270
6271/* Returns the number of bytes available in the input side of the HTTP
6272 * message. This function never fails.
6273 */
6274__LJMP static int hlua_http_msg_get_in_len(lua_State *L)
6275{
6276 struct http_msg *msg;
Christopher Fauleteae8afa2020-02-26 17:15:48 +01006277 size_t output, input;
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006278
6279 MAY_LJMP(check_args(L, 1, "input"));
6280 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
Christopher Fauleteae8afa2020-02-26 17:15:48 +01006281 hlua_http_msg_filter(L, 1, msg, &output, &input);
6282 lua_pushinteger(L, input);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006283 return 1;
6284}
6285
6286/* Returns the number of bytes available in the output side of the HTTP
6287 * message. This function never fails.
6288 */
6289__LJMP static int hlua_http_msg_get_out_len(lua_State *L)
6290{
6291 struct http_msg *msg;
Christopher Fauleteae8afa2020-02-26 17:15:48 +01006292 size_t output, input;
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006293
6294 MAY_LJMP(check_args(L, 1, "output"));
6295 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
Christopher Fauleteae8afa2020-02-26 17:15:48 +01006296 hlua_http_msg_filter(L, 1, msg, &output, &input);
6297 lua_pushinteger(L, output);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006298 return 1;
6299}
6300
6301/* Copies at most <len> bytes of DATA blocks from the HTTP message <msg>
6302 * starting at the offset <offset> and put it in a string LUA variables. It
Ilya Shipitsinff0f2782021-08-22 22:18:07 +05006303 * returns the built string length. It stops on the first non-DATA HTX
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006304 * block. This function is called during the payload filtering, so the headers
6305 * are already scheduled for output (from the filter point of view).
6306 */
6307static int _hlua_http_msg_dup(struct http_msg *msg, lua_State *L, size_t offset, size_t len)
6308{
6309 struct htx *htx = htxbuf(&msg->chn->buf);
6310 struct htx_blk *blk;
6311 struct htx_ret htxret;
6312 luaL_Buffer b;
6313 int ret = 0;
6314
6315 luaL_buffinit(L, &b);
6316 htxret = htx_find_offset(htx, offset);
6317 for (blk = htxret.blk, offset = htxret.ret; blk && len; blk = htx_get_next_blk(htx, blk)) {
6318 enum htx_blk_type type = htx_get_blk_type(blk);
6319 struct ist v;
6320
6321 switch (type) {
6322 case HTX_BLK_UNUSED:
6323 break;
6324
6325 case HTX_BLK_DATA:
6326 v = htx_get_blk_value(htx, blk);
Tim Duesterhusb113b5c2021-09-15 13:58:44 +02006327 v = istadv(v, offset);
Tim Duesterhus2471f5c2021-11-08 09:05:01 +01006328 v = isttrim(v, len);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006329
6330 luaL_addlstring(&b, v.ptr, v.len);
6331 ret += v.len;
6332 break;
6333
6334 default:
vishnu0af4bd72021-10-24 06:46:24 +05306335 if (!ret)
6336 goto no_data;
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006337 goto end;
6338 }
6339 offset = 0;
6340 }
6341
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006342end:
vishnu0af4bd72021-10-24 06:46:24 +05306343 if (!ret && (htx->flags & HTX_FL_EOM))
6344 goto no_data;
6345 luaL_pushresult(&b);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006346 return ret;
vishnu0af4bd72021-10-24 06:46:24 +05306347
6348 no_data:
6349 /* Remove the empty string and push nil on the stack */
6350 lua_pop(L, 1);
6351 lua_pushnil(L);
6352 return 0;
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006353}
6354
6355/* Copies the string <str> to the HTTP message <msg> at the offset
6356 * <offset>. This function returns -1 if data cannot be copied. Otherwise, it
Ilya Shipitsinff0f2782021-08-22 22:18:07 +05006357 * returns the amount of data written. This function is responsible to update
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006358 * the filter context.
6359 */
6360static int _hlua_http_msg_insert(struct http_msg *msg, struct filter *filter, struct ist str, size_t offset)
6361{
6362 struct htx *htx = htx_from_buf(&msg->chn->buf);
6363 struct htx_ret htxret;
6364 int /*max, */ret = 0;
6365
6366 /* Nothing to do, just return */
6367 if (unlikely(istlen(str) == 0))
6368 goto end;
6369
6370 if (istlen(str) > htx_free_data_space(htx)) {
6371 ret = -1;
6372 goto end;
6373 }
6374
6375 htxret = htx_find_offset(htx, offset);
6376 if (!htxret.blk || htx_get_blk_type(htxret.blk) != HTX_BLK_DATA) {
6377 if (!htx_add_last_data(htx, str))
6378 goto end;
6379 }
6380 else {
6381 struct ist v = htx_get_blk_value(htx, htxret.blk);
6382 v.ptr += htxret.ret;
6383 v.len = 0;
6384 if (!htx_replace_blk_value(htx, htxret.blk, v, str))
6385 goto end;
6386 }
6387 ret = str.len;
6388 if (ret) {
6389 struct hlua_flt_ctx *flt_ctx = filter->ctx;
6390 flt_update_offsets(filter, msg->chn, ret);
6391 flt_ctx->cur_len[CHN_IDX(msg->chn)] += ret;
6392 }
6393
6394 end:
6395 htx_to_buf(htx, &msg->chn->buf);
6396 return ret;
6397}
6398
6399/* Helper function removing at most <len> bytes of DATA blocks at the absolute
6400 * position <offset>. It stops on the first non-DATA HTX block. This function is
6401 * called during the payload filtering, so the headers are already scheduled for
Ilya Shipitsinff0f2782021-08-22 22:18:07 +05006402 * output (from the filter point of view). This function is responsible to
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006403 * update the filter context.
6404 */
6405static void _hlua_http_msg_delete(struct http_msg *msg, struct filter *filter, size_t offset, size_t len)
6406{
6407 struct hlua_flt_ctx *flt_ctx = filter->ctx;
6408 struct htx *htx = htx_from_buf(&msg->chn->buf);
6409 struct htx_blk *blk;
6410 struct htx_ret htxret;
6411 size_t ret = 0;
6412
6413 /* Be sure <len> is always the amount of DATA to remove */
6414 if (htx->data == offset+len && htx_get_tail_type(htx) == HTX_BLK_DATA) {
6415 htx_truncate(htx, offset);
6416 ret = len;
6417 goto end;
6418 }
6419
6420 htxret = htx_find_offset(htx, offset);
6421 blk = htxret.blk;
6422 if (htxret.ret) {
6423 struct ist v;
6424
6425 if (htx_get_blk_type(blk) != HTX_BLK_DATA)
6426 goto end;
6427 v = htx_get_blk_value(htx, blk);
6428 v.ptr += htxret.ret;
Tim Duesterhus2471f5c2021-11-08 09:05:01 +01006429 v = isttrim(v, len);
Tim Duesterhusb113b5c2021-09-15 13:58:44 +02006430 blk = htx_replace_blk_value(htx, blk, v, IST_NULL);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006431 len -= v.len;
6432 ret += v.len;
6433 }
6434
6435
6436 while (blk && len) {
6437 enum htx_blk_type type = htx_get_blk_type(blk);
6438 uint32_t sz = htx_get_blksz(blk);
6439
6440 switch (type) {
6441 case HTX_BLK_UNUSED:
6442 break;
6443
6444 case HTX_BLK_DATA:
6445 if (len < sz) {
6446 htx_cut_data_blk(htx, blk, len);
6447 ret += len;
6448 goto end;
6449 }
6450 break;
6451
6452 default:
6453 goto end;
6454 }
6455
Ilya Shipitsinff0f2782021-08-22 22:18:07 +05006456 /* Remove all the data block */
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006457 len -= sz;
6458 ret += sz;
6459 blk = htx_remove_blk(htx, blk);
6460 }
6461
6462end:
6463 flt_update_offsets(filter, msg->chn, -ret);
6464 flt_ctx->cur_len[CHN_IDX(msg->chn)] -= ret;
6465 /* WARNING: we don't call htx_to_buf() on purpose, because we don't want
6466 * to loose the EOM flag if the message is empty.
6467 */
6468}
6469
6470/* Copies input data found in an HTTP message. Unlike the channel function used
6471 * to duplicate raw data, this one can only be called inside a filter, from
6472 * http_payload callback. So it cannot yield. An exception is returned if it is
6473 * called from another callback. If nothing was copied, a nil value is pushed on
6474 * the stack.
6475 */
6476__LJMP static int hlua_http_msg_get_body(lua_State *L)
6477{
6478 struct http_msg *msg;
6479 struct filter *filter;
6480 size_t output, input;
6481 int offset, len;
6482
6483 if (lua_gettop(L) < 1 || lua_gettop(L) > 3)
6484 WILL_LJMP(luaL_error(L, "'data' expects at most 2 arguments"));
6485 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6486
6487 if (msg->msg_state < HTTP_MSG_DATA)
6488 WILL_LJMP(lua_error(L));
6489
6490 filter = hlua_http_msg_filter(L, 1, msg, &output, &input);
6491 if (!filter || !hlua_filter_from_payload(filter))
6492 WILL_LJMP(lua_error(L));
6493
6494 if (!ci_data(msg->chn) && channel_input_closed(msg->chn)) {
6495 lua_pushnil(L);
6496 return 1;
6497 }
6498
6499 offset = output;
6500 if (lua_gettop(L) > 1) {
6501 offset = MAY_LJMP(luaL_checkinteger(L, 2));
6502 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02006503 offset = MAX(0, (int)input + offset);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006504 offset += output;
6505 if (offset < output || offset > input + output) {
6506 lua_pushfstring(L, "offset out of range.");
6507 WILL_LJMP(lua_error(L));
6508 }
6509 }
6510 len = output + input - offset;
6511 if (lua_gettop(L) == 3) {
6512 len = MAY_LJMP(luaL_checkinteger(L, 3));
6513 if (!len)
6514 goto dup;
6515 if (len == -1)
6516 len = global.tune.bufsize;
6517 if (len < 0) {
6518 lua_pushfstring(L, "length out of range.");
6519 WILL_LJMP(lua_error(L));
6520 }
6521 }
6522
6523 dup:
6524 _hlua_http_msg_dup(msg, L, offset, len);
6525 return 1;
6526}
6527
6528/* Appends a string to the HTTP message, after all existing DATA blocks but
6529 * before the trailers, if any. It returns the amount of data written or -1 if
6530 * nothing was copied. Unlike the channel function used to append data, this one
6531 * can only be called inside a filter, from http_payload callback. So it cannot
6532 * yield. An exception is returned if it is called from another callback.
6533 */
6534__LJMP static int hlua_http_msg_append(lua_State *L)
6535{
6536 struct http_msg *msg;
6537 struct filter *filter;
6538 const char *str;
6539 size_t offset, len, sz;
6540 int ret;
6541
6542 MAY_LJMP(check_args(L, 2, "append"));
6543 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6544
6545 if (msg->msg_state < HTTP_MSG_DATA)
6546 WILL_LJMP(lua_error(L));
6547
6548 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
6549 filter = hlua_http_msg_filter(L, 1, msg, &offset, &len);
6550 if (!filter || !hlua_filter_from_payload(filter))
6551 WILL_LJMP(lua_error(L));
6552
6553 ret = _hlua_http_msg_insert(msg, filter, ist2(str, sz), offset+len);
6554 lua_pushinteger(L, ret);
6555 return 1;
6556}
6557
6558/* Prepends a string to the HTTP message, before all existing DATA blocks. It
6559 * returns the amount of data written or -1 if nothing was copied. Unlike the
6560 * channel function used to prepend data, this one can only be called inside a
6561 * filter, from http_payload callback. So it cannot yield. An exception is
6562 * returned if it is called from another callback.
6563 */
6564__LJMP static int hlua_http_msg_prepend(lua_State *L)
6565{
6566 struct http_msg *msg;
6567 struct filter *filter;
6568 const char *str;
6569 size_t offset, len, sz;
6570 int ret;
6571
6572 MAY_LJMP(check_args(L, 2, "prepend"));
6573 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006574
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006575 if (msg->msg_state < HTTP_MSG_DATA)
6576 WILL_LJMP(lua_error(L));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006577
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006578 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
6579 filter = hlua_http_msg_filter(L, 1, msg, &offset, &len);
6580 if (!filter || !hlua_filter_from_payload(filter))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006581 WILL_LJMP(lua_error(L));
6582
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006583 ret = _hlua_http_msg_insert(msg, filter, ist2(str, sz), offset);
6584 lua_pushinteger(L, ret);
6585 return 1;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006586}
6587
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006588/* Inserts a string to the HTTP message at a given offset. By default the string
6589 * is appended at the end of DATA blocks. It returns the amount of data written
6590 * or -1 if nothing was copied. Unlike the channel function used to insert data,
6591 * this one can only be called inside a filter, from http_payload callback. So
6592 * it cannot yield. An exception is returned if it is called from another
6593 * callback.
6594 */
6595__LJMP static int hlua_http_msg_insert_data(lua_State *L)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006596{
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006597 struct http_msg *msg;
6598 struct filter *filter;
6599 const char *str;
6600 size_t input, output, sz;
6601 int offset;
6602 int ret;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006603
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006604 if (lua_gettop(L) < 2 || lua_gettop(L) > 3)
6605 WILL_LJMP(luaL_error(L, "'insert' expects at least 1 argument and at most 2 arguments"));
6606 MAY_LJMP(check_args(L, 2, "insert"));
6607 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006608
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006609 if (msg->msg_state < HTTP_MSG_DATA)
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006610 WILL_LJMP(lua_error(L));
6611
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006612 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
6613 filter = hlua_http_msg_filter(L, 1, msg, &input, &output);
6614 if (!filter || !hlua_filter_from_payload(filter))
6615 WILL_LJMP(lua_error(L));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006616
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006617 offset = input + output;
6618 if (lua_gettop(L) > 2) {
6619 offset = MAY_LJMP(luaL_checkinteger(L, 3));
6620 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02006621 offset = MAX(0, (int)input + offset);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006622 offset += output;
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006623 if (offset < output || offset > output + input) {
6624 lua_pushfstring(L, "offset out of range.");
6625 WILL_LJMP(lua_error(L));
6626 }
6627 }
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006628
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006629 ret = _hlua_http_msg_insert(msg, filter, ist2(str, sz), offset);
6630 lua_pushinteger(L, ret);
6631 return 1;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006632}
6633
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006634/* Removes a given amount of data from the HTTP message at a given offset. By
6635 * default all DATA blocks are removed. It returns the amount of data
6636 * removed. Unlike the channel function used to remove data, this one can only
6637 * be called inside a filter, from http_payload callback. So it cannot yield. An
6638 * exception is returned if it is called from another callback.
6639 */
6640__LJMP static int hlua_http_msg_del_data(lua_State *L)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006641{
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006642 struct http_msg *msg;
6643 struct filter *filter;
6644 size_t input, output;
6645 int offset, len;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006646
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006647 if (lua_gettop(L) < 1 || lua_gettop(L) > 3)
6648 WILL_LJMP(luaL_error(L, "'insert' expects at most 2 arguments"));
6649 MAY_LJMP(check_args(L, 2, "insert"));
6650 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006651
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006652 if (msg->msg_state < HTTP_MSG_DATA)
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006653 WILL_LJMP(lua_error(L));
6654
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006655 filter = hlua_http_msg_filter(L, 1, msg, &input, &output);
6656 if (!filter || !hlua_filter_from_payload(filter))
6657 WILL_LJMP(lua_error(L));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006658
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006659 offset = input + output;
6660 if (lua_gettop(L) > 2) {
6661 offset = MAY_LJMP(luaL_checkinteger(L, 3));
6662 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02006663 offset = MAX(0, (int)input + offset);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006664 offset += output;
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006665 if (offset < output || offset > output + input) {
6666 lua_pushfstring(L, "offset out of range.");
6667 WILL_LJMP(lua_error(L));
6668 }
6669 }
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006670
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006671 len = output + input - offset;
6672 if (lua_gettop(L) == 4) {
6673 len = MAY_LJMP(luaL_checkinteger(L, 4));
6674 if (!len)
6675 goto end;
6676 if (len == -1)
6677 len = output + input - offset;
6678 if (len < 0 || offset + len > output + input) {
6679 lua_pushfstring(L, "length out of range.");
6680 WILL_LJMP(lua_error(L));
6681 }
6682 }
6683
6684 _hlua_http_msg_delete(msg, filter, offset, len);
6685
6686 end:
6687 lua_pushinteger(L, len);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006688 return 1;
6689}
6690
Ilya Shipitsinff0f2782021-08-22 22:18:07 +05006691/* Replaces a given amount of data at the given offset by a string. By default,
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006692 * all remaining data are removed, accordingly to the filter context. It returns
6693 * the amount of data written or -1 if nothing was copied. Unlike the channel
6694 * function used to replace data, this one can only be called inside a filter,
6695 * from http_payload callback. So it cannot yield. An exception is returned if
6696 * it is called from another callback.
6697 */
6698__LJMP static int hlua_http_msg_set_data(lua_State *L)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006699{
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006700 struct http_msg *msg;
6701 struct filter *filter;
6702 struct htx *htx;
6703 const char *str;
6704 size_t input, output, sz;
6705 int offset, len;
6706 int ret;
Thierry FOURNIER / OZON.IOb84ae922016-08-02 23:44:58 +02006707
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006708 if (lua_gettop(L) < 2 || lua_gettop(L) > 4)
6709 WILL_LJMP(luaL_error(L, "'set' expects at least 1 argument and at most 3 arguments"));
6710 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6711
6712 if (msg->msg_state < HTTP_MSG_DATA)
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006713 WILL_LJMP(lua_error(L));
6714
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006715 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
6716 filter = hlua_http_msg_filter(L, 1, msg, &output, &input);
6717 if (!filter || !hlua_filter_from_payload(filter))
6718 WILL_LJMP(lua_error(L));
6719
6720 offset = output;
6721 if (lua_gettop(L) > 2) {
6722 offset = MAY_LJMP(luaL_checkinteger(L, 3));
6723 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02006724 offset = MAX(0, (int)input + offset);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006725 offset += output;
6726 if (offset < output || offset > input + output) {
6727 lua_pushfstring(L, "offset out of range.");
6728 WILL_LJMP(lua_error(L));
6729 }
6730 }
6731
6732 len = output + input - offset;
6733 if (lua_gettop(L) == 4) {
6734 len = MAY_LJMP(luaL_checkinteger(L, 4));
6735 if (!len)
6736 goto set;
6737 if (len == -1)
6738 len = output + input - offset;
6739 if (len < 0 || offset + len > output + input) {
6740 lua_pushfstring(L, "length out of range.");
6741 WILL_LJMP(lua_error(L));
6742 }
6743 }
6744
6745 set:
6746 /* Be sure we can copied the string once input data will be removed. */
6747 htx = htx_from_buf(&msg->chn->buf);
6748 if (sz > htx_free_data_space(htx) + len)
6749 lua_pushinteger(L, -1);
6750 else {
6751 _hlua_http_msg_delete(msg, filter, offset, len);
6752 ret = _hlua_http_msg_insert(msg, filter, ist2(str, sz), offset);
6753 lua_pushinteger(L, ret);
6754 }
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006755 return 1;
6756}
6757
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006758/* Prepends data into an HTTP message and forward it, from the filter point of
6759 * view. It returns the amount of data written or -1 if nothing was sent. Unlike
6760 * the channel function used to send data, this one can only be called inside a
6761 * filter, from http_payload callback. So it cannot yield. An exception is
6762 * returned if it is called from another callback.
6763 */
6764__LJMP static int hlua_http_msg_send(lua_State *L)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006765{
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006766 struct http_msg *msg;
6767 struct filter *filter;
6768 struct htx *htx;
6769 const char *str;
6770 size_t offset, len, sz;
6771 int ret;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006772
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006773 MAY_LJMP(check_args(L, 2, "send"));
6774 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6775
6776 if (msg->msg_state < HTTP_MSG_DATA)
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006777 WILL_LJMP(lua_error(L));
6778
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006779 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
6780 filter = hlua_http_msg_filter(L, 1, msg, &offset, &len);
6781 if (!filter || !hlua_filter_from_payload(filter))
6782 WILL_LJMP(lua_error(L));
6783
6784 /* Return an error if the channel's output is closed */
6785 if (unlikely(channel_output_closed(msg->chn))) {
6786 lua_pushinteger(L, -1);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006787 return 1;
6788 }
6789
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006790 htx = htx_from_buf(&msg->chn->buf);
6791 if (sz > htx_free_data_space(htx)) {
6792 lua_pushinteger(L, -1);
6793 return 1;
6794 }
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006795
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006796 ret = _hlua_http_msg_insert(msg, filter, ist2(str, sz), offset);
6797 if (ret > 0) {
6798 struct hlua_flt_ctx *flt_ctx = filter->ctx;
6799
6800 FLT_OFF(filter, msg->chn) += ret;
6801 flt_ctx->cur_len[CHN_IDX(msg->chn)] -= ret;
6802 flt_ctx->cur_off[CHN_IDX(msg->chn)] += ret;
6803 }
6804
6805 lua_pushinteger(L, ret);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006806 return 1;
6807}
6808
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006809/* Forwards a given amount of bytes. It return -1 if the channel's output is
6810 * closed. Otherwise, it returns the number of bytes forwarded. Unlike the
6811 * channel function used to forward data, this one can only be called inside a
6812 * filter, from http_payload callback. So it cannot yield. An exception is
6813 * returned if it is called from another callback. All other functions deal with
6814 * DATA block, this one not.
6815*/
6816__LJMP static int hlua_http_msg_forward(lua_State *L)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006817{
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006818 struct http_msg *msg;
6819 struct filter *filter;
6820 size_t offset, len;
6821 int fwd, ret = 0;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006822
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006823 MAY_LJMP(check_args(L, 2, "forward"));
6824 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6825
6826 if (msg->msg_state < HTTP_MSG_DATA)
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006827 WILL_LJMP(lua_error(L));
6828
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006829 fwd = MAY_LJMP(luaL_checkinteger(L, 2));
6830 filter = hlua_http_msg_filter(L, 1, msg, &offset, &len);
6831 if (!filter || !hlua_filter_from_payload(filter))
6832 WILL_LJMP(lua_error(L));
6833
6834 /* Nothing to do, just return */
6835 if (!fwd)
6836 goto end;
6837
6838 /* Return an error if the channel's output is closed */
6839 if (unlikely(channel_output_closed(msg->chn))) {
6840 ret = -1;
6841 goto end;
6842 }
6843
6844 ret = fwd;
6845 if (ret > len)
6846 ret = len;
6847
6848 if (ret) {
6849 struct hlua_flt_ctx *flt_ctx = filter->ctx;
6850
6851 FLT_OFF(filter, msg->chn) += ret;
6852 flt_ctx->cur_off[CHN_IDX(msg->chn)] += ret;
6853 flt_ctx->cur_len[CHN_IDX(msg->chn)] -= ret;
6854 }
6855
6856 end:
6857 lua_pushinteger(L, ret);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006858 return 1;
6859}
6860
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006861/* Set EOM flag on the HTX message.
6862 *
6863 * NOTE: Not sure it is a good idea to manipulate this flag but for now I don't
6864 * really know how to do without this feature.
6865 */
6866__LJMP static int hlua_http_msg_set_eom(lua_State *L)
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +02006867{
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006868 struct http_msg *msg;
6869 struct htx *htx;
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +02006870
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006871 MAY_LJMP(check_args(L, 1, "set_eom"));
6872 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6873 htx = htxbuf(&msg->chn->buf);
6874 htx->flags |= HTX_FL_EOM;
6875 return 0;
6876}
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006877
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006878/* Unset EOM flag on the HTX message.
6879 *
6880 * NOTE: Not sure it is a good idea to manipulate this flag but for now I don't
6881 * really know how to do without this feature.
6882 */
6883__LJMP static int hlua_http_msg_unset_eom(lua_State *L)
6884{
6885 struct http_msg *msg;
6886 struct htx *htx;
6887
6888 MAY_LJMP(check_args(L, 1, "set_eom"));
6889 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6890 htx = htxbuf(&msg->chn->buf);
6891 htx->flags &= ~HTX_FL_EOM;
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +02006892 return 0;
6893}
6894
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006895/*
6896 *
6897 *
William Lallemand3956c4e2021-09-21 16:25:15 +02006898 * Class HTTPClient
6899 *
6900 *
6901 */
6902__LJMP static struct hlua_httpclient *hlua_checkhttpclient(lua_State *L, int ud)
6903{
6904 return MAY_LJMP(hlua_checkudata(L, ud, class_httpclient_ref));
6905}
6906
William Lallemandf77f1de2021-09-28 19:10:38 +02006907
6908/* stops the httpclient and ask it to kill itself */
6909__LJMP static int hlua_httpclient_gc(lua_State *L)
6910{
6911 struct hlua_httpclient *hlua_hc;
6912
6913 MAY_LJMP(check_args(L, 1, "__gc"));
6914
6915 hlua_hc = MAY_LJMP(hlua_checkhttpclient(L, 1));
6916
6917 httpclient_stop_and_destroy(hlua_hc->hc);
6918
6919 hlua_hc->hc = NULL;
6920
6921
6922 return 0;
6923}
6924
6925
William Lallemand3956c4e2021-09-21 16:25:15 +02006926__LJMP static int hlua_httpclient_new(lua_State *L)
6927{
6928 struct hlua_httpclient *hlua_hc;
6929 struct hlua *hlua;
6930
6931 /* Get hlua struct, or NULL if we execute from main lua state */
6932 hlua = hlua_gethlua(L);
6933 if (!hlua)
6934 return 0;
6935
6936 /* Check stack size. */
6937 if (!lua_checkstack(L, 3)) {
6938 hlua_pusherror(L, "httpclient: full stack");
6939 goto err;
6940 }
6941 /* Create the object: obj[0] = userdata. */
6942 lua_newtable(L);
6943 hlua_hc = MAY_LJMP(lua_newuserdata(L, sizeof(*hlua_hc)));
6944 lua_rawseti(L, -2, 0);
6945 memset(hlua_hc, 0, sizeof(*hlua_hc));
6946
6947 hlua_hc->hc = httpclient_new(hlua, 0, IST_NULL);
6948 if (!hlua_hc->hc)
6949 goto err;
6950
6951 /* Pop a class stream metatable and affect it to the userdata. */
6952 lua_rawgeti(L, LUA_REGISTRYINDEX, class_httpclient_ref);
6953 lua_setmetatable(L, -2);
6954
6955 return 1;
6956
6957 err:
6958 WILL_LJMP(lua_error(L));
6959 return 0;
6960}
6961
6962
6963/*
6964 * Callback of the httpclient, this callback wakes the lua task up, once the
6965 * httpclient receives some data
6966 *
6967 */
6968
William Lallemandbd5739e2021-10-28 15:41:38 +02006969static void hlua_httpclient_cb(struct httpclient *hc)
William Lallemand3956c4e2021-09-21 16:25:15 +02006970{
6971 struct hlua *hlua = hc->caller;
6972
6973 if (!hlua || !hlua->task)
6974 return;
6975
6976 task_wakeup(hlua->task, TASK_WOKEN_MSG);
6977}
6978
6979/*
William Lallemandd7df73a2021-09-23 17:54:00 +02006980 * Fill the lua stack with headers from the httpclient response
6981 * This works the same way as the hlua_http_get_headers() function
6982 */
6983__LJMP static int hlua_httpclient_get_headers(lua_State *L, struct hlua_httpclient *hlua_hc)
6984{
6985 struct http_hdr *hdr;
6986
6987 lua_newtable(L);
6988
William Lallemandef574b22021-10-05 16:19:31 +02006989 for (hdr = hlua_hc->hc->res.hdrs; hdr && isttest(hdr->n); hdr++) {
William Lallemandd7df73a2021-09-23 17:54:00 +02006990 struct ist n, v;
6991 int len;
6992
6993 n = hdr->n;
6994 v = hdr->v;
6995
6996 /* Check for existing entry:
6997 * assume that the table is on the top of the stack, and
6998 * push the key in the stack, the function lua_gettable()
6999 * perform the lookup.
7000 */
7001
7002 lua_pushlstring(L, n.ptr, n.len);
7003 lua_gettable(L, -2);
7004
7005 switch (lua_type(L, -1)) {
7006 case LUA_TNIL:
7007 /* Table not found, create it. */
7008 lua_pop(L, 1); /* remove the nil value. */
7009 lua_pushlstring(L, n.ptr, n.len); /* push the header name as key. */
7010 lua_newtable(L); /* create and push empty table. */
7011 lua_pushlstring(L, v.ptr, v.len); /* push header value. */
7012 lua_rawseti(L, -2, 0); /* index header value (pop it). */
7013 lua_rawset(L, -3); /* index new table with header name (pop the values). */
7014 break;
7015
7016 case LUA_TTABLE:
7017 /* Entry found: push the value in the table. */
7018 len = lua_rawlen(L, -1);
7019 lua_pushlstring(L, v.ptr, v.len); /* push header value. */
7020 lua_rawseti(L, -2, len+1); /* index header value (pop it). */
7021 lua_pop(L, 1); /* remove the table (it is stored in the main table). */
7022 break;
7023
7024 default:
7025 /* Other cases are errors. */
7026 hlua_pusherror(L, "internal error during the parsing of headers.");
7027 WILL_LJMP(lua_error(L));
7028 }
7029 }
7030 return 1;
7031}
7032
7033/*
William Lallemand746e6f32021-10-06 10:57:44 +02007034 * Allocate and return an array of http_hdr ist extracted from the <headers> lua table
7035 *
7036 * Caller must free the result
7037 */
7038struct http_hdr *hlua_httpclient_table_to_hdrs(lua_State *L)
7039{
7040 struct http_hdr hdrs[global.tune.max_http_hdr];
7041 struct http_hdr *result = NULL;
7042 uint32_t hdr_num = 0;
7043
7044 lua_pushnil(L);
7045 while (lua_next(L, -2) != 0) {
7046 struct ist name, value;
7047 const char *n, *v;
7048 size_t nlen, vlen;
7049
7050 if (!lua_isstring(L, -2) || !lua_istable(L, -1)) {
7051 /* Skip element if the key is not a string or if the value is not a table */
7052 goto next_hdr;
7053 }
7054
7055 n = lua_tolstring(L, -2, &nlen);
7056 name = ist2(n, nlen);
7057
7058 /* Loop on header's values */
7059 lua_pushnil(L);
7060 while (lua_next(L, -2)) {
7061 if (!lua_isstring(L, -1)) {
7062 /* Skip the value if it is not a string */
7063 goto next_value;
7064 }
7065
7066 v = lua_tolstring(L, -1, &vlen);
7067 value = ist2(v, vlen);
7068 name = ist2(n, nlen);
7069
7070 hdrs[hdr_num].n = istdup(name);
7071 hdrs[hdr_num].v = istdup(value);
7072
7073 hdr_num++;
7074
7075 next_value:
7076 lua_pop(L, 1);
7077 }
7078
7079 next_hdr:
7080 lua_pop(L, 1);
7081
7082 }
7083
7084 if (hdr_num) {
7085 /* alloc and copy the headers in the httpclient struct */
Tim Duesterhus16cc16d2021-11-06 15:14:45 +01007086 result = calloc((hdr_num + 1), sizeof(*result));
William Lallemand746e6f32021-10-06 10:57:44 +02007087 if (!result)
7088 goto skip_headers;
7089 memcpy(result, hdrs, sizeof(struct http_hdr) * (hdr_num + 1));
7090
7091 result[hdr_num].n = IST_NULL;
7092 result[hdr_num].v = IST_NULL;
7093 }
7094
7095skip_headers:
William Lallemand746e6f32021-10-06 10:57:44 +02007096
7097 return result;
7098}
7099
7100
William Lallemandbd5739e2021-10-28 15:41:38 +02007101/*
7102 * For each yield, checks if there is some data in the httpclient and push them
7103 * in the lua buffer, once the httpclient finished its job, push the result on
7104 * the stack
7105 */
7106__LJMP static int hlua_httpclient_rcv_yield(lua_State *L, int status, lua_KContext ctx)
7107{
7108 struct buffer *tr;
7109 int res;
7110 struct hlua *hlua = hlua_gethlua(L);
7111 struct hlua_httpclient *hlua_hc = hlua_checkhttpclient(L, 1);
7112
7113
7114 tr = get_trash_chunk();
7115
7116 res = httpclient_res_xfer(hlua_hc->hc, tr);
7117 luaL_addlstring(&hlua_hc->b, b_orig(tr), res);
7118
7119 if (!httpclient_data(hlua_hc->hc) && httpclient_ended(hlua_hc->hc)) {
7120
7121 luaL_pushresult(&hlua_hc->b);
7122 lua_settable(L, -3);
7123
7124 lua_pushstring(L, "status");
7125 lua_pushinteger(L, hlua_hc->hc->res.status);
7126 lua_settable(L, -3);
7127
7128
7129 lua_pushstring(L, "reason");
7130 lua_pushlstring(L, hlua_hc->hc->res.reason.ptr, hlua_hc->hc->res.reason.len);
7131 lua_settable(L, -3);
7132
7133 lua_pushstring(L, "headers");
7134 hlua_httpclient_get_headers(L, hlua_hc);
7135 lua_settable(L, -3);
7136
7137 return 1;
7138 }
7139
7140 if (httpclient_data(hlua_hc->hc))
7141 task_wakeup(hlua->task, TASK_WOKEN_MSG);
7142
7143 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_httpclient_rcv_yield, TICK_ETERNITY, 0));
7144
7145 return 0;
7146}
7147
7148/*
7149 * Call this when trying to stream a body during a request
7150 */
7151__LJMP static int hlua_httpclient_snd_yield(lua_State *L, int status, lua_KContext ctx)
7152{
7153 struct hlua *hlua;
7154 struct hlua_httpclient *hlua_hc = hlua_checkhttpclient(L, 1);
7155 const char *body_str = NULL;
7156 int ret;
7157 int end = 0;
7158 size_t buf_len;
7159 size_t to_send = 0;
7160
7161 hlua = hlua_gethlua(L);
7162
7163 if (!hlua || !hlua->task)
7164 WILL_LJMP(luaL_error(L, "The 'get' function is only allowed in "
7165 "'frontend', 'backend' or 'task'"));
7166
7167 ret = lua_getfield(L, -1, "body");
7168 if (ret != LUA_TSTRING)
7169 goto rcv;
7170
7171 body_str = lua_tolstring(L, -1, &buf_len);
7172 lua_pop(L, 1);
7173
Christopher Fauletfc591292022-01-12 14:46:03 +01007174 to_send = buf_len - hlua_hc->sent;
William Lallemandbd5739e2021-10-28 15:41:38 +02007175
7176 if ((hlua_hc->sent + to_send) >= buf_len)
7177 end = 1;
7178
7179 /* the end flag is always set since we are using the whole remaining size */
7180 hlua_hc->sent += httpclient_req_xfer(hlua_hc->hc, ist2(body_str + hlua_hc->sent, to_send), end);
7181
7182 if (buf_len > hlua_hc->sent) {
7183 /* still need to process the buffer */
7184 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_httpclient_snd_yield, TICK_ETERNITY, 0));
7185 } else {
7186 goto rcv;
7187 /* we sent the whole request buffer we can recv */
7188 }
7189 return 0;
7190
7191rcv:
7192
7193 /* we return a "res" object */
7194 lua_newtable(L);
7195
William Lallemandbd5739e2021-10-28 15:41:38 +02007196 lua_pushstring(L, "body");
William Lallemandd1187eb2021-11-02 10:40:06 +01007197 luaL_buffinit(L, &hlua_hc->b);
William Lallemandbd5739e2021-10-28 15:41:38 +02007198
William Lallemand933fe392021-11-04 09:45:58 +01007199 task_wakeup(hlua->task, TASK_WOKEN_MSG);
William Lallemandbd5739e2021-10-28 15:41:38 +02007200 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_httpclient_rcv_yield, TICK_ETERNITY, 0));
7201
7202 return 1;
7203}
William Lallemand746e6f32021-10-06 10:57:44 +02007204
William Lallemand3956c4e2021-09-21 16:25:15 +02007205/*
William Lallemanddc2cc902021-10-26 11:43:26 +02007206 * Send an HTTP request and wait for a response
William Lallemand3956c4e2021-09-21 16:25:15 +02007207 */
7208
William Lallemanddc2cc902021-10-26 11:43:26 +02007209__LJMP static int hlua_httpclient_send(lua_State *L, enum http_meth_t meth)
William Lallemand3956c4e2021-09-21 16:25:15 +02007210{
7211 struct hlua_httpclient *hlua_hc;
William Lallemand746e6f32021-10-06 10:57:44 +02007212 struct http_hdr *hdrs = NULL;
7213 struct http_hdr *hdrs_i = NULL;
William Lallemand3956c4e2021-09-21 16:25:15 +02007214 struct hlua *hlua;
William Lallemand746e6f32021-10-06 10:57:44 +02007215 const char *url_str = NULL;
William Lallemanddec25c32021-10-25 19:48:37 +02007216 const char *body_str = NULL;
William Lallemandbd5739e2021-10-28 15:41:38 +02007217 size_t buf_len;
William Lallemand746e6f32021-10-06 10:57:44 +02007218 int ret;
William Lallemand3956c4e2021-09-21 16:25:15 +02007219
7220 hlua = hlua_gethlua(L);
7221
7222 if (!hlua || !hlua->task)
7223 WILL_LJMP(luaL_error(L, "The 'get' function is only allowed in "
7224 "'frontend', 'backend' or 'task'"));
7225
William Lallemand746e6f32021-10-06 10:57:44 +02007226 if (lua_gettop(L) != 2 || lua_type(L, -1) != LUA_TTABLE)
7227 WILL_LJMP(luaL_error(L, "'get' needs a table as argument"));
7228
William Lallemand4f4f2b72022-02-17 20:00:23 +01007229 hlua_hc = hlua_checkhttpclient(L, 1);
7230
William Lallemand7177a952022-03-03 15:33:12 +01007231 lua_pushnil(L); /* first key */
7232 while (lua_next(L, 2)) {
7233 if (strcmp(lua_tostring(L, -2), "dst") == 0) {
7234 if (httpclient_set_dst(hlua_hc->hc, lua_tostring(L, -1)) < 0)
7235 WILL_LJMP(luaL_error(L, "Can't use the 'dst' argument"));
William Lallemand4f4f2b72022-02-17 20:00:23 +01007236
William Lallemand7177a952022-03-03 15:33:12 +01007237 } else if (strcmp(lua_tostring(L, -2), "url") == 0) {
7238 if (lua_type(L, -1) != LUA_TSTRING)
7239 WILL_LJMP(luaL_error(L, "invalid parameter in 'url', must be a string"));
7240 url_str = lua_tostring(L, -1);
William Lallemand3956c4e2021-09-21 16:25:15 +02007241
William Lallemand7177a952022-03-03 15:33:12 +01007242 } else if (strcmp(lua_tostring(L, -2), "timeout") == 0) {
7243 if (lua_type(L, -1) != LUA_TNUMBER)
7244 WILL_LJMP(luaL_error(L, "invalid parameter in 'timeout', must be a number"));
7245 httpclient_set_timeout(hlua_hc->hc, lua_tointeger(L, -1));
William Lallemandb4a4ef62022-02-23 14:18:16 +01007246
William Lallemand7177a952022-03-03 15:33:12 +01007247 } else if (strcmp(lua_tostring(L, -2), "headers") == 0) {
7248 if (lua_type(L, -1) != LUA_TTABLE)
7249 WILL_LJMP(luaL_error(L, "invalid parameter in 'headers', must be a table"));
7250 hdrs = hlua_httpclient_table_to_hdrs(L);
William Lallemand79416cb2021-09-24 14:51:44 +02007251
William Lallemand7177a952022-03-03 15:33:12 +01007252 } else if (strcmp(lua_tostring(L, -2), "body") == 0) {
7253 if (lua_type(L, -1) != LUA_TSTRING)
7254 WILL_LJMP(luaL_error(L, "invalid parameter in 'body', must be a string"));
7255 body_str = lua_tolstring(L, -1, &buf_len);
William Lallemandbd5739e2021-10-28 15:41:38 +02007256
William Lallemand7177a952022-03-03 15:33:12 +01007257 } else {
7258 WILL_LJMP(luaL_error(L, "'%s' invalid parameter name", lua_tostring(L, -2)));
7259 }
7260 /* removes 'value'; keeps 'key' for next iteration */
7261 lua_pop(L, 1);
7262 }
William Lallemanddec25c32021-10-25 19:48:37 +02007263
William Lallemand746e6f32021-10-06 10:57:44 +02007264 if (!url_str) {
7265 WILL_LJMP(luaL_error(L, "'get' need a 'url' argument"));
7266 return 0;
7267 }
William Lallemand3956c4e2021-09-21 16:25:15 +02007268
William Lallemand10a37362022-03-02 16:18:26 +01007269 hlua_hc->sent = 0;
William Lallemand3956c4e2021-09-21 16:25:15 +02007270
7271 hlua_hc->hc->req.url = istdup(ist(url_str));
William Lallemanddc2cc902021-10-26 11:43:26 +02007272 hlua_hc->hc->req.meth = meth;
William Lallemand3956c4e2021-09-21 16:25:15 +02007273
7274 /* update the httpclient callbacks */
William Lallemandbd5739e2021-10-28 15:41:38 +02007275 hlua_hc->hc->ops.res_stline = hlua_httpclient_cb;
7276 hlua_hc->hc->ops.res_headers = hlua_httpclient_cb;
7277 hlua_hc->hc->ops.res_payload = hlua_httpclient_cb;
William Lallemand8f170c72022-03-15 10:52:07 +01007278 hlua_hc->hc->ops.res_end = hlua_httpclient_cb;
William Lallemand3956c4e2021-09-21 16:25:15 +02007279
William Lallemandbd5739e2021-10-28 15:41:38 +02007280 /* a body is available, it will use the request callback */
7281 if (body_str) {
7282 hlua_hc->hc->ops.req_payload = hlua_httpclient_cb;
7283 }
William Lallemand3956c4e2021-09-21 16:25:15 +02007284
William Lallemandbd5739e2021-10-28 15:41:38 +02007285 ret = httpclient_req_gen(hlua_hc->hc, hlua_hc->hc->req.url, meth, hdrs, IST_NULL);
William Lallemand3956c4e2021-09-21 16:25:15 +02007286
William Lallemand746e6f32021-10-06 10:57:44 +02007287 /* free the temporary headers array */
7288 hdrs_i = hdrs;
7289 while (hdrs_i && isttest(hdrs_i->n)) {
7290 istfree(&hdrs_i->n);
7291 istfree(&hdrs_i->v);
7292 hdrs_i++;
7293 }
7294 ha_free(&hdrs);
7295
7296
William Lallemand6137a9e2021-10-26 15:01:53 +02007297 if (ret != ERR_NONE) {
7298 WILL_LJMP(luaL_error(L, "Can't generate the HTTP request"));
7299 return 0;
7300 }
7301
William Lallemandc2d3db42022-04-26 11:46:13 +02007302 if (!httpclient_start(hlua_hc->hc))
7303 WILL_LJMP(luaL_error(L, "couldn't start the httpclient"));
William Lallemand6137a9e2021-10-26 15:01:53 +02007304
William Lallemandbd5739e2021-10-28 15:41:38 +02007305 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_httpclient_snd_yield, TICK_ETERNITY, 0));
William Lallemand3956c4e2021-09-21 16:25:15 +02007306
William Lallemand3956c4e2021-09-21 16:25:15 +02007307 return 0;
7308}
7309
7310/*
William Lallemanddc2cc902021-10-26 11:43:26 +02007311 * Sends an HTTP HEAD request and wait for a response
7312 *
7313 * httpclient:head(url, headers, payload)
7314 */
7315__LJMP static int hlua_httpclient_head(lua_State *L)
7316{
7317 return hlua_httpclient_send(L, HTTP_METH_HEAD);
7318}
7319
7320/*
7321 * Send an HTTP GET request and wait for a response
7322 *
7323 * httpclient:get(url, headers, payload)
7324 */
7325__LJMP static int hlua_httpclient_get(lua_State *L)
7326{
7327 return hlua_httpclient_send(L, HTTP_METH_GET);
7328
7329}
7330
7331/*
7332 * Sends an HTTP PUT request and wait for a response
7333 *
7334 * httpclient:put(url, headers, payload)
7335 */
7336__LJMP static int hlua_httpclient_put(lua_State *L)
7337{
7338 return hlua_httpclient_send(L, HTTP_METH_PUT);
7339}
7340
7341/*
7342 * Send an HTTP POST request and wait for a response
7343 *
7344 * httpclient:post(url, headers, payload)
7345 */
7346__LJMP static int hlua_httpclient_post(lua_State *L)
7347{
7348 return hlua_httpclient_send(L, HTTP_METH_POST);
7349}
7350
7351
7352/*
7353 * Sends an HTTP DELETE request and wait for a response
7354 *
7355 * httpclient:delete(url, headers, payload)
7356 */
7357__LJMP static int hlua_httpclient_delete(lua_State *L)
7358{
7359 return hlua_httpclient_send(L, HTTP_METH_DELETE);
7360}
7361
7362/*
William Lallemand3956c4e2021-09-21 16:25:15 +02007363 *
7364 *
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01007365 * Class TXN
7366 *
7367 *
7368 */
7369
7370/* Returns a struct hlua_session if the stack entry "ud" is
Willy Tarreau87b09662015-04-03 00:22:06 +02007371 * a class stream, otherwise it throws an error.
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01007372 */
7373__LJMP static struct hlua_txn *hlua_checktxn(lua_State *L, int ud)
7374{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02007375 return MAY_LJMP(hlua_checkudata(L, ud, class_txn_ref));
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01007376}
7377
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02007378__LJMP static int hlua_set_var(lua_State *L)
7379{
7380 struct hlua_txn *htxn;
7381 const char *name;
7382 size_t len;
7383 struct sample smp;
7384
Tim Duesterhus4e172c92020-05-19 13:49:42 +02007385 if (lua_gettop(L) < 3 || lua_gettop(L) > 4)
7386 WILL_LJMP(luaL_error(L, "'set_var' needs between 3 and 4 arguments"));
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02007387
7388 /* It is useles to retrieve the stream, but this function
7389 * runs only in a stream context.
7390 */
7391 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7392 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
7393
7394 /* Converts the third argument in a sample. */
Amaury Denoyellebc0af6a2020-10-29 17:21:20 +01007395 memset(&smp, 0, sizeof(smp));
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02007396 hlua_lua2smp(L, 3, &smp);
7397
7398 /* Store the sample in a variable. */
Willy Tarreau7560dd42016-03-10 16:28:58 +01007399 smp_set_owner(&smp, htxn->p, htxn->s->sess, htxn->s, htxn->dir & SMP_OPT_DIR);
Tim Duesterhus4e172c92020-05-19 13:49:42 +02007400
7401 if (lua_gettop(L) == 4 && lua_toboolean(L, 4))
7402 lua_pushboolean(L, vars_set_by_name_ifexist(name, len, &smp) != 0);
7403 else
7404 lua_pushboolean(L, vars_set_by_name(name, len, &smp) != 0);
7405
Tim Duesterhus84ebc132020-05-19 13:49:41 +02007406 return 1;
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02007407}
7408
Christopher Faulet85d79c92016-11-09 16:54:56 +01007409__LJMP static int hlua_unset_var(lua_State *L)
7410{
7411 struct hlua_txn *htxn;
7412 const char *name;
7413 size_t len;
7414 struct sample smp;
7415
7416 MAY_LJMP(check_args(L, 2, "unset_var"));
7417
7418 /* It is useles to retrieve the stream, but this function
7419 * runs only in a stream context.
7420 */
7421 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7422 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
7423
7424 /* Unset the variable. */
7425 smp_set_owner(&smp, htxn->p, htxn->s->sess, htxn->s, htxn->dir & SMP_OPT_DIR);
Tim Duesterhus84ebc132020-05-19 13:49:41 +02007426 lua_pushboolean(L, vars_unset_by_name_ifexist(name, len, &smp) != 0);
7427 return 1;
Christopher Faulet85d79c92016-11-09 16:54:56 +01007428}
7429
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02007430__LJMP static int hlua_get_var(lua_State *L)
7431{
7432 struct hlua_txn *htxn;
7433 const char *name;
7434 size_t len;
7435 struct sample smp;
7436
7437 MAY_LJMP(check_args(L, 2, "get_var"));
7438
7439 /* It is useles to retrieve the stream, but this function
7440 * runs only in a stream context.
7441 */
7442 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7443 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
7444
Willy Tarreau7560dd42016-03-10 16:28:58 +01007445 smp_set_owner(&smp, htxn->p, htxn->s->sess, htxn->s, htxn->dir & SMP_OPT_DIR);
Willy Tarreaue352b9d2021-09-03 11:52:38 +02007446 if (!vars_get_by_name(name, len, &smp, NULL)) {
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02007447 lua_pushnil(L);
7448 return 1;
7449 }
7450
7451 return hlua_smp2lua(L, &smp);
7452}
7453
Willy Tarreau59551662015-03-10 14:23:13 +01007454__LJMP static int hlua_set_priv(lua_State *L)
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01007455{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01007456 struct hlua *hlua;
7457
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01007458 MAY_LJMP(check_args(L, 2, "set_priv"));
7459
Willy Tarreau87b09662015-04-03 00:22:06 +02007460 /* It is useles to retrieve the stream, but this function
7461 * runs only in a stream context.
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01007462 */
7463 MAY_LJMP(hlua_checktxn(L, 1));
Thierry Fournier4234dbd2020-11-28 13:18:23 +01007464
7465 /* Get hlua struct, or NULL if we execute from main lua state */
Willy Tarreau80f5fae2015-02-27 16:38:20 +01007466 hlua = hlua_gethlua(L);
Thierry Fournier4234dbd2020-11-28 13:18:23 +01007467 if (!hlua)
7468 return 0;
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01007469
7470 /* Remove previous value. */
Thierry FOURNIERe068b602017-04-26 13:27:05 +02007471 luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref);
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01007472
7473 /* Get and store new value. */
7474 lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */
7475 hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */
7476
7477 return 0;
7478}
7479
Willy Tarreau59551662015-03-10 14:23:13 +01007480__LJMP static int hlua_get_priv(lua_State *L)
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01007481{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01007482 struct hlua *hlua;
7483
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01007484 MAY_LJMP(check_args(L, 1, "get_priv"));
7485
Willy Tarreau87b09662015-04-03 00:22:06 +02007486 /* It is useles to retrieve the stream, but this function
7487 * runs only in a stream context.
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01007488 */
7489 MAY_LJMP(hlua_checktxn(L, 1));
Thierry Fournier4234dbd2020-11-28 13:18:23 +01007490
7491 /* Get hlua struct, or NULL if we execute from main lua state */
Willy Tarreau80f5fae2015-02-27 16:38:20 +01007492 hlua = hlua_gethlua(L);
Thierry Fournier4234dbd2020-11-28 13:18:23 +01007493 if (!hlua) {
7494 lua_pushnil(L);
7495 return 1;
7496 }
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01007497
7498 /* Push configuration index in the stack. */
7499 lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref);
7500
7501 return 1;
7502}
7503
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01007504/* Create stack entry containing a class TXN. This function
7505 * return 0 if the stack does not contains free slots,
7506 * otherwise it returns 1.
7507 */
Thierry FOURNIERab00df62016-07-14 11:42:37 +02007508static int hlua_txn_new(lua_State *L, struct stream *s, struct proxy *p, int dir, int flags)
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01007509{
Willy Tarreaude491382015-04-06 11:04:28 +02007510 struct hlua_txn *htxn;
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01007511
7512 /* Check stack size. */
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01007513 if (!lua_checkstack(L, 3))
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01007514 return 0;
7515
7516 /* NOTE: The allocation never fails. The failure
7517 * throw an error, and the function never returns.
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08007518 * if the throw is not available, the process is aborted.
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01007519 */
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01007520 /* Create the object: obj[0] = userdata. */
7521 lua_newtable(L);
Willy Tarreaude491382015-04-06 11:04:28 +02007522 htxn = lua_newuserdata(L, sizeof(*htxn));
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01007523 lua_rawseti(L, -2, 0);
7524
Willy Tarreaude491382015-04-06 11:04:28 +02007525 htxn->s = s;
7526 htxn->p = p;
Thierry FOURNIERc4eebc82015-11-02 10:01:59 +01007527 htxn->dir = dir;
Thierry FOURNIERab00df62016-07-14 11:42:37 +02007528 htxn->flags = flags;
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01007529
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01007530 /* Create the "f" field that contains a list of fetches. */
7531 lua_pushstring(L, "f");
Thierry FOURNIERca988662015-12-20 18:43:03 +01007532 if (!hlua_fetches_new(L, htxn, HLUA_F_MAY_USE_HTTP))
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01007533 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02007534 lua_rawset(L, -3);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01007535
7536 /* Create the "sf" field that contains a list of stringsafe fetches. */
7537 lua_pushstring(L, "sf");
Thierry FOURNIERca988662015-12-20 18:43:03 +01007538 if (!hlua_fetches_new(L, htxn, HLUA_F_MAY_USE_HTTP | HLUA_F_AS_STRING))
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01007539 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02007540 lua_rawset(L, -3);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01007541
Thierry FOURNIER594afe72015-03-10 23:58:30 +01007542 /* Create the "c" field that contains a list of converters. */
7543 lua_pushstring(L, "c");
Willy Tarreaude491382015-04-06 11:04:28 +02007544 if (!hlua_converters_new(L, htxn, 0))
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01007545 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02007546 lua_rawset(L, -3);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01007547
7548 /* Create the "sc" field that contains a list of stringsafe converters. */
7549 lua_pushstring(L, "sc");
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01007550 if (!hlua_converters_new(L, htxn, HLUA_F_AS_STRING))
Thierry FOURNIER594afe72015-03-10 23:58:30 +01007551 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02007552 lua_rawset(L, -3);
Thierry FOURNIER594afe72015-03-10 23:58:30 +01007553
Thierry FOURNIER397826a2015-03-11 19:39:09 +01007554 /* Create the "req" field that contains the request channel object. */
7555 lua_pushstring(L, "req");
Willy Tarreau2a71af42015-03-10 13:51:50 +01007556 if (!hlua_channel_new(L, &s->req))
Thierry FOURNIER397826a2015-03-11 19:39:09 +01007557 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02007558 lua_rawset(L, -3);
Thierry FOURNIER397826a2015-03-11 19:39:09 +01007559
7560 /* Create the "res" field that contains the response channel object. */
7561 lua_pushstring(L, "res");
Willy Tarreau2a71af42015-03-10 13:51:50 +01007562 if (!hlua_channel_new(L, &s->res))
Thierry FOURNIER397826a2015-03-11 19:39:09 +01007563 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02007564 lua_rawset(L, -3);
Thierry FOURNIER397826a2015-03-11 19:39:09 +01007565
Thierry FOURNIER08504f42015-03-16 14:17:08 +01007566 /* Creates the HTTP object is the current proxy allows http. */
7567 lua_pushstring(L, "http");
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01007568 if (IS_HTX_STRM(s)) {
Willy Tarreaude491382015-04-06 11:04:28 +02007569 if (!hlua_http_new(L, htxn))
Thierry FOURNIER08504f42015-03-16 14:17:08 +01007570 return 0;
7571 }
7572 else
7573 lua_pushnil(L);
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02007574 lua_rawset(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01007575
Christopher Faulet78c35472020-02-26 17:14:08 +01007576 if ((htxn->flags & HLUA_TXN_CTX_MASK) == HLUA_TXN_FLT_CTX) {
7577 /* HTTPMessage object are created when a lua TXN is created from
7578 * a filter context only
7579 */
7580
7581 /* Creates the HTTP-Request object is the current proxy allows http. */
7582 lua_pushstring(L, "http_req");
7583 if (p->mode == PR_MODE_HTTP) {
7584 if (!hlua_http_msg_new(L, &s->txn->req))
7585 return 0;
7586 }
7587 else
7588 lua_pushnil(L);
7589 lua_rawset(L, -3);
7590
7591 /* Creates the HTTP-Response object is the current proxy allows http. */
7592 lua_pushstring(L, "http_res");
7593 if (p->mode == PR_MODE_HTTP) {
7594 if (!hlua_http_msg_new(L, &s->txn->rsp))
7595 return 0;
7596 }
7597 else
7598 lua_pushnil(L);
7599 lua_rawset(L, -3);
7600 }
7601
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01007602 /* Pop a class sesison metatable and affect it to the userdata. */
7603 lua_rawgeti(L, LUA_REGISTRYINDEX, class_txn_ref);
7604 lua_setmetatable(L, -2);
7605
7606 return 1;
7607}
7608
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01007609__LJMP static int hlua_txn_deflog(lua_State *L)
7610{
7611 const char *msg;
7612 struct hlua_txn *htxn;
7613
7614 MAY_LJMP(check_args(L, 2, "deflog"));
7615 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7616 msg = MAY_LJMP(luaL_checkstring(L, 2));
7617
7618 hlua_sendlog(htxn->s->be, htxn->s->logs.level, msg);
7619 return 0;
7620}
7621
7622__LJMP static int hlua_txn_log(lua_State *L)
7623{
7624 int level;
7625 const char *msg;
7626 struct hlua_txn *htxn;
7627
7628 MAY_LJMP(check_args(L, 3, "log"));
7629 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7630 level = MAY_LJMP(luaL_checkinteger(L, 2));
7631 msg = MAY_LJMP(luaL_checkstring(L, 3));
7632
7633 if (level < 0 || level >= NB_LOG_LEVELS)
7634 WILL_LJMP(luaL_argerror(L, 1, "Invalid loglevel."));
7635
7636 hlua_sendlog(htxn->s->be, level, msg);
7637 return 0;
7638}
7639
7640__LJMP static int hlua_txn_log_debug(lua_State *L)
7641{
7642 const char *msg;
7643 struct hlua_txn *htxn;
7644
7645 MAY_LJMP(check_args(L, 2, "Debug"));
7646 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7647 msg = MAY_LJMP(luaL_checkstring(L, 2));
7648 hlua_sendlog(htxn->s->be, LOG_DEBUG, msg);
7649 return 0;
7650}
7651
7652__LJMP static int hlua_txn_log_info(lua_State *L)
7653{
7654 const char *msg;
7655 struct hlua_txn *htxn;
7656
7657 MAY_LJMP(check_args(L, 2, "Info"));
7658 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7659 msg = MAY_LJMP(luaL_checkstring(L, 2));
7660 hlua_sendlog(htxn->s->be, LOG_INFO, msg);
7661 return 0;
7662}
7663
7664__LJMP static int hlua_txn_log_warning(lua_State *L)
7665{
7666 const char *msg;
7667 struct hlua_txn *htxn;
7668
7669 MAY_LJMP(check_args(L, 2, "Warning"));
7670 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7671 msg = MAY_LJMP(luaL_checkstring(L, 2));
7672 hlua_sendlog(htxn->s->be, LOG_WARNING, msg);
7673 return 0;
7674}
7675
7676__LJMP static int hlua_txn_log_alert(lua_State *L)
7677{
7678 const char *msg;
7679 struct hlua_txn *htxn;
7680
7681 MAY_LJMP(check_args(L, 2, "Alert"));
7682 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7683 msg = MAY_LJMP(luaL_checkstring(L, 2));
7684 hlua_sendlog(htxn->s->be, LOG_ALERT, msg);
7685 return 0;
7686}
7687
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01007688__LJMP static int hlua_txn_set_loglevel(lua_State *L)
7689{
7690 struct hlua_txn *htxn;
7691 int ll;
7692
7693 MAY_LJMP(check_args(L, 2, "set_loglevel"));
7694 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7695 ll = MAY_LJMP(luaL_checkinteger(L, 2));
7696
7697 if (ll < 0 || ll > 7)
7698 WILL_LJMP(luaL_argerror(L, 2, "Bad log level. It must be between 0 and 7"));
7699
7700 htxn->s->logs.level = ll;
7701 return 0;
7702}
7703
7704__LJMP static int hlua_txn_set_tos(lua_State *L)
7705{
7706 struct hlua_txn *htxn;
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01007707 int tos;
7708
7709 MAY_LJMP(check_args(L, 2, "set_tos"));
7710 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7711 tos = MAY_LJMP(luaL_checkinteger(L, 2));
7712
Willy Tarreau1a18b542018-12-11 16:37:42 +01007713 conn_set_tos(objt_conn(htxn->s->sess->origin), tos);
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01007714 return 0;
7715}
7716
7717__LJMP static int hlua_txn_set_mark(lua_State *L)
7718{
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01007719 struct hlua_txn *htxn;
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01007720 int mark;
7721
7722 MAY_LJMP(check_args(L, 2, "set_mark"));
7723 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7724 mark = MAY_LJMP(luaL_checkinteger(L, 2));
7725
Lukas Tribus579e3e32019-08-11 18:03:45 +02007726 conn_set_mark(objt_conn(htxn->s->sess->origin), mark);
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01007727 return 0;
7728}
7729
Patrick Hemmer268a7072018-05-11 12:52:31 -04007730__LJMP static int hlua_txn_set_priority_class(lua_State *L)
7731{
7732 struct hlua_txn *htxn;
7733
7734 MAY_LJMP(check_args(L, 2, "set_priority_class"));
7735 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7736 htxn->s->priority_class = queue_limit_class(MAY_LJMP(luaL_checkinteger(L, 2)));
7737 return 0;
7738}
7739
7740__LJMP static int hlua_txn_set_priority_offset(lua_State *L)
7741{
7742 struct hlua_txn *htxn;
7743
7744 MAY_LJMP(check_args(L, 2, "set_priority_offset"));
7745 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7746 htxn->s->priority_offset = queue_limit_offset(MAY_LJMP(luaL_checkinteger(L, 2)));
7747 return 0;
7748}
7749
Christopher Faulet700d9e82020-01-31 12:21:52 +01007750/* Forward the Reply object to the client. This function converts the reply in
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05007751 * HTX an push it to into the response channel. It is response to forward the
Christopher Faulet700d9e82020-01-31 12:21:52 +01007752 * message and terminate the transaction. It returns 1 on success and 0 on
7753 * error. The Reply must be on top of the stack.
7754 */
7755__LJMP static int hlua_txn_forward_reply(lua_State *L, struct stream *s)
7756{
7757 struct htx *htx;
7758 struct htx_sl *sl;
7759 struct h1m h1m;
7760 const char *status, *reason, *body;
7761 size_t status_len, reason_len, body_len;
7762 int ret, code, flags;
7763
7764 code = 200;
7765 status = "200";
7766 status_len = 3;
7767 ret = lua_getfield(L, -1, "status");
7768 if (ret == LUA_TNUMBER) {
7769 code = lua_tointeger(L, -1);
7770 status = lua_tolstring(L, -1, &status_len);
7771 }
7772 lua_pop(L, 1);
7773
7774 reason = http_get_reason(code);
7775 reason_len = strlen(reason);
7776 ret = lua_getfield(L, -1, "reason");
7777 if (ret == LUA_TSTRING)
7778 reason = lua_tolstring(L, -1, &reason_len);
7779 lua_pop(L, 1);
7780
7781 body = NULL;
7782 body_len = 0;
7783 ret = lua_getfield(L, -1, "body");
7784 if (ret == LUA_TSTRING)
7785 body = lua_tolstring(L, -1, &body_len);
7786 lua_pop(L, 1);
7787
7788 /* Prepare the response before inserting the headers */
7789 h1m_init_res(&h1m);
7790 htx = htx_from_buf(&s->res.buf);
7791 channel_htx_truncate(&s->res, htx);
7792 if (s->txn->req.flags & HTTP_MSGF_VER_11) {
7793 flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11);
7794 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"),
7795 ist2(status, status_len), ist2(reason, reason_len));
7796 }
7797 else {
7798 flags = HTX_SL_F_IS_RESP;
7799 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.0"),
7800 ist2(status, status_len), ist2(reason, reason_len));
7801 }
7802 if (!sl)
7803 goto fail;
7804 sl->info.res.status = code;
7805
7806 /* Push in the stack the "headers" entry. */
7807 ret = lua_getfield(L, -1, "headers");
7808 if (ret != LUA_TTABLE)
7809 goto skip_headers;
7810
7811 lua_pushnil(L);
7812 while (lua_next(L, -2) != 0) {
7813 struct ist name, value;
7814 const char *n, *v;
7815 size_t nlen, vlen;
7816
7817 if (!lua_isstring(L, -2) || !lua_istable(L, -1)) {
7818 /* Skip element if the key is not a string or if the value is not a table */
7819 goto next_hdr;
7820 }
7821
7822 n = lua_tolstring(L, -2, &nlen);
7823 name = ist2(n, nlen);
7824 if (isteqi(name, ist("content-length"))) {
7825 /* Always skip content-length header. It will be added
7826 * later with the correct len
7827 */
7828 goto next_hdr;
7829 }
7830
7831 /* Loop on header's values */
7832 lua_pushnil(L);
7833 while (lua_next(L, -2)) {
7834 if (!lua_isstring(L, -1)) {
7835 /* Skip the value if it is not a string */
7836 goto next_value;
7837 }
7838
7839 v = lua_tolstring(L, -1, &vlen);
7840 value = ist2(v, vlen);
7841
7842 if (isteqi(name, ist("transfer-encoding")))
7843 h1_parse_xfer_enc_header(&h1m, value);
7844 if (!htx_add_header(htx, ist2(n, nlen), ist2(v, vlen)))
7845 goto fail;
7846
7847 next_value:
7848 lua_pop(L, 1);
7849 }
7850
7851 next_hdr:
7852 lua_pop(L, 1);
7853 }
7854 skip_headers:
7855 lua_pop(L, 1);
7856
7857 /* Update h1m flags: CLEN is set if CHNK is not present */
7858 if (!(h1m.flags & H1_MF_CHNK)) {
7859 const char *clen = ultoa(body_len);
7860
7861 h1m.flags |= H1_MF_CLEN;
7862 if (!htx_add_header(htx, ist("content-length"), ist(clen)))
7863 goto fail;
7864 }
7865 if (h1m.flags & (H1_MF_CLEN|H1_MF_CHNK))
7866 h1m.flags |= H1_MF_XFER_LEN;
7867
7868 /* Update HTX start-line flags */
7869 if (h1m.flags & H1_MF_XFER_ENC)
7870 flags |= HTX_SL_F_XFER_ENC;
7871 if (h1m.flags & H1_MF_XFER_LEN) {
7872 flags |= HTX_SL_F_XFER_LEN;
7873 if (h1m.flags & H1_MF_CHNK)
7874 flags |= HTX_SL_F_CHNK;
7875 else if (h1m.flags & H1_MF_CLEN)
7876 flags |= HTX_SL_F_CLEN;
7877 if (h1m.body_len == 0)
7878 flags |= HTX_SL_F_BODYLESS;
7879 }
7880 sl->flags |= flags;
7881
7882
7883 if (!htx_add_endof(htx, HTX_BLK_EOH) ||
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01007884 (body_len && !htx_add_data_atonce(htx, ist2(body, body_len))))
Christopher Faulet700d9e82020-01-31 12:21:52 +01007885 goto fail;
7886
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01007887 htx->flags |= HTX_FL_EOM;
7888
Christopher Faulet700d9e82020-01-31 12:21:52 +01007889 /* Now, forward the response and terminate the transaction */
7890 s->txn->status = code;
7891 htx_to_buf(htx, &s->res.buf);
7892 if (!http_forward_proxy_resp(s, 1))
7893 goto fail;
7894
7895 return 1;
7896
7897 fail:
7898 channel_htx_truncate(&s->res, htx);
7899 return 0;
7900}
7901
7902/* Terminate a transaction if called from a lua action. For TCP streams,
7903 * processing is just aborted. Nothing is returned to the client and all
7904 * arguments are ignored. For HTTP streams, if a reply is passed as argument, it
7905 * is forwarded to the client before terminating the transaction. On success,
7906 * the function exits with ACT_RET_DONE code. If an error occurred, it exits
7907 * with ACT_RET_ERR code. If this function is not called from a lua action, it
7908 * just exits without any processing.
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01007909 */
Thierry FOURNIER4bb375c2015-08-26 08:42:21 +02007910__LJMP static int hlua_txn_done(lua_State *L)
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01007911{
Willy Tarreaub2ccb562015-04-06 11:11:15 +02007912 struct hlua_txn *htxn;
Christopher Faulet700d9e82020-01-31 12:21:52 +01007913 struct stream *s;
7914 int finst;
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01007915
Willy Tarreaub2ccb562015-04-06 11:11:15 +02007916 htxn = MAY_LJMP(hlua_checktxn(L, 1));
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01007917
Christopher Faulet700d9e82020-01-31 12:21:52 +01007918 /* If the flags NOTERM is set, we cannot terminate the session, so we
7919 * just end the execution of the current lua code. */
7920 if (htxn->flags & HLUA_TXN_NOTERM)
Thierry FOURNIERab00df62016-07-14 11:42:37 +02007921 WILL_LJMP(hlua_done(L));
Thierry FOURNIERab00df62016-07-14 11:42:37 +02007922
Christopher Faulet700d9e82020-01-31 12:21:52 +01007923 s = htxn->s;
Christopher Fauletd8f0e072020-02-25 09:45:51 +01007924 if (!IS_HTX_STRM(htxn->s)) {
Christopher Faulet700d9e82020-01-31 12:21:52 +01007925 struct channel *req = &s->req;
7926 struct channel *res = &s->res;
Willy Tarreau81389672015-03-10 12:03:52 +01007927
Christopher Faulet700d9e82020-01-31 12:21:52 +01007928 channel_auto_read(req);
7929 channel_abort(req);
7930 channel_auto_close(req);
7931 channel_erase(req);
7932
7933 res->wex = tick_add_ifset(now_ms, res->wto);
7934 channel_auto_read(res);
7935 channel_auto_close(res);
7936 channel_shutr_now(res);
7937
7938 finst = ((htxn->dir == SMP_OPT_DIR_REQ) ? SF_FINST_R : SF_FINST_D);
7939 goto done;
Christopher Fauletfe6a71b2019-07-26 16:40:24 +02007940 }
Thierry FOURNIER10ec2142015-08-24 17:23:45 +02007941
Christopher Faulet700d9e82020-01-31 12:21:52 +01007942 if (lua_gettop(L) == 1 || !lua_istable(L, 2)) {
7943 /* No reply or invalid reply */
7944 s->txn->status = 0;
7945 http_reply_and_close(s, 0, NULL);
7946 }
7947 else {
7948 /* Remove extra args to have the reply on top of the stack */
7949 if (lua_gettop(L) > 2)
7950 lua_pop(L, lua_gettop(L) - 2);
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01007951
Christopher Faulet700d9e82020-01-31 12:21:52 +01007952 if (!hlua_txn_forward_reply(L, s)) {
7953 if (!(s->flags & SF_ERR_MASK))
7954 s->flags |= SF_ERR_PRXCOND;
7955 lua_pushinteger(L, ACT_RET_ERR);
7956 WILL_LJMP(hlua_done(L));
7957 return 0; /* Never reached */
7958 }
Christopher Faulet4d0e2632019-07-16 10:52:40 +02007959 }
Thierry FOURNIER4bb375c2015-08-26 08:42:21 +02007960
Christopher Faulet700d9e82020-01-31 12:21:52 +01007961 finst = ((htxn->dir == SMP_OPT_DIR_REQ) ? SF_FINST_R : SF_FINST_H);
7962 if (htxn->dir == SMP_OPT_DIR_REQ) {
7963 /* let's log the request time */
7964 s->logs.tv_request = now;
7965 if (s->sess->fe == s->be) /* report it if the request was intercepted by the frontend */
Willy Tarreau4781b152021-04-06 13:53:36 +02007966 _HA_ATOMIC_INC(&s->sess->fe->fe_counters.intercepted_req);
Christopher Faulet700d9e82020-01-31 12:21:52 +01007967 }
Christopher Fauletfe6a71b2019-07-26 16:40:24 +02007968
Christopher Faulet700d9e82020-01-31 12:21:52 +01007969 done:
7970 if (!(s->flags & SF_ERR_MASK))
7971 s->flags |= SF_ERR_LOCAL;
7972 if (!(s->flags & SF_FINST_MASK))
7973 s->flags |= finst;
Christopher Fauletfe6a71b2019-07-26 16:40:24 +02007974
Christopher Faulete48d1dc2021-08-13 14:11:17 +02007975 if ((htxn->flags & HLUA_TXN_CTX_MASK) == HLUA_TXN_FLT_CTX)
7976 lua_pushinteger(L, -1);
7977 else
7978 lua_pushinteger(L, ACT_RET_ABRT);
Thierry FOURNIER4bb375c2015-08-26 08:42:21 +02007979 WILL_LJMP(hlua_done(L));
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01007980 return 0;
7981}
7982
Christopher Faulet700d9e82020-01-31 12:21:52 +01007983/*
7984 *
7985 *
7986 * Class REPLY
7987 *
7988 *
7989 */
7990
7991/* Pushes the TXN reply onto the top of the stack. If the stask does not have a
7992 * free slots, the function fails and returns 0;
7993 */
7994static int hlua_txn_reply_new(lua_State *L)
7995{
7996 struct hlua_txn *htxn;
7997 const char *reason, *body = NULL;
7998 int ret, status;
7999
8000 htxn = MAY_LJMP(hlua_checktxn(L, 1));
Christopher Fauletd8f0e072020-02-25 09:45:51 +01008001 if (!IS_HTX_STRM(htxn->s)) {
Christopher Faulet700d9e82020-01-31 12:21:52 +01008002 hlua_pusherror(L, "txn object is not an HTTP transaction.");
8003 WILL_LJMP(lua_error(L));
8004 }
8005
8006 /* Default value */
8007 status = 200;
8008 reason = http_get_reason(status);
8009
8010 if (lua_istable(L, 2)) {
8011 /* load status and reason from the table argument at index 2 */
8012 ret = lua_getfield(L, 2, "status");
8013 if (ret == LUA_TNIL)
8014 goto reason;
8015 else if (ret != LUA_TNUMBER) {
8016 /* invalid status: ignore the reason */
8017 goto body;
8018 }
8019 status = lua_tointeger(L, -1);
8020
8021 reason:
8022 lua_pop(L, 1); /* restore the stack: remove status */
8023 ret = lua_getfield(L, 2, "reason");
8024 if (ret == LUA_TSTRING)
8025 reason = lua_tostring(L, -1);
8026
8027 body:
8028 lua_pop(L, 1); /* restore the stack: remove invalid status or reason */
8029 ret = lua_getfield(L, 2, "body");
8030 if (ret == LUA_TSTRING)
8031 body = lua_tostring(L, -1);
8032 lua_pop(L, 1); /* restore the stack: remove body */
8033 }
8034
8035 /* Create the Reply table */
8036 lua_newtable(L);
8037
8038 /* Add status element */
8039 lua_pushstring(L, "status");
8040 lua_pushinteger(L, status);
8041 lua_settable(L, -3);
8042
8043 /* Add reason element */
8044 reason = http_get_reason(status);
8045 lua_pushstring(L, "reason");
8046 lua_pushstring(L, reason);
8047 lua_settable(L, -3);
8048
8049 /* Add body element, nil if undefined */
8050 lua_pushstring(L, "body");
8051 if (body)
8052 lua_pushstring(L, body);
8053 else
8054 lua_pushnil(L);
8055 lua_settable(L, -3);
8056
8057 /* Add headers element */
8058 lua_pushstring(L, "headers");
8059 lua_newtable(L);
8060
8061 /* stack: [ txn, <Arg:table>, <Reply:table>, "headers", <headers:table> ] */
8062 if (lua_istable(L, 2)) {
8063 /* load headers from the table argument at index 2. If it is a table, copy it. */
8064 ret = lua_getfield(L, 2, "headers");
8065 if (ret == LUA_TTABLE) {
8066 /* stack: [ ... <headers:table>, <table> ] */
8067 lua_pushnil(L);
8068 while (lua_next(L, -2) != 0) {
8069 /* stack: [ ... <headers:table>, <table>, k, v] */
8070 if (!lua_isstring(L, -1) && !lua_istable(L, -1)) {
8071 /* invalid value type, skip it */
8072 lua_pop(L, 1);
8073 continue;
8074 }
8075
8076
8077 /* Duplicate the key and swap it with the value. */
8078 lua_pushvalue(L, -2);
8079 lua_insert(L, -2);
8080 /* stack: [ ... <headers:table>, <table>, k, k, v ] */
8081
8082 lua_newtable(L);
8083 lua_insert(L, -2);
8084 /* stack: [ ... <headers:table>, <table>, k, k, <inner:table>, v ] */
8085
8086 if (lua_isstring(L, -1)) {
8087 /* push the value in the inner table */
8088 lua_rawseti(L, -2, 1);
8089 }
8090 else { /* table */
8091 lua_pushnil(L);
8092 while (lua_next(L, -2) != 0) {
8093 /* stack: [ ... <headers:table>, <table>, k, k, <inner:table>, <v:table>, k2, v2 ] */
8094 if (!lua_isstring(L, -1)) {
8095 /* invalid value type, skip it*/
8096 lua_pop(L, 1);
8097 continue;
8098 }
8099 /* push the value in the inner table */
8100 lua_rawseti(L, -4, lua_rawlen(L, -4) + 1);
8101 /* stack: [ ... <headers:table>, <table>, k, k, <inner:table>, <v:table>, k2 ] */
8102 }
8103 lua_pop(L, 1);
8104 /* stack: [ ... <headers:table>, <table>, k, k, <inner:table> ] */
8105 }
8106
8107 /* push (k,v) on the stack in the headers table:
8108 * stack: [ ... <headers:table>, <table>, k, k, v ]
8109 */
8110 lua_settable(L, -5);
8111 /* stack: [ ... <headers:table>, <table>, k ] */
8112 }
8113 }
8114 lua_pop(L, 1);
8115 }
8116 /* stack: [ txn, <Arg:table>, <Reply:table>, "headers", <headers:table> ] */
8117 lua_settable(L, -3);
8118 /* stack: [ txn, <Arg:table>, <Reply:table> ] */
8119
8120 /* Pop a class sesison metatable and affect it to the userdata. */
8121 lua_rawgeti(L, LUA_REGISTRYINDEX, class_txn_reply_ref);
8122 lua_setmetatable(L, -2);
8123 return 1;
8124}
8125
8126/* Set the reply status code, and optionally the reason. If no reason is
8127 * provided, the default one corresponding to the status code is used.
8128 */
8129__LJMP static int hlua_txn_reply_set_status(lua_State *L)
8130{
8131 int status = MAY_LJMP(luaL_checkinteger(L, 2));
8132 const char *reason = MAY_LJMP(luaL_optlstring(L, 3, NULL, NULL));
8133
8134 /* First argument (self) must be a table */
8135 luaL_checktype(L, 1, LUA_TTABLE);
8136
8137 if (status < 100 || status > 599) {
8138 lua_pushboolean(L, 0);
8139 return 1;
8140 }
8141 if (!reason)
8142 reason = http_get_reason(status);
8143
8144 lua_pushinteger(L, status);
8145 lua_setfield(L, 1, "status");
8146
8147 lua_pushstring(L, reason);
8148 lua_setfield(L, 1, "reason");
8149
8150 lua_pushboolean(L, 1);
8151 return 1;
8152}
8153
8154/* Add a header into the reply object. Each header name is associated to an
8155 * array of values in the "headers" table. If the header name is not found, a
8156 * new entry is created.
8157 */
8158__LJMP static int hlua_txn_reply_add_header(lua_State *L)
8159{
8160 const char *name = MAY_LJMP(luaL_checkstring(L, 2));
8161 const char *value = MAY_LJMP(luaL_checkstring(L, 3));
8162 int ret;
8163
8164 /* First argument (self) must be a table */
8165 luaL_checktype(L, 1, LUA_TTABLE);
8166
8167 /* Push in the stack the "headers" entry. */
8168 ret = lua_getfield(L, 1, "headers");
8169 if (ret != LUA_TTABLE) {
8170 hlua_pusherror(L, "Reply['headers'] is expected to a an array. %s found", lua_typename(L, ret));
8171 WILL_LJMP(lua_error(L));
8172 }
8173
8174 /* check if the header is already registered. If not, register it. */
8175 ret = lua_getfield(L, -1, name);
8176 if (ret == LUA_TNIL) {
8177 /* Entry not found. */
8178 lua_pop(L, 1); /* remove the nil. The "headers" table is the top of the stack. */
8179
8180 /* Insert the new header name in the array in the top of the stack.
8181 * It left the new array in the top of the stack.
8182 */
8183 lua_newtable(L);
8184 lua_pushstring(L, name);
8185 lua_pushvalue(L, -2);
8186 lua_settable(L, -4);
8187 }
8188 else if (ret != LUA_TTABLE) {
8189 hlua_pusherror(L, "Reply['headers']['%s'] is expected to be an array. %s found", name, lua_typename(L, ret));
8190 WILL_LJMP(lua_error(L));
8191 }
8192
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07008193 /* Now the top of thestack is an array of values. We push
Christopher Faulet700d9e82020-01-31 12:21:52 +01008194 * the header value as new entry.
8195 */
8196 lua_pushstring(L, value);
8197 ret = lua_rawlen(L, -2);
8198 lua_rawseti(L, -2, ret + 1);
8199
8200 lua_pushboolean(L, 1);
8201 return 1;
8202}
8203
8204/* Remove all occurrences of a given header name. */
8205__LJMP static int hlua_txn_reply_del_header(lua_State *L)
8206{
8207 const char *name = MAY_LJMP(luaL_checkstring(L, 2));
8208 int ret;
8209
8210 /* First argument (self) must be a table */
8211 luaL_checktype(L, 1, LUA_TTABLE);
8212
8213 /* Push in the stack the "headers" entry. */
8214 ret = lua_getfield(L, 1, "headers");
8215 if (ret != LUA_TTABLE) {
8216 hlua_pusherror(L, "Reply['headers'] is expected to be an array. %s found", lua_typename(L, ret));
8217 WILL_LJMP(lua_error(L));
8218 }
8219
8220 lua_pushstring(L, name);
8221 lua_pushnil(L);
8222 lua_settable(L, -3);
8223
8224 lua_pushboolean(L, 1);
8225 return 1;
8226}
8227
8228/* Set the reply's body. Overwrite any existing entry. */
8229__LJMP static int hlua_txn_reply_set_body(lua_State *L)
8230{
8231 const char *payload = MAY_LJMP(luaL_checkstring(L, 2));
8232
8233 /* First argument (self) must be a table */
8234 luaL_checktype(L, 1, LUA_TTABLE);
8235
8236 lua_pushstring(L, payload);
8237 lua_setfield(L, 1, "body");
8238
8239 lua_pushboolean(L, 1);
8240 return 1;
8241}
8242
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01008243__LJMP static int hlua_log(lua_State *L)
8244{
8245 int level;
8246 const char *msg;
8247
8248 MAY_LJMP(check_args(L, 2, "log"));
8249 level = MAY_LJMP(luaL_checkinteger(L, 1));
8250 msg = MAY_LJMP(luaL_checkstring(L, 2));
8251
8252 if (level < 0 || level >= NB_LOG_LEVELS)
8253 WILL_LJMP(luaL_argerror(L, 1, "Invalid loglevel."));
8254
8255 hlua_sendlog(NULL, level, msg);
8256 return 0;
8257}
8258
8259__LJMP static int hlua_log_debug(lua_State *L)
8260{
8261 const char *msg;
8262
8263 MAY_LJMP(check_args(L, 1, "debug"));
8264 msg = MAY_LJMP(luaL_checkstring(L, 1));
8265 hlua_sendlog(NULL, LOG_DEBUG, msg);
8266 return 0;
8267}
8268
8269__LJMP static int hlua_log_info(lua_State *L)
8270{
8271 const char *msg;
8272
8273 MAY_LJMP(check_args(L, 1, "info"));
8274 msg = MAY_LJMP(luaL_checkstring(L, 1));
8275 hlua_sendlog(NULL, LOG_INFO, msg);
8276 return 0;
8277}
8278
8279__LJMP static int hlua_log_warning(lua_State *L)
8280{
8281 const char *msg;
8282
8283 MAY_LJMP(check_args(L, 1, "warning"));
8284 msg = MAY_LJMP(luaL_checkstring(L, 1));
8285 hlua_sendlog(NULL, LOG_WARNING, msg);
8286 return 0;
8287}
8288
8289__LJMP static int hlua_log_alert(lua_State *L)
8290{
8291 const char *msg;
8292
8293 MAY_LJMP(check_args(L, 1, "alert"));
8294 msg = MAY_LJMP(luaL_checkstring(L, 1));
8295 hlua_sendlog(NULL, LOG_ALERT, msg);
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01008296 return 0;
8297}
8298
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01008299__LJMP static int hlua_sleep_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008300{
8301 int wakeup_ms = lua_tointeger(L, -1);
Willy Tarreau12c02702021-09-30 16:12:31 +02008302 if (!tick_is_expired(wakeup_ms, now_ms))
Willy Tarreau9635e032018-10-16 17:52:55 +02008303 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_sleep_yield, wakeup_ms, 0));
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008304 return 0;
8305}
8306
8307__LJMP static int hlua_sleep(lua_State *L)
8308{
8309 unsigned int delay;
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01008310 unsigned int wakeup_ms;
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008311
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01008312 MAY_LJMP(check_args(L, 1, "sleep"));
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008313
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01008314 delay = MAY_LJMP(luaL_checkinteger(L, 1)) * 1000;
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01008315 wakeup_ms = tick_add(now_ms, delay);
8316 lua_pushinteger(L, wakeup_ms);
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008317
Willy Tarreau9635e032018-10-16 17:52:55 +02008318 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_sleep_yield, wakeup_ms, 0));
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01008319 return 0;
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008320}
8321
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01008322__LJMP static int hlua_msleep(lua_State *L)
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008323{
8324 unsigned int delay;
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01008325 unsigned int wakeup_ms;
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008326
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01008327 MAY_LJMP(check_args(L, 1, "msleep"));
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008328
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01008329 delay = MAY_LJMP(luaL_checkinteger(L, 1));
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01008330 wakeup_ms = tick_add(now_ms, delay);
8331 lua_pushinteger(L, wakeup_ms);
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008332
Willy Tarreau9635e032018-10-16 17:52:55 +02008333 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_sleep_yield, wakeup_ms, 0));
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01008334 return 0;
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008335}
8336
Thierry FOURNIER13416fe2015-02-17 15:01:59 +01008337/* This functionis an LUA binding. it permits to give back
8338 * the hand at the HAProxy scheduler. It is used when the
8339 * LUA processing consumes a lot of time.
8340 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01008341__LJMP static int hlua_yield_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01008342{
8343 return 0;
8344}
8345
Thierry FOURNIER13416fe2015-02-17 15:01:59 +01008346__LJMP static int hlua_yield(lua_State *L)
8347{
Willy Tarreau9635e032018-10-16 17:52:55 +02008348 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_yield_yield, TICK_ETERNITY, HLUA_CTRLYIELD));
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01008349 return 0;
Thierry FOURNIER13416fe2015-02-17 15:01:59 +01008350}
8351
Thierry FOURNIER37196f42015-02-16 19:34:56 +01008352/* This function change the nice of the currently executed
8353 * task. It is used set low or high priority at the current
8354 * task.
8355 */
Willy Tarreau59551662015-03-10 14:23:13 +01008356__LJMP static int hlua_set_nice(lua_State *L)
Thierry FOURNIER37196f42015-02-16 19:34:56 +01008357{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01008358 struct hlua *hlua;
8359 int nice;
Thierry FOURNIER37196f42015-02-16 19:34:56 +01008360
Willy Tarreau80f5fae2015-02-27 16:38:20 +01008361 MAY_LJMP(check_args(L, 1, "set_nice"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01008362 nice = MAY_LJMP(luaL_checkinteger(L, 1));
Thierry FOURNIER37196f42015-02-16 19:34:56 +01008363
Thierry Fournier4234dbd2020-11-28 13:18:23 +01008364 /* Get hlua struct, or NULL if we execute from main lua state */
8365 hlua = hlua_gethlua(L);
8366
8367 /* If the task is not set, I'm in a start mode. */
Thierry FOURNIER37196f42015-02-16 19:34:56 +01008368 if (!hlua || !hlua->task)
8369 return 0;
8370
8371 if (nice < -1024)
8372 nice = -1024;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01008373 else if (nice > 1024)
Thierry FOURNIER37196f42015-02-16 19:34:56 +01008374 nice = 1024;
8375
8376 hlua->task->nice = nice;
8377 return 0;
8378}
8379
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08008380/* This function is used as a callback of a task. It is called by the
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008381 * HAProxy task subsystem when the task is awaked. The LUA runtime can
8382 * return an E_AGAIN signal, the emmiter of this signal must set a
8383 * signal to wake the task.
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008384 *
8385 * Task wrapper are longjmp safe because the only one Lua code
8386 * executed is the safe hlua_ctx_resume();
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008387 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01008388struct task *hlua_process_task(struct task *task, void *context, unsigned int state)
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008389{
Olivier Houchard9f6af332018-05-25 14:04:04 +02008390 struct hlua *hlua = context;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008391 enum hlua_exec status;
8392
Christopher Faulet5bc99722018-04-25 10:34:45 +02008393 if (task->thread_mask == MAX_THREADS_MASK)
8394 task_set_affinity(task, tid_bit);
8395
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008396 /* If it is the first call to the task, we must initialize the
8397 * execution timeouts.
8398 */
8399 if (!HLUA_IS_RUNNING(hlua))
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02008400 hlua->max_time = hlua_timeout_task;
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008401
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008402 /* Execute the Lua code. */
8403 status = hlua_ctx_resume(hlua, 1);
8404
8405 switch (status) {
8406 /* finished or yield */
8407 case HLUA_E_OK:
8408 hlua_ctx_destroy(hlua);
Olivier Houchard3f795f72019-04-17 22:51:06 +02008409 task_destroy(task);
Tim Duesterhuscd235c62018-04-24 13:56:01 +02008410 task = NULL;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008411 break;
8412
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01008413 case HLUA_E_AGAIN: /* co process or timeout wake me later. */
Thierry FOURNIERcb146882017-12-10 17:10:57 +01008414 notification_gc(&hlua->com);
PiBa-NLfe971b32018-05-02 22:27:14 +02008415 task->expire = hlua->wake_time;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008416 break;
8417
8418 /* finished with error. */
8419 case HLUA_E_ERRMSG:
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008420 SEND_ERR(NULL, "Lua task: %s.\n", lua_tostring(hlua->T, -1));
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008421 hlua_ctx_destroy(hlua);
Olivier Houchard3f795f72019-04-17 22:51:06 +02008422 task_destroy(task);
Emeric Brun253e53e2017-10-17 18:58:40 +02008423 task = NULL;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008424 break;
8425
8426 case HLUA_E_ERR:
8427 default:
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008428 SEND_ERR(NULL, "Lua task: unknown error.\n");
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008429 hlua_ctx_destroy(hlua);
Olivier Houchard3f795f72019-04-17 22:51:06 +02008430 task_destroy(task);
Emeric Brun253e53e2017-10-17 18:58:40 +02008431 task = NULL;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008432 break;
8433 }
Emeric Brun253e53e2017-10-17 18:58:40 +02008434 return task;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008435}
8436
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008437/* This function is an LUA binding that register LUA function to be
8438 * executed after the HAProxy configuration parsing and before the
8439 * HAProxy scheduler starts. This function expect only one LUA
8440 * argument that is a function. This function returns nothing, but
8441 * throws if an error is encountered.
8442 */
8443__LJMP static int hlua_register_init(lua_State *L)
8444{
8445 struct hlua_init_function *init;
8446 int ref;
8447
8448 MAY_LJMP(check_args(L, 1, "register_init"));
8449
8450 ref = MAY_LJMP(hlua_checkfunction(L, 1));
8451
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02008452 init = calloc(1, sizeof(*init));
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008453 if (!init)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01008454 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008455
8456 init->function_ref = ref;
Willy Tarreau2b718102021-04-21 07:32:39 +02008457 LIST_APPEND(&hlua_init_functions[hlua_state_id], &init->l);
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008458 return 0;
8459}
8460
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008461/* This functio is an LUA binding. It permits to register a task
8462 * executed in parallel of the main HAroxy activity. The task is
8463 * created and it is set in the HAProxy scheduler. It can be called
8464 * from the "init" section, "post init" or during the runtime.
8465 *
8466 * Lua prototype:
8467 *
8468 * <none> core.register_task(<function>)
8469 */
8470static int hlua_register_task(lua_State *L)
8471{
Christopher Faulet5294ec02021-04-12 12:24:47 +02008472 struct hlua *hlua = NULL;
8473 struct task *task = NULL;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008474 int ref;
Thierry Fournier021d9862020-11-28 23:42:03 +01008475 int state_id;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008476
8477 MAY_LJMP(check_args(L, 1, "register_task"));
8478
8479 ref = MAY_LJMP(hlua_checkfunction(L, 1));
8480
Thierry Fournier75fc0292020-11-28 13:18:56 +01008481 /* Get the reference state. If the reference is NULL, L is the master
8482 * state, otherwise hlua->T is.
8483 */
8484 hlua = hlua_gethlua(L);
8485 if (hlua)
Thierry Fournier021d9862020-11-28 23:42:03 +01008486 /* we are in runtime processing */
8487 state_id = hlua->state_id;
Thierry Fournier75fc0292020-11-28 13:18:56 +01008488 else
Thierry Fournier021d9862020-11-28 23:42:03 +01008489 /* we are in initialization mode */
Thierry Fournierc7492592020-11-28 23:57:24 +01008490 state_id = hlua_state_id;
Thierry Fournier75fc0292020-11-28 13:18:56 +01008491
Willy Tarreaubafbe012017-11-24 17:34:44 +01008492 hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008493 if (!hlua)
Christopher Faulet5294ec02021-04-12 12:24:47 +02008494 goto alloc_error;
Christopher Faulet1e8433f2021-03-24 15:03:01 +01008495 HLUA_INIT(hlua);
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008496
Thierry Fournier59f11be2020-11-29 00:37:41 +01008497 /* We are in the common lua state, execute the task anywhere,
8498 * otherwise, inherit the current thread identifier
8499 */
8500 if (state_id == 0)
Willy Tarreaubeeabf52021-10-01 18:23:30 +02008501 task = task_new_anywhere();
Thierry Fournier59f11be2020-11-29 00:37:41 +01008502 else
Willy Tarreaubeeabf52021-10-01 18:23:30 +02008503 task = task_new_here();
Willy Tarreaue09101e2018-10-16 17:37:12 +02008504 if (!task)
Christopher Faulet5294ec02021-04-12 12:24:47 +02008505 goto alloc_error;
Willy Tarreaue09101e2018-10-16 17:37:12 +02008506
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008507 task->context = hlua;
8508 task->process = hlua_process_task;
8509
Thierry Fournier021d9862020-11-28 23:42:03 +01008510 if (!hlua_ctx_init(hlua, state_id, task, 1))
Christopher Faulet5294ec02021-04-12 12:24:47 +02008511 goto alloc_error;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008512
8513 /* Restore the function in the stack. */
8514 lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, ref);
8515 hlua->nargs = 0;
8516
8517 /* Schedule task. */
Willy Tarreaue3957f82021-09-30 16:17:37 +02008518 task_wakeup(task, TASK_WOKEN_INIT);
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008519
8520 return 0;
Christopher Faulet5294ec02021-04-12 12:24:47 +02008521
8522 alloc_error:
8523 task_destroy(task);
8524 hlua_ctx_destroy(hlua);
8525 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
8526 return 0; /* Never reached */
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008527}
8528
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008529/* Wrapper called by HAProxy to execute an LUA converter. This wrapper
8530 * doesn't allow "yield" functions because the HAProxy engine cannot
8531 * resume converters.
8532 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02008533static int hlua_sample_conv_wrapper(const struct arg *arg_p, struct sample *smp, void *private)
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008534{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02008535 struct hlua_function *fcn = private;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02008536 struct stream *stream = smp->strm;
Thierry Fournierfd107a22016-02-19 19:57:23 +01008537 const char *error;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008538
Willy Tarreaube508f12016-03-10 11:47:01 +01008539 if (!stream)
8540 return 0;
8541
Willy Tarreau87b09662015-04-03 00:22:06 +02008542 /* In the execution wrappers linked with a stream, the
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01008543 * Lua context can be not initialized. This behavior
8544 * permits to save performances because a systematic
8545 * Lua initialization cause 5% performances loss.
8546 */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008547 if (!stream->hlua) {
Christopher Faulet1e8433f2021-03-24 15:03:01 +01008548 struct hlua *hlua;
8549
8550 hlua = pool_alloc(pool_head_hlua);
8551 if (!hlua) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008552 SEND_ERR(stream->be, "Lua converter '%s': can't initialize Lua context.\n", fcn->name);
8553 return 0;
8554 }
Christopher Faulet1e8433f2021-03-24 15:03:01 +01008555 HLUA_INIT(hlua);
8556 stream->hlua = hlua;
Thierry Fournierc7492592020-11-28 23:57:24 +01008557 if (!hlua_ctx_init(stream->hlua, fcn_ref_to_stack_id(fcn), stream->task, 0)) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008558 SEND_ERR(stream->be, "Lua converter '%s': can't initialize Lua context.\n", fcn->name);
8559 return 0;
8560 }
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01008561 }
8562
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008563 /* If it is the first run, initialize the data for the call. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008564 if (!HLUA_IS_RUNNING(stream->hlua)) {
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008565
8566 /* The following Lua calls can fail. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008567 if (!SET_SAFE_LJMP(stream->hlua)) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008568 if (lua_type(stream->hlua->T, -1) == LUA_TSTRING)
8569 error = lua_tostring(stream->hlua->T, -1);
Thierry Fournierfd107a22016-02-19 19:57:23 +01008570 else
8571 error = "critical error";
8572 SEND_ERR(stream->be, "Lua converter '%s': %s.\n", fcn->name, error);
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008573 return 0;
8574 }
8575
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008576 /* Check stack available size. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008577 if (!lua_checkstack(stream->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008578 SEND_ERR(stream->be, "Lua converter '%s': full stack.\n", fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008579 RESET_SAFE_LJMP(stream->hlua);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008580 return 0;
8581 }
8582
8583 /* Restore the function in the stack. */
Thierry Fournierc7492592020-11-28 23:57:24 +01008584 lua_rawgeti(stream->hlua->T, LUA_REGISTRYINDEX, fcn->function_ref[stream->hlua->state_id]);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008585
8586 /* convert input sample and pust-it in the stack. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008587 if (!lua_checkstack(stream->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008588 SEND_ERR(stream->be, "Lua converter '%s': full stack.\n", fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008589 RESET_SAFE_LJMP(stream->hlua);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008590 return 0;
8591 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008592 hlua_smp2lua(stream->hlua->T, smp);
8593 stream->hlua->nargs = 1;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008594
8595 /* push keywords in the stack. */
8596 if (arg_p) {
8597 for (; arg_p->type != ARGT_STOP; arg_p++) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008598 if (!lua_checkstack(stream->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008599 SEND_ERR(stream->be, "Lua converter '%s': full stack.\n", fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008600 RESET_SAFE_LJMP(stream->hlua);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008601 return 0;
8602 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008603 hlua_arg2lua(stream->hlua->T, arg_p);
8604 stream->hlua->nargs++;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008605 }
8606 }
8607
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008608 /* We must initialize the execution timeouts. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008609 stream->hlua->max_time = hlua_timeout_session;
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008610
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008611 /* At this point the execution is safe. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008612 RESET_SAFE_LJMP(stream->hlua);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008613 }
8614
8615 /* Execute the function. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008616 switch (hlua_ctx_resume(stream->hlua, 0)) {
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008617 /* finished. */
8618 case HLUA_E_OK:
Thierry FOURNIERfd80df12017-05-12 16:32:20 +02008619 /* If the stack is empty, the function fails. */
8620 if (lua_gettop(stream->hlua->T) <= 0)
8621 return 0;
8622
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008623 /* Convert the returned value in sample. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008624 hlua_lua2smp(stream->hlua->T, -1, smp);
8625 lua_pop(stream->hlua->T, 1);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008626 return 1;
8627
8628 /* yield. */
8629 case HLUA_E_AGAIN:
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008630 SEND_ERR(stream->be, "Lua converter '%s': cannot use yielded functions.\n", fcn->name);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008631 return 0;
8632
8633 /* finished with error. */
8634 case HLUA_E_ERRMSG:
8635 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008636 SEND_ERR(stream->be, "Lua converter '%s': %s.\n",
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008637 fcn->name, lua_tostring(stream->hlua->T, -1));
8638 lua_pop(stream->hlua->T, 1);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008639 return 0;
8640
Thierry Fournierd5b073c2018-05-21 19:42:47 +02008641 case HLUA_E_ETMOUT:
8642 SEND_ERR(stream->be, "Lua converter '%s': execution timeout.\n", fcn->name);
8643 return 0;
8644
8645 case HLUA_E_NOMEM:
8646 SEND_ERR(stream->be, "Lua converter '%s': out of memory error.\n", fcn->name);
8647 return 0;
8648
8649 case HLUA_E_YIELD:
8650 SEND_ERR(stream->be, "Lua converter '%s': yield functions like core.tcp() or core.sleep() are not allowed.\n", fcn->name);
8651 return 0;
8652
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008653 case HLUA_E_ERR:
8654 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008655 SEND_ERR(stream->be, "Lua converter '%s' returns an unknown error.\n", fcn->name);
Tim Duesterhus588b3142020-05-29 14:35:51 +02008656 /* fall through */
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008657
8658 default:
8659 return 0;
8660 }
8661}
8662
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008663/* Wrapper called by HAProxy to execute a sample-fetch. this wrapper
8664 * doesn't allow "yield" functions because the HAProxy engine cannot
Willy Tarreaube508f12016-03-10 11:47:01 +01008665 * resume sample-fetches. This function will be called by the sample
8666 * fetch engine to call lua-based fetch operations.
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008667 */
Thierry FOURNIER0786d052015-05-11 15:42:45 +02008668static int hlua_sample_fetch_wrapper(const struct arg *arg_p, struct sample *smp,
8669 const char *kw, void *private)
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008670{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02008671 struct hlua_function *fcn = private;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02008672 struct stream *stream = smp->strm;
Thierry Fournierfd107a22016-02-19 19:57:23 +01008673 const char *error;
Christopher Faulet8c9e6bb2021-08-06 16:29:41 +02008674 unsigned int hflags = HLUA_TXN_NOTERM | HLUA_TXN_SMP_CTX;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008675
Willy Tarreaube508f12016-03-10 11:47:01 +01008676 if (!stream)
8677 return 0;
Christopher Fauletafd8f102018-11-08 11:34:21 +01008678
Willy Tarreau87b09662015-04-03 00:22:06 +02008679 /* In the execution wrappers linked with a stream, the
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01008680 * Lua context can be not initialized. This behavior
8681 * permits to save performances because a systematic
8682 * Lua initialization cause 5% performances loss.
8683 */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008684 if (!stream->hlua) {
Christopher Faulet1e8433f2021-03-24 15:03:01 +01008685 struct hlua *hlua;
8686
8687 hlua = pool_alloc(pool_head_hlua);
8688 if (!hlua) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008689 SEND_ERR(stream->be, "Lua sample-fetch '%s': can't initialize Lua context.\n", fcn->name);
8690 return 0;
8691 }
Christopher Faulet1e8433f2021-03-24 15:03:01 +01008692 hlua->T = NULL;
8693 stream->hlua = hlua;
Thierry Fournierc7492592020-11-28 23:57:24 +01008694 if (!hlua_ctx_init(stream->hlua, fcn_ref_to_stack_id(fcn), stream->task, 0)) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008695 SEND_ERR(stream->be, "Lua sample-fetch '%s': can't initialize Lua context.\n", fcn->name);
8696 return 0;
8697 }
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01008698 }
8699
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008700 /* If it is the first run, initialize the data for the call. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008701 if (!HLUA_IS_RUNNING(stream->hlua)) {
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008702
8703 /* The following Lua calls can fail. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008704 if (!SET_SAFE_LJMP(stream->hlua)) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008705 if (lua_type(stream->hlua->T, -1) == LUA_TSTRING)
8706 error = lua_tostring(stream->hlua->T, -1);
Thierry Fournierfd107a22016-02-19 19:57:23 +01008707 else
8708 error = "critical error";
8709 SEND_ERR(smp->px, "Lua sample-fetch '%s': %s.\n", fcn->name, error);
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008710 return 0;
8711 }
8712
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008713 /* Check stack available size. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008714 if (!lua_checkstack(stream->hlua->T, 2)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008715 SEND_ERR(smp->px, "Lua sample-fetch '%s': full stack.\n", fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008716 RESET_SAFE_LJMP(stream->hlua);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008717 return 0;
8718 }
8719
8720 /* Restore the function in the stack. */
Thierry Fournierc7492592020-11-28 23:57:24 +01008721 lua_rawgeti(stream->hlua->T, LUA_REGISTRYINDEX, fcn->function_ref[stream->hlua->state_id]);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008722
8723 /* push arguments in the stack. */
Christopher Fauletbfab2dd2019-07-26 15:09:53 +02008724 if (!hlua_txn_new(stream->hlua->T, stream, smp->px, smp->opt & SMP_OPT_DIR, hflags)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008725 SEND_ERR(smp->px, "Lua sample-fetch '%s': full stack.\n", fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008726 RESET_SAFE_LJMP(stream->hlua);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008727 return 0;
8728 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008729 stream->hlua->nargs = 1;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008730
8731 /* push keywords in the stack. */
8732 for (; arg_p && arg_p->type != ARGT_STOP; arg_p++) {
8733 /* Check stack available size. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008734 if (!lua_checkstack(stream->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008735 SEND_ERR(smp->px, "Lua sample-fetch '%s': full stack.\n", fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008736 RESET_SAFE_LJMP(stream->hlua);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008737 return 0;
8738 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008739 hlua_arg2lua(stream->hlua->T, arg_p);
8740 stream->hlua->nargs++;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008741 }
8742
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008743 /* We must initialize the execution timeouts. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008744 stream->hlua->max_time = hlua_timeout_session;
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008745
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008746 /* At this point the execution is safe. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008747 RESET_SAFE_LJMP(stream->hlua);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008748 }
8749
8750 /* Execute the function. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008751 switch (hlua_ctx_resume(stream->hlua, 0)) {
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008752 /* finished. */
8753 case HLUA_E_OK:
Thierry FOURNIERfd80df12017-05-12 16:32:20 +02008754 /* If the stack is empty, the function fails. */
8755 if (lua_gettop(stream->hlua->T) <= 0)
8756 return 0;
8757
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008758 /* Convert the returned value in sample. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008759 hlua_lua2smp(stream->hlua->T, -1, smp);
8760 lua_pop(stream->hlua->T, 1);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008761
8762 /* Set the end of execution flag. */
8763 smp->flags &= ~SMP_F_MAY_CHANGE;
8764 return 1;
8765
8766 /* yield. */
8767 case HLUA_E_AGAIN:
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008768 SEND_ERR(smp->px, "Lua sample-fetch '%s': cannot use yielded functions.\n", fcn->name);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008769 return 0;
8770
8771 /* finished with error. */
8772 case HLUA_E_ERRMSG:
8773 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008774 SEND_ERR(smp->px, "Lua sample-fetch '%s': %s.\n",
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008775 fcn->name, lua_tostring(stream->hlua->T, -1));
8776 lua_pop(stream->hlua->T, 1);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008777 return 0;
8778
Thierry Fournierd5b073c2018-05-21 19:42:47 +02008779 case HLUA_E_ETMOUT:
Thierry Fournierd5b073c2018-05-21 19:42:47 +02008780 SEND_ERR(smp->px, "Lua sample-fetch '%s': execution timeout.\n", fcn->name);
8781 return 0;
8782
8783 case HLUA_E_NOMEM:
Thierry Fournierd5b073c2018-05-21 19:42:47 +02008784 SEND_ERR(smp->px, "Lua sample-fetch '%s': out of memory error.\n", fcn->name);
8785 return 0;
8786
8787 case HLUA_E_YIELD:
Thierry Fournierd5b073c2018-05-21 19:42:47 +02008788 SEND_ERR(smp->px, "Lua sample-fetch '%s': yield not allowed.\n", fcn->name);
8789 return 0;
8790
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008791 case HLUA_E_ERR:
8792 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008793 SEND_ERR(smp->px, "Lua sample-fetch '%s' returns an unknown error.\n", fcn->name);
Tim Duesterhus588b3142020-05-29 14:35:51 +02008794 /* fall through */
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008795
8796 default:
8797 return 0;
8798 }
8799}
8800
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008801/* This function is an LUA binding used for registering
8802 * "sample-conv" functions. It expects a converter name used
8803 * in the haproxy configuration file, and an LUA function.
8804 */
8805__LJMP static int hlua_register_converters(lua_State *L)
8806{
8807 struct sample_conv_kw_list *sck;
8808 const char *name;
8809 int ref;
8810 int len;
Christopher Fauletaa224302021-04-12 14:08:21 +02008811 struct hlua_function *fcn = NULL;
Thierry Fournierf67442e2020-11-28 20:41:07 +01008812 struct sample_conv *sc;
8813 struct buffer *trash;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008814
8815 MAY_LJMP(check_args(L, 2, "register_converters"));
8816
8817 /* First argument : converter name. */
8818 name = MAY_LJMP(luaL_checkstring(L, 1));
8819
8820 /* Second argument : lua function. */
8821 ref = MAY_LJMP(hlua_checkfunction(L, 2));
8822
Thierry Fournierf67442e2020-11-28 20:41:07 +01008823 /* Check if the converter is already registered */
8824 trash = get_trash_chunk();
8825 chunk_printf(trash, "lua.%s", name);
8826 sc = find_sample_conv(trash->area, trash->data);
8827 if (sc != NULL) {
Thierry Fournier59f11be2020-11-29 00:37:41 +01008828 fcn = sc->private;
8829 if (fcn->function_ref[hlua_state_id] != -1) {
8830 ha_warning("Trying to register converter 'lua.%s' more than once. "
8831 "This will become a hard error in version 2.5.\n", name);
8832 }
8833 fcn->function_ref[hlua_state_id] = ref;
8834 return 0;
Thierry Fournierf67442e2020-11-28 20:41:07 +01008835 }
8836
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008837 /* Allocate and fill the sample fetch keyword struct. */
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02008838 sck = calloc(1, sizeof(*sck) + sizeof(struct sample_conv) * 2);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008839 if (!sck)
Christopher Fauletaa224302021-04-12 14:08:21 +02008840 goto alloc_error;
Thierry Fournier62a22aa2020-11-28 21:06:35 +01008841 fcn = new_hlua_function();
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008842 if (!fcn)
Christopher Fauletaa224302021-04-12 14:08:21 +02008843 goto alloc_error;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008844
8845 /* Fill fcn. */
8846 fcn->name = strdup(name);
8847 if (!fcn->name)
Christopher Fauletaa224302021-04-12 14:08:21 +02008848 goto alloc_error;
Thierry Fournierc7492592020-11-28 23:57:24 +01008849 fcn->function_ref[hlua_state_id] = ref;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008850
8851 /* List head */
8852 sck->list.n = sck->list.p = NULL;
8853
8854 /* converter keyword. */
8855 len = strlen("lua.") + strlen(name) + 1;
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02008856 sck->kw[0].kw = calloc(1, len);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008857 if (!sck->kw[0].kw)
Christopher Fauletaa224302021-04-12 14:08:21 +02008858 goto alloc_error;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008859
8860 snprintf((char *)sck->kw[0].kw, len, "lua.%s", name);
8861 sck->kw[0].process = hlua_sample_conv_wrapper;
David Carlier0c437f42016-04-27 16:21:56 +01008862 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 +01008863 sck->kw[0].val_args = NULL;
8864 sck->kw[0].in_type = SMP_T_STR;
8865 sck->kw[0].out_type = SMP_T_STR;
8866 sck->kw[0].private = fcn;
8867
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008868 /* Register this new converter */
8869 sample_register_convs(sck);
8870
8871 return 0;
Christopher Fauletaa224302021-04-12 14:08:21 +02008872
8873 alloc_error:
8874 release_hlua_function(fcn);
8875 ha_free(&sck);
8876 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
8877 return 0; /* Never reached */
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008878}
8879
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08008880/* This function is an LUA binding used for registering
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008881 * "sample-fetch" functions. It expects a converter name used
8882 * in the haproxy configuration file, and an LUA function.
8883 */
8884__LJMP static int hlua_register_fetches(lua_State *L)
8885{
8886 const char *name;
8887 int ref;
8888 int len;
8889 struct sample_fetch_kw_list *sfk;
Christopher Faulet2567f182021-04-12 14:11:50 +02008890 struct hlua_function *fcn = NULL;
Thierry Fournierf67442e2020-11-28 20:41:07 +01008891 struct sample_fetch *sf;
8892 struct buffer *trash;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008893
8894 MAY_LJMP(check_args(L, 2, "register_fetches"));
8895
8896 /* First argument : sample-fetch name. */
8897 name = MAY_LJMP(luaL_checkstring(L, 1));
8898
8899 /* Second argument : lua function. */
8900 ref = MAY_LJMP(hlua_checkfunction(L, 2));
8901
Thierry Fournierf67442e2020-11-28 20:41:07 +01008902 /* Check if the sample-fetch is already registered */
8903 trash = get_trash_chunk();
8904 chunk_printf(trash, "lua.%s", name);
8905 sf = find_sample_fetch(trash->area, trash->data);
8906 if (sf != NULL) {
Thierry Fournier59f11be2020-11-29 00:37:41 +01008907 fcn = sf->private;
8908 if (fcn->function_ref[hlua_state_id] != -1) {
8909 ha_warning("Trying to register sample-fetch 'lua.%s' more than once. "
8910 "This will become a hard error in version 2.5.\n", name);
8911 }
8912 fcn->function_ref[hlua_state_id] = ref;
8913 return 0;
Thierry Fournierf67442e2020-11-28 20:41:07 +01008914 }
8915
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008916 /* Allocate and fill the sample fetch keyword struct. */
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02008917 sfk = calloc(1, sizeof(*sfk) + sizeof(struct sample_fetch) * 2);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008918 if (!sfk)
Christopher Faulet2567f182021-04-12 14:11:50 +02008919 goto alloc_error;
Thierry Fournier62a22aa2020-11-28 21:06:35 +01008920 fcn = new_hlua_function();
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008921 if (!fcn)
Christopher Faulet2567f182021-04-12 14:11:50 +02008922 goto alloc_error;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008923
8924 /* Fill fcn. */
8925 fcn->name = strdup(name);
8926 if (!fcn->name)
Christopher Faulet2567f182021-04-12 14:11:50 +02008927 goto alloc_error;
Thierry Fournierc7492592020-11-28 23:57:24 +01008928 fcn->function_ref[hlua_state_id] = ref;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008929
8930 /* List head */
8931 sfk->list.n = sfk->list.p = NULL;
8932
8933 /* sample-fetch keyword. */
8934 len = strlen("lua.") + strlen(name) + 1;
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02008935 sfk->kw[0].kw = calloc(1, len);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008936 if (!sfk->kw[0].kw)
Christopher Faulet2567f182021-04-12 14:11:50 +02008937 goto alloc_error;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008938
8939 snprintf((char *)sfk->kw[0].kw, len, "lua.%s", name);
8940 sfk->kw[0].process = hlua_sample_fetch_wrapper;
David Carlier0c437f42016-04-27 16:21:56 +01008941 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 +01008942 sfk->kw[0].val_args = NULL;
8943 sfk->kw[0].out_type = SMP_T_STR;
8944 sfk->kw[0].use = SMP_USE_HTTP_ANY;
8945 sfk->kw[0].val = 0;
8946 sfk->kw[0].private = fcn;
8947
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008948 /* Register this new fetch. */
8949 sample_register_fetches(sfk);
8950
8951 return 0;
Christopher Faulet2567f182021-04-12 14:11:50 +02008952
8953 alloc_error:
8954 release_hlua_function(fcn);
8955 ha_free(&sfk);
8956 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
8957 return 0; /* Never reached */
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008958}
8959
Christopher Faulet501465d2020-02-26 14:54:16 +01008960/* This function is a lua binding to set the wake_time.
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01008961 */
Christopher Faulet501465d2020-02-26 14:54:16 +01008962__LJMP static int hlua_set_wake_time(lua_State *L)
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01008963{
Thierry Fournier4234dbd2020-11-28 13:18:23 +01008964 struct hlua *hlua;
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01008965 unsigned int delay;
8966 unsigned int wakeup_ms;
8967
Thierry Fournier4234dbd2020-11-28 13:18:23 +01008968 /* Get hlua struct, or NULL if we execute from main lua state */
8969 hlua = hlua_gethlua(L);
8970 if (!hlua) {
8971 return 0;
8972 }
8973
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01008974 MAY_LJMP(check_args(L, 1, "wake_time"));
8975
8976 delay = MAY_LJMP(luaL_checkinteger(L, 1));
8977 wakeup_ms = tick_add(now_ms, delay);
8978 hlua->wake_time = wakeup_ms;
8979 return 0;
8980}
8981
Christopher Faulet7716cdf2020-01-29 11:53:30 +01008982/* This function is a wrapper to execute each LUA function declared as an action
8983 * wrapper during the initialisation period. This function may return any
8984 * ACT_RET_* value. On error ACT_RET_CONT is returned and the action is
8985 * ignored. If the lua action yields, ACT_RET_YIELD is returned. On success, the
8986 * return value is the first element on the stack.
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01008987 */
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02008988static enum act_return hlua_action(struct act_rule *rule, struct proxy *px,
Willy Tarreau658b85b2015-09-27 10:00:49 +02008989 struct session *sess, struct stream *s, int flags)
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01008990{
8991 char **arg;
Christopher Faulet8c9e6bb2021-08-06 16:29:41 +02008992 unsigned int hflags = HLUA_TXN_ACT_CTX;
Christopher Faulet7716cdf2020-01-29 11:53:30 +01008993 int dir, act_ret = ACT_RET_CONT;
Thierry Fournierfd107a22016-02-19 19:57:23 +01008994 const char *error;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02008995
8996 switch (rule->from) {
Christopher Fauletd8f0e072020-02-25 09:45:51 +01008997 case ACT_F_TCP_REQ_CNT: dir = SMP_OPT_DIR_REQ; break;
8998 case ACT_F_TCP_RES_CNT: dir = SMP_OPT_DIR_RES; break;
8999 case ACT_F_HTTP_REQ: dir = SMP_OPT_DIR_REQ; break;
9000 case ACT_F_HTTP_RES: dir = SMP_OPT_DIR_RES; break;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02009001 default:
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02009002 SEND_ERR(px, "Lua: internal error while execute action.\n");
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009003 goto end;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02009004 }
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009005
Willy Tarreau87b09662015-04-03 00:22:06 +02009006 /* In the execution wrappers linked with a stream, the
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01009007 * Lua context can be not initialized. This behavior
9008 * permits to save performances because a systematic
9009 * Lua initialization cause 5% performances loss.
9010 */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01009011 if (!s->hlua) {
Christopher Faulet1e8433f2021-03-24 15:03:01 +01009012 struct hlua *hlua;
9013
9014 hlua = pool_alloc(pool_head_hlua);
9015 if (!hlua) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01009016 SEND_ERR(px, "Lua action '%s': can't initialize Lua context.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009017 rule->arg.hlua_rule->fcn->name);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009018 goto end;
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01009019 }
Christopher Faulet1e8433f2021-03-24 15:03:01 +01009020 HLUA_INIT(hlua);
9021 s->hlua = hlua;
Thierry Fournierc7492592020-11-28 23:57:24 +01009022 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 +01009023 SEND_ERR(px, "Lua action '%s': can't initialize Lua context.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009024 rule->arg.hlua_rule->fcn->name);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009025 goto end;
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01009026 }
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01009027 }
9028
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009029 /* If it is the first run, initialize the data for the call. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01009030 if (!HLUA_IS_RUNNING(s->hlua)) {
Thierry FOURNIERbabae282015-09-17 11:36:37 +02009031
9032 /* The following Lua calls can fail. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009033 if (!SET_SAFE_LJMP(s->hlua)) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01009034 if (lua_type(s->hlua->T, -1) == LUA_TSTRING)
9035 error = lua_tostring(s->hlua->T, -1);
Thierry Fournierfd107a22016-02-19 19:57:23 +01009036 else
9037 error = "critical error";
9038 SEND_ERR(px, "Lua function '%s': %s.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009039 rule->arg.hlua_rule->fcn->name, error);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009040 goto end;
Thierry FOURNIERbabae282015-09-17 11:36:37 +02009041 }
9042
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009043 /* Check stack available size. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01009044 if (!lua_checkstack(s->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02009045 SEND_ERR(px, "Lua function '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009046 rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009047 RESET_SAFE_LJMP(s->hlua);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009048 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009049 }
9050
9051 /* Restore the function in the stack. */
Thierry Fournierc7492592020-11-28 23:57:24 +01009052 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 +01009053
Willy Tarreau87b09662015-04-03 00:22:06 +02009054 /* Create and and push object stream in the stack. */
Christopher Fauletbfab2dd2019-07-26 15:09:53 +02009055 if (!hlua_txn_new(s->hlua->T, s, px, dir, hflags)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02009056 SEND_ERR(px, "Lua function '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009057 rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009058 RESET_SAFE_LJMP(s->hlua);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009059 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009060 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01009061 s->hlua->nargs = 1;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009062
9063 /* push keywords in the stack. */
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02009064 for (arg = rule->arg.hlua_rule->args; arg && *arg; arg++) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01009065 if (!lua_checkstack(s->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02009066 SEND_ERR(px, "Lua function '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009067 rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009068 RESET_SAFE_LJMP(s->hlua);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009069 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009070 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01009071 lua_pushstring(s->hlua->T, *arg);
9072 s->hlua->nargs++;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009073 }
9074
Thierry FOURNIERbabae282015-09-17 11:36:37 +02009075 /* Now the execution is safe. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009076 RESET_SAFE_LJMP(s->hlua);
Thierry FOURNIERbabae282015-09-17 11:36:37 +02009077
Thierry FOURNIERbd413492015-03-03 16:52:26 +01009078 /* We must initialize the execution timeouts. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01009079 s->hlua->max_time = hlua_timeout_session;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009080 }
9081
9082 /* Execute the function. */
Christopher Faulet105ba6c2019-12-18 14:41:51 +01009083 switch (hlua_ctx_resume(s->hlua, !(flags & ACT_OPT_FINAL))) {
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009084 /* finished. */
9085 case HLUA_E_OK:
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009086 /* Catch the return value */
9087 if (lua_gettop(s->hlua->T) > 0)
9088 act_ret = lua_tointeger(s->hlua->T, -1);
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009089
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01009090 /* Set timeout in the required channel. */
Christopher Faulet498c4832020-07-28 11:59:58 +02009091 if (act_ret == ACT_RET_YIELD) {
9092 if (flags & ACT_OPT_FINAL)
9093 goto err_yield;
9094
Christopher Faulet8f587ea2020-07-28 12:01:55 +02009095 if (dir == SMP_OPT_DIR_REQ)
9096 s->req.analyse_exp = tick_first((tick_is_expired(s->req.analyse_exp, now_ms) ? 0 : s->req.analyse_exp),
9097 s->hlua->wake_time);
9098 else
9099 s->res.analyse_exp = tick_first((tick_is_expired(s->res.analyse_exp, now_ms) ? 0 : s->res.analyse_exp),
9100 s->hlua->wake_time);
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01009101 }
9102 goto end;
9103
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009104 /* yield. */
9105 case HLUA_E_AGAIN:
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01009106 /* Set timeout in the required channel. */
Christopher Faulet8f587ea2020-07-28 12:01:55 +02009107 if (dir == SMP_OPT_DIR_REQ)
9108 s->req.analyse_exp = tick_first((tick_is_expired(s->req.analyse_exp, now_ms) ? 0 : s->req.analyse_exp),
9109 s->hlua->wake_time);
9110 else
9111 s->res.analyse_exp = tick_first((tick_is_expired(s->res.analyse_exp, now_ms) ? 0 : s->res.analyse_exp),
9112 s->hlua->wake_time);
9113
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009114 /* Some actions can be wake up when a "write" event
9115 * is detected on a response channel. This is useful
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08009116 * only for actions targeted on the requests.
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009117 */
Christopher Faulet51fa3582019-07-26 14:54:52 +02009118 if (HLUA_IS_WAKERESWR(s->hlua))
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01009119 s->res.flags |= CF_WAKE_WRITE;
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01009120 if (HLUA_IS_WAKEREQWR(s->hlua))
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01009121 s->req.flags |= CF_WAKE_WRITE;
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009122 act_ret = ACT_RET_YIELD;
9123 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009124
9125 /* finished with error. */
9126 case HLUA_E_ERRMSG:
9127 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02009128 SEND_ERR(px, "Lua function '%s': %s.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009129 rule->arg.hlua_rule->fcn->name, lua_tostring(s->hlua->T, -1));
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01009130 lua_pop(s->hlua->T, 1);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009131 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009132
Thierry Fournierd5b073c2018-05-21 19:42:47 +02009133 case HLUA_E_ETMOUT:
Thierry Fournierad5345f2020-11-29 02:05:57 +01009134 SEND_ERR(px, "Lua function '%s': execution timeout.\n", rule->arg.hlua_rule->fcn->name);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009135 goto end;
Thierry Fournierd5b073c2018-05-21 19:42:47 +02009136
9137 case HLUA_E_NOMEM:
Thierry Fournierad5345f2020-11-29 02:05:57 +01009138 SEND_ERR(px, "Lua function '%s': out of memory error.\n", rule->arg.hlua_rule->fcn->name);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009139 goto end;
Thierry Fournierd5b073c2018-05-21 19:42:47 +02009140
9141 case HLUA_E_YIELD:
Christopher Faulet498c4832020-07-28 11:59:58 +02009142 err_yield:
9143 act_ret = ACT_RET_CONT;
Thierry Fournierd5b073c2018-05-21 19:42:47 +02009144 SEND_ERR(px, "Lua function '%s': aborting Lua processing on expired timeout.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009145 rule->arg.hlua_rule->fcn->name);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009146 goto end;
Thierry Fournierd5b073c2018-05-21 19:42:47 +02009147
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009148 case HLUA_E_ERR:
9149 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02009150 SEND_ERR(px, "Lua function '%s' return an unknown error.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009151 rule->arg.hlua_rule->fcn->name);
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009152
9153 default:
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009154 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009155 }
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009156
9157 end:
Christopher Faulet2361fd92020-07-30 10:40:58 +02009158 if (act_ret != ACT_RET_YIELD && s->hlua)
Christopher Faulet8f587ea2020-07-28 12:01:55 +02009159 s->hlua->wake_time = TICK_ETERNITY;
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009160 return act_ret;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009161}
9162
Willy Tarreau144f84a2021-03-02 16:09:26 +01009163struct task *hlua_applet_wakeup(struct task *t, void *context, unsigned int state)
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009164{
Olivier Houchard9f6af332018-05-25 14:04:04 +02009165 struct appctx *ctx = context;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009166
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009167 appctx_wakeup(ctx);
Willy Tarreaud9587412017-08-23 16:07:33 +02009168 t->expire = TICK_ETERNITY;
Willy Tarreaud1aa41f2017-07-21 16:41:56 +02009169 return t;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009170}
9171
Christopher Faulet4aa1d282022-01-13 16:01:35 +01009172static int hlua_applet_tcp_init(struct appctx *ctx)
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009173{
Christopher Faulet908628c2022-03-25 16:43:49 +01009174 struct conn_stream *cs = ctx->owner;
9175 struct stream *strm = __cs_strm(cs);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009176 struct hlua *hlua;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009177 struct task *task;
9178 char **arg;
Thierry Fournierfd107a22016-02-19 19:57:23 +01009179 const char *error;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009180
Willy Tarreaubafbe012017-11-24 17:34:44 +01009181 hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009182 if (!hlua) {
Christopher Faulet4aa1d282022-01-13 16:01:35 +01009183 SEND_ERR(strm->be, "Lua applet tcp '%s': out of memory.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009184 ctx->rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009185 return 0;
9186 }
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009187 HLUA_INIT(hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009188 ctx->ctx.hlua_apptcp.hlua = hlua;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009189 ctx->ctx.hlua_apptcp.flags = 0;
9190
9191 /* Create task used by signal to wakeup applets. */
Willy Tarreaubeeabf52021-10-01 18:23:30 +02009192 task = task_new_here();
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009193 if (!task) {
Christopher Faulet4aa1d282022-01-13 16:01:35 +01009194 SEND_ERR(strm->be, "Lua applet tcp '%s': out of memory.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009195 ctx->rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009196 return 0;
9197 }
9198 task->nice = 0;
9199 task->context = ctx;
9200 task->process = hlua_applet_wakeup;
9201 ctx->ctx.hlua_apptcp.task = task;
9202
9203 /* In the execution wrappers linked with a stream, the
9204 * Lua context can be not initialized. This behavior
9205 * permits to save performances because a systematic
9206 * Lua initialization cause 5% performances loss.
9207 */
Thierry Fournierc7492592020-11-28 23:57:24 +01009208 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 +01009209 SEND_ERR(strm->be, "Lua applet tcp '%s': can't initialize Lua context.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009210 ctx->rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009211 return 0;
9212 }
9213
9214 /* Set timeout according with the applet configuration. */
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02009215 hlua->max_time = ctx->applet->timeout;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009216
9217 /* The following Lua calls can fail. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009218 if (!SET_SAFE_LJMP(hlua)) {
Thierry Fournierfd107a22016-02-19 19:57:23 +01009219 if (lua_type(hlua->T, -1) == LUA_TSTRING)
9220 error = lua_tostring(hlua->T, -1);
9221 else
9222 error = "critical error";
Christopher Faulet4aa1d282022-01-13 16:01:35 +01009223 SEND_ERR(strm->be, "Lua applet tcp '%s': %s.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009224 ctx->rule->arg.hlua_rule->fcn->name, error);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009225 return 0;
9226 }
9227
9228 /* Check stack available size. */
9229 if (!lua_checkstack(hlua->T, 1)) {
Christopher Faulet4aa1d282022-01-13 16:01:35 +01009230 SEND_ERR(strm->be, "Lua applet tcp '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009231 ctx->rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009232 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009233 return 0;
9234 }
9235
9236 /* Restore the function in the stack. */
Thierry Fournierc7492592020-11-28 23:57:24 +01009237 lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, ctx->rule->arg.hlua_rule->fcn->function_ref[hlua->state_id]);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009238
9239 /* Create and and push object stream in the stack. */
9240 if (!hlua_applet_tcp_new(hlua->T, ctx)) {
Christopher Faulet4aa1d282022-01-13 16:01:35 +01009241 SEND_ERR(strm->be, "Lua applet tcp '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009242 ctx->rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009243 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009244 return 0;
9245 }
9246 hlua->nargs = 1;
9247
9248 /* push keywords in the stack. */
9249 for (arg = ctx->rule->arg.hlua_rule->args; arg && *arg; arg++) {
9250 if (!lua_checkstack(hlua->T, 1)) {
Christopher Faulet4aa1d282022-01-13 16:01:35 +01009251 SEND_ERR(strm->be, "Lua applet tcp '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009252 ctx->rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009253 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009254 return 0;
9255 }
9256 lua_pushstring(hlua->T, *arg);
9257 hlua->nargs++;
9258 }
9259
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009260 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009261
9262 /* Wakeup the applet ASAP. */
Christopher Fauleta0bdec32022-04-04 07:51:21 +02009263 cs_cant_get(cs);
9264 cs_rx_endp_more(cs);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009265
9266 return 1;
9267}
9268
Willy Tarreau60409db2019-08-21 14:14:50 +02009269void hlua_applet_tcp_fct(struct appctx *ctx)
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009270{
Christopher Faulet908628c2022-03-25 16:43:49 +01009271 struct conn_stream *cs = ctx->owner;
9272 struct stream *strm = __cs_strm(cs);
9273 struct channel *res = cs_ic(cs);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009274 struct act_rule *rule = ctx->rule;
9275 struct proxy *px = strm->be;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009276 struct hlua *hlua = ctx->ctx.hlua_apptcp.hlua;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009277
9278 /* The applet execution is already done. */
Olivier Houchard594c8c52018-08-28 14:41:31 +02009279 if (ctx->ctx.hlua_apptcp.flags & APPLET_DONE) {
9280 /* eat the whole request */
Christopher Faulet908628c2022-03-25 16:43:49 +01009281 co_skip(cs_oc(cs), co_data(cs_oc(cs)));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009282 return;
Olivier Houchard594c8c52018-08-28 14:41:31 +02009283 }
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009284
9285 /* If the stream is disconnect or closed, ldo nothing. */
Christopher Faulet62e75742022-03-31 09:16:34 +02009286 if (unlikely(cs->state == CS_ST_DIS || cs->state == CS_ST_CLO))
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009287 return;
9288
9289 /* Execute the function. */
9290 switch (hlua_ctx_resume(hlua, 1)) {
9291 /* finished. */
9292 case HLUA_E_OK:
9293 ctx->ctx.hlua_apptcp.flags |= APPLET_DONE;
9294
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009295 /* eat the whole request */
Christopher Faulet908628c2022-03-25 16:43:49 +01009296 co_skip(cs_oc(cs), co_data(cs_oc(cs)));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009297 res->flags |= CF_READ_NULL;
Christopher Fauletda098e62022-03-31 17:44:45 +02009298 cs_shutr(cs);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009299 return;
9300
9301 /* yield. */
9302 case HLUA_E_AGAIN:
Thierry Fournier0164f202016-02-20 17:47:43 +01009303 if (hlua->wake_time != TICK_ETERNITY)
9304 task_schedule(ctx->ctx.hlua_apptcp.task, hlua->wake_time);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009305 return;
9306
9307 /* finished with error. */
9308 case HLUA_E_ERRMSG:
9309 /* Display log. */
9310 SEND_ERR(px, "Lua applet tcp '%s': %s.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009311 rule->arg.hlua_rule->fcn->name, lua_tostring(hlua->T, -1));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009312 lua_pop(hlua->T, 1);
9313 goto error;
9314
Thierry Fournierd5b073c2018-05-21 19:42:47 +02009315 case HLUA_E_ETMOUT:
9316 SEND_ERR(px, "Lua applet tcp '%s': execution timeout.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009317 rule->arg.hlua_rule->fcn->name);
Thierry Fournierd5b073c2018-05-21 19:42:47 +02009318 goto error;
9319
9320 case HLUA_E_NOMEM:
9321 SEND_ERR(px, "Lua applet tcp '%s': out of memory error.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009322 rule->arg.hlua_rule->fcn->name);
Thierry Fournierd5b073c2018-05-21 19:42:47 +02009323 goto error;
9324
9325 case HLUA_E_YIELD: /* unexpected */
9326 SEND_ERR(px, "Lua applet tcp '%s': yield not allowed.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009327 rule->arg.hlua_rule->fcn->name);
Thierry Fournierd5b073c2018-05-21 19:42:47 +02009328 goto error;
9329
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009330 case HLUA_E_ERR:
9331 /* Display log. */
9332 SEND_ERR(px, "Lua applet tcp '%s' return an unknown error.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009333 rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009334 goto error;
9335
9336 default:
9337 goto error;
9338 }
9339
9340error:
9341
9342 /* For all other cases, just close the stream. */
Christopher Fauletda098e62022-03-31 17:44:45 +02009343 cs_shutw(cs);
9344 cs_shutr(cs);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009345 ctx->ctx.hlua_apptcp.flags |= APPLET_DONE;
9346}
9347
9348static void hlua_applet_tcp_release(struct appctx *ctx)
9349{
Olivier Houchard3f795f72019-04-17 22:51:06 +02009350 task_destroy(ctx->ctx.hlua_apptcp.task);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009351 ctx->ctx.hlua_apptcp.task = NULL;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009352 hlua_ctx_destroy(ctx->ctx.hlua_apptcp.hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009353 ctx->ctx.hlua_apptcp.hlua = NULL;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009354}
9355
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009356/* The function returns 1 if the initialisation is complete, 0 if
9357 * an errors occurs and -1 if more data are required for initializing
9358 * the applet.
9359 */
Christopher Faulet4aa1d282022-01-13 16:01:35 +01009360static int hlua_applet_http_init(struct appctx *ctx)
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009361{
Christopher Faulet908628c2022-03-25 16:43:49 +01009362 struct conn_stream *cs = ctx->owner;
9363 struct stream *strm = __cs_strm(cs);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009364 struct http_txn *txn;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009365 struct hlua *hlua;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009366 char **arg;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009367 struct task *task;
Thierry Fournierfd107a22016-02-19 19:57:23 +01009368 const char *error;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009369
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009370 txn = strm->txn;
Willy Tarreaubafbe012017-11-24 17:34:44 +01009371 hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009372 if (!hlua) {
Christopher Faulet4aa1d282022-01-13 16:01:35 +01009373 SEND_ERR(strm->be, "Lua applet http '%s': out of memory.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009374 ctx->rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009375 return 0;
9376 }
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009377 HLUA_INIT(hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009378 ctx->ctx.hlua_apphttp.hlua = hlua;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009379 ctx->ctx.hlua_apphttp.left_bytes = -1;
9380 ctx->ctx.hlua_apphttp.flags = 0;
9381
Thierry FOURNIERd93ea2b2015-12-20 19:14:52 +01009382 if (txn->req.flags & HTTP_MSGF_VER_11)
9383 ctx->ctx.hlua_apphttp.flags |= APPLET_HTTP11;
9384
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009385 /* Create task used by signal to wakeup applets. */
Willy Tarreaubeeabf52021-10-01 18:23:30 +02009386 task = task_new_here();
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009387 if (!task) {
Christopher Faulet4aa1d282022-01-13 16:01:35 +01009388 SEND_ERR(strm->be, "Lua applet http '%s': out of memory.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009389 ctx->rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009390 return 0;
9391 }
9392 task->nice = 0;
9393 task->context = ctx;
9394 task->process = hlua_applet_wakeup;
9395 ctx->ctx.hlua_apphttp.task = task;
9396
9397 /* In the execution wrappers linked with a stream, the
9398 * Lua context can be not initialized. This behavior
9399 * permits to save performances because a systematic
9400 * Lua initialization cause 5% performances loss.
9401 */
Thierry Fournierc7492592020-11-28 23:57:24 +01009402 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 +01009403 SEND_ERR(strm->be, "Lua applet http '%s': can't initialize Lua context.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009404 ctx->rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009405 return 0;
9406 }
9407
9408 /* Set timeout according with the applet configuration. */
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02009409 hlua->max_time = ctx->applet->timeout;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009410
9411 /* The following Lua calls can fail. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009412 if (!SET_SAFE_LJMP(hlua)) {
Thierry Fournierfd107a22016-02-19 19:57:23 +01009413 if (lua_type(hlua->T, -1) == LUA_TSTRING)
9414 error = lua_tostring(hlua->T, -1);
9415 else
9416 error = "critical error";
Christopher Faulet4aa1d282022-01-13 16:01:35 +01009417 SEND_ERR(strm->be, "Lua applet http '%s': %s.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009418 ctx->rule->arg.hlua_rule->fcn->name, error);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009419 return 0;
9420 }
9421
9422 /* Check stack available size. */
9423 if (!lua_checkstack(hlua->T, 1)) {
Christopher Faulet4aa1d282022-01-13 16:01:35 +01009424 SEND_ERR(strm->be, "Lua applet http '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009425 ctx->rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009426 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009427 return 0;
9428 }
9429
9430 /* Restore the function in the stack. */
Thierry Fournierc7492592020-11-28 23:57:24 +01009431 lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, ctx->rule->arg.hlua_rule->fcn->function_ref[hlua->state_id]);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009432
9433 /* Create and and push object stream in the stack. */
9434 if (!hlua_applet_http_new(hlua->T, ctx)) {
Christopher Faulet4aa1d282022-01-13 16:01:35 +01009435 SEND_ERR(strm->be, "Lua applet http '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009436 ctx->rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009437 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009438 return 0;
9439 }
9440 hlua->nargs = 1;
9441
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009442 /* push keywords in the stack. */
9443 for (arg = ctx->rule->arg.hlua_rule->args; arg && *arg; arg++) {
9444 if (!lua_checkstack(hlua->T, 1)) {
Christopher Faulet4aa1d282022-01-13 16:01:35 +01009445 SEND_ERR(strm->be, "Lua applet http '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009446 ctx->rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009447 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009448 return 0;
9449 }
9450 lua_pushstring(hlua->T, *arg);
9451 hlua->nargs++;
9452 }
9453
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009454 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009455
9456 /* Wakeup the applet when data is ready for read. */
Christopher Fauleta0bdec32022-04-04 07:51:21 +02009457 cs_cant_get(cs);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009458
9459 return 1;
9460}
9461
Willy Tarreau60409db2019-08-21 14:14:50 +02009462void hlua_applet_http_fct(struct appctx *ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009463{
Christopher Faulet908628c2022-03-25 16:43:49 +01009464 struct conn_stream *cs = ctx->owner;
9465 struct stream *strm = __cs_strm(cs);
9466 struct channel *req = cs_oc(cs);
9467 struct channel *res = cs_ic(cs);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009468 struct act_rule *rule = ctx->rule;
9469 struct proxy *px = strm->be;
9470 struct hlua *hlua = ctx->ctx.hlua_apphttp.hlua;
9471 struct htx *req_htx, *res_htx;
9472
9473 res_htx = htx_from_buf(&res->buf);
9474
9475 /* If the stream is disconnect or closed, ldo nothing. */
Christopher Faulet62e75742022-03-31 09:16:34 +02009476 if (unlikely(cs->state == CS_ST_DIS || cs->state == CS_ST_CLO))
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009477 goto out;
9478
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05009479 /* Check if the input buffer is available. */
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009480 if (!b_size(&res->buf)) {
Christopher Fauleta0bdec32022-04-04 07:51:21 +02009481 cs_rx_room_blk(cs);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009482 goto out;
9483 }
9484 /* check that the output is not closed */
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01009485 if (res->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_SHUTR))
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009486 ctx->ctx.hlua_apphttp.flags |= APPLET_DONE;
9487
9488 /* Set the currently running flag. */
9489 if (!HLUA_IS_RUNNING(hlua) &&
9490 !(ctx->ctx.hlua_apphttp.flags & APPLET_DONE)) {
Christopher Fauletbd878d22021-04-28 10:50:21 +02009491 if (!co_data(req)) {
Christopher Fauleta0bdec32022-04-04 07:51:21 +02009492 cs_cant_get(cs);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009493 goto out;
9494 }
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009495 }
9496
9497 /* Executes The applet if it is not done. */
9498 if (!(ctx->ctx.hlua_apphttp.flags & APPLET_DONE)) {
9499
9500 /* Execute the function. */
9501 switch (hlua_ctx_resume(hlua, 1)) {
9502 /* finished. */
9503 case HLUA_E_OK:
9504 ctx->ctx.hlua_apphttp.flags |= APPLET_DONE;
9505 break;
9506
9507 /* yield. */
9508 case HLUA_E_AGAIN:
9509 if (hlua->wake_time != TICK_ETERNITY)
9510 task_schedule(ctx->ctx.hlua_apphttp.task, hlua->wake_time);
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01009511 goto out;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009512
9513 /* finished with error. */
9514 case HLUA_E_ERRMSG:
9515 /* Display log. */
9516 SEND_ERR(px, "Lua applet http '%s': %s.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009517 rule->arg.hlua_rule->fcn->name, lua_tostring(hlua->T, -1));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009518 lua_pop(hlua->T, 1);
9519 goto error;
9520
9521 case HLUA_E_ETMOUT:
9522 SEND_ERR(px, "Lua applet http '%s': execution timeout.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009523 rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009524 goto error;
9525
9526 case HLUA_E_NOMEM:
9527 SEND_ERR(px, "Lua applet http '%s': out of memory error.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009528 rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009529 goto error;
9530
9531 case HLUA_E_YIELD: /* unexpected */
9532 SEND_ERR(px, "Lua applet http '%s': yield not allowed.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009533 rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009534 goto error;
9535
9536 case HLUA_E_ERR:
9537 /* Display log. */
9538 SEND_ERR(px, "Lua applet http '%s' return an unknown error.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009539 rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009540 goto error;
9541
9542 default:
9543 goto error;
9544 }
9545 }
9546
9547 if (ctx->ctx.hlua_apphttp.flags & APPLET_DONE) {
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01009548 if (ctx->ctx.hlua_apphttp.flags & APPLET_RSP_SENT)
9549 goto done;
9550
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009551 if (!(ctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT))
9552 goto error;
9553
Christopher Fauletf89af9c2022-04-07 10:07:18 +02009554 /* no more data are expected. If the response buffer is empty
9555 * for a chunked message, be sure to add something (EOT block in
9556 * this case) to have something to send. It is important to be
9557 * sure the EOM flags will be handled by the endpoint.
9558 */
9559 if (htx_is_empty(res_htx) && (strm->txn->rsp.flags & (HTTP_MSGF_XFER_LEN|HTTP_MSGF_CNT_LEN)) == HTTP_MSGF_XFER_LEN) {
9560 if (!htx_add_endof(res_htx, HTX_BLK_EOT)) {
Christopher Fauleta0bdec32022-04-04 07:51:21 +02009561 cs_rx_room_blk(cs);
Christopher Fauletf89af9c2022-04-07 10:07:18 +02009562 goto out;
9563 }
9564 channel_add_input(res, 1);
9565 }
9566
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01009567 res_htx->flags |= HTX_FL_EOM;
Christopher Faulet908628c2022-03-25 16:43:49 +01009568 cs->endp->flags |= CS_EP_EOI;
Christopher Fauletd8d27082022-03-07 15:50:54 +01009569 res->flags |= CF_EOI;
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01009570 strm->txn->status = ctx->ctx.hlua_apphttp.status;
9571 ctx->ctx.hlua_apphttp.flags |= APPLET_RSP_SENT;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009572 }
9573
9574 done:
9575 if (ctx->ctx.hlua_apphttp.flags & APPLET_DONE) {
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01009576 if (!(res->flags & CF_SHUTR)) {
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009577 res->flags |= CF_READ_NULL;
Christopher Fauletda098e62022-03-31 17:44:45 +02009578 cs_shutr(cs);
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01009579 }
9580
9581 /* eat the whole request */
9582 if (co_data(req)) {
9583 req_htx = htx_from_buf(&req->buf);
9584 co_htx_skip(req, req_htx, co_data(req));
9585 htx_to_buf(req_htx, &req->buf);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009586 }
9587 }
9588
9589 out:
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009590 htx_to_buf(res_htx, &res->buf);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009591 return;
9592
9593 error:
9594
9595 /* If we are in HTTP mode, and we are not send any
9596 * data, return a 500 server error in best effort:
9597 * if there is no room available in the buffer,
9598 * just close the connection.
9599 */
9600 if (!(ctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT)) {
Christopher Fauletf7346382019-07-17 22:02:08 +02009601 struct buffer *err = &http_err_chunks[HTTP_ERR_500];
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009602
9603 channel_erase(res);
9604 res->buf.data = b_data(err);
9605 memcpy(res->buf.area, b_head(err), b_data(err));
9606 res_htx = htx_from_buf(&res->buf);
Christopher Fauletf6cce3f2019-02-27 21:20:09 +01009607 channel_add_input(res, res_htx->data);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009608 }
9609 if (!(strm->flags & SF_ERR_MASK))
9610 strm->flags |= SF_ERR_RESOURCE;
9611 ctx->ctx.hlua_apphttp.flags |= APPLET_DONE;
9612 goto done;
9613}
9614
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009615static void hlua_applet_http_release(struct appctx *ctx)
9616{
Olivier Houchard3f795f72019-04-17 22:51:06 +02009617 task_destroy(ctx->ctx.hlua_apphttp.task);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009618 ctx->ctx.hlua_apphttp.task = NULL;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009619 hlua_ctx_destroy(ctx->ctx.hlua_apphttp.hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009620 ctx->ctx.hlua_apphttp.hlua = NULL;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009621}
9622
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02009623/* global {tcp|http}-request parser. Return ACT_RET_PRS_OK in
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05009624 * success case, else return ACT_RET_PRS_ERR.
Thierry FOURNIERbabae282015-09-17 11:36:37 +02009625 *
9626 * This function can fail with an abort() due to an Lua critical error.
9627 * We are in the configuration parsing process of HAProxy, this abort() is
9628 * tolerated.
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009629 */
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02009630static enum act_parse_ret action_register_lua(const char **args, int *cur_arg, struct proxy *px,
9631 struct act_rule *rule, char **err)
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009632{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02009633 struct hlua_function *fcn = rule->kw->private;
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009634 int i;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009635
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02009636 /* Memory for the rule. */
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02009637 rule->arg.hlua_rule = calloc(1, sizeof(*rule->arg.hlua_rule));
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02009638 if (!rule->arg.hlua_rule) {
9639 memprintf(err, "out of memory error");
Christopher Faulet528526f2021-04-12 14:37:32 +02009640 goto error;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02009641 }
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009642
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009643 /* Memory for arguments. */
Tim Duesterhuse52b6e52020-09-12 20:26:43 +02009644 rule->arg.hlua_rule->args = calloc(fcn->nargs + 1,
9645 sizeof(*rule->arg.hlua_rule->args));
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009646 if (!rule->arg.hlua_rule->args) {
9647 memprintf(err, "out of memory error");
Christopher Faulet528526f2021-04-12 14:37:32 +02009648 goto error;
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009649 }
9650
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02009651 /* Reference the Lua function and store the reference. */
Thierry Fournierad5345f2020-11-29 02:05:57 +01009652 rule->arg.hlua_rule->fcn = fcn;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02009653
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009654 /* Expect some arguments */
9655 for (i = 0; i < fcn->nargs; i++) {
Thierry FOURNIER1725c2e2019-01-06 19:38:49 +01009656 if (*args[*cur_arg] == '\0') {
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009657 memprintf(err, "expect %d arguments", fcn->nargs);
Christopher Faulet528526f2021-04-12 14:37:32 +02009658 goto error;
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009659 }
Thierry FOURNIER1725c2e2019-01-06 19:38:49 +01009660 rule->arg.hlua_rule->args[i] = strdup(args[*cur_arg]);
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009661 if (!rule->arg.hlua_rule->args[i]) {
9662 memprintf(err, "out of memory error");
Christopher Faulet528526f2021-04-12 14:37:32 +02009663 goto error;
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009664 }
9665 (*cur_arg)++;
9666 }
9667 rule->arg.hlua_rule->args[i] = NULL;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02009668
Thierry FOURNIER42148732015-09-02 17:17:33 +02009669 rule->action = ACT_CUSTOM;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02009670 rule->action_ptr = hlua_action;
Thierry FOURNIERafa80492015-08-19 09:04:15 +02009671 return ACT_RET_PRS_OK;
Christopher Faulet528526f2021-04-12 14:37:32 +02009672
9673 error:
9674 if (rule->arg.hlua_rule) {
9675 if (rule->arg.hlua_rule->args) {
9676 for (i = 0; i < fcn->nargs; i++)
9677 ha_free(&rule->arg.hlua_rule->args[i]);
9678 ha_free(&rule->arg.hlua_rule->args);
9679 }
9680 ha_free(&rule->arg.hlua_rule);
9681 }
9682 return ACT_RET_PRS_ERR;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009683}
9684
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009685static enum act_parse_ret action_register_service_http(const char **args, int *cur_arg, struct proxy *px,
9686 struct act_rule *rule, char **err)
9687{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02009688 struct hlua_function *fcn = rule->kw->private;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009689
Thierry FOURNIER718e2a72015-12-20 20:13:14 +01009690 /* HTTP applets are forbidden in tcp-request rules.
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05009691 * HTTP applet request requires everything initialized by
Thierry FOURNIER718e2a72015-12-20 20:13:14 +01009692 * "http_process_request" (analyzer flag AN_REQ_HTTP_INNER).
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05009693 * The applet will be immediately initialized, but its before
Thierry FOURNIER718e2a72015-12-20 20:13:14 +01009694 * the call of this analyzer.
9695 */
9696 if (rule->from != ACT_F_HTTP_REQ) {
9697 memprintf(err, "HTTP applets are forbidden from 'tcp-request' rulesets");
9698 return ACT_RET_PRS_ERR;
9699 }
9700
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009701 /* Memory for the rule. */
9702 rule->arg.hlua_rule = calloc(1, sizeof(*rule->arg.hlua_rule));
9703 if (!rule->arg.hlua_rule) {
9704 memprintf(err, "out of memory error");
9705 return ACT_RET_PRS_ERR;
9706 }
9707
9708 /* Reference the Lua function and store the reference. */
Thierry Fournierad5345f2020-11-29 02:05:57 +01009709 rule->arg.hlua_rule->fcn = fcn;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009710
9711 /* TODO: later accept arguments. */
9712 rule->arg.hlua_rule->args = NULL;
9713
9714 /* Add applet pointer in the rule. */
9715 rule->applet.obj_type = OBJ_TYPE_APPLET;
9716 rule->applet.name = fcn->name;
9717 rule->applet.init = hlua_applet_http_init;
9718 rule->applet.fct = hlua_applet_http_fct;
9719 rule->applet.release = hlua_applet_http_release;
9720 rule->applet.timeout = hlua_timeout_applet;
9721
9722 return ACT_RET_PRS_OK;
9723}
9724
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009725/* This function is an LUA binding used for registering
9726 * "sample-conv" functions. It expects a converter name used
9727 * in the haproxy configuration file, and an LUA function.
9728 */
9729__LJMP static int hlua_register_action(lua_State *L)
9730{
Christopher Faulet4fc9da02021-04-12 15:08:12 +02009731 struct action_kw_list *akl = NULL;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009732 const char *name;
9733 int ref;
9734 int len;
Christopher Faulet4fc9da02021-04-12 15:08:12 +02009735 struct hlua_function *fcn = NULL;
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009736 int nargs;
Thierry Fournierf67442e2020-11-28 20:41:07 +01009737 struct buffer *trash;
9738 struct action_kw *akw;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009739
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009740 /* Initialise the number of expected arguments at 0. */
9741 nargs = 0;
9742
9743 if (lua_gettop(L) < 3 || lua_gettop(L) > 4)
9744 WILL_LJMP(luaL_error(L, "'register_action' needs between 3 and 4 arguments"));
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009745
9746 /* First argument : converter name. */
9747 name = MAY_LJMP(luaL_checkstring(L, 1));
9748
9749 /* Second argument : environment. */
9750 if (lua_type(L, 2) != LUA_TTABLE)
9751 WILL_LJMP(luaL_error(L, "register_action: second argument must be a table of strings"));
9752
9753 /* Third argument : lua function. */
9754 ref = MAY_LJMP(hlua_checkfunction(L, 3));
9755
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08009756 /* Fourth argument : number of mandatory arguments expected on the configuration line. */
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009757 if (lua_gettop(L) >= 4)
9758 nargs = MAY_LJMP(luaL_checkinteger(L, 4));
9759
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08009760 /* browse the second argument as an array. */
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009761 lua_pushnil(L);
9762 while (lua_next(L, 2) != 0) {
9763 if (lua_type(L, -1) != LUA_TSTRING)
9764 WILL_LJMP(luaL_error(L, "register_action: second argument must be a table of strings"));
9765
Thierry Fournierf67442e2020-11-28 20:41:07 +01009766 /* Check if action exists */
9767 trash = get_trash_chunk();
9768 chunk_printf(trash, "lua.%s", name);
9769 if (strcmp(lua_tostring(L, -1), "tcp-req") == 0) {
9770 akw = tcp_req_cont_action(trash->area);
9771 } else if (strcmp(lua_tostring(L, -1), "tcp-res") == 0) {
9772 akw = tcp_res_cont_action(trash->area);
9773 } else if (strcmp(lua_tostring(L, -1), "http-req") == 0) {
9774 akw = action_http_req_custom(trash->area);
9775 } else if (strcmp(lua_tostring(L, -1), "http-res") == 0) {
9776 akw = action_http_res_custom(trash->area);
9777 } else {
9778 akw = NULL;
9779 }
9780 if (akw != NULL) {
Thierry Fournier59f11be2020-11-29 00:37:41 +01009781 fcn = akw->private;
9782 if (fcn->function_ref[hlua_state_id] != -1) {
9783 ha_warning("Trying to register action 'lua.%s' more than once. "
9784 "This will become a hard error in version 2.5.\n", name);
9785 }
9786 fcn->function_ref[hlua_state_id] = ref;
9787
9788 /* pop the environment string. */
9789 lua_pop(L, 1);
9790 continue;
Thierry Fournierf67442e2020-11-28 20:41:07 +01009791 }
9792
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009793 /* Check required environment. Only accepted "http" or "tcp". */
9794 /* Allocate and fill the sample fetch keyword struct. */
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02009795 akl = calloc(1, sizeof(*akl) + sizeof(struct action_kw) * 2);
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009796 if (!akl)
Christopher Faulet4fc9da02021-04-12 15:08:12 +02009797 goto alloc_error;;
Thierry Fournier62a22aa2020-11-28 21:06:35 +01009798 fcn = new_hlua_function();
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009799 if (!fcn)
Christopher Faulet4fc9da02021-04-12 15:08:12 +02009800 goto alloc_error;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009801
9802 /* Fill fcn. */
9803 fcn->name = strdup(name);
9804 if (!fcn->name)
Christopher Faulet4fc9da02021-04-12 15:08:12 +02009805 goto alloc_error;
Thierry Fournierc7492592020-11-28 23:57:24 +01009806 fcn->function_ref[hlua_state_id] = ref;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009807
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07009808 /* Set the expected number of arguments. */
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009809 fcn->nargs = nargs;
9810
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009811 /* List head */
9812 akl->list.n = akl->list.p = NULL;
9813
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009814 /* action keyword. */
9815 len = strlen("lua.") + strlen(name) + 1;
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02009816 akl->kw[0].kw = calloc(1, len);
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009817 if (!akl->kw[0].kw)
Christopher Faulet4fc9da02021-04-12 15:08:12 +02009818 goto alloc_error;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009819
9820 snprintf((char *)akl->kw[0].kw, len, "lua.%s", name);
9821
Amaury Denoyellee4a617c2021-05-06 15:33:09 +02009822 akl->kw[0].flags = 0;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009823 akl->kw[0].private = fcn;
9824 akl->kw[0].parse = action_register_lua;
9825
9826 /* select the action registering point. */
9827 if (strcmp(lua_tostring(L, -1), "tcp-req") == 0)
9828 tcp_req_cont_keywords_register(akl);
9829 else if (strcmp(lua_tostring(L, -1), "tcp-res") == 0)
9830 tcp_res_cont_keywords_register(akl);
9831 else if (strcmp(lua_tostring(L, -1), "http-req") == 0)
9832 http_req_keywords_register(akl);
9833 else if (strcmp(lua_tostring(L, -1), "http-res") == 0)
9834 http_res_keywords_register(akl);
Christopher Faulet4fc9da02021-04-12 15:08:12 +02009835 else {
9836 release_hlua_function(fcn);
9837 if (akl)
9838 ha_free((char **)&(akl->kw[0].kw));
9839 ha_free(&akl);
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01009840 WILL_LJMP(luaL_error(L, "Lua action environment '%s' is unknown. "
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009841 "'tcp-req', 'tcp-res', 'http-req' or 'http-res' "
9842 "are expected.", lua_tostring(L, -1)));
Christopher Faulet4fc9da02021-04-12 15:08:12 +02009843 }
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009844
9845 /* pop the environment string. */
9846 lua_pop(L, 1);
Christopher Faulet4fc9da02021-04-12 15:08:12 +02009847
9848 /* reset for next loop */
9849 akl = NULL;
9850 fcn = NULL;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009851 }
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009852 return ACT_RET_PRS_OK;
Christopher Faulet4fc9da02021-04-12 15:08:12 +02009853
9854 alloc_error:
9855 release_hlua_function(fcn);
9856 ha_free(&akl);
9857 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
9858 return 0; /* Never reached */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009859}
9860
9861static enum act_parse_ret action_register_service_tcp(const char **args, int *cur_arg, struct proxy *px,
9862 struct act_rule *rule, char **err)
9863{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02009864 struct hlua_function *fcn = rule->kw->private;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009865
Christopher Faulet280f85b2019-07-15 15:02:04 +02009866 if (px->mode == PR_MODE_HTTP) {
9867 memprintf(err, "Lua TCP services cannot be used on HTTP proxies");
Christopher Fauletafd8f102018-11-08 11:34:21 +01009868 return ACT_RET_PRS_ERR;
9869 }
9870
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009871 /* Memory for the rule. */
9872 rule->arg.hlua_rule = calloc(1, sizeof(*rule->arg.hlua_rule));
9873 if (!rule->arg.hlua_rule) {
9874 memprintf(err, "out of memory error");
9875 return ACT_RET_PRS_ERR;
9876 }
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009877
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009878 /* Reference the Lua function and store the reference. */
Thierry Fournierad5345f2020-11-29 02:05:57 +01009879 rule->arg.hlua_rule->fcn = fcn;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009880
9881 /* TODO: later accept arguments. */
9882 rule->arg.hlua_rule->args = NULL;
9883
9884 /* Add applet pointer in the rule. */
9885 rule->applet.obj_type = OBJ_TYPE_APPLET;
9886 rule->applet.name = fcn->name;
9887 rule->applet.init = hlua_applet_tcp_init;
9888 rule->applet.fct = hlua_applet_tcp_fct;
9889 rule->applet.release = hlua_applet_tcp_release;
9890 rule->applet.timeout = hlua_timeout_applet;
9891
9892 return 0;
9893}
9894
9895/* This function is an LUA binding used for registering
9896 * "sample-conv" functions. It expects a converter name used
9897 * in the haproxy configuration file, and an LUA function.
9898 */
9899__LJMP static int hlua_register_service(lua_State *L)
9900{
9901 struct action_kw_list *akl;
9902 const char *name;
9903 const char *env;
9904 int ref;
9905 int len;
Christopher Faulet5c028d72021-04-12 15:11:44 +02009906 struct hlua_function *fcn = NULL;
Thierry Fournierf67442e2020-11-28 20:41:07 +01009907 struct buffer *trash;
9908 struct action_kw *akw;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009909
9910 MAY_LJMP(check_args(L, 3, "register_service"));
9911
9912 /* First argument : converter name. */
9913 name = MAY_LJMP(luaL_checkstring(L, 1));
9914
9915 /* Second argument : environment. */
9916 env = MAY_LJMP(luaL_checkstring(L, 2));
9917
9918 /* Third argument : lua function. */
9919 ref = MAY_LJMP(hlua_checkfunction(L, 3));
9920
Thierry Fournierf67442e2020-11-28 20:41:07 +01009921 /* Check for service already registered */
9922 trash = get_trash_chunk();
9923 chunk_printf(trash, "lua.%s", name);
9924 akw = service_find(trash->area);
9925 if (akw != NULL) {
Thierry Fournier59f11be2020-11-29 00:37:41 +01009926 fcn = akw->private;
9927 if (fcn->function_ref[hlua_state_id] != -1) {
9928 ha_warning("Trying to register service 'lua.%s' more than once. "
9929 "This will become a hard error in version 2.5.\n", name);
9930 }
9931 fcn->function_ref[hlua_state_id] = ref;
9932 return 0;
Thierry Fournierf67442e2020-11-28 20:41:07 +01009933 }
9934
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009935 /* Allocate and fill the sample fetch keyword struct. */
9936 akl = calloc(1, sizeof(*akl) + sizeof(struct action_kw) * 2);
9937 if (!akl)
Christopher Faulet5c028d72021-04-12 15:11:44 +02009938 goto alloc_error;
Thierry Fournier62a22aa2020-11-28 21:06:35 +01009939 fcn = new_hlua_function();
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009940 if (!fcn)
Christopher Faulet5c028d72021-04-12 15:11:44 +02009941 goto alloc_error;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009942
9943 /* Fill fcn. */
9944 len = strlen("<lua.>") + strlen(name) + 1;
9945 fcn->name = calloc(1, len);
9946 if (!fcn->name)
Christopher Faulet5c028d72021-04-12 15:11:44 +02009947 goto alloc_error;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009948 snprintf((char *)fcn->name, len, "<lua.%s>", name);
Thierry Fournierc7492592020-11-28 23:57:24 +01009949 fcn->function_ref[hlua_state_id] = ref;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009950
9951 /* List head */
9952 akl->list.n = akl->list.p = NULL;
9953
9954 /* converter keyword. */
9955 len = strlen("lua.") + strlen(name) + 1;
9956 akl->kw[0].kw = calloc(1, len);
9957 if (!akl->kw[0].kw)
Christopher Faulet5c028d72021-04-12 15:11:44 +02009958 goto alloc_error;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009959
9960 snprintf((char *)akl->kw[0].kw, len, "lua.%s", name);
9961
Thierry FOURNIER / OZON.IO02564fd2016-11-12 11:07:05 +01009962 /* Check required environment. Only accepted "http" or "tcp". */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009963 if (strcmp(env, "tcp") == 0)
9964 akl->kw[0].parse = action_register_service_tcp;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009965 else if (strcmp(env, "http") == 0)
9966 akl->kw[0].parse = action_register_service_http;
Christopher Faulet5c028d72021-04-12 15:11:44 +02009967 else {
9968 release_hlua_function(fcn);
9969 if (akl)
9970 ha_free((char **)&(akl->kw[0].kw));
9971 ha_free(&akl);
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01009972 WILL_LJMP(luaL_error(L, "Lua service environment '%s' is unknown. "
Eric Salamafe7456f2017-12-21 14:30:07 +01009973 "'tcp' or 'http' are expected.", env));
Christopher Faulet5c028d72021-04-12 15:11:44 +02009974 }
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009975
Amaury Denoyellee4a617c2021-05-06 15:33:09 +02009976 akl->kw[0].flags = 0;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009977 akl->kw[0].private = fcn;
9978
9979 /* End of array. */
9980 memset(&akl->kw[1], 0, sizeof(*akl->kw));
9981
9982 /* Register this new converter */
9983 service_keywords_register(akl);
9984
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009985 return 0;
Christopher Faulet5c028d72021-04-12 15:11:44 +02009986
9987 alloc_error:
9988 release_hlua_function(fcn);
9989 ha_free(&akl);
9990 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
9991 return 0; /* Never reached */
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009992}
9993
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01009994/* This function initialises Lua cli handler. It copies the
9995 * arguments in the Lua stack and create channel IO objects.
9996 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02009997static int hlua_cli_parse_fct(char **args, char *payload, struct appctx *appctx, void *private)
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01009998{
9999 struct hlua *hlua;
10000 struct hlua_function *fcn;
10001 int i;
10002 const char *error;
10003
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010004 fcn = private;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +010010005 appctx->ctx.hlua_cli.fcn = private;
10006
Willy Tarreaubafbe012017-11-24 17:34:44 +010010007 hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +010010008 if (!hlua) {
10009 SEND_ERR(NULL, "Lua cli '%s': out of memory.\n", fcn->name);
Thierry FOURNIER1be34152016-12-17 12:09:51 +010010010 return 1;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +010010011 }
10012 HLUA_INIT(hlua);
10013 appctx->ctx.hlua_cli.hlua = hlua;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010014
10015 /* Create task used by signal to wakeup applets.
Ilya Shipitsind4259502020-04-08 01:07:56 +050010016 * We use the same wakeup function than the Lua applet_tcp and
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010017 * applet_http. It is absolutely compatible.
10018 */
Willy Tarreaubeeabf52021-10-01 18:23:30 +020010019 appctx->ctx.hlua_cli.task = task_new_here();
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010020 if (!appctx->ctx.hlua_cli.task) {
Thierry FOURNIERffbf5692016-12-16 11:14:06 +010010021 SEND_ERR(NULL, "Lua cli '%s': out of memory.\n", fcn->name);
Thierry FOURNIER1be34152016-12-17 12:09:51 +010010022 goto error;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010023 }
10024 appctx->ctx.hlua_cli.task->nice = 0;
10025 appctx->ctx.hlua_cli.task->context = appctx;
10026 appctx->ctx.hlua_cli.task->process = hlua_applet_wakeup;
10027
10028 /* Initialises the Lua context */
Thierry Fournierc7492592020-11-28 23:57:24 +010010029 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 +010010030 SEND_ERR(NULL, "Lua cli '%s': can't initialize Lua context.\n", fcn->name);
Thierry FOURNIER1be34152016-12-17 12:09:51 +010010031 goto error;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010032 }
10033
10034 /* The following Lua calls can fail. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +010010035 if (!SET_SAFE_LJMP(hlua)) {
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010036 if (lua_type(hlua->T, -1) == LUA_TSTRING)
10037 error = lua_tostring(hlua->T, -1);
10038 else
10039 error = "critical error";
10040 SEND_ERR(NULL, "Lua cli '%s': %s.\n", fcn->name, error);
10041 goto error;
10042 }
10043
10044 /* Check stack available size. */
10045 if (!lua_checkstack(hlua->T, 2)) {
10046 SEND_ERR(NULL, "Lua cli '%s': full stack.\n", fcn->name);
10047 goto error;
10048 }
10049
10050 /* Restore the function in the stack. */
Thierry Fournierc7492592020-11-28 23:57:24 +010010051 lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, fcn->function_ref[hlua->state_id]);
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010052
10053 /* Once the arguments parsed, the CLI is like an AppletTCP,
10054 * so push AppletTCP in the stack.
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010055 */
10056 if (!hlua_applet_tcp_new(hlua->T, appctx)) {
10057 SEND_ERR(NULL, "Lua cli '%s': full stack.\n", fcn->name);
10058 goto error;
10059 }
10060 hlua->nargs = 1;
10061
10062 /* push keywords in the stack. */
10063 for (i = 0; *args[i]; i++) {
10064 /* Check stack available size. */
10065 if (!lua_checkstack(hlua->T, 1)) {
10066 SEND_ERR(NULL, "Lua cli '%s': full stack.\n", fcn->name);
10067 goto error;
10068 }
10069 lua_pushstring(hlua->T, args[i]);
10070 hlua->nargs++;
10071 }
10072
10073 /* We must initialize the execution timeouts. */
10074 hlua->max_time = hlua_timeout_session;
10075
10076 /* At this point the execution is safe. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +010010077 RESET_SAFE_LJMP(hlua);
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010078
10079 /* It's ok */
10080 return 0;
10081
10082 /* It's not ok. */
10083error:
Thierry Fournier7cbe5042020-11-28 17:02:21 +010010084 RESET_SAFE_LJMP(hlua);
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010085 hlua_ctx_destroy(hlua);
Thierry FOURNIER1be34152016-12-17 12:09:51 +010010086 appctx->ctx.hlua_cli.hlua = NULL;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010087 return 1;
10088}
10089
10090static int hlua_cli_io_handler_fct(struct appctx *appctx)
10091{
10092 struct hlua *hlua;
Christopher Faulet908628c2022-03-25 16:43:49 +010010093 struct conn_stream *cs;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010094 struct hlua_function *fcn;
10095
Thierry FOURNIERebed6e92016-12-16 11:54:07 +010010096 hlua = appctx->ctx.hlua_cli.hlua;
Christopher Faulet908628c2022-03-25 16:43:49 +010010097 cs = appctx->owner;
Willy Tarreau8ae4f752016-12-14 15:41:45 +010010098 fcn = appctx->ctx.hlua_cli.fcn;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010099
10100 /* If the stream is disconnect or closed, ldo nothing. */
Christopher Faulet62e75742022-03-31 09:16:34 +020010101 if (unlikely(cs->state == CS_ST_DIS || cs->state == CS_ST_CLO))
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010102 return 1;
10103
10104 /* Execute the function. */
10105 switch (hlua_ctx_resume(hlua, 1)) {
10106
10107 /* finished. */
10108 case HLUA_E_OK:
10109 return 1;
10110
10111 /* yield. */
10112 case HLUA_E_AGAIN:
10113 /* We want write. */
10114 if (HLUA_IS_WAKERESWR(hlua))
Christopher Fauleta0bdec32022-04-04 07:51:21 +020010115 cs_rx_room_blk(cs);
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010116 /* Set the timeout. */
10117 if (hlua->wake_time != TICK_ETERNITY)
10118 task_schedule(hlua->task, hlua->wake_time);
10119 return 0;
10120
10121 /* finished with error. */
10122 case HLUA_E_ERRMSG:
10123 /* Display log. */
10124 SEND_ERR(NULL, "Lua cli '%s': %s.\n",
10125 fcn->name, lua_tostring(hlua->T, -1));
10126 lua_pop(hlua->T, 1);
10127 return 1;
10128
Thierry Fournierd5b073c2018-05-21 19:42:47 +020010129 case HLUA_E_ETMOUT:
10130 SEND_ERR(NULL, "Lua converter '%s': execution timeout.\n",
10131 fcn->name);
10132 return 1;
10133
10134 case HLUA_E_NOMEM:
10135 SEND_ERR(NULL, "Lua converter '%s': out of memory error.\n",
10136 fcn->name);
10137 return 1;
10138
10139 case HLUA_E_YIELD: /* unexpected */
10140 SEND_ERR(NULL, "Lua converter '%s': yield not allowed.\n",
10141 fcn->name);
10142 return 1;
10143
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010144 case HLUA_E_ERR:
10145 /* Display log. */
10146 SEND_ERR(NULL, "Lua cli '%s' return an unknown error.\n",
10147 fcn->name);
10148 return 1;
10149
10150 default:
10151 return 1;
10152 }
10153
10154 return 1;
10155}
10156
10157static void hlua_cli_io_release_fct(struct appctx *appctx)
10158{
Thierry FOURNIERebed6e92016-12-16 11:54:07 +010010159 hlua_ctx_destroy(appctx->ctx.hlua_cli.hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +010010160 appctx->ctx.hlua_cli.hlua = NULL;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010161}
10162
10163/* This function is an LUA binding used for registering
10164 * new keywords in the cli. It expects a list of keywords
10165 * which are the "path". It is limited to 5 keywords. A
10166 * description of the command, a function to be executed
10167 * for the parsing and a function for io handlers.
10168 */
10169__LJMP static int hlua_register_cli(lua_State *L)
10170{
10171 struct cli_kw_list *cli_kws;
10172 const char *message;
10173 int ref_io;
10174 int len;
Christopher Faulet3a9a12b2021-04-12 15:31:29 +020010175 struct hlua_function *fcn = NULL;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010176 int index;
10177 int i;
Thierry Fournierf67442e2020-11-28 20:41:07 +010010178 struct buffer *trash;
10179 const char *kw[5];
10180 struct cli_kw *cli_kw;
Christopher Faulet3a9a12b2021-04-12 15:31:29 +020010181 const char *errmsg;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010182
10183 MAY_LJMP(check_args(L, 3, "register_cli"));
10184
10185 /* First argument : an array of maximum 5 keywords. */
10186 if (!lua_istable(L, 1))
10187 WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table"));
10188
10189 /* Second argument : string with contextual message. */
10190 message = MAY_LJMP(luaL_checkstring(L, 2));
10191
10192 /* Third and fourth argument : lua function. */
10193 ref_io = MAY_LJMP(hlua_checkfunction(L, 3));
10194
Thierry Fournierf67442e2020-11-28 20:41:07 +010010195 /* Check for CLI service already registered */
10196 trash = get_trash_chunk();
10197 index = 0;
10198 lua_pushnil(L);
10199 memset(kw, 0, sizeof(kw));
10200 while (lua_next(L, 1) != 0) {
10201 if (index >= CLI_PREFIX_KW_NB)
10202 WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table with a maximum of 5 entries"));
10203 if (lua_type(L, -1) != LUA_TSTRING)
10204 WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table filled with strings"));
10205 kw[index] = lua_tostring(L, -1);
10206 if (index == 0)
10207 chunk_printf(trash, "%s", kw[index]);
10208 else
10209 chunk_appendf(trash, " %s", kw[index]);
10210 index++;
10211 lua_pop(L, 1);
10212 }
10213 cli_kw = cli_find_kw_exact((char **)kw);
10214 if (cli_kw != NULL) {
Thierry Fournier59f11be2020-11-29 00:37:41 +010010215 fcn = cli_kw->private;
10216 if (fcn->function_ref[hlua_state_id] != -1) {
10217 ha_warning("Trying to register CLI keyword 'lua.%s' more than once. "
10218 "This will become a hard error in version 2.5.\n", trash->area);
10219 }
10220 fcn->function_ref[hlua_state_id] = ref_io;
10221 return 0;
Thierry Fournierf67442e2020-11-28 20:41:07 +010010222 }
10223
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010224 /* Allocate and fill the sample fetch keyword struct. */
10225 cli_kws = calloc(1, sizeof(*cli_kws) + sizeof(struct cli_kw) * 2);
Christopher Faulet3a9a12b2021-04-12 15:31:29 +020010226 if (!cli_kws) {
10227 errmsg = "Lua out of memory error.";
10228 goto error;
10229 }
Thierry Fournier62a22aa2020-11-28 21:06:35 +010010230 fcn = new_hlua_function();
Christopher Faulet3a9a12b2021-04-12 15:31:29 +020010231 if (!fcn) {
10232 errmsg = "Lua out of memory error.";
10233 goto error;
10234 }
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010235
10236 /* Fill path. */
10237 index = 0;
10238 lua_pushnil(L);
10239 while(lua_next(L, 1) != 0) {
Christopher Faulet3a9a12b2021-04-12 15:31:29 +020010240 if (index >= 5) {
10241 errmsg = "1st argument must be a table with a maximum of 5 entries";
10242 goto error;
10243 }
10244 if (lua_type(L, -1) != LUA_TSTRING) {
10245 errmsg = "1st argument must be a table filled with strings";
10246 goto error;
10247 }
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010248 cli_kws->kw[0].str_kw[index] = strdup(lua_tostring(L, -1));
Christopher Faulet3a9a12b2021-04-12 15:31:29 +020010249 if (!cli_kws->kw[0].str_kw[index]) {
10250 errmsg = "Lua out of memory error.";
10251 goto error;
10252 }
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010253 index++;
10254 lua_pop(L, 1);
10255 }
10256
10257 /* Copy help message. */
10258 cli_kws->kw[0].usage = strdup(message);
Christopher Faulet3a9a12b2021-04-12 15:31:29 +020010259 if (!cli_kws->kw[0].usage) {
10260 errmsg = "Lua out of memory error.";
10261 goto error;
10262 }
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010263
10264 /* Fill fcn io handler. */
10265 len = strlen("<lua.cli>") + 1;
10266 for (i = 0; i < index; i++)
10267 len += strlen(cli_kws->kw[0].str_kw[i]) + 1;
10268 fcn->name = calloc(1, len);
Christopher Faulet3a9a12b2021-04-12 15:31:29 +020010269 if (!fcn->name) {
10270 errmsg = "Lua out of memory error.";
10271 goto error;
10272 }
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010273 strncat((char *)fcn->name, "<lua.cli", len);
10274 for (i = 0; i < index; i++) {
10275 strncat((char *)fcn->name, ".", len);
10276 strncat((char *)fcn->name, cli_kws->kw[0].str_kw[i], len);
10277 }
10278 strncat((char *)fcn->name, ">", len);
Thierry Fournierc7492592020-11-28 23:57:24 +010010279 fcn->function_ref[hlua_state_id] = ref_io;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010280
10281 /* Fill last entries. */
10282 cli_kws->kw[0].private = fcn;
10283 cli_kws->kw[0].parse = hlua_cli_parse_fct;
10284 cli_kws->kw[0].io_handler = hlua_cli_io_handler_fct;
10285 cli_kws->kw[0].io_release = hlua_cli_io_release_fct;
10286
10287 /* Register this new converter */
10288 cli_register_kw(cli_kws);
10289
10290 return 0;
Christopher Faulet3a9a12b2021-04-12 15:31:29 +020010291
10292 error:
10293 release_hlua_function(fcn);
10294 if (cli_kws) {
10295 for (i = 0; i < index; i++)
10296 ha_free((char **)&(cli_kws->kw[0].str_kw[i]));
10297 ha_free((char **)&(cli_kws->kw[0].usage));
10298 }
10299 ha_free(&cli_kws);
10300 WILL_LJMP(luaL_error(L, errmsg));
10301 return 0; /* Never reached */
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010302}
10303
Christopher Faulet69c581a2021-05-31 08:54:04 +020010304static int hlua_filter_init_per_thread(struct proxy *px, struct flt_conf *fconf)
10305{
10306 struct hlua_flt_config *conf = fconf->conf;
10307 lua_State *L;
10308 int error, pos, state_id, flt_ref;
10309
10310 state_id = reg_flt_to_stack_id(conf->reg);
10311 L = hlua_states[state_id];
10312 pos = lua_gettop(L);
10313
10314 /* The filter parsing function */
10315 lua_rawgeti(L, LUA_REGISTRYINDEX, conf->reg->fun_ref[state_id]);
10316
10317 /* Push the filter class on the stack and resolve all callbacks */
10318 lua_rawgeti(L, LUA_REGISTRYINDEX, conf->reg->flt_ref[state_id]);
10319
10320 /* Duplicate the filter class so each filter will have its own copy */
10321 lua_newtable(L);
10322 lua_pushnil(L);
10323
10324 while (lua_next(L, pos+2)) {
10325 lua_pushvalue(L, -2);
10326 lua_insert(L, -2);
10327 lua_settable(L, -4);
10328 }
10329 flt_ref = luaL_ref(L, LUA_REGISTRYINDEX);
10330
10331 /* Remove the original lua filter class from the stack */
10332 lua_pop(L, 1);
10333
10334 /* Push the copy on the stack */
10335 lua_rawgeti(L, LUA_REGISTRYINDEX, flt_ref);
10336
10337 /* extra args are pushed in a table */
10338 lua_newtable(L);
10339 for (pos = 0; conf->args[pos]; pos++) {
10340 /* Check stack available size. */
10341 if (!lua_checkstack(L, 1)) {
10342 ha_alert("Lua filter '%s' : Lua error : full stack.", conf->reg->name);
10343 goto error;
10344 }
10345 lua_pushstring(L, conf->args[pos]);
10346 lua_rawseti(L, -2, lua_rawlen(L, -2) + 1);
10347 }
10348
10349 error = lua_pcall(L, 2, LUA_MULTRET, 0);
10350 switch (error) {
10351 case LUA_OK:
10352 /* replace the filter ref */
10353 conf->ref[state_id] = flt_ref;
10354 break;
10355 case LUA_ERRRUN:
10356 ha_alert("Lua filter '%s' : runtime error : %s", conf->reg->name, lua_tostring(L, -1));
10357 goto error;
10358 case LUA_ERRMEM:
10359 ha_alert("Lua filter '%s' : out of memory error", conf->reg->name);
10360 goto error;
10361 case LUA_ERRERR:
10362 ha_alert("Lua filter '%s' : message handler error : %s", conf->reg->name, lua_tostring(L, -1));
10363 goto error;
10364#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM <= 503
10365 case LUA_ERRGCMM:
10366 ha_alert("Lua filter '%s' : garbage collector error : %s", conf->reg->name, lua_tostring(L, -1));
10367 goto error;
10368#endif
10369 default:
Ilya Shipitsinff0f2782021-08-22 22:18:07 +050010370 ha_alert("Lua filter '%s' : unknown error : %s", conf->reg->name, lua_tostring(L, -1));
Christopher Faulet69c581a2021-05-31 08:54:04 +020010371 goto error;
10372 }
10373
10374 lua_settop(L, 0);
10375 return 0;
10376
10377 error:
10378 lua_settop(L, 0);
10379 return -1;
10380}
10381
10382static void hlua_filter_deinit_per_thread(struct proxy *px, struct flt_conf *fconf)
10383{
10384 struct hlua_flt_config *conf = fconf->conf;
10385 lua_State *L;
10386 int state_id;
10387
10388 if (!conf)
10389 return;
10390
10391 state_id = reg_flt_to_stack_id(conf->reg);
10392 L = hlua_states[state_id];
10393 luaL_unref(L, LUA_REGISTRYINDEX, conf->ref[state_id]);
10394}
10395
10396static int hlua_filter_init(struct proxy *px, struct flt_conf *fconf)
10397{
10398 struct hlua_flt_config *conf = fconf->conf;
10399 int state_id = reg_flt_to_stack_id(conf->reg);
10400
10401 /* Rely on per-thread init for global scripts */
10402 if (!state_id)
10403 return hlua_filter_init_per_thread(px, fconf);
10404 return 0;
10405}
10406
10407static void hlua_filter_deinit(struct proxy *px, struct flt_conf *fconf)
10408{
10409
10410 if (fconf->conf) {
10411 struct hlua_flt_config *conf = fconf->conf;
10412 int state_id = reg_flt_to_stack_id(conf->reg);
10413 int pos;
10414
10415 /* Rely on per-thread deinit for global scripts */
10416 if (!state_id)
10417 hlua_filter_deinit_per_thread(px, fconf);
10418
10419 for (pos = 0; conf->args[pos]; pos++)
10420 free(conf->args[pos]);
10421 free(conf->args);
10422 }
10423 ha_free(&fconf->conf);
10424 ha_free((char **)&fconf->id);
10425 ha_free(&fconf->ops);
10426}
10427
10428static int hlua_filter_new(struct stream *s, struct filter *filter)
10429{
10430 struct hlua_flt_config *conf = FLT_CONF(filter);
10431 struct hlua_flt_ctx *flt_ctx = NULL;
10432 int ret = 1;
10433
10434 /* In the execution wrappers linked with a stream, the
10435 * Lua context can be not initialized. This behavior
10436 * permits to save performances because a systematic
10437 * Lua initialization cause 5% performances loss.
10438 */
10439 if (!s->hlua) {
10440 struct hlua *hlua;
10441
10442 hlua = pool_alloc(pool_head_hlua);
10443 if (!hlua) {
10444 SEND_ERR(s->be, "Lua filter '%s': can't initialize Lua context.\n",
10445 conf->reg->name);
10446 ret = 0;
10447 goto end;
10448 }
10449 HLUA_INIT(hlua);
10450 s->hlua = hlua;
10451 if (!hlua_ctx_init(s->hlua, reg_flt_to_stack_id(conf->reg), s->task, 0)) {
10452 SEND_ERR(s->be, "Lua filter '%s': can't initialize Lua context.\n",
10453 conf->reg->name);
10454 ret = 0;
10455 goto end;
10456 }
10457 }
10458
10459 flt_ctx = pool_zalloc(pool_head_hlua_flt_ctx);
10460 if (!flt_ctx) {
10461 SEND_ERR(s->be, "Lua filter '%s': can't initialize filter Lua context.\n",
10462 conf->reg->name);
10463 ret = 0;
10464 goto end;
10465 }
10466 flt_ctx->hlua[0] = pool_alloc(pool_head_hlua);
10467 flt_ctx->hlua[1] = pool_alloc(pool_head_hlua);
10468 if (!flt_ctx->hlua[0] || !flt_ctx->hlua[1]) {
10469 SEND_ERR(s->be, "Lua filter '%s': can't initialize filter Lua context.\n",
10470 conf->reg->name);
10471 ret = 0;
10472 goto end;
10473 }
10474 HLUA_INIT(flt_ctx->hlua[0]);
10475 HLUA_INIT(flt_ctx->hlua[1]);
10476 if (!hlua_ctx_init(flt_ctx->hlua[0], reg_flt_to_stack_id(conf->reg), s->task, 0) ||
10477 !hlua_ctx_init(flt_ctx->hlua[1], reg_flt_to_stack_id(conf->reg), s->task, 0)) {
10478 SEND_ERR(s->be, "Lua filter '%s': can't initialize filter Lua context.\n",
10479 conf->reg->name);
10480 ret = 0;
10481 goto end;
10482 }
10483
10484 if (!HLUA_IS_RUNNING(s->hlua)) {
10485 /* The following Lua calls can fail. */
10486 if (!SET_SAFE_LJMP(s->hlua)) {
10487 const char *error;
10488
10489 if (lua_type(s->hlua->T, -1) == LUA_TSTRING)
10490 error = lua_tostring(s->hlua->T, -1);
10491 else
10492 error = "critical error";
10493 SEND_ERR(s->be, "Lua filter '%s': %s.\n", conf->reg->name, error);
10494 ret = 0;
10495 goto end;
10496 }
10497
10498 /* Check stack size. */
10499 if (!lua_checkstack(s->hlua->T, 1)) {
10500 SEND_ERR(s->be, "Lua filter '%s': full stack.\n", conf->reg->name);
Tim Duesterhus22817382021-09-11 23:17:25 +020010501 RESET_SAFE_LJMP(s->hlua);
Christopher Faulet69c581a2021-05-31 08:54:04 +020010502 ret = 0;
10503 goto end;
10504 }
10505
10506 lua_rawgeti(s->hlua->T, LUA_REGISTRYINDEX, conf->ref[s->hlua->state_id]);
10507 if (lua_getfield(s->hlua->T, -1, "new") != LUA_TFUNCTION) {
10508 SEND_ERR(s->be, "Lua filter '%s': 'new' field is not a function.\n",
10509 conf->reg->name);
10510 RESET_SAFE_LJMP(s->hlua);
10511 ret = 0;
10512 goto end;
10513 }
10514 lua_insert(s->hlua->T, -2);
10515
10516 /* Push the copy on the stack */
10517 s->hlua->nargs = 1;
10518
10519 /* We must initialize the execution timeouts. */
10520 s->hlua->max_time = hlua_timeout_session;
10521
10522 /* At this point the execution is safe. */
10523 RESET_SAFE_LJMP(s->hlua);
10524 }
10525
10526 switch (hlua_ctx_resume(s->hlua, 0)) {
10527 case HLUA_E_OK:
10528 /* Nothing returned or not a table, ignore the filter for current stream */
10529 if (!lua_gettop(s->hlua->T) || !lua_istable(s->hlua->T, 1)) {
10530 ret = 0;
10531 goto end;
10532 }
10533
10534 /* Attached the filter pointer to the ctx */
10535 lua_pushstring(s->hlua->T, "__filter");
10536 lua_pushlightuserdata(s->hlua->T, filter);
10537 lua_settable(s->hlua->T, -3);
10538
10539 /* Save a ref on the filter ctx */
10540 lua_pushvalue(s->hlua->T, 1);
10541 flt_ctx->ref = luaL_ref(s->hlua->T, LUA_REGISTRYINDEX);
10542 filter->ctx = flt_ctx;
10543 break;
10544 case HLUA_E_ERRMSG:
10545 SEND_ERR(s->be, "Lua filter '%s' : %s.\n", conf->reg->name, lua_tostring(s->hlua->T, -1));
10546 ret = -1;
10547 goto end;
10548 case HLUA_E_ETMOUT:
10549 SEND_ERR(s->be, "Lua filter '%s' : 'new' execution timeout.\n", conf->reg->name);
10550 ret = 0;
10551 goto end;
10552 case HLUA_E_NOMEM:
10553 SEND_ERR(s->be, "Lua filter '%s' : out of memory error.\n", conf->reg->name);
10554 ret = 0;
10555 goto end;
10556 case HLUA_E_AGAIN:
10557 case HLUA_E_YIELD:
10558 SEND_ERR(s->be, "Lua filter '%s': yield functions like core.tcp() or core.sleep()"
10559 " are not allowed from 'new' function.\n", conf->reg->name);
10560 ret = 0;
10561 goto end;
10562 case HLUA_E_ERR:
10563 SEND_ERR(s->be, "Lua filter '%s': 'new' returns an unknown error.\n", conf->reg->name);
10564 ret = 0;
10565 goto end;
10566 default:
10567 ret = 0;
10568 goto end;
10569 }
10570
10571 end:
10572 if (s->hlua)
10573 lua_settop(s->hlua->T, 0);
10574 if (ret <= 0) {
10575 if (flt_ctx) {
10576 hlua_ctx_destroy(flt_ctx->hlua[0]);
10577 hlua_ctx_destroy(flt_ctx->hlua[1]);
10578 pool_free(pool_head_hlua_flt_ctx, flt_ctx);
10579 }
10580 }
10581 return ret;
10582}
10583
10584static void hlua_filter_delete(struct stream *s, struct filter *filter)
10585{
10586 struct hlua_flt_ctx *flt_ctx = filter->ctx;
10587
10588 luaL_unref(s->hlua->T, LUA_REGISTRYINDEX, flt_ctx->ref);
10589 hlua_ctx_destroy(flt_ctx->hlua[0]);
10590 hlua_ctx_destroy(flt_ctx->hlua[1]);
10591 pool_free(pool_head_hlua_flt_ctx, flt_ctx);
10592 filter->ctx = NULL;
10593}
10594
Christopher Faulet9f55a502020-02-25 15:21:02 +010010595static int hlua_filter_from_payload(struct filter *filter)
10596{
10597 struct hlua_flt_ctx *flt_ctx = filter->ctx;
10598
10599 return (flt_ctx && !!(flt_ctx->flags & HLUA_FLT_CTX_FL_PAYLOAD));
10600}
10601
Christopher Fauletc404f112020-02-26 15:03:09 +010010602static int hlua_filter_callback(struct stream *s, struct filter *filter, const char *fun,
10603 int dir, unsigned int flags)
10604{
10605 struct hlua *flt_hlua;
10606 struct hlua_flt_config *conf = FLT_CONF(filter);
10607 struct hlua_flt_ctx *flt_ctx = filter->ctx;
10608 unsigned int hflags = HLUA_TXN_FLT_CTX;
10609 int ret = 1;
10610
10611 flt_hlua = flt_ctx->hlua[(dir == SMP_OPT_DIR_REQ ? 0 : 1)];
10612 if (!flt_hlua)
10613 goto end;
10614
10615 if (!HLUA_IS_RUNNING(flt_hlua)) {
10616 int extra_idx = lua_gettop(flt_hlua->T);
10617
10618 /* The following Lua calls can fail. */
10619 if (!SET_SAFE_LJMP(flt_hlua)) {
10620 const char *error;
10621
10622 if (lua_type(flt_hlua->T, -1) == LUA_TSTRING)
10623 error = lua_tostring(flt_hlua->T, -1);
10624 else
10625 error = "critical error";
10626 SEND_ERR(s->be, "Lua filter '%s': %s.\n", conf->reg->name, error);
10627 goto end;
10628 }
10629
10630 /* Check stack size. */
10631 if (!lua_checkstack(flt_hlua->T, 3)) {
10632 SEND_ERR(s->be, "Lua filter '%s': full stack.\n", conf->reg->name);
10633 RESET_SAFE_LJMP(flt_hlua);
10634 goto end;
10635 }
10636
10637 lua_rawgeti(flt_hlua->T, LUA_REGISTRYINDEX, flt_ctx->ref);
10638 if (lua_getfield(flt_hlua->T, -1, fun) != LUA_TFUNCTION) {
10639 RESET_SAFE_LJMP(flt_hlua);
10640 goto end;
10641 }
10642 lua_insert(flt_hlua->T, -2);
10643
10644 if (!hlua_txn_new(flt_hlua->T, s, s->be, dir, hflags)) {
10645 SEND_ERR(s->be, "Lua filter '%s': full stack.\n", conf->reg->name);
10646 RESET_SAFE_LJMP(flt_hlua);
10647 goto end;
10648 }
10649 flt_hlua->nargs = 2;
10650
10651 if (flags & HLUA_FLT_CB_ARG_CHN) {
10652 if (dir == SMP_OPT_DIR_REQ)
10653 lua_getfield(flt_hlua->T, -1, "req");
10654 else
10655 lua_getfield(flt_hlua->T, -1, "res");
10656 if (lua_type(flt_hlua->T, -1) == LUA_TTABLE) {
10657 lua_pushstring(flt_hlua->T, "__filter");
10658 lua_pushlightuserdata(flt_hlua->T, filter);
10659 lua_settable(flt_hlua->T, -3);
10660 }
10661 flt_hlua->nargs++;
10662 }
10663 else if (flags & HLUA_FLT_CB_ARG_HTTP_MSG) {
Christopher Fauleteae8afa2020-02-26 17:15:48 +010010664 if (dir == SMP_OPT_DIR_REQ)
10665 lua_getfield(flt_hlua->T, -1, "http_req");
10666 else
10667 lua_getfield(flt_hlua->T, -1, "http_res");
10668 if (lua_type(flt_hlua->T, -1) == LUA_TTABLE) {
10669 lua_pushstring(flt_hlua->T, "__filter");
10670 lua_pushlightuserdata(flt_hlua->T, filter);
10671 lua_settable(flt_hlua->T, -3);
10672 }
10673 flt_hlua->nargs++;
Christopher Fauletc404f112020-02-26 15:03:09 +010010674 }
10675
10676 /* Check stack size. */
10677 if (!lua_checkstack(flt_hlua->T, 1)) {
10678 SEND_ERR(s->be, "Lua filter '%s': full stack.\n", conf->reg->name);
10679 RESET_SAFE_LJMP(flt_hlua);
10680 goto end;
10681 }
10682
10683 while (extra_idx--) {
10684 lua_pushvalue(flt_hlua->T, 1);
10685 lua_remove(flt_hlua->T, 1);
10686 flt_hlua->nargs++;
10687 }
10688
10689 /* We must initialize the execution timeouts. */
10690 flt_hlua->max_time = hlua_timeout_session;
10691
10692 /* At this point the execution is safe. */
10693 RESET_SAFE_LJMP(flt_hlua);
10694 }
10695
10696 switch (hlua_ctx_resume(flt_hlua, !(flags & HLUA_FLT_CB_FINAL))) {
10697 case HLUA_E_OK:
10698 /* Catch the return value if it required */
10699 if ((flags & HLUA_FLT_CB_RETVAL) && lua_gettop(flt_hlua->T) > 0) {
10700 ret = lua_tointeger(flt_hlua->T, -1);
10701 lua_settop(flt_hlua->T, 0); /* Empty the stack. */
10702 }
10703
10704 /* Set timeout in the required channel. */
10705 if (flt_hlua->wake_time != TICK_ETERNITY) {
10706 if (dir == SMP_OPT_DIR_REQ)
10707 s->req.analyse_exp = flt_hlua->wake_time;
10708 else
10709 s->res.analyse_exp = flt_hlua->wake_time;
10710 }
10711 break;
10712 case HLUA_E_AGAIN:
10713 /* Set timeout in the required channel. */
10714 if (flt_hlua->wake_time != TICK_ETERNITY) {
10715 if (dir == SMP_OPT_DIR_REQ)
10716 s->req.analyse_exp = flt_hlua->wake_time;
10717 else
10718 s->res.analyse_exp = flt_hlua->wake_time;
10719 }
10720 /* Some actions can be wake up when a "write" event
10721 * is detected on a response channel. This is useful
10722 * only for actions targeted on the requests.
10723 */
10724 if (HLUA_IS_WAKERESWR(flt_hlua))
10725 s->res.flags |= CF_WAKE_WRITE;
10726 if (HLUA_IS_WAKEREQWR(flt_hlua))
10727 s->req.flags |= CF_WAKE_WRITE;
10728 ret = 0;
10729 goto end;
10730 case HLUA_E_ERRMSG:
10731 SEND_ERR(s->be, "Lua filter '%s' : %s.\n", conf->reg->name, lua_tostring(flt_hlua->T, -1));
10732 ret = -1;
10733 goto end;
10734 case HLUA_E_ETMOUT:
10735 SEND_ERR(s->be, "Lua filter '%s' : '%s' callback execution timeout.\n", conf->reg->name, fun);
10736 goto end;
10737 case HLUA_E_NOMEM:
10738 SEND_ERR(s->be, "Lua filter '%s' : out of memory error.\n", conf->reg->name);
10739 goto end;
10740 case HLUA_E_YIELD:
10741 SEND_ERR(s->be, "Lua filter '%s': yield functions like core.tcp() or core.sleep()"
10742 " are not allowed from '%s' callback.\n", conf->reg->name, fun);
10743 goto end;
10744 case HLUA_E_ERR:
10745 SEND_ERR(s->be, "Lua filter '%s': '%s' returns an unknown error.\n", conf->reg->name, fun);
10746 goto end;
10747 default:
10748 goto end;
10749 }
10750
10751
10752 end:
10753 return ret;
10754}
10755
10756static int hlua_filter_start_analyze(struct stream *s, struct filter *filter, struct channel *chn)
10757{
10758 struct hlua_flt_ctx *flt_ctx = filter->ctx;
10759
10760 flt_ctx->flags = 0;
10761 return hlua_filter_callback(s, filter, "start_analyze",
10762 (!(chn->flags & CF_ISRESP) ? SMP_OPT_DIR_REQ : SMP_OPT_DIR_RES),
10763 (HLUA_FLT_CB_FINAL | HLUA_FLT_CB_RETVAL | HLUA_FLT_CB_ARG_CHN));
10764}
10765
10766static int hlua_filter_end_analyze(struct stream *s, struct filter *filter, struct channel *chn)
10767{
10768 struct hlua_flt_ctx *flt_ctx = filter->ctx;
10769
10770 flt_ctx->flags &= ~HLUA_FLT_CTX_FL_PAYLOAD;
10771 return hlua_filter_callback(s, filter, "end_analyze",
10772 (!(chn->flags & CF_ISRESP) ? SMP_OPT_DIR_REQ : SMP_OPT_DIR_RES),
10773 (HLUA_FLT_CB_FINAL | HLUA_FLT_CB_RETVAL | HLUA_FLT_CB_ARG_CHN));
10774}
10775
Christopher Fauleteae8afa2020-02-26 17:15:48 +010010776static int hlua_filter_http_headers(struct stream *s, struct filter *filter, struct http_msg *msg)
10777{
10778 struct hlua_flt_ctx *flt_ctx = filter->ctx;
10779
10780 flt_ctx->flags &= ~HLUA_FLT_CTX_FL_PAYLOAD;
10781 return hlua_filter_callback(s, filter, "http_headers",
10782 (!(msg->chn->flags & CF_ISRESP) ? SMP_OPT_DIR_REQ : SMP_OPT_DIR_RES),
10783 (HLUA_FLT_CB_FINAL | HLUA_FLT_CB_RETVAL | HLUA_FLT_CB_ARG_HTTP_MSG));
10784}
10785
10786static int hlua_filter_http_payload(struct stream *s, struct filter *filter, struct http_msg *msg,
10787 unsigned int offset, unsigned int len)
10788{
10789 struct hlua_flt_ctx *flt_ctx = filter->ctx;
10790 struct hlua *flt_hlua;
10791 int dir = (!(msg->chn->flags & CF_ISRESP) ? SMP_OPT_DIR_REQ : SMP_OPT_DIR_RES);
10792 int idx = (dir == SMP_OPT_DIR_REQ ? 0 : 1);
10793 int ret;
10794
10795 flt_hlua = flt_ctx->hlua[idx];
10796 flt_ctx->cur_off[idx] = offset;
10797 flt_ctx->cur_len[idx] = len;
10798 flt_ctx->flags |= HLUA_FLT_CTX_FL_PAYLOAD;
10799 ret = hlua_filter_callback(s, filter, "http_payload", dir, (HLUA_FLT_CB_FINAL | HLUA_FLT_CB_ARG_HTTP_MSG));
10800 if (ret != -1) {
10801 ret = flt_ctx->cur_len[idx];
10802 if (lua_gettop(flt_hlua->T) > 0) {
10803 ret = lua_tointeger(flt_hlua->T, -1);
10804 if (ret > flt_ctx->cur_len[idx])
10805 ret = flt_ctx->cur_len[idx];
10806 lua_settop(flt_hlua->T, 0); /* Empty the stack. */
10807 }
10808 }
10809 return ret;
10810}
10811
10812static int hlua_filter_http_end(struct stream *s, struct filter *filter, struct http_msg *msg)
10813{
10814 struct hlua_flt_ctx *flt_ctx = filter->ctx;
10815
10816 flt_ctx->flags &= ~HLUA_FLT_CTX_FL_PAYLOAD;
10817 return hlua_filter_callback(s, filter, "http_end",
10818 (!(msg->chn->flags & CF_ISRESP) ? SMP_OPT_DIR_REQ : SMP_OPT_DIR_RES),
10819 (HLUA_FLT_CB_FINAL | HLUA_FLT_CB_RETVAL | HLUA_FLT_CB_ARG_HTTP_MSG));
10820}
10821
Christopher Fauletc404f112020-02-26 15:03:09 +010010822static int hlua_filter_tcp_payload(struct stream *s, struct filter *filter, struct channel *chn,
10823 unsigned int offset, unsigned int len)
10824{
10825 struct hlua_flt_ctx *flt_ctx = filter->ctx;
10826 struct hlua *flt_hlua;
10827 int dir = (!(chn->flags & CF_ISRESP) ? SMP_OPT_DIR_REQ : SMP_OPT_DIR_RES);
10828 int idx = (dir == SMP_OPT_DIR_REQ ? 0 : 1);
10829 int ret;
10830
10831 flt_hlua = flt_ctx->hlua[idx];
10832 flt_ctx->cur_off[idx] = offset;
10833 flt_ctx->cur_len[idx] = len;
10834 flt_ctx->flags |= HLUA_FLT_CTX_FL_PAYLOAD;
10835 ret = hlua_filter_callback(s, filter, "tcp_payload", dir, (HLUA_FLT_CB_FINAL | HLUA_FLT_CB_ARG_CHN));
10836 if (ret != -1) {
10837 ret = flt_ctx->cur_len[idx];
10838 if (lua_gettop(flt_hlua->T) > 0) {
10839 ret = lua_tointeger(flt_hlua->T, -1);
10840 if (ret > flt_ctx->cur_len[idx])
10841 ret = flt_ctx->cur_len[idx];
10842 lua_settop(flt_hlua->T, 0); /* Empty the stack. */
10843 }
10844 }
10845 return ret;
10846}
10847
Christopher Faulet69c581a2021-05-31 08:54:04 +020010848static int hlua_filter_parse_fct(char **args, int *cur_arg, struct proxy *px,
10849 struct flt_conf *fconf, char **err, void *private)
10850{
10851 struct hlua_reg_filter *reg_flt = private;
10852 lua_State *L;
10853 struct hlua_flt_config *conf = NULL;
10854 const char *flt_id = NULL;
10855 int state_id, pos, flt_flags = 0;
10856 struct flt_ops *hlua_flt_ops = NULL;
10857
10858 state_id = reg_flt_to_stack_id(reg_flt);
10859 L = hlua_states[state_id];
10860
10861 /* Initialize the filter ops with default callbacks */
10862 hlua_flt_ops = calloc(1, sizeof(*hlua_flt_ops));
Christopher Fauletc86bb872021-08-13 08:33:57 +020010863 if (!hlua_flt_ops)
10864 goto error;
Christopher Faulet69c581a2021-05-31 08:54:04 +020010865 hlua_flt_ops->init = hlua_filter_init;
10866 hlua_flt_ops->deinit = hlua_filter_deinit;
10867 if (state_id) {
10868 /* Set per-thread callback if script is loaded per-thread */
10869 hlua_flt_ops->init_per_thread = hlua_filter_init_per_thread;
10870 hlua_flt_ops->deinit_per_thread = hlua_filter_deinit_per_thread;
10871 }
10872 hlua_flt_ops->attach = hlua_filter_new;
10873 hlua_flt_ops->detach = hlua_filter_delete;
10874
10875 /* Push the filter class on the stack and resolve all callbacks */
10876 lua_rawgeti(L, LUA_REGISTRYINDEX, reg_flt->flt_ref[state_id]);
10877
Christopher Fauletc404f112020-02-26 15:03:09 +010010878 if (lua_getfield(L, -1, "start_analyze") == LUA_TFUNCTION)
10879 hlua_flt_ops->channel_start_analyze = hlua_filter_start_analyze;
10880 lua_pop(L, 1);
10881 if (lua_getfield(L, -1, "end_analyze") == LUA_TFUNCTION)
10882 hlua_flt_ops->channel_end_analyze = hlua_filter_end_analyze;
10883 lua_pop(L, 1);
Christopher Fauleteae8afa2020-02-26 17:15:48 +010010884 if (lua_getfield(L, -1, "http_headers") == LUA_TFUNCTION)
10885 hlua_flt_ops->http_headers = hlua_filter_http_headers;
10886 lua_pop(L, 1);
10887 if (lua_getfield(L, -1, "http_payload") == LUA_TFUNCTION)
10888 hlua_flt_ops->http_payload = hlua_filter_http_payload;
10889 lua_pop(L, 1);
10890 if (lua_getfield(L, -1, "http_end") == LUA_TFUNCTION)
10891 hlua_flt_ops->http_end = hlua_filter_http_end;
10892 lua_pop(L, 1);
Christopher Fauletc404f112020-02-26 15:03:09 +010010893 if (lua_getfield(L, -1, "tcp_payload") == LUA_TFUNCTION)
10894 hlua_flt_ops->tcp_payload = hlua_filter_tcp_payload;
10895 lua_pop(L, 1);
Christopher Faulet69c581a2021-05-31 08:54:04 +020010896
10897 /* Get id and flags of the filter class */
10898 if (lua_getfield(L, -1, "id") == LUA_TSTRING)
10899 flt_id = lua_tostring(L, -1);
10900 lua_pop(L, 1);
10901 if (lua_getfield(L, -1, "flags") == LUA_TNUMBER)
10902 flt_flags = lua_tointeger(L, -1);
10903 lua_pop(L, 1);
10904
10905 /* Create the filter config */
10906 conf = calloc(1, sizeof(*conf));
Christopher Fauletc86bb872021-08-13 08:33:57 +020010907 if (!conf)
Christopher Faulet69c581a2021-05-31 08:54:04 +020010908 goto error;
Christopher Faulet69c581a2021-05-31 08:54:04 +020010909 conf->reg = reg_flt;
10910
10911 /* duplicate args */
10912 for (pos = 0; *args[*cur_arg + 1 + pos]; pos++);
10913 conf->args = calloc(pos + 1, sizeof(*conf->args));
Christopher Fauletc86bb872021-08-13 08:33:57 +020010914 if (!conf->args)
10915 goto error;
10916 for (pos = 0; *args[*cur_arg + 1 + pos]; pos++) {
Christopher Faulet69c581a2021-05-31 08:54:04 +020010917 conf->args[pos] = strdup(args[*cur_arg + 1 + pos]);
Christopher Fauletc86bb872021-08-13 08:33:57 +020010918 if (!conf->args[pos])
10919 goto error;
10920 }
Christopher Faulet69c581a2021-05-31 08:54:04 +020010921 conf->args[pos] = NULL;
10922 *cur_arg += pos + 1;
10923
Christopher Fauletc86bb872021-08-13 08:33:57 +020010924 if (flt_id) {
10925 fconf->id = strdup(flt_id);
10926 if (!fconf->id)
10927 goto error;
10928 }
Christopher Faulet69c581a2021-05-31 08:54:04 +020010929 fconf->flags = flt_flags;
10930 fconf->conf = conf;
10931 fconf->ops = hlua_flt_ops;
10932
10933 lua_settop(L, 0);
10934 return 0;
10935
10936 error:
Christopher Fauletc86bb872021-08-13 08:33:57 +020010937 memprintf(err, "Lua filter '%s' : Lua out of memory error", reg_flt->name);
Christopher Faulet69c581a2021-05-31 08:54:04 +020010938 free(hlua_flt_ops);
Christopher Fauletc86bb872021-08-13 08:33:57 +020010939 if (conf && conf->args) {
10940 for (pos = 0; conf->args[pos]; pos++)
10941 free(conf->args[pos]);
10942 free(conf->args);
10943 }
Christopher Faulet69c581a2021-05-31 08:54:04 +020010944 free(conf);
Christopher Fauletc86bb872021-08-13 08:33:57 +020010945 free((char *)fconf->id);
Christopher Faulet69c581a2021-05-31 08:54:04 +020010946 lua_settop(L, 0);
10947 return -1;
10948}
10949
Christopher Fauletc404f112020-02-26 15:03:09 +010010950__LJMP static int hlua_register_data_filter(lua_State *L)
10951{
10952 struct filter *filter;
10953 struct channel *chn;
10954
10955 MAY_LJMP(check_args(L, 2, "register_data_filter"));
10956 MAY_LJMP(luaL_checktype(L, 1, LUA_TTABLE));
10957 chn = MAY_LJMP(hlua_checkchannel(L, 2));
10958
10959 lua_getfield(L, 1, "__filter");
10960 MAY_LJMP(luaL_checktype(L, -1, LUA_TLIGHTUSERDATA));
10961 filter = lua_touserdata (L, -1);
10962 lua_pop(L, 1);
10963
10964 register_data_filter(chn_strm(chn), chn, filter);
10965 return 1;
10966}
10967
10968__LJMP static int hlua_unregister_data_filter(lua_State *L)
10969{
10970 struct filter *filter;
10971 struct channel *chn;
10972
10973 MAY_LJMP(check_args(L, 2, "unregister_data_filter"));
10974 MAY_LJMP(luaL_checktype(L, 1, LUA_TTABLE));
10975 chn = MAY_LJMP(hlua_checkchannel(L, 2));
10976
10977 lua_getfield(L, 1, "__filter");
10978 MAY_LJMP(luaL_checktype(L, -1, LUA_TLIGHTUSERDATA));
10979 filter = lua_touserdata (L, -1);
10980 lua_pop(L, 1);
10981
10982 unregister_data_filter(chn_strm(chn), chn, filter);
10983 return 1;
10984}
10985
Christopher Faulet69c581a2021-05-31 08:54:04 +020010986/* This function is an LUA binding used for registering a filter. It expects a
Ilya Shipitsinff0f2782021-08-22 22:18:07 +050010987 * filter name used in the haproxy configuration file and a LUA function to
Christopher Faulet69c581a2021-05-31 08:54:04 +020010988 * parse configuration arguments.
10989 */
10990__LJMP static int hlua_register_filter(lua_State *L)
10991{
10992 struct buffer *trash;
10993 struct flt_kw_list *fkl;
10994 struct flt_kw *fkw;
10995 const char *name;
10996 struct hlua_reg_filter *reg_flt= NULL;
10997 int flt_ref, fun_ref;
10998 int len;
10999
11000 MAY_LJMP(check_args(L, 3, "register_filter"));
11001
11002 /* First argument : filter name. */
11003 name = MAY_LJMP(luaL_checkstring(L, 1));
11004
11005 /* Second argument : The filter class */
11006 flt_ref = MAY_LJMP(hlua_checktable(L, 2));
11007
11008 /* Third argument : lua function. */
11009 fun_ref = MAY_LJMP(hlua_checkfunction(L, 3));
11010
11011 trash = get_trash_chunk();
11012 chunk_printf(trash, "lua.%s", name);
11013 fkw = flt_find_kw(trash->area);
11014 if (fkw != NULL) {
11015 reg_flt = fkw->private;
11016 if (reg_flt->flt_ref[hlua_state_id] != -1 || reg_flt->fun_ref[hlua_state_id] != -1) {
11017 ha_warning("Trying to register filter 'lua.%s' more than once. "
11018 "This will become a hard error in version 2.5.\n", name);
11019 }
11020 reg_flt->flt_ref[hlua_state_id] = flt_ref;
11021 reg_flt->fun_ref[hlua_state_id] = fun_ref;
11022 return 0;
11023 }
11024
11025 fkl = calloc(1, sizeof(*fkl) + sizeof(struct flt_kw) * 2);
11026 if (!fkl)
11027 goto alloc_error;
11028 fkl->scope = "HLUA";
11029
11030 reg_flt = new_hlua_reg_filter(name);
11031 if (!reg_flt)
11032 goto alloc_error;
11033
11034 reg_flt->flt_ref[hlua_state_id] = flt_ref;
11035 reg_flt->fun_ref[hlua_state_id] = fun_ref;
11036
11037 /* The filter keyword */
11038 len = strlen("lua.") + strlen(name) + 1;
11039 fkl->kw[0].kw = calloc(1, len);
11040 if (!fkl->kw[0].kw)
11041 goto alloc_error;
11042
11043 snprintf((char *)fkl->kw[0].kw, len, "lua.%s", name);
11044
11045 fkl->kw[0].parse = hlua_filter_parse_fct;
11046 fkl->kw[0].private = reg_flt;
11047 memset(&fkl->kw[1], 0, sizeof(*fkl->kw));
11048
11049 /* Register this new filter */
11050 flt_register_keywords(fkl);
11051
11052 return 0;
11053
11054 alloc_error:
11055 release_hlua_reg_filter(reg_flt);
11056 ha_free(&fkl);
11057 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
11058 return 0; /* Never reached */
11059}
11060
Thierry FOURNIERbd413492015-03-03 16:52:26 +010011061static int hlua_read_timeout(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +010011062 const struct proxy *defpx, const char *file, int line,
Thierry FOURNIERbd413492015-03-03 16:52:26 +010011063 char **err, unsigned int *timeout)
11064{
11065 const char *error;
11066
11067 error = parse_time_err(args[1], timeout, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +020011068 if (error == PARSE_TIME_OVER) {
11069 memprintf(err, "timer overflow in argument <%s> to <%s> (maximum value is 2147483647 ms or ~24.8 days)",
11070 args[1], args[0]);
11071 return -1;
11072 }
11073 else if (error == PARSE_TIME_UNDER) {
11074 memprintf(err, "timer underflow in argument <%s> to <%s> (minimum non-null value is 1 ms)",
11075 args[1], args[0]);
11076 return -1;
11077 }
11078 else if (error) {
Thierry FOURNIERbd413492015-03-03 16:52:26 +010011079 memprintf(err, "%s: invalid timeout", args[0]);
11080 return -1;
11081 }
11082 return 0;
11083}
11084
11085static int hlua_session_timeout(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +010011086 const struct proxy *defpx, const char *file, int line,
Thierry FOURNIERbd413492015-03-03 16:52:26 +010011087 char **err)
11088{
11089 return hlua_read_timeout(args, section_type, curpx, defpx,
11090 file, line, err, &hlua_timeout_session);
11091}
11092
11093static int hlua_task_timeout(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +010011094 const struct proxy *defpx, const char *file, int line,
Thierry FOURNIERbd413492015-03-03 16:52:26 +010011095 char **err)
11096{
11097 return hlua_read_timeout(args, section_type, curpx, defpx,
11098 file, line, err, &hlua_timeout_task);
11099}
11100
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +020011101static int hlua_applet_timeout(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +010011102 const struct proxy *defpx, const char *file, int line,
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +020011103 char **err)
11104{
11105 return hlua_read_timeout(args, section_type, curpx, defpx,
11106 file, line, err, &hlua_timeout_applet);
11107}
11108
Thierry FOURNIERee9f8022015-03-03 17:37:37 +010011109static int hlua_forced_yield(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +010011110 const struct proxy *defpx, const char *file, int line,
Thierry FOURNIERee9f8022015-03-03 17:37:37 +010011111 char **err)
11112{
11113 char *error;
11114
11115 hlua_nb_instruction = strtoll(args[1], &error, 10);
11116 if (*error != '\0') {
11117 memprintf(err, "%s: invalid number", args[0]);
11118 return -1;
11119 }
11120 return 0;
11121}
11122
Willy Tarreau32f61e22015-03-18 17:54:59 +010011123static int hlua_parse_maxmem(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +010011124 const struct proxy *defpx, const char *file, int line,
Willy Tarreau32f61e22015-03-18 17:54:59 +010011125 char **err)
11126{
11127 char *error;
11128
11129 if (*(args[1]) == 0) {
11130 memprintf(err, "'%s' expects an integer argument (Lua memory size in MB).\n", args[0]);
11131 return -1;
11132 }
11133 hlua_global_allocator.limit = strtoll(args[1], &error, 10) * 1024L * 1024L;
11134 if (*error != '\0') {
11135 memprintf(err, "%s: invalid number %s (error at '%c')", args[0], args[1], *error);
11136 return -1;
11137 }
11138 return 0;
11139}
11140
11141
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011142/* This function is called by the main configuration key "lua-load". It loads and
11143 * execute an lua file during the parsing of the HAProxy configuration file. It is
11144 * the main lua entry point.
11145 *
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -080011146 * This function runs with the HAProxy keywords API. It returns -1 if an error
11147 * occurs, otherwise it returns 0.
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011148 *
11149 * In some error case, LUA set an error message in top of the stack. This function
11150 * returns this error message in the HAProxy logs and pop it from the stack.
Thierry FOURNIERbabae282015-09-17 11:36:37 +020011151 *
11152 * This function can fail with an abort() due to an Lua critical error.
11153 * We are in the configuration parsing process of HAProxy, this abort() is
11154 * tolerated.
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011155 */
Thierry Fournierc93c15c2020-11-28 15:02:13 +010011156static int hlua_load_state(char *filename, lua_State *L, char **err)
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011157{
11158 int error;
11159
11160 /* Just load and compile the file. */
Thierry Fournierc93c15c2020-11-28 15:02:13 +010011161 error = luaL_loadfile(L, filename);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011162 if (error) {
Thierry Fournierc93c15c2020-11-28 15:02:13 +010011163 memprintf(err, "error in Lua file '%s': %s", filename, lua_tostring(L, -1));
11164 lua_pop(L, 1);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011165 return -1;
11166 }
11167
11168 /* If no syntax error where detected, execute the code. */
Thierry Fournierc93c15c2020-11-28 15:02:13 +010011169 error = lua_pcall(L, 0, LUA_MULTRET, 0);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011170 switch (error) {
11171 case LUA_OK:
11172 break;
11173 case LUA_ERRRUN:
Thierry Fournierc93c15c2020-11-28 15:02:13 +010011174 memprintf(err, "Lua runtime error: %s\n", lua_tostring(L, -1));
11175 lua_pop(L, 1);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011176 return -1;
11177 case LUA_ERRMEM:
Thierry Fournierde6145f2020-11-29 00:55:53 +010011178 memprintf(err, "Lua out of memory error\n");
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011179 return -1;
11180 case LUA_ERRERR:
Thierry Fournierc93c15c2020-11-28 15:02:13 +010011181 memprintf(err, "Lua message handler error: %s\n", lua_tostring(L, -1));
11182 lua_pop(L, 1);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011183 return -1;
Christopher Faulet08ed98f2020-07-28 10:33:25 +020011184#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM <= 503
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011185 case LUA_ERRGCMM:
Thierry Fournierc93c15c2020-11-28 15:02:13 +010011186 memprintf(err, "Lua garbage collector error: %s\n", lua_tostring(L, -1));
11187 lua_pop(L, 1);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011188 return -1;
Christopher Faulet08ed98f2020-07-28 10:33:25 +020011189#endif
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011190 default:
Thierry Fournierc93c15c2020-11-28 15:02:13 +010011191 memprintf(err, "Lua unknown error: %s\n", lua_tostring(L, -1));
11192 lua_pop(L, 1);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011193 return -1;
11194 }
11195
11196 return 0;
11197}
11198
Thierry Fournierc93c15c2020-11-28 15:02:13 +010011199static int hlua_load(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +010011200 const struct proxy *defpx, const char *file, int line,
Thierry Fournierc93c15c2020-11-28 15:02:13 +010011201 char **err)
11202{
11203 if (*(args[1]) == 0) {
11204 memprintf(err, "'%s' expects a file name as parameter.\n", args[0]);
11205 return -1;
11206 }
11207
Thierry Fournier59f11be2020-11-29 00:37:41 +010011208 /* loading for global state */
Thierry Fournierc7492592020-11-28 23:57:24 +010011209 hlua_state_id = 0;
Willy Tarreau43ab05b2021-09-28 09:43:11 +020011210 ha_set_thread(NULL);
Thierry Fournierafc63e22020-11-28 17:06:51 +010011211 return hlua_load_state(args[1], hlua_states[0], err);
Thierry Fournierc93c15c2020-11-28 15:02:13 +010011212}
11213
Thierry Fournier59f11be2020-11-29 00:37:41 +010011214static int hlua_load_per_thread(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +010011215 const struct proxy *defpx, const char *file, int line,
Thierry Fournier59f11be2020-11-29 00:37:41 +010011216 char **err)
11217{
11218 int len;
11219
11220 if (*(args[1]) == 0) {
11221 memprintf(err, "'%s' expects a file as parameter.\n", args[0]);
11222 return -1;
11223 }
11224
11225 if (per_thread_load == NULL) {
11226 /* allocate the first entry large enough to store the final NULL */
11227 per_thread_load = calloc(1, sizeof(*per_thread_load));
11228 if (per_thread_load == NULL) {
11229 memprintf(err, "out of memory error");
11230 return -1;
11231 }
11232 }
11233
11234 /* count used entries */
11235 for (len = 0; per_thread_load[len] != NULL; len++)
11236 ;
11237
11238 per_thread_load = realloc(per_thread_load, (len + 2) * sizeof(*per_thread_load));
11239 if (per_thread_load == NULL) {
11240 memprintf(err, "out of memory error");
11241 return -1;
11242 }
11243
11244 per_thread_load[len] = strdup(args[1]);
11245 per_thread_load[len + 1] = NULL;
11246
11247 if (per_thread_load[len] == NULL) {
11248 memprintf(err, "out of memory error");
11249 return -1;
11250 }
11251
11252 /* loading for thread 1 only */
11253 hlua_state_id = 1;
Willy Tarreau43ab05b2021-09-28 09:43:11 +020011254 ha_set_thread(NULL);
Thierry Fournier59f11be2020-11-29 00:37:41 +010011255 return hlua_load_state(args[1], hlua_states[1], err);
11256}
11257
Tim Duesterhusc9fc9f22020-01-12 13:55:39 +010011258/* Prepend the given <path> followed by a semicolon to the `package.<type>` variable
11259 * in the given <ctx>.
11260 */
Thierry Fournier3fb9e512020-11-28 10:13:12 +010011261static int hlua_prepend_path(lua_State *L, char *type, char *path)
Tim Duesterhusc9fc9f22020-01-12 13:55:39 +010011262{
Thierry Fournier3fb9e512020-11-28 10:13:12 +010011263 lua_getglobal(L, "package"); /* push package variable */
11264 lua_pushstring(L, path); /* push given path */
11265 lua_pushstring(L, ";"); /* push semicolon */
11266 lua_getfield(L, -3, type); /* push old path */
11267 lua_concat(L, 3); /* concatenate to new path */
11268 lua_setfield(L, -2, type); /* store new path */
11269 lua_pop(L, 1); /* pop package variable */
Tim Duesterhusc9fc9f22020-01-12 13:55:39 +010011270
11271 return 0;
11272}
11273
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +010011274static int hlua_config_prepend_path(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +010011275 const struct proxy *defpx, const char *file, int line,
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +010011276 char **err)
11277{
11278 char *path;
11279 char *type = "path";
Tim Duesterhus621e74a2021-01-03 20:04:36 +010011280 struct prepend_path *p = NULL;
Bertrand Jacquin7fbc7702021-11-24 21:16:06 +000011281 size_t i;
Thierry Fournier59f11be2020-11-29 00:37:41 +010011282
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +010011283 if (too_many_args(2, args, err, NULL)) {
Tim Duesterhus621e74a2021-01-03 20:04:36 +010011284 goto err;
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +010011285 }
11286
11287 if (!(*args[1])) {
11288 memprintf(err, "'%s' expects to receive a <path> as argument", args[0]);
Tim Duesterhus621e74a2021-01-03 20:04:36 +010011289 goto err;
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +010011290 }
11291 path = args[1];
11292
11293 if (*args[2]) {
11294 if (strcmp(args[2], "path") != 0 && strcmp(args[2], "cpath") != 0) {
11295 memprintf(err, "'%s' expects <type> to either be 'path' or 'cpath'", args[0]);
Tim Duesterhus621e74a2021-01-03 20:04:36 +010011296 goto err;
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +010011297 }
11298 type = args[2];
11299 }
11300
Thierry Fournier59f11be2020-11-29 00:37:41 +010011301 p = calloc(1, sizeof(*p));
11302 if (p == NULL) {
Tim Duesterhusf89d43a2021-01-03 20:04:37 +010011303 memprintf(err, "memory allocation failed");
Tim Duesterhus621e74a2021-01-03 20:04:36 +010011304 goto err;
Thierry Fournier59f11be2020-11-29 00:37:41 +010011305 }
11306 p->path = strdup(path);
11307 if (p->path == NULL) {
Tim Duesterhusf89d43a2021-01-03 20:04:37 +010011308 memprintf(err, "memory allocation failed");
Tim Duesterhus621e74a2021-01-03 20:04:36 +010011309 goto err2;
Thierry Fournier59f11be2020-11-29 00:37:41 +010011310 }
11311 p->type = strdup(type);
11312 if (p->type == NULL) {
Tim Duesterhusf89d43a2021-01-03 20:04:37 +010011313 memprintf(err, "memory allocation failed");
Tim Duesterhus621e74a2021-01-03 20:04:36 +010011314 goto err2;
Thierry Fournier59f11be2020-11-29 00:37:41 +010011315 }
Willy Tarreau2b718102021-04-21 07:32:39 +020011316 LIST_APPEND(&prepend_path_list, &p->l);
Thierry Fournier59f11be2020-11-29 00:37:41 +010011317
Tim Duesterhus9e5e5862021-10-11 18:51:08 +020011318 /* Handle the global state and the per-thread state for the first
11319 * thread. The remaining threads will be initialized based on
11320 * prepend_path_list.
11321 */
Bertrand Jacquin7fbc7702021-11-24 21:16:06 +000011322 for (i = 0; i < 2; i++) {
Tim Duesterhus9e5e5862021-10-11 18:51:08 +020011323 lua_State *L = hlua_states[i];
11324 const char *error;
11325
11326 if (setjmp(safe_ljmp_env) != 0) {
11327 lua_atpanic(L, hlua_panic_safe);
11328 if (lua_type(L, -1) == LUA_TSTRING)
11329 error = lua_tostring(L, -1);
11330 else
11331 error = "critical error";
11332 fprintf(stderr, "lua-prepend-path: %s.\n", error);
11333 exit(1);
11334 } else {
11335 lua_atpanic(L, hlua_panic_ljmp);
11336 }
11337
11338 hlua_prepend_path(L, type, path);
11339
11340 lua_atpanic(L, hlua_panic_safe);
11341 }
11342
Thierry Fournier59f11be2020-11-29 00:37:41 +010011343 return 0;
Tim Duesterhus621e74a2021-01-03 20:04:36 +010011344
11345err2:
11346 free(p->type);
11347 free(p->path);
11348err:
11349 free(p);
11350 return -1;
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +010011351}
11352
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011353/* configuration keywords declaration */
11354static struct cfg_kw_list cfg_kws = {{ },{
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +010011355 { CFG_GLOBAL, "lua-prepend-path", hlua_config_prepend_path },
Thierry FOURNIERbd413492015-03-03 16:52:26 +010011356 { CFG_GLOBAL, "lua-load", hlua_load },
Thierry Fournier59f11be2020-11-29 00:37:41 +010011357 { CFG_GLOBAL, "lua-load-per-thread", hlua_load_per_thread },
Thierry FOURNIERbd413492015-03-03 16:52:26 +010011358 { CFG_GLOBAL, "tune.lua.session-timeout", hlua_session_timeout },
11359 { CFG_GLOBAL, "tune.lua.task-timeout", hlua_task_timeout },
Thierry FOURNIER56da1012015-10-01 08:42:31 +020011360 { CFG_GLOBAL, "tune.lua.service-timeout", hlua_applet_timeout },
Thierry FOURNIERee9f8022015-03-03 17:37:37 +010011361 { CFG_GLOBAL, "tune.lua.forced-yield", hlua_forced_yield },
Willy Tarreau32f61e22015-03-18 17:54:59 +010011362 { CFG_GLOBAL, "tune.lua.maxmem", hlua_parse_maxmem },
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011363 { 0, NULL, NULL },
11364}};
11365
Willy Tarreau0108d902018-11-25 19:14:37 +010011366INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
11367
William Lallemand52139182022-03-30 15:05:42 +020011368#ifdef USE_OPENSSL
Christopher Fauletafd8f102018-11-08 11:34:21 +010011369
William Lallemand30fcca12022-03-30 12:03:12 +020011370/*
11371 * This function replace a ckch_store by another one, and rebuild the ckch_inst and all its dependencies.
11372 * It does the sam as "cli_io_handler_commit_cert" but for lua, the major
11373 * difference is that the yield in lua and for the CLI is not handled the same
11374 * way.
11375 */
11376__LJMP static int hlua_ckch_commit_yield(lua_State *L, int status, lua_KContext ctx)
11377{
11378 struct ckch_inst **lua_ckchi = lua_touserdata(L, -1);
11379 struct ckch_store **lua_ckchs = lua_touserdata(L, -2);
11380 struct ckch_inst *ckchi = *lua_ckchi;
11381 struct ckch_store *old_ckchs = lua_ckchs[0];
11382 struct ckch_store *new_ckchs = lua_ckchs[1];
11383 struct hlua *hlua;
11384 char *err = NULL;
11385 int y = 1;
11386
11387 hlua = hlua_gethlua(L);
11388
11389 /* get the first ckchi to copy */
11390 if (ckchi == NULL)
11391 ckchi = LIST_ELEM(old_ckchs->ckch_inst.n, typeof(ckchi), by_ckchs);
11392
11393 /* walk through the old ckch_inst and creates new ckch_inst using the updated ckchs */
11394 list_for_each_entry_from(ckchi, &old_ckchs->ckch_inst, by_ckchs) {
11395 struct ckch_inst *new_inst;
11396
11397 /* it takes a lot of CPU to creates SSL_CTXs, so we yield every 10 CKCH instances */
11398 if (y % 10 == 0) {
11399
11400 *lua_ckchi = ckchi;
11401
11402 task_wakeup(hlua->task, TASK_WOKEN_MSG);
11403 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_ckch_commit_yield, TICK_ETERNITY, 0));
11404 }
11405
11406 if (ckch_inst_rebuild(new_ckchs, ckchi, &new_inst, &err))
11407 goto error;
11408
11409 /* link the new ckch_inst to the duplicate */
11410 LIST_APPEND(&new_ckchs->ckch_inst, &new_inst->by_ckchs);
11411 y++;
11412 }
11413
11414 /* The generation is finished, we can insert everything */
11415 ckch_store_replace(old_ckchs, new_ckchs);
11416
11417 lua_pop(L, 2); /* pop the lua_ckchs and ckchi */
11418
11419 HA_SPIN_UNLOCK(CKCH_LOCK, &ckch_lock);
11420
11421 return 0;
11422
11423error:
11424 ckch_store_free(new_ckchs);
11425 HA_SPIN_UNLOCK(CKCH_LOCK, &ckch_lock);
11426 WILL_LJMP(luaL_error(L, "%s", err));
11427 free(err);
11428
11429 return 0;
11430}
11431
11432/*
11433 * Replace a ckch_store <filename> in the ckchs_tree with a ckch_store created
11434 * from the table in parameter.
11435 *
11436 * This is equivalent to "set ssl cert" + "commit ssl cert" over the CLI, which
11437 * means it does not need to have a transaction since everything is done in the
11438 * same function.
11439 *
11440 * CertCache.set{filename="", crt="", key="", sctl="", ocsp="", issuer=""}
11441 *
11442 */
11443__LJMP static int hlua_ckch_set(lua_State *L)
11444{
11445 struct hlua *hlua;
11446 struct ckch_inst **lua_ckchi;
11447 struct ckch_store **lua_ckchs;
11448 struct ckch_store *old_ckchs = NULL;
11449 struct ckch_store *new_ckchs = NULL;
11450 int errcode = 0;
11451 char *err = NULL;
11452 struct cert_exts *cert_ext = NULL;
11453 char *filename;
11454 struct cert_key_and_chain *ckch;
11455 int ret;
11456
11457 if (lua_type(L, -1) != LUA_TTABLE)
11458 WILL_LJMP(luaL_error(L, "'CertCache.set' needs a table as argument"));
11459
11460 hlua = hlua_gethlua(L);
11461
11462 /* FIXME: this should not return an error but should come back later */
11463 if (HA_SPIN_TRYLOCK(CKCH_LOCK, &ckch_lock))
11464 WILL_LJMP(luaL_error(L, "CertCache already under lock"));
11465
11466 ret = lua_getfield(L, -1, "filename");
11467 if (ret != LUA_TSTRING) {
11468 memprintf(&err, "%sNo filename specified!\n", err ? err : "");
11469 errcode |= ERR_ALERT | ERR_FATAL;
11470 goto end;
11471 }
11472 filename = (char *)lua_tostring(L, -1);
11473
11474
11475 /* look for the filename in the tree */
11476 old_ckchs = ckchs_lookup(filename);
11477 if (!old_ckchs) {
11478 memprintf(&err, "%sCan't replace a certificate which is not referenced by the configuration!\n", err ? err : "");
11479 errcode |= ERR_ALERT | ERR_FATAL;
11480 goto end;
11481 }
11482 /* TODO: handle extra_files_noext */
11483
11484 new_ckchs = ckchs_dup(old_ckchs);
11485 if (!new_ckchs) {
11486 memprintf(&err, "%sCannot allocate memory!\n", err ? err : "");
11487 errcode |= ERR_ALERT | ERR_FATAL;
11488 goto end;
11489 }
11490
11491 ckch = new_ckchs->ckch;
11492
11493 /* loop on the field in the table, which have the same name as the
11494 * possible extensions of files */
11495 lua_pushnil(L);
11496 while (lua_next(L, 1)) {
11497 int i;
11498 const char *field = lua_tostring(L, -2);
11499 char *payload = (char *)lua_tostring(L, -1);
11500
11501 if (!field || strcmp(field, "filename") == 0) {
11502 lua_pop(L, 1);
11503 continue;
11504 }
11505
11506 for (i = 0; field && cert_exts[i].ext != NULL; i++) {
11507 if (strcmp(field, cert_exts[i].ext) == 0) {
11508 cert_ext = &cert_exts[i];
11509 break;
11510 }
11511 }
11512
11513 /* this is the default type, the field is not supported */
11514 if (cert_ext == NULL) {
11515 memprintf(&err, "%sUnsupported field '%s'\n", err ? err : "", field);
11516 errcode |= ERR_ALERT | ERR_FATAL;
11517 goto end;
11518 }
11519
11520 /* appply the change on the duplicate */
11521 if (cert_exts->load(filename, payload, ckch, &err) != 0) {
11522 memprintf(&err, "%sCan't load the payload\n", err ? err : "");
11523 errcode |= ERR_ALERT | ERR_FATAL;
11524 goto end;
11525 }
11526 lua_pop(L, 1);
11527 }
11528
11529 /* store the pointers on the lua stack */
11530 lua_ckchs = lua_newuserdata(L, sizeof(struct ckch_store *) * 2);
11531 lua_ckchs[0] = old_ckchs;
11532 lua_ckchs[1] = new_ckchs;
11533 lua_ckchi = lua_newuserdata(L, sizeof(struct ckch_inst *));
11534 *lua_ckchi = NULL;
11535
11536 task_wakeup(hlua->task, TASK_WOKEN_MSG);
11537 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_ckch_commit_yield, TICK_ETERNITY, 0));
11538
11539end:
11540 HA_SPIN_UNLOCK(CKCH_LOCK, &ckch_lock);
11541
11542 if (errcode & ERR_CODE) {
11543 ckch_store_free(new_ckchs);
11544 WILL_LJMP(luaL_error(L, "%s", err));
11545 }
11546 free(err);
11547
11548 return 0;
11549}
11550
William Lallemand52139182022-03-30 15:05:42 +020011551#else
11552
11553__LJMP static int hlua_ckch_set(lua_State *L)
11554{
11555 WILL_LJMP(luaL_error(L, "'CertCache.set' needs an HAProxy built with OpenSSL"));
11556
11557 return 0;
11558}
11559#endif /* ! USE_OPENSSL */
11560
11561
11562
Thierry FOURNIERbabae282015-09-17 11:36:37 +020011563/* This function can fail with an abort() due to an Lua critical error.
11564 * We are in the initialisation process of HAProxy, this abort() is
11565 * tolerated.
11566 */
Thierry Fournierb8cef172020-11-28 15:37:17 +010011567int hlua_post_init_state(lua_State *L)
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +010011568{
11569 struct hlua_init_function *init;
11570 const char *msg;
11571 enum hlua_exec ret;
Thierry Fournierfd107a22016-02-19 19:57:23 +010011572 const char *error;
Thierry Fournier670db242020-11-28 10:49:59 +010011573 const char *kind;
11574 const char *trace;
11575 int return_status = 1;
11576#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504
11577 int nres;
11578#endif
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +010011579
Willy Tarreaucdb53462020-12-02 12:12:00 +010011580 /* disable memory limit checks if limit is not set */
11581 if (!hlua_global_allocator.limit)
11582 hlua_global_allocator.limit = ~hlua_global_allocator.limit;
11583
Ilya Shipitsin856aabc2020-04-16 23:51:34 +050011584 /* Call post initialisation function in safe environment. */
Thierry Fournier3c539322020-11-28 16:05:05 +010011585 if (setjmp(safe_ljmp_env) != 0) {
11586 lua_atpanic(L, hlua_panic_safe);
Thierry Fournierb8cef172020-11-28 15:37:17 +010011587 if (lua_type(L, -1) == LUA_TSTRING)
11588 error = lua_tostring(L, -1);
Thierry Fournier3d4a6752016-02-19 20:53:30 +010011589 else
11590 error = "critical error";
11591 fprintf(stderr, "Lua post-init: %s.\n", error);
11592 exit(1);
Thierry Fournier3c539322020-11-28 16:05:05 +010011593 } else {
11594 lua_atpanic(L, hlua_panic_ljmp);
Thierry Fournier3d4a6752016-02-19 20:53:30 +010011595 }
Frédéric Lécaille54f2bcf2018-08-29 13:46:24 +020011596
Thierry Fournierb8cef172020-11-28 15:37:17 +010011597 hlua_fcn_post_init(L);
Thierry Fournier3d4a6752016-02-19 20:53:30 +010011598
Thierry Fournierc7492592020-11-28 23:57:24 +010011599 list_for_each_entry(init, &hlua_init_functions[hlua_state_id], l) {
Thierry Fournierb8cef172020-11-28 15:37:17 +010011600 lua_rawgeti(L, LUA_REGISTRYINDEX, init->function_ref);
Thierry Fournier670db242020-11-28 10:49:59 +010011601
11602#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504
Thierry Fournierb8cef172020-11-28 15:37:17 +010011603 ret = lua_resume(L, L, 0, &nres);
Thierry Fournier670db242020-11-28 10:49:59 +010011604#else
Thierry Fournierb8cef172020-11-28 15:37:17 +010011605 ret = lua_resume(L, L, 0);
Thierry Fournier670db242020-11-28 10:49:59 +010011606#endif
11607 kind = NULL;
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +010011608 switch (ret) {
Thierry Fournier670db242020-11-28 10:49:59 +010011609
11610 case LUA_OK:
Thierry Fournierb8cef172020-11-28 15:37:17 +010011611 lua_pop(L, -1);
Thierry Fournier13d08b72020-11-28 11:02:58 +010011612 break;
Thierry Fournier670db242020-11-28 10:49:59 +010011613
11614 case LUA_ERRERR:
11615 kind = "message handler error";
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -070011616 /* Fall through */
Thierry Fournier670db242020-11-28 10:49:59 +010011617 case LUA_ERRRUN:
11618 if (!kind)
11619 kind = "runtime error";
Thierry Fournierb8cef172020-11-28 15:37:17 +010011620 msg = lua_tostring(L, -1);
11621 lua_settop(L, 0); /* Empty the stack. */
11622 lua_pop(L, 1);
Christopher Fauletd09cc512021-03-24 14:48:45 +010011623 trace = hlua_traceback(L, ", ");
Thierry Fournier670db242020-11-28 10:49:59 +010011624 if (msg)
11625 ha_alert("Lua init: %s: '%s' from %s\n", kind, msg, trace);
11626 else
11627 ha_alert("Lua init: unknown %s from %s\n", kind, trace);
11628 return_status = 0;
11629 break;
11630
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +010011631 default:
Thierry Fournier670db242020-11-28 10:49:59 +010011632 /* Unknown error */
11633 kind = "Unknown error";
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -070011634 /* Fall through */
Thierry Fournier670db242020-11-28 10:49:59 +010011635 case LUA_YIELD:
11636 /* yield is not configured at this step, this state doesn't happen */
11637 if (!kind)
11638 kind = "yield not allowed";
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -070011639 /* Fall through */
Thierry Fournier670db242020-11-28 10:49:59 +010011640 case LUA_ERRMEM:
11641 if (!kind)
11642 kind = "out of memory error";
Thierry Fournierb8cef172020-11-28 15:37:17 +010011643 lua_settop(L, 0);
11644 lua_pop(L, 1);
Christopher Fauletd09cc512021-03-24 14:48:45 +010011645 trace = hlua_traceback(L, ", ");
Thierry Fournier670db242020-11-28 10:49:59 +010011646 ha_alert("Lua init: %s: %s\n", kind, trace);
11647 return_status = 0;
11648 break;
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +010011649 }
Thierry Fournier670db242020-11-28 10:49:59 +010011650 if (!return_status)
11651 break;
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +010011652 }
Thierry Fournier3c539322020-11-28 16:05:05 +010011653
11654 lua_atpanic(L, hlua_panic_safe);
Thierry Fournier670db242020-11-28 10:49:59 +010011655 return return_status;
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +010011656}
11657
Thierry Fournierb8cef172020-11-28 15:37:17 +010011658int hlua_post_init()
11659{
Thierry Fournier59f11be2020-11-29 00:37:41 +010011660 int ret;
11661 int i;
11662 int errors;
11663 char *err = NULL;
11664 struct hlua_function *fcn;
Christopher Faulet69c581a2021-05-31 08:54:04 +020011665 struct hlua_reg_filter *reg_flt;
Thierry Fournier59f11be2020-11-29 00:37:41 +010011666
Willy Tarreaub1310492021-08-30 09:35:18 +020011667#if defined(USE_OPENSSL)
Thierry Fournierb8cef172020-11-28 15:37:17 +010011668 /* Initialize SSL server. */
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +010011669 if (socket_ssl->xprt->prepare_srv) {
Thierry Fournierb8cef172020-11-28 15:37:17 +010011670 int saved_used_backed = global.ssl_used_backend;
11671 // don't affect maxconn automatic computation
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +010011672 socket_ssl->xprt->prepare_srv(socket_ssl);
Thierry Fournierb8cef172020-11-28 15:37:17 +010011673 global.ssl_used_backend = saved_used_backed;
11674 }
11675#endif
11676
Thierry Fournierc7492592020-11-28 23:57:24 +010011677 /* Perform post init of common thread */
11678 hlua_state_id = 0;
Willy Tarreau43ab05b2021-09-28 09:43:11 +020011679 ha_set_thread(&ha_thread_info[0]);
Thierry Fournier59f11be2020-11-29 00:37:41 +010011680 ret = hlua_post_init_state(hlua_states[hlua_state_id]);
11681 if (ret == 0)
11682 return 0;
11683
11684 /* init remaining lua states and load files */
11685 for (hlua_state_id = 2; hlua_state_id < global.nbthread + 1; hlua_state_id++) {
11686
11687 /* set thread context */
Willy Tarreau43ab05b2021-09-28 09:43:11 +020011688 ha_set_thread(&ha_thread_info[hlua_state_id - 1]);
Thierry Fournier59f11be2020-11-29 00:37:41 +010011689
11690 /* Init lua state */
11691 hlua_states[hlua_state_id] = hlua_init_state(hlua_state_id);
11692
11693 /* Load lua files */
11694 for (i = 0; per_thread_load && per_thread_load[i]; i++) {
11695 ret = hlua_load_state(per_thread_load[i], hlua_states[hlua_state_id], &err);
11696 if (ret != 0) {
11697 ha_alert("Lua init: %s\n", err);
11698 return 0;
11699 }
11700 }
11701 }
11702
11703 /* Reset thread context */
Willy Tarreau43ab05b2021-09-28 09:43:11 +020011704 ha_set_thread(NULL);
Thierry Fournier59f11be2020-11-29 00:37:41 +010011705
11706 /* Execute post init for all states */
11707 for (hlua_state_id = 1; hlua_state_id < global.nbthread + 1; hlua_state_id++) {
11708
11709 /* set thread context */
Willy Tarreau43ab05b2021-09-28 09:43:11 +020011710 ha_set_thread(&ha_thread_info[hlua_state_id - 1]);
Thierry Fournier59f11be2020-11-29 00:37:41 +010011711
11712 /* run post init */
11713 ret = hlua_post_init_state(hlua_states[hlua_state_id]);
11714 if (ret == 0)
11715 return 0;
11716 }
11717
11718 /* Reset thread context */
Willy Tarreau43ab05b2021-09-28 09:43:11 +020011719 ha_set_thread(NULL);
Thierry Fournier59f11be2020-11-29 00:37:41 +010011720
11721 /* control functions registering. Each function must have:
11722 * - only the function_ref[0] set positive and all other to -1
11723 * - only the function_ref[0] set to -1 and all other positive
11724 * This ensure a same reference is not used both in shared
11725 * lua state and thread dedicated lua state. Note: is the case
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +050011726 * reach, the shared state is priority, but the bug will be
Thierry Fournier59f11be2020-11-29 00:37:41 +010011727 * complicated to found for the end user.
11728 */
11729 errors = 0;
11730 list_for_each_entry(fcn, &referenced_functions, l) {
11731 ret = 0;
11732 for (i = 1; i < global.nbthread + 1; i++) {
11733 if (fcn->function_ref[i] == -1)
11734 ret--;
11735 else
11736 ret++;
11737 }
11738 if (abs(ret) != global.nbthread) {
11739 ha_alert("Lua function '%s' is not referenced in all thread. "
11740 "Expect function in all thread or in none thread.\n", fcn->name);
11741 errors++;
11742 continue;
11743 }
11744
11745 if ((fcn->function_ref[0] == -1) == (ret < 0)) {
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +050011746 ha_alert("Lua function '%s' is referenced both ins shared Lua context (through lua-load) "
11747 "and per-thread Lua context (through lua-load-per-thread). these two context "
Thierry Fournier59f11be2020-11-29 00:37:41 +010011748 "exclusive.\n", fcn->name);
11749 errors++;
11750 }
11751 }
11752
Christopher Faulet69c581a2021-05-31 08:54:04 +020011753 /* Do the same with registered filters */
11754 list_for_each_entry(reg_flt, &referenced_filters, l) {
11755 ret = 0;
11756 for (i = 1; i < global.nbthread + 1; i++) {
11757 if (reg_flt->flt_ref[i] == -1)
11758 ret--;
11759 else
11760 ret++;
11761 }
11762 if (abs(ret) != global.nbthread) {
11763 ha_alert("Lua filter '%s' is not referenced in all thread. "
11764 "Expect function in all thread or in none thread.\n", reg_flt->name);
11765 errors++;
11766 continue;
11767 }
11768
11769 if ((reg_flt->flt_ref[0] == -1) == (ret < 0)) {
11770 ha_alert("Lua filter '%s' is referenced both ins shared Lua context (through lua-load) "
11771 "and per-thread Lua context (through lua-load-per-thread). these two context "
11772 "exclusive.\n", fcn->name);
11773 errors++;
11774 }
11775 }
11776
11777
Thierry Fournier59f11be2020-11-29 00:37:41 +010011778 if (errors > 0)
11779 return 0;
11780
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +050011781 /* after this point, this global will no longer be used, so set to
Thierry Fournier59f11be2020-11-29 00:37:41 +010011782 * -1 in order to have probably a segfault if someone use it
11783 */
11784 hlua_state_id = -1;
11785
11786 return 1;
Thierry Fournierb8cef172020-11-28 15:37:17 +010011787}
11788
Willy Tarreau32f61e22015-03-18 17:54:59 +010011789/* The memory allocator used by the Lua stack. <ud> is a pointer to the
11790 * allocator's context. <ptr> is the pointer to alloc/free/realloc. <osize>
11791 * is the previously allocated size or the kind of object in case of a new
Willy Tarreaud36c7fa2020-12-02 12:26:29 +010011792 * allocation. <nsize> is the requested new size. A new allocation is
11793 * indicated by <ptr> being NULL. A free is indicated by <nsize> being
Willy Tarreaucdb53462020-12-02 12:12:00 +010011794 * zero. This one verifies that the limits are respected but is optimized
11795 * for the fast case where limits are not used, hence stats are not updated.
Willy Tarreaua5efdff2021-10-22 16:00:02 +020011796 *
11797 * Warning: while this API ressembles glibc's realloc() a lot, glibc surpasses
11798 * POSIX by making realloc(ptr,0) an effective free(), but others do not do
11799 * that and will simply allocate zero as if it were the result of malloc(0),
11800 * so mapping this onto realloc() will lead to memory leaks on non-glibc
11801 * systems.
Willy Tarreau32f61e22015-03-18 17:54:59 +010011802 */
11803static void *hlua_alloc(void *ud, void *ptr, size_t osize, size_t nsize)
11804{
11805 struct hlua_mem_allocator *zone = ud;
Willy Tarreaucdb53462020-12-02 12:12:00 +010011806 size_t limit, old, new;
11807
11808 /* a limit of ~0 means unlimited and boot complete, so there's no need
11809 * for accounting anymore.
11810 */
Willy Tarreaua5efdff2021-10-22 16:00:02 +020011811 if (likely(~zone->limit == 0)) {
11812 if (!nsize)
11813 ha_free(&ptr);
11814 else
11815 ptr = realloc(ptr, nsize);
11816 return ptr;
11817 }
Willy Tarreau32f61e22015-03-18 17:54:59 +010011818
Willy Tarreaud36c7fa2020-12-02 12:26:29 +010011819 if (!ptr)
11820 osize = 0;
Willy Tarreau32f61e22015-03-18 17:54:59 +010011821
Willy Tarreaucdb53462020-12-02 12:12:00 +010011822 /* enforce strict limits across all threads */
11823 limit = zone->limit;
11824 old = _HA_ATOMIC_LOAD(&zone->allocated);
11825 do {
11826 new = old + nsize - osize;
11827 if (unlikely(nsize && limit && new > limit))
11828 return NULL;
11829 } while (!_HA_ATOMIC_CAS(&zone->allocated, &old, new));
Willy Tarreau32f61e22015-03-18 17:54:59 +010011830
Willy Tarreaua5efdff2021-10-22 16:00:02 +020011831 if (!nsize)
11832 ha_free(&ptr);
11833 else
11834 ptr = realloc(ptr, nsize);
Willy Tarreaucdb53462020-12-02 12:12:00 +010011835
11836 if (unlikely(!ptr && nsize)) // failed
11837 _HA_ATOMIC_SUB(&zone->allocated, nsize - osize);
11838
11839 __ha_barrier_atomic_store();
Willy Tarreau32f61e22015-03-18 17:54:59 +010011840 return ptr;
11841}
11842
Thierry Fournierecb83c22020-11-28 15:49:44 +010011843/* This function can fail with an abort() due to a Lua critical error.
Thierry FOURNIERbabae282015-09-17 11:36:37 +020011844 * We are in the initialisation process of HAProxy, this abort() is
11845 * tolerated.
11846 */
Thierry Fournierecb83c22020-11-28 15:49:44 +010011847lua_State *hlua_init_state(int thread_num)
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +010011848{
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +010011849 int i;
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +010011850 int idx;
11851 struct sample_fetch *sf;
Thierry FOURNIER594afe72015-03-10 23:58:30 +010011852 struct sample_conv *sc;
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +010011853 char *p;
Thierry Fournierfd107a22016-02-19 19:57:23 +010011854 const char *error_msg;
Thierry Fournier4234dbd2020-11-28 13:18:23 +010011855 void **context;
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011856 lua_State *L;
Thierry Fournier59f11be2020-11-29 00:37:41 +010011857 struct prepend_path *pp;
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +010011858
Thierry FOURNIER380d0932015-01-23 14:27:52 +010011859 /* Init main lua stack. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011860 L = lua_newstate(hlua_alloc, &hlua_global_allocator);
Thierry FOURNIER380d0932015-01-23 14:27:52 +010011861
Thierry Fournier4234dbd2020-11-28 13:18:23 +010011862 /* Initialise Lua context to NULL */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011863 context = lua_getextraspace(L);
Thierry Fournier4234dbd2020-11-28 13:18:23 +010011864 *context = NULL;
11865
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -080011866 /* From this point, until the end of the initialisation function,
Thierry FOURNIERbabae282015-09-17 11:36:37 +020011867 * the Lua function can fail with an abort. We are in the initialisation
11868 * process of HAProxy, this abort() is tolerated.
11869 */
11870
Thierry Fournier3c539322020-11-28 16:05:05 +010011871 /* Call post initialisation function in safe environment. */
11872 if (setjmp(safe_ljmp_env) != 0) {
11873 lua_atpanic(L, hlua_panic_safe);
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011874 if (lua_type(L, -1) == LUA_TSTRING)
11875 error_msg = lua_tostring(L, -1);
Thierry Fournier2f05cc62020-11-28 16:08:02 +010011876 else
11877 error_msg = "critical error";
11878 fprintf(stderr, "Lua init: %s.\n", error_msg);
11879 exit(1);
Thierry Fournier3c539322020-11-28 16:05:05 +010011880 } else {
11881 lua_atpanic(L, hlua_panic_ljmp);
Thierry Fournier2f05cc62020-11-28 16:08:02 +010011882 }
11883
Thierry FOURNIER380d0932015-01-23 14:27:52 +010011884 /* Initialise lua. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011885 luaL_openlibs(L);
Tim Duesterhus541fe1e2020-01-12 13:55:41 +010011886#define HLUA_PREPEND_PATH_TOSTRING1(x) #x
11887#define HLUA_PREPEND_PATH_TOSTRING(x) HLUA_PREPEND_PATH_TOSTRING1(x)
11888#ifdef HLUA_PREPEND_PATH
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011889 hlua_prepend_path(L, "path", HLUA_PREPEND_PATH_TOSTRING(HLUA_PREPEND_PATH));
Tim Duesterhus541fe1e2020-01-12 13:55:41 +010011890#endif
11891#ifdef HLUA_PREPEND_CPATH
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011892 hlua_prepend_path(L, "cpath", HLUA_PREPEND_PATH_TOSTRING(HLUA_PREPEND_CPATH));
Tim Duesterhus541fe1e2020-01-12 13:55:41 +010011893#endif
11894#undef HLUA_PREPEND_PATH_TOSTRING
11895#undef HLUA_PREPEND_PATH_TOSTRING1
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +010011896
Thierry Fournier59f11be2020-11-29 00:37:41 +010011897 /* Apply configured prepend path */
11898 list_for_each_entry(pp, &prepend_path_list, l)
11899 hlua_prepend_path(L, pp->type, pp->path);
11900
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +010011901 /*
11902 *
11903 * Create "core" object.
11904 *
11905 */
11906
Thierry FOURNIERa2d8c652015-03-11 17:29:39 +010011907 /* This table entry is the object "core" base. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011908 lua_newtable(L);
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +010011909
Thierry Fournierecb83c22020-11-28 15:49:44 +010011910 /* set the thread id */
11911 hlua_class_const_int(L, "thread", thread_num);
11912
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +010011913 /* Push the loglevel constants. */
Willy Tarreau80f5fae2015-02-27 16:38:20 +010011914 for (i = 0; i < NB_LOG_LEVELS; i++)
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011915 hlua_class_const_int(L, log_levels[i], i);
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +010011916
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +010011917 /* Register special functions. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011918 hlua_class_function(L, "register_init", hlua_register_init);
11919 hlua_class_function(L, "register_task", hlua_register_task);
11920 hlua_class_function(L, "register_fetches", hlua_register_fetches);
11921 hlua_class_function(L, "register_converters", hlua_register_converters);
11922 hlua_class_function(L, "register_action", hlua_register_action);
11923 hlua_class_function(L, "register_service", hlua_register_service);
11924 hlua_class_function(L, "register_cli", hlua_register_cli);
Christopher Faulet69c581a2021-05-31 08:54:04 +020011925 hlua_class_function(L, "register_filter", hlua_register_filter);
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011926 hlua_class_function(L, "yield", hlua_yield);
11927 hlua_class_function(L, "set_nice", hlua_set_nice);
11928 hlua_class_function(L, "sleep", hlua_sleep);
11929 hlua_class_function(L, "msleep", hlua_msleep);
11930 hlua_class_function(L, "add_acl", hlua_add_acl);
11931 hlua_class_function(L, "del_acl", hlua_del_acl);
11932 hlua_class_function(L, "set_map", hlua_set_map);
11933 hlua_class_function(L, "del_map", hlua_del_map);
11934 hlua_class_function(L, "tcp", hlua_socket_new);
William Lallemand3956c4e2021-09-21 16:25:15 +020011935 hlua_class_function(L, "httpclient", hlua_httpclient_new);
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011936 hlua_class_function(L, "log", hlua_log);
11937 hlua_class_function(L, "Debug", hlua_log_debug);
11938 hlua_class_function(L, "Info", hlua_log_info);
11939 hlua_class_function(L, "Warning", hlua_log_warning);
11940 hlua_class_function(L, "Alert", hlua_log_alert);
11941 hlua_class_function(L, "done", hlua_done);
11942 hlua_fcn_reg_core_fcn(L);
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +010011943
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011944 lua_setglobal(L, "core");
Thierry FOURNIER65f34c62015-02-16 20:11:43 +010011945
11946 /*
11947 *
Christopher Faulet0f3c8902020-01-31 18:57:12 +010011948 * Create "act" object.
11949 *
11950 */
11951
11952 /* This table entry is the object "act" base. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011953 lua_newtable(L);
Christopher Faulet0f3c8902020-01-31 18:57:12 +010011954
11955 /* push action return constants */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011956 hlua_class_const_int(L, "CONTINUE", ACT_RET_CONT);
11957 hlua_class_const_int(L, "STOP", ACT_RET_STOP);
11958 hlua_class_const_int(L, "YIELD", ACT_RET_YIELD);
11959 hlua_class_const_int(L, "ERROR", ACT_RET_ERR);
11960 hlua_class_const_int(L, "DONE", ACT_RET_DONE);
11961 hlua_class_const_int(L, "DENY", ACT_RET_DENY);
11962 hlua_class_const_int(L, "ABORT", ACT_RET_ABRT);
11963 hlua_class_const_int(L, "INVALID", ACT_RET_INV);
Christopher Faulet0f3c8902020-01-31 18:57:12 +010011964
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011965 hlua_class_function(L, "wake_time", hlua_set_wake_time);
Christopher Faulet2c2c2e32020-01-31 19:07:52 +010011966
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011967 lua_setglobal(L, "act");
Christopher Faulet0f3c8902020-01-31 18:57:12 +010011968
11969 /*
11970 *
Christopher Faulet69c581a2021-05-31 08:54:04 +020011971 * Create "Filter" object.
11972 *
11973 */
11974
11975 /* This table entry is the object "filter" base. */
11976 lua_newtable(L);
11977
11978 /* push flags and constants */
11979 hlua_class_const_int(L, "CONTINUE", 1);
11980 hlua_class_const_int(L, "WAIT", 0);
11981 hlua_class_const_int(L, "ERROR", -1);
11982
11983 hlua_class_const_int(L, "FLT_CFG_FL_HTX", FLT_CFG_FL_HTX);
11984
Christopher Fauletc404f112020-02-26 15:03:09 +010011985 hlua_class_function(L, "wake_time", hlua_set_wake_time);
11986 hlua_class_function(L, "register_data_filter", hlua_register_data_filter);
11987 hlua_class_function(L, "unregister_data_filter", hlua_unregister_data_filter);
11988
Christopher Faulet69c581a2021-05-31 08:54:04 +020011989 lua_setglobal(L, "filter");
11990
11991 /*
11992 *
Thierry FOURNIER3def3932015-04-07 11:27:54 +020011993 * Register class Map
11994 *
11995 */
11996
11997 /* This table entry is the object "Map" base. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011998 lua_newtable(L);
Thierry FOURNIER3def3932015-04-07 11:27:54 +020011999
12000 /* register pattern types. */
12001 for (i=0; i<PAT_MATCH_NUM; i++)
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012002 hlua_class_const_int(L, pat_match_names[i], i);
Thierry FOURNIER4dc71972017-01-28 08:33:08 +010012003 for (i=0; i<PAT_MATCH_NUM; i++) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +020012004 snprintf(trash.area, trash.size, "_%s", pat_match_names[i]);
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012005 hlua_class_const_int(L, trash.area, i);
Thierry FOURNIER4dc71972017-01-28 08:33:08 +010012006 }
Thierry FOURNIER3def3932015-04-07 11:27:54 +020012007
12008 /* register constructor. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012009 hlua_class_function(L, "new", hlua_map_new);
Thierry FOURNIER3def3932015-04-07 11:27:54 +020012010
12011 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012012 lua_newtable(L);
Thierry FOURNIER3def3932015-04-07 11:27:54 +020012013
Ilya Shipitsind4259502020-04-08 01:07:56 +050012014 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012015 lua_pushstring(L, "__index");
12016 lua_newtable(L);
Thierry FOURNIER3def3932015-04-07 11:27:54 +020012017
12018 /* Register . */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012019 hlua_class_function(L, "lookup", hlua_map_lookup);
12020 hlua_class_function(L, "slookup", hlua_map_slookup);
Thierry FOURNIER3def3932015-04-07 11:27:54 +020012021
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012022 lua_rawset(L, -3);
Thierry FOURNIER3def3932015-04-07 11:27:54 +020012023
Thierry Fournier45e78d72016-02-19 18:34:46 +010012024 /* Register previous table in the registry with reference and named entry.
12025 * The function hlua_register_metatable() pops the stack, so we
12026 * previously create a copy of the table.
12027 */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012028 lua_pushvalue(L, -1); /* Copy the -1 entry and push it on the stack. */
12029 class_map_ref = hlua_register_metatable(L, CLASS_MAP);
Thierry FOURNIER3def3932015-04-07 11:27:54 +020012030
12031 /* Assign the metatable to the mai Map object. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012032 lua_setmetatable(L, -2);
Thierry FOURNIER3def3932015-04-07 11:27:54 +020012033
12034 /* Set a name to the table. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012035 lua_setglobal(L, "Map");
Thierry FOURNIER3def3932015-04-07 11:27:54 +020012036
12037 /*
12038 *
William Lallemand30fcca12022-03-30 12:03:12 +020012039 * Register "CertCache" class
12040 *
12041 */
12042
12043 /* Create and fill the metatable. */
12044 lua_newtable(L);
12045 /* Register */
12046 hlua_class_function(L, "set", hlua_ckch_set);
12047 lua_setglobal(L, CLASS_CERTCACHE); /* Create global object called Regex */
12048
12049 /*
12050 *
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +010012051 * Register class Channel
12052 *
12053 */
12054
12055 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012056 lua_newtable(L);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +010012057
Ilya Shipitsind4259502020-04-08 01:07:56 +050012058 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012059 lua_pushstring(L, "__index");
12060 lua_newtable(L);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +010012061
12062 /* Register . */
Christopher Faulet6a79fc12021-08-06 16:02:36 +020012063 hlua_class_function(L, "data", hlua_channel_get_data);
12064 hlua_class_function(L, "line", hlua_channel_get_line);
12065 hlua_class_function(L, "set", hlua_channel_set_data);
12066 hlua_class_function(L, "remove", hlua_channel_del_data);
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012067 hlua_class_function(L, "append", hlua_channel_append);
Christopher Faulet6a79fc12021-08-06 16:02:36 +020012068 hlua_class_function(L, "prepend", hlua_channel_prepend);
12069 hlua_class_function(L, "insert", hlua_channel_insert_data);
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012070 hlua_class_function(L, "send", hlua_channel_send);
12071 hlua_class_function(L, "forward", hlua_channel_forward);
Christopher Faulet6a79fc12021-08-06 16:02:36 +020012072 hlua_class_function(L, "input", hlua_channel_get_in_len);
12073 hlua_class_function(L, "output", hlua_channel_get_out_len);
12074 hlua_class_function(L, "may_recv", hlua_channel_may_recv);
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012075 hlua_class_function(L, "is_full", hlua_channel_is_full);
12076 hlua_class_function(L, "is_resp", hlua_channel_is_resp);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +010012077
Christopher Faulet6a79fc12021-08-06 16:02:36 +020012078 /* Deprecated API */
12079 hlua_class_function(L, "get", hlua_channel_get);
12080 hlua_class_function(L, "dup", hlua_channel_dup);
12081 hlua_class_function(L, "getline", hlua_channel_getline);
12082 hlua_class_function(L, "get_in_len", hlua_channel_get_in_len);
12083 hlua_class_function(L, "get_out_len", hlua_channel_get_out_len);
12084
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012085 lua_rawset(L, -3);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +010012086
12087 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012088 class_channel_ref = hlua_register_metatable(L, CLASS_CHANNEL);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +010012089
12090 /*
12091 *
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +010012092 * Register class Fetches
Thierry FOURNIER65f34c62015-02-16 20:11:43 +010012093 *
12094 */
12095
12096 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012097 lua_newtable(L);
Thierry FOURNIER65f34c62015-02-16 20:11:43 +010012098
Ilya Shipitsind4259502020-04-08 01:07:56 +050012099 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012100 lua_pushstring(L, "__index");
12101 lua_newtable(L);
Thierry FOURNIER65f34c62015-02-16 20:11:43 +010012102
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +010012103 /* Browse existing fetches and create the associated
12104 * object method.
12105 */
12106 sf = NULL;
12107 while ((sf = sample_fetch_getnext(sf, &idx)) != NULL) {
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +010012108 /* gL.Tua doesn't support '.' and '-' in the function names, replace it
12109 * by an underscore.
12110 */
Willy Tarreau5ef96562021-08-26 16:48:53 +020012111 strlcpy2(trash.area, sf->kw, trash.size);
Willy Tarreau843b7cb2018-07-13 10:54:26 +020012112 for (p = trash.area; *p; p++)
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +010012113 if (*p == '.' || *p == '-' || *p == '+')
12114 *p = '_';
12115
12116 /* Register the function. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012117 lua_pushstring(L, trash.area);
12118 lua_pushlightuserdata(L, sf);
12119 lua_pushcclosure(L, hlua_run_sample_fetch, 1);
12120 lua_rawset(L, -3);
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +010012121 }
12122
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012123 lua_rawset(L, -3);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +010012124
12125 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012126 class_fetches_ref = hlua_register_metatable(L, CLASS_FETCHES);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +010012127
12128 /*
12129 *
Thierry FOURNIER594afe72015-03-10 23:58:30 +010012130 * Register class Converters
12131 *
12132 */
12133
12134 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012135 lua_newtable(L);
Thierry FOURNIER594afe72015-03-10 23:58:30 +010012136
12137 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012138 lua_pushstring(L, "__index");
12139 lua_newtable(L);
Thierry FOURNIER594afe72015-03-10 23:58:30 +010012140
12141 /* Browse existing converters and create the associated
12142 * object method.
12143 */
12144 sc = NULL;
12145 while ((sc = sample_conv_getnext(sc, &idx)) != NULL) {
Thierry FOURNIER594afe72015-03-10 23:58:30 +010012146 /* gL.Tua doesn't support '.' and '-' in the function names, replace it
12147 * by an underscore.
12148 */
Willy Tarreau5ef96562021-08-26 16:48:53 +020012149 strlcpy2(trash.area, sc->kw, trash.size);
Willy Tarreau843b7cb2018-07-13 10:54:26 +020012150 for (p = trash.area; *p; p++)
Thierry FOURNIER594afe72015-03-10 23:58:30 +010012151 if (*p == '.' || *p == '-' || *p == '+')
12152 *p = '_';
12153
12154 /* Register the function. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012155 lua_pushstring(L, trash.area);
12156 lua_pushlightuserdata(L, sc);
12157 lua_pushcclosure(L, hlua_run_sample_conv, 1);
12158 lua_rawset(L, -3);
Thierry FOURNIER594afe72015-03-10 23:58:30 +010012159 }
12160
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012161 lua_rawset(L, -3);
Thierry FOURNIER594afe72015-03-10 23:58:30 +010012162
12163 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012164 class_converters_ref = hlua_register_metatable(L, CLASS_CONVERTERS);
Thierry FOURNIER594afe72015-03-10 23:58:30 +010012165
12166 /*
12167 *
Thierry FOURNIER08504f42015-03-16 14:17:08 +010012168 * Register class HTTP
12169 *
12170 */
12171
12172 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012173 lua_newtable(L);
Thierry FOURNIER08504f42015-03-16 14:17:08 +010012174
Ilya Shipitsind4259502020-04-08 01:07:56 +050012175 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012176 lua_pushstring(L, "__index");
12177 lua_newtable(L);
Thierry FOURNIER08504f42015-03-16 14:17:08 +010012178
12179 /* Register Lua functions. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012180 hlua_class_function(L, "req_get_headers",hlua_http_req_get_headers);
12181 hlua_class_function(L, "req_del_header", hlua_http_req_del_hdr);
12182 hlua_class_function(L, "req_rep_header", hlua_http_req_rep_hdr);
12183 hlua_class_function(L, "req_rep_value", hlua_http_req_rep_val);
12184 hlua_class_function(L, "req_add_header", hlua_http_req_add_hdr);
12185 hlua_class_function(L, "req_set_header", hlua_http_req_set_hdr);
12186 hlua_class_function(L, "req_set_method", hlua_http_req_set_meth);
12187 hlua_class_function(L, "req_set_path", hlua_http_req_set_path);
12188 hlua_class_function(L, "req_set_query", hlua_http_req_set_query);
12189 hlua_class_function(L, "req_set_uri", hlua_http_req_set_uri);
Thierry FOURNIER08504f42015-03-16 14:17:08 +010012190
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012191 hlua_class_function(L, "res_get_headers",hlua_http_res_get_headers);
12192 hlua_class_function(L, "res_del_header", hlua_http_res_del_hdr);
12193 hlua_class_function(L, "res_rep_header", hlua_http_res_rep_hdr);
12194 hlua_class_function(L, "res_rep_value", hlua_http_res_rep_val);
12195 hlua_class_function(L, "res_add_header", hlua_http_res_add_hdr);
12196 hlua_class_function(L, "res_set_header", hlua_http_res_set_hdr);
12197 hlua_class_function(L, "res_set_status", hlua_http_res_set_status);
Thierry FOURNIER08504f42015-03-16 14:17:08 +010012198
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012199 lua_rawset(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +010012200
12201 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012202 class_http_ref = hlua_register_metatable(L, CLASS_HTTP);
Thierry FOURNIER08504f42015-03-16 14:17:08 +010012203
Christopher Fauletdf97ac42020-02-26 16:57:19 +010012204 /*
12205 *
12206 * Register class HTTPMessage
12207 *
12208 */
12209
12210 /* Create and fill the metatable. */
12211 lua_newtable(L);
12212
Ilya Shipitsinff0f2782021-08-22 22:18:07 +050012213 /* Create and fill the __index entry. */
Christopher Fauletdf97ac42020-02-26 16:57:19 +010012214 lua_pushstring(L, "__index");
12215 lua_newtable(L);
12216
12217 /* Register Lua functions. */
12218 hlua_class_function(L, "is_resp", hlua_http_msg_is_resp);
12219 hlua_class_function(L, "get_stline", hlua_http_msg_get_stline);
12220 hlua_class_function(L, "get_headers", hlua_http_msg_get_headers);
12221 hlua_class_function(L, "del_header", hlua_http_msg_del_hdr);
12222 hlua_class_function(L, "rep_header", hlua_http_msg_rep_hdr);
12223 hlua_class_function(L, "rep_value", hlua_http_msg_rep_val);
12224 hlua_class_function(L, "add_header", hlua_http_msg_add_hdr);
12225 hlua_class_function(L, "set_header", hlua_http_msg_set_hdr);
12226 hlua_class_function(L, "set_method", hlua_http_msg_set_meth);
12227 hlua_class_function(L, "set_path", hlua_http_msg_set_path);
12228 hlua_class_function(L, "set_query", hlua_http_msg_set_query);
12229 hlua_class_function(L, "set_uri", hlua_http_msg_set_uri);
12230 hlua_class_function(L, "set_status", hlua_http_msg_set_status);
12231 hlua_class_function(L, "is_full", hlua_http_msg_is_full);
12232 hlua_class_function(L, "may_recv", hlua_http_msg_may_recv);
12233 hlua_class_function(L, "eom", hlua_http_msg_is_eom);
12234 hlua_class_function(L, "input", hlua_http_msg_get_in_len);
12235 hlua_class_function(L, "output", hlua_http_msg_get_out_len);
12236
12237 hlua_class_function(L, "body", hlua_http_msg_get_body);
12238 hlua_class_function(L, "set", hlua_http_msg_set_data);
12239 hlua_class_function(L, "remove", hlua_http_msg_del_data);
12240 hlua_class_function(L, "append", hlua_http_msg_append);
12241 hlua_class_function(L, "prepend", hlua_http_msg_prepend);
12242 hlua_class_function(L, "insert", hlua_http_msg_insert_data);
12243 hlua_class_function(L, "set_eom", hlua_http_msg_set_eom);
12244 hlua_class_function(L, "unset_eom", hlua_http_msg_unset_eom);
12245
12246 hlua_class_function(L, "send", hlua_http_msg_send);
12247 hlua_class_function(L, "forward", hlua_http_msg_forward);
12248
12249 lua_rawset(L, -3);
12250
12251 /* Register previous table in the registry with reference and named entry. */
12252 class_http_msg_ref = hlua_register_metatable(L, CLASS_HTTP_MSG);
William Lallemand3956c4e2021-09-21 16:25:15 +020012253
12254 /*
12255 *
12256 * Register class HTTPClient
12257 *
12258 */
12259
12260 /* Create and fill the metatable. */
12261 lua_newtable(L);
12262 lua_pushstring(L, "__index");
12263 lua_newtable(L);
12264 hlua_class_function(L, "get", hlua_httpclient_get);
William Lallemanddc2cc902021-10-26 11:43:26 +020012265 hlua_class_function(L, "head", hlua_httpclient_head);
12266 hlua_class_function(L, "put", hlua_httpclient_put);
12267 hlua_class_function(L, "post", hlua_httpclient_post);
12268 hlua_class_function(L, "delete", hlua_httpclient_delete);
William Lallemand3956c4e2021-09-21 16:25:15 +020012269 lua_settable(L, -3); /* Sets the __index entry. */
William Lallemandf77f1de2021-09-28 19:10:38 +020012270 /* Register the garbage collector entry. */
12271 lua_pushstring(L, "__gc");
12272 lua_pushcclosure(L, hlua_httpclient_gc, 0);
12273 lua_settable(L, -3); /* Push the last 2 entries in the table at index -3 */
12274
William Lallemand3956c4e2021-09-21 16:25:15 +020012275
12276
12277 class_httpclient_ref = hlua_register_metatable(L, CLASS_HTTPCLIENT);
Thierry FOURNIER08504f42015-03-16 14:17:08 +010012278 /*
12279 *
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +020012280 * Register class AppletTCP
12281 *
12282 */
12283
12284 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012285 lua_newtable(L);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +020012286
Ilya Shipitsind4259502020-04-08 01:07:56 +050012287 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012288 lua_pushstring(L, "__index");
12289 lua_newtable(L);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +020012290
12291 /* Register Lua functions. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012292 hlua_class_function(L, "getline", hlua_applet_tcp_getline);
12293 hlua_class_function(L, "receive", hlua_applet_tcp_recv);
12294 hlua_class_function(L, "send", hlua_applet_tcp_send);
12295 hlua_class_function(L, "set_priv", hlua_applet_tcp_set_priv);
12296 hlua_class_function(L, "get_priv", hlua_applet_tcp_get_priv);
12297 hlua_class_function(L, "set_var", hlua_applet_tcp_set_var);
12298 hlua_class_function(L, "unset_var", hlua_applet_tcp_unset_var);
12299 hlua_class_function(L, "get_var", hlua_applet_tcp_get_var);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +020012300
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012301 lua_settable(L, -3);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +020012302
12303 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012304 class_applet_tcp_ref = hlua_register_metatable(L, CLASS_APPLET_TCP);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +020012305
12306 /*
12307 *
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +020012308 * Register class AppletHTTP
12309 *
12310 */
12311
12312 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012313 lua_newtable(L);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +020012314
Ilya Shipitsind4259502020-04-08 01:07:56 +050012315 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012316 lua_pushstring(L, "__index");
12317 lua_newtable(L);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +020012318
12319 /* Register Lua functions. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012320 hlua_class_function(L, "set_priv", hlua_applet_http_set_priv);
12321 hlua_class_function(L, "get_priv", hlua_applet_http_get_priv);
12322 hlua_class_function(L, "set_var", hlua_applet_http_set_var);
12323 hlua_class_function(L, "unset_var", hlua_applet_http_unset_var);
12324 hlua_class_function(L, "get_var", hlua_applet_http_get_var);
12325 hlua_class_function(L, "getline", hlua_applet_http_getline);
12326 hlua_class_function(L, "receive", hlua_applet_http_recv);
12327 hlua_class_function(L, "send", hlua_applet_http_send);
12328 hlua_class_function(L, "add_header", hlua_applet_http_addheader);
12329 hlua_class_function(L, "set_status", hlua_applet_http_status);
12330 hlua_class_function(L, "start_response", hlua_applet_http_start_response);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +020012331
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012332 lua_settable(L, -3);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +020012333
12334 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012335 class_applet_http_ref = hlua_register_metatable(L, CLASS_APPLET_HTTP);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +020012336
12337 /*
12338 *
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +010012339 * Register class TXN
12340 *
12341 */
12342
12343 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012344 lua_newtable(L);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +010012345
Ilya Shipitsind4259502020-04-08 01:07:56 +050012346 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012347 lua_pushstring(L, "__index");
12348 lua_newtable(L);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +010012349
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +010012350 /* Register Lua functions. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012351 hlua_class_function(L, "set_priv", hlua_set_priv);
12352 hlua_class_function(L, "get_priv", hlua_get_priv);
12353 hlua_class_function(L, "set_var", hlua_set_var);
12354 hlua_class_function(L, "unset_var", hlua_unset_var);
12355 hlua_class_function(L, "get_var", hlua_get_var);
12356 hlua_class_function(L, "done", hlua_txn_done);
12357 hlua_class_function(L, "reply", hlua_txn_reply_new);
12358 hlua_class_function(L, "set_loglevel", hlua_txn_set_loglevel);
12359 hlua_class_function(L, "set_tos", hlua_txn_set_tos);
12360 hlua_class_function(L, "set_mark", hlua_txn_set_mark);
12361 hlua_class_function(L, "set_priority_class", hlua_txn_set_priority_class);
12362 hlua_class_function(L, "set_priority_offset", hlua_txn_set_priority_offset);
12363 hlua_class_function(L, "deflog", hlua_txn_deflog);
12364 hlua_class_function(L, "log", hlua_txn_log);
12365 hlua_class_function(L, "Debug", hlua_txn_log_debug);
12366 hlua_class_function(L, "Info", hlua_txn_log_info);
12367 hlua_class_function(L, "Warning", hlua_txn_log_warning);
12368 hlua_class_function(L, "Alert", hlua_txn_log_alert);
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +010012369
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012370 lua_rawset(L, -3);
Thierry FOURNIER65f34c62015-02-16 20:11:43 +010012371
12372 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012373 class_txn_ref = hlua_register_metatable(L, CLASS_TXN);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012374
12375 /*
12376 *
Christopher Faulet700d9e82020-01-31 12:21:52 +010012377 * Register class reply
12378 *
12379 */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012380 lua_newtable(L);
12381 lua_pushstring(L, "__index");
12382 lua_newtable(L);
12383 hlua_class_function(L, "set_status", hlua_txn_reply_set_status);
12384 hlua_class_function(L, "add_header", hlua_txn_reply_add_header);
12385 hlua_class_function(L, "del_header", hlua_txn_reply_del_header);
12386 hlua_class_function(L, "set_body", hlua_txn_reply_set_body);
12387 lua_settable(L, -3); /* Sets the __index entry. */
12388 class_txn_reply_ref = luaL_ref(L, LUA_REGISTRYINDEX);
Christopher Faulet700d9e82020-01-31 12:21:52 +010012389
12390
12391 /*
12392 *
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012393 * Register class Socket
12394 *
12395 */
12396
12397 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012398 lua_newtable(L);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012399
Ilya Shipitsind4259502020-04-08 01:07:56 +050012400 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012401 lua_pushstring(L, "__index");
12402 lua_newtable(L);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012403
Baptiste Assmann84bb4932015-03-02 21:40:06 +010012404#ifdef USE_OPENSSL
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012405 hlua_class_function(L, "connect_ssl", hlua_socket_connect_ssl);
Baptiste Assmann84bb4932015-03-02 21:40:06 +010012406#endif
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012407 hlua_class_function(L, "connect", hlua_socket_connect);
12408 hlua_class_function(L, "send", hlua_socket_send);
12409 hlua_class_function(L, "receive", hlua_socket_receive);
12410 hlua_class_function(L, "close", hlua_socket_close);
12411 hlua_class_function(L, "getpeername", hlua_socket_getpeername);
12412 hlua_class_function(L, "getsockname", hlua_socket_getsockname);
12413 hlua_class_function(L, "setoption", hlua_socket_setoption);
12414 hlua_class_function(L, "settimeout", hlua_socket_settimeout);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012415
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012416 lua_rawset(L, -3); /* Push the last 2 entries in the table at index -3 */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012417
12418 /* Register the garbage collector entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012419 lua_pushstring(L, "__gc");
12420 lua_pushcclosure(L, hlua_socket_gc, 0);
12421 lua_rawset(L, -3); /* Push the last 2 entries in the table at index -3 */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012422
12423 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012424 class_socket_ref = hlua_register_metatable(L, CLASS_SOCKET);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012425
Thierry Fournieraafc7772020-12-04 11:47:47 +010012426 lua_atpanic(L, hlua_panic_safe);
12427
12428 return L;
12429}
12430
12431void hlua_init(void) {
12432 int i;
Amaury Denoyelle239fdbf2021-03-24 10:22:03 +010012433 char *errmsg;
Thierry Fournieraafc7772020-12-04 11:47:47 +010012434#ifdef USE_OPENSSL
12435 struct srv_kw *kw;
12436 int tmp_error;
12437 char *error;
12438 char *args[] = { /* SSL client configuration. */
12439 "ssl",
12440 "verify",
12441 "none",
12442 NULL
12443 };
12444#endif
12445
12446 /* Init post init function list head */
12447 for (i = 0; i < MAX_THREADS + 1; i++)
12448 LIST_INIT(&hlua_init_functions[i]);
12449
12450 /* Init state for common/shared lua parts */
12451 hlua_state_id = 0;
Willy Tarreau43ab05b2021-09-28 09:43:11 +020012452 ha_set_thread(NULL);
Thierry Fournieraafc7772020-12-04 11:47:47 +010012453 hlua_states[0] = hlua_init_state(0);
12454
12455 /* Init state 1 for thread 0. We have at least one thread. */
12456 hlua_state_id = 1;
Willy Tarreau43ab05b2021-09-28 09:43:11 +020012457 ha_set_thread(NULL);
Thierry Fournieraafc7772020-12-04 11:47:47 +010012458 hlua_states[1] = hlua_init_state(1);
12459
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012460 /* Proxy and server configuration initialisation. */
William Lallemand6bb77b92021-07-28 15:48:16 +020012461 socket_proxy = alloc_new_proxy("LUA-SOCKET", PR_CAP_FE|PR_CAP_BE|PR_CAP_INT, &errmsg);
Amaury Denoyelle239fdbf2021-03-24 10:22:03 +010012462 if (!socket_proxy) {
12463 fprintf(stderr, "Lua init: %s\n", errmsg);
12464 exit(1);
12465 }
12466 proxy_preset_defaults(socket_proxy);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012467
12468 /* Init TCP server: unchanged parameters */
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +010012469 socket_tcp = new_server(socket_proxy);
12470 if (!socket_tcp) {
12471 fprintf(stderr, "Lua init: failed to allocate tcp server socket\n");
12472 exit(1);
12473 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012474
12475#ifdef USE_OPENSSL
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012476 /* Init TCP server: unchanged parameters */
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +010012477 socket_ssl = new_server(socket_proxy);
12478 if (!socket_ssl) {
12479 fprintf(stderr, "Lua init: failed to allocate ssl server socket\n");
12480 exit(1);
12481 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012482
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +010012483 socket_ssl->use_ssl = 1;
12484 socket_ssl->xprt = xprt_get(XPRT_SSL);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012485
Bertrand Jacquin80839ff2021-01-21 19:14:46 +000012486 for (i = 0; args[i] != NULL; i++) {
12487 if ((kw = srv_find_kw(args[i])) != NULL) { /* Maybe it's registered server keyword */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012488 /*
12489 *
12490 * If the keyword is not known, we can search in the registered
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -080012491 * server keywords. This is useful to configure special SSL
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012492 * features like client certificates and ssl_verify.
12493 *
12494 */
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +010012495 tmp_error = kw->parse(args, &i, socket_proxy, socket_ssl, &error);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012496 if (tmp_error != 0) {
12497 fprintf(stderr, "INTERNAL ERROR: %s\n", error);
12498 abort(); /* This must be never arrives because the command line
12499 not editable by the user. */
12500 }
Bertrand Jacquin80839ff2021-01-21 19:14:46 +000012501 i += kw->skip;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012502 }
12503 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012504#endif
Thierry Fournier75933d42016-01-21 09:30:18 +010012505
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +010012506}
Willy Tarreaubb57d942016-12-21 19:04:56 +010012507
Tim Duesterhusd0c0ca22020-07-04 11:53:26 +020012508static void hlua_deinit()
12509{
Willy Tarreau186f3762020-12-04 11:48:12 +010012510 int thr;
Christopher Faulet69c581a2021-05-31 08:54:04 +020012511 struct hlua_reg_filter *reg_flt, *reg_flt_bck;
12512
12513 list_for_each_entry_safe(reg_flt, reg_flt_bck, &referenced_filters, l)
12514 release_hlua_reg_filter(reg_flt);
Willy Tarreau186f3762020-12-04 11:48:12 +010012515
12516 for (thr = 0; thr < MAX_THREADS+1; thr++) {
12517 if (hlua_states[thr])
12518 lua_close(hlua_states[thr]);
12519 }
Willy Tarreau430bf4a2021-03-04 09:45:32 +010012520
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +020012521 srv_drop(socket_tcp);
Willy Tarreau430bf4a2021-03-04 09:45:32 +010012522
Willy Tarreau0f143af2021-03-05 10:41:48 +010012523#ifdef USE_OPENSSL
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +020012524 srv_drop(socket_ssl);
Willy Tarreau0f143af2021-03-05 10:41:48 +010012525#endif
Amaury Denoyelle239fdbf2021-03-24 10:22:03 +010012526
12527 free_proxy(socket_proxy);
Tim Duesterhusd0c0ca22020-07-04 11:53:26 +020012528}
12529
12530REGISTER_POST_DEINIT(hlua_deinit);
12531
Willy Tarreau80713382018-11-26 10:19:54 +010012532static void hlua_register_build_options(void)
12533{
Willy Tarreaubb57d942016-12-21 19:04:56 +010012534 char *ptr = NULL;
Willy Tarreau80713382018-11-26 10:19:54 +010012535
Willy Tarreaubb57d942016-12-21 19:04:56 +010012536 memprintf(&ptr, "Built with Lua version : %s", LUA_RELEASE);
12537 hap_register_build_opts(ptr, 1);
12538}
Willy Tarreau80713382018-11-26 10:19:54 +010012539
12540INITCALL0(STG_REGISTER, hlua_register_build_options);