blob: a2f5ca7b1bcb1195def7bfbdd95b1e33dfa2c44d [file] [log] [blame]
Thierry Fourniere726b142016-02-11 17:57:57 +01001/*
2 * Lua unsafe core engine
3 *
4 * Copyright 2015-2016 Thierry Fournier <tfournier@arpalert.org>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
Bertrand Jacquinf4c12d42021-01-21 21:14:07 +000013#define _GNU_SOURCE
14
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +010015#include <ctype.h>
Thierry FOURNIERbabae282015-09-17 11:36:37 +020016#include <setjmp.h>
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +010017
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +010018#include <lauxlib.h>
19#include <lua.h>
20#include <lualib.h>
21
Thierry FOURNIER463119c2015-03-10 00:35:36 +010022#if !defined(LUA_VERSION_NUM) || LUA_VERSION_NUM < 503
23#error "Requires Lua 5.3 or later."
Cyril Bontédc0306e2015-03-02 00:08:40 +010024#endif
25
Willy Tarreau8d2b7772020-05-27 10:58:19 +020026#include <import/ebpttree.h>
Thierry FOURNIER380d0932015-01-23 14:27:52 +010027
Willy Tarreaub2551052020-06-09 09:07:15 +020028#include <haproxy/api.h>
29#include <haproxy/applet.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020030#include <haproxy/arg.h>
Christopher Fauletd25d9262020-08-06 11:04:46 +020031#include <haproxy/auth.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020032#include <haproxy/cfgparse.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020033#include <haproxy/channel.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020034#include <haproxy/cli.h>
Willy Tarreau55542642021-10-08 09:33:24 +020035#include <haproxy/clock.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020036#include <haproxy/connection.h>
Christopher Faulet908628c2022-03-25 16:43:49 +010037#include <haproxy/conn_stream.h>
38#include <haproxy/cs_utils.h>
Christopher Faulet69c581a2021-05-31 08:54:04 +020039#include <haproxy/filters.h>
Willy Tarreau5413a872020-06-02 19:33:08 +020040#include <haproxy/h1.h>
Willy Tarreau86416052020-06-04 09:20:54 +020041#include <haproxy/hlua.h>
Willy Tarreau8c794002020-06-04 10:05:25 +020042#include <haproxy/hlua_fcn.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020043#include <haproxy/http_ana.h>
William Lallemand3956c4e2021-09-21 16:25:15 +020044#include <haproxy/http_client.h>
Willy Tarreau126ba3a2020-06-04 18:26:43 +020045#include <haproxy/http_fetch.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020046#include <haproxy/http_htx.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020047#include <haproxy/http_rules.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020048#include <haproxy/log.h>
Willy Tarreau2cd58092020-06-04 15:10:43 +020049#include <haproxy/map.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020050#include <haproxy/obj_type.h>
Willy Tarreau225a90a2020-06-04 15:06:28 +020051#include <haproxy/pattern.h>
Willy Tarreau469509b2020-06-04 15:13:30 +020052#include <haproxy/payload.h>
Willy Tarreau3d6ee402021-05-08 20:28:07 +020053#include <haproxy/proxy.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020054#include <haproxy/regex.h>
Willy Tarreaue6ce10b2020-06-04 15:33:47 +020055#include <haproxy/sample.h>
Willy Tarreau198e92a2021-03-05 10:23:32 +010056#include <haproxy/server.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020057#include <haproxy/session.h>
William Lallemand30fcca12022-03-30 12:03:12 +020058#include <haproxy/ssl_ckch.h>
59#include <haproxy/ssl_sock.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020060#include <haproxy/stats-t.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020061#include <haproxy/stream.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020062#include <haproxy/task.h>
Willy Tarreau8b550af2020-06-04 17:42:48 +020063#include <haproxy/tcp_rules.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020064#include <haproxy/thread.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +020065#include <haproxy/tools.h>
Willy Tarreaua1718922020-06-04 16:25:31 +020066#include <haproxy/vars.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020067#include <haproxy/xref.h>
68
Thierry FOURNIER380d0932015-01-23 14:27:52 +010069
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +010070/* Lua uses longjmp to perform yield or throwing errors. This
71 * macro is used only for identifying the function that can
72 * not return because a longjmp is executed.
73 * __LJMP marks a prototype of hlua file that can use longjmp.
74 * WILL_LJMP() marks an lua function that will use longjmp.
75 * MAY_LJMP() marks an lua function that may use longjmp.
76 */
77#define __LJMP
Willy Tarreau4e7cc332018-10-20 17:45:48 +020078#define WILL_LJMP(func) do { func; my_unreachable(); } while(0)
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +010079#define MAY_LJMP(func) func
80
Thierry FOURNIERbabae282015-09-17 11:36:37 +020081/* This couple of function executes securely some Lua calls outside of
82 * the lua runtime environment. Each Lua call can return a longjmp
83 * if it encounter a memory error.
84 *
85 * Lua documentation extract:
86 *
87 * If an error happens outside any protected environment, Lua calls
88 * a panic function (see lua_atpanic) and then calls abort, thus
89 * exiting the host application. Your panic function can avoid this
90 * exit by never returning (e.g., doing a long jump to your own
91 * recovery point outside Lua).
92 *
93 * The panic function runs as if it were a message handler (see
Willy Tarreau3dfb7da2022-03-02 22:33:39 +010094 * #2.3); in particular, the error message is at the top of the
Thierry FOURNIERbabae282015-09-17 11:36:37 +020095 * stack. However, there is no guarantee about stack space. To push
96 * anything on the stack, the panic function must first check the
Willy Tarreau3dfb7da2022-03-02 22:33:39 +010097 * available space (see #4.2).
Thierry FOURNIERbabae282015-09-17 11:36:37 +020098 *
99 * We must check all the Lua entry point. This includes:
100 * - The include/proto/hlua.h exported functions
101 * - the task wrapper function
102 * - The action wrapper function
103 * - The converters wrapper function
104 * - The sample-fetch wrapper functions
105 *
Ilya Shipitsin46a030c2020-07-05 16:36:08 +0500106 * It is tolerated that the initialisation function returns an abort.
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -0800107 * Before each Lua abort, an error message is written on stderr.
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200108 *
109 * The macro SET_SAFE_LJMP initialise the longjmp. The Macro
110 * RESET_SAFE_LJMP reset the longjmp. These function must be macro
111 * because they must be exists in the program stack when the longjmp
112 * is called.
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +0200113 *
114 * Note that the Lua processing is not really thread safe. It provides
115 * heavy system which consists to add our own lock function in the Lua
116 * code and recompile the library. This system will probably not accepted
117 * by maintainers of various distribs.
118 *
Ilya Shipitsin856aabc2020-04-16 23:51:34 +0500119 * Our main execution point of the Lua is the function lua_resume(). A
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +0200120 * quick looking on the Lua sources displays a lua_lock() a the start
121 * of function and a lua_unlock() at the end of the function. So I
122 * conclude that the Lua thread safe mode just perform a mutex around
123 * all execution. So I prefer to do this in the HAProxy code, it will be
124 * easier for distro maintainers.
125 *
126 * Note that the HAProxy lua functions rounded by the macro SET_SAFE_LJMP
127 * and RESET_SAFE_LJMP manipulates the Lua stack, so it will be careful
128 * to set mutex around these functions.
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200129 */
Willy Tarreau86abe442018-11-25 20:12:18 +0100130__decl_spinlock(hlua_global_lock);
Thierry FOURNIERffbad792017-07-12 11:39:04 +0200131THREAD_LOCAL jmp_buf safe_ljmp_env;
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200132static int hlua_panic_safe(lua_State *L) { return 0; }
Willy Tarreau6a510902021-07-14 19:41:25 +0200133static int hlua_panic_ljmp(lua_State *L) { WILL_LJMP(longjmp(safe_ljmp_env, 1)); return 0; }
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200134
Thierry Fournier62a22aa2020-11-28 21:06:35 +0100135/* This is the chained list of struct hlua_function referenced
136 * for haproxy action, sample-fetches, converters, cli and
137 * applet bindings. It is used for a post-initialisation control.
138 */
139static struct list referenced_functions = LIST_HEAD_INIT(referenced_functions);
140
Thierry Fournierc7492592020-11-28 23:57:24 +0100141/* This variable is used only during initialization to identify the Lua state
142 * currently being initialized. 0 is the common lua state, 1 to n are the Lua
143 * states dedicated to each thread (in this case hlua_state_id==tid+1).
144 */
145static int hlua_state_id;
146
Thierry Fournier59f11be2020-11-29 00:37:41 +0100147/* This is a NULL-terminated list of lua file which are referenced to load per thread */
148static char **per_thread_load = NULL;
149
150lua_State *hlua_init_state(int thread_id);
151
Willy Tarreau1e7bef12021-08-20 15:47:25 +0200152/* This function takes the Lua global lock. Keep this function's visibility
153 * global so that it can appear in stack dumps and performance profiles!
154 */
155void lua_take_global_lock()
156{
157 HA_SPIN_LOCK(LUA_LOCK, &hlua_global_lock);
158}
159
160static inline void lua_drop_global_lock()
161{
162 HA_SPIN_UNLOCK(LUA_LOCK, &hlua_global_lock);
163}
164
Thierry Fournier7cbe5042020-11-28 17:02:21 +0100165#define SET_SAFE_LJMP_L(__L, __HLUA) \
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200166 ({ \
167 int ret; \
Thierry Fournier021d9862020-11-28 23:42:03 +0100168 if ((__HLUA)->state_id == 0) \
Willy Tarreau1e7bef12021-08-20 15:47:25 +0200169 lua_take_global_lock(); \
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200170 if (setjmp(safe_ljmp_env) != 0) { \
171 lua_atpanic(__L, hlua_panic_safe); \
172 ret = 0; \
Thierry Fournier021d9862020-11-28 23:42:03 +0100173 if ((__HLUA)->state_id == 0) \
Willy Tarreau1e7bef12021-08-20 15:47:25 +0200174 lua_drop_global_lock(); \
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200175 } else { \
176 lua_atpanic(__L, hlua_panic_ljmp); \
177 ret = 1; \
178 } \
179 ret; \
180 })
181
182/* If we are the last function catching Lua errors, we
183 * must reset the panic function.
184 */
Thierry Fournier7cbe5042020-11-28 17:02:21 +0100185#define RESET_SAFE_LJMP_L(__L, __HLUA) \
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200186 do { \
187 lua_atpanic(__L, hlua_panic_safe); \
Thierry Fournier021d9862020-11-28 23:42:03 +0100188 if ((__HLUA)->state_id == 0) \
Willy Tarreau1e7bef12021-08-20 15:47:25 +0200189 lua_drop_global_lock(); \
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200190 } while(0)
191
Thierry Fournier7cbe5042020-11-28 17:02:21 +0100192#define SET_SAFE_LJMP(__HLUA) \
193 SET_SAFE_LJMP_L((__HLUA)->T, __HLUA)
194
195#define RESET_SAFE_LJMP(__HLUA) \
196 RESET_SAFE_LJMP_L((__HLUA)->T, __HLUA)
197
198#define SET_SAFE_LJMP_PARENT(__HLUA) \
Thierry Fournier021d9862020-11-28 23:42:03 +0100199 SET_SAFE_LJMP_L(hlua_states[(__HLUA)->state_id], __HLUA)
Thierry Fournier7cbe5042020-11-28 17:02:21 +0100200
201#define RESET_SAFE_LJMP_PARENT(__HLUA) \
Thierry Fournier021d9862020-11-28 23:42:03 +0100202 RESET_SAFE_LJMP_L(hlua_states[(__HLUA)->state_id], __HLUA)
Thierry Fournier7cbe5042020-11-28 17:02:21 +0100203
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +0200204/* Applet status flags */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200205#define APPLET_DONE 0x01 /* applet processing is done. */
Christopher Faulet18c2e8d2019-03-01 12:02:08 +0100206/* unused: 0x02 */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200207#define APPLET_HDR_SENT 0x04 /* Response header sent. */
Christopher Fauleta2097962019-07-15 16:25:33 +0200208/* unused: 0x08, 0x10 */
Thierry FOURNIERd93ea2b2015-12-20 19:14:52 +0100209#define APPLET_HTTP11 0x20 /* Last chunk sent. */
Christopher Faulet56a3d6e2019-02-27 22:06:23 +0100210#define APPLET_RSP_SENT 0x40 /* The response was fully sent */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200211
Thierry Fournierafc63e22020-11-28 17:06:51 +0100212/* The main Lua execution context. The 0 index is the
213 * common state shared by all threads.
214 */
Willy Tarreau186f3762020-12-04 11:48:12 +0100215static lua_State *hlua_states[MAX_THREADS + 1];
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100216
Christopher Fauletc404f112020-02-26 15:03:09 +0100217#define HLUA_FLT_CB_FINAL 0x00000001
218#define HLUA_FLT_CB_RETVAL 0x00000002
219#define HLUA_FLT_CB_ARG_CHN 0x00000004
220#define HLUA_FLT_CB_ARG_HTTP_MSG 0x00000008
221
Christopher Faulet9f55a502020-02-25 15:21:02 +0100222#define HLUA_FLT_CTX_FL_PAYLOAD 0x00000001
223
Christopher Faulet69c581a2021-05-31 08:54:04 +0200224struct hlua_reg_filter {
225 char *name;
226 int flt_ref[MAX_THREADS + 1];
227 int fun_ref[MAX_THREADS + 1];
228 struct list l;
229};
230
231struct hlua_flt_config {
232 struct hlua_reg_filter *reg;
233 int ref[MAX_THREADS + 1];
234 char **args;
235};
236
237struct hlua_flt_ctx {
238 int ref; /* ref to the filter lua object */
239 struct hlua *hlua[2]; /* lua runtime context (0: request, 1: response) */
240 unsigned int cur_off[2]; /* current offset (0: request, 1: response) */
241 unsigned int cur_len[2]; /* current forwardable length (0: request, 1: response) */
242 unsigned int flags; /* HLUA_FLT_CTX_FL_* */
243};
244
245DECLARE_STATIC_POOL(pool_head_hlua_flt_ctx, "hlua_flt_ctx", sizeof(struct hlua_flt_ctx));
246
Christopher Faulet9f55a502020-02-25 15:21:02 +0100247static int hlua_filter_from_payload(struct filter *filter);
248
Christopher Faulet69c581a2021-05-31 08:54:04 +0200249/* This is the chained list of struct hlua_flt referenced
250 * for haproxy filters. It is used for a post-initialisation control.
251 */
252static struct list referenced_filters = LIST_HEAD_INIT(referenced_filters);
253
254
Thierry FOURNIERebed6e92016-12-16 11:54:07 +0100255/* This is the memory pool containing struct lua for applets
256 * (including cli).
257 */
Willy Tarreau8ceae722018-11-26 11:58:30 +0100258DECLARE_STATIC_POOL(pool_head_hlua, "hlua", sizeof(struct hlua));
Thierry FOURNIERebed6e92016-12-16 11:54:07 +0100259
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +0100260/* Used for Socket connection. */
Amaury Denoyelle239fdbf2021-03-24 10:22:03 +0100261static struct proxy *socket_proxy;
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +0100262static struct server *socket_tcp;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +0100263#ifdef USE_OPENSSL
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +0100264static struct server *socket_ssl;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +0100265#endif
266
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +0100267/* List head of the function called at the initialisation time. */
Thierry Fournierc7492592020-11-28 23:57:24 +0100268struct list hlua_init_functions[MAX_THREADS + 1];
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +0100269
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +0100270/* The following variables contains the reference of the different
271 * Lua classes. These references are useful for identify metadata
272 * associated with an object.
273 */
Thierry FOURNIER65f34c62015-02-16 20:11:43 +0100274static int class_txn_ref;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +0100275static int class_socket_ref;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +0100276static int class_channel_ref;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +0100277static int class_fetches_ref;
Thierry FOURNIER594afe72015-03-10 23:58:30 +0100278static int class_converters_ref;
Thierry FOURNIER08504f42015-03-16 14:17:08 +0100279static int class_http_ref;
Christopher Fauletdf97ac42020-02-26 16:57:19 +0100280static int class_http_msg_ref;
William Lallemand3956c4e2021-09-21 16:25:15 +0200281static int class_httpclient_ref;
Thierry FOURNIER3def3932015-04-07 11:27:54 +0200282static int class_map_ref;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +0200283static int class_applet_tcp_ref;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200284static int class_applet_http_ref;
Christopher Faulet700d9e82020-01-31 12:21:52 +0100285static int class_txn_reply_ref;
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +0100286
Thierry FOURNIERbd413492015-03-03 16:52:26 +0100287/* Global Lua execution timeout. By default Lua, execution linked
Willy Tarreau87b09662015-04-03 00:22:06 +0200288 * with stream (actions, sample-fetches and converters) have a
Thierry FOURNIERbd413492015-03-03 16:52:26 +0100289 * short timeout. Lua linked with tasks doesn't have a timeout
290 * because a task may remain alive during all the haproxy execution.
291 */
292static unsigned int hlua_timeout_session = 4000; /* session timeout. */
293static unsigned int hlua_timeout_task = TICK_ETERNITY; /* task timeout. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +0200294static unsigned int hlua_timeout_applet = 4000; /* applet timeout. */
Thierry FOURNIERbd413492015-03-03 16:52:26 +0100295
Thierry FOURNIERee9f8022015-03-03 17:37:37 +0100296/* Interrupts the Lua processing each "hlua_nb_instruction" instructions.
297 * it is used for preventing infinite loops.
298 *
299 * I test the scheer with an infinite loop containing one incrementation
300 * and one test. I run this loop between 10 seconds, I raise a ceil of
301 * 710M loops from one interrupt each 9000 instructions, so I fix the value
302 * to one interrupt each 10 000 instructions.
303 *
304 * configured | Number of
305 * instructions | loops executed
306 * between two | in milions
307 * forced yields |
308 * ---------------+---------------
309 * 10 | 160
310 * 500 | 670
311 * 1000 | 680
312 * 5000 | 700
313 * 7000 | 700
314 * 8000 | 700
315 * 9000 | 710 <- ceil
316 * 10000 | 710
317 * 100000 | 710
318 * 1000000 | 710
319 *
320 */
321static unsigned int hlua_nb_instruction = 10000;
322
Willy Tarreaucdb53462020-12-02 12:12:00 +0100323/* Descriptor for the memory allocation state. The limit is pre-initialised to
324 * 0 until it is replaced by "tune.lua.maxmem" during the config parsing, or it
325 * is replaced with ~0 during post_init after everything was loaded. This way
326 * it is guaranteed that if limit is ~0 the boot is complete and that if it's
327 * zero it's not yet limited and proper accounting is required.
Willy Tarreau32f61e22015-03-18 17:54:59 +0100328 */
329struct hlua_mem_allocator {
330 size_t allocated;
331 size_t limit;
332};
333
Willy Tarreaucdb53462020-12-02 12:12:00 +0100334static struct hlua_mem_allocator hlua_global_allocator THREAD_ALIGNED(64);
Willy Tarreau32f61e22015-03-18 17:54:59 +0100335
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100336/* These functions converts types between HAProxy internal args or
337 * sample and LUA types. Another function permits to check if the
338 * LUA stack contains arguments according with an required ARG_T
339 * format.
340 */
341static int hlua_arg2lua(lua_State *L, const struct arg *arg);
342static int hlua_lua2arg(lua_State *L, int ud, struct arg *arg);
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100343__LJMP static int hlua_lua2arg_check(lua_State *L, int first, struct arg *argp,
David Carlier0c437f42016-04-27 16:21:56 +0100344 uint64_t mask, struct proxy *p);
Willy Tarreau5eadada2015-03-10 17:28:54 +0100345static int hlua_smp2lua(lua_State *L, struct sample *smp);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100346static int hlua_smp2lua_str(lua_State *L, struct sample *smp);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100347static int hlua_lua2smp(lua_State *L, int ud, struct sample *smp);
348
Christopher Faulet9d1332b2020-02-24 16:46:16 +0100349__LJMP static int hlua_http_get_headers(lua_State *L, struct http_msg *msg);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200350
Thierry Fournier59f11be2020-11-29 00:37:41 +0100351struct prepend_path {
352 struct list l;
353 char *type;
354 char *path;
355};
356
357static struct list prepend_path_list = LIST_HEAD_INIT(prepend_path_list);
358
Thierry FOURNIER23bc3752015-09-11 19:15:43 +0200359#define SEND_ERR(__be, __fmt, __args...) \
360 do { \
361 send_log(__be, LOG_ERR, __fmt, ## __args); \
362 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) \
Christopher Faulet767a84b2017-11-24 16:50:31 +0100363 ha_alert(__fmt, ## __args); \
Thierry FOURNIER23bc3752015-09-11 19:15:43 +0200364 } while (0)
365
Thierry Fournier62a22aa2020-11-28 21:06:35 +0100366static inline struct hlua_function *new_hlua_function()
367{
368 struct hlua_function *fcn;
Thierry Fournierc7492592020-11-28 23:57:24 +0100369 int i;
Thierry Fournier62a22aa2020-11-28 21:06:35 +0100370
371 fcn = calloc(1, sizeof(*fcn));
372 if (!fcn)
373 return NULL;
Willy Tarreau2b718102021-04-21 07:32:39 +0200374 LIST_APPEND(&referenced_functions, &fcn->l);
Thierry Fournierc7492592020-11-28 23:57:24 +0100375 for (i = 0; i < MAX_THREADS + 1; i++)
376 fcn->function_ref[i] = -1;
Thierry Fournier62a22aa2020-11-28 21:06:35 +0100377 return fcn;
378}
379
Christopher Fauletdda44442021-04-12 14:05:43 +0200380static inline void release_hlua_function(struct hlua_function *fcn)
381{
382 if (!fcn)
383 return;
384 if (fcn->name)
385 ha_free(&fcn->name);
Willy Tarreau2b718102021-04-21 07:32:39 +0200386 LIST_DELETE(&fcn->l);
Christopher Fauletdda44442021-04-12 14:05:43 +0200387 ha_free(&fcn);
388}
389
Thierry Fournierc7492592020-11-28 23:57:24 +0100390/* If the common state is set, the stack id is 0, otherwise it is the tid + 1 */
391static inline int fcn_ref_to_stack_id(struct hlua_function *fcn)
392{
393 if (fcn->function_ref[0] == -1)
394 return tid + 1;
395 return 0;
396}
397
Christopher Faulet69c581a2021-05-31 08:54:04 +0200398/* Create a new registered filter. Only its name is filled */
399static inline struct hlua_reg_filter *new_hlua_reg_filter(const char *name)
400{
401 struct hlua_reg_filter *reg_flt;
402 int i;
403
404 reg_flt = calloc(1, sizeof(*reg_flt));
405 if (!reg_flt)
406 return NULL;
407 reg_flt->name = strdup(name);
408 if (!reg_flt->name) {
409 free(reg_flt);
410 return NULL;
411 }
412 LIST_APPEND(&referenced_filters, &reg_flt->l);
413 for (i = 0; i < MAX_THREADS + 1; i++) {
414 reg_flt->flt_ref[i] = -1;
415 reg_flt->fun_ref[i] = -1;
416 }
417 return reg_flt;
418}
419
420/* Release a registered filter */
421static inline void release_hlua_reg_filter(struct hlua_reg_filter *reg_flt)
422{
423 if (!reg_flt)
424 return;
425 if (reg_flt->name)
426 ha_free(&reg_flt->name);
427 LIST_DELETE(&reg_flt->l);
428 ha_free(&reg_flt);
429}
430
431/* If the common state is set, the stack id is 0, otherwise it is the tid + 1 */
432static inline int reg_flt_to_stack_id(struct hlua_reg_filter *reg_flt)
433{
434 if (reg_flt->fun_ref[0] == -1)
435 return tid + 1;
436 return 0;
437}
438
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100439/* Used to check an Lua function type in the stack. It creates and
440 * returns a reference of the function. This function throws an
441 * error if the rgument is not a "function".
442 */
443__LJMP unsigned int hlua_checkfunction(lua_State *L, int argno)
444{
445 if (!lua_isfunction(L, argno)) {
Thierry FOURNIERfd1e9552018-02-23 18:41:18 +0100446 const char *msg = lua_pushfstring(L, "function expected, got %s", luaL_typename(L, argno));
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100447 WILL_LJMP(luaL_argerror(L, argno, msg));
448 }
449 lua_pushvalue(L, argno);
450 return luaL_ref(L, LUA_REGISTRYINDEX);
451}
452
Christopher Fauletba9e21d2020-02-25 10:20:04 +0100453/* Used to check an Lua table type in the stack. It creates and
454 * returns a reference of the table. This function throws an
455 * error if the rgument is not a "table".
456 */
457__LJMP unsigned int hlua_checktable(lua_State *L, int argno)
458{
459 if (!lua_istable(L, argno)) {
460 const char *msg = lua_pushfstring(L, "table expected, got %s", luaL_typename(L, argno));
461 WILL_LJMP(luaL_argerror(L, argno, msg));
462 }
463 lua_pushvalue(L, argno);
464 return luaL_ref(L, LUA_REGISTRYINDEX);
465}
466
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200467/* Return the string that is of the top of the stack. */
468const char *hlua_get_top_error_string(lua_State *L)
469{
470 if (lua_gettop(L) < 1)
471 return "unknown error";
472 if (lua_type(L, -1) != LUA_TSTRING)
473 return "unknown error";
474 return lua_tostring(L, -1);
475}
476
Christopher Fauletd09cc512021-03-24 14:48:45 +0100477__LJMP const char *hlua_traceback(lua_State *L, const char* sep)
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200478{
479 lua_Debug ar;
480 int level = 0;
Willy Tarreau83061a82018-07-13 11:56:34 +0200481 struct buffer *msg = get_trash_chunk();
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200482
483 while (lua_getstack(L, level++, &ar)) {
484
485 /* Add separator */
Christopher Fauletd09cc512021-03-24 14:48:45 +0100486 if (b_data(msg))
487 chunk_appendf(msg, "%s", sep);
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200488
489 /* Fill fields:
490 * 'S': fills in the fields source, short_src, linedefined, lastlinedefined, and what;
491 * 'l': fills in the field currentline;
492 * 'n': fills in the field name and namewhat;
493 * 't': fills in the field istailcall;
494 */
495 lua_getinfo(L, "Slnt", &ar);
496
497 /* Append code localisation */
498 if (ar.currentline > 0)
Christopher Fauletd09cc512021-03-24 14:48:45 +0100499 chunk_appendf(msg, "%s:%d: ", ar.short_src, ar.currentline);
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200500 else
Christopher Fauletd09cc512021-03-24 14:48:45 +0100501 chunk_appendf(msg, "%s: ", ar.short_src);
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200502
503 /*
504 * Get function name
505 *
506 * if namewhat is no empty, name is defined.
507 * what contains "Lua" for Lua function, "C" for C function,
508 * or "main" for main code.
509 */
510 if (*ar.namewhat != '\0' && ar.name != NULL) /* is there a name from code? */
Christopher Fauletd09cc512021-03-24 14:48:45 +0100511 chunk_appendf(msg, "in %s '%s'", ar.namewhat, ar.name); /* use it */
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200512
513 else if (*ar.what == 'm') /* "main", the code is not executed in a function */
Christopher Fauletd09cc512021-03-24 14:48:45 +0100514 chunk_appendf(msg, "in main chunk");
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200515
516 else if (*ar.what != 'C') /* for Lua functions, use <file:line> */
Christopher Fauletd09cc512021-03-24 14:48:45 +0100517 chunk_appendf(msg, "in function line %d", ar.linedefined);
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200518
519 else /* nothing left... */
520 chunk_appendf(msg, "?");
521
522
523 /* Display tailed call */
524 if (ar.istailcall)
525 chunk_appendf(msg, " ...");
526 }
527
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200528 return msg->area;
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200529}
530
531
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100532/* This function check the number of arguments available in the
533 * stack. If the number of arguments available is not the same
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +0500534 * then <nb> an error is thrown.
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100535 */
536__LJMP static inline void check_args(lua_State *L, int nb, char *fcn)
537{
538 if (lua_gettop(L) == nb)
539 return;
540 WILL_LJMP(luaL_error(L, "'%s' needs %d arguments", fcn, nb));
541}
542
Mark Lakes22154b42018-01-29 14:38:40 -0800543/* This function pushes an error string prefixed by the file name
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100544 * and the line number where the error is encountered.
545 */
546static int hlua_pusherror(lua_State *L, const char *fmt, ...)
547{
548 va_list argp;
549 va_start(argp, fmt);
550 luaL_where(L, 1);
551 lua_pushvfstring(L, fmt, argp);
552 va_end(argp);
553 lua_concat(L, 2);
554 return 1;
555}
556
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100557/* This functions is used with sample fetch and converters. It
558 * converts the HAProxy configuration argument in a lua stack
559 * values.
560 *
561 * It takes an array of "arg", and each entry of the array is
562 * converted and pushed in the LUA stack.
563 */
564static int hlua_arg2lua(lua_State *L, const struct arg *arg)
565{
566 switch (arg->type) {
567 case ARGT_SINT:
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100568 case ARGT_TIME:
569 case ARGT_SIZE:
Thierry FOURNIERf90838b2015-03-06 13:48:32 +0100570 lua_pushinteger(L, arg->data.sint);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100571 break;
572
573 case ARGT_STR:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200574 lua_pushlstring(L, arg->data.str.area, arg->data.str.data);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100575 break;
576
577 case ARGT_IPV4:
578 case ARGT_IPV6:
579 case ARGT_MSK4:
580 case ARGT_MSK6:
581 case ARGT_FE:
582 case ARGT_BE:
583 case ARGT_TAB:
584 case ARGT_SRV:
585 case ARGT_USR:
586 case ARGT_MAP:
587 default:
588 lua_pushnil(L);
589 break;
590 }
591 return 1;
592}
593
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +0500594/* This function take one entry in an LUA stack at the index "ud",
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100595 * and try to convert it in an HAProxy argument entry. This is useful
Ilya Shipitsind4259502020-04-08 01:07:56 +0500596 * with sample fetch wrappers. The input arguments are given to the
597 * lua wrapper and converted as arg list by the function.
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100598 */
599static int hlua_lua2arg(lua_State *L, int ud, struct arg *arg)
600{
601 switch (lua_type(L, ud)) {
602
603 case LUA_TNUMBER:
604 case LUA_TBOOLEAN:
605 arg->type = ARGT_SINT;
606 arg->data.sint = lua_tointeger(L, ud);
607 break;
608
609 case LUA_TSTRING:
610 arg->type = ARGT_STR;
Tim Duesterhus2e89dec2019-09-29 23:03:08 +0200611 arg->data.str.area = (char *)lua_tolstring(L, ud, &arg->data.str.data);
Tim Duesterhus29d2e8a2019-09-29 23:03:07 +0200612 /* We don't know the actual size of the underlying allocation, so be conservative. */
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200613 arg->data.str.size = arg->data.str.data+1; /* count the terminating null byte */
Tim Duesterhus29d2e8a2019-09-29 23:03:07 +0200614 arg->data.str.head = 0;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100615 break;
616
617 case LUA_TUSERDATA:
618 case LUA_TNIL:
619 case LUA_TTABLE:
620 case LUA_TFUNCTION:
621 case LUA_TTHREAD:
622 case LUA_TLIGHTUSERDATA:
623 arg->type = ARGT_SINT;
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +0200624 arg->data.sint = 0;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100625 break;
626 }
627 return 1;
628}
629
630/* the following functions are used to convert a struct sample
631 * in Lua type. This useful to convert the return of the
Ilya Shipitsind4259502020-04-08 01:07:56 +0500632 * fetches or converters.
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100633 */
Willy Tarreau5eadada2015-03-10 17:28:54 +0100634static int hlua_smp2lua(lua_State *L, struct sample *smp)
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100635{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200636 switch (smp->data.type) {
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100637 case SMP_T_SINT:
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100638 case SMP_T_BOOL:
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200639 lua_pushinteger(L, smp->data.u.sint);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100640 break;
641
642 case SMP_T_BIN:
643 case SMP_T_STR:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200644 lua_pushlstring(L, smp->data.u.str.area, smp->data.u.str.data);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100645 break;
646
647 case SMP_T_METH:
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200648 switch (smp->data.u.meth.meth) {
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100649 case HTTP_METH_OPTIONS: lua_pushstring(L, "OPTIONS"); break;
650 case HTTP_METH_GET: lua_pushstring(L, "GET"); break;
651 case HTTP_METH_HEAD: lua_pushstring(L, "HEAD"); break;
652 case HTTP_METH_POST: lua_pushstring(L, "POST"); break;
653 case HTTP_METH_PUT: lua_pushstring(L, "PUT"); break;
654 case HTTP_METH_DELETE: lua_pushstring(L, "DELETE"); break;
655 case HTTP_METH_TRACE: lua_pushstring(L, "TRACE"); break;
656 case HTTP_METH_CONNECT: lua_pushstring(L, "CONNECT"); break;
657 case HTTP_METH_OTHER:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200658 lua_pushlstring(L, smp->data.u.meth.str.area, smp->data.u.meth.str.data);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100659 break;
660 default:
661 lua_pushnil(L);
662 break;
663 }
664 break;
665
666 case SMP_T_IPV4:
667 case SMP_T_IPV6:
668 case SMP_T_ADDR: /* This type is never used to qualify a sample. */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200669 if (sample_casts[smp->data.type][SMP_T_STR] &&
670 sample_casts[smp->data.type][SMP_T_STR](smp))
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200671 lua_pushlstring(L, smp->data.u.str.area, smp->data.u.str.data);
Willy Tarreau5eadada2015-03-10 17:28:54 +0100672 else
673 lua_pushnil(L);
674 break;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100675 default:
676 lua_pushnil(L);
677 break;
678 }
679 return 1;
680}
681
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100682/* the following functions are used to convert a struct sample
683 * in Lua strings. This is useful to convert the return of the
Ilya Shipitsind4259502020-04-08 01:07:56 +0500684 * fetches or converters.
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100685 */
686static int hlua_smp2lua_str(lua_State *L, struct sample *smp)
687{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200688 switch (smp->data.type) {
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100689
690 case SMP_T_BIN:
691 case SMP_T_STR:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200692 lua_pushlstring(L, smp->data.u.str.area, smp->data.u.str.data);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100693 break;
694
695 case SMP_T_METH:
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200696 switch (smp->data.u.meth.meth) {
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100697 case HTTP_METH_OPTIONS: lua_pushstring(L, "OPTIONS"); break;
698 case HTTP_METH_GET: lua_pushstring(L, "GET"); break;
699 case HTTP_METH_HEAD: lua_pushstring(L, "HEAD"); break;
700 case HTTP_METH_POST: lua_pushstring(L, "POST"); break;
701 case HTTP_METH_PUT: lua_pushstring(L, "PUT"); break;
702 case HTTP_METH_DELETE: lua_pushstring(L, "DELETE"); break;
703 case HTTP_METH_TRACE: lua_pushstring(L, "TRACE"); break;
704 case HTTP_METH_CONNECT: lua_pushstring(L, "CONNECT"); break;
705 case HTTP_METH_OTHER:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200706 lua_pushlstring(L, smp->data.u.meth.str.area, smp->data.u.meth.str.data);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100707 break;
708 default:
709 lua_pushstring(L, "");
710 break;
711 }
712 break;
713
714 case SMP_T_SINT:
715 case SMP_T_BOOL:
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100716 case SMP_T_IPV4:
717 case SMP_T_IPV6:
718 case SMP_T_ADDR: /* This type is never used to qualify a sample. */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200719 if (sample_casts[smp->data.type][SMP_T_STR] &&
720 sample_casts[smp->data.type][SMP_T_STR](smp))
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200721 lua_pushlstring(L, smp->data.u.str.area, smp->data.u.str.data);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100722 else
723 lua_pushstring(L, "");
724 break;
725 default:
726 lua_pushstring(L, "");
727 break;
728 }
729 return 1;
730}
731
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100732/* the following functions are used to convert an Lua type in a
733 * struct sample. This is useful to provide data from a converter
734 * to the LUA code.
735 */
736static int hlua_lua2smp(lua_State *L, int ud, struct sample *smp)
737{
738 switch (lua_type(L, ud)) {
739
740 case LUA_TNUMBER:
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200741 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200742 smp->data.u.sint = lua_tointeger(L, ud);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100743 break;
744
745
746 case LUA_TBOOLEAN:
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200747 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200748 smp->data.u.sint = lua_toboolean(L, ud);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100749 break;
750
751 case LUA_TSTRING:
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200752 smp->data.type = SMP_T_STR;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100753 smp->flags |= SMP_F_CONST;
Tim Duesterhus2e89dec2019-09-29 23:03:08 +0200754 smp->data.u.str.area = (char *)lua_tolstring(L, ud, &smp->data.u.str.data);
Tim Duesterhus29d2e8a2019-09-29 23:03:07 +0200755 /* We don't know the actual size of the underlying allocation, so be conservative. */
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200756 smp->data.u.str.size = smp->data.u.str.data+1; /* count the terminating null byte */
Tim Duesterhus29d2e8a2019-09-29 23:03:07 +0200757 smp->data.u.str.head = 0;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100758 break;
759
760 case LUA_TUSERDATA:
761 case LUA_TNIL:
762 case LUA_TTABLE:
763 case LUA_TFUNCTION:
764 case LUA_TTHREAD:
765 case LUA_TLIGHTUSERDATA:
Thierry FOURNIER93405e12015-08-26 14:19:03 +0200766 case LUA_TNONE:
767 default:
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200768 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200769 smp->data.u.sint = 0;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100770 break;
771 }
772 return 1;
773}
774
Ilya Shipitsind4259502020-04-08 01:07:56 +0500775/* This function check the "argp" built by another conversion function
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -0800776 * is in accord with the expected argp defined by the "mask". The function
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100777 * returns true or false. It can be adjust the types if there compatibles.
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100778 *
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +0500779 * This function assumes that the argp argument contains ARGM_NBARGS + 1
Willy Tarreauee0d7272021-07-16 10:26:56 +0200780 * entries and that there is at least one stop at the last position.
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100781 */
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100782__LJMP int hlua_lua2arg_check(lua_State *L, int first, struct arg *argp,
David Carlier0c437f42016-04-27 16:21:56 +0100783 uint64_t mask, struct proxy *p)
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100784{
785 int min_arg;
Willy Tarreauee0d7272021-07-16 10:26:56 +0200786 int idx;
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100787 struct proxy *px;
Christopher Fauletd25d9262020-08-06 11:04:46 +0200788 struct userlist *ul;
Christopher Fauletfd2e9062020-08-06 11:10:57 +0200789 struct my_regex *reg;
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200790 const char *msg = NULL;
Christopher Fauletfd2e9062020-08-06 11:10:57 +0200791 char *sname, *pname, *err = NULL;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100792
793 idx = 0;
794 min_arg = ARGM(mask);
795 mask >>= ARGM_BITS;
796
797 while (1) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200798 struct buffer tmp = BUF_NULL;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100799
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100800 /* Check for mandatory arguments. */
801 if (argp[idx].type == ARGT_STOP) {
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100802 if (idx < min_arg) {
803
804 /* If miss other argument than the first one, we return an error. */
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200805 if (idx > 0) {
806 msg = "Mandatory argument expected";
807 goto error;
808 }
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100809
810 /* If first argument have a certain type, some default values
811 * may be used. See the function smp_resolve_args().
812 */
813 switch (mask & ARGT_MASK) {
814
815 case ARGT_FE:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200816 if (!(p->cap & PR_CAP_FE)) {
817 msg = "Mandatory argument expected";
818 goto error;
819 }
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100820 argp[idx].data.prx = p;
821 argp[idx].type = ARGT_FE;
822 argp[idx+1].type = ARGT_STOP;
823 break;
824
825 case ARGT_BE:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200826 if (!(p->cap & PR_CAP_BE)) {
827 msg = "Mandatory argument expected";
828 goto error;
829 }
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100830 argp[idx].data.prx = p;
831 argp[idx].type = ARGT_BE;
832 argp[idx+1].type = ARGT_STOP;
833 break;
834
835 case ARGT_TAB:
836 argp[idx].data.prx = p;
837 argp[idx].type = ARGT_TAB;
838 argp[idx+1].type = ARGT_STOP;
839 break;
840
841 default:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200842 msg = "Mandatory argument expected";
843 goto error;
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100844 break;
845 }
846 }
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200847 break;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100848 }
849
Ilya Shipitsin856aabc2020-04-16 23:51:34 +0500850 /* Check for exceed the number of required argument. */
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100851 if ((mask & ARGT_MASK) == ARGT_STOP &&
852 argp[idx].type != ARGT_STOP) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200853 msg = "Last argument expected";
854 goto error;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100855 }
856
857 if ((mask & ARGT_MASK) == ARGT_STOP &&
858 argp[idx].type == ARGT_STOP) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200859 break;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100860 }
861
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200862 /* Convert some argument types. All string in argp[] are for not
863 * duplicated yet.
864 */
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100865 switch (mask & ARGT_MASK) {
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100866 case ARGT_SINT:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200867 if (argp[idx].type != ARGT_SINT) {
868 msg = "integer expected";
869 goto error;
870 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100871 argp[idx].type = ARGT_SINT;
872 break;
873
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100874 case ARGT_TIME:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200875 if (argp[idx].type != ARGT_SINT) {
876 msg = "integer expected";
877 goto error;
878 }
Thierry FOURNIER29176f32015-07-07 00:41:29 +0200879 argp[idx].type = ARGT_TIME;
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100880 break;
881
882 case ARGT_SIZE:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200883 if (argp[idx].type != ARGT_SINT) {
884 msg = "integer expected";
885 goto error;
886 }
Thierry FOURNIER29176f32015-07-07 00:41:29 +0200887 argp[idx].type = ARGT_SIZE;
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100888 break;
889
890 case ARGT_FE:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200891 if (argp[idx].type != ARGT_STR) {
892 msg = "string expected";
893 goto error;
894 }
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200895 argp[idx].data.prx = proxy_fe_by_name(argp[idx].data.str.area);
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200896 if (!argp[idx].data.prx) {
897 msg = "frontend doesn't exist";
898 goto error;
899 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100900 argp[idx].type = ARGT_FE;
901 break;
902
903 case ARGT_BE:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200904 if (argp[idx].type != ARGT_STR) {
905 msg = "string expected";
906 goto error;
907 }
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200908 argp[idx].data.prx = proxy_be_by_name(argp[idx].data.str.area);
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200909 if (!argp[idx].data.prx) {
910 msg = "backend doesn't exist";
911 goto error;
912 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100913 argp[idx].type = ARGT_BE;
914 break;
915
916 case ARGT_TAB:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200917 if (argp[idx].type != ARGT_STR) {
918 msg = "string expected";
919 goto error;
920 }
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200921 argp[idx].data.t = stktable_find_by_name(argp[idx].data.str.area);
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200922 if (!argp[idx].data.t) {
923 msg = "table doesn't exist";
924 goto error;
925 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100926 argp[idx].type = ARGT_TAB;
927 break;
928
929 case ARGT_SRV:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200930 if (argp[idx].type != ARGT_STR) {
931 msg = "string expected";
932 goto error;
933 }
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200934 sname = strrchr(argp[idx].data.str.area, '/');
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100935 if (sname) {
936 *sname++ = '\0';
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200937 pname = argp[idx].data.str.area;
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200938 px = proxy_be_by_name(pname);
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200939 if (!px) {
940 msg = "backend doesn't exist";
941 goto error;
942 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100943 }
944 else {
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200945 sname = argp[idx].data.str.area;
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100946 px = p;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100947 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100948 argp[idx].data.srv = findserver(px, sname);
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200949 if (!argp[idx].data.srv) {
950 msg = "server doesn't exist";
951 goto error;
952 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100953 argp[idx].type = ARGT_SRV;
954 break;
955
956 case ARGT_IPV4:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200957 if (argp[idx].type != ARGT_STR) {
958 msg = "string expected";
959 goto error;
960 }
961 if (inet_pton(AF_INET, argp[idx].data.str.area, &argp[idx].data.ipv4)) {
962 msg = "invalid IPv4 address";
963 goto error;
964 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100965 argp[idx].type = ARGT_IPV4;
966 break;
967
968 case ARGT_MSK4:
Christopher Faulete663a6e2020-08-07 09:11:22 +0200969 if (argp[idx].type == ARGT_SINT)
970 len2mask4(argp[idx].data.sint, &argp[idx].data.ipv4);
971 else if (argp[idx].type == ARGT_STR) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200972 if (!str2mask(argp[idx].data.str.area, &argp[idx].data.ipv4)) {
973 msg = "invalid IPv4 mask";
974 goto error;
975 }
976 }
977 else {
978 msg = "integer or string expected";
979 goto error;
Christopher Faulete663a6e2020-08-07 09:11:22 +0200980 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100981 argp[idx].type = ARGT_MSK4;
982 break;
983
984 case ARGT_IPV6:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200985 if (argp[idx].type != ARGT_STR) {
986 msg = "string expected";
987 goto error;
988 }
989 if (inet_pton(AF_INET6, argp[idx].data.str.area, &argp[idx].data.ipv6)) {
990 msg = "invalid IPv6 address";
991 goto error;
992 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100993 argp[idx].type = ARGT_IPV6;
994 break;
995
996 case ARGT_MSK6:
Christopher Faulete663a6e2020-08-07 09:11:22 +0200997 if (argp[idx].type == ARGT_SINT)
998 len2mask6(argp[idx].data.sint, &argp[idx].data.ipv6);
999 else if (argp[idx].type == ARGT_STR) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +02001000 if (!str2mask6(argp[idx].data.str.area, &argp[idx].data.ipv6)) {
1001 msg = "invalid IPv6 mask";
1002 goto error;
1003 }
1004 }
1005 else {
1006 msg = "integer or string expected";
1007 goto error;
Christopher Faulete663a6e2020-08-07 09:11:22 +02001008 }
Tim Duesterhusb814da62018-01-25 16:24:50 +01001009 argp[idx].type = ARGT_MSK6;
1010 break;
1011
Christopher Fauletfd2e9062020-08-06 11:10:57 +02001012 case ARGT_REG:
1013 if (argp[idx].type != ARGT_STR) {
1014 msg = "string expected";
1015 goto error;
1016 }
1017 reg = regex_comp(argp[idx].data.str.area, !(argp[idx].type_flags & ARGF_REG_ICASE), 1, &err);
1018 if (!reg) {
1019 msg = lua_pushfstring(L, "error compiling regex '%s' : '%s'",
1020 argp[idx].data.str.area, err);
1021 free(err);
1022 goto error;
1023 }
1024 argp[idx].type = ARGT_REG;
1025 argp[idx].data.reg = reg;
1026 break;
1027
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +01001028 case ARGT_USR:
Christopher Fauletd25d9262020-08-06 11:04:46 +02001029 if (argp[idx].type != ARGT_STR) {
1030 msg = "string expected";
1031 goto error;
1032 }
1033 if (p->uri_auth && p->uri_auth->userlist &&
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001034 strcmp(p->uri_auth->userlist->name, argp[idx].data.str.area) == 0)
Christopher Fauletd25d9262020-08-06 11:04:46 +02001035 ul = p->uri_auth->userlist;
1036 else
1037 ul = auth_find_userlist(argp[idx].data.str.area);
1038
1039 if (!ul) {
1040 msg = lua_pushfstring(L, "unable to find userlist '%s'", argp[idx].data.str.area);
1041 goto error;
1042 }
1043 argp[idx].type = ARGT_USR;
1044 argp[idx].data.usr = ul;
Christopher Fauletaec27ef2020-08-06 08:54:25 +02001045 break;
1046
1047 case ARGT_STR:
1048 if (!chunk_dup(&tmp, &argp[idx].data.str)) {
1049 msg = "unable to duplicate string arg";
1050 goto error;
1051 }
1052 argp[idx].data.str = tmp;
Thierry FOURNIER55da1652015-01-23 11:36:30 +01001053 break;
Christopher Fauletaec27ef2020-08-06 08:54:25 +02001054
Christopher Fauletd25d9262020-08-06 11:04:46 +02001055 case ARGT_MAP:
Christopher Fauletd25d9262020-08-06 11:04:46 +02001056 msg = "type not yet supported";
1057 goto error;
1058 break;
1059
Thierry FOURNIER55da1652015-01-23 11:36:30 +01001060 }
1061
1062 /* Check for type of argument. */
1063 if ((mask & ARGT_MASK) != argp[idx].type) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +02001064 msg = lua_pushfstring(L, "'%s' expected, got '%s'",
1065 arg_type_names[(mask & ARGT_MASK)],
1066 arg_type_names[argp[idx].type & ARGT_MASK]);
1067 goto error;
Thierry FOURNIER55da1652015-01-23 11:36:30 +01001068 }
1069
1070 /* Next argument. */
1071 mask >>= ARGT_BITS;
1072 idx++;
1073 }
Christopher Fauletaec27ef2020-08-06 08:54:25 +02001074 return 0;
1075
1076 error:
Willy Tarreauee0d7272021-07-16 10:26:56 +02001077 free_args(argp);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02001078 WILL_LJMP(luaL_argerror(L, first + idx, msg));
1079 return 0; /* Never reached */
Thierry FOURNIER55da1652015-01-23 11:36:30 +01001080}
1081
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001082/*
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001083 * The following functions are used to make correspondence between the the
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001084 * executed lua pointer and the "struct hlua *" that contain the context.
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001085 *
1086 * - hlua_gethlua : return the hlua context associated with an lua_State.
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001087 * - hlua_sethlua : create the association between hlua context and lua_state.
1088 */
1089static inline struct hlua *hlua_gethlua(lua_State *L)
1090{
Thierry FOURNIER38c5fd62015-03-10 02:40:29 +01001091 struct hlua **hlua = lua_getextraspace(L);
1092 return *hlua;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001093}
1094static inline void hlua_sethlua(struct hlua *hlua)
1095{
Thierry FOURNIER38c5fd62015-03-10 02:40:29 +01001096 struct hlua **hlua_store = lua_getextraspace(hlua->T);
1097 *hlua_store = hlua;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001098}
1099
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01001100/* This function is used to send logs. It try to send on screen (stderr)
1101 * and on the default syslog server.
1102 */
1103static inline void hlua_sendlog(struct proxy *px, int level, const char *msg)
1104{
1105 struct tm tm;
1106 char *p;
1107
1108 /* Cleanup the log message. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001109 p = trash.area;
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01001110 for (; *msg != '\0'; msg++, p++) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001111 if (p >= trash.area + trash.size - 1) {
Thierry FOURNIERccf00632015-09-16 12:47:03 +02001112 /* Break the message if exceed the buffer size. */
1113 *(p-4) = ' ';
1114 *(p-3) = '.';
1115 *(p-2) = '.';
1116 *(p-1) = '.';
1117 break;
1118 }
Willy Tarreau90807112020-02-25 08:16:33 +01001119 if (isprint((unsigned char)*msg))
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01001120 *p = *msg;
1121 else
1122 *p = '.';
1123 }
1124 *p = '\0';
1125
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001126 send_log(px, level, "%s\n", trash.area);
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01001127 if (!(global.mode & MODE_QUIET) || (global.mode & (MODE_VERBOSE | MODE_STARTING))) {
Christopher Fauletf98d8212020-10-02 18:13:52 +02001128 if (level == LOG_DEBUG && !(global.mode & MODE_DEBUG))
1129 return;
1130
Willy Tarreaua678b432015-08-28 10:14:59 +02001131 get_localtime(date.tv_sec, &tm);
1132 fprintf(stderr, "[%s] %03d/%02d%02d%02d (%d) : %s\n",
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01001133 log_levels[level], tm.tm_yday, tm.tm_hour, tm.tm_min, tm.tm_sec,
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001134 (int)getpid(), trash.area);
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01001135 fflush(stderr);
1136 }
1137}
1138
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001139/* This function just ensure that the yield will be always
1140 * returned with a timeout and permit to set some flags
1141 */
1142__LJMP void hlua_yieldk(lua_State *L, int nresults, int ctx,
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01001143 lua_KFunction k, int timeout, unsigned int flags)
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001144{
Thierry Fournier4234dbd2020-11-28 13:18:23 +01001145 struct hlua *hlua;
1146
1147 /* Get hlua struct, or NULL if we execute from main lua state */
1148 hlua = hlua_gethlua(L);
1149 if (!hlua) {
1150 return;
1151 }
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001152
1153 /* Set the wake timeout. If timeout is required, we set
1154 * the expiration time.
1155 */
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001156 hlua->wake_time = timeout;
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001157
Thierry FOURNIER4abd3ae2015-03-03 17:29:06 +01001158 hlua->flags |= flags;
1159
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001160 /* Process the yield. */
Willy Tarreau9635e032018-10-16 17:52:55 +02001161 MAY_LJMP(lua_yieldk(L, nresults, ctx, k));
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001162}
1163
Willy Tarreau87b09662015-04-03 00:22:06 +02001164/* This function initialises the Lua environment stored in the stream.
1165 * It must be called at the start of the stream. This function creates
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001166 * an LUA coroutine. It can not be use to crete the main LUA context.
Thierry FOURNIERbabae282015-09-17 11:36:37 +02001167 *
1168 * This function is particular. it initialises a new Lua thread. If the
1169 * initialisation fails (example: out of memory error), the lua function
1170 * throws an error (longjmp).
1171 *
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01001172 * In some case (at least one), this function can be called from safe
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05001173 * environment, so we must not initialise it. While the support of
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01001174 * threads appear, the safe environment set a lock to ensure only one
1175 * Lua execution at a time. If we initialize safe environment in another
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05001176 * safe environment, we have a dead lock.
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01001177 *
1178 * set "already_safe" true if the context is initialized form safe
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05001179 * Lua function.
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01001180 *
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001181 * This function manipulates two Lua stacks: the main and the thread. Only
Thierry FOURNIERbabae282015-09-17 11:36:37 +02001182 * the main stack can fail. The thread is not manipulated. This function
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001183 * MUST NOT manipulate the created thread stack state, because it is not
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05001184 * protected against errors thrown by the thread stack.
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001185 */
Thierry Fournier021d9862020-11-28 23:42:03 +01001186int hlua_ctx_init(struct hlua *lua, int state_id, struct task *task, int already_safe)
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001187{
1188 lua->Mref = LUA_REFNIL;
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01001189 lua->flags = 0;
Willy Tarreauf31af932020-01-14 09:59:38 +01001190 lua->gc_count = 0;
Christopher Fauletbc275a92020-02-26 14:55:16 +01001191 lua->wake_time = TICK_ETERNITY;
Thierry Fournier021d9862020-11-28 23:42:03 +01001192 lua->state_id = state_id;
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +01001193 LIST_INIT(&lua->com);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001194 if (!already_safe) {
1195 if (!SET_SAFE_LJMP_PARENT(lua)) {
1196 lua->Tref = LUA_REFNIL;
1197 return 0;
1198 }
1199 }
Thierry Fournier021d9862020-11-28 23:42:03 +01001200 lua->T = lua_newthread(hlua_states[state_id]);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001201 if (!lua->T) {
1202 lua->Tref = LUA_REFNIL;
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01001203 if (!already_safe)
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001204 RESET_SAFE_LJMP_PARENT(lua);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001205 return 0;
1206 }
1207 hlua_sethlua(lua);
Thierry Fournier021d9862020-11-28 23:42:03 +01001208 lua->Tref = luaL_ref(hlua_states[state_id], LUA_REGISTRYINDEX);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001209 lua->task = task;
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01001210 if (!already_safe)
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001211 RESET_SAFE_LJMP_PARENT(lua);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001212 return 1;
1213}
1214
Willy Tarreau87b09662015-04-03 00:22:06 +02001215/* Used to destroy the Lua coroutine when the attached stream or task
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001216 * is destroyed. The destroy also the memory context. The struct "lua"
1217 * is not freed.
1218 */
1219void hlua_ctx_destroy(struct hlua *lua)
1220{
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01001221 if (!lua)
Thierry FOURNIERa718b292015-03-04 16:48:34 +01001222 return;
1223
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01001224 if (!lua->T)
1225 goto end;
1226
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +01001227 /* Purge all the pending signals. */
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001228 notification_purge(&lua->com);
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +01001229
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001230 if (!SET_SAFE_LJMP(lua))
Thierry FOURNIER75d02082017-07-12 13:41:33 +02001231 return;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001232 luaL_unref(lua->T, LUA_REGISTRYINDEX, lua->Mref);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001233 RESET_SAFE_LJMP(lua);
Thierry FOURNIER5a50a852015-09-23 16:59:28 +02001234
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001235 if (!SET_SAFE_LJMP_PARENT(lua))
Thierry FOURNIER75d02082017-07-12 13:41:33 +02001236 return;
Thierry Fournier021d9862020-11-28 23:42:03 +01001237 luaL_unref(hlua_states[lua->state_id], LUA_REGISTRYINDEX, lua->Tref);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001238 RESET_SAFE_LJMP_PARENT(lua);
Thierry FOURNIER5a50a852015-09-23 16:59:28 +02001239 /* Forces a garbage collecting process. If the Lua program is finished
1240 * without error, we run the GC on the thread pointer. Its freed all
1241 * the unused memory.
1242 * If the thread is finnish with an error or is currently yielded,
1243 * it seems that the GC applied on the thread doesn't clean anything,
1244 * so e run the GC on the main thread.
1245 * NOTE: maybe this action locks all the Lua threads untiml the en of
1246 * the garbage collection.
1247 */
Willy Tarreauf31af932020-01-14 09:59:38 +01001248 if (lua->gc_count) {
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001249 if (!SET_SAFE_LJMP_PARENT(lua))
Thierry FOURNIER75d02082017-07-12 13:41:33 +02001250 return;
Thierry Fournier021d9862020-11-28 23:42:03 +01001251 lua_gc(hlua_states[lua->state_id], LUA_GCCOLLECT, 0);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001252 RESET_SAFE_LJMP_PARENT(lua);
Thierry FOURNIER7c39ab42015-09-27 22:53:33 +02001253 }
Thierry FOURNIER5a50a852015-09-23 16:59:28 +02001254
Thierry FOURNIERa7b536b2015-09-21 22:50:24 +02001255 lua->T = NULL;
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01001256
1257end:
Willy Tarreaubafbe012017-11-24 17:34:44 +01001258 pool_free(pool_head_hlua, lua);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001259}
1260
1261/* This function is used to restore the Lua context when a coroutine
1262 * fails. This function copy the common memory between old coroutine
1263 * and the new coroutine. The old coroutine is destroyed, and its
1264 * replaced by the new coroutine.
1265 * If the flag "keep_msg" is set, the last entry of the old is assumed
1266 * as string error message and it is copied in the new stack.
1267 */
1268static int hlua_ctx_renew(struct hlua *lua, int keep_msg)
1269{
1270 lua_State *T;
1271 int new_ref;
1272
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001273 /* New Lua coroutine. */
Thierry Fournier021d9862020-11-28 23:42:03 +01001274 T = lua_newthread(hlua_states[lua->state_id]);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001275 if (!T)
1276 return 0;
1277
1278 /* Copy last error message. */
1279 if (keep_msg)
1280 lua_xmove(lua->T, T, 1);
1281
1282 /* Copy data between the coroutines. */
1283 lua_rawgeti(lua->T, LUA_REGISTRYINDEX, lua->Mref);
1284 lua_xmove(lua->T, T, 1);
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05001285 new_ref = luaL_ref(T, LUA_REGISTRYINDEX); /* Value popped. */
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001286
1287 /* Destroy old data. */
1288 luaL_unref(lua->T, LUA_REGISTRYINDEX, lua->Mref);
1289
1290 /* The thread is garbage collected by Lua. */
Thierry Fournier021d9862020-11-28 23:42:03 +01001291 luaL_unref(hlua_states[lua->state_id], LUA_REGISTRYINDEX, lua->Tref);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001292
1293 /* Fill the struct with the new coroutine values. */
1294 lua->Mref = new_ref;
1295 lua->T = T;
Thierry Fournier021d9862020-11-28 23:42:03 +01001296 lua->Tref = luaL_ref(hlua_states[lua->state_id], LUA_REGISTRYINDEX);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001297
1298 /* Set context. */
1299 hlua_sethlua(lua);
1300
1301 return 1;
1302}
1303
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001304void hlua_hook(lua_State *L, lua_Debug *ar)
1305{
Thierry Fournier4234dbd2020-11-28 13:18:23 +01001306 struct hlua *hlua;
1307
1308 /* Get hlua struct, or NULL if we execute from main lua state */
1309 hlua = hlua_gethlua(L);
1310 if (!hlua)
1311 return;
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001312
1313 /* Lua cannot yield when its returning from a function,
1314 * so, we can fix the interrupt hook to 1 instruction,
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05001315 * expecting that the function is finished.
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001316 */
1317 if (lua_gethookmask(L) & LUA_MASKRET) {
1318 lua_sethook(hlua->T, hlua_hook, LUA_MASKCOUNT, 1);
1319 return;
1320 }
1321
1322 /* restore the interrupt condition. */
1323 lua_sethook(hlua->T, hlua_hook, LUA_MASKCOUNT, hlua_nb_instruction);
1324
1325 /* If we interrupt the Lua processing in yieldable state, we yield.
1326 * If the state is not yieldable, trying yield causes an error.
1327 */
1328 if (lua_isyieldable(L))
Willy Tarreau9635e032018-10-16 17:52:55 +02001329 MAY_LJMP(hlua_yieldk(L, 0, 0, NULL, TICK_ETERNITY, HLUA_CTRLYIELD));
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001330
Thierry FOURNIERa85cfb12015-03-13 14:50:06 +01001331 /* If we cannot yield, update the clock and check the timeout. */
Willy Tarreau55542642021-10-08 09:33:24 +02001332 clock_update_date(0, 1);
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001333 hlua->run_time += now_ms - hlua->start_time;
1334 if (hlua->max_time && hlua->run_time >= hlua->max_time) {
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001335 lua_pushfstring(L, "execution timeout");
1336 WILL_LJMP(lua_error(L));
1337 }
1338
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001339 /* Update the start time. */
1340 hlua->start_time = now_ms;
1341
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001342 /* Try to interrupt the process at the end of the current
1343 * unyieldable function.
1344 */
1345 lua_sethook(hlua->T, hlua_hook, LUA_MASKRET|LUA_MASKCOUNT, hlua_nb_instruction);
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001346}
1347
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001348/* This function start or resumes the Lua stack execution. If the flag
1349 * "yield_allowed" if no set and the LUA stack execution returns a yield
1350 * The function return an error.
1351 *
1352 * The function can returns 4 values:
1353 * - HLUA_E_OK : The execution is terminated without any errors.
1354 * - HLUA_E_AGAIN : The execution must continue at the next associated
1355 * task wakeup.
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001356 * - HLUA_E_ERRMSG : An error has occurred, an error message is set in
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001357 * the top of the stack.
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001358 * - HLUA_E_ERR : An error has occurred without error message.
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001359 *
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001360 * If an error occurred, the stack is renewed and it is ready to run new
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001361 * LUA code.
1362 */
1363static enum hlua_exec hlua_ctx_resume(struct hlua *lua, int yield_allowed)
1364{
Christopher Faulet08ed98f2020-07-28 10:33:25 +02001365#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504
1366 int nres;
1367#endif
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001368 int ret;
1369 const char *msg;
Thierry FOURNIERfc044c92018-06-07 14:40:48 +02001370 const char *trace;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001371
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001372 /* Initialise run time counter. */
1373 if (!HLUA_IS_RUNNING(lua))
1374 lua->run_time = 0;
Thierry FOURNIERdc9ca962015-03-05 11:16:52 +01001375
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +02001376 /* Lock the whole Lua execution. This lock must be before the
1377 * label "resume_execution".
1378 */
Thierry Fournier021d9862020-11-28 23:42:03 +01001379 if (lua->state_id == 0)
Willy Tarreau1e7bef12021-08-20 15:47:25 +02001380 lua_take_global_lock();
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +02001381
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001382resume_execution:
1383
1384 /* This hook interrupts the Lua processing each 'hlua_nb_instruction'
1385 * instructions. it is used for preventing infinite loops.
1386 */
1387 lua_sethook(lua->T, hlua_hook, LUA_MASKCOUNT, hlua_nb_instruction);
1388
Thierry FOURNIER1bfc09b2015-03-05 17:10:14 +01001389 /* Remove all flags except the running flags. */
Thierry FOURNIER2f3867f2015-09-28 01:02:01 +02001390 HLUA_SET_RUN(lua);
1391 HLUA_CLR_CTRLYIELD(lua);
1392 HLUA_CLR_WAKERESWR(lua);
1393 HLUA_CLR_WAKEREQWR(lua);
Christopher Faulet1f43a342021-08-04 17:58:21 +02001394 HLUA_CLR_NOYIELD(lua);
1395 if (!yield_allowed)
1396 HLUA_SET_NOYIELD(lua);
Thierry FOURNIER1bfc09b2015-03-05 17:10:14 +01001397
Christopher Fauletbc275a92020-02-26 14:55:16 +01001398 /* Update the start time and reset wake_time. */
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001399 lua->start_time = now_ms;
Christopher Fauletbc275a92020-02-26 14:55:16 +01001400 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001401
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001402 /* Call the function. */
Christopher Faulet08ed98f2020-07-28 10:33:25 +02001403#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504
Thierry Fournier021d9862020-11-28 23:42:03 +01001404 ret = lua_resume(lua->T, hlua_states[lua->state_id], lua->nargs, &nres);
Christopher Faulet08ed98f2020-07-28 10:33:25 +02001405#else
Thierry Fournier021d9862020-11-28 23:42:03 +01001406 ret = lua_resume(lua->T, hlua_states[lua->state_id], lua->nargs);
Christopher Faulet08ed98f2020-07-28 10:33:25 +02001407#endif
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001408 switch (ret) {
1409
1410 case LUA_OK:
1411 ret = HLUA_E_OK;
1412 break;
1413
1414 case LUA_YIELD:
Thierry FOURNIERdc9ca962015-03-05 11:16:52 +01001415 /* Check if the execution timeout is expired. It it is the case, we
1416 * break the Lua execution.
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001417 */
Willy Tarreau55542642021-10-08 09:33:24 +02001418 clock_update_date(0, 1);
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001419 lua->run_time += now_ms - lua->start_time;
1420 if (lua->max_time && lua->run_time > lua->max_time) {
Thierry FOURNIERdc9ca962015-03-05 11:16:52 +01001421 lua_settop(lua->T, 0); /* Empty the stack. */
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001422 ret = HLUA_E_ETMOUT;
Thierry FOURNIERdc9ca962015-03-05 11:16:52 +01001423 break;
1424 }
1425 /* Process the forced yield. if the general yield is not allowed or
1426 * if no task were associated this the current Lua execution
1427 * coroutine, we resume the execution. Else we want to return in the
1428 * scheduler and we want to be waked up again, to continue the
1429 * current Lua execution. So we schedule our own task.
1430 */
1431 if (HLUA_IS_CTRLYIELDING(lua)) {
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001432 if (!yield_allowed || !lua->task)
1433 goto resume_execution;
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001434 task_wakeup(lua->task, TASK_WOKEN_MSG);
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001435 }
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001436 if (!yield_allowed) {
1437 lua_settop(lua->T, 0); /* Empty the stack. */
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001438 ret = HLUA_E_YIELD;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001439 break;
1440 }
1441 ret = HLUA_E_AGAIN;
1442 break;
1443
1444 case LUA_ERRRUN:
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02001445
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001446 /* Special exit case. The traditional exit is returned as an error
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02001447 * because the errors ares the only one mean to return immediately
1448 * from and lua execution.
1449 */
1450 if (lua->flags & HLUA_EXIT) {
1451 ret = HLUA_E_OK;
Christopher Faulet7716cdf2020-01-29 11:53:30 +01001452 hlua_ctx_renew(lua, 1);
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02001453 break;
1454 }
1455
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001456 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001457 if (!lua_checkstack(lua->T, 1)) {
1458 ret = HLUA_E_ERR;
1459 break;
1460 }
1461 msg = lua_tostring(lua->T, -1);
1462 lua_settop(lua->T, 0); /* Empty the stack. */
1463 lua_pop(lua->T, 1);
Christopher Fauletd09cc512021-03-24 14:48:45 +01001464 trace = hlua_traceback(lua->T, ", ");
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001465 if (msg)
Thierry Fournier46278ff2020-11-29 11:48:12 +01001466 lua_pushfstring(lua->T, "[state-id %d] runtime error: %s from %s", lua->state_id, msg, trace);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001467 else
Thierry Fournier46278ff2020-11-29 11:48:12 +01001468 lua_pushfstring(lua->T, "[state-id %d] unknown runtime error from %s", lua->state_id, trace);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001469 ret = HLUA_E_ERRMSG;
1470 break;
1471
1472 case LUA_ERRMEM:
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001473 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001474 lua_settop(lua->T, 0); /* Empty the stack. */
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001475 ret = HLUA_E_NOMEM;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001476 break;
1477
1478 case LUA_ERRERR:
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001479 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001480 if (!lua_checkstack(lua->T, 1)) {
1481 ret = HLUA_E_ERR;
1482 break;
1483 }
1484 msg = lua_tostring(lua->T, -1);
1485 lua_settop(lua->T, 0); /* Empty the stack. */
1486 lua_pop(lua->T, 1);
1487 if (msg)
Thierry Fournier46278ff2020-11-29 11:48:12 +01001488 lua_pushfstring(lua->T, "[state-id %d] message handler error: %s", lua->state_id, msg);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001489 else
Thierry Fournier46278ff2020-11-29 11:48:12 +01001490 lua_pushfstring(lua->T, "[state-id %d] message handler error", lua->state_id);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001491 ret = HLUA_E_ERRMSG;
1492 break;
1493
1494 default:
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001495 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001496 lua_settop(lua->T, 0); /* Empty the stack. */
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001497 ret = HLUA_E_ERR;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001498 break;
1499 }
1500
1501 switch (ret) {
1502 case HLUA_E_AGAIN:
1503 break;
1504
1505 case HLUA_E_ERRMSG:
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001506 notification_purge(&lua->com);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001507 hlua_ctx_renew(lua, 1);
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01001508 HLUA_CLR_RUN(lua);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001509 break;
1510
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001511 case HLUA_E_ETMOUT:
1512 case HLUA_E_NOMEM:
1513 case HLUA_E_YIELD:
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001514 case HLUA_E_ERR:
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01001515 HLUA_CLR_RUN(lua);
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001516 notification_purge(&lua->com);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001517 hlua_ctx_renew(lua, 0);
1518 break;
1519
1520 case HLUA_E_OK:
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01001521 HLUA_CLR_RUN(lua);
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001522 notification_purge(&lua->com);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001523 break;
1524 }
1525
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +02001526 /* This is the main exit point, remove the Lua lock. */
Thierry Fournier021d9862020-11-28 23:42:03 +01001527 if (lua->state_id == 0)
Willy Tarreau1e7bef12021-08-20 15:47:25 +02001528 lua_drop_global_lock();
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +02001529
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001530 return ret;
1531}
1532
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02001533/* This function exit the current code. */
1534__LJMP static int hlua_done(lua_State *L)
1535{
Thierry Fournier4234dbd2020-11-28 13:18:23 +01001536 struct hlua *hlua;
1537
1538 /* Get hlua struct, or NULL if we execute from main lua state */
1539 hlua = hlua_gethlua(L);
1540 if (!hlua)
1541 return 0;
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02001542
1543 hlua->flags |= HLUA_EXIT;
1544 WILL_LJMP(lua_error(L));
1545
1546 return 0;
1547}
1548
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001549/* This function is an LUA binding. It provides a function
1550 * for deleting ACL from a referenced ACL file.
1551 */
1552__LJMP static int hlua_del_acl(lua_State *L)
1553{
1554 const char *name;
1555 const char *key;
1556 struct pat_ref *ref;
1557
1558 MAY_LJMP(check_args(L, 2, "del_acl"));
1559
1560 name = MAY_LJMP(luaL_checkstring(L, 1));
1561 key = MAY_LJMP(luaL_checkstring(L, 2));
1562
1563 ref = pat_ref_lookup(name);
1564 if (!ref)
Vincent Bernata72db182015-10-06 16:05:59 +02001565 WILL_LJMP(luaL_error(L, "'del_acl': unknown acl file '%s'", name));
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001566
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001567 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001568 pat_ref_delete(ref, key);
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001569 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001570 return 0;
1571}
1572
1573/* This function is an LUA binding. It provides a function
1574 * for deleting map entry from a referenced map file.
1575 */
1576static int hlua_del_map(lua_State *L)
1577{
1578 const char *name;
1579 const char *key;
1580 struct pat_ref *ref;
1581
1582 MAY_LJMP(check_args(L, 2, "del_map"));
1583
1584 name = MAY_LJMP(luaL_checkstring(L, 1));
1585 key = MAY_LJMP(luaL_checkstring(L, 2));
1586
1587 ref = pat_ref_lookup(name);
1588 if (!ref)
Vincent Bernata72db182015-10-06 16:05:59 +02001589 WILL_LJMP(luaL_error(L, "'del_map': unknown acl file '%s'", name));
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001590
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001591 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001592 pat_ref_delete(ref, key);
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001593 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001594 return 0;
1595}
1596
1597/* This function is an LUA binding. It provides a function
1598 * for adding ACL pattern from a referenced ACL file.
1599 */
1600static int hlua_add_acl(lua_State *L)
1601{
1602 const char *name;
1603 const char *key;
1604 struct pat_ref *ref;
1605
1606 MAY_LJMP(check_args(L, 2, "add_acl"));
1607
1608 name = MAY_LJMP(luaL_checkstring(L, 1));
1609 key = MAY_LJMP(luaL_checkstring(L, 2));
1610
1611 ref = pat_ref_lookup(name);
1612 if (!ref)
Vincent Bernata72db182015-10-06 16:05:59 +02001613 WILL_LJMP(luaL_error(L, "'add_acl': unknown acl file '%s'", name));
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001614
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001615 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001616 if (pat_ref_find_elt(ref, key) == NULL)
1617 pat_ref_add(ref, key, NULL, NULL);
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001618 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001619 return 0;
1620}
1621
1622/* This function is an LUA binding. It provides a function
1623 * for setting map pattern and sample from a referenced map
1624 * file.
1625 */
1626static int hlua_set_map(lua_State *L)
1627{
1628 const char *name;
1629 const char *key;
1630 const char *value;
1631 struct pat_ref *ref;
1632
1633 MAY_LJMP(check_args(L, 3, "set_map"));
1634
1635 name = MAY_LJMP(luaL_checkstring(L, 1));
1636 key = MAY_LJMP(luaL_checkstring(L, 2));
1637 value = MAY_LJMP(luaL_checkstring(L, 3));
1638
1639 ref = pat_ref_lookup(name);
1640 if (!ref)
Vincent Bernata72db182015-10-06 16:05:59 +02001641 WILL_LJMP(luaL_error(L, "'set_map': unknown map file '%s'", name));
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001642
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001643 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001644 if (pat_ref_find_elt(ref, key) != NULL)
1645 pat_ref_set(ref, key, value, NULL);
1646 else
1647 pat_ref_add(ref, key, value, NULL);
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001648 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001649 return 0;
1650}
1651
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01001652/* A class is a lot of memory that contain data. This data can be a table,
1653 * an integer or user data. This data is associated with a metatable. This
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001654 * metatable have an original version registered in the global context with
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01001655 * the name of the object (_G[<name>] = <metable> ).
1656 *
1657 * A metable is a table that modify the standard behavior of a standard
1658 * access to the associated data. The entries of this new metatable are
1659 * defined as is:
1660 *
1661 * http://lua-users.org/wiki/MetatableEvents
1662 *
1663 * __index
1664 *
1665 * we access an absent field in a table, the result is nil. This is
1666 * true, but it is not the whole truth. Actually, such access triggers
1667 * the interpreter to look for an __index metamethod: If there is no
1668 * such method, as usually happens, then the access results in nil;
1669 * otherwise, the metamethod will provide the result.
1670 *
1671 * Control 'prototype' inheritance. When accessing "myTable[key]" and
1672 * the key does not appear in the table, but the metatable has an __index
1673 * property:
1674 *
1675 * - if the value is a function, the function is called, passing in the
1676 * table and the key; the return value of that function is returned as
1677 * the result.
1678 *
1679 * - if the value is another table, the value of the key in that table is
1680 * asked for and returned (and if it doesn't exist in that table, but that
1681 * table's metatable has an __index property, then it continues on up)
1682 *
1683 * - Use "rawget(myTable,key)" to skip this metamethod.
1684 *
1685 * http://www.lua.org/pil/13.4.1.html
1686 *
1687 * __newindex
1688 *
1689 * Like __index, but control property assignment.
1690 *
1691 * __mode - Control weak references. A string value with one or both
1692 * of the characters 'k' and 'v' which specifies that the the
1693 * keys and/or values in the table are weak references.
1694 *
1695 * __call - Treat a table like a function. When a table is followed by
1696 * parenthesis such as "myTable( 'foo' )" and the metatable has
1697 * a __call key pointing to a function, that function is invoked
1698 * (passing any specified arguments) and the return value is
1699 * returned.
1700 *
1701 * __metatable - Hide the metatable. When "getmetatable( myTable )" is
1702 * called, if the metatable for myTable has a __metatable
1703 * key, the value of that key is returned instead of the
1704 * actual metatable.
1705 *
1706 * __tostring - Control string representation. When the builtin
1707 * "tostring( myTable )" function is called, if the metatable
1708 * for myTable has a __tostring property set to a function,
1709 * that function is invoked (passing myTable to it) and the
1710 * return value is used as the string representation.
1711 *
1712 * __len - Control table length. When the table length is requested using
1713 * the length operator ( '#' ), if the metatable for myTable has
1714 * a __len key pointing to a function, that function is invoked
1715 * (passing myTable to it) and the return value used as the value
1716 * of "#myTable".
1717 *
1718 * __gc - Userdata finalizer code. When userdata is set to be garbage
1719 * collected, if the metatable has a __gc field pointing to a
1720 * function, that function is first invoked, passing the userdata
1721 * to it. The __gc metamethod is not called for tables.
1722 * (See http://lua-users.org/lists/lua-l/2006-11/msg00508.html)
1723 *
1724 * Special metamethods for redefining standard operators:
1725 * http://www.lua.org/pil/13.1.html
1726 *
1727 * __add "+"
1728 * __sub "-"
1729 * __mul "*"
1730 * __div "/"
1731 * __unm "!"
1732 * __pow "^"
1733 * __concat ".."
1734 *
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05001735 * Special methods for redefining standard relations
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01001736 * http://www.lua.org/pil/13.2.html
1737 *
1738 * __eq "=="
1739 * __lt "<"
1740 * __le "<="
1741 */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001742
1743/*
1744 *
1745 *
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001746 * Class Map
1747 *
1748 *
1749 */
1750
1751/* Returns a struct hlua_map if the stack entry "ud" is
1752 * a class session, otherwise it throws an error.
1753 */
1754__LJMP static struct map_descriptor *hlua_checkmap(lua_State *L, int ud)
1755{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02001756 return MAY_LJMP(hlua_checkudata(L, ud, class_map_ref));
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001757}
1758
1759/* This function is the map constructor. It don't need
1760 * the class Map object. It creates and return a new Map
1761 * object. It must be called only during "body" or "init"
1762 * context because it process some filesystem accesses.
1763 */
1764__LJMP static int hlua_map_new(struct lua_State *L)
1765{
1766 const char *fn;
1767 int match = PAT_MATCH_STR;
1768 struct sample_conv conv;
1769 const char *file = "";
1770 int line = 0;
1771 lua_Debug ar;
1772 char *err = NULL;
1773 struct arg args[2];
1774
1775 if (lua_gettop(L) < 1 || lua_gettop(L) > 2)
1776 WILL_LJMP(luaL_error(L, "'new' needs at least 1 argument."));
1777
1778 fn = MAY_LJMP(luaL_checkstring(L, 1));
1779
1780 if (lua_gettop(L) >= 2) {
1781 match = MAY_LJMP(luaL_checkinteger(L, 2));
1782 if (match < 0 || match >= PAT_MATCH_NUM)
1783 WILL_LJMP(luaL_error(L, "'new' needs a valid match method."));
1784 }
1785
1786 /* Get Lua filename and line number. */
1787 if (lua_getstack(L, 1, &ar)) { /* check function at level */
1788 lua_getinfo(L, "Sl", &ar); /* get info about it */
1789 if (ar.currentline > 0) { /* is there info? */
1790 file = ar.short_src;
1791 line = ar.currentline;
1792 }
1793 }
1794
1795 /* fill fake sample_conv struct. */
1796 conv.kw = ""; /* unused. */
1797 conv.process = NULL; /* unused. */
1798 conv.arg_mask = 0; /* unused. */
1799 conv.val_args = NULL; /* unused. */
1800 conv.out_type = SMP_T_STR;
1801 conv.private = (void *)(long)match;
1802 switch (match) {
1803 case PAT_MATCH_STR: conv.in_type = SMP_T_STR; break;
1804 case PAT_MATCH_BEG: conv.in_type = SMP_T_STR; break;
1805 case PAT_MATCH_SUB: conv.in_type = SMP_T_STR; break;
1806 case PAT_MATCH_DIR: conv.in_type = SMP_T_STR; break;
1807 case PAT_MATCH_DOM: conv.in_type = SMP_T_STR; break;
1808 case PAT_MATCH_END: conv.in_type = SMP_T_STR; break;
1809 case PAT_MATCH_REG: conv.in_type = SMP_T_STR; break;
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001810 case PAT_MATCH_INT: conv.in_type = SMP_T_SINT; break;
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001811 case PAT_MATCH_IP: conv.in_type = SMP_T_ADDR; break;
1812 default:
1813 WILL_LJMP(luaL_error(L, "'new' doesn't support this match mode."));
1814 }
1815
1816 /* fill fake args. */
1817 args[0].type = ARGT_STR;
Christopher Faulet73292e92020-08-06 08:40:09 +02001818 args[0].data.str.area = strdup(fn);
1819 args[0].data.str.data = strlen(fn);
1820 args[0].data.str.size = args[0].data.str.data+1;
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001821 args[1].type = ARGT_STOP;
1822
1823 /* load the map. */
1824 if (!sample_load_map(args, &conv, file, line, &err)) {
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001825 /* error case: we can't use luaL_error because we must
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001826 * free the err variable.
1827 */
1828 luaL_where(L, 1);
1829 lua_pushfstring(L, "'new': %s.", err);
1830 lua_concat(L, 2);
1831 free(err);
Christopher Faulet6ad7df42020-08-07 11:45:18 +02001832 chunk_destroy(&args[0].data.str);
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001833 WILL_LJMP(lua_error(L));
1834 }
1835
1836 /* create the lua object. */
1837 lua_newtable(L);
1838 lua_pushlightuserdata(L, args[0].data.map);
1839 lua_rawseti(L, -2, 0);
1840
1841 /* Pop a class Map metatable and affect it to the userdata. */
1842 lua_rawgeti(L, LUA_REGISTRYINDEX, class_map_ref);
1843 lua_setmetatable(L, -2);
1844
1845
1846 return 1;
1847}
1848
1849__LJMP static inline int _hlua_map_lookup(struct lua_State *L, int str)
1850{
1851 struct map_descriptor *desc;
1852 struct pattern *pat;
1853 struct sample smp;
1854
1855 MAY_LJMP(check_args(L, 2, "lookup"));
1856 desc = MAY_LJMP(hlua_checkmap(L, 1));
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001857 if (desc->pat.expect_type == SMP_T_SINT) {
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001858 smp.data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001859 smp.data.u.sint = MAY_LJMP(luaL_checkinteger(L, 2));
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001860 }
1861 else {
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001862 smp.data.type = SMP_T_STR;
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001863 smp.flags = SMP_F_CONST;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001864 smp.data.u.str.area = (char *)MAY_LJMP(luaL_checklstring(L, 2, (size_t *)&smp.data.u.str.data));
Thierry Fournier91dc0c02020-11-10 20:38:20 +01001865 smp.data.u.str.size = smp.data.u.str.data + 1;
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001866 }
1867
1868 pat = pattern_exec_match(&desc->pat, &smp, 1);
Thierry FOURNIER503bb092015-08-19 08:35:43 +02001869 if (!pat || !pat->data) {
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001870 if (str)
1871 lua_pushstring(L, "");
1872 else
1873 lua_pushnil(L);
1874 return 1;
1875 }
1876
1877 /* The Lua pattern must return a string, so we can't check the returned type */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001878 lua_pushlstring(L, pat->data->u.str.area, pat->data->u.str.data);
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001879 return 1;
1880}
1881
1882__LJMP static int hlua_map_lookup(struct lua_State *L)
1883{
1884 return _hlua_map_lookup(L, 0);
1885}
1886
1887__LJMP static int hlua_map_slookup(struct lua_State *L)
1888{
1889 return _hlua_map_lookup(L, 1);
1890}
1891
1892/*
1893 *
1894 *
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001895 * Class Socket
1896 *
1897 *
1898 */
1899
1900__LJMP static struct hlua_socket *hlua_checksocket(lua_State *L, int ud)
1901{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02001902 return MAY_LJMP(hlua_checkudata(L, ud, class_socket_ref));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001903}
1904
1905/* This function is the handler called for each I/O on the established
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001906 * connection. It is used for notify space available to send or data
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001907 * received.
1908 */
Willy Tarreau00a37f02015-04-13 12:05:19 +02001909static void hlua_socket_handler(struct appctx *appctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001910{
Christopher Faulet908628c2022-03-25 16:43:49 +01001911 struct conn_stream *cs = appctx->owner;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001912
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02001913 if (appctx->ctx.hlua_cosocket.die) {
Christopher Fauletda098e62022-03-31 17:44:45 +02001914 cs_shutw(cs);
1915 cs_shutr(cs);
Christopher Faulet908628c2022-03-25 16:43:49 +01001916 cs_ic(cs)->flags |= CF_READ_NULL;
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001917 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read);
1918 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write);
Christopher Faulet908628c2022-03-25 16:43:49 +01001919 stream_shutdown(__cs_strm(cs), SF_ERR_KILLED);
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02001920 }
1921
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001922 /* If we can't write, wakeup the pending write signals. */
Christopher Faulet908628c2022-03-25 16:43:49 +01001923 if (channel_output_closed(cs_ic(cs)))
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001924 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write);
Thierry FOURNIER6d695e62015-09-27 19:29:38 +02001925
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001926 /* If we can't read, wakeup the pending read signals. */
Christopher Faulet908628c2022-03-25 16:43:49 +01001927 if (channel_input_closed(cs_oc(cs)))
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001928 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read);
Thierry FOURNIER6d695e62015-09-27 19:29:38 +02001929
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02001930 /* if the connection is not established, inform the stream that we want
Thierry FOURNIER316e3192015-09-04 18:25:53 +02001931 * to be notified whenever the connection completes.
1932 */
Christopher Faulet62e75742022-03-31 09:16:34 +02001933 if (cs_opposite(cs)->state < CS_ST_EST) {
Christopher Fauleta0bdec32022-04-04 07:51:21 +02001934 cs_cant_get(cs);
1935 cs_rx_conn_blk(cs);
1936 cs_rx_endp_more(cs);
Willy Tarreaud4da1962015-04-20 01:31:23 +02001937 return;
Thierry FOURNIER316e3192015-09-04 18:25:53 +02001938 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001939
1940 /* This function is called after the connect. */
Thierry FOURNIER18d09902016-12-16 09:25:38 +01001941 appctx->ctx.hlua_cosocket.connected = 1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001942
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001943 /* Wake the tasks which wants to write if the buffer have available space. */
Christopher Faulet908628c2022-03-25 16:43:49 +01001944 if (channel_may_recv(cs_ic(cs)))
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001945 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001946
1947 /* Wake the tasks which wants to read if the buffer contains data. */
Christopher Faulet908628c2022-03-25 16:43:49 +01001948 if (!channel_is_empty(cs_oc(cs)))
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001949 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read);
Thierry FOURNIER101b9762018-05-27 01:27:40 +02001950
1951 /* Some data were injected in the buffer, notify the stream
1952 * interface.
1953 */
Christopher Faulet908628c2022-03-25 16:43:49 +01001954 if (!channel_is_empty(cs_ic(cs)))
Christopher Faulet13045f02022-04-01 14:23:38 +02001955 cs_update(cs);
Thierry FOURNIER101b9762018-05-27 01:27:40 +02001956
1957 /* If write notifications are registered, we considers we want
Willy Tarreau3367d412018-11-15 10:57:41 +01001958 * to write, so we clear the blocking flag.
Thierry FOURNIER101b9762018-05-27 01:27:40 +02001959 */
1960 if (notification_registered(&appctx->ctx.hlua_cosocket.wake_on_write))
Christopher Fauleta0bdec32022-04-04 07:51:21 +02001961 cs_rx_endp_more(cs);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001962}
1963
Willy Tarreau87b09662015-04-03 00:22:06 +02001964/* This function is called when the "struct stream" is destroyed.
1965 * Remove the link from the object to this stream.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001966 * Wake all the pending signals.
1967 */
Willy Tarreau00a37f02015-04-13 12:05:19 +02001968static void hlua_socket_release(struct appctx *appctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001969{
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001970 struct xref *peer;
1971
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001972 /* Remove my link in the original object. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001973 peer = xref_get_peer_and_lock(&appctx->ctx.hlua_cosocket.xref);
1974 if (peer)
1975 xref_disconnect(&appctx->ctx.hlua_cosocket.xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001976
1977 /* Wake all the task waiting for me. */
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001978 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read);
1979 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001980}
1981
1982/* If the garbage collectio of the object is launch, nobody
Willy Tarreau87b09662015-04-03 00:22:06 +02001983 * uses this object. If the stream does not exists, just quit.
1984 * Send the shutdown signal to the stream. In some cases,
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001985 * pending signal can rest in the read and write lists. destroy
1986 * it.
1987 */
1988__LJMP static int hlua_socket_gc(lua_State *L)
1989{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001990 struct hlua_socket *socket;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001991 struct appctx *appctx;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001992 struct xref *peer;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001993
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001994 MAY_LJMP(check_args(L, 1, "__gc"));
1995
1996 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001997 peer = xref_get_peer_and_lock(&socket->xref);
1998 if (!peer)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001999 return 0;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002000 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002001
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002002 /* Set the flag which destroy the session. */
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02002003 appctx->ctx.hlua_cosocket.die = 1;
2004 appctx_wakeup(appctx);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002005
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002006 /* Remove all reference between the Lua stack and the coroutine stream. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002007 xref_disconnect(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002008 return 0;
2009}
2010
2011/* The close function send shutdown signal and break the
Willy Tarreau87b09662015-04-03 00:22:06 +02002012 * links between the stream and the object.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002013 */
sada05ed3302018-05-11 11:48:18 -07002014__LJMP static int hlua_socket_close_helper(lua_State *L)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002015{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002016 struct hlua_socket *socket;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002017 struct appctx *appctx;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002018 struct xref *peer;
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002019 struct hlua *hlua;
2020
2021 /* Get hlua struct, or NULL if we execute from main lua state */
2022 hlua = hlua_gethlua(L);
2023 if (!hlua)
2024 return 0;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002025
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002026 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002027
2028 /* Check if we run on the same thread than the xreator thread.
2029 * We cannot access to the socket if the thread is different.
2030 */
2031 if (socket->tid != tid)
2032 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2033
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002034 peer = xref_get_peer_and_lock(&socket->xref);
2035 if (!peer)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002036 return 0;
Willy Tarreauf31af932020-01-14 09:59:38 +01002037
2038 hlua->gc_count--;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002039 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002040
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002041 /* Set the flag which destroy the session. */
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02002042 appctx->ctx.hlua_cosocket.die = 1;
2043 appctx_wakeup(appctx);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002044
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002045 /* Remove all reference between the Lua stack and the coroutine stream. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002046 xref_disconnect(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002047 return 0;
2048}
2049
sada05ed3302018-05-11 11:48:18 -07002050/* The close function calls close_helper.
2051 */
2052__LJMP static int hlua_socket_close(lua_State *L)
2053{
2054 MAY_LJMP(check_args(L, 1, "close"));
2055 return hlua_socket_close_helper(L);
2056}
2057
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002058/* This Lua function assumes that the stack contain three parameters.
2059 * 1 - USERDATA containing a struct socket
2060 * 2 - INTEGER with values of the macro defined below
2061 * If the integer is -1, we must read at most one line.
2062 * If the integer is -2, we ust read all the data until the
2063 * end of the stream.
2064 * If the integer is positive value, we must read a number of
2065 * bytes corresponding to this value.
2066 */
2067#define HLSR_READ_LINE (-1)
2068#define HLSR_READ_ALL (-2)
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002069__LJMP static int hlua_socket_receive_yield(struct lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002070{
2071 struct hlua_socket *socket = MAY_LJMP(hlua_checksocket(L, 1));
2072 int wanted = lua_tointeger(L, 2);
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002073 struct hlua *hlua;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002074 struct appctx *appctx;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02002075 size_t len;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002076 int nblk;
Willy Tarreau206ba832018-06-14 15:27:31 +02002077 const char *blk1;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02002078 size_t len1;
Willy Tarreau206ba832018-06-14 15:27:31 +02002079 const char *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02002080 size_t len2;
Thierry FOURNIER00543922015-03-09 18:35:06 +01002081 int skip_at_end = 0;
Willy Tarreau81389672015-03-10 12:03:52 +01002082 struct channel *oc;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002083 struct stream *s;
2084 struct xref *peer;
Thierry FOURNIER8c126c72018-05-25 16:27:44 +02002085 int missing_bytes;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002086
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002087 /* Get hlua struct, or NULL if we execute from main lua state */
2088 hlua = hlua_gethlua(L);
2089
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002090 /* Check if this lua stack is schedulable. */
2091 if (!hlua || !hlua->task)
2092 WILL_LJMP(luaL_error(L, "The 'receive' function is only allowed in "
2093 "'frontend', 'backend' or 'task'"));
2094
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002095 /* Check if we run on the same thread than the xreator thread.
2096 * We cannot access to the socket if the thread is different.
2097 */
2098 if (socket->tid != tid)
2099 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2100
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002101 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002102 peer = xref_get_peer_and_lock(&socket->xref);
2103 if (!peer)
2104 goto no_peer;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002105 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
Christopher Faulet908628c2022-03-25 16:43:49 +01002106 s = __cs_strm(appctx->owner);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002107
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002108 oc = &s->res;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002109 if (wanted == HLSR_READ_LINE) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002110 /* Read line. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02002111 nblk = co_getline_nc(oc, &blk1, &len1, &blk2, &len2);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002112 if (nblk < 0) /* Connection close. */
2113 goto connection_closed;
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002114 if (nblk == 0) /* No data available. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002115 goto connection_empty;
Thierry FOURNIER00543922015-03-09 18:35:06 +01002116
2117 /* remove final \r\n. */
2118 if (nblk == 1) {
2119 if (blk1[len1-1] == '\n') {
2120 len1--;
2121 skip_at_end++;
2122 if (blk1[len1-1] == '\r') {
2123 len1--;
2124 skip_at_end++;
2125 }
2126 }
2127 }
2128 else {
2129 if (blk2[len2-1] == '\n') {
2130 len2--;
2131 skip_at_end++;
2132 if (blk2[len2-1] == '\r') {
2133 len2--;
2134 skip_at_end++;
2135 }
2136 }
2137 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002138 }
2139
2140 else if (wanted == HLSR_READ_ALL) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002141 /* Read all the available data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02002142 nblk = co_getblk_nc(oc, &blk1, &len1, &blk2, &len2);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002143 if (nblk < 0) /* Connection close. */
2144 goto connection_closed;
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002145 if (nblk == 0) /* No data available. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002146 goto connection_empty;
2147 }
2148
2149 else {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002150 /* Read a block of data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02002151 nblk = co_getblk_nc(oc, &blk1, &len1, &blk2, &len2);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002152 if (nblk < 0) /* Connection close. */
2153 goto connection_closed;
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002154 if (nblk == 0) /* No data available. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002155 goto connection_empty;
2156
Thierry FOURNIER8c126c72018-05-25 16:27:44 +02002157 missing_bytes = wanted - socket->b.n;
2158 if (len1 > missing_bytes) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002159 nblk = 1;
Thierry FOURNIER8c126c72018-05-25 16:27:44 +02002160 len1 = missing_bytes;
2161 } if (nblk == 2 && len1 + len2 > missing_bytes)
2162 len2 = missing_bytes - len1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002163 }
2164
2165 len = len1;
2166
2167 luaL_addlstring(&socket->b, blk1, len1);
2168 if (nblk == 2) {
2169 len += len2;
2170 luaL_addlstring(&socket->b, blk2, len2);
2171 }
2172
2173 /* Consume data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02002174 co_skip(oc, len + skip_at_end);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002175
2176 /* Don't wait anything. */
Thierry FOURNIER7e4ee472018-05-25 15:03:50 +02002177 appctx_wakeup(appctx);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002178
2179 /* If the pattern reclaim to read all the data
2180 * in the connection, got out.
2181 */
2182 if (wanted == HLSR_READ_ALL)
2183 goto connection_empty;
Thierry FOURNIER8c126c72018-05-25 16:27:44 +02002184 else if (wanted >= 0 && socket->b.n < wanted)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002185 goto connection_empty;
2186
2187 /* Return result. */
2188 luaL_pushresult(&socket->b);
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002189 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002190 return 1;
2191
2192connection_closed:
2193
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002194 xref_unlock(&socket->xref, peer);
2195
2196no_peer:
2197
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002198 /* If the buffer containds data. */
2199 if (socket->b.n > 0) {
2200 luaL_pushresult(&socket->b);
2201 return 1;
2202 }
2203 lua_pushnil(L);
2204 lua_pushstring(L, "connection closed.");
2205 return 2;
2206
2207connection_empty:
2208
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002209 if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_read, hlua->task)) {
2210 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002211 WILL_LJMP(luaL_error(L, "out of memory"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002212 }
2213 xref_unlock(&socket->xref, peer);
Willy Tarreau9635e032018-10-16 17:52:55 +02002214 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_receive_yield, TICK_ETERNITY, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002215 return 0;
2216}
2217
Tim Duesterhusb33754c2018-01-04 19:32:14 +01002218/* This Lua function gets two parameters. The first one can be string
2219 * or a number. If the string is "*l", the user requires one line. If
2220 * the string is "*a", the user requires all the contents of the stream.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002221 * If the value is a number, the user require a number of bytes equal
2222 * to the value. The default value is "*l" (a line).
2223 *
Tim Duesterhusb33754c2018-01-04 19:32:14 +01002224 * This parameter with a variable type is converted in integer. This
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002225 * integer takes this values:
2226 * -1 : read a line
2227 * -2 : read all the stream
Tim Duesterhusb33754c2018-01-04 19:32:14 +01002228 * >0 : amount of bytes.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002229 *
Tim Duesterhusb33754c2018-01-04 19:32:14 +01002230 * The second parameter is optional. It contains a string that must be
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002231 * concatenated with the read data.
2232 */
2233__LJMP static int hlua_socket_receive(struct lua_State *L)
2234{
2235 int wanted = HLSR_READ_LINE;
2236 const char *pattern;
Christopher Fauletc31b2002021-05-03 10:11:13 +02002237 int lastarg, type;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002238 char *error;
2239 size_t len;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002240 struct hlua_socket *socket;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002241
2242 if (lua_gettop(L) < 1 || lua_gettop(L) > 3)
2243 WILL_LJMP(luaL_error(L, "The 'receive' function requires between 1 and 3 arguments."));
2244
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002245 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002246
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002247 /* Check if we run on the same thread than the xreator thread.
2248 * We cannot access to the socket if the thread is different.
2249 */
2250 if (socket->tid != tid)
2251 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2252
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002253 /* check for pattern. */
2254 if (lua_gettop(L) >= 2) {
2255 type = lua_type(L, 2);
2256 if (type == LUA_TSTRING) {
2257 pattern = lua_tostring(L, 2);
2258 if (strcmp(pattern, "*a") == 0)
2259 wanted = HLSR_READ_ALL;
2260 else if (strcmp(pattern, "*l") == 0)
2261 wanted = HLSR_READ_LINE;
2262 else {
2263 wanted = strtoll(pattern, &error, 10);
2264 if (*error != '\0')
2265 WILL_LJMP(luaL_error(L, "Unsupported pattern."));
2266 }
2267 }
2268 else if (type == LUA_TNUMBER) {
2269 wanted = lua_tointeger(L, 2);
2270 if (wanted < 0)
2271 WILL_LJMP(luaL_error(L, "Unsupported size."));
2272 }
2273 }
2274
2275 /* Set pattern. */
2276 lua_pushinteger(L, wanted);
Tim Duesterhusc6e377e2018-01-04 19:32:13 +01002277
2278 /* Check if we would replace the top by itself. */
2279 if (lua_gettop(L) != 2)
2280 lua_replace(L, 2);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002281
Christopher Fauletc31b2002021-05-03 10:11:13 +02002282 /* Save index of the top of the stack because since buffers are used, it
2283 * may change
2284 */
2285 lastarg = lua_gettop(L);
2286
Tim Duesterhusb33754c2018-01-04 19:32:14 +01002287 /* init buffer, and fill it with prefix. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002288 luaL_buffinit(L, &socket->b);
2289
2290 /* Check prefix. */
Christopher Fauletc31b2002021-05-03 10:11:13 +02002291 if (lastarg >= 3) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002292 if (lua_type(L, 3) != LUA_TSTRING)
2293 WILL_LJMP(luaL_error(L, "Expect a 'string' for the prefix"));
2294 pattern = lua_tolstring(L, 3, &len);
2295 luaL_addlstring(&socket->b, pattern, len);
2296 }
2297
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002298 return __LJMP(hlua_socket_receive_yield(L, 0, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002299}
2300
2301/* Write the Lua input string in the output buffer.
Mark Lakes22154b42018-01-29 14:38:40 -08002302 * This function returns a yield if no space is available.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002303 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002304static int hlua_socket_write_yield(struct lua_State *L,int status, lua_KContext ctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002305{
2306 struct hlua_socket *socket;
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002307 struct hlua *hlua;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002308 struct appctx *appctx;
2309 size_t buf_len;
2310 const char *buf;
2311 int len;
2312 int send_len;
2313 int sent;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002314 struct xref *peer;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002315 struct stream *s;
Christopher Faulet908628c2022-03-25 16:43:49 +01002316 struct conn_stream *cs;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002317
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002318 /* Get hlua struct, or NULL if we execute from main lua state */
2319 hlua = hlua_gethlua(L);
2320
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002321 /* Check if this lua stack is schedulable. */
2322 if (!hlua || !hlua->task)
2323 WILL_LJMP(luaL_error(L, "The 'write' function is only allowed in "
2324 "'frontend', 'backend' or 'task'"));
2325
2326 /* Get object */
2327 socket = MAY_LJMP(hlua_checksocket(L, 1));
2328 buf = MAY_LJMP(luaL_checklstring(L, 2, &buf_len));
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002329 sent = MAY_LJMP(luaL_checkinteger(L, 3));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002330
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002331 /* Check if we run on the same thread than the xreator thread.
2332 * We cannot access to the socket if the thread is different.
2333 */
2334 if (socket->tid != tid)
2335 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2336
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002337 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002338 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002339 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002340 lua_pushinteger(L, -1);
2341 return 1;
2342 }
2343 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
Christopher Faulet908628c2022-03-25 16:43:49 +01002344 cs = appctx->owner;
2345 s = __cs_strm(cs);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002346
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002347 /* Check for connection close. */
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002348 if (channel_output_closed(&s->req)) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002349 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002350 lua_pushinteger(L, -1);
2351 return 1;
2352 }
2353
2354 /* Update the input buffer data. */
2355 buf += sent;
2356 send_len = buf_len - sent;
2357
2358 /* All the data are sent. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002359 if (sent >= buf_len) {
2360 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002361 return 1; /* Implicitly return the length sent. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002362 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002363
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002364 /* Check if the buffer is available because HAProxy doesn't allocate
Thierry FOURNIER486d52a2015-03-09 17:51:43 +01002365 * the request buffer if its not required.
2366 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002367 if (s->req.buf.size == 0) {
Christopher Faulet8f45eec2022-04-01 17:19:36 +02002368 if (!cs_alloc_ibuf(cs, &appctx->buffer_wait))
Christopher Faulet33834b12016-12-19 09:29:06 +01002369 goto hlua_socket_write_yield_return;
Thierry FOURNIER486d52a2015-03-09 17:51:43 +01002370 }
2371
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002372 /* Check for available space. */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002373 len = b_room(&s->req.buf);
Christopher Faulet33834b12016-12-19 09:29:06 +01002374 if (len <= 0) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002375 goto hlua_socket_write_yield_return;
Christopher Faulet33834b12016-12-19 09:29:06 +01002376 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002377
2378 /* send data */
2379 if (len < send_len)
2380 send_len = len;
Thierry FOURNIER66b89192018-05-27 01:14:47 +02002381 len = ci_putblk(&s->req, buf, send_len);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002382
2383 /* "Not enough space" (-1), "Buffer too little to contain
2384 * the data" (-2) are not expected because the available length
2385 * is tested.
2386 * Other unknown error are also not expected.
2387 */
2388 if (len <= 0) {
Willy Tarreaubc18da12015-03-13 14:00:47 +01002389 if (len == -1)
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002390 s->req.flags |= CF_WAKE_WRITE;
Willy Tarreaubc18da12015-03-13 14:00:47 +01002391
sada05ed3302018-05-11 11:48:18 -07002392 MAY_LJMP(hlua_socket_close_helper(L));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002393 lua_pop(L, 1);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002394 lua_pushinteger(L, -1);
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002395 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002396 return 1;
2397 }
2398
2399 /* update buffers. */
Thierry FOURNIER101b9762018-05-27 01:27:40 +02002400 appctx_wakeup(appctx);
Willy Tarreaude70fa12015-09-26 11:25:05 +02002401
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002402 s->req.rex = TICK_ETERNITY;
2403 s->res.wex = TICK_ETERNITY;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002404
2405 /* Update length sent. */
2406 lua_pop(L, 1);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002407 lua_pushinteger(L, sent + len);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002408
2409 /* All the data buffer is sent ? */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002410 if (sent + len >= buf_len) {
2411 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002412 return 1;
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002413 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002414
2415hlua_socket_write_yield_return:
Thierry FOURNIERba42fcd2018-05-27 00:59:48 +02002416 if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_write, hlua->task)) {
2417 xref_unlock(&socket->xref, peer);
2418 WILL_LJMP(luaL_error(L, "out of memory"));
2419 }
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002420 xref_unlock(&socket->xref, peer);
Willy Tarreau9635e032018-10-16 17:52:55 +02002421 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_write_yield, TICK_ETERNITY, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002422 return 0;
2423}
2424
2425/* This function initiate the send of data. It just check the input
2426 * parameters and push an integer in the Lua stack that contain the
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002427 * amount of data written to the buffer. This is used by the function
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002428 * "hlua_socket_write_yield" that can yield.
2429 *
2430 * The Lua function gets between 3 and 4 parameters. The first one is
2431 * the associated object. The second is a string buffer. The third is
2432 * a facultative integer that represents where is the buffer position
2433 * of the start of the data that can send. The first byte is the
2434 * position "1". The default value is "1". The fourth argument is a
2435 * facultative integer that represents where is the buffer position
2436 * of the end of the data that can send. The default is the last byte.
2437 */
2438static int hlua_socket_send(struct lua_State *L)
2439{
2440 int i;
2441 int j;
2442 const char *buf;
2443 size_t buf_len;
2444
2445 /* Check number of arguments. */
2446 if (lua_gettop(L) < 2 || lua_gettop(L) > 4)
2447 WILL_LJMP(luaL_error(L, "'send' needs between 2 and 4 arguments"));
2448
2449 /* Get the string. */
2450 buf = MAY_LJMP(luaL_checklstring(L, 2, &buf_len));
2451
2452 /* Get and check j. */
2453 if (lua_gettop(L) == 4) {
2454 j = MAY_LJMP(luaL_checkinteger(L, 4));
2455 if (j < 0)
2456 j = buf_len + j + 1;
2457 if (j > buf_len)
2458 j = buf_len + 1;
2459 lua_pop(L, 1);
2460 }
2461 else
2462 j = buf_len;
2463
2464 /* Get and check i. */
2465 if (lua_gettop(L) == 3) {
2466 i = MAY_LJMP(luaL_checkinteger(L, 3));
2467 if (i < 0)
2468 i = buf_len + i + 1;
2469 if (i > buf_len)
2470 i = buf_len + 1;
2471 lua_pop(L, 1);
2472 } else
2473 i = 1;
2474
2475 /* Check bth i and j. */
2476 if (i > j) {
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002477 lua_pushinteger(L, 0);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002478 return 1;
2479 }
2480 if (i == 0 && j == 0) {
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002481 lua_pushinteger(L, 0);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002482 return 1;
2483 }
2484 if (i == 0)
2485 i = 1;
2486 if (j == 0)
2487 j = 1;
2488
2489 /* Pop the string. */
2490 lua_pop(L, 1);
2491
2492 /* Update the buffer length. */
2493 buf += i - 1;
2494 buf_len = j - i + 1;
2495 lua_pushlstring(L, buf, buf_len);
2496
2497 /* This unsigned is used to remember the amount of sent data. */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002498 lua_pushinteger(L, 0);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002499
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002500 return MAY_LJMP(hlua_socket_write_yield(L, 0, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002501}
2502
Willy Tarreau22b0a682015-06-17 19:43:49 +02002503#define SOCKET_INFO_MAX_LEN sizeof("[0000:0000:0000:0000:0000:0000:0000:0000]:12345")
Christopher Faulete6465b32021-10-22 15:36:08 +02002504__LJMP static inline int hlua_socket_info(struct lua_State *L, const struct sockaddr_storage *addr)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002505{
2506 static char buffer[SOCKET_INFO_MAX_LEN];
2507 int ret;
2508 int len;
2509 char *p;
2510
2511 ret = addr_to_str(addr, buffer+1, SOCKET_INFO_MAX_LEN-1);
2512 if (ret <= 0) {
2513 lua_pushnil(L);
2514 return 1;
2515 }
2516
2517 if (ret == AF_UNIX) {
2518 lua_pushstring(L, buffer+1);
2519 return 1;
2520 }
2521 else if (ret == AF_INET6) {
2522 buffer[0] = '[';
2523 len = strlen(buffer);
2524 buffer[len] = ']';
2525 len++;
2526 buffer[len] = ':';
2527 len++;
2528 p = buffer;
2529 }
2530 else if (ret == AF_INET) {
2531 p = buffer + 1;
2532 len = strlen(p);
2533 p[len] = ':';
2534 len++;
2535 }
2536 else {
2537 lua_pushnil(L);
2538 return 1;
2539 }
2540
2541 if (port_to_str(addr, p + len, SOCKET_INFO_MAX_LEN-1 - len) <= 0) {
2542 lua_pushnil(L);
2543 return 1;
2544 }
2545
2546 lua_pushstring(L, p);
2547 return 1;
2548}
2549
2550/* Returns information about the peer of the connection. */
2551__LJMP static int hlua_socket_getpeername(struct lua_State *L)
2552{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002553 struct hlua_socket *socket;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002554 struct xref *peer;
2555 struct appctx *appctx;
Christopher Faulet908628c2022-03-25 16:43:49 +01002556 struct conn_stream *cs;
Christopher Faulet16f16af2021-10-27 09:34:56 +02002557 const struct sockaddr_storage *dst;
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002558 int ret;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002559
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002560 MAY_LJMP(check_args(L, 1, "getpeername"));
2561
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002562 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002563
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002564 /* Check if we run on the same thread than the xreator thread.
2565 * We cannot access to the socket if the thread is different.
2566 */
2567 if (socket->tid != tid)
2568 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2569
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002570 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002571 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002572 if (!peer) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002573 lua_pushnil(L);
2574 return 1;
2575 }
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002576 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
Christopher Faulet908628c2022-03-25 16:43:49 +01002577 cs = appctx->owner;
Christopher Faulet8da67aa2022-03-29 17:53:09 +02002578 dst = cs_dst(cs_opposite(cs));
Christopher Faulet16f16af2021-10-27 09:34:56 +02002579 if (!dst) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002580 xref_unlock(&socket->xref, peer);
Willy Tarreaua71f6422016-11-16 17:00:14 +01002581 lua_pushnil(L);
2582 return 1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002583 }
2584
Christopher Faulet16f16af2021-10-27 09:34:56 +02002585 ret = MAY_LJMP(hlua_socket_info(L, dst));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002586 xref_unlock(&socket->xref, peer);
2587 return ret;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002588}
2589
2590/* Returns information about my connection side. */
2591static int hlua_socket_getsockname(struct lua_State *L)
2592{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002593 struct hlua_socket *socket;
2594 struct connection *conn;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002595 struct appctx *appctx;
2596 struct xref *peer;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002597 struct stream *s;
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002598 int ret;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002599
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002600 MAY_LJMP(check_args(L, 1, "getsockname"));
2601
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002602 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002603
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002604 /* Check if we run on the same thread than the xreator thread.
2605 * We cannot access to the socket if the thread is different.
2606 */
2607 if (socket->tid != tid)
2608 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2609
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002610 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002611 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002612 if (!peer) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002613 lua_pushnil(L);
2614 return 1;
2615 }
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002616 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
Christopher Faulet908628c2022-03-25 16:43:49 +01002617 s = __cs_strm(appctx->owner);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002618
Christopher Faulet95a61e82021-12-22 14:22:03 +01002619 conn = cs_conn(s->csb);
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002620 if (!conn || !conn_get_src(conn)) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002621 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002622 lua_pushnil(L);
2623 return 1;
2624 }
2625
Willy Tarreau9da9a6f2019-07-17 14:49:44 +02002626 ret = hlua_socket_info(L, conn->src);
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002627 xref_unlock(&socket->xref, peer);
2628 return ret;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002629}
2630
2631/* This struct define the applet. */
Willy Tarreau30576452015-04-13 13:50:30 +02002632static struct applet update_applet = {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002633 .obj_type = OBJ_TYPE_APPLET,
2634 .name = "<LUA_TCP>",
2635 .fct = hlua_socket_handler,
2636 .release = hlua_socket_release,
2637};
2638
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002639__LJMP static int hlua_socket_connect_yield(struct lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002640{
2641 struct hlua_socket *socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002642 struct hlua *hlua;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002643 struct xref *peer;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002644 struct appctx *appctx;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002645 struct stream *s;
2646
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002647 /* Get hlua struct, or NULL if we execute from main lua state */
2648 hlua = hlua_gethlua(L);
2649 if (!hlua)
2650 return 0;
2651
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002652 /* Check if we run on the same thread than the xreator thread.
2653 * We cannot access to the socket if the thread is different.
2654 */
2655 if (socket->tid != tid)
2656 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2657
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002658 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002659 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002660 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002661 lua_pushnil(L);
2662 lua_pushstring(L, "Can't connect");
2663 return 2;
2664 }
2665 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
Christopher Faulet908628c2022-03-25 16:43:49 +01002666 s = __cs_strm(appctx->owner);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002667
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002668 /* Check if we run on the same thread than the xreator thread.
2669 * We cannot access to the socket if the thread is different.
2670 */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002671 if (socket->tid != tid) {
2672 xref_unlock(&socket->xref, peer);
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002673 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002674 }
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002675
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002676 /* Check for connection close. */
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002677 if (!hlua || channel_output_closed(&s->req)) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002678 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002679 lua_pushnil(L);
2680 lua_pushstring(L, "Can't connect");
2681 return 2;
2682 }
2683
Christopher Faulet693b23b2022-02-28 09:09:05 +01002684 appctx = __cs_appctx(s->csf);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002685
2686 /* Check for connection established. */
Thierry FOURNIER18d09902016-12-16 09:25:38 +01002687 if (appctx->ctx.hlua_cosocket.connected) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002688 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002689 lua_pushinteger(L, 1);
2690 return 1;
2691 }
2692
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002693 if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_write, hlua->task)) {
2694 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002695 WILL_LJMP(luaL_error(L, "out of memory error"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002696 }
2697 xref_unlock(&socket->xref, peer);
Willy Tarreau9635e032018-10-16 17:52:55 +02002698 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_connect_yield, TICK_ETERNITY, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002699 return 0;
2700}
2701
2702/* This function fail or initite the connection. */
2703__LJMP static int hlua_socket_connect(struct lua_State *L)
2704{
2705 struct hlua_socket *socket;
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002706 int port = -1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002707 const char *ip;
Thierry FOURNIER95ad96a2015-03-09 18:12:40 +01002708 struct hlua *hlua;
2709 struct appctx *appctx;
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002710 int low, high;
2711 struct sockaddr_storage *addr;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002712 struct xref *peer;
Christopher Faulet908628c2022-03-25 16:43:49 +01002713 struct conn_stream *cs;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002714 struct stream *s;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002715
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002716 if (lua_gettop(L) < 2)
2717 WILL_LJMP(luaL_error(L, "connect: need at least 2 arguments"));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002718
2719 /* Get args. */
2720 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002721
2722 /* Check if we run on the same thread than the xreator thread.
2723 * We cannot access to the socket if the thread is different.
2724 */
2725 if (socket->tid != tid)
2726 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2727
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002728 ip = MAY_LJMP(luaL_checkstring(L, 2));
Tim Duesterhus6edab862018-01-06 19:04:45 +01002729 if (lua_gettop(L) >= 3) {
2730 luaL_Buffer b;
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002731 port = MAY_LJMP(luaL_checkinteger(L, 3));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002732
Tim Duesterhus6edab862018-01-06 19:04:45 +01002733 /* Force the ip to end with a colon, to support IPv6 addresses
2734 * that are not enclosed within square brackets.
2735 */
2736 if (port > 0) {
2737 luaL_buffinit(L, &b);
2738 luaL_addstring(&b, ip);
2739 luaL_addchar(&b, ':');
2740 luaL_pushresult(&b);
2741 ip = lua_tolstring(L, lua_gettop(L), NULL);
2742 }
2743 }
2744
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002745 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002746 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002747 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002748 lua_pushnil(L);
2749 return 1;
2750 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002751
2752 /* Parse ip address. */
Willy Tarreau5fc93282020-09-16 18:25:03 +02002753 addr = str2sa_range(ip, NULL, &low, &high, NULL, NULL, NULL, NULL, NULL, PA_O_PORT_OK | PA_O_STREAM);
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002754 if (!addr) {
2755 xref_unlock(&socket->xref, peer);
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002756 WILL_LJMP(luaL_error(L, "connect: cannot parse destination address '%s'", ip));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002757 }
Willy Tarreau9da9a6f2019-07-17 14:49:44 +02002758
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002759 /* Set port. */
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002760 if (low == 0) {
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002761 if (addr->ss_family == AF_INET) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002762 if (port == -1) {
2763 xref_unlock(&socket->xref, peer);
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002764 WILL_LJMP(luaL_error(L, "connect: port missing"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002765 }
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002766 ((struct sockaddr_in *)addr)->sin_port = htons(port);
2767 } else if (addr->ss_family == AF_INET6) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002768 if (port == -1) {
2769 xref_unlock(&socket->xref, peer);
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002770 WILL_LJMP(luaL_error(L, "connect: port missing"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002771 }
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002772 ((struct sockaddr_in6 *)addr)->sin6_port = htons(port);
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002773 }
2774 }
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002775
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002776 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
Christopher Faulet908628c2022-03-25 16:43:49 +01002777 cs = appctx->owner;
2778 s = __cs_strm(cs);
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002779
Christopher Faulet8da67aa2022-03-29 17:53:09 +02002780 if (!sockaddr_alloc(&cs_opposite(cs)->dst, addr, sizeof(*addr))) {
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002781 xref_unlock(&socket->xref, peer);
2782 WILL_LJMP(luaL_error(L, "connect: internal error"));
2783 }
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002784 s->flags |= SF_ADDR_SET;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002785
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002786 /* Get hlua struct, or NULL if we execute from main lua state */
Thierry FOURNIER95ad96a2015-03-09 18:12:40 +01002787 hlua = hlua_gethlua(L);
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002788 if (!hlua)
2789 return 0;
Willy Tarreaubdc97a82015-08-24 15:42:28 +02002790
2791 /* inform the stream that we want to be notified whenever the
2792 * connection completes.
2793 */
Christopher Fauleta0bdec32022-04-04 07:51:21 +02002794 cs_cant_get(s->csf);
2795 cs_rx_endp_more(s->csf);
Thierry FOURNIER8c8fbbe2015-09-26 17:02:35 +02002796 appctx_wakeup(appctx);
Willy Tarreaubdc97a82015-08-24 15:42:28 +02002797
Willy Tarreauf31af932020-01-14 09:59:38 +01002798 hlua->gc_count++;
Thierry FOURNIER7c39ab42015-09-27 22:53:33 +02002799
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002800 if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_write, hlua->task)) {
2801 xref_unlock(&socket->xref, peer);
Thierry FOURNIER95ad96a2015-03-09 18:12:40 +01002802 WILL_LJMP(luaL_error(L, "out of memory"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002803 }
2804 xref_unlock(&socket->xref, peer);
PiBa-NL706d5ee2018-05-05 23:51:42 +02002805
2806 task_wakeup(s->task, TASK_WOKEN_INIT);
2807 /* Return yield waiting for connection. */
2808
Willy Tarreau9635e032018-10-16 17:52:55 +02002809 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_connect_yield, TICK_ETERNITY, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002810
2811 return 0;
2812}
2813
Baptiste Assmann84bb4932015-03-02 21:40:06 +01002814#ifdef USE_OPENSSL
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002815__LJMP static int hlua_socket_connect_ssl(struct lua_State *L)
2816{
2817 struct hlua_socket *socket;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002818 struct xref *peer;
2819 struct appctx *appctx;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002820 struct stream *s;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002821
2822 MAY_LJMP(check_args(L, 3, "connect_ssl"));
2823 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002824
2825 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002826 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002827 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002828 lua_pushnil(L);
2829 return 1;
2830 }
2831 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
Christopher Faulet908628c2022-03-25 16:43:49 +01002832 s = __cs_strm(appctx->owner);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002833
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +01002834 s->target = &socket_ssl->obj_type;
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002835 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002836 return MAY_LJMP(hlua_socket_connect(L));
2837}
Baptiste Assmann84bb4932015-03-02 21:40:06 +01002838#endif
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002839
2840__LJMP static int hlua_socket_setoption(struct lua_State *L)
2841{
2842 return 0;
2843}
2844
2845__LJMP static int hlua_socket_settimeout(struct lua_State *L)
2846{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002847 struct hlua_socket *socket;
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002848 int tmout;
Mark Lakes56cc1252018-03-27 09:48:06 +02002849 double dtmout;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002850 struct xref *peer;
2851 struct appctx *appctx;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002852 struct stream *s;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002853
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002854 MAY_LJMP(check_args(L, 2, "settimeout"));
2855
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002856 socket = MAY_LJMP(hlua_checksocket(L, 1));
Mark Lakes56cc1252018-03-27 09:48:06 +02002857
Cyril Bonté7ee465f2018-08-19 22:08:50 +02002858 /* convert the timeout to millis */
2859 dtmout = MAY_LJMP(luaL_checknumber(L, 2)) * 1000;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002860
Thierry Fournier17a921b2018-03-08 09:59:02 +01002861 /* Check for negative values */
Mark Lakes56cc1252018-03-27 09:48:06 +02002862 if (dtmout < 0)
Thierry Fournier17a921b2018-03-08 09:59:02 +01002863 WILL_LJMP(luaL_error(L, "settimeout: cannot set negatives values"));
2864
Mark Lakes56cc1252018-03-27 09:48:06 +02002865 if (dtmout > INT_MAX) /* overflow check */
Cyril Bonté7ee465f2018-08-19 22:08:50 +02002866 WILL_LJMP(luaL_error(L, "settimeout: cannot set values larger than %d ms", INT_MAX));
Mark Lakes56cc1252018-03-27 09:48:06 +02002867
2868 tmout = MS_TO_TICKS((int)dtmout);
Cyril Bonté7ee465f2018-08-19 22:08:50 +02002869 if (tmout == 0)
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05002870 tmout++; /* very small timeouts are adjusted to a minimum of 1ms */
Mark Lakes56cc1252018-03-27 09:48:06 +02002871
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002872 /* Check if we run on the same thread than the xreator thread.
2873 * We cannot access to the socket if the thread is different.
2874 */
2875 if (socket->tid != tid)
2876 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2877
Mark Lakes56cc1252018-03-27 09:48:06 +02002878 /* check for connection break. If some data were read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002879 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002880 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002881 hlua_pusherror(L, "socket: not yet initialised, you can't set timeouts.");
2882 WILL_LJMP(lua_error(L));
2883 return 0;
2884 }
2885 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
Christopher Faulet908628c2022-03-25 16:43:49 +01002886 s = __cs_strm(appctx->owner);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002887
Cyril Bonté7bb63452018-08-17 23:51:02 +02002888 s->sess->fe->timeout.connect = tmout;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002889 s->req.rto = tmout;
2890 s->req.wto = tmout;
2891 s->res.rto = tmout;
2892 s->res.wto = tmout;
Cyril Bonté7bb63452018-08-17 23:51:02 +02002893 s->req.rex = tick_add_ifset(now_ms, tmout);
2894 s->req.wex = tick_add_ifset(now_ms, tmout);
2895 s->res.rex = tick_add_ifset(now_ms, tmout);
2896 s->res.wex = tick_add_ifset(now_ms, tmout);
2897
2898 s->task->expire = tick_add_ifset(now_ms, tmout);
2899 task_queue(s->task);
2900
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002901 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002902
Thierry Fourniere9636f12018-03-08 09:54:32 +01002903 lua_pushinteger(L, 1);
Tim Duesterhus119a5f12018-01-06 19:16:25 +01002904 return 1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002905}
2906
2907__LJMP static int hlua_socket_new(lua_State *L)
2908{
2909 struct hlua_socket *socket;
2910 struct appctx *appctx;
Willy Tarreau15b5e142015-04-04 14:38:25 +02002911 struct session *sess;
Christopher Faulet13a35e52021-12-20 15:34:16 +01002912 struct conn_stream *cs;
Christopher Fauleta9e8b392022-03-23 11:01:09 +01002913 struct stream *s;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002914
2915 /* Check stack size. */
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01002916 if (!lua_checkstack(L, 3)) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002917 hlua_pusherror(L, "socket: full stack");
2918 goto out_fail_conf;
2919 }
2920
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01002921 /* Create the object: obj[0] = userdata. */
2922 lua_newtable(L);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002923 socket = MAY_LJMP(lua_newuserdata(L, sizeof(*socket)));
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01002924 lua_rawseti(L, -2, 0);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002925 memset(socket, 0, sizeof(*socket));
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002926 socket->tid = tid;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002927
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05002928 /* Check if the various memory pools are initialized. */
Willy Tarreaubafbe012017-11-24 17:34:44 +01002929 if (!pool_head_stream || !pool_head_buffer) {
Thierry FOURNIER4a6170c2015-03-09 17:07:10 +01002930 hlua_pusherror(L, "socket: uninitialized pools.");
2931 goto out_fail_conf;
2932 }
2933
Willy Tarreau87b09662015-04-03 00:22:06 +02002934 /* Pop a class stream metatable and affect it to the userdata. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002935 lua_rawgeti(L, LUA_REGISTRYINDEX, class_socket_ref);
2936 lua_setmetatable(L, -2);
2937
Willy Tarreaud420a972015-04-06 00:39:18 +02002938 /* Create the applet context */
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01002939 appctx = appctx_new(&update_applet, NULL);
Willy Tarreau61cf7c82015-04-06 00:48:33 +02002940 if (!appctx) {
2941 hlua_pusherror(L, "socket: out of memory");
Christopher Fauleta9e8b392022-03-23 11:01:09 +01002942 goto out_fail_conf;
Willy Tarreau61cf7c82015-04-06 00:48:33 +02002943 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002944
Thierry FOURNIER18d09902016-12-16 09:25:38 +01002945 appctx->ctx.hlua_cosocket.connected = 0;
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02002946 appctx->ctx.hlua_cosocket.die = 0;
Thierry FOURNIER18d09902016-12-16 09:25:38 +01002947 LIST_INIT(&appctx->ctx.hlua_cosocket.wake_on_write);
2948 LIST_INIT(&appctx->ctx.hlua_cosocket.wake_on_read);
Willy Tarreaub2bf8332015-04-04 15:58:58 +02002949
Willy Tarreaud420a972015-04-06 00:39:18 +02002950 /* Now create a session, task and stream for this applet */
Amaury Denoyelle239fdbf2021-03-24 10:22:03 +01002951 sess = session_new(socket_proxy, NULL, &appctx->obj_type);
Willy Tarreaud420a972015-04-06 00:39:18 +02002952 if (!sess) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002953 hlua_pusherror(L, "socket: out of memory");
Christopher Faulet13a35e52021-12-20 15:34:16 +01002954 goto out_fail_appctx;
2955 }
2956
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01002957 cs = cs_new_from_applet(appctx->endp, sess, &BUF_NULL);
Christopher Fauleta9e8b392022-03-23 11:01:09 +01002958 if (!cs) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002959 hlua_pusherror(L, "socket: out of memory");
Christopher Faulet2479e5f2022-01-19 14:50:11 +01002960 goto out_fail_sess;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002961 }
2962
Christopher Fauleta9e8b392022-03-23 11:01:09 +01002963 s = DISGUISE(cs_strm(cs));
Christopher Faulet2479e5f2022-01-19 14:50:11 +01002964
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002965 /* Initialise cross reference between stream and Lua socket object. */
2966 xref_create(&socket->xref, &appctx->ctx.hlua_cosocket.xref);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002967
Christopher Faulet6b0a0fb2022-04-04 11:29:28 +02002968 /* Configure "right" conn-stream. this "si" is used to connect
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002969 * and retrieve data from the server. The connection is initialized
2970 * with the "struct server".
2971 */
Christopher Faulet62e75742022-03-31 09:16:34 +02002972 cs_set_state(s->csb, CS_ST_ASS);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002973
2974 /* Force destination server. */
Christopher Fauleta9e8b392022-03-23 11:01:09 +01002975 s->flags |= SF_DIRECT | SF_ASSIGNED | SF_BE_ASSIGNED;
2976 s->target = &socket_tcp->obj_type;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002977
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002978 return 1;
2979
Willy Tarreaud420a972015-04-06 00:39:18 +02002980 out_fail_sess:
Christopher Faulet13a35e52021-12-20 15:34:16 +01002981 session_free(sess);
2982 out_fail_appctx:
Willy Tarreaud420a972015-04-06 00:39:18 +02002983 appctx_free(appctx);
2984 out_fail_conf:
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002985 WILL_LJMP(lua_error(L));
2986 return 0;
2987}
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01002988
2989/*
2990 *
2991 *
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002992 * Class Channel
2993 *
2994 *
2995 */
2996
2997/* Returns the struct hlua_channel join to the class channel in the
2998 * stack entry "ud" or throws an argument error.
2999 */
Willy Tarreau47860ed2015-03-10 14:07:50 +01003000__LJMP static struct channel *hlua_checkchannel(lua_State *L, int ud)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003001{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02003002 return MAY_LJMP(hlua_checkudata(L, ud, class_channel_ref));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003003}
3004
Willy Tarreau47860ed2015-03-10 14:07:50 +01003005/* Pushes the channel onto the top of the stack. If the stask does not have a
3006 * free slots, the function fails and returns 0;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003007 */
Willy Tarreau2a71af42015-03-10 13:51:50 +01003008static int hlua_channel_new(lua_State *L, struct channel *channel)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003009{
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003010 /* Check stack size. */
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01003011 if (!lua_checkstack(L, 3))
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003012 return 0;
3013
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01003014 lua_newtable(L);
Willy Tarreau47860ed2015-03-10 14:07:50 +01003015 lua_pushlightuserdata(L, channel);
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01003016 lua_rawseti(L, -2, 0);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003017
3018 /* Pop a class sesison metatable and affect it to the userdata. */
3019 lua_rawgeti(L, LUA_REGISTRYINDEX, class_channel_ref);
3020 lua_setmetatable(L, -2);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003021 return 1;
3022}
3023
Christopher Faulet9f55a502020-02-25 15:21:02 +01003024/* Helper function returning a filter attached to a channel at the position <ud>
3025 * in the stack, filling the current offset and length of the filter. If no
Ilya Shipitsinff0f2782021-08-22 22:18:07 +05003026 * filter is attached, NULL is returned and <offset> and <len> are not
Christopher Faulet9f55a502020-02-25 15:21:02 +01003027 * initialized.
3028 */
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003029static struct filter *hlua_channel_filter(lua_State *L, int ud, struct channel *chn, size_t *offset, size_t *len)
Christopher Faulet9f55a502020-02-25 15:21:02 +01003030{
3031 struct filter *filter = NULL;
3032
3033 if (lua_getfield(L, ud, "__filter") == LUA_TLIGHTUSERDATA) {
3034 struct hlua_flt_ctx *flt_ctx;
3035
3036 filter = lua_touserdata (L, -1);
3037 flt_ctx = filter->ctx;
3038 if (hlua_filter_from_payload(filter)) {
3039 *offset = flt_ctx->cur_off[CHN_IDX(chn)];
3040 *len = flt_ctx->cur_len[CHN_IDX(chn)];
3041 }
3042 }
3043
3044 lua_pop(L, 1);
3045 return filter;
3046}
3047
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003048/* Copies <len> bytes of data present in the channel's buffer, starting at the
3049* offset <offset>, and put it in a LUA string variable. It is the caller
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003050* responsibility to ensure <len> and <offset> are valid. It always return the
3051* length of the built string. <len> may be 0, in this case, an empty string is
3052* created and 0 is returned.
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003053*/
3054static inline int _hlua_channel_dup(struct channel *chn, lua_State *L, size_t offset, size_t len)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003055{
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003056 size_t block1, block2;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003057 luaL_Buffer b;
3058
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003059 block1 = len;
3060 if (block1 > b_contig_data(&chn->buf, b_peek_ofs(&chn->buf, offset)))
3061 block1 = b_contig_data(&chn->buf, b_peek_ofs(&chn->buf, offset));
3062 block2 = len - block1;
3063
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003064 luaL_buffinit(L, &b);
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003065 luaL_addlstring(&b, b_peek(&chn->buf, offset), block1);
3066 if (block2)
3067 luaL_addlstring(&b, b_orig(&chn->buf), block2);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003068 luaL_pushresult(&b);
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003069 return len;
3070}
3071
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003072/* Inserts the string <str> to the channel's buffer at the offset <offset>. This
3073 * function returns -1 if data cannot be copied. Otherwise, it returns the
3074 * number of bytes copied.
3075 */
3076static int _hlua_channel_insert(struct channel *chn, lua_State *L, struct ist str, size_t offset)
3077{
3078 int ret = 0;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003079
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003080 /* Nothing to do, just return */
3081 if (unlikely(istlen(str) == 0))
3082 goto end;
3083
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003084 if (istlen(str) > c_room(chn)) {
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003085 ret = -1;
3086 goto end;
3087 }
3088 ret = b_insert_blk(&chn->buf, offset, istptr(str), istlen(str));
3089
3090 end:
3091 return ret;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003092}
3093
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003094/* Removes <len> bytes of data at the absolute position <offset>.
3095 */
3096static void _hlua_channel_delete(struct channel *chn, size_t offset, size_t len)
3097{
3098 size_t end = offset + len;
3099
3100 if (b_peek(&chn->buf, end) != b_tail(&chn->buf))
3101 b_move(&chn->buf, b_peek_ofs(&chn->buf, end),
3102 b_data(&chn->buf) - end, -len);
3103 b_sub(&chn->buf, len);
3104}
3105
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003106/* Copies input data in the channel's buffer. It is possible to set a specific
3107 * offset (0 by default) and a length (all remaining input data starting for the
3108 * offset by default). If there is not enough input data and more data can be
3109 * received, this function yields.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003110 *
3111 * From an action, All input data are considered. For a filter, the offset and
3112 * the length of input data to consider are retrieved from the filter context.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003113 */
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003114__LJMP static int hlua_channel_get_data_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003115{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003116 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003117 struct filter *filter;
3118 size_t input, output;
3119 int offset, len;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003120
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003121 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003122
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003123 output = co_data(chn);
3124 input = ci_data(chn);
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003125
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003126 filter = hlua_channel_filter(L, 1, chn, &output, &input);
3127 if (filter && !hlua_filter_from_payload(filter))
3128 WILL_LJMP(lua_error(L));
3129
3130 offset = output;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003131 if (lua_gettop(L) > 1) {
3132 offset = MAY_LJMP(luaL_checkinteger(L, 2));
3133 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02003134 offset = MAX(0, (int)input + offset);
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003135 offset += output;
3136 if (offset < output || offset > input + output) {
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003137 lua_pushfstring(L, "offset out of range.");
3138 WILL_LJMP(lua_error(L));
3139 }
3140 }
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003141 len = output + input - offset;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003142 if (lua_gettop(L) == 3) {
3143 len = MAY_LJMP(luaL_checkinteger(L, 3));
3144 if (!len)
3145 goto dup;
3146 if (len == -1)
3147 len = global.tune.bufsize;
3148 if (len < 0) {
3149 lua_pushfstring(L, "length out of range.");
3150 WILL_LJMP(lua_error(L));
3151 }
3152 }
3153
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003154 if (offset + len > output + input) {
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003155 if (!HLUA_CANT_YIELD(hlua_gethlua(L)) && !channel_input_closed(chn) && channel_may_recv(chn)) {
3156 /* Yield waiting for more data, as requested */
3157 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_get_data_yield, TICK_ETERNITY, 0));
3158 }
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003159 len = output + input - offset;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003160 }
3161
3162 dup:
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003163 _hlua_channel_dup(chn, L, offset, len);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003164 return 1;
3165}
3166
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003167/* Copies the first line (including the trailing LF) of input data in the
3168 * channel's buffer. It is possible to set a specific offset (0 by default) and
3169 * a length (all remaining input data starting for the offset by default). If
3170 * there is not enough input data and more data can be received, the function
3171 * yields. If a length is explicitly specified, no more data are
3172 * copied. Otherwise, if no LF is found and more data can be received, this
3173 * function yields.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003174 *
3175 * From an action, All input data are considered. For a filter, the offset and
3176 * the length of input data to consider are retrieved from the filter context.
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003177 */
3178__LJMP static int hlua_channel_get_line_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003179{
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003180 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003181 struct filter *filter;
3182 size_t l, input, output;
3183 int offset, len;
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003184
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003185 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003186 output = co_data(chn);
3187 input = ci_data(chn);
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003188
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003189 filter = hlua_channel_filter(L, 1, chn, &output, &input);
3190 if (filter && !hlua_filter_from_payload(filter))
3191 WILL_LJMP(lua_error(L));
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003192
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003193 offset = output;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003194 if (lua_gettop(L) > 1) {
3195 offset = MAY_LJMP(luaL_checkinteger(L, 2));
3196 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02003197 offset = MAX(0, (int)input + offset);
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003198 offset += output;
3199 if (offset < output || offset > input + output) {
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003200 lua_pushfstring(L, "offset out of range.");
3201 WILL_LJMP(lua_error(L));
3202 }
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003203 }
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003204
3205 len = output + input - offset;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003206 if (lua_gettop(L) == 3) {
3207 len = MAY_LJMP(luaL_checkinteger(L, 3));
3208 if (!len)
3209 goto dup;
3210 if (len == -1)
3211 len = global.tune.bufsize;
3212 if (len < 0) {
3213 lua_pushfstring(L, "length out of range.");
3214 WILL_LJMP(lua_error(L));
3215 }
3216 }
3217
3218 for (l = 0; l < len; l++) {
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003219 if (l + offset >= output + input)
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003220 break;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003221 if (*(b_peek(&chn->buf, offset + l)) == '\n') {
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003222 len = l+1;
3223 goto dup;
3224 }
3225 }
3226
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003227 if (offset + len > output + input) {
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003228 if (!HLUA_CANT_YIELD(hlua_gethlua(L)) && !channel_input_closed(chn) && channel_may_recv(chn)) {
3229 /* Yield waiting for more data */
3230 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_get_line_yield, TICK_ETERNITY, 0));
3231 }
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003232 len = output + input - offset;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003233 }
3234
3235 dup:
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003236 _hlua_channel_dup(chn, L, offset, len);
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003237 return 1;
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003238}
3239
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003240/* [ DEPRECATED ]
3241 *
3242 * Duplicate all input data foud in the channel's buffer. The data are not
3243 * removed from the buffer. This function relies on _hlua_channel_dup().
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003244 *
3245 * From an action, All input data are considered. For a filter, the offset and
3246 * the length of input data to consider are retrieved from the filter context.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003247 */
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003248__LJMP static int hlua_channel_dup(lua_State *L)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003249{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003250 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003251 struct filter *filter;
3252 size_t offset, len;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003253
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003254 MAY_LJMP(check_args(L, 1, "dup"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003255 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003256 if (IS_HTX_STRM(chn_strm(chn))) {
3257 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3258 WILL_LJMP(lua_error(L));
3259 }
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003260
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003261 offset = co_data(chn);
3262 len = ci_data(chn);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003263
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003264 filter = hlua_channel_filter(L, 1, chn, &offset, &len);
3265 if (filter && !hlua_filter_from_payload(filter))
3266 WILL_LJMP(lua_error(L));
3267
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003268 if (!ci_data(chn) && channel_input_closed(chn)) {
3269 lua_pushnil(L);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003270 return 1;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003271 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003272
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003273 _hlua_channel_dup(chn, L, offset, len);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003274 return 1;
3275}
3276
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003277/* [ DEPRECATED ]
3278 *
3279 * Get all input data foud in the channel's buffer. The data are removed from
3280 * the buffer after the copy. This function relies on _hlua_channel_dup() and
3281 * _hlua_channel_delete().
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003282 *
3283 * From an action, All input data are considered. For a filter, the offset and
3284 * the length of input data to consider are retrieved from the filter context.
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003285 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003286__LJMP static int hlua_channel_get(lua_State *L)
3287{
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003288 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003289 struct filter *filter;
3290 size_t offset, len;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003291 int ret;
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003292
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003293 MAY_LJMP(check_args(L, 1, "get"));
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003294 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3295 if (IS_HTX_STRM(chn_strm(chn))) {
3296 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3297 WILL_LJMP(lua_error(L));
3298 }
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003299
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003300 offset = co_data(chn);
3301 len = ci_data(chn);
3302
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003303 filter = hlua_channel_filter(L, 1, chn, &offset, &len);
3304 if (filter && !hlua_filter_from_payload(filter))
3305 WILL_LJMP(lua_error(L));
3306
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003307 if (!ci_data(chn) && channel_input_closed(chn)) {
3308 lua_pushnil(L);
3309 return 1;
3310 }
3311
3312 ret = _hlua_channel_dup(chn, L, offset, len);
3313 _hlua_channel_delete(chn, offset, ret);
3314 return 1;
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003315}
3316
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003317/* This functions consumes and returns one line. If the channel is closed,
3318 * and the last data does not contains a final '\n', the data are returned
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003319 * without the final '\n'. When no more data are available, it returns nil
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003320 * value.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003321 *
3322 * From an action, All input data are considered. For a filter, the offset and
3323 * the length of input data to consider are retrieved from the filter context.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003324 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003325__LJMP static int hlua_channel_getline_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003326{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003327 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003328 struct filter *filter;
3329 size_t l, offset, len;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003330 int ret;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003331
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003332 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003333
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003334 offset = co_data(chn);
3335 len = ci_data(chn);
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003336
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003337 filter = hlua_channel_filter(L, 1, chn, &offset, &len);
3338 if (filter && !hlua_filter_from_payload(filter))
3339 WILL_LJMP(lua_error(L));
3340
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003341 if (!ci_data(chn) && channel_input_closed(chn)) {
3342 lua_pushnil(L);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003343 return 1;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003344 }
3345
3346 for (l = 0; l < len; l++) {
3347 if (*(b_peek(&chn->buf, offset+l)) == '\n') {
3348 len = l+1;
3349 goto dup;
3350 }
3351 }
3352
3353 if (!HLUA_CANT_YIELD(hlua_gethlua(L)) && !channel_input_closed(chn) && channel_may_recv(chn)) {
3354 /* Yield waiting for more data */
3355 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_getline_yield, TICK_ETERNITY, 0));
3356 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003357
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003358 dup:
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003359 ret = _hlua_channel_dup(chn, L, offset, len);
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003360 _hlua_channel_delete(chn, offset, ret);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003361 return 1;
3362}
3363
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003364/* [ DEPRECATED ]
3365 *
3366 * Check arguments for the function "hlua_channel_getline_yield".
3367 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003368__LJMP static int hlua_channel_getline(lua_State *L)
3369{
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003370 struct channel *chn;
3371
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003372 MAY_LJMP(check_args(L, 1, "getline"));
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003373 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3374 if (IS_HTX_STRM(chn_strm(chn))) {
3375 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3376 WILL_LJMP(lua_error(L));
3377 }
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003378 return MAY_LJMP(hlua_channel_getline_yield(L, 0, 0));
3379}
3380
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003381/* Retrieves a given amount of input data at the given offset. By default all
3382 * available input data are returned. The offset may be negactive to start from
3383 * the end of input data. The length may be -1 to set it to the maximum buffer
3384 * size.
3385 */
3386__LJMP static int hlua_channel_get_data(lua_State *L)
3387{
3388 struct channel *chn;
3389
3390 if (lua_gettop(L) < 1 || lua_gettop(L) > 3)
3391 WILL_LJMP(luaL_error(L, "'data' expects at most 2 arguments"));
3392 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3393 if (IS_HTX_STRM(chn_strm(chn))) {
3394 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3395 WILL_LJMP(lua_error(L));
3396 }
3397 return MAY_LJMP(hlua_channel_get_data_yield(L, 0, 0));
3398}
3399
3400/* Retrieves a given amount of input data at the given offset. By default all
3401 * available input data are returned. The offset may be negactive to start from
3402 * the end of input data. The length may be -1 to set it to the maximum buffer
3403 * size.
3404 */
3405__LJMP static int hlua_channel_get_line(lua_State *L)
3406{
3407 struct channel *chn;
3408
3409 if (lua_gettop(L) < 1 || lua_gettop(L) > 3)
3410 WILL_LJMP(luaL_error(L, "'line' expects at most 2 arguments"));
3411 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3412 if (IS_HTX_STRM(chn_strm(chn))) {
3413 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3414 WILL_LJMP(lua_error(L));
3415 }
3416 return MAY_LJMP(hlua_channel_get_line_yield(L, 0, 0));
3417}
3418
3419/* Appends a string into the input side of channel. It returns the length of the
3420 * written string, or -1 if the channel is closed or if the buffer size is too
3421 * little for the data. 0 may be returned if nothing is copied. This function
3422 * does not yield.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003423 *
3424 * For a filter, the context is updated on success.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003425 */
Christopher Faulet23976d92021-08-06 09:59:49 +02003426__LJMP static int hlua_channel_append(lua_State *L)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003427{
Christopher Faulet23976d92021-08-06 09:59:49 +02003428 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003429 struct filter *filter;
Christopher Faulet23976d92021-08-06 09:59:49 +02003430 const char *str;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003431 size_t sz, offset, len;
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003432 int ret;
Christopher Faulet23976d92021-08-06 09:59:49 +02003433
3434 MAY_LJMP(check_args(L, 2, "append"));
3435 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003436 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01003437 if (IS_HTX_STRM(chn_strm(chn))) {
Thierry Fournier77016da2020-08-15 14:35:51 +02003438 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
Christopher Faulet3f829a42018-12-13 21:56:45 +01003439 WILL_LJMP(lua_error(L));
Thierry Fournier77016da2020-08-15 14:35:51 +02003440 }
Christopher Faulet3f829a42018-12-13 21:56:45 +01003441
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003442 offset = co_data(chn);
3443 len = ci_data(chn);
3444
3445 filter = hlua_channel_filter(L, 1, chn, &offset, &len);
3446 if (filter && !hlua_filter_from_payload(filter))
3447 WILL_LJMP(lua_error(L));
3448
3449 ret = _hlua_channel_insert(chn, L, ist2(str, sz), offset);
3450 if (ret > 0 && filter) {
3451 struct hlua_flt_ctx *flt_ctx = filter->ctx;
3452
3453 flt_update_offsets(filter, chn, ret);
3454 flt_ctx->cur_len[CHN_IDX(chn)] += ret;
3455 }
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003456 lua_pushinteger(L, ret);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003457 return 1;
3458}
3459
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003460/* Prepends a string into the input side of channel. It returns the length of the
3461 * written string, or -1 if the channel is closed or if the buffer size is too
3462 * little for the data. 0 may be returned if nothing is copied. This function
3463 * does not yield.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003464 *
3465 * For a filter, the context is updated on success.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003466 */
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003467__LJMP static int hlua_channel_prepend(lua_State *L)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003468{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003469 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003470 struct filter *filter;
Christopher Faulet23976d92021-08-06 09:59:49 +02003471 const char *str;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003472 size_t sz, offset, len;
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003473 int ret;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003474
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003475 MAY_LJMP(check_args(L, 2, "prepend"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003476 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003477 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
3478 if (IS_HTX_STRM(chn_strm(chn))) {
3479 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3480 WILL_LJMP(lua_error(L));
3481 }
3482
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003483 offset = co_data(chn);
3484 len = ci_data(chn);
3485
3486 filter = hlua_channel_filter(L, 1, chn, &offset, &len);
3487 if (filter && !hlua_filter_from_payload(filter))
3488 WILL_LJMP(lua_error(L));
3489
3490 ret = _hlua_channel_insert(chn, L, ist2(str, sz), offset);
3491 if (ret > 0 && filter) {
3492 struct hlua_flt_ctx *flt_ctx = filter->ctx;
3493
3494 flt_update_offsets(filter, chn, ret);
3495 flt_ctx->cur_len[CHN_IDX(chn)] += ret;
3496 }
3497
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003498 lua_pushinteger(L, ret);
3499 return 1;
3500}
3501
3502/* Inserts a given amount of input data at the given offset by a string
3503 * content. By default the string is appended at the end of input data. It
3504 * returns the length of the written string, or -1 if the channel is closed or
3505 * if the buffer size is too little for the data.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003506 *
3507 * For a filter, the context is updated on success.
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003508 */
3509__LJMP static int hlua_channel_insert_data(lua_State *L)
3510{
3511 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003512 struct filter *filter;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003513 const char *str;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003514 size_t sz, input, output;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003515 int ret, offset;
3516
3517 if (lua_gettop(L) < 2 || lua_gettop(L) > 3)
3518 WILL_LJMP(luaL_error(L, "'insert' expects at least 1 argument and at most 2 arguments"));
3519 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3520 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003521
3522 output = co_data(chn);
3523 input = ci_data(chn);
3524
3525 filter = hlua_channel_filter(L, 1, chn, &output, &input);
3526 if (filter && !hlua_filter_from_payload(filter))
3527 WILL_LJMP(lua_error(L));
3528
3529 offset = input + output;
3530 if (lua_gettop(L) > 2) {
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003531 offset = MAY_LJMP(luaL_checkinteger(L, 3));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003532 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02003533 offset = MAX(0, (int)input + offset);
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003534 offset += output;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003535 if (offset < output || offset > output + input) {
3536 lua_pushfstring(L, "offset out of range.");
3537 WILL_LJMP(lua_error(L));
3538 }
3539 }
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003540 if (IS_HTX_STRM(chn_strm(chn))) {
3541 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3542 WILL_LJMP(lua_error(L));
3543 }
3544
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003545 ret = _hlua_channel_insert(chn, L, ist2(str, sz), offset);
3546 if (ret > 0 && filter) {
3547 struct hlua_flt_ctx *flt_ctx = filter->ctx;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003548
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003549 flt_update_offsets(filter, chn, ret);
3550 flt_ctx->cur_len[CHN_IDX(chn)] += ret;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003551 }
3552
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003553 lua_pushinteger(L, ret);
3554 return 1;
3555}
3556/* Replaces a given amount of input data at the given offset by a string
3557 * content. By default all remaining data are removed (offset = 0 and len =
3558 * -1). It returns the length of the written string, or -1 if the channel is
3559 * closed or if the buffer size is too little for the data.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003560 *
3561 * For a filter, the context is updated on success.
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003562 */
3563__LJMP static int hlua_channel_set_data(lua_State *L)
3564{
3565 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003566 struct filter *filter;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003567 const char *str;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003568 size_t sz, input, output;
3569 int ret, offset, len;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003570
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003571 if (lua_gettop(L) < 2 || lua_gettop(L) > 4)
3572 WILL_LJMP(luaL_error(L, "'set' expects at least 1 argument and at most 3 arguments"));
3573 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3574 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003575
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01003576 if (IS_HTX_STRM(chn_strm(chn))) {
Thierry Fournier77016da2020-08-15 14:35:51 +02003577 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
Christopher Faulet3f829a42018-12-13 21:56:45 +01003578 WILL_LJMP(lua_error(L));
Thierry Fournier77016da2020-08-15 14:35:51 +02003579 }
Christopher Faulet3f829a42018-12-13 21:56:45 +01003580
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003581 output = co_data(chn);
3582 input = ci_data(chn);
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003583
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003584 filter = hlua_channel_filter(L, 1, chn, &output, &input);
3585 if (filter && !hlua_filter_from_payload(filter))
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003586 WILL_LJMP(lua_error(L));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003587
3588 offset = output;
3589 if (lua_gettop(L) > 2) {
3590 offset = MAY_LJMP(luaL_checkinteger(L, 3));
3591 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02003592 offset = MAX(0, (int)input + offset);
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003593 offset += output;
3594 if (offset < output || offset > input + output) {
3595 lua_pushfstring(L, "offset out of range.");
3596 WILL_LJMP(lua_error(L));
3597 }
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003598 }
3599
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003600 len = output + input - offset;
3601 if (lua_gettop(L) == 4) {
3602 len = MAY_LJMP(luaL_checkinteger(L, 4));
3603 if (!len)
3604 goto set;
3605 if (len == -1)
3606 len = output + input - offset;
3607 if (len < 0 || offset + len > output + input) {
3608 lua_pushfstring(L, "length out of range.");
3609 WILL_LJMP(lua_error(L));
3610 }
3611 }
3612
3613 set:
Christopher Faulet23976d92021-08-06 09:59:49 +02003614 /* Be sure we can copied the string once input data will be removed. */
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003615 if (sz > c_room(chn) + len)
Christopher Faulet23976d92021-08-06 09:59:49 +02003616 lua_pushinteger(L, -1);
3617 else {
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003618 _hlua_channel_delete(chn, offset, len);
3619 ret = _hlua_channel_insert(chn, L, ist2(str, sz), offset);
3620 if (filter) {
3621 struct hlua_flt_ctx *flt_ctx = filter->ctx;
3622
3623 len -= (ret > 0 ? ret : 0);
3624 flt_update_offsets(filter, chn, -len);
3625 flt_ctx->cur_len[CHN_IDX(chn)] -= len;
3626 }
3627
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003628 lua_pushinteger(L, ret);
Christopher Faulet23976d92021-08-06 09:59:49 +02003629 }
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003630 return 1;
3631}
3632
3633/* Removes a given amount of input data at the given offset. By default all
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003634 * input data are removed (offset = 0 and len = -1). It returns the amount of
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003635 * the removed data.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003636 *
3637 * For a filter, the context is updated on success.
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003638 */
3639__LJMP static int hlua_channel_del_data(lua_State *L)
3640{
3641 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003642 struct filter *filter;
3643 size_t input, output;
3644 int offset, len;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003645
3646 if (lua_gettop(L) < 1 || lua_gettop(L) > 3)
3647 WILL_LJMP(luaL_error(L, "'remove' expects at most 2 arguments"));
3648 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003649
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003650 if (IS_HTX_STRM(chn_strm(chn))) {
3651 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3652 WILL_LJMP(lua_error(L));
3653 }
3654
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003655 output = co_data(chn);
3656 input = ci_data(chn);
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003657
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003658 filter = hlua_channel_filter(L, 1, chn, &output, &input);
3659 if (filter && !hlua_filter_from_payload(filter))
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003660 WILL_LJMP(lua_error(L));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003661
3662 offset = output;
3663 if (lua_gettop(L) > 2) {
3664 offset = MAY_LJMP(luaL_checkinteger(L, 3));
3665 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02003666 offset = MAX(0, (int)input + offset);
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003667 offset += output;
3668 if (offset < output || offset > input + output) {
3669 lua_pushfstring(L, "offset out of range.");
3670 WILL_LJMP(lua_error(L));
3671 }
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003672 }
3673
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003674 len = output + input - offset;
3675 if (lua_gettop(L) == 4) {
3676 len = MAY_LJMP(luaL_checkinteger(L, 4));
3677 if (!len)
3678 goto end;
3679 if (len == -1)
3680 len = output + input - offset;
3681 if (len < 0 || offset + len > output + input) {
3682 lua_pushfstring(L, "length out of range.");
3683 WILL_LJMP(lua_error(L));
3684 }
3685 }
3686
3687 _hlua_channel_delete(chn, offset, len);
3688 if (filter) {
3689 struct hlua_flt_ctx *flt_ctx = filter->ctx;
3690
3691 flt_update_offsets(filter, chn, -len);
3692 flt_ctx->cur_len[CHN_IDX(chn)] -= len;
3693 }
3694
3695 end:
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003696 lua_pushinteger(L, len);
Christopher Faulet23976d92021-08-06 09:59:49 +02003697 return 1;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003698}
3699
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003700/* Append data in the output side of the buffer. This data is immediately
3701 * sent. The function returns the amount of data written. If the buffer
3702 * cannot contain the data, the function yields. The function returns -1
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003703 * if the channel is closed.
3704 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003705__LJMP static int hlua_channel_send_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003706{
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003707 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003708 struct filter *filter;
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003709 const char *str;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003710 size_t offset, len, sz;
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003711 int l, ret;
Thierry Fournier4234dbd2020-11-28 13:18:23 +01003712 struct hlua *hlua;
3713
3714 /* Get hlua struct, or NULL if we execute from main lua state */
3715 hlua = hlua_gethlua(L);
3716 if (!hlua) {
3717 lua_pushnil(L);
3718 return 1;
3719 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003720
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003721 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3722 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
3723 l = MAY_LJMP(luaL_checkinteger(L, 3));
Christopher Faulet3f829a42018-12-13 21:56:45 +01003724
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003725 offset = co_data(chn);
3726 len = ci_data(chn);
3727
3728 filter = hlua_channel_filter(L, 1, chn, &offset, &len);
3729 if (filter && !hlua_filter_from_payload(filter))
3730 WILL_LJMP(lua_error(L));
3731
3732
Willy Tarreau47860ed2015-03-10 14:07:50 +01003733 if (unlikely(channel_output_closed(chn))) {
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003734 lua_pushinteger(L, -1);
3735 return 1;
3736 }
3737
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003738 len = c_room(chn);
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003739 if (len > sz -l) {
3740 if (filter) {
3741 lua_pushinteger(L, -1);
3742 return 1;
3743 }
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003744 len = sz - l;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003745 }
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003746
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003747 ret = _hlua_channel_insert(chn, L, ist2(str, len), offset);
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003748 if (ret == -1) {
3749 lua_pop(L, 1);
3750 lua_pushinteger(L, -1);
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003751 return 1;
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003752 }
3753 if (ret) {
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003754 if (filter) {
3755 struct hlua_flt_ctx *flt_ctx = filter->ctx;
3756
3757
3758 flt_update_offsets(filter, chn, ret);
3759 FLT_OFF(filter, chn) += ret;
3760 flt_ctx->cur_off[CHN_IDX(chn)] += ret;
3761 }
3762 else
3763 c_adv(chn, ret);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003764
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003765 l += ret;
3766 lua_pop(L, 1);
3767 lua_pushinteger(L, l);
3768 }
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003769
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003770 if (l < sz) {
3771 /* Yield only if the channel's output is not empty.
3772 * Otherwise it means we cannot add more data. */
3773 if (co_data(chn) == 0 || HLUA_CANT_YIELD(hlua_gethlua(L)))
Christopher Faulet2e60aa42021-08-05 11:58:37 +02003774 return 1;
3775
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003776 /* If we are waiting for space in the response buffer, we
3777 * must set the flag WAKERESWR. This flag required the task
3778 * wake up if any activity is detected on the response buffer.
3779 */
Willy Tarreau47860ed2015-03-10 14:07:50 +01003780 if (chn->flags & CF_ISRESP)
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003781 HLUA_SET_WAKERESWR(hlua);
Thierry FOURNIER53e08ec2015-03-06 00:35:53 +01003782 else
3783 HLUA_SET_WAKEREQWR(hlua);
Willy Tarreau9635e032018-10-16 17:52:55 +02003784 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_send_yield, TICK_ETERNITY, 0));
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003785 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003786
3787 return 1;
3788}
3789
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05003790/* Just a wrapper of "_hlua_channel_send". This wrapper permits
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003791 * yield the LUA process, and resume it without checking the
3792 * input arguments.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003793 *
3794 * This function cannot be called from a filter.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003795 */
3796__LJMP static int hlua_channel_send(lua_State *L)
3797{
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003798 struct channel *chn;
3799
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003800 MAY_LJMP(check_args(L, 2, "send"));
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003801 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3802 if (IS_HTX_STRM(chn_strm(chn))) {
3803 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3804 WILL_LJMP(lua_error(L));
3805 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003806 lua_pushinteger(L, 0);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003807 return MAY_LJMP(hlua_channel_send_yield(L, 0, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003808}
3809
3810/* This function forward and amount of butes. The data pass from
3811 * the input side of the buffer to the output side, and can be
3812 * forwarded. This function never fails.
3813 *
3814 * The Lua function takes an amount of bytes to be forwarded in
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05003815 * input. It returns the number of bytes forwarded.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003816 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003817__LJMP static int hlua_channel_forward_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003818{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003819 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003820 struct filter *filter;
3821 size_t offset, len, fwd;
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003822 int l, max;
Thierry Fournier4234dbd2020-11-28 13:18:23 +01003823 struct hlua *hlua;
3824
3825 /* Get hlua struct, or NULL if we execute from main lua state */
3826 hlua = hlua_gethlua(L);
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003827 if (!hlua) {
3828 lua_pushnil(L);
Thierry Fournier4234dbd2020-11-28 13:18:23 +01003829 return 1;
Thierry Fournier77016da2020-08-15 14:35:51 +02003830 }
Christopher Faulet3f829a42018-12-13 21:56:45 +01003831
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003832 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003833 fwd = MAY_LJMP(luaL_checkinteger(L, 2));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003834 l = MAY_LJMP(luaL_checkinteger(L, -1));
3835
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003836 offset = co_data(chn);
3837 len = ci_data(chn);
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003838
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003839 filter = hlua_channel_filter(L, 1, chn, &offset, &len);
3840 if (filter && !hlua_filter_from_payload(filter))
3841 WILL_LJMP(lua_error(L));
3842
3843 max = fwd - l;
3844 if (max > len)
3845 max = len;
3846
3847 if (filter) {
3848 struct hlua_flt_ctx *flt_ctx = filter->ctx;
3849
3850 FLT_OFF(filter, chn) += max;
3851 flt_ctx->cur_off[CHN_IDX(chn)] += max;
3852 flt_ctx->cur_len[CHN_IDX(chn)] -= max;
3853 }
3854 else
3855 channel_forward(chn, max);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003856
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003857 l += max;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003858 lua_pop(L, 1);
3859 lua_pushinteger(L, l);
3860
3861 /* Check if it miss bytes to forward. */
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003862 if (l < fwd) {
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003863 /* The the input channel or the output channel are closed, we
3864 * must return the amount of data forwarded.
3865 */
Christopher Faulet2e60aa42021-08-05 11:58:37 +02003866 if (channel_input_closed(chn) || channel_output_closed(chn) || HLUA_CANT_YIELD(hlua_gethlua(L)))
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003867 return 1;
3868
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003869 /* If we are waiting for space data in the response buffer, we
3870 * must set the flag WAKERESWR. This flag required the task
3871 * wake up if any activity is detected on the response buffer.
3872 */
Willy Tarreau47860ed2015-03-10 14:07:50 +01003873 if (chn->flags & CF_ISRESP)
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003874 HLUA_SET_WAKERESWR(hlua);
Thierry FOURNIER53e08ec2015-03-06 00:35:53 +01003875 else
3876 HLUA_SET_WAKEREQWR(hlua);
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003877
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003878 /* Otherwise, we can yield waiting for new data in the inpout side. */
Willy Tarreau9635e032018-10-16 17:52:55 +02003879 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_forward_yield, TICK_ETERNITY, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003880 }
3881
3882 return 1;
3883}
3884
3885/* Just check the input and prepare the stack for the previous
3886 * function "hlua_channel_forward_yield"
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003887 *
3888 * This function cannot be called from a filter.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003889 */
3890__LJMP static int hlua_channel_forward(lua_State *L)
3891{
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003892 struct channel *chn;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003893
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003894 MAY_LJMP(check_args(L, 2, "forward"));
3895 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3896 if (IS_HTX_STRM(chn_strm(chn))) {
3897 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3898 WILL_LJMP(lua_error(L));
3899 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003900 lua_pushinteger(L, 0);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003901 return MAY_LJMP(hlua_channel_forward_yield(L, 0, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003902}
3903
3904/* Just returns the number of bytes available in the input
3905 * side of the buffer. This function never fails.
3906 */
3907__LJMP static int hlua_channel_get_in_len(lua_State *L)
3908{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003909 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003910 struct filter *filter;
3911 size_t output, input;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003912
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003913 MAY_LJMP(check_args(L, 1, "input"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003914 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003915
3916 output = co_data(chn);
3917 input = ci_data(chn);
3918 filter = hlua_channel_filter(L, 1, chn, &output, &input);
3919 if (filter || !IS_HTX_STRM(chn_strm(chn)))
3920 lua_pushinteger(L, input);
3921 else {
Christopher Fauleta3ceac12018-12-14 13:39:09 +01003922 struct htx *htx = htxbuf(&chn->buf);
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003923
Christopher Fauleta3ceac12018-12-14 13:39:09 +01003924 lua_pushinteger(L, htx->data - co_data(chn));
3925 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003926 return 1;
3927}
3928
Thierry FOURNIER / OZON.IO65192f32016-11-07 15:28:40 +01003929/* Returns true if the channel is full. */
3930__LJMP static int hlua_channel_is_full(lua_State *L)
3931{
3932 struct channel *chn;
Thierry FOURNIER / OZON.IO65192f32016-11-07 15:28:40 +01003933
3934 MAY_LJMP(check_args(L, 1, "is_full"));
3935 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Faulet0ec740e2020-02-26 11:59:19 +01003936 /* ignore the reserve, we are not on a producer side (ie in an
3937 * applet).
3938 */
3939 lua_pushboolean(L, channel_full(chn, 0));
Thierry FOURNIER / OZON.IO65192f32016-11-07 15:28:40 +01003940 return 1;
3941}
3942
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003943/* Returns true if the channel may still receive data. */
3944__LJMP static int hlua_channel_may_recv(lua_State *L)
3945{
3946 struct channel *chn;
3947
3948 MAY_LJMP(check_args(L, 1, "may_recv"));
3949 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3950 lua_pushboolean(L, (!channel_input_closed(chn) && channel_may_recv(chn)));
3951 return 1;
3952}
3953
Christopher Faulet2ac9ba22020-02-25 10:15:50 +01003954/* Returns true if the channel is the response channel. */
3955__LJMP static int hlua_channel_is_resp(lua_State *L)
3956{
3957 struct channel *chn;
3958
3959 MAY_LJMP(check_args(L, 1, "is_resp"));
3960 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3961
3962 lua_pushboolean(L, !!(chn->flags & CF_ISRESP));
3963 return 1;
3964}
3965
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003966/* Just returns the number of bytes available in the output
3967 * side of the buffer. This function never fails.
3968 */
3969__LJMP static int hlua_channel_get_out_len(lua_State *L)
3970{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003971 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003972 size_t output, input;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003973
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003974 MAY_LJMP(check_args(L, 1, "output"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003975 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003976
3977 output = co_data(chn);
3978 input = ci_data(chn);
3979 hlua_channel_filter(L, 1, chn, &output, &input);
3980
3981 lua_pushinteger(L, output);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003982 return 1;
3983}
3984
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003985/*
3986 *
3987 *
3988 * Class Fetches
3989 *
3990 *
3991 */
3992
3993/* Returns a struct hlua_session if the stack entry "ud" is
Willy Tarreau87b09662015-04-03 00:22:06 +02003994 * a class stream, otherwise it throws an error.
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003995 */
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01003996__LJMP static struct hlua_smp *hlua_checkfetches(lua_State *L, int ud)
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003997{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02003998 return MAY_LJMP(hlua_checkudata(L, ud, class_fetches_ref));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003999}
4000
4001/* This function creates and push in the stack a fetch object according
4002 * with a current TXN.
4003 */
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004004static int hlua_fetches_new(lua_State *L, struct hlua_txn *txn, unsigned int flags)
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004005{
Willy Tarreau7073c472015-04-06 11:15:40 +02004006 struct hlua_smp *hsmp;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004007
4008 /* Check stack size. */
4009 if (!lua_checkstack(L, 3))
4010 return 0;
4011
4012 /* Create the object: obj[0] = userdata.
4013 * Note that the base of the Fetches object is the
4014 * transaction object.
4015 */
4016 lua_newtable(L);
Willy Tarreau7073c472015-04-06 11:15:40 +02004017 hsmp = lua_newuserdata(L, sizeof(*hsmp));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004018 lua_rawseti(L, -2, 0);
4019
Willy Tarreau7073c472015-04-06 11:15:40 +02004020 hsmp->s = txn->s;
4021 hsmp->p = txn->p;
Thierry FOURNIERc4eebc82015-11-02 10:01:59 +01004022 hsmp->dir = txn->dir;
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004023 hsmp->flags = flags;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004024
4025 /* Pop a class sesison metatable and affect it to the userdata. */
4026 lua_rawgeti(L, LUA_REGISTRYINDEX, class_fetches_ref);
4027 lua_setmetatable(L, -2);
4028
4029 return 1;
4030}
4031
4032/* This function is an LUA binding. It is called with each sample-fetch.
4033 * It uses closure argument to store the associated sample-fetch. It
4034 * returns only one argument or throws an error. An error is thrown
4035 * only if an error is encountered during the argument parsing. If
4036 * the "sample-fetch" function fails, nil is returned.
4037 */
4038__LJMP static int hlua_run_sample_fetch(lua_State *L)
4039{
Willy Tarreaub2ccb562015-04-06 11:11:15 +02004040 struct hlua_smp *hsmp;
Willy Tarreau2ec22742015-03-10 14:27:20 +01004041 struct sample_fetch *f;
Frédéric Lécaillef874a832018-06-15 13:56:04 +02004042 struct arg args[ARGM_NBARGS + 1] = {{0}};
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004043 int i;
4044 struct sample smp;
4045
4046 /* Get closure arguments. */
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02004047 f = lua_touserdata(L, lua_upvalueindex(1));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004048
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004049 /* Get traditional arguments. */
Willy Tarreaub2ccb562015-04-06 11:11:15 +02004050 hsmp = MAY_LJMP(hlua_checkfetches(L, 1));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004051
Thierry FOURNIERca988662015-12-20 18:43:03 +01004052 /* Check execution authorization. */
4053 if (f->use & SMP_USE_HTTP_ANY &&
4054 !(hsmp->flags & HLUA_F_MAY_USE_HTTP)) {
4055 lua_pushfstring(L, "the sample-fetch '%s' needs an HTTP parser which "
4056 "is not available in Lua services", f->kw);
4057 WILL_LJMP(lua_error(L));
4058 }
4059
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004060 /* Get extra arguments. */
4061 for (i = 0; i < lua_gettop(L) - 1; i++) {
4062 if (i >= ARGM_NBARGS)
4063 break;
4064 hlua_lua2arg(L, i + 2, &args[i]);
4065 }
4066 args[i].type = ARGT_STOP;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004067 args[i].data.str.area = NULL;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004068
4069 /* Check arguments. */
Willy Tarreaub2ccb562015-04-06 11:11:15 +02004070 MAY_LJMP(hlua_lua2arg_check(L, 2, args, f->arg_mask, hsmp->p));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004071
4072 /* Run the special args checker. */
Willy Tarreau2ec22742015-03-10 14:27:20 +01004073 if (f->val_args && !f->val_args(args, NULL)) {
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004074 lua_pushfstring(L, "error in arguments");
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004075 goto error;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004076 }
4077
4078 /* Initialise the sample. */
4079 memset(&smp, 0, sizeof(smp));
4080
4081 /* Run the sample fetch process. */
Willy Tarreau1777ea62016-03-10 16:15:46 +01004082 smp_set_owner(&smp, hsmp->p, hsmp->s->sess, hsmp->s, hsmp->dir & SMP_OPT_DIR);
Thierry FOURNIER0786d052015-05-11 15:42:45 +02004083 if (!f->process(args, &smp, f->kw, f->private)) {
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004084 if (hsmp->flags & HLUA_F_AS_STRING)
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01004085 lua_pushstring(L, "");
4086 else
4087 lua_pushnil(L);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004088 goto end;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004089 }
4090
4091 /* Convert the returned sample in lua value. */
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004092 if (hsmp->flags & HLUA_F_AS_STRING)
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01004093 hlua_smp2lua_str(L, &smp);
4094 else
4095 hlua_smp2lua(L, &smp);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004096
4097 end:
Willy Tarreauee0d7272021-07-16 10:26:56 +02004098 free_args(args);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004099 return 1;
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004100
4101 error:
Willy Tarreauee0d7272021-07-16 10:26:56 +02004102 free_args(args);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004103 WILL_LJMP(lua_error(L));
4104 return 0; /* Never reached */
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004105}
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01004106
4107/*
4108 *
4109 *
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004110 * Class Converters
4111 *
4112 *
4113 */
4114
4115/* Returns a struct hlua_session if the stack entry "ud" is
Willy Tarreau87b09662015-04-03 00:22:06 +02004116 * a class stream, otherwise it throws an error.
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004117 */
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01004118__LJMP static struct hlua_smp *hlua_checkconverters(lua_State *L, int ud)
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004119{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02004120 return MAY_LJMP(hlua_checkudata(L, ud, class_converters_ref));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004121}
4122
4123/* This function creates and push in the stack a Converters object
4124 * according with a current TXN.
4125 */
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004126static int hlua_converters_new(lua_State *L, struct hlua_txn *txn, unsigned int flags)
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004127{
Willy Tarreau7073c472015-04-06 11:15:40 +02004128 struct hlua_smp *hsmp;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004129
4130 /* Check stack size. */
4131 if (!lua_checkstack(L, 3))
4132 return 0;
4133
4134 /* Create the object: obj[0] = userdata.
4135 * Note that the base of the Converters object is the
4136 * same than the TXN object.
4137 */
4138 lua_newtable(L);
Willy Tarreau7073c472015-04-06 11:15:40 +02004139 hsmp = lua_newuserdata(L, sizeof(*hsmp));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004140 lua_rawseti(L, -2, 0);
4141
Willy Tarreau7073c472015-04-06 11:15:40 +02004142 hsmp->s = txn->s;
4143 hsmp->p = txn->p;
Thierry FOURNIERc4eebc82015-11-02 10:01:59 +01004144 hsmp->dir = txn->dir;
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004145 hsmp->flags = flags;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004146
Willy Tarreau87b09662015-04-03 00:22:06 +02004147 /* Pop a class stream metatable and affect it to the table. */
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004148 lua_rawgeti(L, LUA_REGISTRYINDEX, class_converters_ref);
4149 lua_setmetatable(L, -2);
4150
4151 return 1;
4152}
4153
4154/* This function is an LUA binding. It is called with each converter.
4155 * It uses closure argument to store the associated converter. It
4156 * returns only one argument or throws an error. An error is thrown
4157 * only if an error is encountered during the argument parsing. If
4158 * the converter function function fails, nil is returned.
4159 */
4160__LJMP static int hlua_run_sample_conv(lua_State *L)
4161{
Willy Tarreauda5f1082015-04-06 11:17:13 +02004162 struct hlua_smp *hsmp;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004163 struct sample_conv *conv;
Frédéric Lécaillef874a832018-06-15 13:56:04 +02004164 struct arg args[ARGM_NBARGS + 1] = {{0}};
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004165 int i;
4166 struct sample smp;
4167
4168 /* Get closure arguments. */
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02004169 conv = lua_touserdata(L, lua_upvalueindex(1));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004170
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004171 /* Get traditional arguments. */
Willy Tarreauda5f1082015-04-06 11:17:13 +02004172 hsmp = MAY_LJMP(hlua_checkconverters(L, 1));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004173
4174 /* Get extra arguments. */
4175 for (i = 0; i < lua_gettop(L) - 2; i++) {
4176 if (i >= ARGM_NBARGS)
4177 break;
4178 hlua_lua2arg(L, i + 3, &args[i]);
4179 }
4180 args[i].type = ARGT_STOP;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004181 args[i].data.str.area = NULL;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004182
4183 /* Check arguments. */
Willy Tarreauda5f1082015-04-06 11:17:13 +02004184 MAY_LJMP(hlua_lua2arg_check(L, 3, args, conv->arg_mask, hsmp->p));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004185
4186 /* Run the special args checker. */
4187 if (conv->val_args && !conv->val_args(args, conv, "", 0, NULL)) {
4188 hlua_pusherror(L, "error in arguments");
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004189 goto error;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004190 }
4191
4192 /* Initialise the sample. */
Amaury Denoyellebc0af6a2020-10-29 17:21:20 +01004193 memset(&smp, 0, sizeof(smp));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004194 if (!hlua_lua2smp(L, 2, &smp)) {
4195 hlua_pusherror(L, "error in the input argument");
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004196 goto error;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004197 }
4198
Willy Tarreau1777ea62016-03-10 16:15:46 +01004199 smp_set_owner(&smp, hsmp->p, hsmp->s->sess, hsmp->s, hsmp->dir & SMP_OPT_DIR);
4200
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004201 /* Apply expected cast. */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02004202 if (!sample_casts[smp.data.type][conv->in_type]) {
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004203 hlua_pusherror(L, "invalid input argument: cannot cast '%s' to '%s'",
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02004204 smp_to_type[smp.data.type], smp_to_type[conv->in_type]);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004205 goto error;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004206 }
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02004207 if (sample_casts[smp.data.type][conv->in_type] != c_none &&
4208 !sample_casts[smp.data.type][conv->in_type](&smp)) {
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004209 hlua_pusherror(L, "error during the input argument casting");
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004210 goto error;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004211 }
4212
4213 /* Run the sample conversion process. */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02004214 if (!conv->process(args, &smp, conv->private)) {
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004215 if (hsmp->flags & HLUA_F_AS_STRING)
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01004216 lua_pushstring(L, "");
4217 else
Willy Tarreaua678b432015-08-28 10:14:59 +02004218 lua_pushnil(L);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004219 goto end;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004220 }
4221
4222 /* Convert the returned sample in lua value. */
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004223 if (hsmp->flags & HLUA_F_AS_STRING)
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01004224 hlua_smp2lua_str(L, &smp);
4225 else
4226 hlua_smp2lua(L, &smp);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004227 end:
Willy Tarreauee0d7272021-07-16 10:26:56 +02004228 free_args(args);
Willy Tarreaua678b432015-08-28 10:14:59 +02004229 return 1;
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004230
4231 error:
Willy Tarreauee0d7272021-07-16 10:26:56 +02004232 free_args(args);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004233 WILL_LJMP(lua_error(L));
4234 return 0; /* Never reached */
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004235}
4236
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004237/*
4238 *
4239 *
4240 * Class AppletTCP
4241 *
4242 *
4243 */
4244
4245/* Returns a struct hlua_txn if the stack entry "ud" is
4246 * a class stream, otherwise it throws an error.
4247 */
4248__LJMP static struct hlua_appctx *hlua_checkapplet_tcp(lua_State *L, int ud)
4249{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02004250 return MAY_LJMP(hlua_checkudata(L, ud, class_applet_tcp_ref));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004251}
4252
4253/* This function creates and push in the stack an Applet object
4254 * according with a current TXN.
4255 */
4256static int hlua_applet_tcp_new(lua_State *L, struct appctx *ctx)
4257{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004258 struct hlua_appctx *luactx;
Christopher Faulet908628c2022-03-25 16:43:49 +01004259 struct stream *s = __cs_strm(ctx->owner);
Christopher Faulet2da02ae2022-02-24 13:45:27 +01004260 struct proxy *p;
4261
4262 ALREADY_CHECKED(s);
4263 p = s->be;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004264
4265 /* Check stack size. */
4266 if (!lua_checkstack(L, 3))
4267 return 0;
4268
4269 /* Create the object: obj[0] = userdata.
4270 * Note that the base of the Converters object is the
4271 * same than the TXN object.
4272 */
4273 lua_newtable(L);
Willy Tarreau7e702d12021-04-28 17:59:21 +02004274 luactx = lua_newuserdata(L, sizeof(*luactx));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004275 lua_rawseti(L, -2, 0);
Willy Tarreau7e702d12021-04-28 17:59:21 +02004276 luactx->appctx = ctx;
4277 luactx->htxn.s = s;
4278 luactx->htxn.p = p;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004279
4280 /* Create the "f" field that contains a list of fetches. */
4281 lua_pushstring(L, "f");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004282 if (!hlua_fetches_new(L, &luactx->htxn, 0))
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004283 return 0;
4284 lua_settable(L, -3);
4285
4286 /* Create the "sf" field that contains a list of stringsafe fetches. */
4287 lua_pushstring(L, "sf");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004288 if (!hlua_fetches_new(L, &luactx->htxn, HLUA_F_AS_STRING))
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004289 return 0;
4290 lua_settable(L, -3);
4291
4292 /* Create the "c" field that contains a list of converters. */
4293 lua_pushstring(L, "c");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004294 if (!hlua_converters_new(L, &luactx->htxn, 0))
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004295 return 0;
4296 lua_settable(L, -3);
4297
4298 /* Create the "sc" field that contains a list of stringsafe converters. */
4299 lua_pushstring(L, "sc");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004300 if (!hlua_converters_new(L, &luactx->htxn, HLUA_F_AS_STRING))
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004301 return 0;
4302 lua_settable(L, -3);
4303
4304 /* Pop a class stream metatable and affect it to the table. */
4305 lua_rawgeti(L, LUA_REGISTRYINDEX, class_applet_tcp_ref);
4306 lua_setmetatable(L, -2);
4307
4308 return 1;
4309}
4310
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004311__LJMP static int hlua_applet_tcp_set_var(lua_State *L)
4312{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004313 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004314 struct stream *s;
4315 const char *name;
4316 size_t len;
4317 struct sample smp;
4318
Tim Duesterhus4e172c92020-05-19 13:49:42 +02004319 if (lua_gettop(L) < 3 || lua_gettop(L) > 4)
4320 WILL_LJMP(luaL_error(L, "'set_var' needs between 3 and 4 arguments"));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004321
4322 /* It is useles to retrieve the stream, but this function
4323 * runs only in a stream context.
4324 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004325 luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004326 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004327 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004328
4329 /* Converts the third argument in a sample. */
Amaury Denoyellebc0af6a2020-10-29 17:21:20 +01004330 memset(&smp, 0, sizeof(smp));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004331 hlua_lua2smp(L, 3, &smp);
4332
4333 /* Store the sample in a variable. */
4334 smp_set_owner(&smp, s->be, s->sess, s, 0);
Tim Duesterhus4e172c92020-05-19 13:49:42 +02004335
4336 if (lua_gettop(L) == 4 && lua_toboolean(L, 4))
4337 lua_pushboolean(L, vars_set_by_name_ifexist(name, len, &smp) != 0);
4338 else
4339 lua_pushboolean(L, vars_set_by_name(name, len, &smp) != 0);
4340
Tim Duesterhus84ebc132020-05-19 13:49:41 +02004341 return 1;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004342}
4343
4344__LJMP static int hlua_applet_tcp_unset_var(lua_State *L)
4345{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004346 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004347 struct stream *s;
4348 const char *name;
4349 size_t len;
4350 struct sample smp;
4351
4352 MAY_LJMP(check_args(L, 2, "unset_var"));
4353
4354 /* It is useles to retrieve the stream, but this function
4355 * runs only in a stream context.
4356 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004357 luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004358 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004359 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004360
4361 /* Unset the variable. */
4362 smp_set_owner(&smp, s->be, s->sess, s, 0);
Tim Duesterhus84ebc132020-05-19 13:49:41 +02004363 lua_pushboolean(L, vars_unset_by_name_ifexist(name, len, &smp) != 0);
4364 return 1;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004365}
4366
4367__LJMP static int hlua_applet_tcp_get_var(lua_State *L)
4368{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004369 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004370 struct stream *s;
4371 const char *name;
4372 size_t len;
4373 struct sample smp;
4374
4375 MAY_LJMP(check_args(L, 2, "get_var"));
4376
4377 /* It is useles to retrieve the stream, but this function
4378 * runs only in a stream context.
4379 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004380 luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004381 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004382 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004383
4384 smp_set_owner(&smp, s->be, s->sess, s, 0);
Willy Tarreaue352b9d2021-09-03 11:52:38 +02004385 if (!vars_get_by_name(name, len, &smp, NULL)) {
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004386 lua_pushnil(L);
4387 return 1;
4388 }
4389
4390 return hlua_smp2lua(L, &smp);
4391}
4392
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004393__LJMP static int hlua_applet_tcp_set_priv(lua_State *L)
4394{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004395 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
4396 struct stream *s = luactx->htxn.s;
Thierry FOURNIER3b0a6d42016-12-16 08:48:32 +01004397 struct hlua *hlua;
4398
4399 /* Note that this hlua struct is from the session and not from the applet. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01004400 if (!s->hlua)
4401 return 0;
4402 hlua = s->hlua;
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004403
4404 MAY_LJMP(check_args(L, 2, "set_priv"));
4405
4406 /* Remove previous value. */
Thierry FOURNIERe068b602017-04-26 13:27:05 +02004407 luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref);
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004408
4409 /* Get and store new value. */
4410 lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */
4411 hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */
4412
4413 return 0;
4414}
4415
4416__LJMP static int hlua_applet_tcp_get_priv(lua_State *L)
4417{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004418 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
4419 struct stream *s = luactx->htxn.s;
Thierry FOURNIER3b0a6d42016-12-16 08:48:32 +01004420 struct hlua *hlua;
4421
4422 /* Note that this hlua struct is from the session and not from the applet. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01004423 if (!s->hlua) {
4424 lua_pushnil(L);
4425 return 1;
4426 }
4427 hlua = s->hlua;
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004428
4429 /* Push configuration index in the stack. */
4430 lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref);
4431
4432 return 1;
4433}
4434
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004435/* If expected data not yet available, it returns a yield. This function
4436 * consumes the data in the buffer. It returns a string containing the
4437 * data. This string can be empty.
4438 */
4439__LJMP static int hlua_applet_tcp_getline_yield(lua_State *L, int status, lua_KContext ctx)
4440{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004441 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Christopher Faulet908628c2022-03-25 16:43:49 +01004442 struct conn_stream *cs = luactx->appctx->owner;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004443 int ret;
Willy Tarreau206ba832018-06-14 15:27:31 +02004444 const char *blk1;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02004445 size_t len1;
Willy Tarreau206ba832018-06-14 15:27:31 +02004446 const char *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02004447 size_t len2;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004448
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004449 /* Read the maximum amount of data available. */
Christopher Faulet908628c2022-03-25 16:43:49 +01004450 ret = co_getline_nc(cs_oc(cs), &blk1, &len1, &blk2, &len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004451
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004452 /* Data not yet available. return yield. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004453 if (ret == 0) {
Christopher Fauleta0bdec32022-04-04 07:51:21 +02004454 cs_cant_get(cs);
Willy Tarreau9635e032018-10-16 17:52:55 +02004455 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_getline_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004456 }
4457
4458 /* End of data: commit the total strings and return. */
4459 if (ret < 0) {
Willy Tarreau7e702d12021-04-28 17:59:21 +02004460 luaL_pushresult(&luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004461 return 1;
4462 }
4463
4464 /* Ensure that the block 2 length is usable. */
4465 if (ret == 1)
4466 len2 = 0;
4467
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07004468 /* don't check the max length read and don't check. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004469 luaL_addlstring(&luactx->b, blk1, len1);
4470 luaL_addlstring(&luactx->b, blk2, len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004471
4472 /* Consume input channel output buffer data. */
Christopher Faulet908628c2022-03-25 16:43:49 +01004473 co_skip(cs_oc(cs), len1 + len2);
Willy Tarreau7e702d12021-04-28 17:59:21 +02004474 luaL_pushresult(&luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004475 return 1;
4476}
4477
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004478/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004479__LJMP static int hlua_applet_tcp_getline(lua_State *L)
4480{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004481 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004482
4483 /* Initialise the string catenation. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004484 luaL_buffinit(L, &luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004485
4486 return MAY_LJMP(hlua_applet_tcp_getline_yield(L, 0, 0));
4487}
4488
4489/* If expected data not yet available, it returns a yield. This function
4490 * consumes the data in the buffer. It returns a string containing the
4491 * data. This string can be empty.
4492 */
4493__LJMP static int hlua_applet_tcp_recv_yield(lua_State *L, int status, lua_KContext ctx)
4494{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004495 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Christopher Faulet908628c2022-03-25 16:43:49 +01004496 struct conn_stream *cs = luactx->appctx->owner;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02004497 size_t len = MAY_LJMP(luaL_checkinteger(L, 2));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004498 int ret;
Willy Tarreau206ba832018-06-14 15:27:31 +02004499 const char *blk1;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02004500 size_t len1;
Willy Tarreau206ba832018-06-14 15:27:31 +02004501 const char *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02004502 size_t len2;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004503
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004504 /* Read the maximum amount of data available. */
Christopher Faulet908628c2022-03-25 16:43:49 +01004505 ret = co_getblk_nc(cs_oc(cs), &blk1, &len1, &blk2, &len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004506
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004507 /* Data not yet available. return yield. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004508 if (ret == 0) {
Christopher Fauleta0bdec32022-04-04 07:51:21 +02004509 cs_cant_get(cs);
Willy Tarreau9635e032018-10-16 17:52:55 +02004510 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_recv_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004511 }
4512
4513 /* End of data: commit the total strings and return. */
4514 if (ret < 0) {
Willy Tarreau7e702d12021-04-28 17:59:21 +02004515 luaL_pushresult(&luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004516 return 1;
4517 }
4518
4519 /* Ensure that the block 2 length is usable. */
4520 if (ret == 1)
4521 len2 = 0;
4522
4523 if (len == -1) {
4524
4525 /* If len == -1, catenate all the data avalaile and
4526 * yield because we want to get all the data until
4527 * the end of data stream.
4528 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004529 luaL_addlstring(&luactx->b, blk1, len1);
4530 luaL_addlstring(&luactx->b, blk2, len2);
Christopher Faulet908628c2022-03-25 16:43:49 +01004531 co_skip(cs_oc(cs), len1 + len2);
Christopher Fauleta0bdec32022-04-04 07:51:21 +02004532 cs_cant_get(cs);
Willy Tarreau9635e032018-10-16 17:52:55 +02004533 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_recv_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004534
4535 } else {
4536
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05004537 /* Copy the first block caping to the length required. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004538 if (len1 > len)
4539 len1 = len;
Willy Tarreau7e702d12021-04-28 17:59:21 +02004540 luaL_addlstring(&luactx->b, blk1, len1);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004541 len -= len1;
4542
4543 /* Copy the second block. */
4544 if (len2 > len)
4545 len2 = len;
Willy Tarreau7e702d12021-04-28 17:59:21 +02004546 luaL_addlstring(&luactx->b, blk2, len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004547 len -= len2;
4548
4549 /* Consume input channel output buffer data. */
Christopher Faulet908628c2022-03-25 16:43:49 +01004550 co_skip(cs_oc(cs), len1 + len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004551
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004552 /* If there is no other data available, yield waiting for new data. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004553 if (len > 0) {
4554 lua_pushinteger(L, len);
4555 lua_replace(L, 2);
Christopher Fauleta0bdec32022-04-04 07:51:21 +02004556 cs_cant_get(cs);
Willy Tarreau9635e032018-10-16 17:52:55 +02004557 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_recv_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004558 }
4559
4560 /* return the result. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004561 luaL_pushresult(&luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004562 return 1;
4563 }
4564
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004565 /* we never execute this */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004566 hlua_pusherror(L, "Lua: internal error");
4567 WILL_LJMP(lua_error(L));
4568 return 0;
4569}
4570
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004571/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004572__LJMP static int hlua_applet_tcp_recv(lua_State *L)
4573{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004574 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004575 int len = -1;
4576
4577 if (lua_gettop(L) > 2)
4578 WILL_LJMP(luaL_error(L, "The 'recv' function requires between 1 and 2 arguments."));
4579 if (lua_gettop(L) >= 2) {
4580 len = MAY_LJMP(luaL_checkinteger(L, 2));
4581 lua_pop(L, 1);
4582 }
4583
4584 /* Confirm or set the required length */
4585 lua_pushinteger(L, len);
4586
4587 /* Initialise the string catenation. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004588 luaL_buffinit(L, &luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004589
4590 return MAY_LJMP(hlua_applet_tcp_recv_yield(L, 0, 0));
4591}
4592
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004593/* Append data in the output side of the buffer. This data is immediately
4594 * sent. The function returns the amount of data written. If the buffer
4595 * cannot contain the data, the function yields. The function returns -1
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004596 * if the channel is closed.
4597 */
4598__LJMP static int hlua_applet_tcp_send_yield(lua_State *L, int status, lua_KContext ctx)
4599{
4600 size_t len;
Willy Tarreau7e702d12021-04-28 17:59:21 +02004601 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004602 const char *str = MAY_LJMP(luaL_checklstring(L, 2, &len));
4603 int l = MAY_LJMP(luaL_checkinteger(L, 3));
Christopher Faulet908628c2022-03-25 16:43:49 +01004604 struct conn_stream *cs = luactx->appctx->owner;
4605 struct channel *chn = cs_ic(cs);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004606 int max;
4607
4608 /* Get the max amount of data which can write as input in the channel. */
4609 max = channel_recv_max(chn);
4610 if (max > (len - l))
4611 max = len - l;
4612
4613 /* Copy data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02004614 ci_putblk(chn, str + l, max);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004615
4616 /* update counters. */
4617 l += max;
4618 lua_pop(L, 1);
4619 lua_pushinteger(L, l);
4620
4621 /* If some data is not send, declares the situation to the
4622 * applet, and returns a yield.
4623 */
4624 if (l < len) {
Christopher Fauleta0bdec32022-04-04 07:51:21 +02004625 cs_rx_room_blk(cs);
Willy Tarreau9635e032018-10-16 17:52:55 +02004626 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_send_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004627 }
4628
4629 return 1;
4630}
4631
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05004632/* Just a wrapper of "hlua_applet_tcp_send_yield". This wrapper permits
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004633 * yield the LUA process, and resume it without checking the
4634 * input arguments.
4635 */
4636__LJMP static int hlua_applet_tcp_send(lua_State *L)
4637{
4638 MAY_LJMP(check_args(L, 2, "send"));
4639 lua_pushinteger(L, 0);
4640
4641 return MAY_LJMP(hlua_applet_tcp_send_yield(L, 0, 0));
4642}
4643
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004644/*
4645 *
4646 *
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004647 * Class AppletHTTP
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004648 *
4649 *
4650 */
4651
4652/* Returns a struct hlua_txn if the stack entry "ud" is
Willy Tarreau87b09662015-04-03 00:22:06 +02004653 * a class stream, otherwise it throws an error.
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004654 */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004655__LJMP static struct hlua_appctx *hlua_checkapplet_http(lua_State *L, int ud)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004656{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02004657 return MAY_LJMP(hlua_checkudata(L, ud, class_applet_http_ref));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004658}
4659
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004660/* This function creates and push in the stack an Applet object
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004661 * according with a current TXN.
4662 */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004663static int hlua_applet_http_new(lua_State *L, struct appctx *ctx)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004664{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004665 struct hlua_appctx *luactx;
Thierry FOURNIER841475e2015-12-11 17:10:09 +01004666 struct hlua_txn htxn;
Christopher Faulet908628c2022-03-25 16:43:49 +01004667 struct stream *s = __cs_strm(ctx->owner);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004668 struct proxy *px = s->be;
Christopher Fauleta2097962019-07-15 16:25:33 +02004669 struct htx *htx;
4670 struct htx_blk *blk;
4671 struct htx_sl *sl;
4672 struct ist path;
4673 unsigned long long len = 0;
4674 int32_t pos;
Amaury Denoyellec453f952021-07-06 11:40:12 +02004675 struct http_uri_parser parser;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004676
4677 /* Check stack size. */
4678 if (!lua_checkstack(L, 3))
4679 return 0;
4680
4681 /* Create the object: obj[0] = userdata.
4682 * Note that the base of the Converters object is the
4683 * same than the TXN object.
4684 */
4685 lua_newtable(L);
Willy Tarreau7e702d12021-04-28 17:59:21 +02004686 luactx = lua_newuserdata(L, sizeof(*luactx));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004687 lua_rawseti(L, -2, 0);
Willy Tarreau7e702d12021-04-28 17:59:21 +02004688 luactx->appctx = ctx;
4689 luactx->appctx->ctx.hlua_apphttp.status = 200; /* Default status code returned. */
4690 luactx->appctx->ctx.hlua_apphttp.reason = NULL; /* Use default reason based on status */
4691 luactx->htxn.s = s;
4692 luactx->htxn.p = px;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004693
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004694 /* Create the "f" field that contains a list of fetches. */
4695 lua_pushstring(L, "f");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004696 if (!hlua_fetches_new(L, &luactx->htxn, 0))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004697 return 0;
4698 lua_settable(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004699
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004700 /* Create the "sf" field that contains a list of stringsafe fetches. */
4701 lua_pushstring(L, "sf");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004702 if (!hlua_fetches_new(L, &luactx->htxn, HLUA_F_AS_STRING))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004703 return 0;
4704 lua_settable(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004705
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004706 /* Create the "c" field that contains a list of converters. */
4707 lua_pushstring(L, "c");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004708 if (!hlua_converters_new(L, &luactx->htxn, 0))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004709 return 0;
4710 lua_settable(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004711
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004712 /* Create the "sc" field that contains a list of stringsafe converters. */
4713 lua_pushstring(L, "sc");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004714 if (!hlua_converters_new(L, &luactx->htxn, HLUA_F_AS_STRING))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004715 return 0;
4716 lua_settable(L, -3);
Willy Tarreaueee5b512015-04-03 23:46:31 +02004717
Christopher Fauleta2097962019-07-15 16:25:33 +02004718 htx = htxbuf(&s->req.buf);
4719 blk = htx_get_first_blk(htx);
Christopher Fauletea009732019-11-18 15:50:25 +01004720 BUG_ON(!blk || htx_get_blk_type(blk) != HTX_BLK_REQ_SL);
Christopher Fauleta2097962019-07-15 16:25:33 +02004721 sl = htx_get_blk_ptr(htx, blk);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004722
Christopher Fauleta2097962019-07-15 16:25:33 +02004723 /* Stores the request method. */
4724 lua_pushstring(L, "method");
4725 lua_pushlstring(L, HTX_SL_REQ_MPTR(sl), HTX_SL_REQ_MLEN(sl));
4726 lua_settable(L, -3);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004727
Christopher Fauleta2097962019-07-15 16:25:33 +02004728 /* Stores the http version. */
4729 lua_pushstring(L, "version");
4730 lua_pushlstring(L, HTX_SL_REQ_VPTR(sl), HTX_SL_REQ_VLEN(sl));
4731 lua_settable(L, -3);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004732
Christopher Fauleta2097962019-07-15 16:25:33 +02004733 /* creates an array of headers. hlua_http_get_headers() crates and push
4734 * the array on the top of the stack.
4735 */
4736 lua_pushstring(L, "headers");
4737 htxn.s = s;
4738 htxn.p = px;
4739 htxn.dir = SMP_OPT_DIR_REQ;
Christopher Faulet9d1332b2020-02-24 16:46:16 +01004740 if (!hlua_http_get_headers(L, &htxn.s->txn->req))
Christopher Fauleta2097962019-07-15 16:25:33 +02004741 return 0;
4742 lua_settable(L, -3);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004743
Amaury Denoyellec453f952021-07-06 11:40:12 +02004744 parser = http_uri_parser_init(htx_sl_req_uri(sl));
4745 path = http_parse_path(&parser);
Tim Duesterhused526372020-03-05 17:56:33 +01004746 if (isttest(path)) {
Christopher Fauleta2097962019-07-15 16:25:33 +02004747 char *p, *q, *end;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004748
Christopher Fauleta2097962019-07-15 16:25:33 +02004749 p = path.ptr;
Tim Duesterhus4c8f75f2021-11-06 15:14:44 +01004750 end = istend(path);
Christopher Fauleta2097962019-07-15 16:25:33 +02004751 q = p;
4752 while (q < end && *q != '?')
4753 q++;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004754
Thierry FOURNIER7d388632017-02-22 02:06:16 +01004755 /* Stores the request path. */
Christopher Fauleta2097962019-07-15 16:25:33 +02004756 lua_pushstring(L, "path");
4757 lua_pushlstring(L, p, q - p);
Thierry FOURNIER7d388632017-02-22 02:06:16 +01004758 lua_settable(L, -3);
Thierry FOURNIER04c57b32015-03-18 13:43:10 +01004759
Christopher Fauleta2097962019-07-15 16:25:33 +02004760 /* Stores the query string. */
4761 lua_pushstring(L, "qs");
4762 if (*q == '?')
4763 q++;
4764 lua_pushlstring(L, q, end - q);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004765 lua_settable(L, -3);
Christopher Fauleta2097962019-07-15 16:25:33 +02004766 }
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004767
Christopher Fauleta2097962019-07-15 16:25:33 +02004768 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
4769 struct htx_blk *blk = htx_get_blk(htx, pos);
4770 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004771
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004772 if (type == HTX_BLK_TLR || type == HTX_BLK_EOT)
Christopher Fauleta2097962019-07-15 16:25:33 +02004773 break;
4774 if (type == HTX_BLK_DATA)
4775 len += htx_get_blksz(blk);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004776 }
Christopher Fauleta2097962019-07-15 16:25:33 +02004777 if (htx->extra != ULLONG_MAX)
4778 len += htx->extra;
4779
4780 /* Stores the request path. */
4781 lua_pushstring(L, "length");
4782 lua_pushinteger(L, len);
4783 lua_settable(L, -3);
Thierry FOURNIER04c57b32015-03-18 13:43:10 +01004784
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004785 /* Create an empty array of HTTP request headers. */
4786 lua_pushstring(L, "response");
4787 lua_newtable(L);
4788 lua_settable(L, -3);
Thierry FOURNIER04c57b32015-03-18 13:43:10 +01004789
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004790 /* Pop a class stream metatable and affect it to the table. */
4791 lua_rawgeti(L, LUA_REGISTRYINDEX, class_applet_http_ref);
4792 lua_setmetatable(L, -2);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004793
4794 return 1;
4795}
4796
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004797__LJMP static int hlua_applet_http_set_var(lua_State *L)
4798{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004799 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004800 struct stream *s;
4801 const char *name;
4802 size_t len;
4803 struct sample smp;
4804
Tim Duesterhus4e172c92020-05-19 13:49:42 +02004805 if (lua_gettop(L) < 3 || lua_gettop(L) > 4)
4806 WILL_LJMP(luaL_error(L, "'set_var' needs between 3 and 4 arguments"));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004807
4808 /* It is useles to retrieve the stream, but this function
4809 * runs only in a stream context.
4810 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004811 luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004812 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004813 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004814
4815 /* Converts the third argument in a sample. */
Amaury Denoyellebc0af6a2020-10-29 17:21:20 +01004816 memset(&smp, 0, sizeof(smp));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004817 hlua_lua2smp(L, 3, &smp);
4818
4819 /* Store the sample in a variable. */
4820 smp_set_owner(&smp, s->be, s->sess, s, 0);
Tim Duesterhus4e172c92020-05-19 13:49:42 +02004821
4822 if (lua_gettop(L) == 4 && lua_toboolean(L, 4))
4823 lua_pushboolean(L, vars_set_by_name_ifexist(name, len, &smp) != 0);
4824 else
4825 lua_pushboolean(L, vars_set_by_name(name, len, &smp) != 0);
4826
Tim Duesterhus84ebc132020-05-19 13:49:41 +02004827 return 1;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004828}
4829
4830__LJMP static int hlua_applet_http_unset_var(lua_State *L)
4831{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004832 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004833 struct stream *s;
4834 const char *name;
4835 size_t len;
4836 struct sample smp;
4837
4838 MAY_LJMP(check_args(L, 2, "unset_var"));
4839
4840 /* It is useles to retrieve the stream, but this function
4841 * runs only in a stream context.
4842 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004843 luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004844 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004845 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004846
4847 /* Unset the variable. */
4848 smp_set_owner(&smp, s->be, s->sess, s, 0);
Tim Duesterhus84ebc132020-05-19 13:49:41 +02004849 lua_pushboolean(L, vars_unset_by_name_ifexist(name, len, &smp) != 0);
4850 return 1;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004851}
4852
4853__LJMP static int hlua_applet_http_get_var(lua_State *L)
4854{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004855 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004856 struct stream *s;
4857 const char *name;
4858 size_t len;
4859 struct sample smp;
4860
4861 MAY_LJMP(check_args(L, 2, "get_var"));
4862
4863 /* It is useles to retrieve the stream, but this function
4864 * runs only in a stream context.
4865 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004866 luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004867 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004868 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004869
4870 smp_set_owner(&smp, s->be, s->sess, s, 0);
Willy Tarreaue352b9d2021-09-03 11:52:38 +02004871 if (!vars_get_by_name(name, len, &smp, NULL)) {
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004872 lua_pushnil(L);
4873 return 1;
4874 }
4875
4876 return hlua_smp2lua(L, &smp);
4877}
4878
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004879__LJMP static int hlua_applet_http_set_priv(lua_State *L)
4880{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004881 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4882 struct stream *s = luactx->htxn.s;
Thierry FOURNIER3b0a6d42016-12-16 08:48:32 +01004883 struct hlua *hlua;
4884
4885 /* Note that this hlua struct is from the session and not from the applet. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01004886 if (!s->hlua)
4887 return 0;
4888 hlua = s->hlua;
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004889
4890 MAY_LJMP(check_args(L, 2, "set_priv"));
4891
4892 /* Remove previous value. */
Thierry FOURNIERe068b602017-04-26 13:27:05 +02004893 luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref);
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004894
4895 /* Get and store new value. */
4896 lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */
4897 hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */
4898
4899 return 0;
4900}
4901
4902__LJMP static int hlua_applet_http_get_priv(lua_State *L)
4903{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004904 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4905 struct stream *s = luactx->htxn.s;
Thierry FOURNIER3b0a6d42016-12-16 08:48:32 +01004906 struct hlua *hlua;
4907
4908 /* Note that this hlua struct is from the session and not from the applet. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01004909 if (!s->hlua) {
4910 lua_pushnil(L);
4911 return 1;
4912 }
4913 hlua = s->hlua;
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004914
4915 /* Push configuration index in the stack. */
4916 lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref);
4917
4918 return 1;
4919}
4920
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004921/* If expected data not yet available, it returns a yield. This function
4922 * consumes the data in the buffer. It returns a string containing the
4923 * data. This string can be empty.
4924 */
Christopher Fauleta2097962019-07-15 16:25:33 +02004925__LJMP static int hlua_applet_http_getline_yield(lua_State *L, int status, lua_KContext ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004926{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004927 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Christopher Faulet908628c2022-03-25 16:43:49 +01004928 struct conn_stream *cs = luactx->appctx->owner;
4929 struct channel *req = cs_oc(cs);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004930 struct htx *htx;
4931 struct htx_blk *blk;
4932 size_t count;
4933 int stop = 0;
4934
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004935 htx = htx_from_buf(&req->buf);
4936 count = co_data(req);
Christopher Fauleta3f15502019-05-13 15:27:23 +02004937 blk = htx_get_first_blk(htx);
Christopher Fauletcc26b132018-12-18 21:20:57 +01004938
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004939 while (count && !stop && blk) {
4940 enum htx_blk_type type = htx_get_blk_type(blk);
4941 uint32_t sz = htx_get_blksz(blk);
4942 struct ist v;
4943 uint32_t vlen;
4944 char *nl;
4945
4946 vlen = sz;
4947 if (vlen > count) {
4948 if (type != HTX_BLK_DATA)
4949 break;
4950 vlen = count;
4951 }
4952
4953 switch (type) {
4954 case HTX_BLK_UNUSED:
4955 break;
4956
4957 case HTX_BLK_DATA:
4958 v = htx_get_blk_value(htx, blk);
4959 v.len = vlen;
4960 nl = istchr(v, '\n');
4961 if (nl != NULL) {
4962 stop = 1;
4963 vlen = nl - v.ptr + 1;
4964 }
Willy Tarreau7e702d12021-04-28 17:59:21 +02004965 luaL_addlstring(&luactx->b, v.ptr, vlen);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004966 break;
4967
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004968 case HTX_BLK_TLR:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004969 case HTX_BLK_EOT:
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004970 stop = 1;
4971 break;
4972
4973 default:
4974 break;
4975 }
4976
Willy Tarreau84240042022-02-28 16:51:23 +01004977 c_rew(req, vlen);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004978 count -= vlen;
4979 if (sz == vlen)
4980 blk = htx_remove_blk(htx, blk);
4981 else {
4982 htx_cut_data_blk(htx, blk, vlen);
4983 break;
4984 }
4985 }
4986
Christopher Fauleteccb31c2021-04-02 14:24:56 +02004987 /* The message was fully consumed and no more data are expected
4988 * (EOM flag set).
4989 */
4990 if (htx_is_empty(htx) && (htx->flags & HTX_FL_EOM))
4991 stop = 1;
4992
Christopher Faulet0ae79d02019-02-27 21:36:59 +01004993 htx_to_buf(htx, &req->buf);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004994 if (!stop) {
Christopher Fauleta0bdec32022-04-04 07:51:21 +02004995 cs_cant_get(cs);
Christopher Fauleta2097962019-07-15 16:25:33 +02004996 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_getline_yield, TICK_ETERNITY, 0));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004997 }
4998
4999 /* return the result. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02005000 luaL_pushresult(&luactx->b);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005001 return 1;
5002}
5003
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005004
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08005005/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005006__LJMP static int hlua_applet_http_getline(lua_State *L)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005007{
Willy Tarreau7e702d12021-04-28 17:59:21 +02005008 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005009
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005010 /* Initialise the string catenation. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02005011 luaL_buffinit(L, &luactx->b);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005012
Christopher Fauleta2097962019-07-15 16:25:33 +02005013 return MAY_LJMP(hlua_applet_http_getline_yield(L, 0, 0));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005014}
5015
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005016/* If expected data not yet available, it returns a yield. This function
5017 * consumes the data in the buffer. It returns a string containing the
5018 * data. This string can be empty.
5019 */
Christopher Fauleta2097962019-07-15 16:25:33 +02005020__LJMP static int hlua_applet_http_recv_yield(lua_State *L, int status, lua_KContext ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005021{
Willy Tarreau7e702d12021-04-28 17:59:21 +02005022 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Christopher Faulet908628c2022-03-25 16:43:49 +01005023 struct conn_stream *cs = luactx->appctx->owner;
5024 struct channel *req = cs_oc(cs);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005025 struct htx *htx;
5026 struct htx_blk *blk;
5027 size_t count;
5028 int len;
5029
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005030 htx = htx_from_buf(&req->buf);
5031 len = MAY_LJMP(luaL_checkinteger(L, 2));
5032 count = co_data(req);
Christopher Faulet29f17582019-05-23 11:03:26 +02005033 blk = htx_get_head_blk(htx);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005034 while (count && len && blk) {
5035 enum htx_blk_type type = htx_get_blk_type(blk);
5036 uint32_t sz = htx_get_blksz(blk);
5037 struct ist v;
5038 uint32_t vlen;
5039
5040 vlen = sz;
5041 if (len > 0 && vlen > len)
5042 vlen = len;
5043 if (vlen > count) {
5044 if (type != HTX_BLK_DATA)
5045 break;
5046 vlen = count;
5047 }
5048
5049 switch (type) {
5050 case HTX_BLK_UNUSED:
5051 break;
5052
5053 case HTX_BLK_DATA:
5054 v = htx_get_blk_value(htx, blk);
Willy Tarreau7e702d12021-04-28 17:59:21 +02005055 luaL_addlstring(&luactx->b, v.ptr, vlen);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005056 break;
5057
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005058 case HTX_BLK_TLR:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005059 case HTX_BLK_EOT:
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005060 len = 0;
5061 break;
5062
5063 default:
5064 break;
5065 }
5066
Willy Tarreau84240042022-02-28 16:51:23 +01005067 c_rew(req, vlen);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005068 count -= vlen;
5069 if (len > 0)
5070 len -= vlen;
5071 if (sz == vlen)
5072 blk = htx_remove_blk(htx, blk);
5073 else {
5074 htx_cut_data_blk(htx, blk, vlen);
5075 break;
5076 }
5077 }
5078
Christopher Fauleteccb31c2021-04-02 14:24:56 +02005079 /* The message was fully consumed and no more data are expected
5080 * (EOM flag set).
5081 */
5082 if (htx_is_empty(htx) && (htx->flags & HTX_FL_EOM))
5083 len = 0;
5084
Christopher Faulet0ae79d02019-02-27 21:36:59 +01005085 htx_to_buf(htx, &req->buf);
5086
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005087 /* If we are no other data available, yield waiting for new data. */
5088 if (len) {
5089 if (len > 0) {
5090 lua_pushinteger(L, len);
5091 lua_replace(L, 2);
5092 }
Christopher Fauleta0bdec32022-04-04 07:51:21 +02005093 cs_cant_get(cs);
Willy Tarreau9635e032018-10-16 17:52:55 +02005094 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_recv_yield, TICK_ETERNITY, 0));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005095 }
5096
5097 /* return the result. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02005098 luaL_pushresult(&luactx->b);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005099 return 1;
5100}
5101
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08005102/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005103__LJMP static int hlua_applet_http_recv(lua_State *L)
5104{
Willy Tarreau7e702d12021-04-28 17:59:21 +02005105 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005106 int len = -1;
5107
5108 /* Check arguments. */
5109 if (lua_gettop(L) > 2)
5110 WILL_LJMP(luaL_error(L, "The 'recv' function requires between 1 and 2 arguments."));
5111 if (lua_gettop(L) >= 2) {
5112 len = MAY_LJMP(luaL_checkinteger(L, 2));
5113 lua_pop(L, 1);
5114 }
5115
Christopher Fauleta2097962019-07-15 16:25:33 +02005116 lua_pushinteger(L, len);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005117
Christopher Fauleta2097962019-07-15 16:25:33 +02005118 /* Initialise the string catenation. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02005119 luaL_buffinit(L, &luactx->b);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005120
Christopher Fauleta2097962019-07-15 16:25:33 +02005121 return MAY_LJMP(hlua_applet_http_recv_yield(L, 0, 0));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005122}
5123
5124/* Append data in the output side of the buffer. This data is immediately
5125 * sent. The function returns the amount of data written. If the buffer
5126 * cannot contain the data, the function yields. The function returns -1
5127 * if the channel is closed.
5128 */
Christopher Fauleta2097962019-07-15 16:25:33 +02005129__LJMP static int hlua_applet_http_send_yield(lua_State *L, int status, lua_KContext ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005130{
Willy Tarreau7e702d12021-04-28 17:59:21 +02005131 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Christopher Faulet908628c2022-03-25 16:43:49 +01005132 struct conn_stream *cs = luactx->appctx->owner;
5133 struct channel *res = cs_ic(cs);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005134 struct htx *htx = htx_from_buf(&res->buf);
5135 const char *data;
5136 size_t len;
5137 int l = MAY_LJMP(luaL_checkinteger(L, 3));
5138 int max;
5139
Christopher Faulet9060fc02019-07-03 11:39:30 +02005140 max = htx_get_max_blksz(htx, channel_htx_recv_max(res, htx));
Christopher Faulet4b0e9b22019-01-09 12:16:58 +01005141 if (!max)
5142 goto snd_yield;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005143
5144 data = MAY_LJMP(luaL_checklstring(L, 2, &len));
5145
5146 /* Get the max amount of data which can write as input in the channel. */
5147 if (max > (len - l))
5148 max = len - l;
5149
5150 /* Copy data. */
Willy Tarreau0a7ef022019-05-28 10:30:11 +02005151 max = htx_add_data(htx, ist2(data + l, max));
Christopher Fauletf6cce3f2019-02-27 21:20:09 +01005152 channel_add_input(res, max);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005153
5154 /* update counters. */
5155 l += max;
5156 lua_pop(L, 1);
5157 lua_pushinteger(L, l);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005158
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005159 /* If some data is not send, declares the situation to the
5160 * applet, and returns a yield.
5161 */
5162 if (l < len) {
Christopher Faulet4b0e9b22019-01-09 12:16:58 +01005163 snd_yield:
Christopher Faulet0ae79d02019-02-27 21:36:59 +01005164 htx_to_buf(htx, &res->buf);
Christopher Fauleta0bdec32022-04-04 07:51:21 +02005165 cs_rx_room_blk(cs);
Willy Tarreau9635e032018-10-16 17:52:55 +02005166 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_send_yield, TICK_ETERNITY, 0));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005167 }
5168
Christopher Fauleta2097962019-07-15 16:25:33 +02005169 htx_to_buf(htx, &res->buf);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005170 return 1;
5171}
5172
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05005173/* Just a wrapper of "hlua_applet_send_yield". This wrapper permits
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005174 * yield the LUA process, and resume it without checking the
5175 * input arguments.
5176 */
5177__LJMP static int hlua_applet_http_send(lua_State *L)
5178{
Willy Tarreau7e702d12021-04-28 17:59:21 +02005179 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005180
5181 /* We want to send some data. Headers must be sent. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02005182 if (!(luactx->appctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT)) {
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005183 hlua_pusherror(L, "Lua: 'send' you must call start_response() before sending data.");
5184 WILL_LJMP(lua_error(L));
5185 }
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005186
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05005187 /* This integer is used for followinf the amount of data sent. */
Christopher Fauleta2097962019-07-15 16:25:33 +02005188 lua_pushinteger(L, 0);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005189
Christopher Fauleta2097962019-07-15 16:25:33 +02005190 return MAY_LJMP(hlua_applet_http_send_yield(L, 0, 0));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005191}
5192
5193__LJMP static int hlua_applet_http_addheader(lua_State *L)
5194{
5195 const char *name;
5196 int ret;
5197
5198 MAY_LJMP(hlua_checkapplet_http(L, 1));
5199 name = MAY_LJMP(luaL_checkstring(L, 2));
5200 MAY_LJMP(luaL_checkstring(L, 3));
5201
5202 /* Push in the stack the "response" entry. */
5203 ret = lua_getfield(L, 1, "response");
5204 if (ret != LUA_TTABLE) {
5205 hlua_pusherror(L, "Lua: 'add_header' internal error: AppletHTTP['response'] "
5206 "is expected as an array. %s found", lua_typename(L, ret));
5207 WILL_LJMP(lua_error(L));
5208 }
5209
5210 /* check if the header is already registered if it is not
5211 * the case, register it.
5212 */
5213 ret = lua_getfield(L, -1, name);
5214 if (ret == LUA_TNIL) {
5215
5216 /* Entry not found. */
5217 lua_pop(L, 1); /* remove the nil. The "response" table is the top of the stack. */
5218
5219 /* Insert the new header name in the array in the top of the stack.
5220 * It left the new array in the top of the stack.
5221 */
5222 lua_newtable(L);
5223 lua_pushvalue(L, 2);
5224 lua_pushvalue(L, -2);
5225 lua_settable(L, -4);
5226
5227 } else if (ret != LUA_TTABLE) {
5228
5229 /* corruption error. */
5230 hlua_pusherror(L, "Lua: 'add_header' internal error: AppletHTTP['response']['%s'] "
5231 "is expected as an array. %s found", name, lua_typename(L, ret));
5232 WILL_LJMP(lua_error(L));
5233 }
5234
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07005235 /* Now the top of thestack is an array of values. We push
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005236 * the header value as new entry.
5237 */
5238 lua_pushvalue(L, 3);
5239 ret = lua_rawlen(L, -2);
5240 lua_rawseti(L, -2, ret + 1);
5241 lua_pushboolean(L, 1);
5242 return 1;
5243}
5244
5245__LJMP static int hlua_applet_http_status(lua_State *L)
5246{
Willy Tarreau7e702d12021-04-28 17:59:21 +02005247 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005248 int status = MAY_LJMP(luaL_checkinteger(L, 2));
Robin H. Johnson52f5db22017-01-01 13:10:52 -08005249 const char *reason = MAY_LJMP(luaL_optlstring(L, 3, NULL, NULL));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005250
5251 if (status < 100 || status > 599) {
5252 lua_pushboolean(L, 0);
5253 return 1;
5254 }
5255
Willy Tarreau7e702d12021-04-28 17:59:21 +02005256 luactx->appctx->ctx.hlua_apphttp.status = status;
5257 luactx->appctx->ctx.hlua_apphttp.reason = reason;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005258 lua_pushboolean(L, 1);
5259 return 1;
5260}
5261
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005262
Christopher Fauleta2097962019-07-15 16:25:33 +02005263__LJMP static int hlua_applet_http_send_response(lua_State *L)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005264{
Willy Tarreau7e702d12021-04-28 17:59:21 +02005265 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Christopher Faulet908628c2022-03-25 16:43:49 +01005266 struct conn_stream *cs = luactx->appctx->owner;
5267 struct channel *res = cs_ic(cs);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005268 struct htx *htx;
5269 struct htx_sl *sl;
5270 struct h1m h1m;
5271 const char *status, *reason;
5272 const char *name, *value;
5273 size_t nlen, vlen;
5274 unsigned int flags;
5275
5276 /* Send the message at once. */
5277 htx = htx_from_buf(&res->buf);
5278 h1m_init_res(&h1m);
5279
5280 /* Use the same http version than the request. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02005281 status = ultoa_r(luactx->appctx->ctx.hlua_apphttp.status, trash.area, trash.size);
5282 reason = luactx->appctx->ctx.hlua_apphttp.reason;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005283 if (reason == NULL)
Willy Tarreau7e702d12021-04-28 17:59:21 +02005284 reason = http_get_reason(luactx->appctx->ctx.hlua_apphttp.status);
5285 if (luactx->appctx->ctx.hlua_apphttp.flags & APPLET_HTTP11) {
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005286 flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11);
5287 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"), ist(status), ist(reason));
5288 }
5289 else {
5290 flags = HTX_SL_F_IS_RESP;
5291 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.0"), ist(status), ist(reason));
5292 }
5293 if (!sl) {
5294 hlua_pusherror(L, "Lua applet http '%s': Failed to create response.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005295 luactx->appctx->rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005296 WILL_LJMP(lua_error(L));
5297 }
Willy Tarreau7e702d12021-04-28 17:59:21 +02005298 sl->info.res.status = luactx->appctx->ctx.hlua_apphttp.status;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005299
5300 /* Get the array associated to the field "response" in the object AppletHTTP. */
5301 lua_pushvalue(L, 0);
5302 if (lua_getfield(L, 1, "response") != LUA_TTABLE) {
5303 hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response'] missing.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005304 luactx->appctx->rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005305 WILL_LJMP(lua_error(L));
5306 }
5307
5308 /* Browse the list of headers. */
5309 lua_pushnil(L);
5310 while(lua_next(L, -2) != 0) {
5311 /* We expect a string as -2. */
5312 if (lua_type(L, -2) != LUA_TSTRING) {
5313 hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response'][] element must be a string. got %s.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005314 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005315 lua_typename(L, lua_type(L, -2)));
5316 WILL_LJMP(lua_error(L));
5317 }
5318 name = lua_tolstring(L, -2, &nlen);
5319
5320 /* We expect an array as -1. */
5321 if (lua_type(L, -1) != LUA_TTABLE) {
5322 hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response']['%s'] element must be an table. got %s.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005323 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005324 name,
5325 lua_typename(L, lua_type(L, -1)));
5326 WILL_LJMP(lua_error(L));
5327 }
5328
5329 /* Browse the table who is on the top of the stack. */
5330 lua_pushnil(L);
5331 while(lua_next(L, -2) != 0) {
5332 int id;
5333
5334 /* We expect a number as -2. */
5335 if (lua_type(L, -2) != LUA_TNUMBER) {
5336 hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response']['%s'][] element must be a number. got %s.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005337 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005338 name,
5339 lua_typename(L, lua_type(L, -2)));
5340 WILL_LJMP(lua_error(L));
5341 }
5342 id = lua_tointeger(L, -2);
5343
5344 /* We expect a string as -2. */
5345 if (lua_type(L, -1) != LUA_TSTRING) {
5346 hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response']['%s'][%d] element must be a string. got %s.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005347 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005348 name, id,
5349 lua_typename(L, lua_type(L, -1)));
5350 WILL_LJMP(lua_error(L));
5351 }
5352 value = lua_tolstring(L, -1, &vlen);
5353
5354 /* Simple Protocol checks. */
Christopher Faulet545fbba2021-09-28 09:36:25 +02005355 if (isteqi(ist2(name, nlen), ist("transfer-encoding"))) {
5356 int ret;
5357
5358 ret = h1_parse_xfer_enc_header(&h1m, ist2(value, vlen));
5359 if (ret < 0) {
5360 hlua_pusherror(L, "Lua applet http '%s': Invalid '%s' header.\n",
5361 luactx->appctx->rule->arg.hlua_rule->fcn->name,
5362 name);
5363 WILL_LJMP(lua_error(L));
5364 }
5365 else if (ret == 0)
5366 goto next; /* Skip it */
5367 }
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005368 else if (isteqi(ist2(name, nlen), ist("content-length"))) {
5369 struct ist v = ist2(value, vlen);
5370 int ret;
5371
5372 ret = h1_parse_cont_len_header(&h1m, &v);
5373 if (ret < 0) {
5374 hlua_pusherror(L, "Lua applet http '%s': Invalid '%s' header.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005375 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005376 name);
5377 WILL_LJMP(lua_error(L));
5378 }
5379 else if (ret == 0)
5380 goto next; /* Skip it */
5381 }
5382
5383 /* Add a new header */
5384 if (!htx_add_header(htx, ist2(name, nlen), ist2(value, vlen))) {
5385 hlua_pusherror(L, "Lua applet http '%s': Failed to add header '%s' in the response.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005386 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005387 name);
5388 WILL_LJMP(lua_error(L));
5389 }
5390 next:
5391 /* Remove the array from the stack, and get next element with a remaining string. */
5392 lua_pop(L, 1);
5393 }
5394
5395 /* Remove the array from the stack, and get next element with a remaining string. */
5396 lua_pop(L, 1);
5397 }
5398
5399 if (h1m.flags & H1_MF_CHNK)
5400 h1m.flags &= ~H1_MF_CLEN;
5401 if (h1m.flags & (H1_MF_CLEN|H1_MF_CHNK))
5402 h1m.flags |= H1_MF_XFER_LEN;
5403
5404 /* Uset HTX start-line flags */
5405 if (h1m.flags & H1_MF_XFER_ENC)
5406 flags |= HTX_SL_F_XFER_ENC;
5407 if (h1m.flags & H1_MF_XFER_LEN) {
5408 flags |= HTX_SL_F_XFER_LEN;
5409 if (h1m.flags & H1_MF_CHNK)
5410 flags |= HTX_SL_F_CHNK;
5411 else if (h1m.flags & H1_MF_CLEN)
5412 flags |= HTX_SL_F_CLEN;
5413 if (h1m.body_len == 0)
5414 flags |= HTX_SL_F_BODYLESS;
5415 }
5416 sl->flags |= flags;
5417
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07005418 /* If we don't have a content-length set, and the HTTP version is 1.1
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005419 * and the status code implies the presence of a message body, we must
5420 * announce a transfer encoding chunked. This is required by haproxy
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05005421 * for the keepalive compliance. If the applet announces a transfer-encoding
5422 * chunked itself, don't do anything.
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005423 */
5424 if ((flags & (HTX_SL_F_VER_11|HTX_SL_F_XFER_LEN)) == HTX_SL_F_VER_11 &&
Willy Tarreau7e702d12021-04-28 17:59:21 +02005425 luactx->appctx->ctx.hlua_apphttp.status >= 200 &&
5426 luactx->appctx->ctx.hlua_apphttp.status != 204 &&
5427 luactx->appctx->ctx.hlua_apphttp.status != 304) {
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005428 /* Add a new header */
5429 sl->flags |= (HTX_SL_F_XFER_ENC|H1_MF_CHNK|H1_MF_XFER_LEN);
5430 if (!htx_add_header(htx, ist("transfer-encoding"), ist("chunked"))) {
5431 hlua_pusherror(L, "Lua applet http '%s': Failed to add header 'transfer-encoding' in the response.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005432 luactx->appctx->rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005433 WILL_LJMP(lua_error(L));
5434 }
5435 }
5436
5437 /* Finalize headers. */
5438 if (!htx_add_endof(htx, HTX_BLK_EOH)) {
5439 hlua_pusherror(L, "Lua applet http '%s': Failed create the response.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005440 luactx->appctx->rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005441 WILL_LJMP(lua_error(L));
5442 }
5443
5444 if (htx_used_space(htx) > b_size(&res->buf) - global.tune.maxrewrite) {
5445 b_reset(&res->buf);
5446 hlua_pusherror(L, "Lua: 'start_response': response header block too big");
5447 WILL_LJMP(lua_error(L));
5448 }
5449
5450 htx_to_buf(htx, &res->buf);
Christopher Fauletf6cce3f2019-02-27 21:20:09 +01005451 channel_add_input(res, htx->data);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005452
5453 /* Headers sent, set the flag. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02005454 luactx->appctx->ctx.hlua_apphttp.flags |= APPLET_HDR_SENT;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005455 return 0;
5456
5457}
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005458/* We will build the status line and the headers of the HTTP response.
5459 * We will try send at once if its not possible, we give back the hand
5460 * waiting for more room.
5461 */
Christopher Fauleta2097962019-07-15 16:25:33 +02005462__LJMP static int hlua_applet_http_start_response_yield(lua_State *L, int status, lua_KContext ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005463{
Willy Tarreau7e702d12021-04-28 17:59:21 +02005464 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Christopher Faulet908628c2022-03-25 16:43:49 +01005465 struct conn_stream *cs = luactx->appctx->owner;
5466 struct channel *res = cs_ic(cs);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005467
5468 if (co_data(res)) {
Christopher Fauleta0bdec32022-04-04 07:51:21 +02005469 cs_rx_room_blk(cs);
Christopher Fauleta2097962019-07-15 16:25:33 +02005470 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_start_response_yield, TICK_ETERNITY, 0));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005471 }
Christopher Fauleta2097962019-07-15 16:25:33 +02005472 return MAY_LJMP(hlua_applet_http_send_response(L));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005473}
5474
5475
Christopher Fauleta2097962019-07-15 16:25:33 +02005476__LJMP static int hlua_applet_http_start_response(lua_State *L)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005477{
Christopher Fauleta2097962019-07-15 16:25:33 +02005478 return MAY_LJMP(hlua_applet_http_start_response_yield(L, 0, 0));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005479}
5480
Christopher Fauleta2097962019-07-15 16:25:33 +02005481/*
5482 *
5483 *
5484 * Class HTTP
5485 *
5486 *
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005487 */
Christopher Fauleta2097962019-07-15 16:25:33 +02005488
5489/* Returns a struct hlua_txn if the stack entry "ud" is
5490 * a class stream, otherwise it throws an error.
5491 */
5492__LJMP static struct hlua_txn *hlua_checkhttp(lua_State *L, int ud)
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005493{
Christopher Fauleta2097962019-07-15 16:25:33 +02005494 return MAY_LJMP(hlua_checkudata(L, ud, class_http_ref));
5495}
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005496
Christopher Fauleta2097962019-07-15 16:25:33 +02005497/* This function creates and push in the stack a HTTP object
5498 * according with a current TXN.
5499 */
5500static int hlua_http_new(lua_State *L, struct hlua_txn *txn)
5501{
5502 struct hlua_txn *htxn;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005503
Christopher Fauleta2097962019-07-15 16:25:33 +02005504 /* Check stack size. */
5505 if (!lua_checkstack(L, 3))
5506 return 0;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005507
Christopher Fauleta2097962019-07-15 16:25:33 +02005508 /* Create the object: obj[0] = userdata.
5509 * Note that the base of the Converters object is the
5510 * same than the TXN object.
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005511 */
Christopher Fauleta2097962019-07-15 16:25:33 +02005512 lua_newtable(L);
5513 htxn = lua_newuserdata(L, sizeof(*htxn));
5514 lua_rawseti(L, -2, 0);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005515
5516 htxn->s = txn->s;
5517 htxn->p = txn->p;
Christopher Faulet256b69a2019-05-23 11:14:21 +02005518 htxn->dir = txn->dir;
5519 htxn->flags = txn->flags;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005520
5521 /* Pop a class stream metatable and affect it to the table. */
5522 lua_rawgeti(L, LUA_REGISTRYINDEX, class_http_ref);
5523 lua_setmetatable(L, -2);
5524
5525 return 1;
5526}
5527
Christopher Fauletdf97ac42020-02-26 16:57:19 +01005528/* This function creates and returns an array containing the status-line
5529 * elements. This function does not fails.
5530 */
5531__LJMP static int hlua_http_get_stline(lua_State *L, struct htx_sl *sl)
5532{
5533 /* Create the table. */
5534 lua_newtable(L);
5535
5536 if (sl->flags & HTX_SL_F_IS_RESP) {
5537 lua_pushstring(L, "version");
5538 lua_pushlstring(L, HTX_SL_RES_VPTR(sl), HTX_SL_RES_VLEN(sl));
5539 lua_settable(L, -3);
5540 lua_pushstring(L, "code");
5541 lua_pushlstring(L, HTX_SL_RES_CPTR(sl), HTX_SL_RES_CLEN(sl));
5542 lua_settable(L, -3);
5543 lua_pushstring(L, "reason");
5544 lua_pushlstring(L, HTX_SL_RES_RPTR(sl), HTX_SL_RES_RLEN(sl));
5545 lua_settable(L, -3);
5546 }
5547 else {
5548 lua_pushstring(L, "method");
5549 lua_pushlstring(L, HTX_SL_REQ_MPTR(sl), HTX_SL_REQ_MLEN(sl));
5550 lua_settable(L, -3);
5551 lua_pushstring(L, "uri");
5552 lua_pushlstring(L, HTX_SL_REQ_UPTR(sl), HTX_SL_REQ_ULEN(sl));
5553 lua_settable(L, -3);
5554 lua_pushstring(L, "version");
5555 lua_pushlstring(L, HTX_SL_REQ_VPTR(sl), HTX_SL_REQ_VLEN(sl));
5556 lua_settable(L, -3);
5557 }
5558 return 1;
5559}
5560
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005561/* This function creates ans returns an array of HTTP headers.
5562 * This function does not fails. It is used as wrapper with the
5563 * 2 following functions.
5564 */
Christopher Faulet9d1332b2020-02-24 16:46:16 +01005565__LJMP static int hlua_http_get_headers(lua_State *L, struct http_msg *msg)
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005566{
Christopher Fauleta2097962019-07-15 16:25:33 +02005567 struct htx *htx;
5568 int32_t pos;
5569
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005570 /* Create the table. */
5571 lua_newtable(L);
5572
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005573
Christopher Fauleta2097962019-07-15 16:25:33 +02005574 htx = htxbuf(&msg->chn->buf);
5575 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
5576 struct htx_blk *blk = htx_get_blk(htx, pos);
5577 enum htx_blk_type type = htx_get_blk_type(blk);
5578 struct ist n, v;
5579 int len;
Christopher Faulet724a12c2018-12-13 22:12:15 +01005580
Christopher Fauleta2097962019-07-15 16:25:33 +02005581 if (type == HTX_BLK_HDR) {
5582 n = htx_get_blk_name(htx,blk);
5583 v = htx_get_blk_value(htx, blk);
Christopher Faulet724a12c2018-12-13 22:12:15 +01005584 }
Christopher Fauleta2097962019-07-15 16:25:33 +02005585 else if (type == HTX_BLK_EOH)
5586 break;
5587 else
5588 continue;
Christopher Faulet724a12c2018-12-13 22:12:15 +01005589
Christopher Fauleta2097962019-07-15 16:25:33 +02005590 /* Check for existing entry:
5591 * assume that the table is on the top of the stack, and
5592 * push the key in the stack, the function lua_gettable()
5593 * perform the lookup.
5594 */
5595 lua_pushlstring(L, n.ptr, n.len);
5596 lua_gettable(L, -2);
Christopher Faulet724a12c2018-12-13 22:12:15 +01005597
Christopher Fauleta2097962019-07-15 16:25:33 +02005598 switch (lua_type(L, -1)) {
5599 case LUA_TNIL:
5600 /* Table not found, create it. */
5601 lua_pop(L, 1); /* remove the nil value. */
5602 lua_pushlstring(L, n.ptr, n.len); /* push the header name as key. */
5603 lua_newtable(L); /* create and push empty table. */
5604 lua_pushlstring(L, v.ptr, v.len); /* push header value. */
5605 lua_rawseti(L, -2, 0); /* index header value (pop it). */
5606 lua_rawset(L, -3); /* index new table with header name (pop the values). */
Christopher Faulet724a12c2018-12-13 22:12:15 +01005607 break;
Christopher Faulet724a12c2018-12-13 22:12:15 +01005608
Christopher Fauleta2097962019-07-15 16:25:33 +02005609 case LUA_TTABLE:
5610 /* Entry found: push the value in the table. */
5611 len = lua_rawlen(L, -1);
5612 lua_pushlstring(L, v.ptr, v.len); /* push header value. */
5613 lua_rawseti(L, -2, len+1); /* index header value (pop it). */
5614 lua_pop(L, 1); /* remove the table (it is stored in the main table). */
5615 break;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005616
Christopher Fauleta2097962019-07-15 16:25:33 +02005617 default:
5618 /* Other cases are errors. */
5619 hlua_pusherror(L, "internal error during the parsing of headers.");
5620 WILL_LJMP(lua_error(L));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005621 }
5622 }
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005623 return 1;
5624}
5625
5626__LJMP static int hlua_http_req_get_headers(lua_State *L)
5627{
5628 struct hlua_txn *htxn;
5629
5630 MAY_LJMP(check_args(L, 1, "req_get_headers"));
5631 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5632
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005633 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005634 WILL_LJMP(lua_error(L));
5635
Christopher Faulet9d1332b2020-02-24 16:46:16 +01005636 return hlua_http_get_headers(L, &htxn->s->txn->req);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005637}
5638
5639__LJMP static int hlua_http_res_get_headers(lua_State *L)
5640{
5641 struct hlua_txn *htxn;
5642
5643 MAY_LJMP(check_args(L, 1, "res_get_headers"));
5644 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5645
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005646 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005647 WILL_LJMP(lua_error(L));
5648
Christopher Faulet9d1332b2020-02-24 16:46:16 +01005649 return hlua_http_get_headers(L, &htxn->s->txn->rsp);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005650}
5651
5652/* This function replace full header, or just a value in
5653 * the request or in the response. It is a wrapper fir the
5654 * 4 following functions.
5655 */
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005656__LJMP static inline int hlua_http_rep_hdr(lua_State *L, struct http_msg *msg, int full)
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005657{
5658 size_t name_len;
5659 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
5660 const char *reg = MAY_LJMP(luaL_checkstring(L, 3));
5661 const char *value = MAY_LJMP(luaL_checkstring(L, 4));
Christopher Fauleta2097962019-07-15 16:25:33 +02005662 struct htx *htx;
Dragan Dosen26743032019-04-30 15:54:36 +02005663 struct my_regex *re;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005664
Dragan Dosen26743032019-04-30 15:54:36 +02005665 if (!(re = regex_comp(reg, 1, 1, NULL)))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005666 WILL_LJMP(luaL_argerror(L, 3, "invalid regex"));
5667
Christopher Fauleta2097962019-07-15 16:25:33 +02005668 htx = htxbuf(&msg->chn->buf);
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005669 http_replace_hdrs(chn_strm(msg->chn), htx, ist2(name, name_len), value, re, full);
Dragan Dosen26743032019-04-30 15:54:36 +02005670 regex_free(re);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005671 return 0;
5672}
5673
5674__LJMP static int hlua_http_req_rep_hdr(lua_State *L)
5675{
5676 struct hlua_txn *htxn;
5677
5678 MAY_LJMP(check_args(L, 4, "req_rep_hdr"));
5679 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5680
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005681 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005682 WILL_LJMP(lua_error(L));
5683
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005684 return MAY_LJMP(hlua_http_rep_hdr(L, &htxn->s->txn->req, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005685}
5686
5687__LJMP static int hlua_http_res_rep_hdr(lua_State *L)
5688{
5689 struct hlua_txn *htxn;
5690
5691 MAY_LJMP(check_args(L, 4, "res_rep_hdr"));
5692 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5693
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005694 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005695 WILL_LJMP(lua_error(L));
5696
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005697 return MAY_LJMP(hlua_http_rep_hdr(L, &htxn->s->txn->rsp, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005698}
5699
5700__LJMP static int hlua_http_req_rep_val(lua_State *L)
5701{
5702 struct hlua_txn *htxn;
5703
5704 MAY_LJMP(check_args(L, 4, "req_rep_hdr"));
5705 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5706
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005707 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005708 WILL_LJMP(lua_error(L));
5709
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005710 return MAY_LJMP(hlua_http_rep_hdr(L, &htxn->s->txn->req, 0));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005711}
5712
5713__LJMP static int hlua_http_res_rep_val(lua_State *L)
5714{
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005715 struct hlua_txn *htxn;
5716
5717 MAY_LJMP(check_args(L, 4, "res_rep_val"));
5718 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5719
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005720 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005721 WILL_LJMP(lua_error(L));
5722
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005723 return MAY_LJMP(hlua_http_rep_hdr(L, &htxn->s->txn->rsp, 0));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005724}
5725
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08005726/* This function deletes all the occurrences of an header.
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005727 * It is a wrapper for the 2 following functions.
5728 */
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005729__LJMP static inline int hlua_http_del_hdr(lua_State *L, struct http_msg *msg)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005730{
5731 size_t len;
5732 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Christopher Fauleta2097962019-07-15 16:25:33 +02005733 struct htx *htx = htxbuf(&msg->chn->buf);
5734 struct http_hdr_ctx ctx;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005735
Christopher Fauleta2097962019-07-15 16:25:33 +02005736 ctx.blk = NULL;
5737 while (http_find_header(htx, ist2(name, len), &ctx, 1))
5738 http_remove_header(htx, &ctx);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005739 return 0;
5740}
5741
5742__LJMP static int hlua_http_req_del_hdr(lua_State *L)
5743{
5744 struct hlua_txn *htxn;
5745
5746 MAY_LJMP(check_args(L, 2, "req_del_hdr"));
5747 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5748
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005749 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005750 WILL_LJMP(lua_error(L));
5751
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005752 return hlua_http_del_hdr(L, &htxn->s->txn->req);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005753}
5754
5755__LJMP static int hlua_http_res_del_hdr(lua_State *L)
5756{
5757 struct hlua_txn *htxn;
5758
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005759 MAY_LJMP(check_args(L, 2, "res_del_hdr"));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005760 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5761
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005762 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005763 WILL_LJMP(lua_error(L));
5764
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005765 return hlua_http_del_hdr(L, &htxn->s->txn->rsp);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005766}
5767
5768/* This function adds an header. It is a wrapper used by
5769 * the 2 following functions.
5770 */
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005771__LJMP static inline int hlua_http_add_hdr(lua_State *L, struct http_msg *msg)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005772{
5773 size_t name_len;
5774 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
5775 size_t value_len;
5776 const char *value = MAY_LJMP(luaL_checklstring(L, 3, &value_len));
Christopher Fauleta2097962019-07-15 16:25:33 +02005777 struct htx *htx = htxbuf(&msg->chn->buf);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005778
Christopher Fauleta2097962019-07-15 16:25:33 +02005779 lua_pushboolean(L, http_add_header(htx, ist2(name, name_len),
5780 ist2(value, value_len)));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005781 return 0;
5782}
5783
Christopher Fauletdf97ac42020-02-26 16:57:19 +01005784__LJMP static int hlua_http_req_add_hdr(lua_State *L)
5785{
5786 struct hlua_txn *htxn;
5787
5788 MAY_LJMP(check_args(L, 3, "req_add_hdr"));
5789 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5790
5791 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
5792 WILL_LJMP(lua_error(L));
5793
5794 return hlua_http_add_hdr(L, &htxn->s->txn->req);
5795}
5796
5797__LJMP static int hlua_http_res_add_hdr(lua_State *L)
5798{
5799 struct hlua_txn *htxn;
5800
5801 MAY_LJMP(check_args(L, 3, "res_add_hdr"));
5802 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5803
5804 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
5805 WILL_LJMP(lua_error(L));
5806
5807 return hlua_http_add_hdr(L, &htxn->s->txn->rsp);
5808}
5809
5810static int hlua_http_req_set_hdr(lua_State *L)
5811{
5812 struct hlua_txn *htxn;
5813
5814 MAY_LJMP(check_args(L, 3, "req_set_hdr"));
5815 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5816
5817 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
5818 WILL_LJMP(lua_error(L));
5819
5820 hlua_http_del_hdr(L, &htxn->s->txn->req);
5821 return hlua_http_add_hdr(L, &htxn->s->txn->req);
5822}
5823
5824static int hlua_http_res_set_hdr(lua_State *L)
5825{
5826 struct hlua_txn *htxn;
5827
5828 MAY_LJMP(check_args(L, 3, "res_set_hdr"));
5829 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5830
5831 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
5832 WILL_LJMP(lua_error(L));
5833
5834 hlua_http_del_hdr(L, &htxn->s->txn->rsp);
5835 return hlua_http_add_hdr(L, &htxn->s->txn->rsp);
5836}
5837
5838/* This function set the method. */
5839static int hlua_http_req_set_meth(lua_State *L)
5840{
5841 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5842 size_t name_len;
5843 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
5844
5845 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
5846 WILL_LJMP(lua_error(L));
5847
5848 lua_pushboolean(L, http_req_replace_stline(0, name, name_len, htxn->p, htxn->s) != -1);
5849 return 1;
5850}
5851
5852/* This function set the method. */
5853static int hlua_http_req_set_path(lua_State *L)
5854{
5855 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5856 size_t name_len;
5857 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
5858
5859 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
5860 WILL_LJMP(lua_error(L));
5861
5862 lua_pushboolean(L, http_req_replace_stline(1, name, name_len, htxn->p, htxn->s) != -1);
5863 return 1;
5864}
5865
5866/* This function set the query-string. */
5867static int hlua_http_req_set_query(lua_State *L)
5868{
5869 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5870 size_t name_len;
5871 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
5872
5873 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
5874 WILL_LJMP(lua_error(L));
5875
5876 /* Check length. */
5877 if (name_len > trash.size - 1) {
5878 lua_pushboolean(L, 0);
5879 return 1;
5880 }
5881
5882 /* Add the mark question as prefix. */
5883 chunk_reset(&trash);
5884 trash.area[trash.data++] = '?';
5885 memcpy(trash.area + trash.data, name, name_len);
5886 trash.data += name_len;
5887
5888 lua_pushboolean(L,
5889 http_req_replace_stline(2, trash.area, trash.data, htxn->p, htxn->s) != -1);
5890 return 1;
5891}
5892
5893/* This function set the uri. */
5894static int hlua_http_req_set_uri(lua_State *L)
5895{
5896 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5897 size_t name_len;
5898 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
5899
5900 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
5901 WILL_LJMP(lua_error(L));
5902
5903 lua_pushboolean(L, http_req_replace_stline(3, name, name_len, htxn->p, htxn->s) != -1);
5904 return 1;
5905}
5906
5907/* This function set the response code & optionally reason. */
5908static int hlua_http_res_set_status(lua_State *L)
5909{
5910 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5911 unsigned int code = MAY_LJMP(luaL_checkinteger(L, 2));
5912 const char *str = MAY_LJMP(luaL_optlstring(L, 3, NULL, NULL));
5913 const struct ist reason = ist2(str, (str ? strlen(str) : 0));
5914
5915 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
5916 WILL_LJMP(lua_error(L));
5917
5918 http_res_set_status(code, reason, htxn->s);
5919 return 0;
5920}
5921
5922/*
5923 *
5924 *
5925 * Class HTTPMessage
5926 *
5927 *
5928 */
5929
5930/* Returns a struct http_msg if the stack entry "ud" is a class HTTPMessage,
5931 * otherwise it throws an error.
5932 */
5933__LJMP static struct http_msg *hlua_checkhttpmsg(lua_State *L, int ud)
5934{
5935 return MAY_LJMP(hlua_checkudata(L, ud, class_http_msg_ref));
5936}
5937
5938/* Creates and pushes on the stack a HTTP object according with a current TXN.
5939 */
Christopher Faulet78c35472020-02-26 17:14:08 +01005940static int hlua_http_msg_new(lua_State *L, struct http_msg *msg)
Christopher Fauletdf97ac42020-02-26 16:57:19 +01005941{
5942 /* Check stack size. */
5943 if (!lua_checkstack(L, 3))
5944 return 0;
5945
5946 lua_newtable(L);
5947 lua_pushlightuserdata(L, msg);
5948 lua_rawseti(L, -2, 0);
5949
5950 /* Create the "channel" field that contains the request channel object. */
5951 lua_pushstring(L, "channel");
5952 if (!hlua_channel_new(L, msg->chn))
5953 return 0;
5954 lua_rawset(L, -3);
5955
5956 /* Pop a class stream metatable and affect it to the table. */
5957 lua_rawgeti(L, LUA_REGISTRYINDEX, class_http_msg_ref);
5958 lua_setmetatable(L, -2);
5959
5960 return 1;
5961}
5962
5963/* Helper function returning a filter attached to the HTTP message at the
5964 * position <ud> in the stack, filling the current offset and length of the
Ilya Shipitsinff0f2782021-08-22 22:18:07 +05005965 * filter. If no filter is attached, NULL is returned and <offset> and <len> are
Christopher Fauletdf97ac42020-02-26 16:57:19 +01005966 * filled with output and input length respectively.
5967 */
5968static struct filter *hlua_http_msg_filter(lua_State *L, int ud, struct http_msg *msg, size_t *offset, size_t *len)
5969{
5970 struct channel *chn = msg->chn;
5971 struct htx *htx = htxbuf(&chn->buf);
5972 struct filter *filter = NULL;
5973
5974 *offset = co_data(msg->chn);
5975 *len = htx->data - co_data(msg->chn);
5976
5977 if (lua_getfield(L, ud, "__filter") == LUA_TLIGHTUSERDATA) {
5978 filter = lua_touserdata (L, -1);
5979 if (msg->msg_state >= HTTP_MSG_DATA) {
5980 struct hlua_flt_ctx *flt_ctx = filter->ctx;
5981
5982 *offset = flt_ctx->cur_off[CHN_IDX(chn)];
5983 *len = flt_ctx->cur_len[CHN_IDX(chn)];
5984 }
5985 }
5986
5987 lua_pop(L, 1);
5988 return filter;
5989}
5990
5991/* Returns true if the channel attached to the HTTP message is the response
5992 * channel.
5993 */
5994__LJMP static int hlua_http_msg_is_resp(lua_State *L)
5995{
5996 struct http_msg *msg;
5997
5998 MAY_LJMP(check_args(L, 1, "is_resp"));
5999 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6000
6001 lua_pushboolean(L, !!(msg->chn->flags & CF_ISRESP));
6002 return 1;
6003}
6004
6005/* Returns an array containing the elements status-line of the HTTP message. It relies
6006 * on hlua_http_get_stline().
6007 */
6008__LJMP static int hlua_http_msg_get_stline(lua_State *L)
6009{
6010 struct http_msg *msg;
6011 struct htx *htx;
6012 struct htx_sl *sl;
6013
6014 MAY_LJMP(check_args(L, 1, "get_stline"));
6015 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6016
6017 if (msg->msg_state > HTTP_MSG_BODY)
6018 WILL_LJMP(lua_error(L));
6019
6020 htx = htxbuf(&msg->chn->buf);
6021 sl = http_get_stline(htx);
6022 if (!sl)
6023 return 0;
6024 return hlua_http_get_stline(L, sl);
6025}
6026
6027/* Returns an array containing all headers of the HTTP message. it relies on
6028 * hlua_http_get_headers().
6029 */
6030__LJMP static int hlua_http_msg_get_headers(lua_State *L)
6031{
6032 struct http_msg *msg;
6033
6034 MAY_LJMP(check_args(L, 1, "get_headers"));
6035 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6036
6037 if (msg->msg_state > HTTP_MSG_BODY)
6038 WILL_LJMP(lua_error(L));
6039
6040 return hlua_http_get_headers(L, msg);
6041}
6042
6043/* Deletes all occurrences of an header in the HTTP message matching on its
6044 * name. It relies on hlua_http_del_hdr().
6045 */
6046__LJMP static int hlua_http_msg_del_hdr(lua_State *L)
6047{
6048 struct http_msg *msg;
6049
6050 MAY_LJMP(check_args(L, 2, "del_header"));
6051 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6052
6053 if (msg->msg_state > HTTP_MSG_BODY)
6054 WILL_LJMP(lua_error(L));
6055
6056 return hlua_http_del_hdr(L, msg);
6057}
6058
Ilya Shipitsinff0f2782021-08-22 22:18:07 +05006059/* Matches the full value line of all occurrences of an header in the HTTP
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006060 * message given its name against a regex and replaces it if it matches. It
6061 * relies on hlua_http_rep_hdr().
6062 */
6063__LJMP static int hlua_http_msg_rep_hdr(lua_State *L)
6064{
6065 struct http_msg *msg;
6066
6067 MAY_LJMP(check_args(L, 4, "rep_header"));
6068 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6069
6070 if (msg->msg_state > HTTP_MSG_BODY)
6071 WILL_LJMP(lua_error(L));
6072
6073 return hlua_http_rep_hdr(L, msg, 1);
6074}
6075
Ilya Shipitsinbd6b4be2021-10-15 16:18:21 +05006076/* Matches all comma-separated values of all occurrences of an header in the HTTP
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006077 * message given its name against a regex and replaces it if it matches. It
6078 * relies on hlua_http_rep_hdr().
6079 */
6080__LJMP static int hlua_http_msg_rep_val(lua_State *L)
6081{
6082 struct http_msg *msg;
6083
6084 MAY_LJMP(check_args(L, 4, "rep_value"));
6085 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6086
6087 if (msg->msg_state > HTTP_MSG_BODY)
6088 WILL_LJMP(lua_error(L));
6089
6090 return hlua_http_rep_hdr(L, msg, 0);
6091}
6092
6093/* Add an header in the HTTP message. It relies on hlua_http_add_hdr() */
6094__LJMP static int hlua_http_msg_add_hdr(lua_State *L)
6095{
6096 struct http_msg *msg;
6097
6098 MAY_LJMP(check_args(L, 3, "add_header"));
6099 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6100
6101 if (msg->msg_state > HTTP_MSG_BODY)
6102 WILL_LJMP(lua_error(L));
6103
6104 return hlua_http_add_hdr(L, msg);
6105}
6106
6107/* Add an header in the HTTP message removing existing headers with the same
6108 * name. It relies on hlua_http_del_hdr() and hlua_http_add_hdr().
6109 */
6110__LJMP static int hlua_http_msg_set_hdr(lua_State *L)
6111{
6112 struct http_msg *msg;
6113
6114 MAY_LJMP(check_args(L, 3, "set_header"));
6115 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6116
6117 if (msg->msg_state > HTTP_MSG_BODY)
6118 WILL_LJMP(lua_error(L));
6119
6120 hlua_http_del_hdr(L, msg);
6121 return hlua_http_add_hdr(L, msg);
6122}
6123
6124/* Rewrites the request method. It relies on http_req_replace_stline(). */
6125__LJMP static int hlua_http_msg_set_meth(lua_State *L)
6126{
6127 struct stream *s;
6128 struct http_msg *msg;
6129 const char *name;
6130 size_t name_len;
6131
6132 MAY_LJMP(check_args(L, 2, "set_method"));
6133 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6134 name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
6135
6136 if ((msg->chn->flags & CF_ISRESP) || msg->msg_state > HTTP_MSG_BODY)
6137 WILL_LJMP(lua_error(L));
6138
6139 s = chn_strm(msg->chn);
6140 lua_pushboolean(L, http_req_replace_stline(0, name, name_len, s->be, s) != -1);
6141 return 1;
6142}
6143
6144/* Rewrites the request path. It relies on http_req_replace_stline(). */
6145__LJMP static int hlua_http_msg_set_path(lua_State *L)
6146{
6147 struct stream *s;
6148 struct http_msg *msg;
6149 const char *name;
6150 size_t name_len;
6151
6152 MAY_LJMP(check_args(L, 2, "set_path"));
6153 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6154 name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
6155
6156 if ((msg->chn->flags & CF_ISRESP) || msg->msg_state > HTTP_MSG_BODY)
6157 WILL_LJMP(lua_error(L));
6158
6159 s = chn_strm(msg->chn);
6160 lua_pushboolean(L, http_req_replace_stline(1, name, name_len, s->be, s) != -1);
6161 return 1;
6162}
6163
6164/* Rewrites the request query-string. It relies on http_req_replace_stline(). */
6165__LJMP static int hlua_http_msg_set_query(lua_State *L)
6166{
6167 struct stream *s;
6168 struct http_msg *msg;
6169 const char *name;
6170 size_t name_len;
6171
6172 MAY_LJMP(check_args(L, 2, "set_query"));
6173 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6174 name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
6175
6176 if ((msg->chn->flags & CF_ISRESP) || msg->msg_state > HTTP_MSG_BODY)
6177 WILL_LJMP(lua_error(L));
6178
6179 /* Check length. */
6180 if (name_len > trash.size - 1) {
6181 lua_pushboolean(L, 0);
6182 return 1;
6183 }
6184
6185 /* Add the mark question as prefix. */
6186 chunk_reset(&trash);
6187 trash.area[trash.data++] = '?';
6188 memcpy(trash.area + trash.data, name, name_len);
6189 trash.data += name_len;
6190
6191 s = chn_strm(msg->chn);
6192 lua_pushboolean(L, http_req_replace_stline(2, trash.area, trash.data, s->be, s) != -1);
6193 return 1;
6194}
6195
6196/* Rewrites the request URI. It relies on http_req_replace_stline(). */
6197__LJMP static int hlua_http_msg_set_uri(lua_State *L)
6198{
6199 struct stream *s;
6200 struct http_msg *msg;
6201 const char *name;
6202 size_t name_len;
6203
6204 MAY_LJMP(check_args(L, 2, "set_uri"));
6205 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6206 name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
6207
6208 if ((msg->chn->flags & CF_ISRESP) || msg->msg_state > HTTP_MSG_BODY)
6209 WILL_LJMP(lua_error(L));
6210
6211 s = chn_strm(msg->chn);
6212 lua_pushboolean(L, http_req_replace_stline(3, name, name_len, s->be, s) != -1);
6213 return 1;
6214}
6215
6216/* Rewrites the response status code. It relies on http_res_set_status(). */
6217__LJMP static int hlua_http_msg_set_status(lua_State *L)
6218{
6219 struct http_msg *msg;
6220 unsigned int code;
6221 const char *reason;
6222 size_t reason_len;
6223
6224 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6225 code = MAY_LJMP(luaL_checkinteger(L, 2));
6226 reason = MAY_LJMP(luaL_optlstring(L, 3, NULL, &reason_len));
6227
6228 if (!(msg->chn->flags & CF_ISRESP) || msg->msg_state > HTTP_MSG_BODY)
6229 WILL_LJMP(lua_error(L));
6230
6231 lua_pushboolean(L, http_res_set_status(code, ist2(reason, reason_len), chn_strm(msg->chn)) != -1);
6232 return 1;
6233}
6234
6235/* Returns true if the HTTP message is full. */
6236__LJMP static int hlua_http_msg_is_full(lua_State *L)
6237{
6238 struct http_msg *msg;
6239
6240 MAY_LJMP(check_args(L, 1, "is_full"));
6241 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6242 lua_pushboolean(L, channel_full(msg->chn, 0));
6243 return 1;
6244}
6245
6246/* Returns true if the HTTP message may still receive data. */
6247__LJMP static int hlua_http_msg_may_recv(lua_State *L)
6248{
6249 struct http_msg *msg;
6250 struct htx *htx;
6251
6252 MAY_LJMP(check_args(L, 1, "may_recv"));
6253 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6254 htx = htxbuf(&msg->chn->buf);
6255 lua_pushboolean(L, (htx_expect_more(htx) && !channel_input_closed(msg->chn) && channel_may_recv(msg->chn)));
6256 return 1;
6257}
6258
6259/* Returns true if the HTTP message EOM was received */
6260__LJMP static int hlua_http_msg_is_eom(lua_State *L)
6261{
6262 struct http_msg *msg;
6263 struct htx *htx;
6264
6265 MAY_LJMP(check_args(L, 1, "may_recv"));
6266 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6267 htx = htxbuf(&msg->chn->buf);
6268 lua_pushboolean(L, !htx_expect_more(htx));
6269 return 1;
6270}
6271
6272/* Returns the number of bytes available in the input side of the HTTP
6273 * message. This function never fails.
6274 */
6275__LJMP static int hlua_http_msg_get_in_len(lua_State *L)
6276{
6277 struct http_msg *msg;
Christopher Fauleteae8afa2020-02-26 17:15:48 +01006278 size_t output, input;
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006279
6280 MAY_LJMP(check_args(L, 1, "input"));
6281 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
Christopher Fauleteae8afa2020-02-26 17:15:48 +01006282 hlua_http_msg_filter(L, 1, msg, &output, &input);
6283 lua_pushinteger(L, input);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006284 return 1;
6285}
6286
6287/* Returns the number of bytes available in the output side of the HTTP
6288 * message. This function never fails.
6289 */
6290__LJMP static int hlua_http_msg_get_out_len(lua_State *L)
6291{
6292 struct http_msg *msg;
Christopher Fauleteae8afa2020-02-26 17:15:48 +01006293 size_t output, input;
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006294
6295 MAY_LJMP(check_args(L, 1, "output"));
6296 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
Christopher Fauleteae8afa2020-02-26 17:15:48 +01006297 hlua_http_msg_filter(L, 1, msg, &output, &input);
6298 lua_pushinteger(L, output);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006299 return 1;
6300}
6301
6302/* Copies at most <len> bytes of DATA blocks from the HTTP message <msg>
6303 * starting at the offset <offset> and put it in a string LUA variables. It
Ilya Shipitsinff0f2782021-08-22 22:18:07 +05006304 * returns the built string length. It stops on the first non-DATA HTX
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006305 * block. This function is called during the payload filtering, so the headers
6306 * are already scheduled for output (from the filter point of view).
6307 */
6308static int _hlua_http_msg_dup(struct http_msg *msg, lua_State *L, size_t offset, size_t len)
6309{
6310 struct htx *htx = htxbuf(&msg->chn->buf);
6311 struct htx_blk *blk;
6312 struct htx_ret htxret;
6313 luaL_Buffer b;
6314 int ret = 0;
6315
6316 luaL_buffinit(L, &b);
6317 htxret = htx_find_offset(htx, offset);
6318 for (blk = htxret.blk, offset = htxret.ret; blk && len; blk = htx_get_next_blk(htx, blk)) {
6319 enum htx_blk_type type = htx_get_blk_type(blk);
6320 struct ist v;
6321
6322 switch (type) {
6323 case HTX_BLK_UNUSED:
6324 break;
6325
6326 case HTX_BLK_DATA:
6327 v = htx_get_blk_value(htx, blk);
Tim Duesterhusb113b5c2021-09-15 13:58:44 +02006328 v = istadv(v, offset);
Tim Duesterhus2471f5c2021-11-08 09:05:01 +01006329 v = isttrim(v, len);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006330
6331 luaL_addlstring(&b, v.ptr, v.len);
6332 ret += v.len;
6333 break;
6334
6335 default:
vishnu0af4bd72021-10-24 06:46:24 +05306336 if (!ret)
6337 goto no_data;
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006338 goto end;
6339 }
6340 offset = 0;
6341 }
6342
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006343end:
vishnu0af4bd72021-10-24 06:46:24 +05306344 if (!ret && (htx->flags & HTX_FL_EOM))
6345 goto no_data;
6346 luaL_pushresult(&b);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006347 return ret;
vishnu0af4bd72021-10-24 06:46:24 +05306348
6349 no_data:
6350 /* Remove the empty string and push nil on the stack */
6351 lua_pop(L, 1);
6352 lua_pushnil(L);
6353 return 0;
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006354}
6355
6356/* Copies the string <str> to the HTTP message <msg> at the offset
6357 * <offset>. This function returns -1 if data cannot be copied. Otherwise, it
Ilya Shipitsinff0f2782021-08-22 22:18:07 +05006358 * returns the amount of data written. This function is responsible to update
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006359 * the filter context.
6360 */
6361static int _hlua_http_msg_insert(struct http_msg *msg, struct filter *filter, struct ist str, size_t offset)
6362{
6363 struct htx *htx = htx_from_buf(&msg->chn->buf);
6364 struct htx_ret htxret;
6365 int /*max, */ret = 0;
6366
6367 /* Nothing to do, just return */
6368 if (unlikely(istlen(str) == 0))
6369 goto end;
6370
6371 if (istlen(str) > htx_free_data_space(htx)) {
6372 ret = -1;
6373 goto end;
6374 }
6375
6376 htxret = htx_find_offset(htx, offset);
6377 if (!htxret.blk || htx_get_blk_type(htxret.blk) != HTX_BLK_DATA) {
6378 if (!htx_add_last_data(htx, str))
6379 goto end;
6380 }
6381 else {
6382 struct ist v = htx_get_blk_value(htx, htxret.blk);
6383 v.ptr += htxret.ret;
6384 v.len = 0;
6385 if (!htx_replace_blk_value(htx, htxret.blk, v, str))
6386 goto end;
6387 }
6388 ret = str.len;
6389 if (ret) {
6390 struct hlua_flt_ctx *flt_ctx = filter->ctx;
6391 flt_update_offsets(filter, msg->chn, ret);
6392 flt_ctx->cur_len[CHN_IDX(msg->chn)] += ret;
6393 }
6394
6395 end:
6396 htx_to_buf(htx, &msg->chn->buf);
6397 return ret;
6398}
6399
6400/* Helper function removing at most <len> bytes of DATA blocks at the absolute
6401 * position <offset>. It stops on the first non-DATA HTX block. This function is
6402 * called during the payload filtering, so the headers are already scheduled for
Ilya Shipitsinff0f2782021-08-22 22:18:07 +05006403 * output (from the filter point of view). This function is responsible to
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006404 * update the filter context.
6405 */
6406static void _hlua_http_msg_delete(struct http_msg *msg, struct filter *filter, size_t offset, size_t len)
6407{
6408 struct hlua_flt_ctx *flt_ctx = filter->ctx;
6409 struct htx *htx = htx_from_buf(&msg->chn->buf);
6410 struct htx_blk *blk;
6411 struct htx_ret htxret;
6412 size_t ret = 0;
6413
6414 /* Be sure <len> is always the amount of DATA to remove */
6415 if (htx->data == offset+len && htx_get_tail_type(htx) == HTX_BLK_DATA) {
6416 htx_truncate(htx, offset);
6417 ret = len;
6418 goto end;
6419 }
6420
6421 htxret = htx_find_offset(htx, offset);
6422 blk = htxret.blk;
6423 if (htxret.ret) {
6424 struct ist v;
6425
6426 if (htx_get_blk_type(blk) != HTX_BLK_DATA)
6427 goto end;
6428 v = htx_get_blk_value(htx, blk);
6429 v.ptr += htxret.ret;
Tim Duesterhus2471f5c2021-11-08 09:05:01 +01006430 v = isttrim(v, len);
Tim Duesterhusb113b5c2021-09-15 13:58:44 +02006431 blk = htx_replace_blk_value(htx, blk, v, IST_NULL);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006432 len -= v.len;
6433 ret += v.len;
6434 }
6435
6436
6437 while (blk && len) {
6438 enum htx_blk_type type = htx_get_blk_type(blk);
6439 uint32_t sz = htx_get_blksz(blk);
6440
6441 switch (type) {
6442 case HTX_BLK_UNUSED:
6443 break;
6444
6445 case HTX_BLK_DATA:
6446 if (len < sz) {
6447 htx_cut_data_blk(htx, blk, len);
6448 ret += len;
6449 goto end;
6450 }
6451 break;
6452
6453 default:
6454 goto end;
6455 }
6456
Ilya Shipitsinff0f2782021-08-22 22:18:07 +05006457 /* Remove all the data block */
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006458 len -= sz;
6459 ret += sz;
6460 blk = htx_remove_blk(htx, blk);
6461 }
6462
6463end:
6464 flt_update_offsets(filter, msg->chn, -ret);
6465 flt_ctx->cur_len[CHN_IDX(msg->chn)] -= ret;
6466 /* WARNING: we don't call htx_to_buf() on purpose, because we don't want
6467 * to loose the EOM flag if the message is empty.
6468 */
6469}
6470
6471/* Copies input data found in an HTTP message. Unlike the channel function used
6472 * to duplicate raw data, this one can only be called inside a filter, from
6473 * http_payload callback. So it cannot yield. An exception is returned if it is
6474 * called from another callback. If nothing was copied, a nil value is pushed on
6475 * the stack.
6476 */
6477__LJMP static int hlua_http_msg_get_body(lua_State *L)
6478{
6479 struct http_msg *msg;
6480 struct filter *filter;
6481 size_t output, input;
6482 int offset, len;
6483
6484 if (lua_gettop(L) < 1 || lua_gettop(L) > 3)
6485 WILL_LJMP(luaL_error(L, "'data' expects at most 2 arguments"));
6486 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6487
6488 if (msg->msg_state < HTTP_MSG_DATA)
6489 WILL_LJMP(lua_error(L));
6490
6491 filter = hlua_http_msg_filter(L, 1, msg, &output, &input);
6492 if (!filter || !hlua_filter_from_payload(filter))
6493 WILL_LJMP(lua_error(L));
6494
6495 if (!ci_data(msg->chn) && channel_input_closed(msg->chn)) {
6496 lua_pushnil(L);
6497 return 1;
6498 }
6499
6500 offset = output;
6501 if (lua_gettop(L) > 1) {
6502 offset = MAY_LJMP(luaL_checkinteger(L, 2));
6503 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02006504 offset = MAX(0, (int)input + offset);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006505 offset += output;
6506 if (offset < output || offset > input + output) {
6507 lua_pushfstring(L, "offset out of range.");
6508 WILL_LJMP(lua_error(L));
6509 }
6510 }
6511 len = output + input - offset;
6512 if (lua_gettop(L) == 3) {
6513 len = MAY_LJMP(luaL_checkinteger(L, 3));
6514 if (!len)
6515 goto dup;
6516 if (len == -1)
6517 len = global.tune.bufsize;
6518 if (len < 0) {
6519 lua_pushfstring(L, "length out of range.");
6520 WILL_LJMP(lua_error(L));
6521 }
6522 }
6523
6524 dup:
6525 _hlua_http_msg_dup(msg, L, offset, len);
6526 return 1;
6527}
6528
6529/* Appends a string to the HTTP message, after all existing DATA blocks but
6530 * before the trailers, if any. It returns the amount of data written or -1 if
6531 * nothing was copied. Unlike the channel function used to append data, this one
6532 * can only be called inside a filter, from http_payload callback. So it cannot
6533 * yield. An exception is returned if it is called from another callback.
6534 */
6535__LJMP static int hlua_http_msg_append(lua_State *L)
6536{
6537 struct http_msg *msg;
6538 struct filter *filter;
6539 const char *str;
6540 size_t offset, len, sz;
6541 int ret;
6542
6543 MAY_LJMP(check_args(L, 2, "append"));
6544 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6545
6546 if (msg->msg_state < HTTP_MSG_DATA)
6547 WILL_LJMP(lua_error(L));
6548
6549 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
6550 filter = hlua_http_msg_filter(L, 1, msg, &offset, &len);
6551 if (!filter || !hlua_filter_from_payload(filter))
6552 WILL_LJMP(lua_error(L));
6553
6554 ret = _hlua_http_msg_insert(msg, filter, ist2(str, sz), offset+len);
6555 lua_pushinteger(L, ret);
6556 return 1;
6557}
6558
6559/* Prepends a string to the HTTP message, before all existing DATA blocks. It
6560 * returns the amount of data written or -1 if nothing was copied. Unlike the
6561 * channel function used to prepend data, this one can only be called inside a
6562 * filter, from http_payload callback. So it cannot yield. An exception is
6563 * returned if it is called from another callback.
6564 */
6565__LJMP static int hlua_http_msg_prepend(lua_State *L)
6566{
6567 struct http_msg *msg;
6568 struct filter *filter;
6569 const char *str;
6570 size_t offset, len, sz;
6571 int ret;
6572
6573 MAY_LJMP(check_args(L, 2, "prepend"));
6574 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006575
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006576 if (msg->msg_state < HTTP_MSG_DATA)
6577 WILL_LJMP(lua_error(L));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006578
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006579 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
6580 filter = hlua_http_msg_filter(L, 1, msg, &offset, &len);
6581 if (!filter || !hlua_filter_from_payload(filter))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006582 WILL_LJMP(lua_error(L));
6583
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006584 ret = _hlua_http_msg_insert(msg, filter, ist2(str, sz), offset);
6585 lua_pushinteger(L, ret);
6586 return 1;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006587}
6588
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006589/* Inserts a string to the HTTP message at a given offset. By default the string
6590 * is appended at the end of DATA blocks. It returns the amount of data written
6591 * or -1 if nothing was copied. Unlike the channel function used to insert data,
6592 * this one can only be called inside a filter, from http_payload callback. So
6593 * it cannot yield. An exception is returned if it is called from another
6594 * callback.
6595 */
6596__LJMP static int hlua_http_msg_insert_data(lua_State *L)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006597{
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006598 struct http_msg *msg;
6599 struct filter *filter;
6600 const char *str;
6601 size_t input, output, sz;
6602 int offset;
6603 int ret;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006604
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006605 if (lua_gettop(L) < 2 || lua_gettop(L) > 3)
6606 WILL_LJMP(luaL_error(L, "'insert' expects at least 1 argument and at most 2 arguments"));
6607 MAY_LJMP(check_args(L, 2, "insert"));
6608 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006609
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006610 if (msg->msg_state < HTTP_MSG_DATA)
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006611 WILL_LJMP(lua_error(L));
6612
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006613 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
6614 filter = hlua_http_msg_filter(L, 1, msg, &input, &output);
6615 if (!filter || !hlua_filter_from_payload(filter))
6616 WILL_LJMP(lua_error(L));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006617
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006618 offset = input + output;
6619 if (lua_gettop(L) > 2) {
6620 offset = MAY_LJMP(luaL_checkinteger(L, 3));
6621 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02006622 offset = MAX(0, (int)input + offset);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006623 offset += output;
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006624 if (offset < output || offset > output + input) {
6625 lua_pushfstring(L, "offset out of range.");
6626 WILL_LJMP(lua_error(L));
6627 }
6628 }
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006629
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006630 ret = _hlua_http_msg_insert(msg, filter, ist2(str, sz), offset);
6631 lua_pushinteger(L, ret);
6632 return 1;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006633}
6634
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006635/* Removes a given amount of data from the HTTP message at a given offset. By
6636 * default all DATA blocks are removed. It returns the amount of data
6637 * removed. Unlike the channel function used to remove data, this one can only
6638 * be called inside a filter, from http_payload callback. So it cannot yield. An
6639 * exception is returned if it is called from another callback.
6640 */
6641__LJMP static int hlua_http_msg_del_data(lua_State *L)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006642{
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006643 struct http_msg *msg;
6644 struct filter *filter;
6645 size_t input, output;
6646 int offset, len;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006647
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006648 if (lua_gettop(L) < 1 || lua_gettop(L) > 3)
6649 WILL_LJMP(luaL_error(L, "'insert' expects at most 2 arguments"));
6650 MAY_LJMP(check_args(L, 2, "insert"));
6651 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006652
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006653 if (msg->msg_state < HTTP_MSG_DATA)
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006654 WILL_LJMP(lua_error(L));
6655
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006656 filter = hlua_http_msg_filter(L, 1, msg, &input, &output);
6657 if (!filter || !hlua_filter_from_payload(filter))
6658 WILL_LJMP(lua_error(L));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006659
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006660 offset = input + output;
6661 if (lua_gettop(L) > 2) {
6662 offset = MAY_LJMP(luaL_checkinteger(L, 3));
6663 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02006664 offset = MAX(0, (int)input + offset);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006665 offset += output;
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006666 if (offset < output || offset > output + input) {
6667 lua_pushfstring(L, "offset out of range.");
6668 WILL_LJMP(lua_error(L));
6669 }
6670 }
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006671
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006672 len = output + input - offset;
6673 if (lua_gettop(L) == 4) {
6674 len = MAY_LJMP(luaL_checkinteger(L, 4));
6675 if (!len)
6676 goto end;
6677 if (len == -1)
6678 len = output + input - offset;
6679 if (len < 0 || offset + len > output + input) {
6680 lua_pushfstring(L, "length out of range.");
6681 WILL_LJMP(lua_error(L));
6682 }
6683 }
6684
6685 _hlua_http_msg_delete(msg, filter, offset, len);
6686
6687 end:
6688 lua_pushinteger(L, len);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006689 return 1;
6690}
6691
Ilya Shipitsinff0f2782021-08-22 22:18:07 +05006692/* Replaces a given amount of data at the given offset by a string. By default,
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006693 * all remaining data are removed, accordingly to the filter context. It returns
6694 * the amount of data written or -1 if nothing was copied. Unlike the channel
6695 * function used to replace data, this one can only be called inside a filter,
6696 * from http_payload callback. So it cannot yield. An exception is returned if
6697 * it is called from another callback.
6698 */
6699__LJMP static int hlua_http_msg_set_data(lua_State *L)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006700{
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006701 struct http_msg *msg;
6702 struct filter *filter;
6703 struct htx *htx;
6704 const char *str;
6705 size_t input, output, sz;
6706 int offset, len;
6707 int ret;
Thierry FOURNIER / OZON.IOb84ae922016-08-02 23:44:58 +02006708
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006709 if (lua_gettop(L) < 2 || lua_gettop(L) > 4)
6710 WILL_LJMP(luaL_error(L, "'set' expects at least 1 argument and at most 3 arguments"));
6711 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6712
6713 if (msg->msg_state < HTTP_MSG_DATA)
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006714 WILL_LJMP(lua_error(L));
6715
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006716 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
6717 filter = hlua_http_msg_filter(L, 1, msg, &output, &input);
6718 if (!filter || !hlua_filter_from_payload(filter))
6719 WILL_LJMP(lua_error(L));
6720
6721 offset = output;
6722 if (lua_gettop(L) > 2) {
6723 offset = MAY_LJMP(luaL_checkinteger(L, 3));
6724 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02006725 offset = MAX(0, (int)input + offset);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006726 offset += output;
6727 if (offset < output || offset > input + output) {
6728 lua_pushfstring(L, "offset out of range.");
6729 WILL_LJMP(lua_error(L));
6730 }
6731 }
6732
6733 len = output + input - offset;
6734 if (lua_gettop(L) == 4) {
6735 len = MAY_LJMP(luaL_checkinteger(L, 4));
6736 if (!len)
6737 goto set;
6738 if (len == -1)
6739 len = output + input - offset;
6740 if (len < 0 || offset + len > output + input) {
6741 lua_pushfstring(L, "length out of range.");
6742 WILL_LJMP(lua_error(L));
6743 }
6744 }
6745
6746 set:
6747 /* Be sure we can copied the string once input data will be removed. */
6748 htx = htx_from_buf(&msg->chn->buf);
6749 if (sz > htx_free_data_space(htx) + len)
6750 lua_pushinteger(L, -1);
6751 else {
6752 _hlua_http_msg_delete(msg, filter, offset, len);
6753 ret = _hlua_http_msg_insert(msg, filter, ist2(str, sz), offset);
6754 lua_pushinteger(L, ret);
6755 }
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006756 return 1;
6757}
6758
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006759/* Prepends data into an HTTP message and forward it, from the filter point of
6760 * view. It returns the amount of data written or -1 if nothing was sent. Unlike
6761 * the channel function used to send data, this one can only be called inside a
6762 * filter, from http_payload callback. So it cannot yield. An exception is
6763 * returned if it is called from another callback.
6764 */
6765__LJMP static int hlua_http_msg_send(lua_State *L)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006766{
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006767 struct http_msg *msg;
6768 struct filter *filter;
6769 struct htx *htx;
6770 const char *str;
6771 size_t offset, len, sz;
6772 int ret;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006773
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006774 MAY_LJMP(check_args(L, 2, "send"));
6775 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6776
6777 if (msg->msg_state < HTTP_MSG_DATA)
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006778 WILL_LJMP(lua_error(L));
6779
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006780 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
6781 filter = hlua_http_msg_filter(L, 1, msg, &offset, &len);
6782 if (!filter || !hlua_filter_from_payload(filter))
6783 WILL_LJMP(lua_error(L));
6784
6785 /* Return an error if the channel's output is closed */
6786 if (unlikely(channel_output_closed(msg->chn))) {
6787 lua_pushinteger(L, -1);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006788 return 1;
6789 }
6790
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006791 htx = htx_from_buf(&msg->chn->buf);
6792 if (sz > htx_free_data_space(htx)) {
6793 lua_pushinteger(L, -1);
6794 return 1;
6795 }
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006796
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006797 ret = _hlua_http_msg_insert(msg, filter, ist2(str, sz), offset);
6798 if (ret > 0) {
6799 struct hlua_flt_ctx *flt_ctx = filter->ctx;
6800
6801 FLT_OFF(filter, msg->chn) += ret;
6802 flt_ctx->cur_len[CHN_IDX(msg->chn)] -= ret;
6803 flt_ctx->cur_off[CHN_IDX(msg->chn)] += ret;
6804 }
6805
6806 lua_pushinteger(L, ret);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006807 return 1;
6808}
6809
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006810/* Forwards a given amount of bytes. It return -1 if the channel's output is
6811 * closed. Otherwise, it returns the number of bytes forwarded. Unlike the
6812 * channel function used to forward data, this one can only be called inside a
6813 * filter, from http_payload callback. So it cannot yield. An exception is
6814 * returned if it is called from another callback. All other functions deal with
6815 * DATA block, this one not.
6816*/
6817__LJMP static int hlua_http_msg_forward(lua_State *L)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006818{
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006819 struct http_msg *msg;
6820 struct filter *filter;
6821 size_t offset, len;
6822 int fwd, ret = 0;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006823
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006824 MAY_LJMP(check_args(L, 2, "forward"));
6825 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6826
6827 if (msg->msg_state < HTTP_MSG_DATA)
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006828 WILL_LJMP(lua_error(L));
6829
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006830 fwd = MAY_LJMP(luaL_checkinteger(L, 2));
6831 filter = hlua_http_msg_filter(L, 1, msg, &offset, &len);
6832 if (!filter || !hlua_filter_from_payload(filter))
6833 WILL_LJMP(lua_error(L));
6834
6835 /* Nothing to do, just return */
6836 if (!fwd)
6837 goto end;
6838
6839 /* Return an error if the channel's output is closed */
6840 if (unlikely(channel_output_closed(msg->chn))) {
6841 ret = -1;
6842 goto end;
6843 }
6844
6845 ret = fwd;
6846 if (ret > len)
6847 ret = len;
6848
6849 if (ret) {
6850 struct hlua_flt_ctx *flt_ctx = filter->ctx;
6851
6852 FLT_OFF(filter, msg->chn) += ret;
6853 flt_ctx->cur_off[CHN_IDX(msg->chn)] += ret;
6854 flt_ctx->cur_len[CHN_IDX(msg->chn)] -= ret;
6855 }
6856
6857 end:
6858 lua_pushinteger(L, ret);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006859 return 1;
6860}
6861
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006862/* Set EOM flag on the HTX message.
6863 *
6864 * NOTE: Not sure it is a good idea to manipulate this flag but for now I don't
6865 * really know how to do without this feature.
6866 */
6867__LJMP static int hlua_http_msg_set_eom(lua_State *L)
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +02006868{
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006869 struct http_msg *msg;
6870 struct htx *htx;
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +02006871
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006872 MAY_LJMP(check_args(L, 1, "set_eom"));
6873 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6874 htx = htxbuf(&msg->chn->buf);
6875 htx->flags |= HTX_FL_EOM;
6876 return 0;
6877}
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006878
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006879/* Unset EOM flag on the HTX message.
6880 *
6881 * NOTE: Not sure it is a good idea to manipulate this flag but for now I don't
6882 * really know how to do without this feature.
6883 */
6884__LJMP static int hlua_http_msg_unset_eom(lua_State *L)
6885{
6886 struct http_msg *msg;
6887 struct htx *htx;
6888
6889 MAY_LJMP(check_args(L, 1, "set_eom"));
6890 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6891 htx = htxbuf(&msg->chn->buf);
6892 htx->flags &= ~HTX_FL_EOM;
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +02006893 return 0;
6894}
6895
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006896/*
6897 *
6898 *
William Lallemand3956c4e2021-09-21 16:25:15 +02006899 * Class HTTPClient
6900 *
6901 *
6902 */
6903__LJMP static struct hlua_httpclient *hlua_checkhttpclient(lua_State *L, int ud)
6904{
6905 return MAY_LJMP(hlua_checkudata(L, ud, class_httpclient_ref));
6906}
6907
William Lallemandf77f1de2021-09-28 19:10:38 +02006908
6909/* stops the httpclient and ask it to kill itself */
6910__LJMP static int hlua_httpclient_gc(lua_State *L)
6911{
6912 struct hlua_httpclient *hlua_hc;
6913
6914 MAY_LJMP(check_args(L, 1, "__gc"));
6915
6916 hlua_hc = MAY_LJMP(hlua_checkhttpclient(L, 1));
6917
6918 httpclient_stop_and_destroy(hlua_hc->hc);
6919
6920 hlua_hc->hc = NULL;
6921
6922
6923 return 0;
6924}
6925
6926
William Lallemand3956c4e2021-09-21 16:25:15 +02006927__LJMP static int hlua_httpclient_new(lua_State *L)
6928{
6929 struct hlua_httpclient *hlua_hc;
6930 struct hlua *hlua;
6931
6932 /* Get hlua struct, or NULL if we execute from main lua state */
6933 hlua = hlua_gethlua(L);
6934 if (!hlua)
6935 return 0;
6936
6937 /* Check stack size. */
6938 if (!lua_checkstack(L, 3)) {
6939 hlua_pusherror(L, "httpclient: full stack");
6940 goto err;
6941 }
6942 /* Create the object: obj[0] = userdata. */
6943 lua_newtable(L);
6944 hlua_hc = MAY_LJMP(lua_newuserdata(L, sizeof(*hlua_hc)));
6945 lua_rawseti(L, -2, 0);
6946 memset(hlua_hc, 0, sizeof(*hlua_hc));
6947
6948 hlua_hc->hc = httpclient_new(hlua, 0, IST_NULL);
6949 if (!hlua_hc->hc)
6950 goto err;
6951
6952 /* Pop a class stream metatable and affect it to the userdata. */
6953 lua_rawgeti(L, LUA_REGISTRYINDEX, class_httpclient_ref);
6954 lua_setmetatable(L, -2);
6955
6956 return 1;
6957
6958 err:
6959 WILL_LJMP(lua_error(L));
6960 return 0;
6961}
6962
6963
6964/*
6965 * Callback of the httpclient, this callback wakes the lua task up, once the
6966 * httpclient receives some data
6967 *
6968 */
6969
William Lallemandbd5739e2021-10-28 15:41:38 +02006970static void hlua_httpclient_cb(struct httpclient *hc)
William Lallemand3956c4e2021-09-21 16:25:15 +02006971{
6972 struct hlua *hlua = hc->caller;
6973
6974 if (!hlua || !hlua->task)
6975 return;
6976
6977 task_wakeup(hlua->task, TASK_WOKEN_MSG);
6978}
6979
6980/*
William Lallemandd7df73a2021-09-23 17:54:00 +02006981 * Fill the lua stack with headers from the httpclient response
6982 * This works the same way as the hlua_http_get_headers() function
6983 */
6984__LJMP static int hlua_httpclient_get_headers(lua_State *L, struct hlua_httpclient *hlua_hc)
6985{
6986 struct http_hdr *hdr;
6987
6988 lua_newtable(L);
6989
William Lallemandef574b22021-10-05 16:19:31 +02006990 for (hdr = hlua_hc->hc->res.hdrs; hdr && isttest(hdr->n); hdr++) {
William Lallemandd7df73a2021-09-23 17:54:00 +02006991 struct ist n, v;
6992 int len;
6993
6994 n = hdr->n;
6995 v = hdr->v;
6996
6997 /* Check for existing entry:
6998 * assume that the table is on the top of the stack, and
6999 * push the key in the stack, the function lua_gettable()
7000 * perform the lookup.
7001 */
7002
7003 lua_pushlstring(L, n.ptr, n.len);
7004 lua_gettable(L, -2);
7005
7006 switch (lua_type(L, -1)) {
7007 case LUA_TNIL:
7008 /* Table not found, create it. */
7009 lua_pop(L, 1); /* remove the nil value. */
7010 lua_pushlstring(L, n.ptr, n.len); /* push the header name as key. */
7011 lua_newtable(L); /* create and push empty table. */
7012 lua_pushlstring(L, v.ptr, v.len); /* push header value. */
7013 lua_rawseti(L, -2, 0); /* index header value (pop it). */
7014 lua_rawset(L, -3); /* index new table with header name (pop the values). */
7015 break;
7016
7017 case LUA_TTABLE:
7018 /* Entry found: push the value in the table. */
7019 len = lua_rawlen(L, -1);
7020 lua_pushlstring(L, v.ptr, v.len); /* push header value. */
7021 lua_rawseti(L, -2, len+1); /* index header value (pop it). */
7022 lua_pop(L, 1); /* remove the table (it is stored in the main table). */
7023 break;
7024
7025 default:
7026 /* Other cases are errors. */
7027 hlua_pusherror(L, "internal error during the parsing of headers.");
7028 WILL_LJMP(lua_error(L));
7029 }
7030 }
7031 return 1;
7032}
7033
7034/*
William Lallemand746e6f32021-10-06 10:57:44 +02007035 * Allocate and return an array of http_hdr ist extracted from the <headers> lua table
7036 *
7037 * Caller must free the result
7038 */
7039struct http_hdr *hlua_httpclient_table_to_hdrs(lua_State *L)
7040{
7041 struct http_hdr hdrs[global.tune.max_http_hdr];
7042 struct http_hdr *result = NULL;
7043 uint32_t hdr_num = 0;
7044
7045 lua_pushnil(L);
7046 while (lua_next(L, -2) != 0) {
7047 struct ist name, value;
7048 const char *n, *v;
7049 size_t nlen, vlen;
7050
7051 if (!lua_isstring(L, -2) || !lua_istable(L, -1)) {
7052 /* Skip element if the key is not a string or if the value is not a table */
7053 goto next_hdr;
7054 }
7055
7056 n = lua_tolstring(L, -2, &nlen);
7057 name = ist2(n, nlen);
7058
7059 /* Loop on header's values */
7060 lua_pushnil(L);
7061 while (lua_next(L, -2)) {
7062 if (!lua_isstring(L, -1)) {
7063 /* Skip the value if it is not a string */
7064 goto next_value;
7065 }
7066
7067 v = lua_tolstring(L, -1, &vlen);
7068 value = ist2(v, vlen);
7069 name = ist2(n, nlen);
7070
7071 hdrs[hdr_num].n = istdup(name);
7072 hdrs[hdr_num].v = istdup(value);
7073
7074 hdr_num++;
7075
7076 next_value:
7077 lua_pop(L, 1);
7078 }
7079
7080 next_hdr:
7081 lua_pop(L, 1);
7082
7083 }
7084
7085 if (hdr_num) {
7086 /* alloc and copy the headers in the httpclient struct */
Tim Duesterhus16cc16d2021-11-06 15:14:45 +01007087 result = calloc((hdr_num + 1), sizeof(*result));
William Lallemand746e6f32021-10-06 10:57:44 +02007088 if (!result)
7089 goto skip_headers;
7090 memcpy(result, hdrs, sizeof(struct http_hdr) * (hdr_num + 1));
7091
7092 result[hdr_num].n = IST_NULL;
7093 result[hdr_num].v = IST_NULL;
7094 }
7095
7096skip_headers:
William Lallemand746e6f32021-10-06 10:57:44 +02007097
7098 return result;
7099}
7100
7101
William Lallemandbd5739e2021-10-28 15:41:38 +02007102/*
7103 * For each yield, checks if there is some data in the httpclient and push them
7104 * in the lua buffer, once the httpclient finished its job, push the result on
7105 * the stack
7106 */
7107__LJMP static int hlua_httpclient_rcv_yield(lua_State *L, int status, lua_KContext ctx)
7108{
7109 struct buffer *tr;
7110 int res;
7111 struct hlua *hlua = hlua_gethlua(L);
7112 struct hlua_httpclient *hlua_hc = hlua_checkhttpclient(L, 1);
7113
7114
7115 tr = get_trash_chunk();
7116
7117 res = httpclient_res_xfer(hlua_hc->hc, tr);
7118 luaL_addlstring(&hlua_hc->b, b_orig(tr), res);
7119
7120 if (!httpclient_data(hlua_hc->hc) && httpclient_ended(hlua_hc->hc)) {
7121
7122 luaL_pushresult(&hlua_hc->b);
7123 lua_settable(L, -3);
7124
7125 lua_pushstring(L, "status");
7126 lua_pushinteger(L, hlua_hc->hc->res.status);
7127 lua_settable(L, -3);
7128
7129
7130 lua_pushstring(L, "reason");
7131 lua_pushlstring(L, hlua_hc->hc->res.reason.ptr, hlua_hc->hc->res.reason.len);
7132 lua_settable(L, -3);
7133
7134 lua_pushstring(L, "headers");
7135 hlua_httpclient_get_headers(L, hlua_hc);
7136 lua_settable(L, -3);
7137
7138 return 1;
7139 }
7140
7141 if (httpclient_data(hlua_hc->hc))
7142 task_wakeup(hlua->task, TASK_WOKEN_MSG);
7143
7144 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_httpclient_rcv_yield, TICK_ETERNITY, 0));
7145
7146 return 0;
7147}
7148
7149/*
7150 * Call this when trying to stream a body during a request
7151 */
7152__LJMP static int hlua_httpclient_snd_yield(lua_State *L, int status, lua_KContext ctx)
7153{
7154 struct hlua *hlua;
7155 struct hlua_httpclient *hlua_hc = hlua_checkhttpclient(L, 1);
7156 const char *body_str = NULL;
7157 int ret;
7158 int end = 0;
7159 size_t buf_len;
7160 size_t to_send = 0;
7161
7162 hlua = hlua_gethlua(L);
7163
7164 if (!hlua || !hlua->task)
7165 WILL_LJMP(luaL_error(L, "The 'get' function is only allowed in "
7166 "'frontend', 'backend' or 'task'"));
7167
7168 ret = lua_getfield(L, -1, "body");
7169 if (ret != LUA_TSTRING)
7170 goto rcv;
7171
7172 body_str = lua_tolstring(L, -1, &buf_len);
7173 lua_pop(L, 1);
7174
Christopher Fauletfc591292022-01-12 14:46:03 +01007175 to_send = buf_len - hlua_hc->sent;
William Lallemandbd5739e2021-10-28 15:41:38 +02007176
7177 if ((hlua_hc->sent + to_send) >= buf_len)
7178 end = 1;
7179
7180 /* the end flag is always set since we are using the whole remaining size */
7181 hlua_hc->sent += httpclient_req_xfer(hlua_hc->hc, ist2(body_str + hlua_hc->sent, to_send), end);
7182
7183 if (buf_len > hlua_hc->sent) {
7184 /* still need to process the buffer */
7185 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_httpclient_snd_yield, TICK_ETERNITY, 0));
7186 } else {
7187 goto rcv;
7188 /* we sent the whole request buffer we can recv */
7189 }
7190 return 0;
7191
7192rcv:
7193
7194 /* we return a "res" object */
7195 lua_newtable(L);
7196
William Lallemandbd5739e2021-10-28 15:41:38 +02007197 lua_pushstring(L, "body");
William Lallemandd1187eb2021-11-02 10:40:06 +01007198 luaL_buffinit(L, &hlua_hc->b);
William Lallemandbd5739e2021-10-28 15:41:38 +02007199
William Lallemand933fe392021-11-04 09:45:58 +01007200 task_wakeup(hlua->task, TASK_WOKEN_MSG);
William Lallemandbd5739e2021-10-28 15:41:38 +02007201 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_httpclient_rcv_yield, TICK_ETERNITY, 0));
7202
7203 return 1;
7204}
William Lallemand746e6f32021-10-06 10:57:44 +02007205
William Lallemand3956c4e2021-09-21 16:25:15 +02007206/*
William Lallemanddc2cc902021-10-26 11:43:26 +02007207 * Send an HTTP request and wait for a response
William Lallemand3956c4e2021-09-21 16:25:15 +02007208 */
7209
William Lallemanddc2cc902021-10-26 11:43:26 +02007210__LJMP static int hlua_httpclient_send(lua_State *L, enum http_meth_t meth)
William Lallemand3956c4e2021-09-21 16:25:15 +02007211{
7212 struct hlua_httpclient *hlua_hc;
William Lallemand746e6f32021-10-06 10:57:44 +02007213 struct http_hdr *hdrs = NULL;
7214 struct http_hdr *hdrs_i = NULL;
William Lallemand3956c4e2021-09-21 16:25:15 +02007215 struct hlua *hlua;
William Lallemand746e6f32021-10-06 10:57:44 +02007216 const char *url_str = NULL;
William Lallemanddec25c32021-10-25 19:48:37 +02007217 const char *body_str = NULL;
William Lallemandbd5739e2021-10-28 15:41:38 +02007218 size_t buf_len;
William Lallemand746e6f32021-10-06 10:57:44 +02007219 int ret;
William Lallemand3956c4e2021-09-21 16:25:15 +02007220
7221 hlua = hlua_gethlua(L);
7222
7223 if (!hlua || !hlua->task)
7224 WILL_LJMP(luaL_error(L, "The 'get' function is only allowed in "
7225 "'frontend', 'backend' or 'task'"));
7226
William Lallemand746e6f32021-10-06 10:57:44 +02007227 if (lua_gettop(L) != 2 || lua_type(L, -1) != LUA_TTABLE)
7228 WILL_LJMP(luaL_error(L, "'get' needs a table as argument"));
7229
William Lallemand4f4f2b72022-02-17 20:00:23 +01007230 hlua_hc = hlua_checkhttpclient(L, 1);
7231
William Lallemand7177a952022-03-03 15:33:12 +01007232 lua_pushnil(L); /* first key */
7233 while (lua_next(L, 2)) {
7234 if (strcmp(lua_tostring(L, -2), "dst") == 0) {
7235 if (httpclient_set_dst(hlua_hc->hc, lua_tostring(L, -1)) < 0)
7236 WILL_LJMP(luaL_error(L, "Can't use the 'dst' argument"));
William Lallemand4f4f2b72022-02-17 20:00:23 +01007237
William Lallemand7177a952022-03-03 15:33:12 +01007238 } else if (strcmp(lua_tostring(L, -2), "url") == 0) {
7239 if (lua_type(L, -1) != LUA_TSTRING)
7240 WILL_LJMP(luaL_error(L, "invalid parameter in 'url', must be a string"));
7241 url_str = lua_tostring(L, -1);
William Lallemand3956c4e2021-09-21 16:25:15 +02007242
William Lallemand7177a952022-03-03 15:33:12 +01007243 } else if (strcmp(lua_tostring(L, -2), "timeout") == 0) {
7244 if (lua_type(L, -1) != LUA_TNUMBER)
7245 WILL_LJMP(luaL_error(L, "invalid parameter in 'timeout', must be a number"));
7246 httpclient_set_timeout(hlua_hc->hc, lua_tointeger(L, -1));
William Lallemandb4a4ef62022-02-23 14:18:16 +01007247
William Lallemand7177a952022-03-03 15:33:12 +01007248 } else if (strcmp(lua_tostring(L, -2), "headers") == 0) {
7249 if (lua_type(L, -1) != LUA_TTABLE)
7250 WILL_LJMP(luaL_error(L, "invalid parameter in 'headers', must be a table"));
7251 hdrs = hlua_httpclient_table_to_hdrs(L);
William Lallemand79416cb2021-09-24 14:51:44 +02007252
William Lallemand7177a952022-03-03 15:33:12 +01007253 } else if (strcmp(lua_tostring(L, -2), "body") == 0) {
7254 if (lua_type(L, -1) != LUA_TSTRING)
7255 WILL_LJMP(luaL_error(L, "invalid parameter in 'body', must be a string"));
7256 body_str = lua_tolstring(L, -1, &buf_len);
William Lallemandbd5739e2021-10-28 15:41:38 +02007257
William Lallemand7177a952022-03-03 15:33:12 +01007258 } else {
7259 WILL_LJMP(luaL_error(L, "'%s' invalid parameter name", lua_tostring(L, -2)));
7260 }
7261 /* removes 'value'; keeps 'key' for next iteration */
7262 lua_pop(L, 1);
7263 }
William Lallemanddec25c32021-10-25 19:48:37 +02007264
William Lallemand746e6f32021-10-06 10:57:44 +02007265 if (!url_str) {
7266 WILL_LJMP(luaL_error(L, "'get' need a 'url' argument"));
7267 return 0;
7268 }
William Lallemand3956c4e2021-09-21 16:25:15 +02007269
William Lallemand10a37362022-03-02 16:18:26 +01007270 hlua_hc->sent = 0;
William Lallemand3956c4e2021-09-21 16:25:15 +02007271
7272 hlua_hc->hc->req.url = istdup(ist(url_str));
William Lallemanddc2cc902021-10-26 11:43:26 +02007273 hlua_hc->hc->req.meth = meth;
William Lallemand3956c4e2021-09-21 16:25:15 +02007274
7275 /* update the httpclient callbacks */
William Lallemandbd5739e2021-10-28 15:41:38 +02007276 hlua_hc->hc->ops.res_stline = hlua_httpclient_cb;
7277 hlua_hc->hc->ops.res_headers = hlua_httpclient_cb;
7278 hlua_hc->hc->ops.res_payload = hlua_httpclient_cb;
William Lallemand8f170c72022-03-15 10:52:07 +01007279 hlua_hc->hc->ops.res_end = hlua_httpclient_cb;
William Lallemand3956c4e2021-09-21 16:25:15 +02007280
William Lallemandbd5739e2021-10-28 15:41:38 +02007281 /* a body is available, it will use the request callback */
7282 if (body_str) {
7283 hlua_hc->hc->ops.req_payload = hlua_httpclient_cb;
7284 }
William Lallemand3956c4e2021-09-21 16:25:15 +02007285
William Lallemandbd5739e2021-10-28 15:41:38 +02007286 ret = httpclient_req_gen(hlua_hc->hc, hlua_hc->hc->req.url, meth, hdrs, IST_NULL);
William Lallemand3956c4e2021-09-21 16:25:15 +02007287
William Lallemand746e6f32021-10-06 10:57:44 +02007288 /* free the temporary headers array */
7289 hdrs_i = hdrs;
7290 while (hdrs_i && isttest(hdrs_i->n)) {
7291 istfree(&hdrs_i->n);
7292 istfree(&hdrs_i->v);
7293 hdrs_i++;
7294 }
7295 ha_free(&hdrs);
7296
7297
William Lallemand6137a9e2021-10-26 15:01:53 +02007298 if (ret != ERR_NONE) {
7299 WILL_LJMP(luaL_error(L, "Can't generate the HTTP request"));
7300 return 0;
7301 }
7302
William Lallemand6137a9e2021-10-26 15:01:53 +02007303 httpclient_start(hlua_hc->hc);
7304
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);