blob: ef29d6a2c0bbac88b3b52ef72c049e03c6363b5a [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 Tarreau7ea393d2020-06-04 18:02:10 +020035#include <haproxy/connection.h>
Willy Tarreau5413a872020-06-02 19:33:08 +020036#include <haproxy/h1.h>
Willy Tarreau86416052020-06-04 09:20:54 +020037#include <haproxy/hlua.h>
Willy Tarreau8c794002020-06-04 10:05:25 +020038#include <haproxy/hlua_fcn.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020039#include <haproxy/http_ana.h>
Willy Tarreau126ba3a2020-06-04 18:26:43 +020040#include <haproxy/http_fetch.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020041#include <haproxy/http_htx.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020042#include <haproxy/http_rules.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020043#include <haproxy/log.h>
Willy Tarreau2cd58092020-06-04 15:10:43 +020044#include <haproxy/map.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020045#include <haproxy/obj_type.h>
Willy Tarreau225a90a2020-06-04 15:06:28 +020046#include <haproxy/pattern.h>
Willy Tarreau469509b2020-06-04 15:13:30 +020047#include <haproxy/payload.h>
Willy Tarreau3d6ee402021-05-08 20:28:07 +020048#include <haproxy/proxy.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020049#include <haproxy/regex.h>
Willy Tarreaue6ce10b2020-06-04 15:33:47 +020050#include <haproxy/sample.h>
Willy Tarreau198e92a2021-03-05 10:23:32 +010051#include <haproxy/server.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020052#include <haproxy/session.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020053#include <haproxy/stats-t.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020054#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020055#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020056#include <haproxy/task.h>
Willy Tarreau8b550af2020-06-04 17:42:48 +020057#include <haproxy/tcp_rules.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020058#include <haproxy/thread.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +020059#include <haproxy/tools.h>
Willy Tarreaua1718922020-06-04 16:25:31 +020060#include <haproxy/vars.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020061#include <haproxy/xref.h>
62
Thierry FOURNIER380d0932015-01-23 14:27:52 +010063
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +010064/* Lua uses longjmp to perform yield or throwing errors. This
65 * macro is used only for identifying the function that can
66 * not return because a longjmp is executed.
67 * __LJMP marks a prototype of hlua file that can use longjmp.
68 * WILL_LJMP() marks an lua function that will use longjmp.
69 * MAY_LJMP() marks an lua function that may use longjmp.
70 */
71#define __LJMP
Willy Tarreau4e7cc332018-10-20 17:45:48 +020072#define WILL_LJMP(func) do { func; my_unreachable(); } while(0)
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +010073#define MAY_LJMP(func) func
74
Thierry FOURNIERbabae282015-09-17 11:36:37 +020075/* This couple of function executes securely some Lua calls outside of
76 * the lua runtime environment. Each Lua call can return a longjmp
77 * if it encounter a memory error.
78 *
79 * Lua documentation extract:
80 *
81 * If an error happens outside any protected environment, Lua calls
82 * a panic function (see lua_atpanic) and then calls abort, thus
83 * exiting the host application. Your panic function can avoid this
84 * exit by never returning (e.g., doing a long jump to your own
85 * recovery point outside Lua).
86 *
87 * The panic function runs as if it were a message handler (see
88 * §2.3); in particular, the error message is at the top of the
89 * stack. However, there is no guarantee about stack space. To push
90 * anything on the stack, the panic function must first check the
91 * available space (see §4.2).
92 *
93 * We must check all the Lua entry point. This includes:
94 * - The include/proto/hlua.h exported functions
95 * - the task wrapper function
96 * - The action wrapper function
97 * - The converters wrapper function
98 * - The sample-fetch wrapper functions
99 *
Ilya Shipitsin46a030c2020-07-05 16:36:08 +0500100 * It is tolerated that the initialisation function returns an abort.
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -0800101 * Before each Lua abort, an error message is written on stderr.
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200102 *
103 * The macro SET_SAFE_LJMP initialise the longjmp. The Macro
104 * RESET_SAFE_LJMP reset the longjmp. These function must be macro
105 * because they must be exists in the program stack when the longjmp
106 * is called.
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +0200107 *
108 * Note that the Lua processing is not really thread safe. It provides
109 * heavy system which consists to add our own lock function in the Lua
110 * code and recompile the library. This system will probably not accepted
111 * by maintainers of various distribs.
112 *
Ilya Shipitsin856aabc2020-04-16 23:51:34 +0500113 * Our main execution point of the Lua is the function lua_resume(). A
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +0200114 * quick looking on the Lua sources displays a lua_lock() a the start
115 * of function and a lua_unlock() at the end of the function. So I
116 * conclude that the Lua thread safe mode just perform a mutex around
117 * all execution. So I prefer to do this in the HAProxy code, it will be
118 * easier for distro maintainers.
119 *
120 * Note that the HAProxy lua functions rounded by the macro SET_SAFE_LJMP
121 * and RESET_SAFE_LJMP manipulates the Lua stack, so it will be careful
122 * to set mutex around these functions.
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200123 */
Willy Tarreau86abe442018-11-25 20:12:18 +0100124__decl_spinlock(hlua_global_lock);
Thierry FOURNIERffbad792017-07-12 11:39:04 +0200125THREAD_LOCAL jmp_buf safe_ljmp_env;
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200126static int hlua_panic_safe(lua_State *L) { return 0; }
Willy Tarreau69c66e32021-07-14 19:41:25 +0200127static int hlua_panic_ljmp(lua_State *L) { WILL_LJMP(longjmp(safe_ljmp_env, 1)); return 0; }
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200128
Thierry Fournier62a22aa2020-11-28 21:06:35 +0100129/* This is the chained list of struct hlua_function referenced
130 * for haproxy action, sample-fetches, converters, cli and
131 * applet bindings. It is used for a post-initialisation control.
132 */
133static struct list referenced_functions = LIST_HEAD_INIT(referenced_functions);
134
Thierry Fournierc7492592020-11-28 23:57:24 +0100135/* This variable is used only during initialization to identify the Lua state
136 * currently being initialized. 0 is the common lua state, 1 to n are the Lua
137 * states dedicated to each thread (in this case hlua_state_id==tid+1).
138 */
139static int hlua_state_id;
140
Thierry Fournier59f11be2020-11-29 00:37:41 +0100141/* This is a NULL-terminated list of lua file which are referenced to load per thread */
142static char **per_thread_load = NULL;
143
144lua_State *hlua_init_state(int thread_id);
145
Willy Tarreau3eb2e472021-08-20 15:47:25 +0200146/* This function takes the Lua global lock. Keep this function's visibility
147 * global so that it can appear in stack dumps and performance profiles!
148 */
Aurelien DARRAGONe00bf5d2023-03-21 13:22:33 +0100149static inline void lua_take_global_lock()
Willy Tarreau3eb2e472021-08-20 15:47:25 +0200150{
151 HA_SPIN_LOCK(LUA_LOCK, &hlua_global_lock);
152}
153
154static inline void lua_drop_global_lock()
155{
156 HA_SPIN_UNLOCK(LUA_LOCK, &hlua_global_lock);
157}
158
Aurelien DARRAGON5483bde2023-03-21 14:02:16 +0100159/* lua lock helpers: only lock when required
160 *
161 * state_id == 0: we're operating on the main lua stack (shared between
162 * os threads), so we need to acquire the main lock
163 *
164 * If the thread already owns the lock (_hlua_locked != 0), skip the lock
165 * attempt. This could happen if we run under protected lua environment.
166 * Not doing this could result in deadlocks because of nested locking
167 * attempts from the same thread
168 */
169static THREAD_LOCAL int _hlua_locked = 0;
Aurelien DARRAGONe00bf5d2023-03-21 13:22:33 +0100170static inline void hlua_lock(struct hlua *hlua)
171{
Aurelien DARRAGON5483bde2023-03-21 14:02:16 +0100172 if (hlua->state_id != 0)
173 return;
174 if (!_hlua_locked)
Aurelien DARRAGONe00bf5d2023-03-21 13:22:33 +0100175 lua_take_global_lock();
Aurelien DARRAGON5483bde2023-03-21 14:02:16 +0100176 _hlua_locked += 1;
Aurelien DARRAGONe00bf5d2023-03-21 13:22:33 +0100177}
178static inline void hlua_unlock(struct hlua *hlua)
179{
Aurelien DARRAGON5483bde2023-03-21 14:02:16 +0100180 if (hlua->state_id != 0)
181 return;
182 BUG_ON(_hlua_locked <= 0);
183 _hlua_locked--;
184 /* drop the lock once the lock count reaches 0 */
185 if (!_hlua_locked)
Aurelien DARRAGONe00bf5d2023-03-21 13:22:33 +0100186 lua_drop_global_lock();
187}
188
Thierry Fournier7cbe5042020-11-28 17:02:21 +0100189#define SET_SAFE_LJMP_L(__L, __HLUA) \
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200190 ({ \
191 int ret; \
Aurelien DARRAGONe00bf5d2023-03-21 13:22:33 +0100192 hlua_lock(__HLUA); \
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200193 if (setjmp(safe_ljmp_env) != 0) { \
194 lua_atpanic(__L, hlua_panic_safe); \
195 ret = 0; \
Aurelien DARRAGONe00bf5d2023-03-21 13:22:33 +0100196 hlua_unlock(__HLUA); \
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200197 } else { \
198 lua_atpanic(__L, hlua_panic_ljmp); \
199 ret = 1; \
200 } \
201 ret; \
202 })
203
204/* If we are the last function catching Lua errors, we
205 * must reset the panic function.
206 */
Thierry Fournier7cbe5042020-11-28 17:02:21 +0100207#define RESET_SAFE_LJMP_L(__L, __HLUA) \
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200208 do { \
209 lua_atpanic(__L, hlua_panic_safe); \
Aurelien DARRAGONe00bf5d2023-03-21 13:22:33 +0100210 hlua_unlock(__HLUA); \
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200211 } while(0)
212
Thierry Fournier7cbe5042020-11-28 17:02:21 +0100213#define SET_SAFE_LJMP(__HLUA) \
214 SET_SAFE_LJMP_L((__HLUA)->T, __HLUA)
215
216#define RESET_SAFE_LJMP(__HLUA) \
217 RESET_SAFE_LJMP_L((__HLUA)->T, __HLUA)
218
219#define SET_SAFE_LJMP_PARENT(__HLUA) \
Thierry Fournier021d9862020-11-28 23:42:03 +0100220 SET_SAFE_LJMP_L(hlua_states[(__HLUA)->state_id], __HLUA)
Thierry Fournier7cbe5042020-11-28 17:02:21 +0100221
222#define RESET_SAFE_LJMP_PARENT(__HLUA) \
Thierry Fournier021d9862020-11-28 23:42:03 +0100223 RESET_SAFE_LJMP_L(hlua_states[(__HLUA)->state_id], __HLUA)
Thierry Fournier7cbe5042020-11-28 17:02:21 +0100224
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +0200225/* Applet status flags */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200226#define APPLET_DONE 0x01 /* applet processing is done. */
Christopher Faulet18c2e8d2019-03-01 12:02:08 +0100227/* unused: 0x02 */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200228#define APPLET_HDR_SENT 0x04 /* Response header sent. */
Christopher Fauleta2097962019-07-15 16:25:33 +0200229/* unused: 0x08, 0x10 */
Thierry FOURNIERd93ea2b2015-12-20 19:14:52 +0100230#define APPLET_HTTP11 0x20 /* Last chunk sent. */
Christopher Faulet56a3d6e2019-02-27 22:06:23 +0100231#define APPLET_RSP_SENT 0x40 /* The response was fully sent */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200232
Thierry Fournierafc63e22020-11-28 17:06:51 +0100233/* The main Lua execution context. The 0 index is the
234 * common state shared by all threads.
235 */
Willy Tarreau186f3762020-12-04 11:48:12 +0100236static lua_State *hlua_states[MAX_THREADS + 1];
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100237
Thierry FOURNIERebed6e92016-12-16 11:54:07 +0100238/* This is the memory pool containing struct lua for applets
239 * (including cli).
240 */
Willy Tarreau8ceae722018-11-26 11:58:30 +0100241DECLARE_STATIC_POOL(pool_head_hlua, "hlua", sizeof(struct hlua));
Thierry FOURNIERebed6e92016-12-16 11:54:07 +0100242
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +0100243/* Used for Socket connection. */
Amaury Denoyelle239fdbf2021-03-24 10:22:03 +0100244static struct proxy *socket_proxy;
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +0100245static struct server *socket_tcp;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +0100246#ifdef USE_OPENSSL
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +0100247static struct server *socket_ssl;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +0100248#endif
249
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +0100250/* List head of the function called at the initialisation time. */
Thierry Fournierc7492592020-11-28 23:57:24 +0100251struct list hlua_init_functions[MAX_THREADS + 1];
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +0100252
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +0100253/* The following variables contains the reference of the different
254 * Lua classes. These references are useful for identify metadata
255 * associated with an object.
256 */
Thierry FOURNIER65f34c62015-02-16 20:11:43 +0100257static int class_txn_ref;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +0100258static int class_socket_ref;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +0100259static int class_channel_ref;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +0100260static int class_fetches_ref;
Thierry FOURNIER594afe72015-03-10 23:58:30 +0100261static int class_converters_ref;
Thierry FOURNIER08504f42015-03-16 14:17:08 +0100262static int class_http_ref;
Thierry FOURNIER3def3932015-04-07 11:27:54 +0200263static int class_map_ref;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +0200264static int class_applet_tcp_ref;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200265static int class_applet_http_ref;
Christopher Faulet700d9e82020-01-31 12:21:52 +0100266static int class_txn_reply_ref;
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +0100267
Thierry FOURNIERbd413492015-03-03 16:52:26 +0100268/* Global Lua execution timeout. By default Lua, execution linked
Willy Tarreau87b09662015-04-03 00:22:06 +0200269 * with stream (actions, sample-fetches and converters) have a
Thierry FOURNIERbd413492015-03-03 16:52:26 +0100270 * short timeout. Lua linked with tasks doesn't have a timeout
271 * because a task may remain alive during all the haproxy execution.
272 */
273static unsigned int hlua_timeout_session = 4000; /* session timeout. */
274static unsigned int hlua_timeout_task = TICK_ETERNITY; /* task timeout. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +0200275static unsigned int hlua_timeout_applet = 4000; /* applet timeout. */
Thierry FOURNIERbd413492015-03-03 16:52:26 +0100276
Thierry FOURNIERee9f8022015-03-03 17:37:37 +0100277/* Interrupts the Lua processing each "hlua_nb_instruction" instructions.
278 * it is used for preventing infinite loops.
279 *
280 * I test the scheer with an infinite loop containing one incrementation
281 * and one test. I run this loop between 10 seconds, I raise a ceil of
282 * 710M loops from one interrupt each 9000 instructions, so I fix the value
283 * to one interrupt each 10 000 instructions.
284 *
285 * configured | Number of
286 * instructions | loops executed
287 * between two | in milions
288 * forced yields |
289 * ---------------+---------------
290 * 10 | 160
291 * 500 | 670
292 * 1000 | 680
293 * 5000 | 700
294 * 7000 | 700
295 * 8000 | 700
296 * 9000 | 710 <- ceil
297 * 10000 | 710
298 * 100000 | 710
299 * 1000000 | 710
300 *
301 */
302static unsigned int hlua_nb_instruction = 10000;
303
Willy Tarreaucdb53462020-12-02 12:12:00 +0100304/* Descriptor for the memory allocation state. The limit is pre-initialised to
305 * 0 until it is replaced by "tune.lua.maxmem" during the config parsing, or it
306 * is replaced with ~0 during post_init after everything was loaded. This way
307 * it is guaranteed that if limit is ~0 the boot is complete and that if it's
308 * zero it's not yet limited and proper accounting is required.
Willy Tarreau32f61e22015-03-18 17:54:59 +0100309 */
310struct hlua_mem_allocator {
311 size_t allocated;
312 size_t limit;
313};
314
Willy Tarreaucdb53462020-12-02 12:12:00 +0100315static struct hlua_mem_allocator hlua_global_allocator THREAD_ALIGNED(64);
Willy Tarreau32f61e22015-03-18 17:54:59 +0100316
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100317/* These functions converts types between HAProxy internal args or
318 * sample and LUA types. Another function permits to check if the
319 * LUA stack contains arguments according with an required ARG_T
320 * format.
321 */
322static int hlua_arg2lua(lua_State *L, const struct arg *arg);
323static int hlua_lua2arg(lua_State *L, int ud, struct arg *arg);
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100324__LJMP static int hlua_lua2arg_check(lua_State *L, int first, struct arg *argp,
David Carlier0c437f42016-04-27 16:21:56 +0100325 uint64_t mask, struct proxy *p);
Willy Tarreau5eadada2015-03-10 17:28:54 +0100326static int hlua_smp2lua(lua_State *L, struct sample *smp);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100327static int hlua_smp2lua_str(lua_State *L, struct sample *smp);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100328static int hlua_lua2smp(lua_State *L, int ud, struct sample *smp);
329
Christopher Faulet9d1332b2020-02-24 16:46:16 +0100330__LJMP static int hlua_http_get_headers(lua_State *L, struct http_msg *msg);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200331
Thierry Fournier59f11be2020-11-29 00:37:41 +0100332struct prepend_path {
333 struct list l;
334 char *type;
335 char *path;
336};
337
338static struct list prepend_path_list = LIST_HEAD_INIT(prepend_path_list);
339
Thierry FOURNIER23bc3752015-09-11 19:15:43 +0200340#define SEND_ERR(__be, __fmt, __args...) \
341 do { \
342 send_log(__be, LOG_ERR, __fmt, ## __args); \
343 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) \
Christopher Faulet767a84b2017-11-24 16:50:31 +0100344 ha_alert(__fmt, ## __args); \
Thierry FOURNIER23bc3752015-09-11 19:15:43 +0200345 } while (0)
346
Thierry Fournier62a22aa2020-11-28 21:06:35 +0100347static inline struct hlua_function *new_hlua_function()
348{
349 struct hlua_function *fcn;
Thierry Fournierc7492592020-11-28 23:57:24 +0100350 int i;
Thierry Fournier62a22aa2020-11-28 21:06:35 +0100351
352 fcn = calloc(1, sizeof(*fcn));
353 if (!fcn)
354 return NULL;
Willy Tarreau2b718102021-04-21 07:32:39 +0200355 LIST_APPEND(&referenced_functions, &fcn->l);
Thierry Fournierc7492592020-11-28 23:57:24 +0100356 for (i = 0; i < MAX_THREADS + 1; i++)
357 fcn->function_ref[i] = -1;
Thierry Fournier62a22aa2020-11-28 21:06:35 +0100358 return fcn;
359}
360
Christopher Fauletdda44442021-04-12 14:05:43 +0200361static inline void release_hlua_function(struct hlua_function *fcn)
362{
363 if (!fcn)
364 return;
365 if (fcn->name)
366 ha_free(&fcn->name);
Willy Tarreau2b718102021-04-21 07:32:39 +0200367 LIST_DELETE(&fcn->l);
Christopher Fauletdda44442021-04-12 14:05:43 +0200368 ha_free(&fcn);
369}
370
Thierry Fournierc7492592020-11-28 23:57:24 +0100371/* If the common state is set, the stack id is 0, otherwise it is the tid + 1 */
372static inline int fcn_ref_to_stack_id(struct hlua_function *fcn)
373{
374 if (fcn->function_ref[0] == -1)
375 return tid + 1;
376 return 0;
377}
378
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100379/* Used to check an Lua function type in the stack. It creates and
380 * returns a reference of the function. This function throws an
Aurelien DARRAGON5ce11522023-03-02 17:50:49 +0100381 * error if the argument is not a "function".
382 * When no longer used, the ref must be released with hlua_unref()
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100383 */
384__LJMP unsigned int hlua_checkfunction(lua_State *L, int argno)
385{
386 if (!lua_isfunction(L, argno)) {
Thierry FOURNIERfd1e9552018-02-23 18:41:18 +0100387 const char *msg = lua_pushfstring(L, "function expected, got %s", luaL_typename(L, argno));
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100388 WILL_LJMP(luaL_argerror(L, argno, msg));
389 }
390 lua_pushvalue(L, argno);
391 return luaL_ref(L, LUA_REGISTRYINDEX);
392}
393
Christopher Fauletddc90322020-02-25 10:20:04 +0100394/* Used to check an Lua table type in the stack. It creates and
395 * returns a reference of the table. This function throws an
Aurelien DARRAGON5ce11522023-03-02 17:50:49 +0100396 * error if the argument is not a "table".
397 * When no longer used, the ref must be released with hlua_unref()
Christopher Fauletddc90322020-02-25 10:20:04 +0100398 */
399__LJMP unsigned int hlua_checktable(lua_State *L, int argno)
400{
401 if (!lua_istable(L, argno)) {
402 const char *msg = lua_pushfstring(L, "table expected, got %s", luaL_typename(L, argno));
403 WILL_LJMP(luaL_argerror(L, argno, msg));
404 }
405 lua_pushvalue(L, argno);
406 return luaL_ref(L, LUA_REGISTRYINDEX);
407}
408
Aurelien DARRAGON5ce11522023-03-02 17:50:49 +0100409/* Get a reference to the object that is at the top of the stack
410 * The referenced object will be popped from the stack
411 *
412 * The function returns the reference to the object which must
413 * be cleared using hlua_unref() when no longer used
414 */
415__LJMP int hlua_ref(lua_State *L)
416{
417 return MAY_LJMP(luaL_ref(L, LUA_REGISTRYINDEX));
418}
419
420/* Pushes a reference previously created using luaL_ref(L, LUA_REGISTRYINDEX)
421 * on <L> stack
422 * (ie: hlua_checkfunction(), hlua_checktable() or hlua_ref())
423 *
424 * When the reference is no longer used, it should be released by calling
425 * hlua_unref()
426 *
427 * <L> can be from any co-routine as long as it belongs to the same lua
428 * parent state that the one used to get the reference.
429 */
430void hlua_pushref(lua_State *L, int ref)
431{
432 lua_rawgeti(L, LUA_REGISTRYINDEX, ref);
433}
434
435/* Releases a reference previously created using luaL_ref(L, LUA_REGISTRYINDEX)
436 * (ie: hlua_checkfunction(), hlua_checktable() or hlua_ref())
437 *
438 * This will allow the reference to be reused and the referred object
439 * to be garbage collected.
440 *
441 * <L> can be from any co-routine as long as it belongs to the same lua
442 * parent state that the one used to get the reference.
443 */
444void hlua_unref(lua_State *L, int ref)
445{
446 luaL_unref(L, LUA_REGISTRYINDEX, ref);
447}
448
Christopher Fauletd09cc512021-03-24 14:48:45 +0100449__LJMP const char *hlua_traceback(lua_State *L, const char* sep)
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200450{
451 lua_Debug ar;
452 int level = 0;
Willy Tarreau83061a82018-07-13 11:56:34 +0200453 struct buffer *msg = get_trash_chunk();
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200454
455 while (lua_getstack(L, level++, &ar)) {
456
457 /* Add separator */
Christopher Fauletd09cc512021-03-24 14:48:45 +0100458 if (b_data(msg))
459 chunk_appendf(msg, "%s", sep);
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200460
461 /* Fill fields:
462 * 'S': fills in the fields source, short_src, linedefined, lastlinedefined, and what;
463 * 'l': fills in the field currentline;
464 * 'n': fills in the field name and namewhat;
465 * 't': fills in the field istailcall;
466 */
467 lua_getinfo(L, "Slnt", &ar);
468
469 /* Append code localisation */
470 if (ar.currentline > 0)
Christopher Fauletd09cc512021-03-24 14:48:45 +0100471 chunk_appendf(msg, "%s:%d: ", ar.short_src, ar.currentline);
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200472 else
Christopher Fauletd09cc512021-03-24 14:48:45 +0100473 chunk_appendf(msg, "%s: ", ar.short_src);
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200474
475 /*
476 * Get function name
477 *
478 * if namewhat is no empty, name is defined.
479 * what contains "Lua" for Lua function, "C" for C function,
480 * or "main" for main code.
481 */
482 if (*ar.namewhat != '\0' && ar.name != NULL) /* is there a name from code? */
Christopher Fauletd09cc512021-03-24 14:48:45 +0100483 chunk_appendf(msg, "in %s '%s'", ar.namewhat, ar.name); /* use it */
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200484
485 else if (*ar.what == 'm') /* "main", the code is not executed in a function */
Christopher Fauletd09cc512021-03-24 14:48:45 +0100486 chunk_appendf(msg, "in main chunk");
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200487
488 else if (*ar.what != 'C') /* for Lua functions, use <file:line> */
Christopher Fauletd09cc512021-03-24 14:48:45 +0100489 chunk_appendf(msg, "in function line %d", ar.linedefined);
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200490
491 else /* nothing left... */
492 chunk_appendf(msg, "?");
493
494
495 /* Display tailed call */
496 if (ar.istailcall)
497 chunk_appendf(msg, " ...");
498 }
499
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200500 return msg->area;
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200501}
502
503
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100504/* This function check the number of arguments available in the
505 * stack. If the number of arguments available is not the same
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +0500506 * then <nb> an error is thrown.
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100507 */
508__LJMP static inline void check_args(lua_State *L, int nb, char *fcn)
509{
510 if (lua_gettop(L) == nb)
511 return;
512 WILL_LJMP(luaL_error(L, "'%s' needs %d arguments", fcn, nb));
513}
514
Mark Lakes22154b42018-01-29 14:38:40 -0800515/* This function pushes an error string prefixed by the file name
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100516 * and the line number where the error is encountered.
517 */
518static int hlua_pusherror(lua_State *L, const char *fmt, ...)
519{
520 va_list argp;
521 va_start(argp, fmt);
522 luaL_where(L, 1);
523 lua_pushvfstring(L, fmt, argp);
524 va_end(argp);
525 lua_concat(L, 2);
526 return 1;
527}
528
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100529/* This functions is used with sample fetch and converters. It
530 * converts the HAProxy configuration argument in a lua stack
531 * values.
532 *
533 * It takes an array of "arg", and each entry of the array is
534 * converted and pushed in the LUA stack.
535 */
536static int hlua_arg2lua(lua_State *L, const struct arg *arg)
537{
538 switch (arg->type) {
539 case ARGT_SINT:
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100540 case ARGT_TIME:
541 case ARGT_SIZE:
Thierry FOURNIERf90838b2015-03-06 13:48:32 +0100542 lua_pushinteger(L, arg->data.sint);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100543 break;
544
545 case ARGT_STR:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200546 lua_pushlstring(L, arg->data.str.area, arg->data.str.data);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100547 break;
548
549 case ARGT_IPV4:
550 case ARGT_IPV6:
551 case ARGT_MSK4:
552 case ARGT_MSK6:
553 case ARGT_FE:
554 case ARGT_BE:
555 case ARGT_TAB:
556 case ARGT_SRV:
557 case ARGT_USR:
558 case ARGT_MAP:
559 default:
560 lua_pushnil(L);
561 break;
562 }
563 return 1;
564}
565
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +0500566/* This function take one entry in an LUA stack at the index "ud",
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100567 * and try to convert it in an HAProxy argument entry. This is useful
Ilya Shipitsind4259502020-04-08 01:07:56 +0500568 * with sample fetch wrappers. The input arguments are given to the
569 * lua wrapper and converted as arg list by the function.
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100570 */
571static int hlua_lua2arg(lua_State *L, int ud, struct arg *arg)
572{
573 switch (lua_type(L, ud)) {
574
575 case LUA_TNUMBER:
576 case LUA_TBOOLEAN:
577 arg->type = ARGT_SINT;
578 arg->data.sint = lua_tointeger(L, ud);
579 break;
580
581 case LUA_TSTRING:
582 arg->type = ARGT_STR;
Tim Duesterhus2e89dec2019-09-29 23:03:08 +0200583 arg->data.str.area = (char *)lua_tolstring(L, ud, &arg->data.str.data);
Tim Duesterhus29d2e8a2019-09-29 23:03:07 +0200584 /* We don't know the actual size of the underlying allocation, so be conservative. */
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200585 arg->data.str.size = arg->data.str.data+1; /* count the terminating null byte */
Tim Duesterhus29d2e8a2019-09-29 23:03:07 +0200586 arg->data.str.head = 0;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100587 break;
588
589 case LUA_TUSERDATA:
590 case LUA_TNIL:
591 case LUA_TTABLE:
592 case LUA_TFUNCTION:
593 case LUA_TTHREAD:
594 case LUA_TLIGHTUSERDATA:
595 arg->type = ARGT_SINT;
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +0200596 arg->data.sint = 0;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100597 break;
598 }
599 return 1;
600}
601
602/* the following functions are used to convert a struct sample
603 * in Lua type. This useful to convert the return of the
Ilya Shipitsind4259502020-04-08 01:07:56 +0500604 * fetches or converters.
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100605 */
Willy Tarreau5eadada2015-03-10 17:28:54 +0100606static int hlua_smp2lua(lua_State *L, struct sample *smp)
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100607{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200608 switch (smp->data.type) {
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100609 case SMP_T_SINT:
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100610 case SMP_T_BOOL:
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200611 lua_pushinteger(L, smp->data.u.sint);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100612 break;
613
614 case SMP_T_BIN:
615 case SMP_T_STR:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200616 lua_pushlstring(L, smp->data.u.str.area, smp->data.u.str.data);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100617 break;
618
619 case SMP_T_METH:
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200620 switch (smp->data.u.meth.meth) {
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100621 case HTTP_METH_OPTIONS: lua_pushstring(L, "OPTIONS"); break;
622 case HTTP_METH_GET: lua_pushstring(L, "GET"); break;
623 case HTTP_METH_HEAD: lua_pushstring(L, "HEAD"); break;
624 case HTTP_METH_POST: lua_pushstring(L, "POST"); break;
625 case HTTP_METH_PUT: lua_pushstring(L, "PUT"); break;
626 case HTTP_METH_DELETE: lua_pushstring(L, "DELETE"); break;
627 case HTTP_METH_TRACE: lua_pushstring(L, "TRACE"); break;
628 case HTTP_METH_CONNECT: lua_pushstring(L, "CONNECT"); break;
629 case HTTP_METH_OTHER:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200630 lua_pushlstring(L, smp->data.u.meth.str.area, smp->data.u.meth.str.data);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100631 break;
632 default:
633 lua_pushnil(L);
634 break;
635 }
636 break;
637
638 case SMP_T_IPV4:
639 case SMP_T_IPV6:
640 case SMP_T_ADDR: /* This type is never used to qualify a sample. */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200641 if (sample_casts[smp->data.type][SMP_T_STR] &&
642 sample_casts[smp->data.type][SMP_T_STR](smp))
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200643 lua_pushlstring(L, smp->data.u.str.area, smp->data.u.str.data);
Willy Tarreau5eadada2015-03-10 17:28:54 +0100644 else
645 lua_pushnil(L);
646 break;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100647 default:
648 lua_pushnil(L);
649 break;
650 }
651 return 1;
652}
653
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100654/* the following functions are used to convert a struct sample
655 * in Lua strings. This is useful to convert the return of the
Ilya Shipitsind4259502020-04-08 01:07:56 +0500656 * fetches or converters.
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100657 */
658static int hlua_smp2lua_str(lua_State *L, struct sample *smp)
659{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200660 switch (smp->data.type) {
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100661
662 case SMP_T_BIN:
663 case SMP_T_STR:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200664 lua_pushlstring(L, smp->data.u.str.area, smp->data.u.str.data);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100665 break;
666
667 case SMP_T_METH:
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200668 switch (smp->data.u.meth.meth) {
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100669 case HTTP_METH_OPTIONS: lua_pushstring(L, "OPTIONS"); break;
670 case HTTP_METH_GET: lua_pushstring(L, "GET"); break;
671 case HTTP_METH_HEAD: lua_pushstring(L, "HEAD"); break;
672 case HTTP_METH_POST: lua_pushstring(L, "POST"); break;
673 case HTTP_METH_PUT: lua_pushstring(L, "PUT"); break;
674 case HTTP_METH_DELETE: lua_pushstring(L, "DELETE"); break;
675 case HTTP_METH_TRACE: lua_pushstring(L, "TRACE"); break;
676 case HTTP_METH_CONNECT: lua_pushstring(L, "CONNECT"); break;
677 case HTTP_METH_OTHER:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200678 lua_pushlstring(L, smp->data.u.meth.str.area, smp->data.u.meth.str.data);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100679 break;
680 default:
681 lua_pushstring(L, "");
682 break;
683 }
684 break;
685
686 case SMP_T_SINT:
687 case SMP_T_BOOL:
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100688 case SMP_T_IPV4:
689 case SMP_T_IPV6:
690 case SMP_T_ADDR: /* This type is never used to qualify a sample. */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200691 if (sample_casts[smp->data.type][SMP_T_STR] &&
692 sample_casts[smp->data.type][SMP_T_STR](smp))
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200693 lua_pushlstring(L, smp->data.u.str.area, smp->data.u.str.data);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100694 else
695 lua_pushstring(L, "");
696 break;
697 default:
698 lua_pushstring(L, "");
699 break;
700 }
701 return 1;
702}
703
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100704/* the following functions are used to convert an Lua type in a
705 * struct sample. This is useful to provide data from a converter
706 * to the LUA code.
707 */
708static int hlua_lua2smp(lua_State *L, int ud, struct sample *smp)
709{
710 switch (lua_type(L, ud)) {
711
712 case LUA_TNUMBER:
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200713 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200714 smp->data.u.sint = lua_tointeger(L, ud);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100715 break;
716
717
718 case LUA_TBOOLEAN:
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200719 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200720 smp->data.u.sint = lua_toboolean(L, ud);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100721 break;
722
723 case LUA_TSTRING:
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200724 smp->data.type = SMP_T_STR;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100725 smp->flags |= SMP_F_CONST;
Tim Duesterhus2e89dec2019-09-29 23:03:08 +0200726 smp->data.u.str.area = (char *)lua_tolstring(L, ud, &smp->data.u.str.data);
Tim Duesterhus29d2e8a2019-09-29 23:03:07 +0200727 /* We don't know the actual size of the underlying allocation, so be conservative. */
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200728 smp->data.u.str.size = smp->data.u.str.data+1; /* count the terminating null byte */
Tim Duesterhus29d2e8a2019-09-29 23:03:07 +0200729 smp->data.u.str.head = 0;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100730 break;
731
732 case LUA_TUSERDATA:
733 case LUA_TNIL:
734 case LUA_TTABLE:
735 case LUA_TFUNCTION:
736 case LUA_TTHREAD:
737 case LUA_TLIGHTUSERDATA:
Thierry FOURNIER93405e12015-08-26 14:19:03 +0200738 case LUA_TNONE:
739 default:
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200740 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200741 smp->data.u.sint = 0;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100742 break;
743 }
744 return 1;
745}
746
Ilya Shipitsind4259502020-04-08 01:07:56 +0500747/* This function check the "argp" built by another conversion function
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -0800748 * is in accord with the expected argp defined by the "mask". The function
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100749 * returns true or false. It can be adjust the types if there compatibles.
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100750 *
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +0500751 * This function assumes that the argp argument contains ARGM_NBARGS + 1
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100752 * entries.
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100753 */
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100754__LJMP int hlua_lua2arg_check(lua_State *L, int first, struct arg *argp,
David Carlier0c437f42016-04-27 16:21:56 +0100755 uint64_t mask, struct proxy *p)
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100756{
757 int min_arg;
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200758 int i, idx;
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100759 struct proxy *px;
Christopher Fauletd25d9262020-08-06 11:04:46 +0200760 struct userlist *ul;
Christopher Fauletfd2e9062020-08-06 11:10:57 +0200761 struct my_regex *reg;
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200762 const char *msg = NULL;
Christopher Fauletfd2e9062020-08-06 11:10:57 +0200763 char *sname, *pname, *err = NULL;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100764
765 idx = 0;
766 min_arg = ARGM(mask);
767 mask >>= ARGM_BITS;
768
769 while (1) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200770 struct buffer tmp = BUF_NULL;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100771
772 /* Check oversize. */
773 if (idx >= ARGM_NBARGS && argp[idx].type != ARGT_STOP) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200774 msg = "Malformed argument mask";
775 goto error;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100776 }
777
778 /* Check for mandatory arguments. */
779 if (argp[idx].type == ARGT_STOP) {
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100780 if (idx < min_arg) {
781
782 /* If miss other argument than the first one, we return an error. */
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200783 if (idx > 0) {
784 msg = "Mandatory argument expected";
785 goto error;
786 }
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100787
788 /* If first argument have a certain type, some default values
789 * may be used. See the function smp_resolve_args().
790 */
791 switch (mask & ARGT_MASK) {
792
793 case ARGT_FE:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200794 if (!(p->cap & PR_CAP_FE)) {
795 msg = "Mandatory argument expected";
796 goto error;
797 }
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100798 argp[idx].data.prx = p;
799 argp[idx].type = ARGT_FE;
800 argp[idx+1].type = ARGT_STOP;
801 break;
802
803 case ARGT_BE:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200804 if (!(p->cap & PR_CAP_BE)) {
805 msg = "Mandatory argument expected";
806 goto error;
807 }
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100808 argp[idx].data.prx = p;
809 argp[idx].type = ARGT_BE;
810 argp[idx+1].type = ARGT_STOP;
811 break;
812
813 case ARGT_TAB:
Olivier Houcharda2658272022-09-13 00:35:53 +0200814 if (!p->table) {
815 msg = "Mandatory argument expected";
816 goto error;
817 }
818 argp[idx].data.t = p->table;
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100819 argp[idx].type = ARGT_TAB;
820 argp[idx+1].type = ARGT_STOP;
821 break;
822
823 default:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200824 msg = "Mandatory argument expected";
825 goto error;
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100826 break;
827 }
828 }
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200829 break;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100830 }
831
Ilya Shipitsin856aabc2020-04-16 23:51:34 +0500832 /* Check for exceed the number of required argument. */
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100833 if ((mask & ARGT_MASK) == ARGT_STOP &&
834 argp[idx].type != ARGT_STOP) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200835 msg = "Last argument expected";
836 goto error;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100837 }
838
839 if ((mask & ARGT_MASK) == ARGT_STOP &&
840 argp[idx].type == ARGT_STOP) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200841 break;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100842 }
843
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200844 /* Convert some argument types. All string in argp[] are for not
845 * duplicated yet.
846 */
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100847 switch (mask & ARGT_MASK) {
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100848 case ARGT_SINT:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200849 if (argp[idx].type != ARGT_SINT) {
850 msg = "integer expected";
851 goto error;
852 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100853 argp[idx].type = ARGT_SINT;
854 break;
855
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100856 case ARGT_TIME:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200857 if (argp[idx].type != ARGT_SINT) {
858 msg = "integer expected";
859 goto error;
860 }
Thierry FOURNIER29176f32015-07-07 00:41:29 +0200861 argp[idx].type = ARGT_TIME;
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100862 break;
863
864 case ARGT_SIZE:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200865 if (argp[idx].type != ARGT_SINT) {
866 msg = "integer expected";
867 goto error;
868 }
Thierry FOURNIER29176f32015-07-07 00:41:29 +0200869 argp[idx].type = ARGT_SIZE;
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100870 break;
871
872 case ARGT_FE:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200873 if (argp[idx].type != ARGT_STR) {
874 msg = "string expected";
875 goto error;
876 }
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200877 argp[idx].data.prx = proxy_fe_by_name(argp[idx].data.str.area);
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200878 if (!argp[idx].data.prx) {
879 msg = "frontend doesn't exist";
880 goto error;
881 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100882 argp[idx].type = ARGT_FE;
883 break;
884
885 case ARGT_BE:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200886 if (argp[idx].type != ARGT_STR) {
887 msg = "string expected";
888 goto error;
889 }
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200890 argp[idx].data.prx = proxy_be_by_name(argp[idx].data.str.area);
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200891 if (!argp[idx].data.prx) {
892 msg = "backend doesn't exist";
893 goto error;
894 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100895 argp[idx].type = ARGT_BE;
896 break;
897
898 case ARGT_TAB:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200899 if (argp[idx].type != ARGT_STR) {
900 msg = "string expected";
901 goto error;
902 }
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200903 argp[idx].data.t = stktable_find_by_name(argp[idx].data.str.area);
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200904 if (!argp[idx].data.t) {
905 msg = "table doesn't exist";
906 goto error;
907 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100908 argp[idx].type = ARGT_TAB;
909 break;
910
911 case ARGT_SRV:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200912 if (argp[idx].type != ARGT_STR) {
913 msg = "string expected";
914 goto error;
915 }
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200916 sname = strrchr(argp[idx].data.str.area, '/');
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100917 if (sname) {
918 *sname++ = '\0';
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200919 pname = argp[idx].data.str.area;
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200920 px = proxy_be_by_name(pname);
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200921 if (!px) {
922 msg = "backend doesn't exist";
923 goto error;
924 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100925 }
926 else {
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200927 sname = argp[idx].data.str.area;
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100928 px = p;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100929 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100930 argp[idx].data.srv = findserver(px, sname);
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200931 if (!argp[idx].data.srv) {
932 msg = "server doesn't exist";
933 goto error;
934 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100935 argp[idx].type = ARGT_SRV;
936 break;
937
938 case ARGT_IPV4:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200939 if (argp[idx].type != ARGT_STR) {
940 msg = "string expected";
941 goto error;
942 }
943 if (inet_pton(AF_INET, argp[idx].data.str.area, &argp[idx].data.ipv4)) {
944 msg = "invalid IPv4 address";
945 goto error;
946 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100947 argp[idx].type = ARGT_IPV4;
948 break;
949
950 case ARGT_MSK4:
Christopher Faulete663a6e2020-08-07 09:11:22 +0200951 if (argp[idx].type == ARGT_SINT)
952 len2mask4(argp[idx].data.sint, &argp[idx].data.ipv4);
953 else if (argp[idx].type == ARGT_STR) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200954 if (!str2mask(argp[idx].data.str.area, &argp[idx].data.ipv4)) {
955 msg = "invalid IPv4 mask";
956 goto error;
957 }
958 }
959 else {
960 msg = "integer or string expected";
961 goto error;
Christopher Faulete663a6e2020-08-07 09:11:22 +0200962 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100963 argp[idx].type = ARGT_MSK4;
964 break;
965
966 case ARGT_IPV6:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200967 if (argp[idx].type != ARGT_STR) {
968 msg = "string expected";
969 goto error;
970 }
971 if (inet_pton(AF_INET6, argp[idx].data.str.area, &argp[idx].data.ipv6)) {
972 msg = "invalid IPv6 address";
973 goto error;
974 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100975 argp[idx].type = ARGT_IPV6;
976 break;
977
978 case ARGT_MSK6:
Christopher Faulete663a6e2020-08-07 09:11:22 +0200979 if (argp[idx].type == ARGT_SINT)
980 len2mask6(argp[idx].data.sint, &argp[idx].data.ipv6);
981 else if (argp[idx].type == ARGT_STR) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200982 if (!str2mask6(argp[idx].data.str.area, &argp[idx].data.ipv6)) {
983 msg = "invalid IPv6 mask";
984 goto error;
985 }
986 }
987 else {
988 msg = "integer or string expected";
989 goto error;
Christopher Faulete663a6e2020-08-07 09:11:22 +0200990 }
Tim Duesterhusb814da62018-01-25 16:24:50 +0100991 argp[idx].type = ARGT_MSK6;
992 break;
993
Christopher Fauletfd2e9062020-08-06 11:10:57 +0200994 case ARGT_REG:
995 if (argp[idx].type != ARGT_STR) {
996 msg = "string expected";
997 goto error;
998 }
999 reg = regex_comp(argp[idx].data.str.area, !(argp[idx].type_flags & ARGF_REG_ICASE), 1, &err);
1000 if (!reg) {
1001 msg = lua_pushfstring(L, "error compiling regex '%s' : '%s'",
1002 argp[idx].data.str.area, err);
1003 free(err);
1004 goto error;
1005 }
1006 argp[idx].type = ARGT_REG;
1007 argp[idx].data.reg = reg;
1008 break;
1009
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +01001010 case ARGT_USR:
Christopher Fauletd25d9262020-08-06 11:04:46 +02001011 if (argp[idx].type != ARGT_STR) {
1012 msg = "string expected";
1013 goto error;
1014 }
1015 if (p->uri_auth && p->uri_auth->userlist &&
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001016 strcmp(p->uri_auth->userlist->name, argp[idx].data.str.area) == 0)
Christopher Fauletd25d9262020-08-06 11:04:46 +02001017 ul = p->uri_auth->userlist;
1018 else
1019 ul = auth_find_userlist(argp[idx].data.str.area);
1020
1021 if (!ul) {
1022 msg = lua_pushfstring(L, "unable to find userlist '%s'", argp[idx].data.str.area);
1023 goto error;
1024 }
1025 argp[idx].type = ARGT_USR;
1026 argp[idx].data.usr = ul;
Christopher Fauletaec27ef2020-08-06 08:54:25 +02001027 break;
1028
1029 case ARGT_STR:
1030 if (!chunk_dup(&tmp, &argp[idx].data.str)) {
1031 msg = "unable to duplicate string arg";
1032 goto error;
1033 }
1034 argp[idx].data.str = tmp;
Thierry FOURNIER55da1652015-01-23 11:36:30 +01001035 break;
Christopher Fauletaec27ef2020-08-06 08:54:25 +02001036
Christopher Fauletd25d9262020-08-06 11:04:46 +02001037 case ARGT_MAP:
Christopher Fauletd25d9262020-08-06 11:04:46 +02001038 msg = "type not yet supported";
1039 goto error;
1040 break;
1041
Thierry FOURNIER55da1652015-01-23 11:36:30 +01001042 }
1043
1044 /* Check for type of argument. */
1045 if ((mask & ARGT_MASK) != argp[idx].type) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +02001046 msg = lua_pushfstring(L, "'%s' expected, got '%s'",
1047 arg_type_names[(mask & ARGT_MASK)],
1048 arg_type_names[argp[idx].type & ARGT_MASK]);
1049 goto error;
Thierry FOURNIER55da1652015-01-23 11:36:30 +01001050 }
1051
1052 /* Next argument. */
1053 mask >>= ARGT_BITS;
1054 idx++;
1055 }
Christopher Fauletaec27ef2020-08-06 08:54:25 +02001056 return 0;
1057
1058 error:
Olivier Houchardda25dac2022-09-13 00:31:17 +02001059 argp[idx].type = ARGT_STOP;
Christopher Fauletaec27ef2020-08-06 08:54:25 +02001060 for (i = 0; i < idx; i++) {
1061 if (argp[i].type == ARGT_STR)
1062 chunk_destroy(&argp[i].data.str);
Christopher Fauletfd2e9062020-08-06 11:10:57 +02001063 else if (argp[i].type == ARGT_REG)
1064 regex_free(argp[i].data.reg);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02001065 }
1066 WILL_LJMP(luaL_argerror(L, first + idx, msg));
1067 return 0; /* Never reached */
Thierry FOURNIER55da1652015-01-23 11:36:30 +01001068}
1069
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001070/*
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001071 * The following functions are used to make correspondence between the the
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001072 * executed lua pointer and the "struct hlua *" that contain the context.
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001073 *
1074 * - hlua_gethlua : return the hlua context associated with an lua_State.
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001075 * - hlua_sethlua : create the association between hlua context and lua_state.
1076 */
1077static inline struct hlua *hlua_gethlua(lua_State *L)
1078{
Thierry FOURNIER38c5fd62015-03-10 02:40:29 +01001079 struct hlua **hlua = lua_getextraspace(L);
1080 return *hlua;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001081}
1082static inline void hlua_sethlua(struct hlua *hlua)
1083{
Thierry FOURNIER38c5fd62015-03-10 02:40:29 +01001084 struct hlua **hlua_store = lua_getextraspace(hlua->T);
1085 *hlua_store = hlua;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001086}
1087
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01001088/* This function is used to send logs. It try to send on screen (stderr)
1089 * and on the default syslog server.
1090 */
1091static inline void hlua_sendlog(struct proxy *px, int level, const char *msg)
1092{
1093 struct tm tm;
1094 char *p;
1095
1096 /* Cleanup the log message. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001097 p = trash.area;
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01001098 for (; *msg != '\0'; msg++, p++) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001099 if (p >= trash.area + trash.size - 1) {
Thierry FOURNIERccf00632015-09-16 12:47:03 +02001100 /* Break the message if exceed the buffer size. */
1101 *(p-4) = ' ';
1102 *(p-3) = '.';
1103 *(p-2) = '.';
1104 *(p-1) = '.';
1105 break;
1106 }
Willy Tarreau90807112020-02-25 08:16:33 +01001107 if (isprint((unsigned char)*msg))
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01001108 *p = *msg;
1109 else
1110 *p = '.';
1111 }
1112 *p = '\0';
1113
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001114 send_log(px, level, "%s\n", trash.area);
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01001115 if (!(global.mode & MODE_QUIET) || (global.mode & (MODE_VERBOSE | MODE_STARTING))) {
Christopher Fauletf98d8212020-10-02 18:13:52 +02001116 if (level == LOG_DEBUG && !(global.mode & MODE_DEBUG))
1117 return;
1118
Willy Tarreaua678b432015-08-28 10:14:59 +02001119 get_localtime(date.tv_sec, &tm);
1120 fprintf(stderr, "[%s] %03d/%02d%02d%02d (%d) : %s\n",
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01001121 log_levels[level], tm.tm_yday, tm.tm_hour, tm.tm_min, tm.tm_sec,
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001122 (int)getpid(), trash.area);
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01001123 fflush(stderr);
1124 }
1125}
1126
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001127/* This function just ensure that the yield will be always
1128 * returned with a timeout and permit to set some flags
1129 */
Aurelien DARRAGONf5d3b312023-07-13 10:18:04 +02001130__LJMP void hlua_yieldk(lua_State *L, int nresults, lua_KContext ctx,
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01001131 lua_KFunction k, int timeout, unsigned int flags)
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001132{
Thierry Fournier4234dbd2020-11-28 13:18:23 +01001133 struct hlua *hlua;
1134
1135 /* Get hlua struct, or NULL if we execute from main lua state */
1136 hlua = hlua_gethlua(L);
1137 if (!hlua) {
1138 return;
1139 }
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001140
1141 /* Set the wake timeout. If timeout is required, we set
1142 * the expiration time.
1143 */
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001144 hlua->wake_time = timeout;
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001145
Thierry FOURNIER4abd3ae2015-03-03 17:29:06 +01001146 hlua->flags |= flags;
1147
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001148 /* Process the yield. */
Willy Tarreau9635e032018-10-16 17:52:55 +02001149 MAY_LJMP(lua_yieldk(L, nresults, ctx, k));
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001150}
1151
Willy Tarreau87b09662015-04-03 00:22:06 +02001152/* This function initialises the Lua environment stored in the stream.
1153 * It must be called at the start of the stream. This function creates
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001154 * an LUA coroutine. It can not be use to crete the main LUA context.
Thierry FOURNIERbabae282015-09-17 11:36:37 +02001155 *
1156 * This function is particular. it initialises a new Lua thread. If the
1157 * initialisation fails (example: out of memory error), the lua function
1158 * throws an error (longjmp).
1159 *
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001160 * This function manipulates two Lua stacks: the main and the thread. Only
Thierry FOURNIERbabae282015-09-17 11:36:37 +02001161 * the main stack can fail. The thread is not manipulated. This function
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001162 * MUST NOT manipulate the created thread stack state, because it is not
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05001163 * protected against errors thrown by the thread stack.
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001164 */
Aurelien DARRAGON5483bde2023-03-21 14:02:16 +01001165int hlua_ctx_init(struct hlua *lua, int state_id, struct task *task)
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001166{
1167 lua->Mref = LUA_REFNIL;
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01001168 lua->flags = 0;
Willy Tarreauf31af932020-01-14 09:59:38 +01001169 lua->gc_count = 0;
Christopher Fauletbc275a92020-02-26 14:55:16 +01001170 lua->wake_time = TICK_ETERNITY;
Thierry Fournier021d9862020-11-28 23:42:03 +01001171 lua->state_id = state_id;
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +01001172 LIST_INIT(&lua->com);
Aurelien DARRAGON5483bde2023-03-21 14:02:16 +01001173 if (!SET_SAFE_LJMP_PARENT(lua)) {
1174 lua->Tref = LUA_REFNIL;
1175 return 0;
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001176 }
Thierry Fournier021d9862020-11-28 23:42:03 +01001177 lua->T = lua_newthread(hlua_states[state_id]);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001178 if (!lua->T) {
1179 lua->Tref = LUA_REFNIL;
Aurelien DARRAGON5483bde2023-03-21 14:02:16 +01001180 RESET_SAFE_LJMP_PARENT(lua);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001181 return 0;
1182 }
1183 hlua_sethlua(lua);
Thierry Fournier021d9862020-11-28 23:42:03 +01001184 lua->Tref = luaL_ref(hlua_states[state_id], LUA_REGISTRYINDEX);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001185 lua->task = task;
Aurelien DARRAGON5483bde2023-03-21 14:02:16 +01001186 RESET_SAFE_LJMP_PARENT(lua);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001187 return 1;
1188}
1189
Willy Tarreau87b09662015-04-03 00:22:06 +02001190/* Used to destroy the Lua coroutine when the attached stream or task
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001191 * is destroyed. The destroy also the memory context. The struct "lua"
Aurelien DARRAGONd5c8a102023-03-01 16:45:50 +01001192 * will be freed.
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001193 */
1194void hlua_ctx_destroy(struct hlua *lua)
1195{
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01001196 if (!lua)
Thierry FOURNIERa718b292015-03-04 16:48:34 +01001197 return;
1198
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01001199 if (!lua->T)
1200 goto end;
1201
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +01001202 /* Purge all the pending signals. */
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001203 notification_purge(&lua->com);
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +01001204
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001205 if (!SET_SAFE_LJMP(lua))
Thierry FOURNIER75d02082017-07-12 13:41:33 +02001206 return;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001207 luaL_unref(lua->T, LUA_REGISTRYINDEX, lua->Mref);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001208 RESET_SAFE_LJMP(lua);
Thierry FOURNIER5a50a852015-09-23 16:59:28 +02001209
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001210 if (!SET_SAFE_LJMP_PARENT(lua))
Thierry FOURNIER75d02082017-07-12 13:41:33 +02001211 return;
Thierry Fournier021d9862020-11-28 23:42:03 +01001212 luaL_unref(hlua_states[lua->state_id], LUA_REGISTRYINDEX, lua->Tref);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001213 RESET_SAFE_LJMP_PARENT(lua);
Thierry FOURNIER5a50a852015-09-23 16:59:28 +02001214 /* Forces a garbage collecting process. If the Lua program is finished
1215 * without error, we run the GC on the thread pointer. Its freed all
1216 * the unused memory.
1217 * If the thread is finnish with an error or is currently yielded,
1218 * it seems that the GC applied on the thread doesn't clean anything,
1219 * so e run the GC on the main thread.
1220 * NOTE: maybe this action locks all the Lua threads untiml the en of
1221 * the garbage collection.
1222 */
Willy Tarreauf31af932020-01-14 09:59:38 +01001223 if (lua->gc_count) {
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001224 if (!SET_SAFE_LJMP_PARENT(lua))
Thierry FOURNIER75d02082017-07-12 13:41:33 +02001225 return;
Thierry Fournier021d9862020-11-28 23:42:03 +01001226 lua_gc(hlua_states[lua->state_id], LUA_GCCOLLECT, 0);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001227 RESET_SAFE_LJMP_PARENT(lua);
Thierry FOURNIER7c39ab42015-09-27 22:53:33 +02001228 }
Thierry FOURNIER5a50a852015-09-23 16:59:28 +02001229
Thierry FOURNIERa7b536b2015-09-21 22:50:24 +02001230 lua->T = NULL;
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01001231
1232end:
Willy Tarreaubafbe012017-11-24 17:34:44 +01001233 pool_free(pool_head_hlua, lua);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001234}
1235
1236/* This function is used to restore the Lua context when a coroutine
1237 * fails. This function copy the common memory between old coroutine
1238 * and the new coroutine. The old coroutine is destroyed, and its
1239 * replaced by the new coroutine.
1240 * If the flag "keep_msg" is set, the last entry of the old is assumed
1241 * as string error message and it is copied in the new stack.
1242 */
1243static int hlua_ctx_renew(struct hlua *lua, int keep_msg)
1244{
1245 lua_State *T;
1246 int new_ref;
1247
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001248 /* New Lua coroutine. */
Thierry Fournier021d9862020-11-28 23:42:03 +01001249 T = lua_newthread(hlua_states[lua->state_id]);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001250 if (!T)
1251 return 0;
1252
1253 /* Copy last error message. */
1254 if (keep_msg)
1255 lua_xmove(lua->T, T, 1);
1256
1257 /* Copy data between the coroutines. */
1258 lua_rawgeti(lua->T, LUA_REGISTRYINDEX, lua->Mref);
1259 lua_xmove(lua->T, T, 1);
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05001260 new_ref = luaL_ref(T, LUA_REGISTRYINDEX); /* Value popped. */
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001261
1262 /* Destroy old data. */
1263 luaL_unref(lua->T, LUA_REGISTRYINDEX, lua->Mref);
1264
1265 /* The thread is garbage collected by Lua. */
Thierry Fournier021d9862020-11-28 23:42:03 +01001266 luaL_unref(hlua_states[lua->state_id], LUA_REGISTRYINDEX, lua->Tref);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001267
1268 /* Fill the struct with the new coroutine values. */
1269 lua->Mref = new_ref;
1270 lua->T = T;
Thierry Fournier021d9862020-11-28 23:42:03 +01001271 lua->Tref = luaL_ref(hlua_states[lua->state_id], LUA_REGISTRYINDEX);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001272
1273 /* Set context. */
1274 hlua_sethlua(lua);
1275
1276 return 1;
1277}
1278
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001279void hlua_hook(lua_State *L, lua_Debug *ar)
1280{
Thierry Fournier4234dbd2020-11-28 13:18:23 +01001281 struct hlua *hlua;
1282
1283 /* Get hlua struct, or NULL if we execute from main lua state */
1284 hlua = hlua_gethlua(L);
1285 if (!hlua)
1286 return;
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001287
1288 /* Lua cannot yield when its returning from a function,
1289 * so, we can fix the interrupt hook to 1 instruction,
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05001290 * expecting that the function is finished.
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001291 */
1292 if (lua_gethookmask(L) & LUA_MASKRET) {
1293 lua_sethook(hlua->T, hlua_hook, LUA_MASKCOUNT, 1);
1294 return;
1295 }
1296
1297 /* restore the interrupt condition. */
1298 lua_sethook(hlua->T, hlua_hook, LUA_MASKCOUNT, hlua_nb_instruction);
1299
1300 /* If we interrupt the Lua processing in yieldable state, we yield.
1301 * If the state is not yieldable, trying yield causes an error.
1302 */
1303 if (lua_isyieldable(L))
Willy Tarreau9635e032018-10-16 17:52:55 +02001304 MAY_LJMP(hlua_yieldk(L, 0, 0, NULL, TICK_ETERNITY, HLUA_CTRLYIELD));
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001305
Thierry FOURNIERa85cfb12015-03-13 14:50:06 +01001306 /* If we cannot yield, update the clock and check the timeout. */
1307 tv_update_date(0, 1);
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001308 hlua->run_time += now_ms - hlua->start_time;
1309 if (hlua->max_time && hlua->run_time >= hlua->max_time) {
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001310 lua_pushfstring(L, "execution timeout");
1311 WILL_LJMP(lua_error(L));
1312 }
1313
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001314 /* Update the start time. */
1315 hlua->start_time = now_ms;
1316
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001317 /* Try to interrupt the process at the end of the current
1318 * unyieldable function.
1319 */
1320 lua_sethook(hlua->T, hlua_hook, LUA_MASKRET|LUA_MASKCOUNT, hlua_nb_instruction);
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001321}
1322
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001323/* This function start or resumes the Lua stack execution. If the flag
1324 * "yield_allowed" if no set and the LUA stack execution returns a yield
1325 * The function return an error.
1326 *
1327 * The function can returns 4 values:
1328 * - HLUA_E_OK : The execution is terminated without any errors.
1329 * - HLUA_E_AGAIN : The execution must continue at the next associated
1330 * task wakeup.
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001331 * - HLUA_E_ERRMSG : An error has occurred, an error message is set in
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001332 * the top of the stack.
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001333 * - HLUA_E_ERR : An error has occurred without error message.
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001334 *
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001335 * If an error occurred, the stack is renewed and it is ready to run new
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001336 * LUA code.
1337 */
1338static enum hlua_exec hlua_ctx_resume(struct hlua *lua, int yield_allowed)
1339{
Christopher Faulet08ed98f2020-07-28 10:33:25 +02001340#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504
1341 int nres;
1342#endif
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001343 int ret;
1344 const char *msg;
Thierry FOURNIERfc044c92018-06-07 14:40:48 +02001345 const char *trace;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001346
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001347 /* Initialise run time counter. */
1348 if (!HLUA_IS_RUNNING(lua))
1349 lua->run_time = 0;
Thierry FOURNIERdc9ca962015-03-05 11:16:52 +01001350
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +02001351 /* Lock the whole Lua execution. This lock must be before the
1352 * label "resume_execution".
1353 */
Aurelien DARRAGONe00bf5d2023-03-21 13:22:33 +01001354 hlua_lock(lua);
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +02001355
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001356resume_execution:
1357
1358 /* This hook interrupts the Lua processing each 'hlua_nb_instruction'
1359 * instructions. it is used for preventing infinite loops.
1360 */
1361 lua_sethook(lua->T, hlua_hook, LUA_MASKCOUNT, hlua_nb_instruction);
1362
Thierry FOURNIER1bfc09b2015-03-05 17:10:14 +01001363 /* Remove all flags except the running flags. */
Thierry FOURNIER2f3867f2015-09-28 01:02:01 +02001364 HLUA_SET_RUN(lua);
1365 HLUA_CLR_CTRLYIELD(lua);
1366 HLUA_CLR_WAKERESWR(lua);
1367 HLUA_CLR_WAKEREQWR(lua);
Christopher Fauleta6e792f2021-08-04 17:58:21 +02001368 HLUA_CLR_NOYIELD(lua);
1369 if (!yield_allowed)
1370 HLUA_SET_NOYIELD(lua);
Thierry FOURNIER1bfc09b2015-03-05 17:10:14 +01001371
Christopher Fauletbc275a92020-02-26 14:55:16 +01001372 /* Update the start time and reset wake_time. */
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001373 lua->start_time = now_ms;
Christopher Fauletbc275a92020-02-26 14:55:16 +01001374 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001375
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001376 /* Call the function. */
Christopher Faulet08ed98f2020-07-28 10:33:25 +02001377#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504
Thierry Fournier021d9862020-11-28 23:42:03 +01001378 ret = lua_resume(lua->T, hlua_states[lua->state_id], lua->nargs, &nres);
Christopher Faulet08ed98f2020-07-28 10:33:25 +02001379#else
Thierry Fournier021d9862020-11-28 23:42:03 +01001380 ret = lua_resume(lua->T, hlua_states[lua->state_id], lua->nargs);
Christopher Faulet08ed98f2020-07-28 10:33:25 +02001381#endif
Aurelien DARRAGONfff27962023-09-08 14:00:27 +02001382
1383 /* reset nargs because those possibly passed to the lua_resume() call
1384 * were already consumed, and since we may call lua_resume() again
1385 * after a successful yield, we don't want to pass stale nargs hint
1386 * to the Lua API. As such, nargs should be set explicitly before each
1387 * lua_resume() (or hlua_ctx_resume()) invocation if needed.
1388 */
1389 lua->nargs = 0;
1390
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001391 switch (ret) {
1392
1393 case LUA_OK:
1394 ret = HLUA_E_OK;
1395 break;
1396
1397 case LUA_YIELD:
Thierry FOURNIERdc9ca962015-03-05 11:16:52 +01001398 /* Check if the execution timeout is expired. It it is the case, we
1399 * break the Lua execution.
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001400 */
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001401 tv_update_date(0, 1);
1402 lua->run_time += now_ms - lua->start_time;
1403 if (lua->max_time && lua->run_time > lua->max_time) {
Thierry FOURNIERdc9ca962015-03-05 11:16:52 +01001404 lua_settop(lua->T, 0); /* Empty the stack. */
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001405 ret = HLUA_E_ETMOUT;
Thierry FOURNIERdc9ca962015-03-05 11:16:52 +01001406 break;
1407 }
1408 /* Process the forced yield. if the general yield is not allowed or
1409 * if no task were associated this the current Lua execution
1410 * coroutine, we resume the execution. Else we want to return in the
1411 * scheduler and we want to be waked up again, to continue the
1412 * current Lua execution. So we schedule our own task.
1413 */
1414 if (HLUA_IS_CTRLYIELDING(lua)) {
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001415 if (!yield_allowed || !lua->task)
1416 goto resume_execution;
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001417 task_wakeup(lua->task, TASK_WOKEN_MSG);
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001418 }
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001419 if (!yield_allowed) {
1420 lua_settop(lua->T, 0); /* Empty the stack. */
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001421 ret = HLUA_E_YIELD;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001422 break;
1423 }
1424 ret = HLUA_E_AGAIN;
1425 break;
1426
1427 case LUA_ERRRUN:
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02001428
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001429 /* Special exit case. The traditional exit is returned as an error
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02001430 * because the errors ares the only one mean to return immediately
1431 * from and lua execution.
1432 */
1433 if (lua->flags & HLUA_EXIT) {
1434 ret = HLUA_E_OK;
Christopher Faulet7716cdf2020-01-29 11:53:30 +01001435 hlua_ctx_renew(lua, 1);
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02001436 break;
1437 }
1438
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001439 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001440 if (!lua_checkstack(lua->T, 1)) {
1441 ret = HLUA_E_ERR;
1442 break;
1443 }
1444 msg = lua_tostring(lua->T, -1);
1445 lua_settop(lua->T, 0); /* Empty the stack. */
Christopher Fauletd09cc512021-03-24 14:48:45 +01001446 trace = hlua_traceback(lua->T, ", ");
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001447 if (msg)
Thierry Fournier46278ff2020-11-29 11:48:12 +01001448 lua_pushfstring(lua->T, "[state-id %d] runtime error: %s from %s", lua->state_id, msg, trace);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001449 else
Thierry Fournier46278ff2020-11-29 11:48:12 +01001450 lua_pushfstring(lua->T, "[state-id %d] unknown runtime error from %s", lua->state_id, trace);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001451 ret = HLUA_E_ERRMSG;
1452 break;
1453
1454 case LUA_ERRMEM:
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001455 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001456 lua_settop(lua->T, 0); /* Empty the stack. */
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001457 ret = HLUA_E_NOMEM;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001458 break;
1459
1460 case LUA_ERRERR:
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001461 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001462 if (!lua_checkstack(lua->T, 1)) {
1463 ret = HLUA_E_ERR;
1464 break;
1465 }
1466 msg = lua_tostring(lua->T, -1);
1467 lua_settop(lua->T, 0); /* Empty the stack. */
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001468 if (msg)
Thierry Fournier46278ff2020-11-29 11:48:12 +01001469 lua_pushfstring(lua->T, "[state-id %d] message handler error: %s", lua->state_id, msg);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001470 else
Thierry Fournier46278ff2020-11-29 11:48:12 +01001471 lua_pushfstring(lua->T, "[state-id %d] message handler error", lua->state_id);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001472 ret = HLUA_E_ERRMSG;
1473 break;
1474
1475 default:
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001476 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001477 lua_settop(lua->T, 0); /* Empty the stack. */
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001478 ret = HLUA_E_ERR;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001479 break;
1480 }
1481
1482 switch (ret) {
1483 case HLUA_E_AGAIN:
1484 break;
1485
1486 case HLUA_E_ERRMSG:
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001487 notification_purge(&lua->com);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001488 hlua_ctx_renew(lua, 1);
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01001489 HLUA_CLR_RUN(lua);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001490 break;
1491
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001492 case HLUA_E_ETMOUT:
1493 case HLUA_E_NOMEM:
1494 case HLUA_E_YIELD:
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001495 case HLUA_E_ERR:
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01001496 HLUA_CLR_RUN(lua);
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001497 notification_purge(&lua->com);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001498 hlua_ctx_renew(lua, 0);
1499 break;
1500
1501 case HLUA_E_OK:
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01001502 HLUA_CLR_RUN(lua);
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001503 notification_purge(&lua->com);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001504 break;
1505 }
1506
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +02001507 /* This is the main exit point, remove the Lua lock. */
Aurelien DARRAGONe00bf5d2023-03-21 13:22:33 +01001508 hlua_unlock(lua);
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +02001509
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001510 return ret;
1511}
1512
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02001513/* This function exit the current code. */
1514__LJMP static int hlua_done(lua_State *L)
1515{
Thierry Fournier4234dbd2020-11-28 13:18:23 +01001516 struct hlua *hlua;
1517
1518 /* Get hlua struct, or NULL if we execute from main lua state */
1519 hlua = hlua_gethlua(L);
1520 if (!hlua)
1521 return 0;
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02001522
1523 hlua->flags |= HLUA_EXIT;
1524 WILL_LJMP(lua_error(L));
1525
1526 return 0;
1527}
1528
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001529/* This function is an LUA binding. It provides a function
1530 * for deleting ACL from a referenced ACL file.
1531 */
1532__LJMP static int hlua_del_acl(lua_State *L)
1533{
1534 const char *name;
1535 const char *key;
1536 struct pat_ref *ref;
1537
1538 MAY_LJMP(check_args(L, 2, "del_acl"));
1539
1540 name = MAY_LJMP(luaL_checkstring(L, 1));
1541 key = MAY_LJMP(luaL_checkstring(L, 2));
1542
1543 ref = pat_ref_lookup(name);
1544 if (!ref)
Vincent Bernata72db182015-10-06 16:05:59 +02001545 WILL_LJMP(luaL_error(L, "'del_acl': unknown acl file '%s'", name));
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001546
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001547 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001548 pat_ref_delete(ref, key);
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001549 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001550 return 0;
1551}
1552
1553/* This function is an LUA binding. It provides a function
1554 * for deleting map entry from a referenced map file.
1555 */
1556static int hlua_del_map(lua_State *L)
1557{
1558 const char *name;
1559 const char *key;
1560 struct pat_ref *ref;
1561
1562 MAY_LJMP(check_args(L, 2, "del_map"));
1563
1564 name = MAY_LJMP(luaL_checkstring(L, 1));
1565 key = MAY_LJMP(luaL_checkstring(L, 2));
1566
1567 ref = pat_ref_lookup(name);
1568 if (!ref)
Vincent Bernata72db182015-10-06 16:05:59 +02001569 WILL_LJMP(luaL_error(L, "'del_map': unknown acl file '%s'", name));
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001570
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001571 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001572 pat_ref_delete(ref, key);
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001573 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001574 return 0;
1575}
1576
1577/* This function is an LUA binding. It provides a function
1578 * for adding ACL pattern from a referenced ACL file.
1579 */
1580static int hlua_add_acl(lua_State *L)
1581{
1582 const char *name;
1583 const char *key;
1584 struct pat_ref *ref;
1585
1586 MAY_LJMP(check_args(L, 2, "add_acl"));
1587
1588 name = MAY_LJMP(luaL_checkstring(L, 1));
1589 key = MAY_LJMP(luaL_checkstring(L, 2));
1590
1591 ref = pat_ref_lookup(name);
1592 if (!ref)
Vincent Bernata72db182015-10-06 16:05:59 +02001593 WILL_LJMP(luaL_error(L, "'add_acl': unknown acl file '%s'", name));
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001594
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001595 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001596 if (pat_ref_find_elt(ref, key) == NULL)
1597 pat_ref_add(ref, key, NULL, NULL);
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001598 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001599 return 0;
1600}
1601
1602/* This function is an LUA binding. It provides a function
1603 * for setting map pattern and sample from a referenced map
1604 * file.
1605 */
1606static int hlua_set_map(lua_State *L)
1607{
1608 const char *name;
1609 const char *key;
1610 const char *value;
1611 struct pat_ref *ref;
1612
1613 MAY_LJMP(check_args(L, 3, "set_map"));
1614
1615 name = MAY_LJMP(luaL_checkstring(L, 1));
1616 key = MAY_LJMP(luaL_checkstring(L, 2));
1617 value = MAY_LJMP(luaL_checkstring(L, 3));
1618
1619 ref = pat_ref_lookup(name);
1620 if (!ref)
Vincent Bernata72db182015-10-06 16:05:59 +02001621 WILL_LJMP(luaL_error(L, "'set_map': unknown map file '%s'", name));
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001622
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001623 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001624 if (pat_ref_find_elt(ref, key) != NULL)
1625 pat_ref_set(ref, key, value, NULL);
1626 else
1627 pat_ref_add(ref, key, value, NULL);
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001628 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001629 return 0;
1630}
1631
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01001632/* A class is a lot of memory that contain data. This data can be a table,
1633 * an integer or user data. This data is associated with a metatable. This
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001634 * metatable have an original version registered in the global context with
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01001635 * the name of the object (_G[<name>] = <metable> ).
1636 *
1637 * A metable is a table that modify the standard behavior of a standard
1638 * access to the associated data. The entries of this new metatable are
1639 * defined as is:
1640 *
1641 * http://lua-users.org/wiki/MetatableEvents
1642 *
1643 * __index
1644 *
1645 * we access an absent field in a table, the result is nil. This is
1646 * true, but it is not the whole truth. Actually, such access triggers
1647 * the interpreter to look for an __index metamethod: If there is no
1648 * such method, as usually happens, then the access results in nil;
1649 * otherwise, the metamethod will provide the result.
1650 *
1651 * Control 'prototype' inheritance. When accessing "myTable[key]" and
1652 * the key does not appear in the table, but the metatable has an __index
1653 * property:
1654 *
1655 * - if the value is a function, the function is called, passing in the
1656 * table and the key; the return value of that function is returned as
1657 * the result.
1658 *
1659 * - if the value is another table, the value of the key in that table is
1660 * asked for and returned (and if it doesn't exist in that table, but that
1661 * table's metatable has an __index property, then it continues on up)
1662 *
1663 * - Use "rawget(myTable,key)" to skip this metamethod.
1664 *
1665 * http://www.lua.org/pil/13.4.1.html
1666 *
1667 * __newindex
1668 *
1669 * Like __index, but control property assignment.
1670 *
1671 * __mode - Control weak references. A string value with one or both
1672 * of the characters 'k' and 'v' which specifies that the the
1673 * keys and/or values in the table are weak references.
1674 *
1675 * __call - Treat a table like a function. When a table is followed by
1676 * parenthesis such as "myTable( 'foo' )" and the metatable has
1677 * a __call key pointing to a function, that function is invoked
1678 * (passing any specified arguments) and the return value is
1679 * returned.
1680 *
1681 * __metatable - Hide the metatable. When "getmetatable( myTable )" is
1682 * called, if the metatable for myTable has a __metatable
1683 * key, the value of that key is returned instead of the
1684 * actual metatable.
1685 *
1686 * __tostring - Control string representation. When the builtin
1687 * "tostring( myTable )" function is called, if the metatable
1688 * for myTable has a __tostring property set to a function,
1689 * that function is invoked (passing myTable to it) and the
1690 * return value is used as the string representation.
1691 *
1692 * __len - Control table length. When the table length is requested using
1693 * the length operator ( '#' ), if the metatable for myTable has
1694 * a __len key pointing to a function, that function is invoked
1695 * (passing myTable to it) and the return value used as the value
1696 * of "#myTable".
1697 *
1698 * __gc - Userdata finalizer code. When userdata is set to be garbage
1699 * collected, if the metatable has a __gc field pointing to a
1700 * function, that function is first invoked, passing the userdata
1701 * to it. The __gc metamethod is not called for tables.
1702 * (See http://lua-users.org/lists/lua-l/2006-11/msg00508.html)
1703 *
1704 * Special metamethods for redefining standard operators:
1705 * http://www.lua.org/pil/13.1.html
1706 *
1707 * __add "+"
1708 * __sub "-"
1709 * __mul "*"
1710 * __div "/"
1711 * __unm "!"
1712 * __pow "^"
1713 * __concat ".."
1714 *
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05001715 * Special methods for redefining standard relations
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01001716 * http://www.lua.org/pil/13.2.html
1717 *
1718 * __eq "=="
1719 * __lt "<"
1720 * __le "<="
1721 */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001722
1723/*
1724 *
1725 *
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001726 * Class Map
1727 *
1728 *
1729 */
1730
1731/* Returns a struct hlua_map if the stack entry "ud" is
1732 * a class session, otherwise it throws an error.
1733 */
1734__LJMP static struct map_descriptor *hlua_checkmap(lua_State *L, int ud)
1735{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02001736 return MAY_LJMP(hlua_checkudata(L, ud, class_map_ref));
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001737}
1738
1739/* This function is the map constructor. It don't need
1740 * the class Map object. It creates and return a new Map
1741 * object. It must be called only during "body" or "init"
1742 * context because it process some filesystem accesses.
1743 */
1744__LJMP static int hlua_map_new(struct lua_State *L)
1745{
1746 const char *fn;
1747 int match = PAT_MATCH_STR;
1748 struct sample_conv conv;
1749 const char *file = "";
1750 int line = 0;
1751 lua_Debug ar;
1752 char *err = NULL;
1753 struct arg args[2];
1754
1755 if (lua_gettop(L) < 1 || lua_gettop(L) > 2)
1756 WILL_LJMP(luaL_error(L, "'new' needs at least 1 argument."));
1757
1758 fn = MAY_LJMP(luaL_checkstring(L, 1));
1759
1760 if (lua_gettop(L) >= 2) {
1761 match = MAY_LJMP(luaL_checkinteger(L, 2));
1762 if (match < 0 || match >= PAT_MATCH_NUM)
1763 WILL_LJMP(luaL_error(L, "'new' needs a valid match method."));
1764 }
1765
1766 /* Get Lua filename and line number. */
1767 if (lua_getstack(L, 1, &ar)) { /* check function at level */
1768 lua_getinfo(L, "Sl", &ar); /* get info about it */
1769 if (ar.currentline > 0) { /* is there info? */
1770 file = ar.short_src;
1771 line = ar.currentline;
1772 }
1773 }
1774
1775 /* fill fake sample_conv struct. */
1776 conv.kw = ""; /* unused. */
1777 conv.process = NULL; /* unused. */
1778 conv.arg_mask = 0; /* unused. */
1779 conv.val_args = NULL; /* unused. */
1780 conv.out_type = SMP_T_STR;
1781 conv.private = (void *)(long)match;
1782 switch (match) {
1783 case PAT_MATCH_STR: conv.in_type = SMP_T_STR; break;
1784 case PAT_MATCH_BEG: conv.in_type = SMP_T_STR; break;
1785 case PAT_MATCH_SUB: conv.in_type = SMP_T_STR; break;
1786 case PAT_MATCH_DIR: conv.in_type = SMP_T_STR; break;
1787 case PAT_MATCH_DOM: conv.in_type = SMP_T_STR; break;
1788 case PAT_MATCH_END: conv.in_type = SMP_T_STR; break;
1789 case PAT_MATCH_REG: conv.in_type = SMP_T_STR; break;
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001790 case PAT_MATCH_INT: conv.in_type = SMP_T_SINT; break;
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001791 case PAT_MATCH_IP: conv.in_type = SMP_T_ADDR; break;
1792 default:
1793 WILL_LJMP(luaL_error(L, "'new' doesn't support this match mode."));
1794 }
1795
1796 /* fill fake args. */
1797 args[0].type = ARGT_STR;
Christopher Faulet73292e92020-08-06 08:40:09 +02001798 args[0].data.str.area = strdup(fn);
1799 args[0].data.str.data = strlen(fn);
1800 args[0].data.str.size = args[0].data.str.data+1;
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001801 args[1].type = ARGT_STOP;
1802
1803 /* load the map. */
1804 if (!sample_load_map(args, &conv, file, line, &err)) {
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001805 /* error case: we can't use luaL_error because we must
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001806 * free the err variable.
1807 */
1808 luaL_where(L, 1);
1809 lua_pushfstring(L, "'new': %s.", err);
1810 lua_concat(L, 2);
1811 free(err);
Christopher Faulet6ad7df42020-08-07 11:45:18 +02001812 chunk_destroy(&args[0].data.str);
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001813 WILL_LJMP(lua_error(L));
1814 }
1815
1816 /* create the lua object. */
1817 lua_newtable(L);
1818 lua_pushlightuserdata(L, args[0].data.map);
1819 lua_rawseti(L, -2, 0);
1820
1821 /* Pop a class Map metatable and affect it to the userdata. */
1822 lua_rawgeti(L, LUA_REGISTRYINDEX, class_map_ref);
1823 lua_setmetatable(L, -2);
1824
1825
1826 return 1;
1827}
1828
1829__LJMP static inline int _hlua_map_lookup(struct lua_State *L, int str)
1830{
1831 struct map_descriptor *desc;
1832 struct pattern *pat;
1833 struct sample smp;
1834
1835 MAY_LJMP(check_args(L, 2, "lookup"));
1836 desc = MAY_LJMP(hlua_checkmap(L, 1));
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001837 if (desc->pat.expect_type == SMP_T_SINT) {
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001838 smp.data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001839 smp.data.u.sint = MAY_LJMP(luaL_checkinteger(L, 2));
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001840 }
1841 else {
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001842 smp.data.type = SMP_T_STR;
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001843 smp.flags = SMP_F_CONST;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001844 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 +01001845 smp.data.u.str.size = smp.data.u.str.data + 1;
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001846 }
1847
1848 pat = pattern_exec_match(&desc->pat, &smp, 1);
Thierry FOURNIER503bb092015-08-19 08:35:43 +02001849 if (!pat || !pat->data) {
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001850 if (str)
1851 lua_pushstring(L, "");
1852 else
1853 lua_pushnil(L);
1854 return 1;
1855 }
1856
1857 /* The Lua pattern must return a string, so we can't check the returned type */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001858 lua_pushlstring(L, pat->data->u.str.area, pat->data->u.str.data);
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001859 return 1;
1860}
1861
1862__LJMP static int hlua_map_lookup(struct lua_State *L)
1863{
1864 return _hlua_map_lookup(L, 0);
1865}
1866
1867__LJMP static int hlua_map_slookup(struct lua_State *L)
1868{
1869 return _hlua_map_lookup(L, 1);
1870}
1871
1872/*
1873 *
1874 *
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001875 * Class Socket
1876 *
1877 *
1878 */
1879
1880__LJMP static struct hlua_socket *hlua_checksocket(lua_State *L, int ud)
1881{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02001882 return MAY_LJMP(hlua_checkudata(L, ud, class_socket_ref));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001883}
1884
1885/* This function is the handler called for each I/O on the established
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001886 * connection. It is used for notify space available to send or data
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001887 * received.
1888 */
Willy Tarreau00a37f02015-04-13 12:05:19 +02001889static void hlua_socket_handler(struct appctx *appctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001890{
Willy Tarreau00a37f02015-04-13 12:05:19 +02001891 struct stream_interface *si = appctx->owner;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001892
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02001893 if (appctx->ctx.hlua_cosocket.die) {
1894 si_shutw(si);
1895 si_shutr(si);
1896 si_ic(si)->flags |= CF_READ_NULL;
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001897 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read);
1898 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write);
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02001899 stream_shutdown(si_strm(si), SF_ERR_KILLED);
1900 }
1901
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001902 /* If we can't write, wakeup the pending write signals. */
Thierry FOURNIER6d695e62015-09-27 19:29:38 +02001903 if (channel_output_closed(si_ic(si)))
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001904 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write);
Thierry FOURNIER6d695e62015-09-27 19:29:38 +02001905
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001906 /* If we can't read, wakeup the pending read signals. */
Thierry FOURNIER6d695e62015-09-27 19:29:38 +02001907 if (channel_input_closed(si_oc(si)))
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001908 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read);
Thierry FOURNIER6d695e62015-09-27 19:29:38 +02001909
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02001910 /* if the connection is not established, inform the stream that we want
Thierry FOURNIER316e3192015-09-04 18:25:53 +02001911 * to be notified whenever the connection completes.
1912 */
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02001913 if (si_opposite(si)->state < SI_ST_EST) {
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01001914 si_cant_get(si);
Willy Tarreau12c24232018-12-06 15:29:50 +01001915 si_rx_conn_blk(si);
Willy Tarreau3367d412018-11-15 10:57:41 +01001916 si_rx_endp_more(si);
Willy Tarreaud4da1962015-04-20 01:31:23 +02001917 return;
Thierry FOURNIER316e3192015-09-04 18:25:53 +02001918 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001919
1920 /* This function is called after the connect. */
Thierry FOURNIER18d09902016-12-16 09:25:38 +01001921 appctx->ctx.hlua_cosocket.connected = 1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001922
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001923 /* Wake the tasks which wants to write if the buffer have available space. */
Thierry FOURNIEReba6f642015-09-26 22:01:07 +02001924 if (channel_may_recv(si_ic(si)))
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001925 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001926
1927 /* Wake the tasks which wants to read if the buffer contains data. */
Thierry FOURNIEReba6f642015-09-26 22:01:07 +02001928 if (!channel_is_empty(si_oc(si)))
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001929 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read);
Thierry FOURNIER101b9762018-05-27 01:27:40 +02001930
1931 /* Some data were injected in the buffer, notify the stream
1932 * interface.
1933 */
1934 if (!channel_is_empty(si_ic(si)))
Willy Tarreau14bfe9a2018-12-19 15:19:27 +01001935 si_update(si);
Thierry FOURNIER101b9762018-05-27 01:27:40 +02001936
1937 /* If write notifications are registered, we considers we want
Willy Tarreau3367d412018-11-15 10:57:41 +01001938 * to write, so we clear the blocking flag.
Thierry FOURNIER101b9762018-05-27 01:27:40 +02001939 */
1940 if (notification_registered(&appctx->ctx.hlua_cosocket.wake_on_write))
Willy Tarreau3367d412018-11-15 10:57:41 +01001941 si_rx_endp_more(si);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001942}
1943
Willy Tarreau87b09662015-04-03 00:22:06 +02001944/* This function is called when the "struct stream" is destroyed.
1945 * Remove the link from the object to this stream.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001946 * Wake all the pending signals.
1947 */
Willy Tarreau00a37f02015-04-13 12:05:19 +02001948static void hlua_socket_release(struct appctx *appctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001949{
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001950 struct xref *peer;
1951
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001952 /* Remove my link in the original object. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001953 peer = xref_get_peer_and_lock(&appctx->ctx.hlua_cosocket.xref);
1954 if (peer)
1955 xref_disconnect(&appctx->ctx.hlua_cosocket.xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001956
1957 /* Wake all the task waiting for me. */
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001958 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read);
1959 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001960}
1961
1962/* If the garbage collectio of the object is launch, nobody
Willy Tarreau87b09662015-04-03 00:22:06 +02001963 * uses this object. If the stream does not exists, just quit.
1964 * Send the shutdown signal to the stream. In some cases,
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001965 * pending signal can rest in the read and write lists. destroy
1966 * it.
1967 */
1968__LJMP static int hlua_socket_gc(lua_State *L)
1969{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001970 struct hlua_socket *socket;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001971 struct appctx *appctx;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001972 struct xref *peer;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001973
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001974 MAY_LJMP(check_args(L, 1, "__gc"));
1975
1976 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001977 peer = xref_get_peer_and_lock(&socket->xref);
1978 if (!peer)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001979 return 0;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001980 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001981
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001982 /* Set the flag which destroy the session. */
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02001983 appctx->ctx.hlua_cosocket.die = 1;
1984 appctx_wakeup(appctx);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001985
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001986 /* Remove all reference between the Lua stack and the coroutine stream. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001987 xref_disconnect(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001988 return 0;
1989}
1990
1991/* The close function send shutdown signal and break the
Willy Tarreau87b09662015-04-03 00:22:06 +02001992 * links between the stream and the object.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001993 */
sada05ed3302018-05-11 11:48:18 -07001994__LJMP static int hlua_socket_close_helper(lua_State *L)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001995{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001996 struct hlua_socket *socket;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001997 struct appctx *appctx;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001998 struct xref *peer;
Thierry Fournier4234dbd2020-11-28 13:18:23 +01001999 struct hlua *hlua;
2000
2001 /* Get hlua struct, or NULL if we execute from main lua state */
2002 hlua = hlua_gethlua(L);
2003 if (!hlua)
2004 return 0;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002005
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002006 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002007
2008 /* Check if we run on the same thread than the xreator thread.
2009 * We cannot access to the socket if the thread is different.
2010 */
2011 if (socket->tid != tid)
2012 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2013
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002014 peer = xref_get_peer_and_lock(&socket->xref);
2015 if (!peer)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002016 return 0;
Willy Tarreauf31af932020-01-14 09:59:38 +01002017
2018 hlua->gc_count--;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002019 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002020
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002021 /* Set the flag which destroy the session. */
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02002022 appctx->ctx.hlua_cosocket.die = 1;
2023 appctx_wakeup(appctx);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002024
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002025 /* Remove all reference between the Lua stack and the coroutine stream. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002026 xref_disconnect(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002027 return 0;
2028}
2029
sada05ed3302018-05-11 11:48:18 -07002030/* The close function calls close_helper.
2031 */
2032__LJMP static int hlua_socket_close(lua_State *L)
2033{
2034 MAY_LJMP(check_args(L, 1, "close"));
2035 return hlua_socket_close_helper(L);
2036}
2037
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002038/* This Lua function assumes that the stack contain three parameters.
2039 * 1 - USERDATA containing a struct socket
2040 * 2 - INTEGER with values of the macro defined below
2041 * If the integer is -1, we must read at most one line.
2042 * If the integer is -2, we ust read all the data until the
2043 * end of the stream.
2044 * If the integer is positive value, we must read a number of
2045 * bytes corresponding to this value.
2046 */
2047#define HLSR_READ_LINE (-1)
2048#define HLSR_READ_ALL (-2)
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002049__LJMP static int hlua_socket_receive_yield(struct lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002050{
2051 struct hlua_socket *socket = MAY_LJMP(hlua_checksocket(L, 1));
2052 int wanted = lua_tointeger(L, 2);
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002053 struct hlua *hlua;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002054 struct appctx *appctx;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02002055 size_t len;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002056 int nblk;
Willy Tarreau206ba832018-06-14 15:27:31 +02002057 const char *blk1;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02002058 size_t len1;
Willy Tarreau206ba832018-06-14 15:27:31 +02002059 const char *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02002060 size_t len2;
Thierry FOURNIER00543922015-03-09 18:35:06 +01002061 int skip_at_end = 0;
Willy Tarreau81389672015-03-10 12:03:52 +01002062 struct channel *oc;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002063 struct stream_interface *si;
2064 struct stream *s;
2065 struct xref *peer;
Thierry FOURNIER8c126c72018-05-25 16:27:44 +02002066 int missing_bytes;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002067
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002068 /* Get hlua struct, or NULL if we execute from main lua state */
2069 hlua = hlua_gethlua(L);
2070
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002071 /* Check if this lua stack is schedulable. */
2072 if (!hlua || !hlua->task)
2073 WILL_LJMP(luaL_error(L, "The 'receive' function is only allowed in "
2074 "'frontend', 'backend' or 'task'"));
2075
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002076 /* Check if we run on the same thread than the xreator thread.
2077 * We cannot access to the socket if the thread is different.
2078 */
2079 if (socket->tid != tid)
2080 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2081
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002082 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002083 peer = xref_get_peer_and_lock(&socket->xref);
2084 if (!peer)
2085 goto no_peer;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002086 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2087 si = appctx->owner;
2088 s = si_strm(si);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002089
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002090 oc = &s->res;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002091 if (wanted == HLSR_READ_LINE) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002092 /* Read line. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02002093 nblk = co_getline_nc(oc, &blk1, &len1, &blk2, &len2);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002094 if (nblk < 0) /* Connection close. */
2095 goto connection_closed;
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002096 if (nblk == 0) /* No data available. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002097 goto connection_empty;
Thierry FOURNIER00543922015-03-09 18:35:06 +01002098
2099 /* remove final \r\n. */
2100 if (nblk == 1) {
2101 if (blk1[len1-1] == '\n') {
2102 len1--;
2103 skip_at_end++;
2104 if (blk1[len1-1] == '\r') {
2105 len1--;
2106 skip_at_end++;
2107 }
2108 }
2109 }
2110 else {
2111 if (blk2[len2-1] == '\n') {
2112 len2--;
2113 skip_at_end++;
2114 if (blk2[len2-1] == '\r') {
2115 len2--;
2116 skip_at_end++;
2117 }
2118 }
2119 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002120 }
2121
2122 else if (wanted == HLSR_READ_ALL) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002123 /* Read all the available data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02002124 nblk = co_getblk_nc(oc, &blk1, &len1, &blk2, &len2);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002125 if (nblk < 0) /* Connection close. */
2126 goto connection_closed;
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002127 if (nblk == 0) /* No data available. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002128 goto connection_empty;
2129 }
2130
2131 else {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002132 /* Read a block of data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02002133 nblk = co_getblk_nc(oc, &blk1, &len1, &blk2, &len2);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002134 if (nblk < 0) /* Connection close. */
2135 goto connection_closed;
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002136 if (nblk == 0) /* No data available. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002137 goto connection_empty;
2138
Thierry FOURNIER8c126c72018-05-25 16:27:44 +02002139 missing_bytes = wanted - socket->b.n;
2140 if (len1 > missing_bytes) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002141 nblk = 1;
Thierry FOURNIER8c126c72018-05-25 16:27:44 +02002142 len1 = missing_bytes;
2143 } if (nblk == 2 && len1 + len2 > missing_bytes)
2144 len2 = missing_bytes - len1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002145 }
2146
2147 len = len1;
2148
2149 luaL_addlstring(&socket->b, blk1, len1);
2150 if (nblk == 2) {
2151 len += len2;
2152 luaL_addlstring(&socket->b, blk2, len2);
2153 }
2154
2155 /* Consume data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02002156 co_skip(oc, len + skip_at_end);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002157
2158 /* Don't wait anything. */
Thierry FOURNIER7e4ee472018-05-25 15:03:50 +02002159 appctx_wakeup(appctx);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002160
2161 /* If the pattern reclaim to read all the data
2162 * in the connection, got out.
2163 */
2164 if (wanted == HLSR_READ_ALL)
2165 goto connection_empty;
Thierry FOURNIER8c126c72018-05-25 16:27:44 +02002166 else if (wanted >= 0 && socket->b.n < wanted)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002167 goto connection_empty;
2168
2169 /* Return result. */
2170 luaL_pushresult(&socket->b);
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002171 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002172 return 1;
2173
2174connection_closed:
2175
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002176 xref_unlock(&socket->xref, peer);
2177
2178no_peer:
2179
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002180 /* If the buffer containds data. */
2181 if (socket->b.n > 0) {
2182 luaL_pushresult(&socket->b);
2183 return 1;
2184 }
2185 lua_pushnil(L);
2186 lua_pushstring(L, "connection closed.");
2187 return 2;
2188
2189connection_empty:
2190
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002191 if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_read, hlua->task)) {
2192 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002193 WILL_LJMP(luaL_error(L, "out of memory"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002194 }
2195 xref_unlock(&socket->xref, peer);
Willy Tarreau9635e032018-10-16 17:52:55 +02002196 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_receive_yield, TICK_ETERNITY, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002197 return 0;
2198}
2199
Tim Duesterhusb33754c2018-01-04 19:32:14 +01002200/* This Lua function gets two parameters. The first one can be string
2201 * or a number. If the string is "*l", the user requires one line. If
2202 * the string is "*a", the user requires all the contents of the stream.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002203 * If the value is a number, the user require a number of bytes equal
2204 * to the value. The default value is "*l" (a line).
2205 *
Tim Duesterhusb33754c2018-01-04 19:32:14 +01002206 * This parameter with a variable type is converted in integer. This
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002207 * integer takes this values:
2208 * -1 : read a line
2209 * -2 : read all the stream
Tim Duesterhusb33754c2018-01-04 19:32:14 +01002210 * >0 : amount of bytes.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002211 *
Tim Duesterhusb33754c2018-01-04 19:32:14 +01002212 * The second parameter is optional. It contains a string that must be
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002213 * concatenated with the read data.
2214 */
2215__LJMP static int hlua_socket_receive(struct lua_State *L)
2216{
2217 int wanted = HLSR_READ_LINE;
2218 const char *pattern;
Christopher Fauletc31b2002021-05-03 10:11:13 +02002219 int lastarg, type;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002220 char *error;
2221 size_t len;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002222 struct hlua_socket *socket;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002223
2224 if (lua_gettop(L) < 1 || lua_gettop(L) > 3)
2225 WILL_LJMP(luaL_error(L, "The 'receive' function requires between 1 and 3 arguments."));
2226
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002227 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002228
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002229 /* Check if we run on the same thread than the xreator thread.
2230 * We cannot access to the socket if the thread is different.
2231 */
2232 if (socket->tid != tid)
2233 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2234
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002235 /* check for pattern. */
2236 if (lua_gettop(L) >= 2) {
2237 type = lua_type(L, 2);
2238 if (type == LUA_TSTRING) {
2239 pattern = lua_tostring(L, 2);
2240 if (strcmp(pattern, "*a") == 0)
2241 wanted = HLSR_READ_ALL;
2242 else if (strcmp(pattern, "*l") == 0)
2243 wanted = HLSR_READ_LINE;
2244 else {
2245 wanted = strtoll(pattern, &error, 10);
2246 if (*error != '\0')
2247 WILL_LJMP(luaL_error(L, "Unsupported pattern."));
2248 }
2249 }
2250 else if (type == LUA_TNUMBER) {
2251 wanted = lua_tointeger(L, 2);
2252 if (wanted < 0)
2253 WILL_LJMP(luaL_error(L, "Unsupported size."));
2254 }
2255 }
2256
2257 /* Set pattern. */
2258 lua_pushinteger(L, wanted);
Tim Duesterhusc6e377e2018-01-04 19:32:13 +01002259
2260 /* Check if we would replace the top by itself. */
2261 if (lua_gettop(L) != 2)
2262 lua_replace(L, 2);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002263
Christopher Fauletc31b2002021-05-03 10:11:13 +02002264 /* Save index of the top of the stack because since buffers are used, it
2265 * may change
2266 */
2267 lastarg = lua_gettop(L);
2268
Tim Duesterhusb33754c2018-01-04 19:32:14 +01002269 /* init buffer, and fill it with prefix. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002270 luaL_buffinit(L, &socket->b);
2271
2272 /* Check prefix. */
Christopher Fauletc31b2002021-05-03 10:11:13 +02002273 if (lastarg >= 3) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002274 if (lua_type(L, 3) != LUA_TSTRING)
2275 WILL_LJMP(luaL_error(L, "Expect a 'string' for the prefix"));
2276 pattern = lua_tolstring(L, 3, &len);
2277 luaL_addlstring(&socket->b, pattern, len);
2278 }
2279
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002280 return __LJMP(hlua_socket_receive_yield(L, 0, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002281}
2282
2283/* Write the Lua input string in the output buffer.
Mark Lakes22154b42018-01-29 14:38:40 -08002284 * This function returns a yield if no space is available.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002285 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002286static int hlua_socket_write_yield(struct lua_State *L,int status, lua_KContext ctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002287{
2288 struct hlua_socket *socket;
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002289 struct hlua *hlua;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002290 struct appctx *appctx;
2291 size_t buf_len;
2292 const char *buf;
2293 int len;
2294 int send_len;
2295 int sent;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002296 struct xref *peer;
2297 struct stream_interface *si;
2298 struct stream *s;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002299
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002300 /* Get hlua struct, or NULL if we execute from main lua state */
2301 hlua = hlua_gethlua(L);
2302
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002303 /* Check if this lua stack is schedulable. */
2304 if (!hlua || !hlua->task)
2305 WILL_LJMP(luaL_error(L, "The 'write' function is only allowed in "
2306 "'frontend', 'backend' or 'task'"));
2307
2308 /* Get object */
2309 socket = MAY_LJMP(hlua_checksocket(L, 1));
2310 buf = MAY_LJMP(luaL_checklstring(L, 2, &buf_len));
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002311 sent = MAY_LJMP(luaL_checkinteger(L, 3));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002312
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002313 /* Check if we run on the same thread than the xreator thread.
2314 * We cannot access to the socket if the thread is different.
2315 */
2316 if (socket->tid != tid)
2317 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2318
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002319 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002320 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002321 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002322 lua_pushinteger(L, -1);
2323 return 1;
2324 }
2325 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2326 si = appctx->owner;
2327 s = si_strm(si);
2328
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002329 /* Check for connection close. */
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002330 if (channel_output_closed(&s->req)) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002331 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002332 lua_pushinteger(L, -1);
2333 return 1;
2334 }
2335
2336 /* Update the input buffer data. */
2337 buf += sent;
2338 send_len = buf_len - sent;
2339
2340 /* All the data are sent. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002341 if (sent >= buf_len) {
2342 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002343 return 1; /* Implicitly return the length sent. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002344 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002345
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002346 /* Check if the buffer is available because HAProxy doesn't allocate
Thierry FOURNIER486d52a2015-03-09 17:51:43 +01002347 * the request buffer if its not required.
2348 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002349 if (s->req.buf.size == 0) {
Willy Tarreau581abd32018-10-25 10:21:41 +02002350 if (!si_alloc_ibuf(si, &appctx->buffer_wait))
Christopher Faulet33834b12016-12-19 09:29:06 +01002351 goto hlua_socket_write_yield_return;
Thierry FOURNIER486d52a2015-03-09 17:51:43 +01002352 }
2353
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002354 /* Check for available space. */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002355 len = b_room(&s->req.buf);
Christopher Faulet33834b12016-12-19 09:29:06 +01002356 if (len <= 0) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002357 goto hlua_socket_write_yield_return;
Christopher Faulet33834b12016-12-19 09:29:06 +01002358 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002359
2360 /* send data */
2361 if (len < send_len)
2362 send_len = len;
Thierry FOURNIER66b89192018-05-27 01:14:47 +02002363 len = ci_putblk(&s->req, buf, send_len);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002364
2365 /* "Not enough space" (-1), "Buffer too little to contain
2366 * the data" (-2) are not expected because the available length
2367 * is tested.
2368 * Other unknown error are also not expected.
2369 */
2370 if (len <= 0) {
Willy Tarreaubc18da12015-03-13 14:00:47 +01002371 if (len == -1)
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002372 s->req.flags |= CF_WAKE_WRITE;
Willy Tarreaubc18da12015-03-13 14:00:47 +01002373
sada05ed3302018-05-11 11:48:18 -07002374 MAY_LJMP(hlua_socket_close_helper(L));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002375 lua_pop(L, 1);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002376 lua_pushinteger(L, -1);
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002377 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002378 return 1;
2379 }
2380
2381 /* update buffers. */
Thierry FOURNIER101b9762018-05-27 01:27:40 +02002382 appctx_wakeup(appctx);
Willy Tarreaude70fa12015-09-26 11:25:05 +02002383
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002384 s->req.rex = TICK_ETERNITY;
2385 s->res.wex = TICK_ETERNITY;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002386
2387 /* Update length sent. */
2388 lua_pop(L, 1);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002389 lua_pushinteger(L, sent + len);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002390
2391 /* All the data buffer is sent ? */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002392 if (sent + len >= buf_len) {
2393 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002394 return 1;
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002395 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002396
2397hlua_socket_write_yield_return:
Thierry FOURNIERba42fcd2018-05-27 00:59:48 +02002398 if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_write, hlua->task)) {
2399 xref_unlock(&socket->xref, peer);
2400 WILL_LJMP(luaL_error(L, "out of memory"));
2401 }
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002402 xref_unlock(&socket->xref, peer);
Willy Tarreau9635e032018-10-16 17:52:55 +02002403 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_write_yield, TICK_ETERNITY, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002404 return 0;
2405}
2406
2407/* This function initiate the send of data. It just check the input
2408 * parameters and push an integer in the Lua stack that contain the
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002409 * amount of data written to the buffer. This is used by the function
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002410 * "hlua_socket_write_yield" that can yield.
2411 *
2412 * The Lua function gets between 3 and 4 parameters. The first one is
2413 * the associated object. The second is a string buffer. The third is
2414 * a facultative integer that represents where is the buffer position
2415 * of the start of the data that can send. The first byte is the
2416 * position "1". The default value is "1". The fourth argument is a
2417 * facultative integer that represents where is the buffer position
2418 * of the end of the data that can send. The default is the last byte.
2419 */
2420static int hlua_socket_send(struct lua_State *L)
2421{
2422 int i;
2423 int j;
2424 const char *buf;
2425 size_t buf_len;
2426
2427 /* Check number of arguments. */
2428 if (lua_gettop(L) < 2 || lua_gettop(L) > 4)
2429 WILL_LJMP(luaL_error(L, "'send' needs between 2 and 4 arguments"));
2430
2431 /* Get the string. */
2432 buf = MAY_LJMP(luaL_checklstring(L, 2, &buf_len));
2433
2434 /* Get and check j. */
2435 if (lua_gettop(L) == 4) {
2436 j = MAY_LJMP(luaL_checkinteger(L, 4));
2437 if (j < 0)
2438 j = buf_len + j + 1;
2439 if (j > buf_len)
2440 j = buf_len + 1;
2441 lua_pop(L, 1);
2442 }
2443 else
2444 j = buf_len;
2445
2446 /* Get and check i. */
2447 if (lua_gettop(L) == 3) {
2448 i = MAY_LJMP(luaL_checkinteger(L, 3));
2449 if (i < 0)
2450 i = buf_len + i + 1;
2451 if (i > buf_len)
2452 i = buf_len + 1;
2453 lua_pop(L, 1);
2454 } else
2455 i = 1;
2456
2457 /* Check bth i and j. */
2458 if (i > j) {
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002459 lua_pushinteger(L, 0);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002460 return 1;
2461 }
2462 if (i == 0 && j == 0) {
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002463 lua_pushinteger(L, 0);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002464 return 1;
2465 }
2466 if (i == 0)
2467 i = 1;
2468 if (j == 0)
2469 j = 1;
2470
2471 /* Pop the string. */
2472 lua_pop(L, 1);
2473
2474 /* Update the buffer length. */
2475 buf += i - 1;
2476 buf_len = j - i + 1;
2477 lua_pushlstring(L, buf, buf_len);
2478
2479 /* This unsigned is used to remember the amount of sent data. */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002480 lua_pushinteger(L, 0);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002481
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002482 return MAY_LJMP(hlua_socket_write_yield(L, 0, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002483}
2484
Willy Tarreau22b0a682015-06-17 19:43:49 +02002485#define SOCKET_INFO_MAX_LEN sizeof("[0000:0000:0000:0000:0000:0000:0000:0000]:12345")
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002486__LJMP static inline int hlua_socket_info(struct lua_State *L, struct sockaddr_storage *addr)
2487{
2488 static char buffer[SOCKET_INFO_MAX_LEN];
2489 int ret;
2490 int len;
2491 char *p;
2492
2493 ret = addr_to_str(addr, buffer+1, SOCKET_INFO_MAX_LEN-1);
2494 if (ret <= 0) {
2495 lua_pushnil(L);
2496 return 1;
2497 }
2498
2499 if (ret == AF_UNIX) {
2500 lua_pushstring(L, buffer+1);
2501 return 1;
2502 }
2503 else if (ret == AF_INET6) {
2504 buffer[0] = '[';
2505 len = strlen(buffer);
2506 buffer[len] = ']';
2507 len++;
2508 buffer[len] = ':';
2509 len++;
2510 p = buffer;
2511 }
2512 else if (ret == AF_INET) {
2513 p = buffer + 1;
2514 len = strlen(p);
2515 p[len] = ':';
2516 len++;
2517 }
2518 else {
2519 lua_pushnil(L);
2520 return 1;
2521 }
2522
2523 if (port_to_str(addr, p + len, SOCKET_INFO_MAX_LEN-1 - len) <= 0) {
2524 lua_pushnil(L);
2525 return 1;
2526 }
2527
2528 lua_pushstring(L, p);
2529 return 1;
2530}
2531
2532/* Returns information about the peer of the connection. */
2533__LJMP static int hlua_socket_getpeername(struct lua_State *L)
2534{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002535 struct hlua_socket *socket;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002536 struct xref *peer;
2537 struct appctx *appctx;
2538 struct stream_interface *si;
2539 struct stream *s;
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002540 int ret;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002541
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002542 MAY_LJMP(check_args(L, 1, "getpeername"));
2543
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002544 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002545
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002546 /* Check if we run on the same thread than the xreator thread.
2547 * We cannot access to the socket if the thread is different.
2548 */
2549 if (socket->tid != tid)
2550 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2551
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002552 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002553 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002554 if (!peer) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002555 lua_pushnil(L);
2556 return 1;
2557 }
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002558 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2559 si = appctx->owner;
2560 s = si_strm(si);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002561
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002562 if (!s->target_addr) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002563 xref_unlock(&socket->xref, peer);
Willy Tarreaua71f6422016-11-16 17:00:14 +01002564 lua_pushnil(L);
2565 return 1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002566 }
2567
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002568 ret = MAY_LJMP(hlua_socket_info(L, s->target_addr));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002569 xref_unlock(&socket->xref, peer);
2570 return ret;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002571}
2572
2573/* Returns information about my connection side. */
2574static int hlua_socket_getsockname(struct lua_State *L)
2575{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002576 struct hlua_socket *socket;
2577 struct connection *conn;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002578 struct appctx *appctx;
2579 struct xref *peer;
2580 struct stream_interface *si;
2581 struct stream *s;
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002582 int ret;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002583
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002584 MAY_LJMP(check_args(L, 1, "getsockname"));
2585
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002586 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002587
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002588 /* Check if we run on the same thread than the xreator thread.
2589 * We cannot access to the socket if the thread is different.
2590 */
2591 if (socket->tid != tid)
2592 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2593
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002594 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002595 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002596 if (!peer) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002597 lua_pushnil(L);
2598 return 1;
2599 }
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002600 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2601 si = appctx->owner;
2602 s = si_strm(si);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002603
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002604 conn = cs_conn(objt_cs(s->si[1].end));
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002605 if (!conn || !conn_get_src(conn)) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002606 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002607 lua_pushnil(L);
2608 return 1;
2609 }
2610
Willy Tarreau9da9a6f2019-07-17 14:49:44 +02002611 ret = hlua_socket_info(L, conn->src);
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002612 xref_unlock(&socket->xref, peer);
2613 return ret;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002614}
2615
2616/* This struct define the applet. */
Willy Tarreau30576452015-04-13 13:50:30 +02002617static struct applet update_applet = {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002618 .obj_type = OBJ_TYPE_APPLET,
2619 .name = "<LUA_TCP>",
2620 .fct = hlua_socket_handler,
2621 .release = hlua_socket_release,
2622};
2623
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002624__LJMP static int hlua_socket_connect_yield(struct lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002625{
2626 struct hlua_socket *socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002627 struct hlua *hlua;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002628 struct xref *peer;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002629 struct appctx *appctx;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002630 struct stream_interface *si;
2631 struct stream *s;
2632
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002633 /* Get hlua struct, or NULL if we execute from main lua state */
2634 hlua = hlua_gethlua(L);
2635 if (!hlua)
2636 return 0;
2637
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002638 /* Check if we run on the same thread than the xreator thread.
2639 * We cannot access to the socket if the thread is different.
2640 */
2641 if (socket->tid != tid)
2642 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2643
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002644 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002645 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002646 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002647 lua_pushnil(L);
2648 lua_pushstring(L, "Can't connect");
2649 return 2;
2650 }
2651 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2652 si = appctx->owner;
2653 s = si_strm(si);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002654
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002655 /* Check if we run on the same thread than the xreator thread.
2656 * We cannot access to the socket if the thread is different.
2657 */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002658 if (socket->tid != tid) {
2659 xref_unlock(&socket->xref, peer);
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002660 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002661 }
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002662
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002663 /* Check for connection close. */
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002664 if (!hlua || channel_output_closed(&s->req)) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002665 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002666 lua_pushnil(L);
2667 lua_pushstring(L, "Can't connect");
2668 return 2;
2669 }
2670
Willy Tarreaue09101e2018-10-16 17:37:12 +02002671 appctx = __objt_appctx(s->si[0].end);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002672
2673 /* Check for connection established. */
Thierry FOURNIER18d09902016-12-16 09:25:38 +01002674 if (appctx->ctx.hlua_cosocket.connected) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002675 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002676 lua_pushinteger(L, 1);
2677 return 1;
2678 }
2679
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002680 if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_write, hlua->task)) {
2681 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002682 WILL_LJMP(luaL_error(L, "out of memory error"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002683 }
2684 xref_unlock(&socket->xref, peer);
Willy Tarreau9635e032018-10-16 17:52:55 +02002685 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_connect_yield, TICK_ETERNITY, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002686 return 0;
2687}
2688
2689/* This function fail or initite the connection. */
2690__LJMP static int hlua_socket_connect(struct lua_State *L)
2691{
2692 struct hlua_socket *socket;
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002693 int port = -1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002694 const char *ip;
Thierry FOURNIER95ad96a2015-03-09 18:12:40 +01002695 struct hlua *hlua;
2696 struct appctx *appctx;
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002697 int low, high;
2698 struct sockaddr_storage *addr;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002699 struct xref *peer;
2700 struct stream_interface *si;
2701 struct stream *s;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002702
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002703 if (lua_gettop(L) < 2)
2704 WILL_LJMP(luaL_error(L, "connect: need at least 2 arguments"));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002705
2706 /* Get args. */
2707 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002708
2709 /* Check if we run on the same thread than the xreator thread.
2710 * We cannot access to the socket if the thread is different.
2711 */
2712 if (socket->tid != tid)
2713 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2714
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002715 ip = MAY_LJMP(luaL_checkstring(L, 2));
Tim Duesterhus6edab862018-01-06 19:04:45 +01002716 if (lua_gettop(L) >= 3) {
2717 luaL_Buffer b;
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002718 port = MAY_LJMP(luaL_checkinteger(L, 3));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002719
Tim Duesterhus6edab862018-01-06 19:04:45 +01002720 /* Force the ip to end with a colon, to support IPv6 addresses
2721 * that are not enclosed within square brackets.
2722 */
2723 if (port > 0) {
2724 luaL_buffinit(L, &b);
2725 luaL_addstring(&b, ip);
2726 luaL_addchar(&b, ':');
2727 luaL_pushresult(&b);
2728 ip = lua_tolstring(L, lua_gettop(L), NULL);
2729 }
2730 }
2731
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002732 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002733 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002734 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002735 lua_pushnil(L);
2736 return 1;
2737 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002738
2739 /* Parse ip address. */
Willy Tarreau5fc93282020-09-16 18:25:03 +02002740 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 +02002741 if (!addr) {
2742 xref_unlock(&socket->xref, peer);
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002743 WILL_LJMP(luaL_error(L, "connect: cannot parse destination address '%s'", ip));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002744 }
Willy Tarreau9da9a6f2019-07-17 14:49:44 +02002745
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002746 /* Set port. */
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002747 if (low == 0) {
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002748 if (addr->ss_family == AF_INET) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002749 if (port == -1) {
2750 xref_unlock(&socket->xref, peer);
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002751 WILL_LJMP(luaL_error(L, "connect: port missing"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002752 }
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002753 ((struct sockaddr_in *)addr)->sin_port = htons(port);
2754 } else if (addr->ss_family == AF_INET6) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002755 if (port == -1) {
2756 xref_unlock(&socket->xref, peer);
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002757 WILL_LJMP(luaL_error(L, "connect: port missing"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002758 }
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002759 ((struct sockaddr_in6 *)addr)->sin6_port = htons(port);
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002760 }
2761 }
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002762
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002763 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2764 si = appctx->owner;
2765 s = si_strm(si);
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002766
Willy Tarreau9b7587a2020-10-15 07:32:10 +02002767 if (!sockaddr_alloc(&s->target_addr, addr, sizeof(*addr))) {
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002768 xref_unlock(&socket->xref, peer);
2769 WILL_LJMP(luaL_error(L, "connect: internal error"));
2770 }
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002771 s->flags |= SF_ADDR_SET;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002772
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002773 /* Get hlua struct, or NULL if we execute from main lua state */
Thierry FOURNIER95ad96a2015-03-09 18:12:40 +01002774 hlua = hlua_gethlua(L);
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002775 if (!hlua)
2776 return 0;
Willy Tarreaubdc97a82015-08-24 15:42:28 +02002777
2778 /* inform the stream that we want to be notified whenever the
2779 * connection completes.
2780 */
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01002781 si_cant_get(&s->si[0]);
Willy Tarreau3367d412018-11-15 10:57:41 +01002782 si_rx_endp_more(&s->si[0]);
Thierry FOURNIER8c8fbbe2015-09-26 17:02:35 +02002783 appctx_wakeup(appctx);
Willy Tarreaubdc97a82015-08-24 15:42:28 +02002784
Willy Tarreauf31af932020-01-14 09:59:38 +01002785 hlua->gc_count++;
Thierry FOURNIER7c39ab42015-09-27 22:53:33 +02002786
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002787 if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_write, hlua->task)) {
2788 xref_unlock(&socket->xref, peer);
Thierry FOURNIER95ad96a2015-03-09 18:12:40 +01002789 WILL_LJMP(luaL_error(L, "out of memory"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002790 }
2791 xref_unlock(&socket->xref, peer);
PiBa-NL706d5ee2018-05-05 23:51:42 +02002792
2793 task_wakeup(s->task, TASK_WOKEN_INIT);
2794 /* Return yield waiting for connection. */
2795
Willy Tarreau9635e032018-10-16 17:52:55 +02002796 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_connect_yield, TICK_ETERNITY, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002797
2798 return 0;
2799}
2800
Baptiste Assmann84bb4932015-03-02 21:40:06 +01002801#ifdef USE_OPENSSL
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002802__LJMP static int hlua_socket_connect_ssl(struct lua_State *L)
2803{
2804 struct hlua_socket *socket;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002805 struct xref *peer;
2806 struct appctx *appctx;
2807 struct stream_interface *si;
2808 struct stream *s;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002809
2810 MAY_LJMP(check_args(L, 3, "connect_ssl"));
2811 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002812
2813 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002814 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002815 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002816 lua_pushnil(L);
2817 return 1;
2818 }
2819 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2820 si = appctx->owner;
2821 s = si_strm(si);
2822
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +01002823 s->target = &socket_ssl->obj_type;
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002824 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002825 return MAY_LJMP(hlua_socket_connect(L));
2826}
Baptiste Assmann84bb4932015-03-02 21:40:06 +01002827#endif
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002828
2829__LJMP static int hlua_socket_setoption(struct lua_State *L)
2830{
2831 return 0;
2832}
2833
2834__LJMP static int hlua_socket_settimeout(struct lua_State *L)
2835{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002836 struct hlua_socket *socket;
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002837 int tmout;
Mark Lakes56cc1252018-03-27 09:48:06 +02002838 double dtmout;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002839 struct xref *peer;
2840 struct appctx *appctx;
2841 struct stream_interface *si;
2842 struct stream *s;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002843
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002844 MAY_LJMP(check_args(L, 2, "settimeout"));
2845
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002846 socket = MAY_LJMP(hlua_checksocket(L, 1));
Mark Lakes56cc1252018-03-27 09:48:06 +02002847
Cyril Bonté7ee465f2018-08-19 22:08:50 +02002848 /* convert the timeout to millis */
2849 dtmout = MAY_LJMP(luaL_checknumber(L, 2)) * 1000;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002850
Thierry Fournier17a921b2018-03-08 09:59:02 +01002851 /* Check for negative values */
Mark Lakes56cc1252018-03-27 09:48:06 +02002852 if (dtmout < 0)
Thierry Fournier17a921b2018-03-08 09:59:02 +01002853 WILL_LJMP(luaL_error(L, "settimeout: cannot set negatives values"));
2854
Mark Lakes56cc1252018-03-27 09:48:06 +02002855 if (dtmout > INT_MAX) /* overflow check */
Cyril Bonté7ee465f2018-08-19 22:08:50 +02002856 WILL_LJMP(luaL_error(L, "settimeout: cannot set values larger than %d ms", INT_MAX));
Mark Lakes56cc1252018-03-27 09:48:06 +02002857
2858 tmout = MS_TO_TICKS((int)dtmout);
Cyril Bonté7ee465f2018-08-19 22:08:50 +02002859 if (tmout == 0)
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05002860 tmout++; /* very small timeouts are adjusted to a minimum of 1ms */
Mark Lakes56cc1252018-03-27 09:48:06 +02002861
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002862 /* Check if we run on the same thread than the xreator thread.
2863 * We cannot access to the socket if the thread is different.
2864 */
2865 if (socket->tid != tid)
2866 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2867
Mark Lakes56cc1252018-03-27 09:48:06 +02002868 /* check for connection break. If some data were read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002869 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002870 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002871 hlua_pusherror(L, "socket: not yet initialised, you can't set timeouts.");
2872 WILL_LJMP(lua_error(L));
2873 return 0;
2874 }
2875 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2876 si = appctx->owner;
2877 s = si_strm(si);
2878
Cyril Bonté7bb63452018-08-17 23:51:02 +02002879 s->sess->fe->timeout.connect = tmout;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002880 s->req.rto = tmout;
2881 s->req.wto = tmout;
2882 s->res.rto = tmout;
2883 s->res.wto = tmout;
Cyril Bonté7bb63452018-08-17 23:51:02 +02002884 s->req.rex = tick_add_ifset(now_ms, tmout);
2885 s->req.wex = tick_add_ifset(now_ms, tmout);
2886 s->res.rex = tick_add_ifset(now_ms, tmout);
2887 s->res.wex = tick_add_ifset(now_ms, tmout);
2888
2889 s->task->expire = tick_add_ifset(now_ms, tmout);
2890 task_queue(s->task);
2891
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002892 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002893
Thierry Fourniere9636f12018-03-08 09:54:32 +01002894 lua_pushinteger(L, 1);
Tim Duesterhus119a5f12018-01-06 19:16:25 +01002895 return 1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002896}
2897
2898__LJMP static int hlua_socket_new(lua_State *L)
2899{
2900 struct hlua_socket *socket;
2901 struct appctx *appctx;
Willy Tarreau15b5e142015-04-04 14:38:25 +02002902 struct session *sess;
Willy Tarreau61cf7c82015-04-06 00:48:33 +02002903 struct stream *strm;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002904
2905 /* Check stack size. */
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01002906 if (!lua_checkstack(L, 3)) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002907 hlua_pusherror(L, "socket: full stack");
2908 goto out_fail_conf;
2909 }
2910
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01002911 /* Create the object: obj[0] = userdata. */
2912 lua_newtable(L);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002913 socket = MAY_LJMP(lua_newuserdata(L, sizeof(*socket)));
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01002914 lua_rawseti(L, -2, 0);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002915 memset(socket, 0, sizeof(*socket));
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002916 socket->tid = tid;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002917
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05002918 /* Check if the various memory pools are initialized. */
Willy Tarreaubafbe012017-11-24 17:34:44 +01002919 if (!pool_head_stream || !pool_head_buffer) {
Thierry FOURNIER4a6170c2015-03-09 17:07:10 +01002920 hlua_pusherror(L, "socket: uninitialized pools.");
2921 goto out_fail_conf;
2922 }
2923
Willy Tarreau87b09662015-04-03 00:22:06 +02002924 /* Pop a class stream metatable and affect it to the userdata. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002925 lua_rawgeti(L, LUA_REGISTRYINDEX, class_socket_ref);
2926 lua_setmetatable(L, -2);
2927
Willy Tarreaud420a972015-04-06 00:39:18 +02002928 /* Create the applet context */
Willy Tarreau5f4a47b2017-10-31 15:59:32 +01002929 appctx = appctx_new(&update_applet, tid_bit);
Willy Tarreau61cf7c82015-04-06 00:48:33 +02002930 if (!appctx) {
2931 hlua_pusherror(L, "socket: out of memory");
Willy Tarreaufeb76402015-04-03 14:10:06 +02002932 goto out_fail_conf;
Willy Tarreau61cf7c82015-04-06 00:48:33 +02002933 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002934
Thierry FOURNIER18d09902016-12-16 09:25:38 +01002935 appctx->ctx.hlua_cosocket.connected = 0;
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02002936 appctx->ctx.hlua_cosocket.die = 0;
Thierry FOURNIER18d09902016-12-16 09:25:38 +01002937 LIST_INIT(&appctx->ctx.hlua_cosocket.wake_on_write);
2938 LIST_INIT(&appctx->ctx.hlua_cosocket.wake_on_read);
Willy Tarreaub2bf8332015-04-04 15:58:58 +02002939
Willy Tarreaud420a972015-04-06 00:39:18 +02002940 /* Now create a session, task and stream for this applet */
Amaury Denoyelle239fdbf2021-03-24 10:22:03 +01002941 sess = session_new(socket_proxy, NULL, &appctx->obj_type);
Willy Tarreaud420a972015-04-06 00:39:18 +02002942 if (!sess) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002943 hlua_pusherror(L, "socket: out of memory");
Willy Tarreaud420a972015-04-06 00:39:18 +02002944 goto out_fail_sess;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002945 }
2946
Christopher Faulet26256f82020-09-14 11:40:13 +02002947 strm = stream_new(sess, &appctx->obj_type, &BUF_NULL);
Willy Tarreau61cf7c82015-04-06 00:48:33 +02002948 if (!strm) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002949 hlua_pusherror(L, "socket: out of memory");
Willy Tarreaud420a972015-04-06 00:39:18 +02002950 goto out_fail_stream;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002951 }
2952
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002953 /* Initialise cross reference between stream and Lua socket object. */
2954 xref_create(&socket->xref, &appctx->ctx.hlua_cosocket.xref);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002955
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002956 /* Configure "right" stream interface. this "si" is used to connect
2957 * and retrieve data from the server. The connection is initialized
2958 * with the "struct server".
2959 */
Willy Tarreau61cf7c82015-04-06 00:48:33 +02002960 si_set_state(&strm->si[1], SI_ST_ASS);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002961
2962 /* Force destination server. */
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002963 strm->flags |= SF_DIRECT | SF_ASSIGNED | SF_BE_ASSIGNED;
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +01002964 strm->target = &socket_tcp->obj_type;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002965
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002966 return 1;
2967
Willy Tarreaud420a972015-04-06 00:39:18 +02002968 out_fail_stream:
Willy Tarreau11c36242015-04-04 15:54:03 +02002969 session_free(sess);
Willy Tarreaud420a972015-04-06 00:39:18 +02002970 out_fail_sess:
2971 appctx_free(appctx);
2972 out_fail_conf:
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002973 WILL_LJMP(lua_error(L));
2974 return 0;
2975}
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01002976
2977/*
2978 *
2979 *
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002980 * Class Channel
2981 *
2982 *
2983 */
2984
2985/* Returns the struct hlua_channel join to the class channel in the
2986 * stack entry "ud" or throws an argument error.
2987 */
Willy Tarreau47860ed2015-03-10 14:07:50 +01002988__LJMP static struct channel *hlua_checkchannel(lua_State *L, int ud)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002989{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02002990 return MAY_LJMP(hlua_checkudata(L, ud, class_channel_ref));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002991}
2992
Willy Tarreau47860ed2015-03-10 14:07:50 +01002993/* Pushes the channel onto the top of the stack. If the stask does not have a
2994 * free slots, the function fails and returns 0;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002995 */
Willy Tarreau2a71af42015-03-10 13:51:50 +01002996static int hlua_channel_new(lua_State *L, struct channel *channel)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002997{
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002998 /* Check stack size. */
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01002999 if (!lua_checkstack(L, 3))
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003000 return 0;
3001
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01003002 lua_newtable(L);
Willy Tarreau47860ed2015-03-10 14:07:50 +01003003 lua_pushlightuserdata(L, channel);
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01003004 lua_rawseti(L, -2, 0);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003005
3006 /* Pop a class sesison metatable and affect it to the userdata. */
3007 lua_rawgeti(L, LUA_REGISTRYINDEX, class_channel_ref);
3008 lua_setmetatable(L, -2);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003009 return 1;
3010}
3011
3012/* Duplicate all the data present in the input channel and put it
3013 * in a string LUA variables. Returns -1 and push a nil value in
3014 * the stack if the channel is closed and all the data are consumed,
3015 * returns 0 if no data are available, otherwise it returns the length
Ilya Shipitsind4259502020-04-08 01:07:56 +05003016 * of the built string.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003017 */
Willy Tarreau47860ed2015-03-10 14:07:50 +01003018static inline int _hlua_channel_dup(struct channel *chn, lua_State *L)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003019{
3020 char *blk1;
3021 char *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02003022 size_t len1;
3023 size_t len2;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003024 int ret;
3025 luaL_Buffer b;
3026
Willy Tarreau06d80a92017-10-19 14:32:15 +02003027 ret = ci_getblk_nc(chn, &blk1, &len1, &blk2, &len2);
Christopher Faulet055310f2021-08-05 11:58:37 +02003028 if (unlikely(ret <= 0)) {
3029 if (ret < 0 || HLUA_CANT_YIELD(hlua_gethlua(L))) {
3030 lua_pushnil(L);
3031 return -1;
3032 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003033 return 0;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003034 }
3035
3036 luaL_buffinit(L, &b);
3037 luaL_addlstring(&b, blk1, len1);
3038 if (unlikely(ret == 2))
3039 luaL_addlstring(&b, blk2, len2);
3040 luaL_pushresult(&b);
3041
3042 if (unlikely(ret == 2))
3043 return len1 + len2;
3044 return len1;
3045}
3046
3047/* "_hlua_channel_dup" wrapper. If no data are available, it returns
3048 * a yield. This function keep the data in the buffer.
3049 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003050__LJMP static int hlua_channel_dup_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003051{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003052 struct channel *chn;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003053
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003054 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3055
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01003056 if (IS_HTX_STRM(chn_strm(chn))) {
Thierry Fournier77016da2020-08-15 14:35:51 +02003057 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
Christopher Faulet3f829a42018-12-13 21:56:45 +01003058 WILL_LJMP(lua_error(L));
Thierry Fournier77016da2020-08-15 14:35:51 +02003059 }
Christopher Faulet3f829a42018-12-13 21:56:45 +01003060
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003061 if (_hlua_channel_dup(chn, L) == 0)
Willy Tarreau9635e032018-10-16 17:52:55 +02003062 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_dup_yield, TICK_ETERNITY, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003063 return 1;
3064}
3065
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003066/* Check arguments for the function "hlua_channel_dup_yield". */
3067__LJMP static int hlua_channel_dup(lua_State *L)
3068{
3069 MAY_LJMP(check_args(L, 1, "dup"));
3070 MAY_LJMP(hlua_checkchannel(L, 1));
3071 return MAY_LJMP(hlua_channel_dup_yield(L, 0, 0));
3072}
3073
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003074/* "_hlua_channel_dup" wrapper. If no data are available, it returns
3075 * a yield. This function consumes the data in the buffer. It returns
3076 * a string containing the data or a nil pointer if no data are available
3077 * and the channel is closed.
3078 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003079__LJMP static int hlua_channel_get_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003080{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003081 struct channel *chn;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003082 int ret;
3083
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003084 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003085
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01003086 if (IS_HTX_STRM(chn_strm(chn))) {
Thierry Fournier77016da2020-08-15 14:35:51 +02003087 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
Christopher Faulet3f829a42018-12-13 21:56:45 +01003088 WILL_LJMP(lua_error(L));
Thierry Fournier77016da2020-08-15 14:35:51 +02003089 }
Christopher Faulet3f829a42018-12-13 21:56:45 +01003090
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003091 ret = _hlua_channel_dup(chn, L);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003092 if (unlikely(ret == 0))
Willy Tarreau9635e032018-10-16 17:52:55 +02003093 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_get_yield, TICK_ETERNITY, 0));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003094
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003095 if (unlikely(ret == -1))
3096 return 1;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003097
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003098 b_sub(&chn->buf, ret);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003099 return 1;
3100}
3101
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003102/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003103__LJMP static int hlua_channel_get(lua_State *L)
3104{
3105 MAY_LJMP(check_args(L, 1, "get"));
3106 MAY_LJMP(hlua_checkchannel(L, 1));
3107 return MAY_LJMP(hlua_channel_get_yield(L, 0, 0));
3108}
3109
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003110/* This functions consumes and returns one line. If the channel is closed,
3111 * and the last data does not contains a final '\n', the data are returned
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003112 * without the final '\n'. When no more data are available, it returns nil
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003113 * value.
3114 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003115__LJMP static int hlua_channel_getline_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003116{
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003117 char *blk1;
3118 char *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02003119 size_t len1;
3120 size_t len2;
3121 size_t len;
Willy Tarreau47860ed2015-03-10 14:07:50 +01003122 struct channel *chn;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003123 int ret;
3124 luaL_Buffer b;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003125
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003126 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3127
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01003128 if (IS_HTX_STRM(chn_strm(chn))) {
Thierry Fournier77016da2020-08-15 14:35:51 +02003129 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
Christopher Faulet3f829a42018-12-13 21:56:45 +01003130 WILL_LJMP(lua_error(L));
Thierry Fournier77016da2020-08-15 14:35:51 +02003131 }
Christopher Faulet3f829a42018-12-13 21:56:45 +01003132
Willy Tarreau06d80a92017-10-19 14:32:15 +02003133 ret = ci_getline_nc(chn, &blk1, &len1, &blk2, &len2);
Christopher Faulet055310f2021-08-05 11:58:37 +02003134 if (ret == 0) {
3135 if (HLUA_CANT_YIELD(hlua_gethlua(L))) {
3136 _hlua_channel_dup(chn, L);
3137 return 1;
3138 }
Willy Tarreau9635e032018-10-16 17:52:55 +02003139 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_getline_yield, TICK_ETERNITY, 0));
Christopher Faulet055310f2021-08-05 11:58:37 +02003140 }
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003141
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003142 if (ret == -1) {
3143 lua_pushnil(L);
3144 return 1;
3145 }
3146
3147 luaL_buffinit(L, &b);
3148 luaL_addlstring(&b, blk1, len1);
3149 len = len1;
3150 if (unlikely(ret == 2)) {
3151 luaL_addlstring(&b, blk2, len2);
3152 len += len2;
3153 }
3154 luaL_pushresult(&b);
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003155 b_rep_blk(&chn->buf, ci_head(chn), ci_head(chn) + len, NULL, 0);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003156 return 1;
3157}
3158
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003159/* Check arguments for the function "hlua_channel_getline_yield". */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003160__LJMP static int hlua_channel_getline(lua_State *L)
3161{
3162 MAY_LJMP(check_args(L, 1, "getline"));
3163 MAY_LJMP(hlua_checkchannel(L, 1));
3164 return MAY_LJMP(hlua_channel_getline_yield(L, 0, 0));
3165}
3166
Christopher Faulet3b7bc3e2021-08-06 09:59:49 +02003167/* This function takes a string as argument, and append it at the input side of
3168 * channel. If data cannot be copied, because there is not enough space to do so
3169 * or because the channel is closed, it returns -1. Otherwise, it returns the
3170 * amount of data written (the string length). This function does not yield.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003171 */
Christopher Faulet3b7bc3e2021-08-06 09:59:49 +02003172__LJMP static int hlua_channel_append(lua_State *L)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003173{
Christopher Faulet3b7bc3e2021-08-06 09:59:49 +02003174 struct channel *chn;
3175 const char *str;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003176 size_t len;
Christopher Faulet3b7bc3e2021-08-06 09:59:49 +02003177
3178 MAY_LJMP(check_args(L, 2, "append"));
3179 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3180 str = MAY_LJMP(luaL_checklstring(L, 2, &len));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003181
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01003182 if (IS_HTX_STRM(chn_strm(chn))) {
Thierry Fournier77016da2020-08-15 14:35:51 +02003183 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
Christopher Faulet3f829a42018-12-13 21:56:45 +01003184 WILL_LJMP(lua_error(L));
Thierry Fournier77016da2020-08-15 14:35:51 +02003185 }
Christopher Faulet3f829a42018-12-13 21:56:45 +01003186
Christopher Faulet3b7bc3e2021-08-06 09:59:49 +02003187 if (len > c_room(chn) || ci_putblk(chn, str, len) < 0)
3188 lua_pushinteger(L, -1);
3189 else
3190 lua_pushinteger(L, len);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003191 return 1;
3192}
3193
Christopher Faulet3b7bc3e2021-08-06 09:59:49 +02003194/* The function replaces input data from the channel by the string passed as
3195 * argument. Before clearing the buffer, we take care the copy will be
3196 * possible. It returns the amount of data written (the string length) on
3197 * success or -1 if the copy is not performed. This function does not yield.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003198 */
3199__LJMP static int hlua_channel_set(lua_State *L)
3200{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003201 struct channel *chn;
Christopher Faulet3b7bc3e2021-08-06 09:59:49 +02003202 const char *str;
3203 size_t len;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003204
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003205 MAY_LJMP(check_args(L, 2, "set"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003206 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Faulet3b7bc3e2021-08-06 09:59:49 +02003207 str = MAY_LJMP(luaL_checklstring(L, 2, &len));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003208
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01003209 if (IS_HTX_STRM(chn_strm(chn))) {
Thierry Fournier77016da2020-08-15 14:35:51 +02003210 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
Christopher Faulet3f829a42018-12-13 21:56:45 +01003211 WILL_LJMP(lua_error(L));
Thierry Fournier77016da2020-08-15 14:35:51 +02003212 }
Christopher Faulet3f829a42018-12-13 21:56:45 +01003213
Christopher Faulet3b7bc3e2021-08-06 09:59:49 +02003214 /* Be sure we can copied the string once input data will be removed. */
3215 if (len > ci_data(chn) || channel_input_closed(chn))
3216 lua_pushinteger(L, -1);
3217 else {
3218 b_set_data(&chn->buf, co_data(chn));
3219 if (ci_putblk(chn, str, len) < 0)
3220 lua_pushinteger(L, -1);
3221 else
3222 lua_pushinteger(L, len);
3223 }
3224 return -1;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003225}
3226
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003227/* Append data in the output side of the buffer. This data is immediately
3228 * sent. The function returns the amount of data written. If the buffer
3229 * cannot contain the data, the function yields. The function returns -1
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003230 * if the channel is closed.
3231 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003232__LJMP static int hlua_channel_send_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003233{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003234 struct channel *chn = MAY_LJMP(hlua_checkchannel(L, 1));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003235 size_t len;
3236 const char *str = MAY_LJMP(luaL_checklstring(L, 2, &len));
3237 int l = MAY_LJMP(luaL_checkinteger(L, 3));
3238 int max;
Thierry Fournier4234dbd2020-11-28 13:18:23 +01003239 struct hlua *hlua;
3240
3241 /* Get hlua struct, or NULL if we execute from main lua state */
3242 hlua = hlua_gethlua(L);
3243 if (!hlua) {
3244 lua_pushnil(L);
3245 return 1;
3246 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003247
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01003248 if (IS_HTX_STRM(chn_strm(chn))) {
Thierry Fournier77016da2020-08-15 14:35:51 +02003249 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
Christopher Faulet3f829a42018-12-13 21:56:45 +01003250 WILL_LJMP(lua_error(L));
Thierry Fournier77016da2020-08-15 14:35:51 +02003251 }
Christopher Faulet3f829a42018-12-13 21:56:45 +01003252
Willy Tarreau47860ed2015-03-10 14:07:50 +01003253 if (unlikely(channel_output_closed(chn))) {
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003254 lua_pushinteger(L, -1);
3255 return 1;
3256 }
3257
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003258 /* Check if the buffer is available because HAProxy doesn't allocate
Thierry FOURNIER3e3a6082015-03-05 17:06:12 +01003259 * the request buffer if its not required.
3260 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003261 if (chn->buf.size == 0) {
Christopher Faulet055310f2021-08-05 11:58:37 +02003262 if (HLUA_CANT_YIELD(hlua_gethlua(L)))
3263 return 1;
Willy Tarreau4b962a42018-11-15 11:03:21 +01003264 si_rx_buff_blk(chn_prod(chn));
Willy Tarreau9635e032018-10-16 17:52:55 +02003265 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_send_yield, TICK_ETERNITY, 0));
Thierry FOURNIER3e3a6082015-03-05 17:06:12 +01003266 }
3267
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003268 /* The written data will be immediately sent, so we can check
3269 * the available space without taking in account the reserve.
3270 * The reserve is guaranteed for the processing of incoming
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003271 * data, because the buffer will be flushed.
3272 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003273 max = b_room(&chn->buf);
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003274
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003275 /* If there is no space available, and the output buffer is empty.
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003276 * in this case, we cannot add more data, so we cannot yield,
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05003277 * we return the amount of copied data.
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003278 */
Willy Tarreaua79021a2018-06-15 18:07:57 +02003279 if (max == 0 && co_data(chn) == 0)
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003280 return 1;
3281
3282 /* Adjust the real required length. */
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003283 if (max > len - l)
3284 max = len - l;
3285
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003286 /* The buffer available size may be not contiguous. This test
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003287 * detects a non contiguous buffer and realign it.
3288 */
Willy Tarreau3f679992018-06-15 15:06:42 +02003289 if (ci_space_for_replace(chn) < max)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003290 channel_slow_realign(chn, trash.area);
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003291
3292 /* Copy input data in the buffer. */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003293 max = b_rep_blk(&chn->buf, ci_head(chn), ci_head(chn), str + l, max);
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003294
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003295 /* buffer replace considers that the input part is filled.
3296 * so, I must forward these new data in the output part.
3297 */
Willy Tarreaubcbd3932018-06-06 07:13:22 +02003298 c_adv(chn, max);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003299
3300 l += max;
3301 lua_pop(L, 1);
3302 lua_pushinteger(L, l);
3303
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003304 if (l < len) {
Christopher Faulet055310f2021-08-05 11:58:37 +02003305 /* If there is no space available, and the output buffer is empty.
3306 * in this case, we cannot add more data, so we cannot yield,
3307 * we return the amount of copied data.
3308 */
3309 max = b_room(&chn->buf);
3310 if ((max == 0 && co_data(chn) == 0) || HLUA_CANT_YIELD(hlua_gethlua(L)))
3311 return 1;
3312
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003313 /* If we are waiting for space in the response buffer, we
3314 * must set the flag WAKERESWR. This flag required the task
3315 * wake up if any activity is detected on the response buffer.
3316 */
Willy Tarreau47860ed2015-03-10 14:07:50 +01003317 if (chn->flags & CF_ISRESP)
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003318 HLUA_SET_WAKERESWR(hlua);
Thierry FOURNIER53e08ec2015-03-06 00:35:53 +01003319 else
3320 HLUA_SET_WAKEREQWR(hlua);
Willy Tarreau9635e032018-10-16 17:52:55 +02003321 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_send_yield, TICK_ETERNITY, 0));
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003322 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003323
3324 return 1;
3325}
3326
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05003327/* Just a wrapper of "_hlua_channel_send". This wrapper permits
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003328 * yield the LUA process, and resume it without checking the
3329 * input arguments.
3330 */
3331__LJMP static int hlua_channel_send(lua_State *L)
3332{
3333 MAY_LJMP(check_args(L, 2, "send"));
3334 lua_pushinteger(L, 0);
3335
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003336 return MAY_LJMP(hlua_channel_send_yield(L, 0, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003337}
3338
3339/* This function forward and amount of butes. The data pass from
3340 * the input side of the buffer to the output side, and can be
3341 * forwarded. This function never fails.
3342 *
3343 * The Lua function takes an amount of bytes to be forwarded in
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05003344 * input. It returns the number of bytes forwarded.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003345 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003346__LJMP static int hlua_channel_forward_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003347{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003348 struct channel *chn;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003349 int len;
3350 int l;
3351 int max;
Thierry Fournier4234dbd2020-11-28 13:18:23 +01003352 struct hlua *hlua;
3353
3354 /* Get hlua struct, or NULL if we execute from main lua state */
3355 hlua = hlua_gethlua(L);
3356 if (!hlua)
3357 return 1;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003358
3359 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Faulet3f829a42018-12-13 21:56:45 +01003360
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01003361 if (IS_HTX_STRM(chn_strm(chn))) {
Thierry Fournier77016da2020-08-15 14:35:51 +02003362 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
Christopher Faulet3f829a42018-12-13 21:56:45 +01003363 WILL_LJMP(lua_error(L));
Thierry Fournier77016da2020-08-15 14:35:51 +02003364 }
Christopher Faulet3f829a42018-12-13 21:56:45 +01003365
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003366 len = MAY_LJMP(luaL_checkinteger(L, 2));
3367 l = MAY_LJMP(luaL_checkinteger(L, -1));
3368
3369 max = len - l;
Willy Tarreaua79021a2018-06-15 18:07:57 +02003370 if (max > ci_data(chn))
3371 max = ci_data(chn);
Willy Tarreau47860ed2015-03-10 14:07:50 +01003372 channel_forward(chn, max);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003373 l += max;
3374
3375 lua_pop(L, 1);
3376 lua_pushinteger(L, l);
3377
3378 /* Check if it miss bytes to forward. */
3379 if (l < len) {
3380 /* The the input channel or the output channel are closed, we
3381 * must return the amount of data forwarded.
3382 */
Christopher Faulet055310f2021-08-05 11:58:37 +02003383 if (channel_input_closed(chn) || channel_output_closed(chn) || HLUA_CANT_YIELD(hlua_gethlua(L)))
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003384 return 1;
3385
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003386 /* If we are waiting for space data in the response buffer, we
3387 * must set the flag WAKERESWR. This flag required the task
3388 * wake up if any activity is detected on the response buffer.
3389 */
Willy Tarreau47860ed2015-03-10 14:07:50 +01003390 if (chn->flags & CF_ISRESP)
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003391 HLUA_SET_WAKERESWR(hlua);
Thierry FOURNIER53e08ec2015-03-06 00:35:53 +01003392 else
3393 HLUA_SET_WAKEREQWR(hlua);
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003394
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003395 /* Otherwise, we can yield waiting for new data in the inpout side. */
Willy Tarreau9635e032018-10-16 17:52:55 +02003396 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_forward_yield, TICK_ETERNITY, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003397 }
3398
3399 return 1;
3400}
3401
3402/* Just check the input and prepare the stack for the previous
3403 * function "hlua_channel_forward_yield"
3404 */
3405__LJMP static int hlua_channel_forward(lua_State *L)
3406{
3407 MAY_LJMP(check_args(L, 2, "forward"));
3408 MAY_LJMP(hlua_checkchannel(L, 1));
3409 MAY_LJMP(luaL_checkinteger(L, 2));
3410
3411 lua_pushinteger(L, 0);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003412 return MAY_LJMP(hlua_channel_forward_yield(L, 0, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003413}
3414
3415/* Just returns the number of bytes available in the input
3416 * side of the buffer. This function never fails.
3417 */
3418__LJMP static int hlua_channel_get_in_len(lua_State *L)
3419{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003420 struct channel *chn;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003421
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003422 MAY_LJMP(check_args(L, 1, "get_in_len"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003423 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Fauleta3ceac12018-12-14 13:39:09 +01003424 if (IS_HTX_STRM(chn_strm(chn))) {
3425 struct htx *htx = htxbuf(&chn->buf);
3426 lua_pushinteger(L, htx->data - co_data(chn));
3427 }
3428 else
3429 lua_pushinteger(L, ci_data(chn));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003430 return 1;
3431}
3432
Thierry FOURNIER / OZON.IO65192f32016-11-07 15:28:40 +01003433/* Returns true if the channel is full. */
3434__LJMP static int hlua_channel_is_full(lua_State *L)
3435{
3436 struct channel *chn;
Thierry FOURNIER / OZON.IO65192f32016-11-07 15:28:40 +01003437
3438 MAY_LJMP(check_args(L, 1, "is_full"));
3439 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Faulet0ec740e2020-02-26 11:59:19 +01003440 /* ignore the reserve, we are not on a producer side (ie in an
3441 * applet).
3442 */
3443 lua_pushboolean(L, channel_full(chn, 0));
Thierry FOURNIER / OZON.IO65192f32016-11-07 15:28:40 +01003444 return 1;
3445}
3446
Christopher Faulet2ac9ba22020-02-25 10:15:50 +01003447/* Returns true if the channel is the response channel. */
3448__LJMP static int hlua_channel_is_resp(lua_State *L)
3449{
3450 struct channel *chn;
3451
3452 MAY_LJMP(check_args(L, 1, "is_resp"));
3453 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3454
3455 lua_pushboolean(L, !!(chn->flags & CF_ISRESP));
3456 return 1;
3457}
3458
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003459/* Just returns the number of bytes available in the output
3460 * side of the buffer. This function never fails.
3461 */
3462__LJMP static int hlua_channel_get_out_len(lua_State *L)
3463{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003464 struct channel *chn;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003465
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003466 MAY_LJMP(check_args(L, 1, "get_out_len"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003467 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Willy Tarreaua79021a2018-06-15 18:07:57 +02003468 lua_pushinteger(L, co_data(chn));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003469 return 1;
3470}
3471
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003472/*
3473 *
3474 *
3475 * Class Fetches
3476 *
3477 *
3478 */
3479
3480/* Returns a struct hlua_session if the stack entry "ud" is
Willy Tarreau87b09662015-04-03 00:22:06 +02003481 * a class stream, otherwise it throws an error.
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003482 */
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01003483__LJMP static struct hlua_smp *hlua_checkfetches(lua_State *L, int ud)
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003484{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02003485 return MAY_LJMP(hlua_checkudata(L, ud, class_fetches_ref));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003486}
3487
3488/* This function creates and push in the stack a fetch object according
3489 * with a current TXN.
3490 */
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003491static int hlua_fetches_new(lua_State *L, struct hlua_txn *txn, unsigned int flags)
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003492{
Willy Tarreau7073c472015-04-06 11:15:40 +02003493 struct hlua_smp *hsmp;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003494
3495 /* Check stack size. */
3496 if (!lua_checkstack(L, 3))
3497 return 0;
3498
3499 /* Create the object: obj[0] = userdata.
3500 * Note that the base of the Fetches object is the
3501 * transaction object.
3502 */
3503 lua_newtable(L);
Willy Tarreau7073c472015-04-06 11:15:40 +02003504 hsmp = lua_newuserdata(L, sizeof(*hsmp));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003505 lua_rawseti(L, -2, 0);
3506
Willy Tarreau7073c472015-04-06 11:15:40 +02003507 hsmp->s = txn->s;
3508 hsmp->p = txn->p;
Thierry FOURNIERc4eebc82015-11-02 10:01:59 +01003509 hsmp->dir = txn->dir;
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003510 hsmp->flags = flags;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003511
3512 /* Pop a class sesison metatable and affect it to the userdata. */
3513 lua_rawgeti(L, LUA_REGISTRYINDEX, class_fetches_ref);
3514 lua_setmetatable(L, -2);
3515
3516 return 1;
3517}
3518
3519/* This function is an LUA binding. It is called with each sample-fetch.
3520 * It uses closure argument to store the associated sample-fetch. It
3521 * returns only one argument or throws an error. An error is thrown
3522 * only if an error is encountered during the argument parsing. If
3523 * the "sample-fetch" function fails, nil is returned.
3524 */
3525__LJMP static int hlua_run_sample_fetch(lua_State *L)
3526{
Willy Tarreaub2ccb562015-04-06 11:11:15 +02003527 struct hlua_smp *hsmp;
Willy Tarreau2ec22742015-03-10 14:27:20 +01003528 struct sample_fetch *f;
Frédéric Lécaillef874a832018-06-15 13:56:04 +02003529 struct arg args[ARGM_NBARGS + 1] = {{0}};
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003530 int i;
3531 struct sample smp;
3532
3533 /* Get closure arguments. */
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02003534 f = lua_touserdata(L, lua_upvalueindex(1));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003535
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003536 /* Get traditional arguments. */
Willy Tarreaub2ccb562015-04-06 11:11:15 +02003537 hsmp = MAY_LJMP(hlua_checkfetches(L, 1));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003538
Thierry FOURNIERca988662015-12-20 18:43:03 +01003539 /* Check execution authorization. */
3540 if (f->use & SMP_USE_HTTP_ANY &&
3541 !(hsmp->flags & HLUA_F_MAY_USE_HTTP)) {
3542 lua_pushfstring(L, "the sample-fetch '%s' needs an HTTP parser which "
3543 "is not available in Lua services", f->kw);
3544 WILL_LJMP(lua_error(L));
3545 }
3546
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003547 /* Get extra arguments. */
3548 for (i = 0; i < lua_gettop(L) - 1; i++) {
3549 if (i >= ARGM_NBARGS)
3550 break;
3551 hlua_lua2arg(L, i + 2, &args[i]);
3552 }
3553 args[i].type = ARGT_STOP;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003554 args[i].data.str.area = NULL;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003555
3556 /* Check arguments. */
Willy Tarreaub2ccb562015-04-06 11:11:15 +02003557 MAY_LJMP(hlua_lua2arg_check(L, 2, args, f->arg_mask, hsmp->p));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003558
3559 /* Run the special args checker. */
Willy Tarreau2ec22742015-03-10 14:27:20 +01003560 if (f->val_args && !f->val_args(args, NULL)) {
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003561 lua_pushfstring(L, "error in arguments");
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003562 goto error;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003563 }
3564
3565 /* Initialise the sample. */
3566 memset(&smp, 0, sizeof(smp));
3567
3568 /* Run the sample fetch process. */
Willy Tarreau1777ea62016-03-10 16:15:46 +01003569 smp_set_owner(&smp, hsmp->p, hsmp->s->sess, hsmp->s, hsmp->dir & SMP_OPT_DIR);
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003570 if (!f->process(args, &smp, f->kw, f->private)) {
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003571 if (hsmp->flags & HLUA_F_AS_STRING)
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01003572 lua_pushstring(L, "");
3573 else
3574 lua_pushnil(L);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003575 goto end;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003576 }
3577
3578 /* Convert the returned sample in lua value. */
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003579 if (hsmp->flags & HLUA_F_AS_STRING)
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01003580 hlua_smp2lua_str(L, &smp);
3581 else
3582 hlua_smp2lua(L, &smp);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003583
3584 end:
3585 for (i = 0; args[i].type != ARGT_STOP; i++) {
3586 if (args[i].type == ARGT_STR)
3587 chunk_destroy(&args[i].data.str);
Christopher Fauletfd2e9062020-08-06 11:10:57 +02003588 else if (args[i].type == ARGT_REG)
3589 regex_free(args[i].data.reg);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003590 }
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003591 return 1;
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003592
3593 error:
3594 for (i = 0; args[i].type != ARGT_STOP; i++) {
3595 if (args[i].type == ARGT_STR)
3596 chunk_destroy(&args[i].data.str);
Christopher Fauletfd2e9062020-08-06 11:10:57 +02003597 else if (args[i].type == ARGT_REG)
3598 regex_free(args[i].data.reg);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003599 }
3600 WILL_LJMP(lua_error(L));
3601 return 0; /* Never reached */
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003602}
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003603
3604/*
3605 *
3606 *
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003607 * Class Converters
3608 *
3609 *
3610 */
3611
3612/* Returns a struct hlua_session if the stack entry "ud" is
Willy Tarreau87b09662015-04-03 00:22:06 +02003613 * a class stream, otherwise it throws an error.
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003614 */
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01003615__LJMP static struct hlua_smp *hlua_checkconverters(lua_State *L, int ud)
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003616{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02003617 return MAY_LJMP(hlua_checkudata(L, ud, class_converters_ref));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003618}
3619
3620/* This function creates and push in the stack a Converters object
3621 * according with a current TXN.
3622 */
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003623static int hlua_converters_new(lua_State *L, struct hlua_txn *txn, unsigned int flags)
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003624{
Willy Tarreau7073c472015-04-06 11:15:40 +02003625 struct hlua_smp *hsmp;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003626
3627 /* Check stack size. */
3628 if (!lua_checkstack(L, 3))
3629 return 0;
3630
3631 /* Create the object: obj[0] = userdata.
3632 * Note that the base of the Converters object is the
3633 * same than the TXN object.
3634 */
3635 lua_newtable(L);
Willy Tarreau7073c472015-04-06 11:15:40 +02003636 hsmp = lua_newuserdata(L, sizeof(*hsmp));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003637 lua_rawseti(L, -2, 0);
3638
Willy Tarreau7073c472015-04-06 11:15:40 +02003639 hsmp->s = txn->s;
3640 hsmp->p = txn->p;
Thierry FOURNIERc4eebc82015-11-02 10:01:59 +01003641 hsmp->dir = txn->dir;
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003642 hsmp->flags = flags;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003643
Willy Tarreau87b09662015-04-03 00:22:06 +02003644 /* Pop a class stream metatable and affect it to the table. */
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003645 lua_rawgeti(L, LUA_REGISTRYINDEX, class_converters_ref);
3646 lua_setmetatable(L, -2);
3647
3648 return 1;
3649}
3650
3651/* This function is an LUA binding. It is called with each converter.
3652 * It uses closure argument to store the associated converter. It
3653 * returns only one argument or throws an error. An error is thrown
3654 * only if an error is encountered during the argument parsing. If
3655 * the converter function function fails, nil is returned.
3656 */
3657__LJMP static int hlua_run_sample_conv(lua_State *L)
3658{
Willy Tarreauda5f1082015-04-06 11:17:13 +02003659 struct hlua_smp *hsmp;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003660 struct sample_conv *conv;
Frédéric Lécaillef874a832018-06-15 13:56:04 +02003661 struct arg args[ARGM_NBARGS + 1] = {{0}};
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003662 int i;
3663 struct sample smp;
3664
3665 /* Get closure arguments. */
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02003666 conv = lua_touserdata(L, lua_upvalueindex(1));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003667
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003668 /* Get traditional arguments. */
Willy Tarreauda5f1082015-04-06 11:17:13 +02003669 hsmp = MAY_LJMP(hlua_checkconverters(L, 1));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003670
3671 /* Get extra arguments. */
3672 for (i = 0; i < lua_gettop(L) - 2; i++) {
3673 if (i >= ARGM_NBARGS)
3674 break;
3675 hlua_lua2arg(L, i + 3, &args[i]);
3676 }
3677 args[i].type = ARGT_STOP;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003678 args[i].data.str.area = NULL;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003679
3680 /* Check arguments. */
Willy Tarreauda5f1082015-04-06 11:17:13 +02003681 MAY_LJMP(hlua_lua2arg_check(L, 3, args, conv->arg_mask, hsmp->p));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003682
3683 /* Run the special args checker. */
3684 if (conv->val_args && !conv->val_args(args, conv, "", 0, NULL)) {
3685 hlua_pusherror(L, "error in arguments");
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003686 goto error;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003687 }
3688
3689 /* Initialise the sample. */
Amaury Denoyellebc0af6a2020-10-29 17:21:20 +01003690 memset(&smp, 0, sizeof(smp));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003691 if (!hlua_lua2smp(L, 2, &smp)) {
3692 hlua_pusherror(L, "error in the input argument");
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003693 goto error;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003694 }
3695
Willy Tarreau1777ea62016-03-10 16:15:46 +01003696 smp_set_owner(&smp, hsmp->p, hsmp->s->sess, hsmp->s, hsmp->dir & SMP_OPT_DIR);
3697
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003698 /* Apply expected cast. */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003699 if (!sample_casts[smp.data.type][conv->in_type]) {
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003700 hlua_pusherror(L, "invalid input argument: cannot cast '%s' to '%s'",
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003701 smp_to_type[smp.data.type], smp_to_type[conv->in_type]);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003702 goto error;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003703 }
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003704 if (sample_casts[smp.data.type][conv->in_type] != c_none &&
3705 !sample_casts[smp.data.type][conv->in_type](&smp)) {
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003706 hlua_pusherror(L, "error during the input argument casting");
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003707 goto error;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003708 }
3709
3710 /* Run the sample conversion process. */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02003711 if (!conv->process(args, &smp, conv->private)) {
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003712 if (hsmp->flags & HLUA_F_AS_STRING)
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01003713 lua_pushstring(L, "");
3714 else
Willy Tarreaua678b432015-08-28 10:14:59 +02003715 lua_pushnil(L);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003716 goto end;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003717 }
3718
3719 /* Convert the returned sample in lua value. */
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003720 if (hsmp->flags & HLUA_F_AS_STRING)
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01003721 hlua_smp2lua_str(L, &smp);
3722 else
3723 hlua_smp2lua(L, &smp);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003724 end:
3725 for (i = 0; args[i].type != ARGT_STOP; i++) {
3726 if (args[i].type == ARGT_STR)
3727 chunk_destroy(&args[i].data.str);
Christopher Fauletfd2e9062020-08-06 11:10:57 +02003728 else if (args[i].type == ARGT_REG)
3729 regex_free(args[i].data.reg);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003730 }
Willy Tarreaua678b432015-08-28 10:14:59 +02003731 return 1;
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003732
3733 error:
3734 for (i = 0; args[i].type != ARGT_STOP; i++) {
3735 if (args[i].type == ARGT_STR)
3736 chunk_destroy(&args[i].data.str);
Christopher Fauletfd2e9062020-08-06 11:10:57 +02003737 else if (args[i].type == ARGT_REG)
3738 regex_free(args[i].data.reg);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003739 }
3740 WILL_LJMP(lua_error(L));
3741 return 0; /* Never reached */
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003742}
3743
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003744/*
3745 *
3746 *
3747 * Class AppletTCP
3748 *
3749 *
3750 */
3751
3752/* Returns a struct hlua_txn if the stack entry "ud" is
3753 * a class stream, otherwise it throws an error.
3754 */
3755__LJMP static struct hlua_appctx *hlua_checkapplet_tcp(lua_State *L, int ud)
3756{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02003757 return MAY_LJMP(hlua_checkudata(L, ud, class_applet_tcp_ref));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003758}
3759
3760/* This function creates and push in the stack an Applet object
3761 * according with a current TXN.
3762 */
3763static int hlua_applet_tcp_new(lua_State *L, struct appctx *ctx)
3764{
Willy Tarreau7e702d12021-04-28 17:59:21 +02003765 struct hlua_appctx *luactx;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003766 struct stream_interface *si = ctx->owner;
3767 struct stream *s = si_strm(si);
3768 struct proxy *p = s->be;
3769
3770 /* Check stack size. */
3771 if (!lua_checkstack(L, 3))
3772 return 0;
3773
3774 /* Create the object: obj[0] = userdata.
3775 * Note that the base of the Converters object is the
3776 * same than the TXN object.
3777 */
3778 lua_newtable(L);
Willy Tarreau7e702d12021-04-28 17:59:21 +02003779 luactx = lua_newuserdata(L, sizeof(*luactx));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003780 lua_rawseti(L, -2, 0);
Willy Tarreau7e702d12021-04-28 17:59:21 +02003781 luactx->appctx = ctx;
3782 luactx->htxn.s = s;
3783 luactx->htxn.p = p;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003784
3785 /* Create the "f" field that contains a list of fetches. */
3786 lua_pushstring(L, "f");
Willy Tarreau7e702d12021-04-28 17:59:21 +02003787 if (!hlua_fetches_new(L, &luactx->htxn, 0))
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003788 return 0;
3789 lua_settable(L, -3);
3790
3791 /* Create the "sf" field that contains a list of stringsafe fetches. */
3792 lua_pushstring(L, "sf");
Willy Tarreau7e702d12021-04-28 17:59:21 +02003793 if (!hlua_fetches_new(L, &luactx->htxn, HLUA_F_AS_STRING))
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003794 return 0;
3795 lua_settable(L, -3);
3796
3797 /* Create the "c" field that contains a list of converters. */
3798 lua_pushstring(L, "c");
Willy Tarreau7e702d12021-04-28 17:59:21 +02003799 if (!hlua_converters_new(L, &luactx->htxn, 0))
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003800 return 0;
3801 lua_settable(L, -3);
3802
3803 /* Create the "sc" field that contains a list of stringsafe converters. */
3804 lua_pushstring(L, "sc");
Willy Tarreau7e702d12021-04-28 17:59:21 +02003805 if (!hlua_converters_new(L, &luactx->htxn, HLUA_F_AS_STRING))
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003806 return 0;
3807 lua_settable(L, -3);
3808
3809 /* Pop a class stream metatable and affect it to the table. */
3810 lua_rawgeti(L, LUA_REGISTRYINDEX, class_applet_tcp_ref);
3811 lua_setmetatable(L, -2);
3812
3813 return 1;
3814}
3815
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003816__LJMP static int hlua_applet_tcp_set_var(lua_State *L)
3817{
Willy Tarreau7e702d12021-04-28 17:59:21 +02003818 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003819 struct stream *s;
3820 const char *name;
3821 size_t len;
3822 struct sample smp;
3823
Tim Duesterhus4e172c92020-05-19 13:49:42 +02003824 if (lua_gettop(L) < 3 || lua_gettop(L) > 4)
3825 WILL_LJMP(luaL_error(L, "'set_var' needs between 3 and 4 arguments"));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003826
3827 /* It is useles to retrieve the stream, but this function
3828 * runs only in a stream context.
3829 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02003830 luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003831 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02003832 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003833
3834 /* Converts the third argument in a sample. */
Amaury Denoyellebc0af6a2020-10-29 17:21:20 +01003835 memset(&smp, 0, sizeof(smp));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003836 hlua_lua2smp(L, 3, &smp);
3837
Aurelien DARRAGONd39fb742023-05-17 16:06:11 +02003838 /* Store the sample in a variable. We don't need to dup the smp, vars API
3839 * already takes care of duplicating dynamic var data.
3840 */
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003841 smp_set_owner(&smp, s->be, s->sess, s, 0);
Tim Duesterhus4e172c92020-05-19 13:49:42 +02003842
3843 if (lua_gettop(L) == 4 && lua_toboolean(L, 4))
3844 lua_pushboolean(L, vars_set_by_name_ifexist(name, len, &smp) != 0);
3845 else
3846 lua_pushboolean(L, vars_set_by_name(name, len, &smp) != 0);
3847
Tim Duesterhus84ebc132020-05-19 13:49:41 +02003848 return 1;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003849}
3850
3851__LJMP static int hlua_applet_tcp_unset_var(lua_State *L)
3852{
Willy Tarreau7e702d12021-04-28 17:59:21 +02003853 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003854 struct stream *s;
3855 const char *name;
3856 size_t len;
3857 struct sample smp;
3858
3859 MAY_LJMP(check_args(L, 2, "unset_var"));
3860
3861 /* It is useles to retrieve the stream, but this function
3862 * runs only in a stream context.
3863 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02003864 luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003865 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02003866 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003867
3868 /* Unset the variable. */
3869 smp_set_owner(&smp, s->be, s->sess, s, 0);
Tim Duesterhus84ebc132020-05-19 13:49:41 +02003870 lua_pushboolean(L, vars_unset_by_name_ifexist(name, len, &smp) != 0);
3871 return 1;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003872}
3873
3874__LJMP static int hlua_applet_tcp_get_var(lua_State *L)
3875{
Willy Tarreau7e702d12021-04-28 17:59:21 +02003876 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003877 struct stream *s;
3878 const char *name;
3879 size_t len;
3880 struct sample smp;
3881
3882 MAY_LJMP(check_args(L, 2, "get_var"));
3883
3884 /* It is useles to retrieve the stream, but this function
3885 * runs only in a stream context.
3886 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02003887 luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003888 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02003889 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003890
3891 smp_set_owner(&smp, s->be, s->sess, s, 0);
3892 if (!vars_get_by_name(name, len, &smp)) {
3893 lua_pushnil(L);
3894 return 1;
3895 }
3896
3897 return hlua_smp2lua(L, &smp);
3898}
3899
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01003900__LJMP static int hlua_applet_tcp_set_priv(lua_State *L)
3901{
Willy Tarreau7e702d12021-04-28 17:59:21 +02003902 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
3903 struct stream *s = luactx->htxn.s;
Thierry FOURNIER3b0a6d42016-12-16 08:48:32 +01003904 struct hlua *hlua;
3905
3906 /* Note that this hlua struct is from the session and not from the applet. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01003907 if (!s->hlua)
3908 return 0;
3909 hlua = s->hlua;
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01003910
3911 MAY_LJMP(check_args(L, 2, "set_priv"));
3912
3913 /* Remove previous value. */
Thierry FOURNIERe068b602017-04-26 13:27:05 +02003914 luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref);
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01003915
3916 /* Get and store new value. */
3917 lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */
3918 hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */
3919
3920 return 0;
3921}
3922
3923__LJMP static int hlua_applet_tcp_get_priv(lua_State *L)
3924{
Willy Tarreau7e702d12021-04-28 17:59:21 +02003925 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
3926 struct stream *s = luactx->htxn.s;
Thierry FOURNIER3b0a6d42016-12-16 08:48:32 +01003927 struct hlua *hlua;
3928
3929 /* Note that this hlua struct is from the session and not from the applet. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01003930 if (!s->hlua) {
3931 lua_pushnil(L);
3932 return 1;
3933 }
3934 hlua = s->hlua;
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01003935
3936 /* Push configuration index in the stack. */
3937 lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref);
3938
3939 return 1;
3940}
3941
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003942/* If expected data not yet available, it returns a yield. This function
3943 * consumes the data in the buffer. It returns a string containing the
3944 * data. This string can be empty.
3945 */
3946__LJMP static int hlua_applet_tcp_getline_yield(lua_State *L, int status, lua_KContext ctx)
3947{
Willy Tarreau7e702d12021-04-28 17:59:21 +02003948 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
3949 struct stream_interface *si = luactx->appctx->owner;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003950 int ret;
Willy Tarreau206ba832018-06-14 15:27:31 +02003951 const char *blk1;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02003952 size_t len1;
Willy Tarreau206ba832018-06-14 15:27:31 +02003953 const char *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02003954 size_t len2;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003955
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003956 /* Read the maximum amount of data available. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02003957 ret = co_getline_nc(si_oc(si), &blk1, &len1, &blk2, &len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003958
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003959 /* Data not yet available. return yield. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003960 if (ret == 0) {
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01003961 si_cant_get(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02003962 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_getline_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003963 }
3964
3965 /* End of data: commit the total strings and return. */
3966 if (ret < 0) {
Willy Tarreau7e702d12021-04-28 17:59:21 +02003967 luaL_pushresult(&luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003968 return 1;
3969 }
3970
3971 /* Ensure that the block 2 length is usable. */
3972 if (ret == 1)
3973 len2 = 0;
3974
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07003975 /* don't check the max length read and don't check. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02003976 luaL_addlstring(&luactx->b, blk1, len1);
3977 luaL_addlstring(&luactx->b, blk2, len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003978
3979 /* Consume input channel output buffer data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02003980 co_skip(si_oc(si), len1 + len2);
Willy Tarreau7e702d12021-04-28 17:59:21 +02003981 luaL_pushresult(&luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003982 return 1;
3983}
3984
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003985/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003986__LJMP static int hlua_applet_tcp_getline(lua_State *L)
3987{
Willy Tarreau7e702d12021-04-28 17:59:21 +02003988 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003989
3990 /* Initialise the string catenation. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02003991 luaL_buffinit(L, &luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003992
3993 return MAY_LJMP(hlua_applet_tcp_getline_yield(L, 0, 0));
3994}
3995
3996/* If expected data not yet available, it returns a yield. This function
3997 * consumes the data in the buffer. It returns a string containing the
3998 * data. This string can be empty.
3999 */
4000__LJMP static int hlua_applet_tcp_recv_yield(lua_State *L, int status, lua_KContext ctx)
4001{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004002 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
4003 struct stream_interface *si = luactx->appctx->owner;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02004004 size_t len = MAY_LJMP(luaL_checkinteger(L, 2));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004005 int ret;
Willy Tarreau206ba832018-06-14 15:27:31 +02004006 const char *blk1;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02004007 size_t len1;
Willy Tarreau206ba832018-06-14 15:27:31 +02004008 const char *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02004009 size_t len2;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004010
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004011 /* Read the maximum amount of data available. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02004012 ret = co_getblk_nc(si_oc(si), &blk1, &len1, &blk2, &len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004013
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004014 /* Data not yet available. return yield. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004015 if (ret == 0) {
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01004016 si_cant_get(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02004017 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_recv_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004018 }
4019
4020 /* End of data: commit the total strings and return. */
4021 if (ret < 0) {
Willy Tarreau7e702d12021-04-28 17:59:21 +02004022 luaL_pushresult(&luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004023 return 1;
4024 }
4025
4026 /* Ensure that the block 2 length is usable. */
4027 if (ret == 1)
4028 len2 = 0;
4029
4030 if (len == -1) {
4031
4032 /* If len == -1, catenate all the data avalaile and
4033 * yield because we want to get all the data until
4034 * the end of data stream.
4035 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004036 luaL_addlstring(&luactx->b, blk1, len1);
4037 luaL_addlstring(&luactx->b, blk2, len2);
Willy Tarreau06d80a92017-10-19 14:32:15 +02004038 co_skip(si_oc(si), len1 + len2);
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01004039 si_cant_get(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02004040 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_recv_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004041
4042 } else {
4043
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05004044 /* Copy the first block caping to the length required. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004045 if (len1 > len)
4046 len1 = len;
Willy Tarreau7e702d12021-04-28 17:59:21 +02004047 luaL_addlstring(&luactx->b, blk1, len1);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004048 len -= len1;
4049
4050 /* Copy the second block. */
4051 if (len2 > len)
4052 len2 = len;
Willy Tarreau7e702d12021-04-28 17:59:21 +02004053 luaL_addlstring(&luactx->b, blk2, len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004054 len -= len2;
4055
4056 /* Consume input channel output buffer data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02004057 co_skip(si_oc(si), len1 + len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004058
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004059 /* If there is no other data available, yield waiting for new data. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004060 if (len > 0) {
4061 lua_pushinteger(L, len);
4062 lua_replace(L, 2);
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01004063 si_cant_get(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02004064 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_recv_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004065 }
4066
4067 /* return the result. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004068 luaL_pushresult(&luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004069 return 1;
4070 }
4071
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004072 /* we never execute this */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004073 hlua_pusherror(L, "Lua: internal error");
4074 WILL_LJMP(lua_error(L));
4075 return 0;
4076}
4077
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004078/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004079__LJMP static int hlua_applet_tcp_recv(lua_State *L)
4080{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004081 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004082 int len = -1;
4083
4084 if (lua_gettop(L) > 2)
4085 WILL_LJMP(luaL_error(L, "The 'recv' function requires between 1 and 2 arguments."));
4086 if (lua_gettop(L) >= 2) {
4087 len = MAY_LJMP(luaL_checkinteger(L, 2));
4088 lua_pop(L, 1);
4089 }
4090
4091 /* Confirm or set the required length */
4092 lua_pushinteger(L, len);
4093
4094 /* Initialise the string catenation. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004095 luaL_buffinit(L, &luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004096
4097 return MAY_LJMP(hlua_applet_tcp_recv_yield(L, 0, 0));
4098}
4099
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004100/* Append data in the output side of the buffer. This data is immediately
4101 * sent. The function returns the amount of data written. If the buffer
4102 * cannot contain the data, the function yields. The function returns -1
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004103 * if the channel is closed.
4104 */
4105__LJMP static int hlua_applet_tcp_send_yield(lua_State *L, int status, lua_KContext ctx)
4106{
4107 size_t len;
Willy Tarreau7e702d12021-04-28 17:59:21 +02004108 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004109 const char *str = MAY_LJMP(luaL_checklstring(L, 2, &len));
4110 int l = MAY_LJMP(luaL_checkinteger(L, 3));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004111 struct stream_interface *si = luactx->appctx->owner;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004112 struct channel *chn = si_ic(si);
4113 int max;
4114
4115 /* Get the max amount of data which can write as input in the channel. */
4116 max = channel_recv_max(chn);
4117 if (max > (len - l))
4118 max = len - l;
4119
4120 /* Copy data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02004121 ci_putblk(chn, str + l, max);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004122
4123 /* update counters. */
4124 l += max;
4125 lua_pop(L, 1);
4126 lua_pushinteger(L, l);
4127
4128 /* If some data is not send, declares the situation to the
4129 * applet, and returns a yield.
4130 */
4131 if (l < len) {
Willy Tarreaudb398432018-11-15 11:08:52 +01004132 si_rx_room_blk(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02004133 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_send_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004134 }
4135
4136 return 1;
4137}
4138
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05004139/* Just a wrapper of "hlua_applet_tcp_send_yield". This wrapper permits
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004140 * yield the LUA process, and resume it without checking the
4141 * input arguments.
4142 */
4143__LJMP static int hlua_applet_tcp_send(lua_State *L)
4144{
4145 MAY_LJMP(check_args(L, 2, "send"));
4146 lua_pushinteger(L, 0);
4147
4148 return MAY_LJMP(hlua_applet_tcp_send_yield(L, 0, 0));
4149}
4150
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004151/*
4152 *
4153 *
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004154 * Class AppletHTTP
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004155 *
4156 *
4157 */
4158
4159/* Returns a struct hlua_txn if the stack entry "ud" is
Willy Tarreau87b09662015-04-03 00:22:06 +02004160 * a class stream, otherwise it throws an error.
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004161 */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004162__LJMP static struct hlua_appctx *hlua_checkapplet_http(lua_State *L, int ud)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004163{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02004164 return MAY_LJMP(hlua_checkudata(L, ud, class_applet_http_ref));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004165}
4166
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004167/* This function creates and push in the stack an Applet object
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004168 * according with a current TXN.
4169 */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004170static int hlua_applet_http_new(lua_State *L, struct appctx *ctx)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004171{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004172 struct hlua_appctx *luactx;
Thierry FOURNIER841475e2015-12-11 17:10:09 +01004173 struct hlua_txn htxn;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004174 struct stream_interface *si = ctx->owner;
4175 struct stream *s = si_strm(si);
4176 struct proxy *px = s->be;
Christopher Fauleta2097962019-07-15 16:25:33 +02004177 struct htx *htx;
4178 struct htx_blk *blk;
4179 struct htx_sl *sl;
4180 struct ist path;
4181 unsigned long long len = 0;
4182 int32_t pos;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004183
4184 /* Check stack size. */
4185 if (!lua_checkstack(L, 3))
4186 return 0;
4187
4188 /* Create the object: obj[0] = userdata.
4189 * Note that the base of the Converters object is the
4190 * same than the TXN object.
4191 */
4192 lua_newtable(L);
Willy Tarreau7e702d12021-04-28 17:59:21 +02004193 luactx = lua_newuserdata(L, sizeof(*luactx));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004194 lua_rawseti(L, -2, 0);
Willy Tarreau7e702d12021-04-28 17:59:21 +02004195 luactx->appctx = ctx;
4196 luactx->appctx->ctx.hlua_apphttp.status = 200; /* Default status code returned. */
4197 luactx->appctx->ctx.hlua_apphttp.reason = NULL; /* Use default reason based on status */
4198 luactx->htxn.s = s;
4199 luactx->htxn.p = px;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004200
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004201 /* Create the "f" field that contains a list of fetches. */
4202 lua_pushstring(L, "f");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004203 if (!hlua_fetches_new(L, &luactx->htxn, 0))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004204 return 0;
4205 lua_settable(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004206
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004207 /* Create the "sf" field that contains a list of stringsafe fetches. */
4208 lua_pushstring(L, "sf");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004209 if (!hlua_fetches_new(L, &luactx->htxn, HLUA_F_AS_STRING))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004210 return 0;
4211 lua_settable(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004212
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004213 /* Create the "c" field that contains a list of converters. */
4214 lua_pushstring(L, "c");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004215 if (!hlua_converters_new(L, &luactx->htxn, 0))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004216 return 0;
4217 lua_settable(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004218
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004219 /* Create the "sc" field that contains a list of stringsafe converters. */
4220 lua_pushstring(L, "sc");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004221 if (!hlua_converters_new(L, &luactx->htxn, HLUA_F_AS_STRING))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004222 return 0;
4223 lua_settable(L, -3);
Willy Tarreaueee5b512015-04-03 23:46:31 +02004224
Christopher Fauleta2097962019-07-15 16:25:33 +02004225 htx = htxbuf(&s->req.buf);
4226 blk = htx_get_first_blk(htx);
Christopher Fauletea009732019-11-18 15:50:25 +01004227 BUG_ON(!blk || htx_get_blk_type(blk) != HTX_BLK_REQ_SL);
Christopher Fauleta2097962019-07-15 16:25:33 +02004228 sl = htx_get_blk_ptr(htx, blk);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004229
Christopher Fauleta2097962019-07-15 16:25:33 +02004230 /* Stores the request method. */
4231 lua_pushstring(L, "method");
4232 lua_pushlstring(L, HTX_SL_REQ_MPTR(sl), HTX_SL_REQ_MLEN(sl));
4233 lua_settable(L, -3);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004234
Christopher Fauleta2097962019-07-15 16:25:33 +02004235 /* Stores the http version. */
4236 lua_pushstring(L, "version");
4237 lua_pushlstring(L, HTX_SL_REQ_VPTR(sl), HTX_SL_REQ_VLEN(sl));
4238 lua_settable(L, -3);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004239
Christopher Fauleta2097962019-07-15 16:25:33 +02004240 /* creates an array of headers. hlua_http_get_headers() crates and push
4241 * the array on the top of the stack.
4242 */
4243 lua_pushstring(L, "headers");
4244 htxn.s = s;
4245 htxn.p = px;
4246 htxn.dir = SMP_OPT_DIR_REQ;
Christopher Faulet9d1332b2020-02-24 16:46:16 +01004247 if (!hlua_http_get_headers(L, &htxn.s->txn->req))
Christopher Fauleta2097962019-07-15 16:25:33 +02004248 return 0;
4249 lua_settable(L, -3);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004250
Christopher Fauleta2097962019-07-15 16:25:33 +02004251 path = http_get_path(htx_sl_req_uri(sl));
Tim Duesterhused526372020-03-05 17:56:33 +01004252 if (isttest(path)) {
Christopher Fauleta2097962019-07-15 16:25:33 +02004253 char *p, *q, *end;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004254
Christopher Fauleta2097962019-07-15 16:25:33 +02004255 p = path.ptr;
4256 end = path.ptr + path.len;
4257 q = p;
4258 while (q < end && *q != '?')
4259 q++;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004260
Thierry FOURNIER7d388632017-02-22 02:06:16 +01004261 /* Stores the request path. */
Christopher Fauleta2097962019-07-15 16:25:33 +02004262 lua_pushstring(L, "path");
4263 lua_pushlstring(L, p, q - p);
Thierry FOURNIER7d388632017-02-22 02:06:16 +01004264 lua_settable(L, -3);
Thierry FOURNIER04c57b32015-03-18 13:43:10 +01004265
Christopher Fauleta2097962019-07-15 16:25:33 +02004266 /* Stores the query string. */
4267 lua_pushstring(L, "qs");
4268 if (*q == '?')
4269 q++;
4270 lua_pushlstring(L, q, end - q);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004271 lua_settable(L, -3);
Christopher Fauleta2097962019-07-15 16:25:33 +02004272 }
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004273
Christopher Fauleta2097962019-07-15 16:25:33 +02004274 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
4275 struct htx_blk *blk = htx_get_blk(htx, pos);
4276 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004277
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004278 if (type == HTX_BLK_TLR || type == HTX_BLK_EOT)
Christopher Fauleta2097962019-07-15 16:25:33 +02004279 break;
4280 if (type == HTX_BLK_DATA)
4281 len += htx_get_blksz(blk);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004282 }
Christopher Fauleta2097962019-07-15 16:25:33 +02004283 if (htx->extra != ULLONG_MAX)
4284 len += htx->extra;
4285
4286 /* Stores the request path. */
4287 lua_pushstring(L, "length");
4288 lua_pushinteger(L, len);
4289 lua_settable(L, -3);
Thierry FOURNIER04c57b32015-03-18 13:43:10 +01004290
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004291 /* Create an empty array of HTTP request headers. */
4292 lua_pushstring(L, "response");
4293 lua_newtable(L);
4294 lua_settable(L, -3);
Thierry FOURNIER04c57b32015-03-18 13:43:10 +01004295
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004296 /* Pop a class stream metatable and affect it to the table. */
4297 lua_rawgeti(L, LUA_REGISTRYINDEX, class_applet_http_ref);
4298 lua_setmetatable(L, -2);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004299
4300 return 1;
4301}
4302
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004303__LJMP static int hlua_applet_http_set_var(lua_State *L)
4304{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004305 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004306 struct stream *s;
4307 const char *name;
4308 size_t len;
4309 struct sample smp;
4310
Tim Duesterhus4e172c92020-05-19 13:49:42 +02004311 if (lua_gettop(L) < 3 || lua_gettop(L) > 4)
4312 WILL_LJMP(luaL_error(L, "'set_var' needs between 3 and 4 arguments"));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004313
4314 /* It is useles to retrieve the stream, but this function
4315 * runs only in a stream context.
4316 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004317 luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004318 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004319 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004320
4321 /* Converts the third argument in a sample. */
Amaury Denoyellebc0af6a2020-10-29 17:21:20 +01004322 memset(&smp, 0, sizeof(smp));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004323 hlua_lua2smp(L, 3, &smp);
4324
Aurelien DARRAGONd39fb742023-05-17 16:06:11 +02004325 /* Store the sample in a variable. We don't need to dup the smp, vars API
4326 * already takes care of duplicating dynamic var data.
4327 */
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004328 smp_set_owner(&smp, s->be, s->sess, s, 0);
Tim Duesterhus4e172c92020-05-19 13:49:42 +02004329
4330 if (lua_gettop(L) == 4 && lua_toboolean(L, 4))
4331 lua_pushboolean(L, vars_set_by_name_ifexist(name, len, &smp) != 0);
4332 else
4333 lua_pushboolean(L, vars_set_by_name(name, len, &smp) != 0);
4334
Tim Duesterhus84ebc132020-05-19 13:49:41 +02004335 return 1;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004336}
4337
4338__LJMP static int hlua_applet_http_unset_var(lua_State *L)
4339{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004340 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004341 struct stream *s;
4342 const char *name;
4343 size_t len;
4344 struct sample smp;
4345
4346 MAY_LJMP(check_args(L, 2, "unset_var"));
4347
4348 /* It is useles to retrieve the stream, but this function
4349 * runs only in a stream context.
4350 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004351 luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004352 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004353 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004354
4355 /* Unset the variable. */
4356 smp_set_owner(&smp, s->be, s->sess, s, 0);
Tim Duesterhus84ebc132020-05-19 13:49:41 +02004357 lua_pushboolean(L, vars_unset_by_name_ifexist(name, len, &smp) != 0);
4358 return 1;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004359}
4360
4361__LJMP static int hlua_applet_http_get_var(lua_State *L)
4362{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004363 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004364 struct stream *s;
4365 const char *name;
4366 size_t len;
4367 struct sample smp;
4368
4369 MAY_LJMP(check_args(L, 2, "get_var"));
4370
4371 /* It is useles to retrieve the stream, but this function
4372 * runs only in a stream context.
4373 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004374 luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004375 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004376 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004377
4378 smp_set_owner(&smp, s->be, s->sess, s, 0);
4379 if (!vars_get_by_name(name, len, &smp)) {
4380 lua_pushnil(L);
4381 return 1;
4382 }
4383
4384 return hlua_smp2lua(L, &smp);
4385}
4386
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004387__LJMP static int hlua_applet_http_set_priv(lua_State *L)
4388{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004389 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4390 struct stream *s = luactx->htxn.s;
Thierry FOURNIER3b0a6d42016-12-16 08:48:32 +01004391 struct hlua *hlua;
4392
4393 /* Note that this hlua struct is from the session and not from the applet. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01004394 if (!s->hlua)
4395 return 0;
4396 hlua = s->hlua;
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004397
4398 MAY_LJMP(check_args(L, 2, "set_priv"));
4399
4400 /* Remove previous value. */
Thierry FOURNIERe068b602017-04-26 13:27:05 +02004401 luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref);
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004402
4403 /* Get and store new value. */
4404 lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */
4405 hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */
4406
4407 return 0;
4408}
4409
4410__LJMP static int hlua_applet_http_get_priv(lua_State *L)
4411{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004412 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4413 struct stream *s = luactx->htxn.s;
Thierry FOURNIER3b0a6d42016-12-16 08:48:32 +01004414 struct hlua *hlua;
4415
4416 /* Note that this hlua struct is from the session and not from the applet. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01004417 if (!s->hlua) {
4418 lua_pushnil(L);
4419 return 1;
4420 }
4421 hlua = s->hlua;
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004422
4423 /* Push configuration index in the stack. */
4424 lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref);
4425
4426 return 1;
4427}
4428
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004429/* If expected data not yet available, it returns a yield. This function
4430 * consumes the data in the buffer. It returns a string containing the
4431 * data. This string can be empty.
4432 */
Christopher Fauleta2097962019-07-15 16:25:33 +02004433__LJMP static int hlua_applet_http_getline_yield(lua_State *L, int status, lua_KContext ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004434{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004435 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4436 struct stream_interface *si = luactx->appctx->owner;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004437 struct channel *req = si_oc(si);
4438 struct htx *htx;
4439 struct htx_blk *blk;
4440 size_t count;
4441 int stop = 0;
4442
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004443 htx = htx_from_buf(&req->buf);
4444 count = co_data(req);
Christopher Fauleta3f15502019-05-13 15:27:23 +02004445 blk = htx_get_first_blk(htx);
Christopher Fauletcc26b132018-12-18 21:20:57 +01004446
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004447 while (count && !stop && blk) {
4448 enum htx_blk_type type = htx_get_blk_type(blk);
4449 uint32_t sz = htx_get_blksz(blk);
4450 struct ist v;
4451 uint32_t vlen;
4452 char *nl;
4453
4454 vlen = sz;
4455 if (vlen > count) {
4456 if (type != HTX_BLK_DATA)
4457 break;
4458 vlen = count;
4459 }
4460
4461 switch (type) {
4462 case HTX_BLK_UNUSED:
4463 break;
4464
4465 case HTX_BLK_DATA:
4466 v = htx_get_blk_value(htx, blk);
4467 v.len = vlen;
4468 nl = istchr(v, '\n');
4469 if (nl != NULL) {
4470 stop = 1;
4471 vlen = nl - v.ptr + 1;
4472 }
Willy Tarreau7e702d12021-04-28 17:59:21 +02004473 luaL_addlstring(&luactx->b, v.ptr, vlen);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004474 break;
4475
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004476 case HTX_BLK_TLR:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004477 case HTX_BLK_EOT:
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004478 stop = 1;
4479 break;
4480
4481 default:
4482 break;
4483 }
4484
4485 co_set_data(req, co_data(req) - vlen);
4486 count -= vlen;
4487 if (sz == vlen)
4488 blk = htx_remove_blk(htx, blk);
4489 else {
4490 htx_cut_data_blk(htx, blk, vlen);
4491 break;
4492 }
4493 }
4494
Christopher Fauleteccb31c2021-04-02 14:24:56 +02004495 /* The message was fully consumed and no more data are expected
4496 * (EOM flag set).
4497 */
Christopher Fauleta5a25b12022-08-29 15:37:16 +02004498 if (htx_is_empty(htx) && (req->flags & CF_EOI))
Christopher Fauleteccb31c2021-04-02 14:24:56 +02004499 stop = 1;
4500
Christopher Faulet0ae79d02019-02-27 21:36:59 +01004501 htx_to_buf(htx, &req->buf);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004502 if (!stop) {
4503 si_cant_get(si);
Christopher Fauleta2097962019-07-15 16:25:33 +02004504 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_getline_yield, TICK_ETERNITY, 0));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004505 }
4506
4507 /* return the result. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004508 luaL_pushresult(&luactx->b);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004509 return 1;
4510}
4511
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004512
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004513/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004514__LJMP static int hlua_applet_http_getline(lua_State *L)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004515{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004516 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004517
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004518 /* Initialise the string catenation. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004519 luaL_buffinit(L, &luactx->b);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004520
Christopher Fauleta2097962019-07-15 16:25:33 +02004521 return MAY_LJMP(hlua_applet_http_getline_yield(L, 0, 0));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004522}
4523
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004524/* If expected data not yet available, it returns a yield. This function
4525 * consumes the data in the buffer. It returns a string containing the
4526 * data. This string can be empty.
4527 */
Christopher Fauleta2097962019-07-15 16:25:33 +02004528__LJMP static int hlua_applet_http_recv_yield(lua_State *L, int status, lua_KContext ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004529{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004530 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4531 struct stream_interface *si = luactx->appctx->owner;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004532 struct channel *req = si_oc(si);
4533 struct htx *htx;
4534 struct htx_blk *blk;
4535 size_t count;
4536 int len;
4537
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004538 htx = htx_from_buf(&req->buf);
4539 len = MAY_LJMP(luaL_checkinteger(L, 2));
4540 count = co_data(req);
Christopher Faulet29f17582019-05-23 11:03:26 +02004541 blk = htx_get_head_blk(htx);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004542 while (count && len && blk) {
4543 enum htx_blk_type type = htx_get_blk_type(blk);
4544 uint32_t sz = htx_get_blksz(blk);
4545 struct ist v;
4546 uint32_t vlen;
4547
4548 vlen = sz;
4549 if (len > 0 && vlen > len)
4550 vlen = len;
4551 if (vlen > count) {
4552 if (type != HTX_BLK_DATA)
4553 break;
4554 vlen = count;
4555 }
4556
4557 switch (type) {
4558 case HTX_BLK_UNUSED:
4559 break;
4560
4561 case HTX_BLK_DATA:
4562 v = htx_get_blk_value(htx, blk);
Willy Tarreau7e702d12021-04-28 17:59:21 +02004563 luaL_addlstring(&luactx->b, v.ptr, vlen);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004564 break;
4565
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004566 case HTX_BLK_TLR:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004567 case HTX_BLK_EOT:
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004568 len = 0;
4569 break;
4570
4571 default:
4572 break;
4573 }
4574
4575 co_set_data(req, co_data(req) - vlen);
4576 count -= vlen;
4577 if (len > 0)
4578 len -= vlen;
4579 if (sz == vlen)
4580 blk = htx_remove_blk(htx, blk);
4581 else {
4582 htx_cut_data_blk(htx, blk, vlen);
4583 break;
4584 }
4585 }
4586
Christopher Fauleteccb31c2021-04-02 14:24:56 +02004587 /* The message was fully consumed and no more data are expected
4588 * (EOM flag set).
4589 */
Christopher Fauleta5a25b12022-08-29 15:37:16 +02004590 if (htx_is_empty(htx) && (req->flags & CF_EOI))
Christopher Fauleteccb31c2021-04-02 14:24:56 +02004591 len = 0;
4592
Christopher Faulet0ae79d02019-02-27 21:36:59 +01004593 htx_to_buf(htx, &req->buf);
4594
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004595 /* If we are no other data available, yield waiting for new data. */
4596 if (len) {
4597 if (len > 0) {
4598 lua_pushinteger(L, len);
4599 lua_replace(L, 2);
4600 }
4601 si_cant_get(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02004602 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_recv_yield, TICK_ETERNITY, 0));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004603 }
4604
4605 /* return the result. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004606 luaL_pushresult(&luactx->b);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004607 return 1;
4608}
4609
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004610/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004611__LJMP static int hlua_applet_http_recv(lua_State *L)
4612{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004613 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004614 int len = -1;
4615
4616 /* Check arguments. */
4617 if (lua_gettop(L) > 2)
4618 WILL_LJMP(luaL_error(L, "The 'recv' function requires between 1 and 2 arguments."));
4619 if (lua_gettop(L) >= 2) {
4620 len = MAY_LJMP(luaL_checkinteger(L, 2));
4621 lua_pop(L, 1);
4622 }
4623
Christopher Fauleta2097962019-07-15 16:25:33 +02004624 lua_pushinteger(L, len);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004625
Christopher Fauleta2097962019-07-15 16:25:33 +02004626 /* Initialise the string catenation. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004627 luaL_buffinit(L, &luactx->b);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004628
Christopher Fauleta2097962019-07-15 16:25:33 +02004629 return MAY_LJMP(hlua_applet_http_recv_yield(L, 0, 0));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004630}
4631
4632/* Append data in the output side of the buffer. This data is immediately
4633 * sent. The function returns the amount of data written. If the buffer
4634 * cannot contain the data, the function yields. The function returns -1
4635 * if the channel is closed.
4636 */
Christopher Fauleta2097962019-07-15 16:25:33 +02004637__LJMP static int hlua_applet_http_send_yield(lua_State *L, int status, lua_KContext ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004638{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004639 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4640 struct stream_interface *si = luactx->appctx->owner;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004641 struct channel *res = si_ic(si);
4642 struct htx *htx = htx_from_buf(&res->buf);
4643 const char *data;
4644 size_t len;
4645 int l = MAY_LJMP(luaL_checkinteger(L, 3));
4646 int max;
4647
Christopher Faulet9060fc02019-07-03 11:39:30 +02004648 max = htx_get_max_blksz(htx, channel_htx_recv_max(res, htx));
Christopher Faulet4b0e9b22019-01-09 12:16:58 +01004649 if (!max)
4650 goto snd_yield;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004651
4652 data = MAY_LJMP(luaL_checklstring(L, 2, &len));
4653
4654 /* Get the max amount of data which can write as input in the channel. */
4655 if (max > (len - l))
4656 max = len - l;
4657
4658 /* Copy data. */
Willy Tarreau0a7ef022019-05-28 10:30:11 +02004659 max = htx_add_data(htx, ist2(data + l, max));
Christopher Fauletf6cce3f2019-02-27 21:20:09 +01004660 channel_add_input(res, max);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004661
4662 /* update counters. */
4663 l += max;
4664 lua_pop(L, 1);
4665 lua_pushinteger(L, l);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004666
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004667 /* If some data is not send, declares the situation to the
4668 * applet, and returns a yield.
4669 */
4670 if (l < len) {
Christopher Faulet4b0e9b22019-01-09 12:16:58 +01004671 snd_yield:
Christopher Faulet0ae79d02019-02-27 21:36:59 +01004672 htx_to_buf(htx, &res->buf);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004673 si_rx_room_blk(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02004674 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_send_yield, TICK_ETERNITY, 0));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004675 }
4676
Christopher Fauleta2097962019-07-15 16:25:33 +02004677 htx_to_buf(htx, &res->buf);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004678 return 1;
4679}
4680
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05004681/* Just a wrapper of "hlua_applet_send_yield". This wrapper permits
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004682 * yield the LUA process, and resume it without checking the
4683 * input arguments.
4684 */
4685__LJMP static int hlua_applet_http_send(lua_State *L)
4686{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004687 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004688
4689 /* We want to send some data. Headers must be sent. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004690 if (!(luactx->appctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT)) {
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004691 hlua_pusherror(L, "Lua: 'send' you must call start_response() before sending data.");
4692 WILL_LJMP(lua_error(L));
4693 }
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004694
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05004695 /* This integer is used for followinf the amount of data sent. */
Christopher Fauleta2097962019-07-15 16:25:33 +02004696 lua_pushinteger(L, 0);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004697
Christopher Fauleta2097962019-07-15 16:25:33 +02004698 return MAY_LJMP(hlua_applet_http_send_yield(L, 0, 0));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004699}
4700
4701__LJMP static int hlua_applet_http_addheader(lua_State *L)
4702{
4703 const char *name;
4704 int ret;
4705
4706 MAY_LJMP(hlua_checkapplet_http(L, 1));
4707 name = MAY_LJMP(luaL_checkstring(L, 2));
4708 MAY_LJMP(luaL_checkstring(L, 3));
4709
4710 /* Push in the stack the "response" entry. */
4711 ret = lua_getfield(L, 1, "response");
4712 if (ret != LUA_TTABLE) {
4713 hlua_pusherror(L, "Lua: 'add_header' internal error: AppletHTTP['response'] "
4714 "is expected as an array. %s found", lua_typename(L, ret));
4715 WILL_LJMP(lua_error(L));
4716 }
4717
4718 /* check if the header is already registered if it is not
4719 * the case, register it.
4720 */
4721 ret = lua_getfield(L, -1, name);
4722 if (ret == LUA_TNIL) {
4723
4724 /* Entry not found. */
4725 lua_pop(L, 1); /* remove the nil. The "response" table is the top of the stack. */
4726
4727 /* Insert the new header name in the array in the top of the stack.
4728 * It left the new array in the top of the stack.
4729 */
4730 lua_newtable(L);
4731 lua_pushvalue(L, 2);
4732 lua_pushvalue(L, -2);
4733 lua_settable(L, -4);
4734
4735 } else if (ret != LUA_TTABLE) {
4736
4737 /* corruption error. */
4738 hlua_pusherror(L, "Lua: 'add_header' internal error: AppletHTTP['response']['%s'] "
4739 "is expected as an array. %s found", name, lua_typename(L, ret));
4740 WILL_LJMP(lua_error(L));
4741 }
4742
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07004743 /* Now the top of thestack is an array of values. We push
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004744 * the header value as new entry.
4745 */
4746 lua_pushvalue(L, 3);
4747 ret = lua_rawlen(L, -2);
4748 lua_rawseti(L, -2, ret + 1);
4749 lua_pushboolean(L, 1);
4750 return 1;
4751}
4752
4753__LJMP static int hlua_applet_http_status(lua_State *L)
4754{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004755 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004756 int status = MAY_LJMP(luaL_checkinteger(L, 2));
Robin H. Johnson52f5db22017-01-01 13:10:52 -08004757 const char *reason = MAY_LJMP(luaL_optlstring(L, 3, NULL, NULL));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004758
4759 if (status < 100 || status > 599) {
4760 lua_pushboolean(L, 0);
4761 return 1;
4762 }
4763
Willy Tarreau7e702d12021-04-28 17:59:21 +02004764 luactx->appctx->ctx.hlua_apphttp.status = status;
4765 luactx->appctx->ctx.hlua_apphttp.reason = reason;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004766 lua_pushboolean(L, 1);
4767 return 1;
4768}
4769
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004770
Christopher Fauleta2097962019-07-15 16:25:33 +02004771__LJMP static int hlua_applet_http_send_response(lua_State *L)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004772{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004773 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4774 struct stream_interface *si = luactx->appctx->owner;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004775 struct channel *res = si_ic(si);
4776 struct htx *htx;
4777 struct htx_sl *sl;
4778 struct h1m h1m;
4779 const char *status, *reason;
4780 const char *name, *value;
4781 size_t nlen, vlen;
4782 unsigned int flags;
4783
4784 /* Send the message at once. */
4785 htx = htx_from_buf(&res->buf);
4786 h1m_init_res(&h1m);
4787
4788 /* Use the same http version than the request. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004789 status = ultoa_r(luactx->appctx->ctx.hlua_apphttp.status, trash.area, trash.size);
4790 reason = luactx->appctx->ctx.hlua_apphttp.reason;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004791 if (reason == NULL)
Willy Tarreau7e702d12021-04-28 17:59:21 +02004792 reason = http_get_reason(luactx->appctx->ctx.hlua_apphttp.status);
4793 if (luactx->appctx->ctx.hlua_apphttp.flags & APPLET_HTTP11) {
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004794 flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11);
4795 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"), ist(status), ist(reason));
4796 }
4797 else {
4798 flags = HTX_SL_F_IS_RESP;
4799 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.0"), ist(status), ist(reason));
4800 }
4801 if (!sl) {
4802 hlua_pusherror(L, "Lua applet http '%s': Failed to create response.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02004803 luactx->appctx->rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004804 WILL_LJMP(lua_error(L));
4805 }
Willy Tarreau7e702d12021-04-28 17:59:21 +02004806 sl->info.res.status = luactx->appctx->ctx.hlua_apphttp.status;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004807
4808 /* Get the array associated to the field "response" in the object AppletHTTP. */
4809 lua_pushvalue(L, 0);
4810 if (lua_getfield(L, 1, "response") != LUA_TTABLE) {
4811 hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response'] missing.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02004812 luactx->appctx->rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004813 WILL_LJMP(lua_error(L));
4814 }
4815
4816 /* Browse the list of headers. */
4817 lua_pushnil(L);
4818 while(lua_next(L, -2) != 0) {
4819 /* We expect a string as -2. */
4820 if (lua_type(L, -2) != LUA_TSTRING) {
4821 hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response'][] element must be a string. got %s.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02004822 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004823 lua_typename(L, lua_type(L, -2)));
4824 WILL_LJMP(lua_error(L));
4825 }
4826 name = lua_tolstring(L, -2, &nlen);
4827
4828 /* We expect an array as -1. */
4829 if (lua_type(L, -1) != LUA_TTABLE) {
4830 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 +02004831 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004832 name,
4833 lua_typename(L, lua_type(L, -1)));
4834 WILL_LJMP(lua_error(L));
4835 }
4836
4837 /* Browse the table who is on the top of the stack. */
4838 lua_pushnil(L);
4839 while(lua_next(L, -2) != 0) {
4840 int id;
4841
4842 /* We expect a number as -2. */
4843 if (lua_type(L, -2) != LUA_TNUMBER) {
4844 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 +02004845 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004846 name,
4847 lua_typename(L, lua_type(L, -2)));
4848 WILL_LJMP(lua_error(L));
4849 }
4850 id = lua_tointeger(L, -2);
4851
4852 /* We expect a string as -2. */
4853 if (lua_type(L, -1) != LUA_TSTRING) {
4854 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 +02004855 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004856 name, id,
4857 lua_typename(L, lua_type(L, -1)));
4858 WILL_LJMP(lua_error(L));
4859 }
4860 value = lua_tolstring(L, -1, &vlen);
4861
4862 /* Simple Protocol checks. */
4863 if (isteqi(ist2(name, nlen), ist("transfer-encoding")))
Christopher Faulet700d9e82020-01-31 12:21:52 +01004864 h1_parse_xfer_enc_header(&h1m, ist2(value, vlen));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004865 else if (isteqi(ist2(name, nlen), ist("content-length"))) {
4866 struct ist v = ist2(value, vlen);
4867 int ret;
4868
4869 ret = h1_parse_cont_len_header(&h1m, &v);
4870 if (ret < 0) {
4871 hlua_pusherror(L, "Lua applet http '%s': Invalid '%s' header.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02004872 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004873 name);
4874 WILL_LJMP(lua_error(L));
4875 }
4876 else if (ret == 0)
4877 goto next; /* Skip it */
4878 }
4879
4880 /* Add a new header */
4881 if (!htx_add_header(htx, ist2(name, nlen), ist2(value, vlen))) {
4882 hlua_pusherror(L, "Lua applet http '%s': Failed to add header '%s' in the response.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02004883 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004884 name);
4885 WILL_LJMP(lua_error(L));
4886 }
4887 next:
4888 /* Remove the array from the stack, and get next element with a remaining string. */
4889 lua_pop(L, 1);
4890 }
4891
4892 /* Remove the array from the stack, and get next element with a remaining string. */
4893 lua_pop(L, 1);
4894 }
4895
4896 if (h1m.flags & H1_MF_CHNK)
4897 h1m.flags &= ~H1_MF_CLEN;
4898 if (h1m.flags & (H1_MF_CLEN|H1_MF_CHNK))
4899 h1m.flags |= H1_MF_XFER_LEN;
4900
4901 /* Uset HTX start-line flags */
4902 if (h1m.flags & H1_MF_XFER_ENC)
4903 flags |= HTX_SL_F_XFER_ENC;
4904 if (h1m.flags & H1_MF_XFER_LEN) {
4905 flags |= HTX_SL_F_XFER_LEN;
4906 if (h1m.flags & H1_MF_CHNK)
4907 flags |= HTX_SL_F_CHNK;
4908 else if (h1m.flags & H1_MF_CLEN)
4909 flags |= HTX_SL_F_CLEN;
4910 if (h1m.body_len == 0)
4911 flags |= HTX_SL_F_BODYLESS;
4912 }
4913 sl->flags |= flags;
4914
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07004915 /* If we don't have a content-length set, and the HTTP version is 1.1
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004916 * and the status code implies the presence of a message body, we must
4917 * announce a transfer encoding chunked. This is required by haproxy
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05004918 * for the keepalive compliance. If the applet announces a transfer-encoding
4919 * chunked itself, don't do anything.
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004920 */
4921 if ((flags & (HTX_SL_F_VER_11|HTX_SL_F_XFER_LEN)) == HTX_SL_F_VER_11 &&
Willy Tarreau7e702d12021-04-28 17:59:21 +02004922 luactx->appctx->ctx.hlua_apphttp.status >= 200 &&
4923 luactx->appctx->ctx.hlua_apphttp.status != 204 &&
4924 luactx->appctx->ctx.hlua_apphttp.status != 304) {
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004925 /* Add a new header */
4926 sl->flags |= (HTX_SL_F_XFER_ENC|H1_MF_CHNK|H1_MF_XFER_LEN);
4927 if (!htx_add_header(htx, ist("transfer-encoding"), ist("chunked"))) {
4928 hlua_pusherror(L, "Lua applet http '%s': Failed to add header 'transfer-encoding' in the response.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02004929 luactx->appctx->rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004930 WILL_LJMP(lua_error(L));
4931 }
4932 }
4933
4934 /* Finalize headers. */
4935 if (!htx_add_endof(htx, HTX_BLK_EOH)) {
4936 hlua_pusherror(L, "Lua applet http '%s': Failed create the response.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02004937 luactx->appctx->rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004938 WILL_LJMP(lua_error(L));
4939 }
4940
4941 if (htx_used_space(htx) > b_size(&res->buf) - global.tune.maxrewrite) {
4942 b_reset(&res->buf);
4943 hlua_pusherror(L, "Lua: 'start_response': response header block too big");
4944 WILL_LJMP(lua_error(L));
4945 }
4946
4947 htx_to_buf(htx, &res->buf);
Christopher Fauletf6cce3f2019-02-27 21:20:09 +01004948 channel_add_input(res, htx->data);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004949
4950 /* Headers sent, set the flag. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004951 luactx->appctx->ctx.hlua_apphttp.flags |= APPLET_HDR_SENT;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004952 return 0;
4953
4954}
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004955/* We will build the status line and the headers of the HTTP response.
4956 * We will try send at once if its not possible, we give back the hand
4957 * waiting for more room.
4958 */
Christopher Fauleta2097962019-07-15 16:25:33 +02004959__LJMP static int hlua_applet_http_start_response_yield(lua_State *L, int status, lua_KContext ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004960{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004961 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4962 struct stream_interface *si = luactx->appctx->owner;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004963 struct channel *res = si_ic(si);
4964
4965 if (co_data(res)) {
4966 si_rx_room_blk(si);
Christopher Fauleta2097962019-07-15 16:25:33 +02004967 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_start_response_yield, TICK_ETERNITY, 0));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004968 }
Christopher Fauleta2097962019-07-15 16:25:33 +02004969 return MAY_LJMP(hlua_applet_http_send_response(L));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004970}
4971
4972
Christopher Fauleta2097962019-07-15 16:25:33 +02004973__LJMP static int hlua_applet_http_start_response(lua_State *L)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004974{
Christopher Fauleta2097962019-07-15 16:25:33 +02004975 return MAY_LJMP(hlua_applet_http_start_response_yield(L, 0, 0));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004976}
4977
Christopher Fauleta2097962019-07-15 16:25:33 +02004978/*
4979 *
4980 *
4981 * Class HTTP
4982 *
4983 *
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004984 */
Christopher Fauleta2097962019-07-15 16:25:33 +02004985
4986/* Returns a struct hlua_txn if the stack entry "ud" is
4987 * a class stream, otherwise it throws an error.
4988 */
4989__LJMP static struct hlua_txn *hlua_checkhttp(lua_State *L, int ud)
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004990{
Christopher Fauleta2097962019-07-15 16:25:33 +02004991 return MAY_LJMP(hlua_checkudata(L, ud, class_http_ref));
4992}
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004993
Christopher Fauleta2097962019-07-15 16:25:33 +02004994/* This function creates and push in the stack a HTTP object
4995 * according with a current TXN.
4996 */
4997static int hlua_http_new(lua_State *L, struct hlua_txn *txn)
4998{
4999 struct hlua_txn *htxn;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005000
Christopher Fauleta2097962019-07-15 16:25:33 +02005001 /* Check stack size. */
5002 if (!lua_checkstack(L, 3))
5003 return 0;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005004
Christopher Fauleta2097962019-07-15 16:25:33 +02005005 /* Create the object: obj[0] = userdata.
5006 * Note that the base of the Converters object is the
5007 * same than the TXN object.
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005008 */
Christopher Fauleta2097962019-07-15 16:25:33 +02005009 lua_newtable(L);
5010 htxn = lua_newuserdata(L, sizeof(*htxn));
5011 lua_rawseti(L, -2, 0);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005012
5013 htxn->s = txn->s;
5014 htxn->p = txn->p;
Christopher Faulet256b69a2019-05-23 11:14:21 +02005015 htxn->dir = txn->dir;
5016 htxn->flags = txn->flags;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005017
5018 /* Pop a class stream metatable and affect it to the table. */
5019 lua_rawgeti(L, LUA_REGISTRYINDEX, class_http_ref);
5020 lua_setmetatable(L, -2);
5021
5022 return 1;
5023}
5024
5025/* This function creates ans returns an array of HTTP headers.
5026 * This function does not fails. It is used as wrapper with the
5027 * 2 following functions.
5028 */
Christopher Faulet9d1332b2020-02-24 16:46:16 +01005029__LJMP static int hlua_http_get_headers(lua_State *L, struct http_msg *msg)
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005030{
Christopher Fauleta2097962019-07-15 16:25:33 +02005031 struct htx *htx;
5032 int32_t pos;
5033
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005034 /* Create the table. */
5035 lua_newtable(L);
5036
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005037
Christopher Fauleta2097962019-07-15 16:25:33 +02005038 htx = htxbuf(&msg->chn->buf);
5039 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
5040 struct htx_blk *blk = htx_get_blk(htx, pos);
5041 enum htx_blk_type type = htx_get_blk_type(blk);
5042 struct ist n, v;
5043 int len;
Christopher Faulet724a12c2018-12-13 22:12:15 +01005044
Christopher Fauleta2097962019-07-15 16:25:33 +02005045 if (type == HTX_BLK_HDR) {
5046 n = htx_get_blk_name(htx,blk);
5047 v = htx_get_blk_value(htx, blk);
Christopher Faulet724a12c2018-12-13 22:12:15 +01005048 }
Christopher Fauleta2097962019-07-15 16:25:33 +02005049 else if (type == HTX_BLK_EOH)
5050 break;
5051 else
5052 continue;
Christopher Faulet724a12c2018-12-13 22:12:15 +01005053
Christopher Fauleta2097962019-07-15 16:25:33 +02005054 /* Check for existing entry:
5055 * assume that the table is on the top of the stack, and
5056 * push the key in the stack, the function lua_gettable()
5057 * perform the lookup.
5058 */
5059 lua_pushlstring(L, n.ptr, n.len);
5060 lua_gettable(L, -2);
Christopher Faulet724a12c2018-12-13 22:12:15 +01005061
Christopher Fauleta2097962019-07-15 16:25:33 +02005062 switch (lua_type(L, -1)) {
5063 case LUA_TNIL:
5064 /* Table not found, create it. */
5065 lua_pop(L, 1); /* remove the nil value. */
5066 lua_pushlstring(L, n.ptr, n.len); /* push the header name as key. */
5067 lua_newtable(L); /* create and push empty table. */
5068 lua_pushlstring(L, v.ptr, v.len); /* push header value. */
5069 lua_rawseti(L, -2, 0); /* index header value (pop it). */
5070 lua_rawset(L, -3); /* index new table with header name (pop the values). */
Christopher Faulet724a12c2018-12-13 22:12:15 +01005071 break;
Christopher Faulet724a12c2018-12-13 22:12:15 +01005072
Christopher Fauleta2097962019-07-15 16:25:33 +02005073 case LUA_TTABLE:
5074 /* Entry found: push the value in the table. */
5075 len = lua_rawlen(L, -1);
5076 lua_pushlstring(L, v.ptr, v.len); /* push header value. */
5077 lua_rawseti(L, -2, len+1); /* index header value (pop it). */
5078 lua_pop(L, 1); /* remove the table (it is stored in the main table). */
5079 break;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005080
Christopher Fauleta2097962019-07-15 16:25:33 +02005081 default:
5082 /* Other cases are errors. */
5083 hlua_pusherror(L, "internal error during the parsing of headers.");
5084 WILL_LJMP(lua_error(L));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005085 }
5086 }
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005087 return 1;
5088}
5089
5090__LJMP static int hlua_http_req_get_headers(lua_State *L)
5091{
5092 struct hlua_txn *htxn;
5093
5094 MAY_LJMP(check_args(L, 1, "req_get_headers"));
5095 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5096
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005097 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005098 WILL_LJMP(lua_error(L));
5099
Christopher Faulet9d1332b2020-02-24 16:46:16 +01005100 return hlua_http_get_headers(L, &htxn->s->txn->req);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005101}
5102
5103__LJMP static int hlua_http_res_get_headers(lua_State *L)
5104{
5105 struct hlua_txn *htxn;
5106
5107 MAY_LJMP(check_args(L, 1, "res_get_headers"));
5108 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5109
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005110 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005111 WILL_LJMP(lua_error(L));
5112
Christopher Faulet9d1332b2020-02-24 16:46:16 +01005113 return hlua_http_get_headers(L, &htxn->s->txn->rsp);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005114}
5115
5116/* This function replace full header, or just a value in
5117 * the request or in the response. It is a wrapper fir the
5118 * 4 following functions.
5119 */
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005120__LJMP static inline int hlua_http_rep_hdr(lua_State *L, struct http_msg *msg, int full)
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005121{
5122 size_t name_len;
5123 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
5124 const char *reg = MAY_LJMP(luaL_checkstring(L, 3));
5125 const char *value = MAY_LJMP(luaL_checkstring(L, 4));
Christopher Fauleta2097962019-07-15 16:25:33 +02005126 struct htx *htx;
Dragan Dosen26743032019-04-30 15:54:36 +02005127 struct my_regex *re;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005128
Dragan Dosen26743032019-04-30 15:54:36 +02005129 if (!(re = regex_comp(reg, 1, 1, NULL)))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005130 WILL_LJMP(luaL_argerror(L, 3, "invalid regex"));
5131
Christopher Fauleta2097962019-07-15 16:25:33 +02005132 htx = htxbuf(&msg->chn->buf);
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005133 http_replace_hdrs(chn_strm(msg->chn), htx, ist2(name, name_len), value, re, full);
Dragan Dosen26743032019-04-30 15:54:36 +02005134 regex_free(re);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005135 return 0;
5136}
5137
5138__LJMP static int hlua_http_req_rep_hdr(lua_State *L)
5139{
5140 struct hlua_txn *htxn;
5141
5142 MAY_LJMP(check_args(L, 4, "req_rep_hdr"));
5143 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5144
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005145 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005146 WILL_LJMP(lua_error(L));
5147
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005148 return MAY_LJMP(hlua_http_rep_hdr(L, &htxn->s->txn->req, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005149}
5150
5151__LJMP static int hlua_http_res_rep_hdr(lua_State *L)
5152{
5153 struct hlua_txn *htxn;
5154
5155 MAY_LJMP(check_args(L, 4, "res_rep_hdr"));
5156 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5157
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005158 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005159 WILL_LJMP(lua_error(L));
5160
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005161 return MAY_LJMP(hlua_http_rep_hdr(L, &htxn->s->txn->rsp, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005162}
5163
5164__LJMP static int hlua_http_req_rep_val(lua_State *L)
5165{
5166 struct hlua_txn *htxn;
5167
5168 MAY_LJMP(check_args(L, 4, "req_rep_hdr"));
5169 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5170
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005171 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005172 WILL_LJMP(lua_error(L));
5173
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005174 return MAY_LJMP(hlua_http_rep_hdr(L, &htxn->s->txn->req, 0));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005175}
5176
5177__LJMP static int hlua_http_res_rep_val(lua_State *L)
5178{
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005179 struct hlua_txn *htxn;
5180
5181 MAY_LJMP(check_args(L, 4, "res_rep_val"));
5182 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5183
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005184 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005185 WILL_LJMP(lua_error(L));
5186
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005187 return MAY_LJMP(hlua_http_rep_hdr(L, &htxn->s->txn->rsp, 0));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005188}
5189
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08005190/* This function deletes all the occurrences of an header.
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005191 * It is a wrapper for the 2 following functions.
5192 */
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005193__LJMP static inline int hlua_http_del_hdr(lua_State *L, struct http_msg *msg)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005194{
5195 size_t len;
5196 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Christopher Fauleta2097962019-07-15 16:25:33 +02005197 struct htx *htx = htxbuf(&msg->chn->buf);
5198 struct http_hdr_ctx ctx;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005199
Christopher Fauleta2097962019-07-15 16:25:33 +02005200 ctx.blk = NULL;
5201 while (http_find_header(htx, ist2(name, len), &ctx, 1))
5202 http_remove_header(htx, &ctx);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005203 return 0;
5204}
5205
5206__LJMP static int hlua_http_req_del_hdr(lua_State *L)
5207{
5208 struct hlua_txn *htxn;
5209
5210 MAY_LJMP(check_args(L, 2, "req_del_hdr"));
5211 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5212
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005213 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005214 WILL_LJMP(lua_error(L));
5215
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005216 return hlua_http_del_hdr(L, &htxn->s->txn->req);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005217}
5218
5219__LJMP static int hlua_http_res_del_hdr(lua_State *L)
5220{
5221 struct hlua_txn *htxn;
5222
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005223 MAY_LJMP(check_args(L, 2, "res_del_hdr"));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005224 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5225
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005226 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005227 WILL_LJMP(lua_error(L));
5228
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005229 return hlua_http_del_hdr(L, &htxn->s->txn->rsp);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005230}
5231
5232/* This function adds an header. It is a wrapper used by
5233 * the 2 following functions.
5234 */
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005235__LJMP static inline int hlua_http_add_hdr(lua_State *L, struct http_msg *msg)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005236{
5237 size_t name_len;
5238 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
5239 size_t value_len;
5240 const char *value = MAY_LJMP(luaL_checklstring(L, 3, &value_len));
Christopher Fauleta2097962019-07-15 16:25:33 +02005241 struct htx *htx = htxbuf(&msg->chn->buf);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005242
Christopher Fauleta2097962019-07-15 16:25:33 +02005243 lua_pushboolean(L, http_add_header(htx, ist2(name, name_len),
5244 ist2(value, value_len)));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005245 return 0;
5246}
5247
5248__LJMP static int hlua_http_req_add_hdr(lua_State *L)
5249{
5250 struct hlua_txn *htxn;
5251
5252 MAY_LJMP(check_args(L, 3, "req_add_hdr"));
5253 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5254
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005255 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005256 WILL_LJMP(lua_error(L));
5257
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005258 return hlua_http_add_hdr(L, &htxn->s->txn->req);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005259}
5260
5261__LJMP static int hlua_http_res_add_hdr(lua_State *L)
5262{
5263 struct hlua_txn *htxn;
5264
5265 MAY_LJMP(check_args(L, 3, "res_add_hdr"));
5266 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5267
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005268 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005269 WILL_LJMP(lua_error(L));
5270
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005271 return hlua_http_add_hdr(L, &htxn->s->txn->rsp);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005272}
5273
5274static int hlua_http_req_set_hdr(lua_State *L)
5275{
5276 struct hlua_txn *htxn;
5277
5278 MAY_LJMP(check_args(L, 3, "req_set_hdr"));
5279 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5280
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005281 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005282 WILL_LJMP(lua_error(L));
5283
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005284 hlua_http_del_hdr(L, &htxn->s->txn->req);
5285 return hlua_http_add_hdr(L, &htxn->s->txn->req);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005286}
5287
5288static int hlua_http_res_set_hdr(lua_State *L)
5289{
5290 struct hlua_txn *htxn;
5291
5292 MAY_LJMP(check_args(L, 3, "res_set_hdr"));
5293 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5294
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005295 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005296 WILL_LJMP(lua_error(L));
5297
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005298 hlua_http_del_hdr(L, &htxn->s->txn->rsp);
5299 return hlua_http_add_hdr(L, &htxn->s->txn->rsp);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005300}
5301
5302/* This function set the method. */
5303static int hlua_http_req_set_meth(lua_State *L)
5304{
Willy Tarreaubcb39cc2015-04-06 11:21:44 +02005305 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005306 size_t name_len;
5307 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005308
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005309 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005310 WILL_LJMP(lua_error(L));
5311
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02005312 lua_pushboolean(L, http_req_replace_stline(0, name, name_len, htxn->p, htxn->s) != -1);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005313 return 1;
5314}
5315
5316/* This function set the method. */
5317static int hlua_http_req_set_path(lua_State *L)
5318{
Willy Tarreaubcb39cc2015-04-06 11:21:44 +02005319 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005320 size_t name_len;
5321 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
Thierry FOURNIER / OZON.IOb84ae922016-08-02 23:44:58 +02005322
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005323 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005324 WILL_LJMP(lua_error(L));
5325
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02005326 lua_pushboolean(L, http_req_replace_stline(1, name, name_len, htxn->p, htxn->s) != -1);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005327 return 1;
5328}
5329
5330/* This function set the query-string. */
5331static int hlua_http_req_set_query(lua_State *L)
5332{
Willy Tarreaubcb39cc2015-04-06 11:21:44 +02005333 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005334 size_t name_len;
5335 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005336
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005337 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005338 WILL_LJMP(lua_error(L));
5339
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005340 /* Check length. */
5341 if (name_len > trash.size - 1) {
5342 lua_pushboolean(L, 0);
5343 return 1;
5344 }
5345
5346 /* Add the mark question as prefix. */
5347 chunk_reset(&trash);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005348 trash.area[trash.data++] = '?';
5349 memcpy(trash.area + trash.data, name, name_len);
5350 trash.data += name_len;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005351
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005352 lua_pushboolean(L,
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02005353 http_req_replace_stline(2, trash.area, trash.data, htxn->p, htxn->s) != -1);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005354 return 1;
5355}
5356
5357/* This function set the uri. */
5358static int hlua_http_req_set_uri(lua_State *L)
5359{
Willy Tarreaubcb39cc2015-04-06 11:21:44 +02005360 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005361 size_t name_len;
5362 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005363
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005364 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005365 WILL_LJMP(lua_error(L));
5366
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02005367 lua_pushboolean(L, http_req_replace_stline(3, name, name_len, htxn->p, htxn->s) != -1);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005368 return 1;
5369}
5370
Robin H. Johnson52f5db22017-01-01 13:10:52 -08005371/* This function set the response code & optionally reason. */
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +02005372static int hlua_http_res_set_status(lua_State *L)
5373{
5374 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5375 unsigned int code = MAY_LJMP(luaL_checkinteger(L, 2));
Christopher Faulet96bff762019-12-17 13:46:18 +01005376 const char *str = MAY_LJMP(luaL_optlstring(L, 3, NULL, NULL));
5377 const struct ist reason = ist2(str, (str ? strlen(str) : 0));
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +02005378
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005379 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005380 WILL_LJMP(lua_error(L));
5381
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02005382 http_res_set_status(code, reason, htxn->s);
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +02005383 return 0;
5384}
5385
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005386/*
5387 *
5388 *
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005389 * Class TXN
5390 *
5391 *
5392 */
5393
5394/* Returns a struct hlua_session if the stack entry "ud" is
Willy Tarreau87b09662015-04-03 00:22:06 +02005395 * a class stream, otherwise it throws an error.
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005396 */
5397__LJMP static struct hlua_txn *hlua_checktxn(lua_State *L, int ud)
5398{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02005399 return MAY_LJMP(hlua_checkudata(L, ud, class_txn_ref));
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005400}
5401
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02005402__LJMP static int hlua_set_var(lua_State *L)
5403{
5404 struct hlua_txn *htxn;
5405 const char *name;
5406 size_t len;
5407 struct sample smp;
5408
Tim Duesterhus4e172c92020-05-19 13:49:42 +02005409 if (lua_gettop(L) < 3 || lua_gettop(L) > 4)
5410 WILL_LJMP(luaL_error(L, "'set_var' needs between 3 and 4 arguments"));
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02005411
5412 /* It is useles to retrieve the stream, but this function
5413 * runs only in a stream context.
5414 */
5415 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5416 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
5417
5418 /* Converts the third argument in a sample. */
Amaury Denoyellebc0af6a2020-10-29 17:21:20 +01005419 memset(&smp, 0, sizeof(smp));
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02005420 hlua_lua2smp(L, 3, &smp);
5421
Aurelien DARRAGONd39fb742023-05-17 16:06:11 +02005422 /* Store the sample in a variable. We don't need to dup the smp, vars API
5423 * already takes care of duplicating dynamic var data.
5424 */
Willy Tarreau7560dd42016-03-10 16:28:58 +01005425 smp_set_owner(&smp, htxn->p, htxn->s->sess, htxn->s, htxn->dir & SMP_OPT_DIR);
Tim Duesterhus4e172c92020-05-19 13:49:42 +02005426
5427 if (lua_gettop(L) == 4 && lua_toboolean(L, 4))
5428 lua_pushboolean(L, vars_set_by_name_ifexist(name, len, &smp) != 0);
5429 else
5430 lua_pushboolean(L, vars_set_by_name(name, len, &smp) != 0);
5431
Tim Duesterhus84ebc132020-05-19 13:49:41 +02005432 return 1;
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02005433}
5434
Christopher Faulet85d79c92016-11-09 16:54:56 +01005435__LJMP static int hlua_unset_var(lua_State *L)
5436{
5437 struct hlua_txn *htxn;
5438 const char *name;
5439 size_t len;
5440 struct sample smp;
5441
5442 MAY_LJMP(check_args(L, 2, "unset_var"));
5443
5444 /* It is useles to retrieve the stream, but this function
5445 * runs only in a stream context.
5446 */
5447 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5448 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
5449
5450 /* Unset the variable. */
5451 smp_set_owner(&smp, htxn->p, htxn->s->sess, htxn->s, htxn->dir & SMP_OPT_DIR);
Tim Duesterhus84ebc132020-05-19 13:49:41 +02005452 lua_pushboolean(L, vars_unset_by_name_ifexist(name, len, &smp) != 0);
5453 return 1;
Christopher Faulet85d79c92016-11-09 16:54:56 +01005454}
5455
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02005456__LJMP static int hlua_get_var(lua_State *L)
5457{
5458 struct hlua_txn *htxn;
5459 const char *name;
5460 size_t len;
5461 struct sample smp;
5462
5463 MAY_LJMP(check_args(L, 2, "get_var"));
5464
5465 /* It is useles to retrieve the stream, but this function
5466 * runs only in a stream context.
5467 */
5468 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5469 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
5470
Willy Tarreau7560dd42016-03-10 16:28:58 +01005471 smp_set_owner(&smp, htxn->p, htxn->s->sess, htxn->s, htxn->dir & SMP_OPT_DIR);
Willy Tarreau6204cd92016-03-10 16:33:04 +01005472 if (!vars_get_by_name(name, len, &smp)) {
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02005473 lua_pushnil(L);
5474 return 1;
5475 }
5476
5477 return hlua_smp2lua(L, &smp);
5478}
5479
Willy Tarreau59551662015-03-10 14:23:13 +01005480__LJMP static int hlua_set_priv(lua_State *L)
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005481{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01005482 struct hlua *hlua;
5483
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005484 MAY_LJMP(check_args(L, 2, "set_priv"));
5485
Willy Tarreau87b09662015-04-03 00:22:06 +02005486 /* It is useles to retrieve the stream, but this function
5487 * runs only in a stream context.
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005488 */
5489 MAY_LJMP(hlua_checktxn(L, 1));
Thierry Fournier4234dbd2020-11-28 13:18:23 +01005490
5491 /* Get hlua struct, or NULL if we execute from main lua state */
Willy Tarreau80f5fae2015-02-27 16:38:20 +01005492 hlua = hlua_gethlua(L);
Thierry Fournier4234dbd2020-11-28 13:18:23 +01005493 if (!hlua)
5494 return 0;
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005495
5496 /* Remove previous value. */
Thierry FOURNIERe068b602017-04-26 13:27:05 +02005497 luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref);
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005498
5499 /* Get and store new value. */
5500 lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */
5501 hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */
5502
5503 return 0;
5504}
5505
Willy Tarreau59551662015-03-10 14:23:13 +01005506__LJMP static int hlua_get_priv(lua_State *L)
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005507{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01005508 struct hlua *hlua;
5509
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005510 MAY_LJMP(check_args(L, 1, "get_priv"));
5511
Willy Tarreau87b09662015-04-03 00:22:06 +02005512 /* It is useles to retrieve the stream, but this function
5513 * runs only in a stream context.
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005514 */
5515 MAY_LJMP(hlua_checktxn(L, 1));
Thierry Fournier4234dbd2020-11-28 13:18:23 +01005516
5517 /* Get hlua struct, or NULL if we execute from main lua state */
Willy Tarreau80f5fae2015-02-27 16:38:20 +01005518 hlua = hlua_gethlua(L);
Thierry Fournier4234dbd2020-11-28 13:18:23 +01005519 if (!hlua) {
5520 lua_pushnil(L);
5521 return 1;
5522 }
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005523
5524 /* Push configuration index in the stack. */
5525 lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref);
5526
5527 return 1;
5528}
5529
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005530/* Create stack entry containing a class TXN. This function
5531 * return 0 if the stack does not contains free slots,
5532 * otherwise it returns 1.
5533 */
Thierry FOURNIERab00df62016-07-14 11:42:37 +02005534static int hlua_txn_new(lua_State *L, struct stream *s, struct proxy *p, int dir, int flags)
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005535{
Willy Tarreaude491382015-04-06 11:04:28 +02005536 struct hlua_txn *htxn;
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005537
5538 /* Check stack size. */
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01005539 if (!lua_checkstack(L, 3))
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005540 return 0;
5541
5542 /* NOTE: The allocation never fails. The failure
5543 * throw an error, and the function never returns.
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08005544 * if the throw is not available, the process is aborted.
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005545 */
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01005546 /* Create the object: obj[0] = userdata. */
5547 lua_newtable(L);
Willy Tarreaude491382015-04-06 11:04:28 +02005548 htxn = lua_newuserdata(L, sizeof(*htxn));
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01005549 lua_rawseti(L, -2, 0);
5550
Willy Tarreaude491382015-04-06 11:04:28 +02005551 htxn->s = s;
5552 htxn->p = p;
Thierry FOURNIERc4eebc82015-11-02 10:01:59 +01005553 htxn->dir = dir;
Thierry FOURNIERab00df62016-07-14 11:42:37 +02005554 htxn->flags = flags;
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005555
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01005556 /* Create the "f" field that contains a list of fetches. */
5557 lua_pushstring(L, "f");
Thierry FOURNIERca988662015-12-20 18:43:03 +01005558 if (!hlua_fetches_new(L, htxn, HLUA_F_MAY_USE_HTTP))
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01005559 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02005560 lua_rawset(L, -3);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01005561
5562 /* Create the "sf" field that contains a list of stringsafe fetches. */
5563 lua_pushstring(L, "sf");
Thierry FOURNIERca988662015-12-20 18:43:03 +01005564 if (!hlua_fetches_new(L, htxn, HLUA_F_MAY_USE_HTTP | HLUA_F_AS_STRING))
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01005565 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02005566 lua_rawset(L, -3);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01005567
Thierry FOURNIER594afe72015-03-10 23:58:30 +01005568 /* Create the "c" field that contains a list of converters. */
5569 lua_pushstring(L, "c");
Willy Tarreaude491382015-04-06 11:04:28 +02005570 if (!hlua_converters_new(L, htxn, 0))
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01005571 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02005572 lua_rawset(L, -3);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01005573
5574 /* Create the "sc" field that contains a list of stringsafe converters. */
5575 lua_pushstring(L, "sc");
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01005576 if (!hlua_converters_new(L, htxn, HLUA_F_AS_STRING))
Thierry FOURNIER594afe72015-03-10 23:58:30 +01005577 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02005578 lua_rawset(L, -3);
Thierry FOURNIER594afe72015-03-10 23:58:30 +01005579
Thierry FOURNIER397826a2015-03-11 19:39:09 +01005580 /* Create the "req" field that contains the request channel object. */
5581 lua_pushstring(L, "req");
Willy Tarreau2a71af42015-03-10 13:51:50 +01005582 if (!hlua_channel_new(L, &s->req))
Thierry FOURNIER397826a2015-03-11 19:39:09 +01005583 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02005584 lua_rawset(L, -3);
Thierry FOURNIER397826a2015-03-11 19:39:09 +01005585
5586 /* Create the "res" field that contains the response channel object. */
5587 lua_pushstring(L, "res");
Willy Tarreau2a71af42015-03-10 13:51:50 +01005588 if (!hlua_channel_new(L, &s->res))
Thierry FOURNIER397826a2015-03-11 19:39:09 +01005589 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02005590 lua_rawset(L, -3);
Thierry FOURNIER397826a2015-03-11 19:39:09 +01005591
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005592 /* Creates the HTTP object is the current proxy allows http. */
5593 lua_pushstring(L, "http");
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01005594 if (IS_HTX_STRM(s)) {
Willy Tarreaude491382015-04-06 11:04:28 +02005595 if (!hlua_http_new(L, htxn))
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005596 return 0;
5597 }
5598 else
5599 lua_pushnil(L);
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02005600 lua_rawset(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005601
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005602 /* Pop a class sesison metatable and affect it to the userdata. */
5603 lua_rawgeti(L, LUA_REGISTRYINDEX, class_txn_ref);
5604 lua_setmetatable(L, -2);
5605
5606 return 1;
5607}
5608
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01005609__LJMP static int hlua_txn_deflog(lua_State *L)
5610{
5611 const char *msg;
5612 struct hlua_txn *htxn;
5613
5614 MAY_LJMP(check_args(L, 2, "deflog"));
5615 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5616 msg = MAY_LJMP(luaL_checkstring(L, 2));
5617
5618 hlua_sendlog(htxn->s->be, htxn->s->logs.level, msg);
5619 return 0;
5620}
5621
5622__LJMP static int hlua_txn_log(lua_State *L)
5623{
5624 int level;
5625 const char *msg;
5626 struct hlua_txn *htxn;
5627
5628 MAY_LJMP(check_args(L, 3, "log"));
5629 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5630 level = MAY_LJMP(luaL_checkinteger(L, 2));
5631 msg = MAY_LJMP(luaL_checkstring(L, 3));
5632
5633 if (level < 0 || level >= NB_LOG_LEVELS)
5634 WILL_LJMP(luaL_argerror(L, 1, "Invalid loglevel."));
5635
5636 hlua_sendlog(htxn->s->be, level, msg);
5637 return 0;
5638}
5639
5640__LJMP static int hlua_txn_log_debug(lua_State *L)
5641{
5642 const char *msg;
5643 struct hlua_txn *htxn;
5644
5645 MAY_LJMP(check_args(L, 2, "Debug"));
5646 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5647 msg = MAY_LJMP(luaL_checkstring(L, 2));
5648 hlua_sendlog(htxn->s->be, LOG_DEBUG, msg);
5649 return 0;
5650}
5651
5652__LJMP static int hlua_txn_log_info(lua_State *L)
5653{
5654 const char *msg;
5655 struct hlua_txn *htxn;
5656
5657 MAY_LJMP(check_args(L, 2, "Info"));
5658 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5659 msg = MAY_LJMP(luaL_checkstring(L, 2));
5660 hlua_sendlog(htxn->s->be, LOG_INFO, msg);
5661 return 0;
5662}
5663
5664__LJMP static int hlua_txn_log_warning(lua_State *L)
5665{
5666 const char *msg;
5667 struct hlua_txn *htxn;
5668
5669 MAY_LJMP(check_args(L, 2, "Warning"));
5670 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5671 msg = MAY_LJMP(luaL_checkstring(L, 2));
5672 hlua_sendlog(htxn->s->be, LOG_WARNING, msg);
5673 return 0;
5674}
5675
5676__LJMP static int hlua_txn_log_alert(lua_State *L)
5677{
5678 const char *msg;
5679 struct hlua_txn *htxn;
5680
5681 MAY_LJMP(check_args(L, 2, "Alert"));
5682 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5683 msg = MAY_LJMP(luaL_checkstring(L, 2));
5684 hlua_sendlog(htxn->s->be, LOG_ALERT, msg);
5685 return 0;
5686}
5687
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01005688__LJMP static int hlua_txn_set_loglevel(lua_State *L)
5689{
5690 struct hlua_txn *htxn;
5691 int ll;
5692
5693 MAY_LJMP(check_args(L, 2, "set_loglevel"));
5694 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5695 ll = MAY_LJMP(luaL_checkinteger(L, 2));
5696
5697 if (ll < 0 || ll > 7)
5698 WILL_LJMP(luaL_argerror(L, 2, "Bad log level. It must be between 0 and 7"));
5699
5700 htxn->s->logs.level = ll;
5701 return 0;
5702}
5703
5704__LJMP static int hlua_txn_set_tos(lua_State *L)
5705{
5706 struct hlua_txn *htxn;
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01005707 int tos;
5708
5709 MAY_LJMP(check_args(L, 2, "set_tos"));
5710 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5711 tos = MAY_LJMP(luaL_checkinteger(L, 2));
5712
Willy Tarreau1a18b542018-12-11 16:37:42 +01005713 conn_set_tos(objt_conn(htxn->s->sess->origin), tos);
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01005714 return 0;
5715}
5716
5717__LJMP static int hlua_txn_set_mark(lua_State *L)
5718{
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01005719 struct hlua_txn *htxn;
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01005720 int mark;
5721
5722 MAY_LJMP(check_args(L, 2, "set_mark"));
5723 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5724 mark = MAY_LJMP(luaL_checkinteger(L, 2));
5725
Lukas Tribus579e3e32019-08-11 18:03:45 +02005726 conn_set_mark(objt_conn(htxn->s->sess->origin), mark);
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01005727 return 0;
5728}
5729
Patrick Hemmer268a7072018-05-11 12:52:31 -04005730__LJMP static int hlua_txn_set_priority_class(lua_State *L)
5731{
5732 struct hlua_txn *htxn;
5733
5734 MAY_LJMP(check_args(L, 2, "set_priority_class"));
5735 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5736 htxn->s->priority_class = queue_limit_class(MAY_LJMP(luaL_checkinteger(L, 2)));
5737 return 0;
5738}
5739
5740__LJMP static int hlua_txn_set_priority_offset(lua_State *L)
5741{
5742 struct hlua_txn *htxn;
5743
5744 MAY_LJMP(check_args(L, 2, "set_priority_offset"));
5745 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5746 htxn->s->priority_offset = queue_limit_offset(MAY_LJMP(luaL_checkinteger(L, 2)));
5747 return 0;
5748}
5749
Christopher Faulet700d9e82020-01-31 12:21:52 +01005750/* Forward the Reply object to the client. This function converts the reply in
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05005751 * HTX an push it to into the response channel. It is response to forward the
Christopher Faulet700d9e82020-01-31 12:21:52 +01005752 * message and terminate the transaction. It returns 1 on success and 0 on
5753 * error. The Reply must be on top of the stack.
5754 */
5755__LJMP static int hlua_txn_forward_reply(lua_State *L, struct stream *s)
5756{
5757 struct htx *htx;
5758 struct htx_sl *sl;
5759 struct h1m h1m;
5760 const char *status, *reason, *body;
5761 size_t status_len, reason_len, body_len;
5762 int ret, code, flags;
5763
5764 code = 200;
5765 status = "200";
5766 status_len = 3;
5767 ret = lua_getfield(L, -1, "status");
5768 if (ret == LUA_TNUMBER) {
5769 code = lua_tointeger(L, -1);
5770 status = lua_tolstring(L, -1, &status_len);
5771 }
5772 lua_pop(L, 1);
5773
5774 reason = http_get_reason(code);
5775 reason_len = strlen(reason);
5776 ret = lua_getfield(L, -1, "reason");
5777 if (ret == LUA_TSTRING)
5778 reason = lua_tolstring(L, -1, &reason_len);
5779 lua_pop(L, 1);
5780
5781 body = NULL;
5782 body_len = 0;
5783 ret = lua_getfield(L, -1, "body");
5784 if (ret == LUA_TSTRING)
5785 body = lua_tolstring(L, -1, &body_len);
5786 lua_pop(L, 1);
5787
5788 /* Prepare the response before inserting the headers */
5789 h1m_init_res(&h1m);
5790 htx = htx_from_buf(&s->res.buf);
5791 channel_htx_truncate(&s->res, htx);
5792 if (s->txn->req.flags & HTTP_MSGF_VER_11) {
5793 flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11);
5794 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"),
5795 ist2(status, status_len), ist2(reason, reason_len));
5796 }
5797 else {
5798 flags = HTX_SL_F_IS_RESP;
5799 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.0"),
5800 ist2(status, status_len), ist2(reason, reason_len));
5801 }
5802 if (!sl)
5803 goto fail;
5804 sl->info.res.status = code;
5805
5806 /* Push in the stack the "headers" entry. */
5807 ret = lua_getfield(L, -1, "headers");
5808 if (ret != LUA_TTABLE)
5809 goto skip_headers;
5810
5811 lua_pushnil(L);
5812 while (lua_next(L, -2) != 0) {
5813 struct ist name, value;
5814 const char *n, *v;
5815 size_t nlen, vlen;
5816
5817 if (!lua_isstring(L, -2) || !lua_istable(L, -1)) {
5818 /* Skip element if the key is not a string or if the value is not a table */
5819 goto next_hdr;
5820 }
5821
5822 n = lua_tolstring(L, -2, &nlen);
5823 name = ist2(n, nlen);
5824 if (isteqi(name, ist("content-length"))) {
5825 /* Always skip content-length header. It will be added
5826 * later with the correct len
5827 */
5828 goto next_hdr;
5829 }
5830
5831 /* Loop on header's values */
5832 lua_pushnil(L);
5833 while (lua_next(L, -2)) {
5834 if (!lua_isstring(L, -1)) {
5835 /* Skip the value if it is not a string */
5836 goto next_value;
5837 }
5838
5839 v = lua_tolstring(L, -1, &vlen);
5840 value = ist2(v, vlen);
5841
5842 if (isteqi(name, ist("transfer-encoding")))
5843 h1_parse_xfer_enc_header(&h1m, value);
5844 if (!htx_add_header(htx, ist2(n, nlen), ist2(v, vlen)))
5845 goto fail;
5846
5847 next_value:
5848 lua_pop(L, 1);
5849 }
5850
5851 next_hdr:
5852 lua_pop(L, 1);
5853 }
5854 skip_headers:
5855 lua_pop(L, 1);
5856
5857 /* Update h1m flags: CLEN is set if CHNK is not present */
5858 if (!(h1m.flags & H1_MF_CHNK)) {
5859 const char *clen = ultoa(body_len);
5860
5861 h1m.flags |= H1_MF_CLEN;
5862 if (!htx_add_header(htx, ist("content-length"), ist(clen)))
5863 goto fail;
5864 }
5865 if (h1m.flags & (H1_MF_CLEN|H1_MF_CHNK))
5866 h1m.flags |= H1_MF_XFER_LEN;
5867
5868 /* Update HTX start-line flags */
5869 if (h1m.flags & H1_MF_XFER_ENC)
5870 flags |= HTX_SL_F_XFER_ENC;
5871 if (h1m.flags & H1_MF_XFER_LEN) {
5872 flags |= HTX_SL_F_XFER_LEN;
5873 if (h1m.flags & H1_MF_CHNK)
5874 flags |= HTX_SL_F_CHNK;
5875 else if (h1m.flags & H1_MF_CLEN)
5876 flags |= HTX_SL_F_CLEN;
5877 if (h1m.body_len == 0)
5878 flags |= HTX_SL_F_BODYLESS;
5879 }
5880 sl->flags |= flags;
5881
5882
5883 if (!htx_add_endof(htx, HTX_BLK_EOH) ||
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005884 (body_len && !htx_add_data_atonce(htx, ist2(body, body_len))))
Christopher Faulet700d9e82020-01-31 12:21:52 +01005885 goto fail;
5886
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005887 htx->flags |= HTX_FL_EOM;
5888
Christopher Faulet700d9e82020-01-31 12:21:52 +01005889 /* Now, forward the response and terminate the transaction */
5890 s->txn->status = code;
5891 htx_to_buf(htx, &s->res.buf);
5892 if (!http_forward_proxy_resp(s, 1))
5893 goto fail;
5894
5895 return 1;
5896
5897 fail:
5898 channel_htx_truncate(&s->res, htx);
5899 return 0;
5900}
5901
5902/* Terminate a transaction if called from a lua action. For TCP streams,
5903 * processing is just aborted. Nothing is returned to the client and all
5904 * arguments are ignored. For HTTP streams, if a reply is passed as argument, it
5905 * is forwarded to the client before terminating the transaction. On success,
5906 * the function exits with ACT_RET_DONE code. If an error occurred, it exits
5907 * with ACT_RET_ERR code. If this function is not called from a lua action, it
5908 * just exits without any processing.
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01005909 */
Thierry FOURNIER4bb375c2015-08-26 08:42:21 +02005910__LJMP static int hlua_txn_done(lua_State *L)
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01005911{
Willy Tarreaub2ccb562015-04-06 11:11:15 +02005912 struct hlua_txn *htxn;
Christopher Faulet700d9e82020-01-31 12:21:52 +01005913 struct stream *s;
5914 int finst;
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01005915
Willy Tarreaub2ccb562015-04-06 11:11:15 +02005916 htxn = MAY_LJMP(hlua_checktxn(L, 1));
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01005917
Christopher Faulet700d9e82020-01-31 12:21:52 +01005918 /* If the flags NOTERM is set, we cannot terminate the session, so we
5919 * just end the execution of the current lua code. */
5920 if (htxn->flags & HLUA_TXN_NOTERM)
Thierry FOURNIERab00df62016-07-14 11:42:37 +02005921 WILL_LJMP(hlua_done(L));
Thierry FOURNIERab00df62016-07-14 11:42:37 +02005922
Christopher Faulet700d9e82020-01-31 12:21:52 +01005923 s = htxn->s;
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005924 if (!IS_HTX_STRM(htxn->s)) {
Christopher Faulet700d9e82020-01-31 12:21:52 +01005925 struct channel *req = &s->req;
5926 struct channel *res = &s->res;
Willy Tarreau81389672015-03-10 12:03:52 +01005927
Christopher Faulet700d9e82020-01-31 12:21:52 +01005928 channel_auto_read(req);
5929 channel_abort(req);
5930 channel_auto_close(req);
5931 channel_erase(req);
5932
5933 res->wex = tick_add_ifset(now_ms, res->wto);
5934 channel_auto_read(res);
5935 channel_auto_close(res);
5936 channel_shutr_now(res);
5937
5938 finst = ((htxn->dir == SMP_OPT_DIR_REQ) ? SF_FINST_R : SF_FINST_D);
5939 goto done;
Christopher Fauletfe6a71b2019-07-26 16:40:24 +02005940 }
Thierry FOURNIER10ec2142015-08-24 17:23:45 +02005941
Christopher Faulet700d9e82020-01-31 12:21:52 +01005942 if (lua_gettop(L) == 1 || !lua_istable(L, 2)) {
5943 /* No reply or invalid reply */
5944 s->txn->status = 0;
5945 http_reply_and_close(s, 0, NULL);
5946 }
5947 else {
5948 /* Remove extra args to have the reply on top of the stack */
5949 if (lua_gettop(L) > 2)
5950 lua_pop(L, lua_gettop(L) - 2);
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01005951
Christopher Faulet700d9e82020-01-31 12:21:52 +01005952 if (!hlua_txn_forward_reply(L, s)) {
5953 if (!(s->flags & SF_ERR_MASK))
5954 s->flags |= SF_ERR_PRXCOND;
5955 lua_pushinteger(L, ACT_RET_ERR);
5956 WILL_LJMP(hlua_done(L));
5957 return 0; /* Never reached */
5958 }
Christopher Faulet4d0e2632019-07-16 10:52:40 +02005959 }
Thierry FOURNIER4bb375c2015-08-26 08:42:21 +02005960
Christopher Faulet700d9e82020-01-31 12:21:52 +01005961 finst = ((htxn->dir == SMP_OPT_DIR_REQ) ? SF_FINST_R : SF_FINST_H);
5962 if (htxn->dir == SMP_OPT_DIR_REQ) {
5963 /* let's log the request time */
5964 s->logs.tv_request = now;
5965 if (s->sess->fe == s->be) /* report it if the request was intercepted by the frontend */
Willy Tarreau4781b152021-04-06 13:53:36 +02005966 _HA_ATOMIC_INC(&s->sess->fe->fe_counters.intercepted_req);
Christopher Faulet700d9e82020-01-31 12:21:52 +01005967 }
Christopher Fauletfe6a71b2019-07-26 16:40:24 +02005968
Christopher Faulet700d9e82020-01-31 12:21:52 +01005969 done:
5970 if (!(s->flags & SF_ERR_MASK))
5971 s->flags |= SF_ERR_LOCAL;
5972 if (!(s->flags & SF_FINST_MASK))
5973 s->flags |= finst;
Christopher Fauletfe6a71b2019-07-26 16:40:24 +02005974
Christopher Faulet4ad73102020-03-05 11:07:31 +01005975 lua_pushinteger(L, ACT_RET_ABRT);
Thierry FOURNIER4bb375c2015-08-26 08:42:21 +02005976 WILL_LJMP(hlua_done(L));
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01005977 return 0;
5978}
5979
Christopher Faulet700d9e82020-01-31 12:21:52 +01005980/*
5981 *
5982 *
5983 * Class REPLY
5984 *
5985 *
5986 */
5987
5988/* Pushes the TXN reply onto the top of the stack. If the stask does not have a
5989 * free slots, the function fails and returns 0;
5990 */
5991static int hlua_txn_reply_new(lua_State *L)
5992{
5993 struct hlua_txn *htxn;
5994 const char *reason, *body = NULL;
5995 int ret, status;
5996
5997 htxn = MAY_LJMP(hlua_checktxn(L, 1));
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005998 if (!IS_HTX_STRM(htxn->s)) {
Christopher Faulet700d9e82020-01-31 12:21:52 +01005999 hlua_pusherror(L, "txn object is not an HTTP transaction.");
6000 WILL_LJMP(lua_error(L));
6001 }
6002
6003 /* Default value */
6004 status = 200;
6005 reason = http_get_reason(status);
6006
6007 if (lua_istable(L, 2)) {
6008 /* load status and reason from the table argument at index 2 */
6009 ret = lua_getfield(L, 2, "status");
6010 if (ret == LUA_TNIL)
6011 goto reason;
6012 else if (ret != LUA_TNUMBER) {
6013 /* invalid status: ignore the reason */
6014 goto body;
6015 }
6016 status = lua_tointeger(L, -1);
6017
6018 reason:
6019 lua_pop(L, 1); /* restore the stack: remove status */
6020 ret = lua_getfield(L, 2, "reason");
6021 if (ret == LUA_TSTRING)
6022 reason = lua_tostring(L, -1);
6023
6024 body:
6025 lua_pop(L, 1); /* restore the stack: remove invalid status or reason */
6026 ret = lua_getfield(L, 2, "body");
6027 if (ret == LUA_TSTRING)
6028 body = lua_tostring(L, -1);
6029 lua_pop(L, 1); /* restore the stack: remove body */
6030 }
6031
6032 /* Create the Reply table */
6033 lua_newtable(L);
6034
6035 /* Add status element */
6036 lua_pushstring(L, "status");
6037 lua_pushinteger(L, status);
6038 lua_settable(L, -3);
6039
6040 /* Add reason element */
6041 reason = http_get_reason(status);
6042 lua_pushstring(L, "reason");
6043 lua_pushstring(L, reason);
6044 lua_settable(L, -3);
6045
6046 /* Add body element, nil if undefined */
6047 lua_pushstring(L, "body");
6048 if (body)
6049 lua_pushstring(L, body);
6050 else
6051 lua_pushnil(L);
6052 lua_settable(L, -3);
6053
6054 /* Add headers element */
6055 lua_pushstring(L, "headers");
6056 lua_newtable(L);
6057
6058 /* stack: [ txn, <Arg:table>, <Reply:table>, "headers", <headers:table> ] */
6059 if (lua_istable(L, 2)) {
6060 /* load headers from the table argument at index 2. If it is a table, copy it. */
6061 ret = lua_getfield(L, 2, "headers");
6062 if (ret == LUA_TTABLE) {
6063 /* stack: [ ... <headers:table>, <table> ] */
6064 lua_pushnil(L);
6065 while (lua_next(L, -2) != 0) {
6066 /* stack: [ ... <headers:table>, <table>, k, v] */
6067 if (!lua_isstring(L, -1) && !lua_istable(L, -1)) {
6068 /* invalid value type, skip it */
6069 lua_pop(L, 1);
6070 continue;
6071 }
6072
6073
6074 /* Duplicate the key and swap it with the value. */
6075 lua_pushvalue(L, -2);
6076 lua_insert(L, -2);
6077 /* stack: [ ... <headers:table>, <table>, k, k, v ] */
6078
6079 lua_newtable(L);
6080 lua_insert(L, -2);
6081 /* stack: [ ... <headers:table>, <table>, k, k, <inner:table>, v ] */
6082
6083 if (lua_isstring(L, -1)) {
6084 /* push the value in the inner table */
6085 lua_rawseti(L, -2, 1);
6086 }
6087 else { /* table */
6088 lua_pushnil(L);
6089 while (lua_next(L, -2) != 0) {
6090 /* stack: [ ... <headers:table>, <table>, k, k, <inner:table>, <v:table>, k2, v2 ] */
6091 if (!lua_isstring(L, -1)) {
6092 /* invalid value type, skip it*/
6093 lua_pop(L, 1);
6094 continue;
6095 }
6096 /* push the value in the inner table */
6097 lua_rawseti(L, -4, lua_rawlen(L, -4) + 1);
6098 /* stack: [ ... <headers:table>, <table>, k, k, <inner:table>, <v:table>, k2 ] */
6099 }
6100 lua_pop(L, 1);
6101 /* stack: [ ... <headers:table>, <table>, k, k, <inner:table> ] */
6102 }
6103
6104 /* push (k,v) on the stack in the headers table:
6105 * stack: [ ... <headers:table>, <table>, k, k, v ]
6106 */
6107 lua_settable(L, -5);
6108 /* stack: [ ... <headers:table>, <table>, k ] */
6109 }
6110 }
6111 lua_pop(L, 1);
6112 }
6113 /* stack: [ txn, <Arg:table>, <Reply:table>, "headers", <headers:table> ] */
6114 lua_settable(L, -3);
6115 /* stack: [ txn, <Arg:table>, <Reply:table> ] */
6116
6117 /* Pop a class sesison metatable and affect it to the userdata. */
6118 lua_rawgeti(L, LUA_REGISTRYINDEX, class_txn_reply_ref);
6119 lua_setmetatable(L, -2);
6120 return 1;
6121}
6122
6123/* Set the reply status code, and optionally the reason. If no reason is
6124 * provided, the default one corresponding to the status code is used.
6125 */
6126__LJMP static int hlua_txn_reply_set_status(lua_State *L)
6127{
6128 int status = MAY_LJMP(luaL_checkinteger(L, 2));
6129 const char *reason = MAY_LJMP(luaL_optlstring(L, 3, NULL, NULL));
6130
6131 /* First argument (self) must be a table */
6132 luaL_checktype(L, 1, LUA_TTABLE);
6133
6134 if (status < 100 || status > 599) {
6135 lua_pushboolean(L, 0);
6136 return 1;
6137 }
6138 if (!reason)
6139 reason = http_get_reason(status);
6140
6141 lua_pushinteger(L, status);
6142 lua_setfield(L, 1, "status");
6143
6144 lua_pushstring(L, reason);
6145 lua_setfield(L, 1, "reason");
6146
6147 lua_pushboolean(L, 1);
6148 return 1;
6149}
6150
6151/* Add a header into the reply object. Each header name is associated to an
6152 * array of values in the "headers" table. If the header name is not found, a
6153 * new entry is created.
6154 */
6155__LJMP static int hlua_txn_reply_add_header(lua_State *L)
6156{
6157 const char *name = MAY_LJMP(luaL_checkstring(L, 2));
6158 const char *value = MAY_LJMP(luaL_checkstring(L, 3));
6159 int ret;
6160
6161 /* First argument (self) must be a table */
6162 luaL_checktype(L, 1, LUA_TTABLE);
6163
6164 /* Push in the stack the "headers" entry. */
6165 ret = lua_getfield(L, 1, "headers");
6166 if (ret != LUA_TTABLE) {
6167 hlua_pusherror(L, "Reply['headers'] is expected to a an array. %s found", lua_typename(L, ret));
6168 WILL_LJMP(lua_error(L));
6169 }
6170
6171 /* check if the header is already registered. If not, register it. */
6172 ret = lua_getfield(L, -1, name);
6173 if (ret == LUA_TNIL) {
6174 /* Entry not found. */
6175 lua_pop(L, 1); /* remove the nil. The "headers" table is the top of the stack. */
6176
6177 /* Insert the new header name in the array in the top of the stack.
6178 * It left the new array in the top of the stack.
6179 */
6180 lua_newtable(L);
6181 lua_pushstring(L, name);
6182 lua_pushvalue(L, -2);
6183 lua_settable(L, -4);
6184 }
6185 else if (ret != LUA_TTABLE) {
6186 hlua_pusherror(L, "Reply['headers']['%s'] is expected to be an array. %s found", name, lua_typename(L, ret));
6187 WILL_LJMP(lua_error(L));
6188 }
6189
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07006190 /* Now the top of thestack is an array of values. We push
Christopher Faulet700d9e82020-01-31 12:21:52 +01006191 * the header value as new entry.
6192 */
6193 lua_pushstring(L, value);
6194 ret = lua_rawlen(L, -2);
6195 lua_rawseti(L, -2, ret + 1);
6196
6197 lua_pushboolean(L, 1);
6198 return 1;
6199}
6200
6201/* Remove all occurrences of a given header name. */
6202__LJMP static int hlua_txn_reply_del_header(lua_State *L)
6203{
6204 const char *name = MAY_LJMP(luaL_checkstring(L, 2));
6205 int ret;
6206
6207 /* First argument (self) must be a table */
6208 luaL_checktype(L, 1, LUA_TTABLE);
6209
6210 /* Push in the stack the "headers" entry. */
6211 ret = lua_getfield(L, 1, "headers");
6212 if (ret != LUA_TTABLE) {
6213 hlua_pusherror(L, "Reply['headers'] is expected to be an array. %s found", lua_typename(L, ret));
6214 WILL_LJMP(lua_error(L));
6215 }
6216
6217 lua_pushstring(L, name);
6218 lua_pushnil(L);
6219 lua_settable(L, -3);
6220
6221 lua_pushboolean(L, 1);
6222 return 1;
6223}
6224
6225/* Set the reply's body. Overwrite any existing entry. */
6226__LJMP static int hlua_txn_reply_set_body(lua_State *L)
6227{
6228 const char *payload = MAY_LJMP(luaL_checkstring(L, 2));
6229
6230 /* First argument (self) must be a table */
6231 luaL_checktype(L, 1, LUA_TTABLE);
6232
6233 lua_pushstring(L, payload);
6234 lua_setfield(L, 1, "body");
6235
6236 lua_pushboolean(L, 1);
6237 return 1;
6238}
6239
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01006240__LJMP static int hlua_log(lua_State *L)
6241{
6242 int level;
6243 const char *msg;
6244
6245 MAY_LJMP(check_args(L, 2, "log"));
6246 level = MAY_LJMP(luaL_checkinteger(L, 1));
6247 msg = MAY_LJMP(luaL_checkstring(L, 2));
6248
6249 if (level < 0 || level >= NB_LOG_LEVELS)
6250 WILL_LJMP(luaL_argerror(L, 1, "Invalid loglevel."));
6251
6252 hlua_sendlog(NULL, level, msg);
6253 return 0;
6254}
6255
6256__LJMP static int hlua_log_debug(lua_State *L)
6257{
6258 const char *msg;
6259
6260 MAY_LJMP(check_args(L, 1, "debug"));
6261 msg = MAY_LJMP(luaL_checkstring(L, 1));
6262 hlua_sendlog(NULL, LOG_DEBUG, msg);
6263 return 0;
6264}
6265
6266__LJMP static int hlua_log_info(lua_State *L)
6267{
6268 const char *msg;
6269
6270 MAY_LJMP(check_args(L, 1, "info"));
6271 msg = MAY_LJMP(luaL_checkstring(L, 1));
6272 hlua_sendlog(NULL, LOG_INFO, msg);
6273 return 0;
6274}
6275
6276__LJMP static int hlua_log_warning(lua_State *L)
6277{
6278 const char *msg;
6279
6280 MAY_LJMP(check_args(L, 1, "warning"));
6281 msg = MAY_LJMP(luaL_checkstring(L, 1));
6282 hlua_sendlog(NULL, LOG_WARNING, msg);
6283 return 0;
6284}
6285
6286__LJMP static int hlua_log_alert(lua_State *L)
6287{
6288 const char *msg;
6289
6290 MAY_LJMP(check_args(L, 1, "alert"));
6291 msg = MAY_LJMP(luaL_checkstring(L, 1));
6292 hlua_sendlog(NULL, LOG_ALERT, msg);
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01006293 return 0;
6294}
6295
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01006296__LJMP static int hlua_sleep_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01006297{
6298 int wakeup_ms = lua_tointeger(L, -1);
Willy Tarreau9cc2e4c2021-09-30 16:12:31 +02006299 if (!tick_is_expired(wakeup_ms, now_ms))
Willy Tarreau9635e032018-10-16 17:52:55 +02006300 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_sleep_yield, wakeup_ms, 0));
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01006301 return 0;
6302}
6303
6304__LJMP static int hlua_sleep(lua_State *L)
6305{
6306 unsigned int delay;
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01006307 unsigned int wakeup_ms;
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01006308
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01006309 MAY_LJMP(check_args(L, 1, "sleep"));
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01006310
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01006311 delay = MAY_LJMP(luaL_checkinteger(L, 1)) * 1000;
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01006312 wakeup_ms = tick_add(now_ms, delay);
6313 lua_pushinteger(L, wakeup_ms);
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01006314
Willy Tarreau9635e032018-10-16 17:52:55 +02006315 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_sleep_yield, wakeup_ms, 0));
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01006316 return 0;
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01006317}
6318
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01006319__LJMP static int hlua_msleep(lua_State *L)
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01006320{
6321 unsigned int delay;
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01006322 unsigned int wakeup_ms;
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01006323
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01006324 MAY_LJMP(check_args(L, 1, "msleep"));
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01006325
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01006326 delay = MAY_LJMP(luaL_checkinteger(L, 1));
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01006327 wakeup_ms = tick_add(now_ms, delay);
6328 lua_pushinteger(L, wakeup_ms);
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01006329
Willy Tarreau9635e032018-10-16 17:52:55 +02006330 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_sleep_yield, wakeup_ms, 0));
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01006331 return 0;
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01006332}
6333
Thierry FOURNIER13416fe2015-02-17 15:01:59 +01006334/* This functionis an LUA binding. it permits to give back
6335 * the hand at the HAProxy scheduler. It is used when the
6336 * LUA processing consumes a lot of time.
6337 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01006338__LJMP static int hlua_yield_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01006339{
6340 return 0;
6341}
6342
Thierry FOURNIER13416fe2015-02-17 15:01:59 +01006343__LJMP static int hlua_yield(lua_State *L)
6344{
Willy Tarreau9635e032018-10-16 17:52:55 +02006345 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_yield_yield, TICK_ETERNITY, HLUA_CTRLYIELD));
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01006346 return 0;
Thierry FOURNIER13416fe2015-02-17 15:01:59 +01006347}
6348
Thierry FOURNIER37196f42015-02-16 19:34:56 +01006349/* This function change the nice of the currently executed
6350 * task. It is used set low or high priority at the current
6351 * task.
6352 */
Willy Tarreau59551662015-03-10 14:23:13 +01006353__LJMP static int hlua_set_nice(lua_State *L)
Thierry FOURNIER37196f42015-02-16 19:34:56 +01006354{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01006355 struct hlua *hlua;
6356 int nice;
Thierry FOURNIER37196f42015-02-16 19:34:56 +01006357
Willy Tarreau80f5fae2015-02-27 16:38:20 +01006358 MAY_LJMP(check_args(L, 1, "set_nice"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01006359 nice = MAY_LJMP(luaL_checkinteger(L, 1));
Thierry FOURNIER37196f42015-02-16 19:34:56 +01006360
Thierry Fournier4234dbd2020-11-28 13:18:23 +01006361 /* Get hlua struct, or NULL if we execute from main lua state */
6362 hlua = hlua_gethlua(L);
6363
6364 /* If the task is not set, I'm in a start mode. */
Thierry FOURNIER37196f42015-02-16 19:34:56 +01006365 if (!hlua || !hlua->task)
6366 return 0;
6367
6368 if (nice < -1024)
6369 nice = -1024;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01006370 else if (nice > 1024)
Thierry FOURNIER37196f42015-02-16 19:34:56 +01006371 nice = 1024;
6372
6373 hlua->task->nice = nice;
6374 return 0;
6375}
6376
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08006377/* This function is used as a callback of a task. It is called by the
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006378 * HAProxy task subsystem when the task is awaked. The LUA runtime can
6379 * return an E_AGAIN signal, the emmiter of this signal must set a
6380 * signal to wake the task.
Thierry FOURNIERbabae282015-09-17 11:36:37 +02006381 *
6382 * Task wrapper are longjmp safe because the only one Lua code
6383 * executed is the safe hlua_ctx_resume();
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006384 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01006385struct task *hlua_process_task(struct task *task, void *context, unsigned int state)
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006386{
Olivier Houchard9f6af332018-05-25 14:04:04 +02006387 struct hlua *hlua = context;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006388 enum hlua_exec status;
6389
Christopher Faulet5bc99722018-04-25 10:34:45 +02006390 if (task->thread_mask == MAX_THREADS_MASK)
6391 task_set_affinity(task, tid_bit);
6392
Thierry FOURNIERbd413492015-03-03 16:52:26 +01006393 /* If it is the first call to the task, we must initialize the
6394 * execution timeouts.
6395 */
6396 if (!HLUA_IS_RUNNING(hlua))
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02006397 hlua->max_time = hlua_timeout_task;
Thierry FOURNIERbd413492015-03-03 16:52:26 +01006398
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006399 /* Execute the Lua code. */
6400 status = hlua_ctx_resume(hlua, 1);
6401
6402 switch (status) {
6403 /* finished or yield */
6404 case HLUA_E_OK:
6405 hlua_ctx_destroy(hlua);
Olivier Houchard3f795f72019-04-17 22:51:06 +02006406 task_destroy(task);
Tim Duesterhuscd235c62018-04-24 13:56:01 +02006407 task = NULL;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006408 break;
6409
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01006410 case HLUA_E_AGAIN: /* co process or timeout wake me later. */
Thierry FOURNIERcb146882017-12-10 17:10:57 +01006411 notification_gc(&hlua->com);
PiBa-NLfe971b32018-05-02 22:27:14 +02006412 task->expire = hlua->wake_time;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006413 break;
6414
6415 /* finished with error. */
6416 case HLUA_E_ERRMSG:
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006417 SEND_ERR(NULL, "Lua task: %s.\n", lua_tostring(hlua->T, -1));
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006418 hlua_ctx_destroy(hlua);
Olivier Houchard3f795f72019-04-17 22:51:06 +02006419 task_destroy(task);
Emeric Brun253e53e2017-10-17 18:58:40 +02006420 task = NULL;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006421 break;
6422
6423 case HLUA_E_ERR:
6424 default:
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006425 SEND_ERR(NULL, "Lua task: unknown error.\n");
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006426 hlua_ctx_destroy(hlua);
Olivier Houchard3f795f72019-04-17 22:51:06 +02006427 task_destroy(task);
Emeric Brun253e53e2017-10-17 18:58:40 +02006428 task = NULL;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006429 break;
6430 }
Emeric Brun253e53e2017-10-17 18:58:40 +02006431 return task;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006432}
6433
Aurelien DARRAGON4a7a5d82023-08-09 14:56:19 +02006434/* Helper function to prepare the lua ctx for a given stream
6435 *
Aurelien DARRAGON16226c82023-08-09 15:19:56 +02006436 * ctx will be enforced in <state_id> parent stack on initial creation.
6437 * If s->hlua->state_id differs from <state_id>, which may happen at
6438 * runtime since existing stream hlua ctx will be reused for other
6439 * "independent" (but stream-related) lua executions, hlua will be
6440 * recreated with the expected state id.
Aurelien DARRAGON4a7a5d82023-08-09 14:56:19 +02006441 *
6442 * Returns 1 for success and 0 for failure
6443 */
6444static int hlua_stream_ctx_prepare(struct stream *s, int state_id)
6445{
6446 /* In the execution wrappers linked with a stream, the
6447 * Lua context can be not initialized. This behavior
6448 * permits to save performances because a systematic
6449 * Lua initialization cause 5% performances loss.
6450 */
Aurelien DARRAGON16226c82023-08-09 15:19:56 +02006451 ctx_renew:
Aurelien DARRAGON4a7a5d82023-08-09 14:56:19 +02006452 if (!s->hlua) {
6453 struct hlua *hlua;
6454
6455 hlua = pool_alloc(pool_head_hlua);
6456 if (!hlua)
6457 return 0;
6458 HLUA_INIT(hlua);
6459 if (!hlua_ctx_init(hlua, state_id, s->task)) {
6460 pool_free(pool_head_hlua, hlua);
6461 return 0;
6462 }
6463 s->hlua = hlua;
6464 }
Aurelien DARRAGON16226c82023-08-09 15:19:56 +02006465 else if (s->hlua->state_id != state_id) {
6466 /* ctx already created, but not in proper state.
6467 * It should only happen after the previous execution is
6468 * finished, otherwise it's probably a bug since we don't
6469 * want to abort unfinished job..
6470 */
6471 BUG_ON(HLUA_IS_RUNNING(s->hlua));
6472 hlua_ctx_destroy(s->hlua);
6473 s->hlua = NULL;
6474 goto ctx_renew;
6475 }
Aurelien DARRAGON4a7a5d82023-08-09 14:56:19 +02006476 return 1;
6477}
6478
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01006479/* This function is an LUA binding that register LUA function to be
6480 * executed after the HAProxy configuration parsing and before the
6481 * HAProxy scheduler starts. This function expect only one LUA
6482 * argument that is a function. This function returns nothing, but
6483 * throws if an error is encountered.
6484 */
6485__LJMP static int hlua_register_init(lua_State *L)
6486{
6487 struct hlua_init_function *init;
6488 int ref;
6489
6490 MAY_LJMP(check_args(L, 1, "register_init"));
6491
Aurelien DARRAGON8985ab82023-02-24 09:43:54 +01006492 if (hlua_gethlua(L)) {
6493 /* runtime processing */
6494 WILL_LJMP(luaL_error(L, "register_init: not available outside of body context"));
6495 }
6496
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01006497 ref = MAY_LJMP(hlua_checkfunction(L, 1));
6498
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02006499 init = calloc(1, sizeof(*init));
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01006500 if (!init)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01006501 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01006502
6503 init->function_ref = ref;
Willy Tarreau2b718102021-04-21 07:32:39 +02006504 LIST_APPEND(&hlua_init_functions[hlua_state_id], &init->l);
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01006505 return 0;
6506}
6507
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006508/* This functio is an LUA binding. It permits to register a task
6509 * executed in parallel of the main HAroxy activity. The task is
6510 * created and it is set in the HAProxy scheduler. It can be called
6511 * from the "init" section, "post init" or during the runtime.
6512 *
6513 * Lua prototype:
6514 *
6515 * <none> core.register_task(<function>)
6516 */
6517static int hlua_register_task(lua_State *L)
6518{
Christopher Faulet5294ec02021-04-12 12:24:47 +02006519 struct hlua *hlua = NULL;
6520 struct task *task = NULL;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006521 int ref;
Thierry Fournier021d9862020-11-28 23:42:03 +01006522 int state_id;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006523
6524 MAY_LJMP(check_args(L, 1, "register_task"));
6525
6526 ref = MAY_LJMP(hlua_checkfunction(L, 1));
6527
Thierry Fournier75fc0292020-11-28 13:18:56 +01006528 /* Get the reference state. If the reference is NULL, L is the master
6529 * state, otherwise hlua->T is.
6530 */
6531 hlua = hlua_gethlua(L);
6532 if (hlua)
Thierry Fournier021d9862020-11-28 23:42:03 +01006533 /* we are in runtime processing */
6534 state_id = hlua->state_id;
Thierry Fournier75fc0292020-11-28 13:18:56 +01006535 else
Thierry Fournier021d9862020-11-28 23:42:03 +01006536 /* we are in initialization mode */
Thierry Fournierc7492592020-11-28 23:57:24 +01006537 state_id = hlua_state_id;
Thierry Fournier75fc0292020-11-28 13:18:56 +01006538
Willy Tarreaubafbe012017-11-24 17:34:44 +01006539 hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006540 if (!hlua)
Christopher Faulet5294ec02021-04-12 12:24:47 +02006541 goto alloc_error;
Christopher Faulet1e8433f2021-03-24 15:03:01 +01006542 HLUA_INIT(hlua);
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006543
Thierry Fournier59f11be2020-11-29 00:37:41 +01006544 /* We are in the common lua state, execute the task anywhere,
6545 * otherwise, inherit the current thread identifier
6546 */
6547 if (state_id == 0)
6548 task = task_new(MAX_THREADS_MASK);
6549 else
6550 task = task_new(tid_bit);
Willy Tarreaue09101e2018-10-16 17:37:12 +02006551 if (!task)
Christopher Faulet5294ec02021-04-12 12:24:47 +02006552 goto alloc_error;
Willy Tarreaue09101e2018-10-16 17:37:12 +02006553
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006554 task->context = hlua;
6555 task->process = hlua_process_task;
6556
Aurelien DARRAGON5483bde2023-03-21 14:02:16 +01006557 if (!hlua_ctx_init(hlua, state_id, task))
Christopher Faulet5294ec02021-04-12 12:24:47 +02006558 goto alloc_error;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006559
6560 /* Restore the function in the stack. */
6561 lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, ref);
Aurelien DARRAGONb6aade32023-03-13 14:09:21 +01006562 /* function ref not needed anymore since it was pushed to the substack */
6563 hlua_unref(L, ref);
6564
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006565 hlua->nargs = 0;
6566
6567 /* Schedule task. */
Willy Tarreau790810f2021-09-30 16:17:37 +02006568 task_wakeup(task, TASK_WOKEN_INIT);
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006569
6570 return 0;
Christopher Faulet5294ec02021-04-12 12:24:47 +02006571
6572 alloc_error:
6573 task_destroy(task);
6574 hlua_ctx_destroy(hlua);
6575 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
6576 return 0; /* Never reached */
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006577}
6578
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006579/* Wrapper called by HAProxy to execute an LUA converter. This wrapper
6580 * doesn't allow "yield" functions because the HAProxy engine cannot
6581 * resume converters.
6582 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02006583static int hlua_sample_conv_wrapper(const struct arg *arg_p, struct sample *smp, void *private)
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006584{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02006585 struct hlua_function *fcn = private;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02006586 struct stream *stream = smp->strm;
Thierry Fournierfd107a22016-02-19 19:57:23 +01006587 const char *error;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006588
Willy Tarreaube508f12016-03-10 11:47:01 +01006589 if (!stream)
6590 return 0;
6591
Aurelien DARRAGON4a7a5d82023-08-09 14:56:19 +02006592 if (!hlua_stream_ctx_prepare(stream, fcn_ref_to_stack_id(fcn))) {
6593 SEND_ERR(stream->be, "Lua converter '%s': can't initialize Lua context.\n", fcn->name);
6594 return 0;
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01006595 }
6596
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006597 /* If it is the first run, initialize the data for the call. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006598 if (!HLUA_IS_RUNNING(stream->hlua)) {
Thierry FOURNIERbabae282015-09-17 11:36:37 +02006599
6600 /* The following Lua calls can fail. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01006601 if (!SET_SAFE_LJMP(stream->hlua)) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006602 if (lua_type(stream->hlua->T, -1) == LUA_TSTRING)
6603 error = lua_tostring(stream->hlua->T, -1);
Thierry Fournierfd107a22016-02-19 19:57:23 +01006604 else
6605 error = "critical error";
6606 SEND_ERR(stream->be, "Lua converter '%s': %s.\n", fcn->name, error);
Thierry FOURNIERbabae282015-09-17 11:36:37 +02006607 return 0;
6608 }
6609
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006610 /* Check stack available size. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006611 if (!lua_checkstack(stream->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006612 SEND_ERR(stream->be, "Lua converter '%s': full stack.\n", fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01006613 RESET_SAFE_LJMP(stream->hlua);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006614 return 0;
6615 }
6616
6617 /* Restore the function in the stack. */
Thierry Fournierc7492592020-11-28 23:57:24 +01006618 lua_rawgeti(stream->hlua->T, LUA_REGISTRYINDEX, fcn->function_ref[stream->hlua->state_id]);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006619
6620 /* convert input sample and pust-it in the stack. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006621 if (!lua_checkstack(stream->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006622 SEND_ERR(stream->be, "Lua converter '%s': full stack.\n", fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01006623 RESET_SAFE_LJMP(stream->hlua);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006624 return 0;
6625 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006626 hlua_smp2lua(stream->hlua->T, smp);
6627 stream->hlua->nargs = 1;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006628
6629 /* push keywords in the stack. */
6630 if (arg_p) {
6631 for (; arg_p->type != ARGT_STOP; arg_p++) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006632 if (!lua_checkstack(stream->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006633 SEND_ERR(stream->be, "Lua converter '%s': full stack.\n", fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01006634 RESET_SAFE_LJMP(stream->hlua);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006635 return 0;
6636 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006637 hlua_arg2lua(stream->hlua->T, arg_p);
6638 stream->hlua->nargs++;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006639 }
6640 }
6641
Thierry FOURNIERbd413492015-03-03 16:52:26 +01006642 /* We must initialize the execution timeouts. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006643 stream->hlua->max_time = hlua_timeout_session;
Thierry FOURNIERbd413492015-03-03 16:52:26 +01006644
Thierry FOURNIERbabae282015-09-17 11:36:37 +02006645 /* At this point the execution is safe. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01006646 RESET_SAFE_LJMP(stream->hlua);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006647 }
6648
6649 /* Execute the function. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006650 switch (hlua_ctx_resume(stream->hlua, 0)) {
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006651 /* finished. */
6652 case HLUA_E_OK:
Thierry FOURNIERfd80df12017-05-12 16:32:20 +02006653 /* If the stack is empty, the function fails. */
6654 if (lua_gettop(stream->hlua->T) <= 0)
6655 return 0;
6656
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006657 /* Convert the returned value in sample. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006658 hlua_lua2smp(stream->hlua->T, -1, smp);
Aurelien DARRAGONd39fb742023-05-17 16:06:11 +02006659 /* dup the smp before popping the related lua value and
6660 * returning it to haproxy
6661 */
6662 smp_dup(smp);
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006663 lua_pop(stream->hlua->T, 1);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006664 return 1;
6665
6666 /* yield. */
6667 case HLUA_E_AGAIN:
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006668 SEND_ERR(stream->be, "Lua converter '%s': cannot use yielded functions.\n", fcn->name);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006669 return 0;
6670
6671 /* finished with error. */
6672 case HLUA_E_ERRMSG:
6673 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006674 SEND_ERR(stream->be, "Lua converter '%s': %s.\n",
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006675 fcn->name, lua_tostring(stream->hlua->T, -1));
6676 lua_pop(stream->hlua->T, 1);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006677 return 0;
6678
Thierry Fournierd5b073c2018-05-21 19:42:47 +02006679 case HLUA_E_ETMOUT:
6680 SEND_ERR(stream->be, "Lua converter '%s': execution timeout.\n", fcn->name);
6681 return 0;
6682
6683 case HLUA_E_NOMEM:
6684 SEND_ERR(stream->be, "Lua converter '%s': out of memory error.\n", fcn->name);
6685 return 0;
6686
6687 case HLUA_E_YIELD:
6688 SEND_ERR(stream->be, "Lua converter '%s': yield functions like core.tcp() or core.sleep() are not allowed.\n", fcn->name);
6689 return 0;
6690
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006691 case HLUA_E_ERR:
6692 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006693 SEND_ERR(stream->be, "Lua converter '%s' returns an unknown error.\n", fcn->name);
Tim Duesterhus588b3142020-05-29 14:35:51 +02006694 /* fall through */
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006695
6696 default:
6697 return 0;
6698 }
6699}
6700
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006701/* Wrapper called by HAProxy to execute a sample-fetch. this wrapper
6702 * doesn't allow "yield" functions because the HAProxy engine cannot
Willy Tarreaube508f12016-03-10 11:47:01 +01006703 * resume sample-fetches. This function will be called by the sample
6704 * fetch engine to call lua-based fetch operations.
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006705 */
Thierry FOURNIER0786d052015-05-11 15:42:45 +02006706static int hlua_sample_fetch_wrapper(const struct arg *arg_p, struct sample *smp,
6707 const char *kw, void *private)
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006708{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02006709 struct hlua_function *fcn = private;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02006710 struct stream *stream = smp->strm;
Thierry Fournierfd107a22016-02-19 19:57:23 +01006711 const char *error;
Christopher Fauletbfab2dd2019-07-26 15:09:53 +02006712 unsigned int hflags = HLUA_TXN_NOTERM;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006713
Willy Tarreaube508f12016-03-10 11:47:01 +01006714 if (!stream)
6715 return 0;
Christopher Fauletafd8f102018-11-08 11:34:21 +01006716
Aurelien DARRAGON4a7a5d82023-08-09 14:56:19 +02006717 if (!hlua_stream_ctx_prepare(stream, fcn_ref_to_stack_id(fcn))) {
6718 SEND_ERR(stream->be, "Lua sample-fetch '%s': can't initialize Lua context.\n", fcn->name);
6719 return 0;
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01006720 }
6721
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006722 /* If it is the first run, initialize the data for the call. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006723 if (!HLUA_IS_RUNNING(stream->hlua)) {
Thierry FOURNIERbabae282015-09-17 11:36:37 +02006724
6725 /* The following Lua calls can fail. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01006726 if (!SET_SAFE_LJMP(stream->hlua)) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006727 if (lua_type(stream->hlua->T, -1) == LUA_TSTRING)
6728 error = lua_tostring(stream->hlua->T, -1);
Thierry Fournierfd107a22016-02-19 19:57:23 +01006729 else
6730 error = "critical error";
6731 SEND_ERR(smp->px, "Lua sample-fetch '%s': %s.\n", fcn->name, error);
Thierry FOURNIERbabae282015-09-17 11:36:37 +02006732 return 0;
6733 }
6734
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006735 /* Check stack available size. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006736 if (!lua_checkstack(stream->hlua->T, 2)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006737 SEND_ERR(smp->px, "Lua sample-fetch '%s': full stack.\n", fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01006738 RESET_SAFE_LJMP(stream->hlua);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006739 return 0;
6740 }
6741
6742 /* Restore the function in the stack. */
Thierry Fournierc7492592020-11-28 23:57:24 +01006743 lua_rawgeti(stream->hlua->T, LUA_REGISTRYINDEX, fcn->function_ref[stream->hlua->state_id]);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006744
6745 /* push arguments in the stack. */
Christopher Fauletbfab2dd2019-07-26 15:09:53 +02006746 if (!hlua_txn_new(stream->hlua->T, stream, smp->px, smp->opt & SMP_OPT_DIR, hflags)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006747 SEND_ERR(smp->px, "Lua sample-fetch '%s': full stack.\n", fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01006748 RESET_SAFE_LJMP(stream->hlua);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006749 return 0;
6750 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006751 stream->hlua->nargs = 1;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006752
6753 /* push keywords in the stack. */
6754 for (; arg_p && arg_p->type != ARGT_STOP; arg_p++) {
6755 /* Check stack available size. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006756 if (!lua_checkstack(stream->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006757 SEND_ERR(smp->px, "Lua sample-fetch '%s': full stack.\n", fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01006758 RESET_SAFE_LJMP(stream->hlua);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006759 return 0;
6760 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006761 hlua_arg2lua(stream->hlua->T, arg_p);
6762 stream->hlua->nargs++;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006763 }
6764
Thierry FOURNIERbd413492015-03-03 16:52:26 +01006765 /* We must initialize the execution timeouts. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006766 stream->hlua->max_time = hlua_timeout_session;
Thierry FOURNIERbd413492015-03-03 16:52:26 +01006767
Thierry FOURNIERbabae282015-09-17 11:36:37 +02006768 /* At this point the execution is safe. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01006769 RESET_SAFE_LJMP(stream->hlua);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006770 }
6771
6772 /* Execute the function. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006773 switch (hlua_ctx_resume(stream->hlua, 0)) {
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006774 /* finished. */
6775 case HLUA_E_OK:
Thierry FOURNIERfd80df12017-05-12 16:32:20 +02006776 /* If the stack is empty, the function fails. */
6777 if (lua_gettop(stream->hlua->T) <= 0)
6778 return 0;
6779
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006780 /* Convert the returned value in sample. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006781 hlua_lua2smp(stream->hlua->T, -1, smp);
Aurelien DARRAGONd39fb742023-05-17 16:06:11 +02006782 /* dup the smp before popping the related lua value and
6783 * returning it to haproxy
6784 */
6785 smp_dup(smp);
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006786 lua_pop(stream->hlua->T, 1);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006787
6788 /* Set the end of execution flag. */
6789 smp->flags &= ~SMP_F_MAY_CHANGE;
6790 return 1;
6791
6792 /* yield. */
6793 case HLUA_E_AGAIN:
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006794 SEND_ERR(smp->px, "Lua sample-fetch '%s': cannot use yielded functions.\n", fcn->name);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006795 return 0;
6796
6797 /* finished with error. */
6798 case HLUA_E_ERRMSG:
6799 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006800 SEND_ERR(smp->px, "Lua sample-fetch '%s': %s.\n",
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006801 fcn->name, lua_tostring(stream->hlua->T, -1));
6802 lua_pop(stream->hlua->T, 1);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006803 return 0;
6804
Thierry Fournierd5b073c2018-05-21 19:42:47 +02006805 case HLUA_E_ETMOUT:
Thierry Fournierd5b073c2018-05-21 19:42:47 +02006806 SEND_ERR(smp->px, "Lua sample-fetch '%s': execution timeout.\n", fcn->name);
6807 return 0;
6808
6809 case HLUA_E_NOMEM:
Thierry Fournierd5b073c2018-05-21 19:42:47 +02006810 SEND_ERR(smp->px, "Lua sample-fetch '%s': out of memory error.\n", fcn->name);
6811 return 0;
6812
6813 case HLUA_E_YIELD:
Thierry Fournierd5b073c2018-05-21 19:42:47 +02006814 SEND_ERR(smp->px, "Lua sample-fetch '%s': yield not allowed.\n", fcn->name);
6815 return 0;
6816
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006817 case HLUA_E_ERR:
6818 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006819 SEND_ERR(smp->px, "Lua sample-fetch '%s' returns an unknown error.\n", fcn->name);
Tim Duesterhus588b3142020-05-29 14:35:51 +02006820 /* fall through */
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006821
6822 default:
6823 return 0;
6824 }
6825}
6826
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006827/* This function is an LUA binding used for registering
6828 * "sample-conv" functions. It expects a converter name used
6829 * in the haproxy configuration file, and an LUA function.
6830 */
6831__LJMP static int hlua_register_converters(lua_State *L)
6832{
6833 struct sample_conv_kw_list *sck;
6834 const char *name;
6835 int ref;
6836 int len;
Christopher Fauletaa224302021-04-12 14:08:21 +02006837 struct hlua_function *fcn = NULL;
Thierry Fournierf67442e2020-11-28 20:41:07 +01006838 struct sample_conv *sc;
6839 struct buffer *trash;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006840
6841 MAY_LJMP(check_args(L, 2, "register_converters"));
6842
Aurelien DARRAGON8985ab82023-02-24 09:43:54 +01006843 if (hlua_gethlua(L)) {
6844 /* runtime processing */
6845 WILL_LJMP(luaL_error(L, "register_converters: not available outside of body context"));
6846 }
6847
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006848 /* First argument : converter name. */
6849 name = MAY_LJMP(luaL_checkstring(L, 1));
6850
6851 /* Second argument : lua function. */
6852 ref = MAY_LJMP(hlua_checkfunction(L, 2));
6853
Thierry Fournierf67442e2020-11-28 20:41:07 +01006854 /* Check if the converter is already registered */
6855 trash = get_trash_chunk();
6856 chunk_printf(trash, "lua.%s", name);
6857 sc = find_sample_conv(trash->area, trash->data);
6858 if (sc != NULL) {
Thierry Fournier59f11be2020-11-29 00:37:41 +01006859 fcn = sc->private;
6860 if (fcn->function_ref[hlua_state_id] != -1) {
6861 ha_warning("Trying to register converter 'lua.%s' more than once. "
6862 "This will become a hard error in version 2.5.\n", name);
6863 }
6864 fcn->function_ref[hlua_state_id] = ref;
6865 return 0;
Thierry Fournierf67442e2020-11-28 20:41:07 +01006866 }
6867
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006868 /* Allocate and fill the sample fetch keyword struct. */
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02006869 sck = calloc(1, sizeof(*sck) + sizeof(struct sample_conv) * 2);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006870 if (!sck)
Christopher Fauletaa224302021-04-12 14:08:21 +02006871 goto alloc_error;
Thierry Fournier62a22aa2020-11-28 21:06:35 +01006872 fcn = new_hlua_function();
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006873 if (!fcn)
Christopher Fauletaa224302021-04-12 14:08:21 +02006874 goto alloc_error;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006875
6876 /* Fill fcn. */
6877 fcn->name = strdup(name);
6878 if (!fcn->name)
Christopher Fauletaa224302021-04-12 14:08:21 +02006879 goto alloc_error;
Thierry Fournierc7492592020-11-28 23:57:24 +01006880 fcn->function_ref[hlua_state_id] = ref;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006881
6882 /* List head */
6883 sck->list.n = sck->list.p = NULL;
6884
6885 /* converter keyword. */
6886 len = strlen("lua.") + strlen(name) + 1;
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02006887 sck->kw[0].kw = calloc(1, len);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006888 if (!sck->kw[0].kw)
Christopher Fauletaa224302021-04-12 14:08:21 +02006889 goto alloc_error;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006890
6891 snprintf((char *)sck->kw[0].kw, len, "lua.%s", name);
6892 sck->kw[0].process = hlua_sample_conv_wrapper;
David Carlier0c437f42016-04-27 16:21:56 +01006893 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 +01006894 sck->kw[0].val_args = NULL;
6895 sck->kw[0].in_type = SMP_T_STR;
6896 sck->kw[0].out_type = SMP_T_STR;
6897 sck->kw[0].private = fcn;
6898
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006899 /* Register this new converter */
6900 sample_register_convs(sck);
6901
6902 return 0;
Christopher Fauletaa224302021-04-12 14:08:21 +02006903
6904 alloc_error:
6905 release_hlua_function(fcn);
6906 ha_free(&sck);
6907 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
6908 return 0; /* Never reached */
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006909}
6910
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08006911/* This function is an LUA binding used for registering
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006912 * "sample-fetch" functions. It expects a converter name used
6913 * in the haproxy configuration file, and an LUA function.
6914 */
6915__LJMP static int hlua_register_fetches(lua_State *L)
6916{
6917 const char *name;
6918 int ref;
6919 int len;
6920 struct sample_fetch_kw_list *sfk;
Christopher Faulet2567f182021-04-12 14:11:50 +02006921 struct hlua_function *fcn = NULL;
Thierry Fournierf67442e2020-11-28 20:41:07 +01006922 struct sample_fetch *sf;
6923 struct buffer *trash;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006924
6925 MAY_LJMP(check_args(L, 2, "register_fetches"));
6926
Aurelien DARRAGON8985ab82023-02-24 09:43:54 +01006927 if (hlua_gethlua(L)) {
6928 /* runtime processing */
6929 WILL_LJMP(luaL_error(L, "register_fetches: not available outside of body context"));
6930 }
6931
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006932 /* First argument : sample-fetch name. */
6933 name = MAY_LJMP(luaL_checkstring(L, 1));
6934
6935 /* Second argument : lua function. */
6936 ref = MAY_LJMP(hlua_checkfunction(L, 2));
6937
Thierry Fournierf67442e2020-11-28 20:41:07 +01006938 /* Check if the sample-fetch is already registered */
6939 trash = get_trash_chunk();
6940 chunk_printf(trash, "lua.%s", name);
6941 sf = find_sample_fetch(trash->area, trash->data);
6942 if (sf != NULL) {
Thierry Fournier59f11be2020-11-29 00:37:41 +01006943 fcn = sf->private;
6944 if (fcn->function_ref[hlua_state_id] != -1) {
6945 ha_warning("Trying to register sample-fetch 'lua.%s' more than once. "
6946 "This will become a hard error in version 2.5.\n", name);
6947 }
6948 fcn->function_ref[hlua_state_id] = ref;
6949 return 0;
Thierry Fournierf67442e2020-11-28 20:41:07 +01006950 }
6951
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006952 /* Allocate and fill the sample fetch keyword struct. */
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02006953 sfk = calloc(1, sizeof(*sfk) + sizeof(struct sample_fetch) * 2);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006954 if (!sfk)
Christopher Faulet2567f182021-04-12 14:11:50 +02006955 goto alloc_error;
Thierry Fournier62a22aa2020-11-28 21:06:35 +01006956 fcn = new_hlua_function();
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006957 if (!fcn)
Christopher Faulet2567f182021-04-12 14:11:50 +02006958 goto alloc_error;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006959
6960 /* Fill fcn. */
6961 fcn->name = strdup(name);
6962 if (!fcn->name)
Christopher Faulet2567f182021-04-12 14:11:50 +02006963 goto alloc_error;
Thierry Fournierc7492592020-11-28 23:57:24 +01006964 fcn->function_ref[hlua_state_id] = ref;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006965
6966 /* List head */
6967 sfk->list.n = sfk->list.p = NULL;
6968
6969 /* sample-fetch keyword. */
6970 len = strlen("lua.") + strlen(name) + 1;
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02006971 sfk->kw[0].kw = calloc(1, len);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006972 if (!sfk->kw[0].kw)
Christopher Faulet2567f182021-04-12 14:11:50 +02006973 goto alloc_error;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006974
6975 snprintf((char *)sfk->kw[0].kw, len, "lua.%s", name);
6976 sfk->kw[0].process = hlua_sample_fetch_wrapper;
David Carlier0c437f42016-04-27 16:21:56 +01006977 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 +01006978 sfk->kw[0].val_args = NULL;
6979 sfk->kw[0].out_type = SMP_T_STR;
6980 sfk->kw[0].use = SMP_USE_HTTP_ANY;
6981 sfk->kw[0].val = 0;
6982 sfk->kw[0].private = fcn;
6983
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006984 /* Register this new fetch. */
6985 sample_register_fetches(sfk);
6986
6987 return 0;
Christopher Faulet2567f182021-04-12 14:11:50 +02006988
6989 alloc_error:
6990 release_hlua_function(fcn);
6991 ha_free(&sfk);
6992 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
6993 return 0; /* Never reached */
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006994}
6995
Christopher Faulet501465d2020-02-26 14:54:16 +01006996/* This function is a lua binding to set the wake_time.
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01006997 */
Christopher Faulet501465d2020-02-26 14:54:16 +01006998__LJMP static int hlua_set_wake_time(lua_State *L)
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01006999{
Thierry Fournier4234dbd2020-11-28 13:18:23 +01007000 struct hlua *hlua;
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01007001 unsigned int delay;
7002 unsigned int wakeup_ms;
7003
Thierry Fournier4234dbd2020-11-28 13:18:23 +01007004 /* Get hlua struct, or NULL if we execute from main lua state */
7005 hlua = hlua_gethlua(L);
7006 if (!hlua) {
7007 return 0;
7008 }
7009
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01007010 MAY_LJMP(check_args(L, 1, "wake_time"));
7011
7012 delay = MAY_LJMP(luaL_checkinteger(L, 1));
7013 wakeup_ms = tick_add(now_ms, delay);
7014 hlua->wake_time = wakeup_ms;
7015 return 0;
7016}
7017
Christopher Faulet7716cdf2020-01-29 11:53:30 +01007018/* This function is a wrapper to execute each LUA function declared as an action
7019 * wrapper during the initialisation period. This function may return any
7020 * ACT_RET_* value. On error ACT_RET_CONT is returned and the action is
7021 * ignored. If the lua action yields, ACT_RET_YIELD is returned. On success, the
7022 * return value is the first element on the stack.
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007023 */
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007024static enum act_return hlua_action(struct act_rule *rule, struct proxy *px,
Willy Tarreau658b85b2015-09-27 10:00:49 +02007025 struct session *sess, struct stream *s, int flags)
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007026{
7027 char **arg;
Christopher Fauletbfab2dd2019-07-26 15:09:53 +02007028 unsigned int hflags = 0;
Christopher Faulet7716cdf2020-01-29 11:53:30 +01007029 int dir, act_ret = ACT_RET_CONT;
Thierry Fournierfd107a22016-02-19 19:57:23 +01007030 const char *error;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007031
7032 switch (rule->from) {
Christopher Fauletd8f0e072020-02-25 09:45:51 +01007033 case ACT_F_TCP_REQ_CNT: dir = SMP_OPT_DIR_REQ; break;
7034 case ACT_F_TCP_RES_CNT: dir = SMP_OPT_DIR_RES; break;
7035 case ACT_F_HTTP_REQ: dir = SMP_OPT_DIR_REQ; break;
7036 case ACT_F_HTTP_RES: dir = SMP_OPT_DIR_RES; break;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007037 default:
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02007038 SEND_ERR(px, "Lua: internal error while execute action.\n");
Christopher Faulet7716cdf2020-01-29 11:53:30 +01007039 goto end;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007040 }
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007041
Aurelien DARRAGON4a7a5d82023-08-09 14:56:19 +02007042 if (!hlua_stream_ctx_prepare(s, fcn_ref_to_stack_id(rule->arg.hlua_rule->fcn))) {
7043 SEND_ERR(px, "Lua action '%s': can't initialize Lua context.\n",
7044 rule->arg.hlua_rule->fcn->name);
7045 goto end;
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01007046 }
7047
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007048 /* If it is the first run, initialize the data for the call. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01007049 if (!HLUA_IS_RUNNING(s->hlua)) {
Thierry FOURNIERbabae282015-09-17 11:36:37 +02007050
7051 /* The following Lua calls can fail. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01007052 if (!SET_SAFE_LJMP(s->hlua)) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01007053 if (lua_type(s->hlua->T, -1) == LUA_TSTRING)
7054 error = lua_tostring(s->hlua->T, -1);
Thierry Fournierfd107a22016-02-19 19:57:23 +01007055 else
7056 error = "critical error";
7057 SEND_ERR(px, "Lua function '%s': %s.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007058 rule->arg.hlua_rule->fcn->name, error);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01007059 goto end;
Thierry FOURNIERbabae282015-09-17 11:36:37 +02007060 }
7061
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007062 /* Check stack available size. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01007063 if (!lua_checkstack(s->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02007064 SEND_ERR(px, "Lua function '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007065 rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01007066 RESET_SAFE_LJMP(s->hlua);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01007067 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007068 }
7069
7070 /* Restore the function in the stack. */
Thierry Fournierc7492592020-11-28 23:57:24 +01007071 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 +01007072
Willy Tarreau87b09662015-04-03 00:22:06 +02007073 /* Create and and push object stream in the stack. */
Christopher Fauletbfab2dd2019-07-26 15:09:53 +02007074 if (!hlua_txn_new(s->hlua->T, s, px, dir, hflags)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02007075 SEND_ERR(px, "Lua function '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007076 rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01007077 RESET_SAFE_LJMP(s->hlua);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01007078 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007079 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01007080 s->hlua->nargs = 1;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007081
7082 /* push keywords in the stack. */
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007083 for (arg = rule->arg.hlua_rule->args; arg && *arg; arg++) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01007084 if (!lua_checkstack(s->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02007085 SEND_ERR(px, "Lua function '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007086 rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01007087 RESET_SAFE_LJMP(s->hlua);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01007088 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007089 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01007090 lua_pushstring(s->hlua->T, *arg);
7091 s->hlua->nargs++;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007092 }
7093
Thierry FOURNIERbabae282015-09-17 11:36:37 +02007094 /* Now the execution is safe. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01007095 RESET_SAFE_LJMP(s->hlua);
Thierry FOURNIERbabae282015-09-17 11:36:37 +02007096
Thierry FOURNIERbd413492015-03-03 16:52:26 +01007097 /* We must initialize the execution timeouts. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01007098 s->hlua->max_time = hlua_timeout_session;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007099 }
7100
7101 /* Execute the function. */
Christopher Faulet105ba6c2019-12-18 14:41:51 +01007102 switch (hlua_ctx_resume(s->hlua, !(flags & ACT_OPT_FINAL))) {
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007103 /* finished. */
7104 case HLUA_E_OK:
Christopher Faulet7716cdf2020-01-29 11:53:30 +01007105 /* Catch the return value */
7106 if (lua_gettop(s->hlua->T) > 0)
7107 act_ret = lua_tointeger(s->hlua->T, -1);
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007108
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01007109 /* Set timeout in the required channel. */
Christopher Faulet498c4832020-07-28 11:59:58 +02007110 if (act_ret == ACT_RET_YIELD) {
7111 if (flags & ACT_OPT_FINAL)
7112 goto err_yield;
7113
Christopher Faulet8f587ea2020-07-28 12:01:55 +02007114 if (dir == SMP_OPT_DIR_REQ)
7115 s->req.analyse_exp = tick_first((tick_is_expired(s->req.analyse_exp, now_ms) ? 0 : s->req.analyse_exp),
7116 s->hlua->wake_time);
7117 else
7118 s->res.analyse_exp = tick_first((tick_is_expired(s->res.analyse_exp, now_ms) ? 0 : s->res.analyse_exp),
7119 s->hlua->wake_time);
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01007120 }
7121 goto end;
7122
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007123 /* yield. */
7124 case HLUA_E_AGAIN:
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01007125 /* Set timeout in the required channel. */
Christopher Faulet8f587ea2020-07-28 12:01:55 +02007126 if (dir == SMP_OPT_DIR_REQ)
7127 s->req.analyse_exp = tick_first((tick_is_expired(s->req.analyse_exp, now_ms) ? 0 : s->req.analyse_exp),
7128 s->hlua->wake_time);
7129 else
7130 s->res.analyse_exp = tick_first((tick_is_expired(s->res.analyse_exp, now_ms) ? 0 : s->res.analyse_exp),
7131 s->hlua->wake_time);
7132
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007133 /* Some actions can be wake up when a "write" event
7134 * is detected on a response channel. This is useful
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08007135 * only for actions targeted on the requests.
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007136 */
Christopher Faulet51fa3582019-07-26 14:54:52 +02007137 if (HLUA_IS_WAKERESWR(s->hlua))
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01007138 s->res.flags |= CF_WAKE_WRITE;
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01007139 if (HLUA_IS_WAKEREQWR(s->hlua))
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01007140 s->req.flags |= CF_WAKE_WRITE;
Christopher Faulet7716cdf2020-01-29 11:53:30 +01007141 act_ret = ACT_RET_YIELD;
7142 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007143
7144 /* finished with error. */
7145 case HLUA_E_ERRMSG:
7146 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02007147 SEND_ERR(px, "Lua function '%s': %s.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007148 rule->arg.hlua_rule->fcn->name, lua_tostring(s->hlua->T, -1));
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01007149 lua_pop(s->hlua->T, 1);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01007150 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007151
Thierry Fournierd5b073c2018-05-21 19:42:47 +02007152 case HLUA_E_ETMOUT:
Thierry Fournierad5345f2020-11-29 02:05:57 +01007153 SEND_ERR(px, "Lua function '%s': execution timeout.\n", rule->arg.hlua_rule->fcn->name);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01007154 goto end;
Thierry Fournierd5b073c2018-05-21 19:42:47 +02007155
7156 case HLUA_E_NOMEM:
Thierry Fournierad5345f2020-11-29 02:05:57 +01007157 SEND_ERR(px, "Lua function '%s': out of memory error.\n", rule->arg.hlua_rule->fcn->name);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01007158 goto end;
Thierry Fournierd5b073c2018-05-21 19:42:47 +02007159
7160 case HLUA_E_YIELD:
Christopher Faulet498c4832020-07-28 11:59:58 +02007161 err_yield:
7162 act_ret = ACT_RET_CONT;
Aurelien DARRAGON602c4af2023-08-31 21:45:21 +02007163 SEND_ERR(px, "Lua function '%s': yield not allowed.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007164 rule->arg.hlua_rule->fcn->name);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01007165 goto end;
Thierry Fournierd5b073c2018-05-21 19:42:47 +02007166
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007167 case HLUA_E_ERR:
7168 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02007169 SEND_ERR(px, "Lua function '%s' return an unknown error.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007170 rule->arg.hlua_rule->fcn->name);
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007171
7172 default:
Christopher Faulet7716cdf2020-01-29 11:53:30 +01007173 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007174 }
Christopher Faulet7716cdf2020-01-29 11:53:30 +01007175
7176 end:
Christopher Faulet2361fd92020-07-30 10:40:58 +02007177 if (act_ret != ACT_RET_YIELD && s->hlua)
Christopher Faulet8f587ea2020-07-28 12:01:55 +02007178 s->hlua->wake_time = TICK_ETERNITY;
Christopher Faulet7716cdf2020-01-29 11:53:30 +01007179 return act_ret;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007180}
7181
Willy Tarreau144f84a2021-03-02 16:09:26 +01007182struct task *hlua_applet_wakeup(struct task *t, void *context, unsigned int state)
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007183{
Olivier Houchard9f6af332018-05-25 14:04:04 +02007184 struct appctx *ctx = context;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007185
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007186 appctx_wakeup(ctx);
Willy Tarreaud9587412017-08-23 16:07:33 +02007187 t->expire = TICK_ETERNITY;
Willy Tarreaud1aa41f2017-07-21 16:41:56 +02007188 return t;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007189}
7190
7191static int hlua_applet_tcp_init(struct appctx *ctx, struct proxy *px, struct stream *strm)
7192{
7193 struct stream_interface *si = ctx->owner;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007194 struct hlua *hlua;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007195 struct task *task;
7196 char **arg;
Thierry Fournierfd107a22016-02-19 19:57:23 +01007197 const char *error;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007198
Willy Tarreaubafbe012017-11-24 17:34:44 +01007199 hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007200 if (!hlua) {
7201 SEND_ERR(px, "Lua applet tcp '%s': out of memory.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007202 ctx->rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007203 return 0;
7204 }
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007205 HLUA_INIT(hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007206 ctx->ctx.hlua_apptcp.hlua = hlua;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007207 ctx->ctx.hlua_apptcp.flags = 0;
7208
7209 /* Create task used by signal to wakeup applets. */
Willy Tarreau5f4a47b2017-10-31 15:59:32 +01007210 task = task_new(tid_bit);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007211 if (!task) {
7212 SEND_ERR(px, "Lua applet tcp '%s': out of memory.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007213 ctx->rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007214 return 0;
7215 }
7216 task->nice = 0;
7217 task->context = ctx;
7218 task->process = hlua_applet_wakeup;
7219 ctx->ctx.hlua_apptcp.task = task;
7220
7221 /* In the execution wrappers linked with a stream, the
7222 * Lua context can be not initialized. This behavior
7223 * permits to save performances because a systematic
7224 * Lua initialization cause 5% performances loss.
7225 */
Aurelien DARRAGON5483bde2023-03-21 14:02:16 +01007226 if (!hlua_ctx_init(hlua, fcn_ref_to_stack_id(ctx->rule->arg.hlua_rule->fcn), task)) {
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007227 SEND_ERR(px, "Lua applet tcp '%s': can't initialize Lua context.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007228 ctx->rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007229 return 0;
7230 }
7231
7232 /* Set timeout according with the applet configuration. */
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02007233 hlua->max_time = ctx->applet->timeout;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007234
7235 /* The following Lua calls can fail. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01007236 if (!SET_SAFE_LJMP(hlua)) {
Thierry Fournierfd107a22016-02-19 19:57:23 +01007237 if (lua_type(hlua->T, -1) == LUA_TSTRING)
7238 error = lua_tostring(hlua->T, -1);
7239 else
7240 error = "critical error";
7241 SEND_ERR(px, "Lua applet tcp '%s': %s.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007242 ctx->rule->arg.hlua_rule->fcn->name, error);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007243 return 0;
7244 }
7245
7246 /* Check stack available size. */
7247 if (!lua_checkstack(hlua->T, 1)) {
7248 SEND_ERR(px, "Lua applet tcp '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007249 ctx->rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01007250 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007251 return 0;
7252 }
7253
7254 /* Restore the function in the stack. */
Thierry Fournierc7492592020-11-28 23:57:24 +01007255 lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, ctx->rule->arg.hlua_rule->fcn->function_ref[hlua->state_id]);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007256
7257 /* Create and and push object stream in the stack. */
7258 if (!hlua_applet_tcp_new(hlua->T, ctx)) {
7259 SEND_ERR(px, "Lua applet tcp '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007260 ctx->rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01007261 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007262 return 0;
7263 }
7264 hlua->nargs = 1;
7265
7266 /* push keywords in the stack. */
7267 for (arg = ctx->rule->arg.hlua_rule->args; arg && *arg; arg++) {
7268 if (!lua_checkstack(hlua->T, 1)) {
7269 SEND_ERR(px, "Lua applet tcp '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007270 ctx->rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01007271 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007272 return 0;
7273 }
7274 lua_pushstring(hlua->T, *arg);
7275 hlua->nargs++;
7276 }
7277
Thierry Fournier7cbe5042020-11-28 17:02:21 +01007278 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007279
7280 /* Wakeup the applet ASAP. */
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01007281 si_cant_get(si);
Willy Tarreau3367d412018-11-15 10:57:41 +01007282 si_rx_endp_more(si);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007283
7284 return 1;
7285}
7286
Willy Tarreau60409db2019-08-21 14:14:50 +02007287void hlua_applet_tcp_fct(struct appctx *ctx)
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007288{
7289 struct stream_interface *si = ctx->owner;
7290 struct stream *strm = si_strm(si);
7291 struct channel *res = si_ic(si);
7292 struct act_rule *rule = ctx->rule;
7293 struct proxy *px = strm->be;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007294 struct hlua *hlua = ctx->ctx.hlua_apptcp.hlua;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007295
7296 /* The applet execution is already done. */
Olivier Houchard594c8c52018-08-28 14:41:31 +02007297 if (ctx->ctx.hlua_apptcp.flags & APPLET_DONE) {
7298 /* eat the whole request */
7299 co_skip(si_oc(si), co_data(si_oc(si)));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007300 return;
Olivier Houchard594c8c52018-08-28 14:41:31 +02007301 }
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007302
7303 /* If the stream is disconnect or closed, ldo nothing. */
7304 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
7305 return;
7306
7307 /* Execute the function. */
7308 switch (hlua_ctx_resume(hlua, 1)) {
7309 /* finished. */
7310 case HLUA_E_OK:
7311 ctx->ctx.hlua_apptcp.flags |= APPLET_DONE;
7312
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007313 /* eat the whole request */
Willy Tarreaua79021a2018-06-15 18:07:57 +02007314 co_skip(si_oc(si), co_data(si_oc(si)));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007315 res->flags |= CF_READ_NULL;
7316 si_shutr(si);
7317 return;
7318
7319 /* yield. */
7320 case HLUA_E_AGAIN:
Thierry Fournier0164f202016-02-20 17:47:43 +01007321 if (hlua->wake_time != TICK_ETERNITY)
7322 task_schedule(ctx->ctx.hlua_apptcp.task, hlua->wake_time);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007323 return;
7324
7325 /* finished with error. */
7326 case HLUA_E_ERRMSG:
7327 /* Display log. */
7328 SEND_ERR(px, "Lua applet tcp '%s': %s.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007329 rule->arg.hlua_rule->fcn->name, lua_tostring(hlua->T, -1));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007330 lua_pop(hlua->T, 1);
7331 goto error;
7332
Thierry Fournierd5b073c2018-05-21 19:42:47 +02007333 case HLUA_E_ETMOUT:
7334 SEND_ERR(px, "Lua applet tcp '%s': execution timeout.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007335 rule->arg.hlua_rule->fcn->name);
Thierry Fournierd5b073c2018-05-21 19:42:47 +02007336 goto error;
7337
7338 case HLUA_E_NOMEM:
7339 SEND_ERR(px, "Lua applet tcp '%s': out of memory error.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007340 rule->arg.hlua_rule->fcn->name);
Thierry Fournierd5b073c2018-05-21 19:42:47 +02007341 goto error;
7342
7343 case HLUA_E_YIELD: /* unexpected */
7344 SEND_ERR(px, "Lua applet tcp '%s': yield not allowed.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007345 rule->arg.hlua_rule->fcn->name);
Thierry Fournierd5b073c2018-05-21 19:42:47 +02007346 goto error;
7347
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007348 case HLUA_E_ERR:
7349 /* Display log. */
7350 SEND_ERR(px, "Lua applet tcp '%s' return an unknown error.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007351 rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007352 goto error;
7353
7354 default:
7355 goto error;
7356 }
7357
7358error:
7359
7360 /* For all other cases, just close the stream. */
7361 si_shutw(si);
7362 si_shutr(si);
7363 ctx->ctx.hlua_apptcp.flags |= APPLET_DONE;
7364}
7365
7366static void hlua_applet_tcp_release(struct appctx *ctx)
7367{
Olivier Houchard3f795f72019-04-17 22:51:06 +02007368 task_destroy(ctx->ctx.hlua_apptcp.task);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007369 ctx->ctx.hlua_apptcp.task = NULL;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007370 hlua_ctx_destroy(ctx->ctx.hlua_apptcp.hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007371 ctx->ctx.hlua_apptcp.hlua = NULL;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007372}
7373
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007374/* The function returns 1 if the initialisation is complete, 0 if
7375 * an errors occurs and -1 if more data are required for initializing
7376 * the applet.
7377 */
7378static int hlua_applet_http_init(struct appctx *ctx, struct proxy *px, struct stream *strm)
7379{
7380 struct stream_interface *si = ctx->owner;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007381 struct http_txn *txn;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007382 struct hlua *hlua;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007383 char **arg;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007384 struct task *task;
Thierry Fournierfd107a22016-02-19 19:57:23 +01007385 const char *error;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007386
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007387 txn = strm->txn;
Willy Tarreaubafbe012017-11-24 17:34:44 +01007388 hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007389 if (!hlua) {
7390 SEND_ERR(px, "Lua applet http '%s': out of memory.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007391 ctx->rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007392 return 0;
7393 }
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007394 HLUA_INIT(hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007395 ctx->ctx.hlua_apphttp.hlua = hlua;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007396 ctx->ctx.hlua_apphttp.left_bytes = -1;
7397 ctx->ctx.hlua_apphttp.flags = 0;
7398
Thierry FOURNIERd93ea2b2015-12-20 19:14:52 +01007399 if (txn->req.flags & HTTP_MSGF_VER_11)
7400 ctx->ctx.hlua_apphttp.flags |= APPLET_HTTP11;
7401
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007402 /* Create task used by signal to wakeup applets. */
Willy Tarreau5f4a47b2017-10-31 15:59:32 +01007403 task = task_new(tid_bit);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007404 if (!task) {
7405 SEND_ERR(px, "Lua applet http '%s': out of memory.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007406 ctx->rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007407 return 0;
7408 }
7409 task->nice = 0;
7410 task->context = ctx;
7411 task->process = hlua_applet_wakeup;
7412 ctx->ctx.hlua_apphttp.task = task;
7413
7414 /* In the execution wrappers linked with a stream, the
7415 * Lua context can be not initialized. This behavior
7416 * permits to save performances because a systematic
7417 * Lua initialization cause 5% performances loss.
7418 */
Aurelien DARRAGON5483bde2023-03-21 14:02:16 +01007419 if (!hlua_ctx_init(hlua, fcn_ref_to_stack_id(ctx->rule->arg.hlua_rule->fcn), task)) {
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007420 SEND_ERR(px, "Lua applet http '%s': can't initialize Lua context.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007421 ctx->rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007422 return 0;
7423 }
7424
7425 /* Set timeout according with the applet configuration. */
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02007426 hlua->max_time = ctx->applet->timeout;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007427
7428 /* The following Lua calls can fail. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01007429 if (!SET_SAFE_LJMP(hlua)) {
Thierry Fournierfd107a22016-02-19 19:57:23 +01007430 if (lua_type(hlua->T, -1) == LUA_TSTRING)
7431 error = lua_tostring(hlua->T, -1);
7432 else
7433 error = "critical error";
7434 SEND_ERR(px, "Lua applet http '%s': %s.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007435 ctx->rule->arg.hlua_rule->fcn->name, error);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007436 return 0;
7437 }
7438
7439 /* Check stack available size. */
7440 if (!lua_checkstack(hlua->T, 1)) {
7441 SEND_ERR(px, "Lua applet http '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007442 ctx->rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01007443 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007444 return 0;
7445 }
7446
7447 /* Restore the function in the stack. */
Thierry Fournierc7492592020-11-28 23:57:24 +01007448 lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, ctx->rule->arg.hlua_rule->fcn->function_ref[hlua->state_id]);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007449
7450 /* Create and and push object stream in the stack. */
7451 if (!hlua_applet_http_new(hlua->T, ctx)) {
7452 SEND_ERR(px, "Lua applet http '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007453 ctx->rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01007454 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007455 return 0;
7456 }
7457 hlua->nargs = 1;
7458
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007459 /* push keywords in the stack. */
7460 for (arg = ctx->rule->arg.hlua_rule->args; arg && *arg; arg++) {
7461 if (!lua_checkstack(hlua->T, 1)) {
7462 SEND_ERR(px, "Lua applet http '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007463 ctx->rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01007464 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007465 return 0;
7466 }
7467 lua_pushstring(hlua->T, *arg);
7468 hlua->nargs++;
7469 }
7470
Thierry Fournier7cbe5042020-11-28 17:02:21 +01007471 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007472
7473 /* Wakeup the applet when data is ready for read. */
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01007474 si_cant_get(si);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007475
7476 return 1;
7477}
7478
Willy Tarreau60409db2019-08-21 14:14:50 +02007479void hlua_applet_http_fct(struct appctx *ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007480{
7481 struct stream_interface *si = ctx->owner;
7482 struct stream *strm = si_strm(si);
7483 struct channel *req = si_oc(si);
7484 struct channel *res = si_ic(si);
7485 struct act_rule *rule = ctx->rule;
7486 struct proxy *px = strm->be;
7487 struct hlua *hlua = ctx->ctx.hlua_apphttp.hlua;
7488 struct htx *req_htx, *res_htx;
7489
7490 res_htx = htx_from_buf(&res->buf);
7491
7492 /* If the stream is disconnect or closed, ldo nothing. */
7493 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
7494 goto out;
7495
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05007496 /* Check if the input buffer is available. */
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007497 if (!b_size(&res->buf)) {
7498 si_rx_room_blk(si);
7499 goto out;
7500 }
7501 /* check that the output is not closed */
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01007502 if (res->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_SHUTR))
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007503 ctx->ctx.hlua_apphttp.flags |= APPLET_DONE;
7504
7505 /* Set the currently running flag. */
7506 if (!HLUA_IS_RUNNING(hlua) &&
7507 !(ctx->ctx.hlua_apphttp.flags & APPLET_DONE)) {
Christopher Fauletbd878d22021-04-28 10:50:21 +02007508 if (!co_data(req)) {
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007509 si_cant_get(si);
7510 goto out;
7511 }
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007512 }
7513
7514 /* Executes The applet if it is not done. */
7515 if (!(ctx->ctx.hlua_apphttp.flags & APPLET_DONE)) {
7516
7517 /* Execute the function. */
7518 switch (hlua_ctx_resume(hlua, 1)) {
7519 /* finished. */
7520 case HLUA_E_OK:
7521 ctx->ctx.hlua_apphttp.flags |= APPLET_DONE;
7522 break;
7523
7524 /* yield. */
7525 case HLUA_E_AGAIN:
7526 if (hlua->wake_time != TICK_ETERNITY)
7527 task_schedule(ctx->ctx.hlua_apphttp.task, hlua->wake_time);
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01007528 goto out;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007529
7530 /* finished with error. */
7531 case HLUA_E_ERRMSG:
7532 /* Display log. */
7533 SEND_ERR(px, "Lua applet http '%s': %s.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007534 rule->arg.hlua_rule->fcn->name, lua_tostring(hlua->T, -1));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007535 lua_pop(hlua->T, 1);
7536 goto error;
7537
7538 case HLUA_E_ETMOUT:
7539 SEND_ERR(px, "Lua applet http '%s': execution timeout.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007540 rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007541 goto error;
7542
7543 case HLUA_E_NOMEM:
7544 SEND_ERR(px, "Lua applet http '%s': out of memory error.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007545 rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007546 goto error;
7547
7548 case HLUA_E_YIELD: /* unexpected */
7549 SEND_ERR(px, "Lua applet http '%s': yield not allowed.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007550 rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007551 goto error;
7552
7553 case HLUA_E_ERR:
7554 /* Display log. */
7555 SEND_ERR(px, "Lua applet http '%s' return an unknown error.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007556 rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007557 goto error;
7558
7559 default:
7560 goto error;
7561 }
7562 }
7563
7564 if (ctx->ctx.hlua_apphttp.flags & APPLET_DONE) {
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01007565 if (ctx->ctx.hlua_apphttp.flags & APPLET_RSP_SENT)
7566 goto done;
7567
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007568 if (!(ctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT))
7569 goto error;
7570
Christopher Faulet868b3b12022-04-07 10:07:18 +02007571 /* no more data are expected. If the response buffer is empty
7572 * for a chunked message, be sure to add something (EOT block in
7573 * this case) to have something to send. It is important to be
7574 * sure the EOM flags will be handled by the endpoint.
7575 */
7576 if (htx_is_empty(res_htx) && (strm->txn->rsp.flags & (HTTP_MSGF_XFER_LEN|HTTP_MSGF_CNT_LEN)) == HTTP_MSGF_XFER_LEN) {
7577 if (!htx_add_endof(res_htx, HTX_BLK_EOT)) {
7578 si_rx_room_blk(si);
7579 goto out;
7580 }
7581 channel_add_input(res, 1);
7582 }
7583
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01007584 res_htx->flags |= HTX_FL_EOM;
Christopher Faulet79c0fc72022-03-07 15:50:54 +01007585 res->flags |= CF_EOI;
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01007586 strm->txn->status = ctx->ctx.hlua_apphttp.status;
7587 ctx->ctx.hlua_apphttp.flags |= APPLET_RSP_SENT;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007588 }
7589
7590 done:
7591 if (ctx->ctx.hlua_apphttp.flags & APPLET_DONE) {
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01007592 if (!(res->flags & CF_SHUTR)) {
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007593 res->flags |= CF_READ_NULL;
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01007594 si_shutr(si);
7595 }
7596
7597 /* eat the whole request */
7598 if (co_data(req)) {
7599 req_htx = htx_from_buf(&req->buf);
7600 co_htx_skip(req, req_htx, co_data(req));
7601 htx_to_buf(req_htx, &req->buf);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007602 }
7603 }
7604
7605 out:
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007606 htx_to_buf(res_htx, &res->buf);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007607 return;
7608
7609 error:
7610
7611 /* If we are in HTTP mode, and we are not send any
7612 * data, return a 500 server error in best effort:
7613 * if there is no room available in the buffer,
7614 * just close the connection.
7615 */
7616 if (!(ctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT)) {
Christopher Fauletf7346382019-07-17 22:02:08 +02007617 struct buffer *err = &http_err_chunks[HTTP_ERR_500];
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007618
7619 channel_erase(res);
7620 res->buf.data = b_data(err);
7621 memcpy(res->buf.area, b_head(err), b_data(err));
7622 res_htx = htx_from_buf(&res->buf);
Christopher Fauletf6cce3f2019-02-27 21:20:09 +01007623 channel_add_input(res, res_htx->data);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007624 }
7625 if (!(strm->flags & SF_ERR_MASK))
7626 strm->flags |= SF_ERR_RESOURCE;
7627 ctx->ctx.hlua_apphttp.flags |= APPLET_DONE;
7628 goto done;
7629}
7630
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007631static void hlua_applet_http_release(struct appctx *ctx)
7632{
Olivier Houchard3f795f72019-04-17 22:51:06 +02007633 task_destroy(ctx->ctx.hlua_apphttp.task);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007634 ctx->ctx.hlua_apphttp.task = NULL;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007635 hlua_ctx_destroy(ctx->ctx.hlua_apphttp.hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007636 ctx->ctx.hlua_apphttp.hlua = NULL;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007637}
7638
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007639/* global {tcp|http}-request parser. Return ACT_RET_PRS_OK in
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05007640 * success case, else return ACT_RET_PRS_ERR.
Thierry FOURNIERbabae282015-09-17 11:36:37 +02007641 *
7642 * This function can fail with an abort() due to an Lua critical error.
7643 * We are in the configuration parsing process of HAProxy, this abort() is
7644 * tolerated.
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007645 */
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007646static enum act_parse_ret action_register_lua(const char **args, int *cur_arg, struct proxy *px,
7647 struct act_rule *rule, char **err)
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007648{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02007649 struct hlua_function *fcn = rule->kw->private;
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007650 int i;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007651
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007652 /* Memory for the rule. */
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02007653 rule->arg.hlua_rule = calloc(1, sizeof(*rule->arg.hlua_rule));
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007654 if (!rule->arg.hlua_rule) {
7655 memprintf(err, "out of memory error");
Christopher Faulet528526f2021-04-12 14:37:32 +02007656 goto error;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007657 }
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007658
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007659 /* Memory for arguments. */
Tim Duesterhuse52b6e52020-09-12 20:26:43 +02007660 rule->arg.hlua_rule->args = calloc(fcn->nargs + 1,
7661 sizeof(*rule->arg.hlua_rule->args));
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007662 if (!rule->arg.hlua_rule->args) {
7663 memprintf(err, "out of memory error");
Christopher Faulet528526f2021-04-12 14:37:32 +02007664 goto error;
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007665 }
7666
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007667 /* Reference the Lua function and store the reference. */
Thierry Fournierad5345f2020-11-29 02:05:57 +01007668 rule->arg.hlua_rule->fcn = fcn;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007669
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007670 /* Expect some arguments */
7671 for (i = 0; i < fcn->nargs; i++) {
Thierry FOURNIER1725c2e2019-01-06 19:38:49 +01007672 if (*args[*cur_arg] == '\0') {
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007673 memprintf(err, "expect %d arguments", fcn->nargs);
Christopher Faulet528526f2021-04-12 14:37:32 +02007674 goto error;
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007675 }
Thierry FOURNIER1725c2e2019-01-06 19:38:49 +01007676 rule->arg.hlua_rule->args[i] = strdup(args[*cur_arg]);
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007677 if (!rule->arg.hlua_rule->args[i]) {
7678 memprintf(err, "out of memory error");
Christopher Faulet528526f2021-04-12 14:37:32 +02007679 goto error;
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007680 }
7681 (*cur_arg)++;
7682 }
7683 rule->arg.hlua_rule->args[i] = NULL;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007684
Thierry FOURNIER42148732015-09-02 17:17:33 +02007685 rule->action = ACT_CUSTOM;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007686 rule->action_ptr = hlua_action;
Thierry FOURNIERafa80492015-08-19 09:04:15 +02007687 return ACT_RET_PRS_OK;
Christopher Faulet528526f2021-04-12 14:37:32 +02007688
7689 error:
7690 if (rule->arg.hlua_rule) {
7691 if (rule->arg.hlua_rule->args) {
7692 for (i = 0; i < fcn->nargs; i++)
7693 ha_free(&rule->arg.hlua_rule->args[i]);
7694 ha_free(&rule->arg.hlua_rule->args);
7695 }
7696 ha_free(&rule->arg.hlua_rule);
7697 }
7698 return ACT_RET_PRS_ERR;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007699}
7700
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007701static enum act_parse_ret action_register_service_http(const char **args, int *cur_arg, struct proxy *px,
7702 struct act_rule *rule, char **err)
7703{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02007704 struct hlua_function *fcn = rule->kw->private;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007705
Thierry FOURNIER718e2a72015-12-20 20:13:14 +01007706 /* HTTP applets are forbidden in tcp-request rules.
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05007707 * HTTP applet request requires everything initialized by
Thierry FOURNIER718e2a72015-12-20 20:13:14 +01007708 * "http_process_request" (analyzer flag AN_REQ_HTTP_INNER).
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05007709 * The applet will be immediately initialized, but its before
Thierry FOURNIER718e2a72015-12-20 20:13:14 +01007710 * the call of this analyzer.
7711 */
7712 if (rule->from != ACT_F_HTTP_REQ) {
7713 memprintf(err, "HTTP applets are forbidden from 'tcp-request' rulesets");
7714 return ACT_RET_PRS_ERR;
7715 }
7716
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007717 /* Memory for the rule. */
7718 rule->arg.hlua_rule = calloc(1, sizeof(*rule->arg.hlua_rule));
7719 if (!rule->arg.hlua_rule) {
7720 memprintf(err, "out of memory error");
7721 return ACT_RET_PRS_ERR;
7722 }
7723
7724 /* Reference the Lua function and store the reference. */
Thierry Fournierad5345f2020-11-29 02:05:57 +01007725 rule->arg.hlua_rule->fcn = fcn;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007726
7727 /* TODO: later accept arguments. */
7728 rule->arg.hlua_rule->args = NULL;
7729
7730 /* Add applet pointer in the rule. */
7731 rule->applet.obj_type = OBJ_TYPE_APPLET;
7732 rule->applet.name = fcn->name;
7733 rule->applet.init = hlua_applet_http_init;
7734 rule->applet.fct = hlua_applet_http_fct;
7735 rule->applet.release = hlua_applet_http_release;
7736 rule->applet.timeout = hlua_timeout_applet;
7737
7738 return ACT_RET_PRS_OK;
7739}
7740
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007741/* This function is an LUA binding used for registering
7742 * "sample-conv" functions. It expects a converter name used
7743 * in the haproxy configuration file, and an LUA function.
7744 */
7745__LJMP static int hlua_register_action(lua_State *L)
7746{
Christopher Faulet4fc9da02021-04-12 15:08:12 +02007747 struct action_kw_list *akl = NULL;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007748 const char *name;
7749 int ref;
7750 int len;
Christopher Faulet4fc9da02021-04-12 15:08:12 +02007751 struct hlua_function *fcn = NULL;
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007752 int nargs;
Thierry Fournierf67442e2020-11-28 20:41:07 +01007753 struct buffer *trash;
7754 struct action_kw *akw;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007755
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007756 /* Initialise the number of expected arguments at 0. */
7757 nargs = 0;
7758
7759 if (lua_gettop(L) < 3 || lua_gettop(L) > 4)
7760 WILL_LJMP(luaL_error(L, "'register_action' needs between 3 and 4 arguments"));
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007761
Aurelien DARRAGON8985ab82023-02-24 09:43:54 +01007762 if (hlua_gethlua(L)) {
7763 /* runtime processing */
7764 WILL_LJMP(luaL_error(L, "register_action: not available outside of body context"));
7765 }
7766
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007767 /* First argument : converter name. */
7768 name = MAY_LJMP(luaL_checkstring(L, 1));
7769
7770 /* Second argument : environment. */
7771 if (lua_type(L, 2) != LUA_TTABLE)
7772 WILL_LJMP(luaL_error(L, "register_action: second argument must be a table of strings"));
7773
7774 /* Third argument : lua function. */
7775 ref = MAY_LJMP(hlua_checkfunction(L, 3));
7776
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08007777 /* Fourth argument : number of mandatory arguments expected on the configuration line. */
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007778 if (lua_gettop(L) >= 4)
7779 nargs = MAY_LJMP(luaL_checkinteger(L, 4));
7780
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08007781 /* browse the second argument as an array. */
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007782 lua_pushnil(L);
7783 while (lua_next(L, 2) != 0) {
7784 if (lua_type(L, -1) != LUA_TSTRING)
7785 WILL_LJMP(luaL_error(L, "register_action: second argument must be a table of strings"));
7786
Thierry Fournierf67442e2020-11-28 20:41:07 +01007787 /* Check if action exists */
7788 trash = get_trash_chunk();
7789 chunk_printf(trash, "lua.%s", name);
7790 if (strcmp(lua_tostring(L, -1), "tcp-req") == 0) {
7791 akw = tcp_req_cont_action(trash->area);
7792 } else if (strcmp(lua_tostring(L, -1), "tcp-res") == 0) {
7793 akw = tcp_res_cont_action(trash->area);
7794 } else if (strcmp(lua_tostring(L, -1), "http-req") == 0) {
7795 akw = action_http_req_custom(trash->area);
7796 } else if (strcmp(lua_tostring(L, -1), "http-res") == 0) {
7797 akw = action_http_res_custom(trash->area);
7798 } else {
7799 akw = NULL;
7800 }
7801 if (akw != NULL) {
Thierry Fournier59f11be2020-11-29 00:37:41 +01007802 fcn = akw->private;
7803 if (fcn->function_ref[hlua_state_id] != -1) {
7804 ha_warning("Trying to register action 'lua.%s' more than once. "
7805 "This will become a hard error in version 2.5.\n", name);
7806 }
7807 fcn->function_ref[hlua_state_id] = ref;
7808
7809 /* pop the environment string. */
7810 lua_pop(L, 1);
7811 continue;
Thierry Fournierf67442e2020-11-28 20:41:07 +01007812 }
7813
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007814 /* Check required environment. Only accepted "http" or "tcp". */
7815 /* Allocate and fill the sample fetch keyword struct. */
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02007816 akl = calloc(1, sizeof(*akl) + sizeof(struct action_kw) * 2);
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007817 if (!akl)
Christopher Faulet4fc9da02021-04-12 15:08:12 +02007818 goto alloc_error;;
Thierry Fournier62a22aa2020-11-28 21:06:35 +01007819 fcn = new_hlua_function();
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007820 if (!fcn)
Christopher Faulet4fc9da02021-04-12 15:08:12 +02007821 goto alloc_error;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007822
7823 /* Fill fcn. */
7824 fcn->name = strdup(name);
7825 if (!fcn->name)
Christopher Faulet4fc9da02021-04-12 15:08:12 +02007826 goto alloc_error;
Thierry Fournierc7492592020-11-28 23:57:24 +01007827 fcn->function_ref[hlua_state_id] = ref;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007828
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07007829 /* Set the expected number of arguments. */
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007830 fcn->nargs = nargs;
7831
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007832 /* List head */
7833 akl->list.n = akl->list.p = NULL;
7834
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007835 /* action keyword. */
7836 len = strlen("lua.") + strlen(name) + 1;
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02007837 akl->kw[0].kw = calloc(1, len);
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007838 if (!akl->kw[0].kw)
Christopher Faulet4fc9da02021-04-12 15:08:12 +02007839 goto alloc_error;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007840
7841 snprintf((char *)akl->kw[0].kw, len, "lua.%s", name);
7842
Amaury Denoyellee4a617c2021-05-06 15:33:09 +02007843 akl->kw[0].flags = 0;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007844 akl->kw[0].private = fcn;
7845 akl->kw[0].parse = action_register_lua;
7846
7847 /* select the action registering point. */
7848 if (strcmp(lua_tostring(L, -1), "tcp-req") == 0)
7849 tcp_req_cont_keywords_register(akl);
7850 else if (strcmp(lua_tostring(L, -1), "tcp-res") == 0)
7851 tcp_res_cont_keywords_register(akl);
7852 else if (strcmp(lua_tostring(L, -1), "http-req") == 0)
7853 http_req_keywords_register(akl);
7854 else if (strcmp(lua_tostring(L, -1), "http-res") == 0)
7855 http_res_keywords_register(akl);
Christopher Faulet4fc9da02021-04-12 15:08:12 +02007856 else {
7857 release_hlua_function(fcn);
7858 if (akl)
7859 ha_free((char **)&(akl->kw[0].kw));
7860 ha_free(&akl);
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01007861 WILL_LJMP(luaL_error(L, "Lua action environment '%s' is unknown. "
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007862 "'tcp-req', 'tcp-res', 'http-req' or 'http-res' "
7863 "are expected.", lua_tostring(L, -1)));
Christopher Faulet4fc9da02021-04-12 15:08:12 +02007864 }
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007865
7866 /* pop the environment string. */
7867 lua_pop(L, 1);
Christopher Faulet4fc9da02021-04-12 15:08:12 +02007868
7869 /* reset for next loop */
7870 akl = NULL;
7871 fcn = NULL;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007872 }
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007873 return ACT_RET_PRS_OK;
Christopher Faulet4fc9da02021-04-12 15:08:12 +02007874
7875 alloc_error:
7876 release_hlua_function(fcn);
7877 ha_free(&akl);
7878 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
7879 return 0; /* Never reached */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007880}
7881
7882static enum act_parse_ret action_register_service_tcp(const char **args, int *cur_arg, struct proxy *px,
7883 struct act_rule *rule, char **err)
7884{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02007885 struct hlua_function *fcn = rule->kw->private;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007886
Christopher Faulet280f85b2019-07-15 15:02:04 +02007887 if (px->mode == PR_MODE_HTTP) {
7888 memprintf(err, "Lua TCP services cannot be used on HTTP proxies");
Christopher Fauletafd8f102018-11-08 11:34:21 +01007889 return ACT_RET_PRS_ERR;
7890 }
7891
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007892 /* Memory for the rule. */
7893 rule->arg.hlua_rule = calloc(1, sizeof(*rule->arg.hlua_rule));
7894 if (!rule->arg.hlua_rule) {
7895 memprintf(err, "out of memory error");
7896 return ACT_RET_PRS_ERR;
7897 }
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007898
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007899 /* Reference the Lua function and store the reference. */
Thierry Fournierad5345f2020-11-29 02:05:57 +01007900 rule->arg.hlua_rule->fcn = fcn;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007901
7902 /* TODO: later accept arguments. */
7903 rule->arg.hlua_rule->args = NULL;
7904
7905 /* Add applet pointer in the rule. */
7906 rule->applet.obj_type = OBJ_TYPE_APPLET;
7907 rule->applet.name = fcn->name;
7908 rule->applet.init = hlua_applet_tcp_init;
7909 rule->applet.fct = hlua_applet_tcp_fct;
7910 rule->applet.release = hlua_applet_tcp_release;
7911 rule->applet.timeout = hlua_timeout_applet;
7912
7913 return 0;
7914}
7915
7916/* This function is an LUA binding used for registering
7917 * "sample-conv" functions. It expects a converter name used
7918 * in the haproxy configuration file, and an LUA function.
7919 */
7920__LJMP static int hlua_register_service(lua_State *L)
7921{
7922 struct action_kw_list *akl;
7923 const char *name;
7924 const char *env;
7925 int ref;
7926 int len;
Christopher Faulet5c028d72021-04-12 15:11:44 +02007927 struct hlua_function *fcn = NULL;
Thierry Fournierf67442e2020-11-28 20:41:07 +01007928 struct buffer *trash;
7929 struct action_kw *akw;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007930
7931 MAY_LJMP(check_args(L, 3, "register_service"));
7932
Aurelien DARRAGON8985ab82023-02-24 09:43:54 +01007933 if (hlua_gethlua(L)) {
7934 /* runtime processing */
7935 WILL_LJMP(luaL_error(L, "register_service: not available outside of body context"));
7936 }
7937
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007938 /* First argument : converter name. */
7939 name = MAY_LJMP(luaL_checkstring(L, 1));
7940
7941 /* Second argument : environment. */
7942 env = MAY_LJMP(luaL_checkstring(L, 2));
7943
7944 /* Third argument : lua function. */
7945 ref = MAY_LJMP(hlua_checkfunction(L, 3));
7946
Thierry Fournierf67442e2020-11-28 20:41:07 +01007947 /* Check for service already registered */
7948 trash = get_trash_chunk();
7949 chunk_printf(trash, "lua.%s", name);
7950 akw = service_find(trash->area);
7951 if (akw != NULL) {
Thierry Fournier59f11be2020-11-29 00:37:41 +01007952 fcn = akw->private;
7953 if (fcn->function_ref[hlua_state_id] != -1) {
7954 ha_warning("Trying to register service 'lua.%s' more than once. "
7955 "This will become a hard error in version 2.5.\n", name);
7956 }
7957 fcn->function_ref[hlua_state_id] = ref;
7958 return 0;
Thierry Fournierf67442e2020-11-28 20:41:07 +01007959 }
7960
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007961 /* Allocate and fill the sample fetch keyword struct. */
7962 akl = calloc(1, sizeof(*akl) + sizeof(struct action_kw) * 2);
7963 if (!akl)
Christopher Faulet5c028d72021-04-12 15:11:44 +02007964 goto alloc_error;
Thierry Fournier62a22aa2020-11-28 21:06:35 +01007965 fcn = new_hlua_function();
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007966 if (!fcn)
Christopher Faulet5c028d72021-04-12 15:11:44 +02007967 goto alloc_error;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007968
7969 /* Fill fcn. */
7970 len = strlen("<lua.>") + strlen(name) + 1;
7971 fcn->name = calloc(1, len);
7972 if (!fcn->name)
Christopher Faulet5c028d72021-04-12 15:11:44 +02007973 goto alloc_error;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007974 snprintf((char *)fcn->name, len, "<lua.%s>", name);
Thierry Fournierc7492592020-11-28 23:57:24 +01007975 fcn->function_ref[hlua_state_id] = ref;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007976
7977 /* List head */
7978 akl->list.n = akl->list.p = NULL;
7979
7980 /* converter keyword. */
7981 len = strlen("lua.") + strlen(name) + 1;
7982 akl->kw[0].kw = calloc(1, len);
7983 if (!akl->kw[0].kw)
Christopher Faulet5c028d72021-04-12 15:11:44 +02007984 goto alloc_error;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007985
7986 snprintf((char *)akl->kw[0].kw, len, "lua.%s", name);
7987
Thierry FOURNIER / OZON.IO02564fd2016-11-12 11:07:05 +01007988 /* Check required environment. Only accepted "http" or "tcp". */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007989 if (strcmp(env, "tcp") == 0)
7990 akl->kw[0].parse = action_register_service_tcp;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007991 else if (strcmp(env, "http") == 0)
7992 akl->kw[0].parse = action_register_service_http;
Christopher Faulet5c028d72021-04-12 15:11:44 +02007993 else {
7994 release_hlua_function(fcn);
7995 if (akl)
7996 ha_free((char **)&(akl->kw[0].kw));
7997 ha_free(&akl);
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01007998 WILL_LJMP(luaL_error(L, "Lua service environment '%s' is unknown. "
Eric Salamafe7456f2017-12-21 14:30:07 +01007999 "'tcp' or 'http' are expected.", env));
Christopher Faulet5c028d72021-04-12 15:11:44 +02008000 }
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02008001
Amaury Denoyellee4a617c2021-05-06 15:33:09 +02008002 akl->kw[0].flags = 0;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02008003 akl->kw[0].private = fcn;
8004
8005 /* End of array. */
8006 memset(&akl->kw[1], 0, sizeof(*akl->kw));
8007
8008 /* Register this new converter */
8009 service_keywords_register(akl);
8010
Thierry FOURNIER8255a752015-09-23 21:03:35 +02008011 return 0;
Christopher Faulet5c028d72021-04-12 15:11:44 +02008012
8013 alloc_error:
8014 release_hlua_function(fcn);
8015 ha_free(&akl);
8016 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
8017 return 0; /* Never reached */
Thierry FOURNIER8255a752015-09-23 21:03:35 +02008018}
8019
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008020/* This function initialises Lua cli handler. It copies the
8021 * arguments in the Lua stack and create channel IO objects.
8022 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02008023static int hlua_cli_parse_fct(char **args, char *payload, struct appctx *appctx, void *private)
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008024{
8025 struct hlua *hlua;
8026 struct hlua_function *fcn;
8027 int i;
8028 const char *error;
8029
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008030 fcn = private;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01008031 appctx->ctx.hlua_cli.fcn = private;
8032
Willy Tarreaubafbe012017-11-24 17:34:44 +01008033 hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01008034 if (!hlua) {
8035 SEND_ERR(NULL, "Lua cli '%s': out of memory.\n", fcn->name);
Thierry FOURNIER1be34152016-12-17 12:09:51 +01008036 return 1;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01008037 }
8038 HLUA_INIT(hlua);
8039 appctx->ctx.hlua_cli.hlua = hlua;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008040
8041 /* Create task used by signal to wakeup applets.
Ilya Shipitsind4259502020-04-08 01:07:56 +05008042 * We use the same wakeup function than the Lua applet_tcp and
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008043 * applet_http. It is absolutely compatible.
8044 */
Willy Tarreau5f4a47b2017-10-31 15:59:32 +01008045 appctx->ctx.hlua_cli.task = task_new(tid_bit);
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008046 if (!appctx->ctx.hlua_cli.task) {
Thierry FOURNIERffbf5692016-12-16 11:14:06 +01008047 SEND_ERR(NULL, "Lua cli '%s': out of memory.\n", fcn->name);
Thierry FOURNIER1be34152016-12-17 12:09:51 +01008048 goto error;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008049 }
8050 appctx->ctx.hlua_cli.task->nice = 0;
8051 appctx->ctx.hlua_cli.task->context = appctx;
8052 appctx->ctx.hlua_cli.task->process = hlua_applet_wakeup;
8053
8054 /* Initialises the Lua context */
Aurelien DARRAGON5483bde2023-03-21 14:02:16 +01008055 if (!hlua_ctx_init(hlua, fcn_ref_to_stack_id(fcn), appctx->ctx.hlua_cli.task)) {
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008056 SEND_ERR(NULL, "Lua cli '%s': can't initialize Lua context.\n", fcn->name);
Thierry FOURNIER1be34152016-12-17 12:09:51 +01008057 goto error;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008058 }
8059
8060 /* The following Lua calls can fail. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008061 if (!SET_SAFE_LJMP(hlua)) {
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008062 if (lua_type(hlua->T, -1) == LUA_TSTRING)
8063 error = lua_tostring(hlua->T, -1);
8064 else
8065 error = "critical error";
8066 SEND_ERR(NULL, "Lua cli '%s': %s.\n", fcn->name, error);
8067 goto error;
8068 }
8069
8070 /* Check stack available size. */
8071 if (!lua_checkstack(hlua->T, 2)) {
8072 SEND_ERR(NULL, "Lua cli '%s': full stack.\n", fcn->name);
8073 goto error;
8074 }
8075
8076 /* Restore the function in the stack. */
Thierry Fournierc7492592020-11-28 23:57:24 +01008077 lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, fcn->function_ref[hlua->state_id]);
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008078
8079 /* Once the arguments parsed, the CLI is like an AppletTCP,
8080 * so push AppletTCP in the stack.
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008081 */
8082 if (!hlua_applet_tcp_new(hlua->T, appctx)) {
8083 SEND_ERR(NULL, "Lua cli '%s': full stack.\n", fcn->name);
8084 goto error;
8085 }
8086 hlua->nargs = 1;
8087
8088 /* push keywords in the stack. */
8089 for (i = 0; *args[i]; i++) {
8090 /* Check stack available size. */
8091 if (!lua_checkstack(hlua->T, 1)) {
8092 SEND_ERR(NULL, "Lua cli '%s': full stack.\n", fcn->name);
8093 goto error;
8094 }
8095 lua_pushstring(hlua->T, args[i]);
8096 hlua->nargs++;
8097 }
8098
8099 /* We must initialize the execution timeouts. */
8100 hlua->max_time = hlua_timeout_session;
8101
8102 /* At this point the execution is safe. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008103 RESET_SAFE_LJMP(hlua);
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008104
8105 /* It's ok */
8106 return 0;
8107
8108 /* It's not ok. */
8109error:
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008110 RESET_SAFE_LJMP(hlua);
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008111 hlua_ctx_destroy(hlua);
Thierry FOURNIER1be34152016-12-17 12:09:51 +01008112 appctx->ctx.hlua_cli.hlua = NULL;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008113 return 1;
8114}
8115
8116static int hlua_cli_io_handler_fct(struct appctx *appctx)
8117{
8118 struct hlua *hlua;
8119 struct stream_interface *si;
8120 struct hlua_function *fcn;
8121
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01008122 hlua = appctx->ctx.hlua_cli.hlua;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008123 si = appctx->owner;
Willy Tarreau8ae4f752016-12-14 15:41:45 +01008124 fcn = appctx->ctx.hlua_cli.fcn;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008125
8126 /* If the stream is disconnect or closed, ldo nothing. */
8127 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
8128 return 1;
8129
8130 /* Execute the function. */
8131 switch (hlua_ctx_resume(hlua, 1)) {
8132
8133 /* finished. */
8134 case HLUA_E_OK:
8135 return 1;
8136
8137 /* yield. */
8138 case HLUA_E_AGAIN:
8139 /* We want write. */
8140 if (HLUA_IS_WAKERESWR(hlua))
Willy Tarreaudb398432018-11-15 11:08:52 +01008141 si_rx_room_blk(si);
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008142 /* Set the timeout. */
8143 if (hlua->wake_time != TICK_ETERNITY)
8144 task_schedule(hlua->task, hlua->wake_time);
8145 return 0;
8146
8147 /* finished with error. */
8148 case HLUA_E_ERRMSG:
8149 /* Display log. */
8150 SEND_ERR(NULL, "Lua cli '%s': %s.\n",
8151 fcn->name, lua_tostring(hlua->T, -1));
8152 lua_pop(hlua->T, 1);
8153 return 1;
8154
Thierry Fournierd5b073c2018-05-21 19:42:47 +02008155 case HLUA_E_ETMOUT:
8156 SEND_ERR(NULL, "Lua converter '%s': execution timeout.\n",
8157 fcn->name);
8158 return 1;
8159
8160 case HLUA_E_NOMEM:
8161 SEND_ERR(NULL, "Lua converter '%s': out of memory error.\n",
8162 fcn->name);
8163 return 1;
8164
8165 case HLUA_E_YIELD: /* unexpected */
8166 SEND_ERR(NULL, "Lua converter '%s': yield not allowed.\n",
8167 fcn->name);
8168 return 1;
8169
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008170 case HLUA_E_ERR:
8171 /* Display log. */
8172 SEND_ERR(NULL, "Lua cli '%s' return an unknown error.\n",
8173 fcn->name);
8174 return 1;
8175
8176 default:
8177 return 1;
8178 }
8179
8180 return 1;
8181}
8182
8183static void hlua_cli_io_release_fct(struct appctx *appctx)
8184{
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01008185 hlua_ctx_destroy(appctx->ctx.hlua_cli.hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01008186 appctx->ctx.hlua_cli.hlua = NULL;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008187}
8188
8189/* This function is an LUA binding used for registering
8190 * new keywords in the cli. It expects a list of keywords
8191 * which are the "path". It is limited to 5 keywords. A
8192 * description of the command, a function to be executed
8193 * for the parsing and a function for io handlers.
8194 */
8195__LJMP static int hlua_register_cli(lua_State *L)
8196{
8197 struct cli_kw_list *cli_kws;
8198 const char *message;
8199 int ref_io;
8200 int len;
Christopher Faulet3a9a12b2021-04-12 15:31:29 +02008201 struct hlua_function *fcn = NULL;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008202 int index;
8203 int i;
Thierry Fournierf67442e2020-11-28 20:41:07 +01008204 struct buffer *trash;
8205 const char *kw[5];
8206 struct cli_kw *cli_kw;
Christopher Faulet3a9a12b2021-04-12 15:31:29 +02008207 const char *errmsg;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008208
8209 MAY_LJMP(check_args(L, 3, "register_cli"));
8210
Aurelien DARRAGON8985ab82023-02-24 09:43:54 +01008211 if (hlua_gethlua(L)) {
8212 /* runtime processing */
8213 WILL_LJMP(luaL_error(L, "register_cli: not available outside of body context"));
8214 }
8215
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008216 /* First argument : an array of maximum 5 keywords. */
8217 if (!lua_istable(L, 1))
8218 WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table"));
8219
8220 /* Second argument : string with contextual message. */
8221 message = MAY_LJMP(luaL_checkstring(L, 2));
8222
8223 /* Third and fourth argument : lua function. */
8224 ref_io = MAY_LJMP(hlua_checkfunction(L, 3));
8225
Thierry Fournierf67442e2020-11-28 20:41:07 +01008226 /* Check for CLI service already registered */
8227 trash = get_trash_chunk();
8228 index = 0;
8229 lua_pushnil(L);
8230 memset(kw, 0, sizeof(kw));
8231 while (lua_next(L, 1) != 0) {
8232 if (index >= CLI_PREFIX_KW_NB)
8233 WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table with a maximum of 5 entries"));
8234 if (lua_type(L, -1) != LUA_TSTRING)
8235 WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table filled with strings"));
8236 kw[index] = lua_tostring(L, -1);
8237 if (index == 0)
8238 chunk_printf(trash, "%s", kw[index]);
8239 else
8240 chunk_appendf(trash, " %s", kw[index]);
8241 index++;
8242 lua_pop(L, 1);
8243 }
8244 cli_kw = cli_find_kw_exact((char **)kw);
8245 if (cli_kw != NULL) {
Thierry Fournier59f11be2020-11-29 00:37:41 +01008246 fcn = cli_kw->private;
8247 if (fcn->function_ref[hlua_state_id] != -1) {
8248 ha_warning("Trying to register CLI keyword 'lua.%s' more than once. "
8249 "This will become a hard error in version 2.5.\n", trash->area);
8250 }
8251 fcn->function_ref[hlua_state_id] = ref_io;
8252 return 0;
Thierry Fournierf67442e2020-11-28 20:41:07 +01008253 }
8254
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008255 /* Allocate and fill the sample fetch keyword struct. */
8256 cli_kws = calloc(1, sizeof(*cli_kws) + sizeof(struct cli_kw) * 2);
Christopher Faulet3a9a12b2021-04-12 15:31:29 +02008257 if (!cli_kws) {
8258 errmsg = "Lua out of memory error.";
8259 goto error;
8260 }
Thierry Fournier62a22aa2020-11-28 21:06:35 +01008261 fcn = new_hlua_function();
Christopher Faulet3a9a12b2021-04-12 15:31:29 +02008262 if (!fcn) {
8263 errmsg = "Lua out of memory error.";
8264 goto error;
8265 }
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008266
8267 /* Fill path. */
8268 index = 0;
8269 lua_pushnil(L);
8270 while(lua_next(L, 1) != 0) {
Christopher Faulet3a9a12b2021-04-12 15:31:29 +02008271 if (index >= 5) {
8272 errmsg = "1st argument must be a table with a maximum of 5 entries";
8273 goto error;
8274 }
8275 if (lua_type(L, -1) != LUA_TSTRING) {
8276 errmsg = "1st argument must be a table filled with strings";
8277 goto error;
8278 }
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008279 cli_kws->kw[0].str_kw[index] = strdup(lua_tostring(L, -1));
Christopher Faulet3a9a12b2021-04-12 15:31:29 +02008280 if (!cli_kws->kw[0].str_kw[index]) {
8281 errmsg = "Lua out of memory error.";
8282 goto error;
8283 }
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008284 index++;
8285 lua_pop(L, 1);
8286 }
8287
8288 /* Copy help message. */
8289 cli_kws->kw[0].usage = strdup(message);
Christopher Faulet3a9a12b2021-04-12 15:31:29 +02008290 if (!cli_kws->kw[0].usage) {
8291 errmsg = "Lua out of memory error.";
8292 goto error;
8293 }
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008294
8295 /* Fill fcn io handler. */
8296 len = strlen("<lua.cli>") + 1;
8297 for (i = 0; i < index; i++)
8298 len += strlen(cli_kws->kw[0].str_kw[i]) + 1;
8299 fcn->name = calloc(1, len);
Christopher Faulet3a9a12b2021-04-12 15:31:29 +02008300 if (!fcn->name) {
8301 errmsg = "Lua out of memory error.";
8302 goto error;
8303 }
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008304 strncat((char *)fcn->name, "<lua.cli", len);
8305 for (i = 0; i < index; i++) {
8306 strncat((char *)fcn->name, ".", len);
8307 strncat((char *)fcn->name, cli_kws->kw[0].str_kw[i], len);
8308 }
8309 strncat((char *)fcn->name, ">", len);
Thierry Fournierc7492592020-11-28 23:57:24 +01008310 fcn->function_ref[hlua_state_id] = ref_io;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008311
8312 /* Fill last entries. */
8313 cli_kws->kw[0].private = fcn;
8314 cli_kws->kw[0].parse = hlua_cli_parse_fct;
8315 cli_kws->kw[0].io_handler = hlua_cli_io_handler_fct;
8316 cli_kws->kw[0].io_release = hlua_cli_io_release_fct;
8317
8318 /* Register this new converter */
8319 cli_register_kw(cli_kws);
8320
8321 return 0;
Christopher Faulet3a9a12b2021-04-12 15:31:29 +02008322
8323 error:
8324 release_hlua_function(fcn);
8325 if (cli_kws) {
8326 for (i = 0; i < index; i++)
8327 ha_free((char **)&(cli_kws->kw[0].str_kw[i]));
8328 ha_free((char **)&(cli_kws->kw[0].usage));
8329 }
8330 ha_free(&cli_kws);
8331 WILL_LJMP(luaL_error(L, errmsg));
8332 return 0; /* Never reached */
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008333}
8334
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008335static int hlua_read_timeout(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01008336 const struct proxy *defpx, const char *file, int line,
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008337 char **err, unsigned int *timeout)
8338{
8339 const char *error;
8340
8341 error = parse_time_err(args[1], timeout, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02008342 if (error == PARSE_TIME_OVER) {
8343 memprintf(err, "timer overflow in argument <%s> to <%s> (maximum value is 2147483647 ms or ~24.8 days)",
8344 args[1], args[0]);
8345 return -1;
8346 }
8347 else if (error == PARSE_TIME_UNDER) {
8348 memprintf(err, "timer underflow in argument <%s> to <%s> (minimum non-null value is 1 ms)",
8349 args[1], args[0]);
8350 return -1;
8351 }
8352 else if (error) {
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008353 memprintf(err, "%s: invalid timeout", args[0]);
8354 return -1;
8355 }
8356 return 0;
8357}
8358
8359static int hlua_session_timeout(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01008360 const struct proxy *defpx, const char *file, int line,
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008361 char **err)
8362{
8363 return hlua_read_timeout(args, section_type, curpx, defpx,
8364 file, line, err, &hlua_timeout_session);
8365}
8366
8367static int hlua_task_timeout(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01008368 const struct proxy *defpx, const char *file, int line,
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008369 char **err)
8370{
8371 return hlua_read_timeout(args, section_type, curpx, defpx,
8372 file, line, err, &hlua_timeout_task);
8373}
8374
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02008375static int hlua_applet_timeout(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01008376 const struct proxy *defpx, const char *file, int line,
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02008377 char **err)
8378{
8379 return hlua_read_timeout(args, section_type, curpx, defpx,
8380 file, line, err, &hlua_timeout_applet);
8381}
8382
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01008383static int hlua_forced_yield(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01008384 const struct proxy *defpx, const char *file, int line,
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01008385 char **err)
8386{
8387 char *error;
8388
8389 hlua_nb_instruction = strtoll(args[1], &error, 10);
8390 if (*error != '\0') {
8391 memprintf(err, "%s: invalid number", args[0]);
8392 return -1;
8393 }
8394 return 0;
8395}
8396
Willy Tarreau32f61e22015-03-18 17:54:59 +01008397static int hlua_parse_maxmem(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01008398 const struct proxy *defpx, const char *file, int line,
Willy Tarreau32f61e22015-03-18 17:54:59 +01008399 char **err)
8400{
8401 char *error;
8402
8403 if (*(args[1]) == 0) {
8404 memprintf(err, "'%s' expects an integer argument (Lua memory size in MB).\n", args[0]);
8405 return -1;
8406 }
8407 hlua_global_allocator.limit = strtoll(args[1], &error, 10) * 1024L * 1024L;
8408 if (*error != '\0') {
8409 memprintf(err, "%s: invalid number %s (error at '%c')", args[0], args[1], *error);
8410 return -1;
8411 }
8412 return 0;
8413}
8414
8415
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008416/* This function is called by the main configuration key "lua-load". It loads and
8417 * execute an lua file during the parsing of the HAProxy configuration file. It is
8418 * the main lua entry point.
8419 *
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08008420 * This function runs with the HAProxy keywords API. It returns -1 if an error
8421 * occurs, otherwise it returns 0.
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008422 *
8423 * In some error case, LUA set an error message in top of the stack. This function
8424 * returns this error message in the HAProxy logs and pop it from the stack.
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008425 *
8426 * This function can fail with an abort() due to an Lua critical error.
8427 * We are in the configuration parsing process of HAProxy, this abort() is
8428 * tolerated.
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008429 */
Thierry Fournierc93c15c2020-11-28 15:02:13 +01008430static int hlua_load_state(char *filename, lua_State *L, char **err)
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008431{
8432 int error;
8433
8434 /* Just load and compile the file. */
Thierry Fournierc93c15c2020-11-28 15:02:13 +01008435 error = luaL_loadfile(L, filename);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008436 if (error) {
Thierry Fournierc93c15c2020-11-28 15:02:13 +01008437 memprintf(err, "error in Lua file '%s': %s", filename, lua_tostring(L, -1));
8438 lua_pop(L, 1);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008439 return -1;
8440 }
8441
8442 /* If no syntax error where detected, execute the code. */
Thierry Fournierc93c15c2020-11-28 15:02:13 +01008443 error = lua_pcall(L, 0, LUA_MULTRET, 0);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008444 switch (error) {
8445 case LUA_OK:
8446 break;
8447 case LUA_ERRRUN:
Thierry Fournierc93c15c2020-11-28 15:02:13 +01008448 memprintf(err, "Lua runtime error: %s\n", lua_tostring(L, -1));
8449 lua_pop(L, 1);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008450 return -1;
8451 case LUA_ERRMEM:
Thierry Fournierde6145f2020-11-29 00:55:53 +01008452 memprintf(err, "Lua out of memory error\n");
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008453 return -1;
8454 case LUA_ERRERR:
Thierry Fournierc93c15c2020-11-28 15:02:13 +01008455 memprintf(err, "Lua message handler error: %s\n", lua_tostring(L, -1));
8456 lua_pop(L, 1);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008457 return -1;
Christopher Faulet08ed98f2020-07-28 10:33:25 +02008458#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM <= 503
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008459 case LUA_ERRGCMM:
Thierry Fournierc93c15c2020-11-28 15:02:13 +01008460 memprintf(err, "Lua garbage collector error: %s\n", lua_tostring(L, -1));
8461 lua_pop(L, 1);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008462 return -1;
Christopher Faulet08ed98f2020-07-28 10:33:25 +02008463#endif
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008464 default:
Thierry Fournierc93c15c2020-11-28 15:02:13 +01008465 memprintf(err, "Lua unknown error: %s\n", lua_tostring(L, -1));
8466 lua_pop(L, 1);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008467 return -1;
8468 }
8469
8470 return 0;
8471}
8472
Thierry Fournierc93c15c2020-11-28 15:02:13 +01008473static int hlua_load(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01008474 const struct proxy *defpx, const char *file, int line,
Thierry Fournierc93c15c2020-11-28 15:02:13 +01008475 char **err)
8476{
8477 if (*(args[1]) == 0) {
8478 memprintf(err, "'%s' expects a file name as parameter.\n", args[0]);
8479 return -1;
8480 }
8481
Thierry Fournier59f11be2020-11-29 00:37:41 +01008482 /* loading for global state */
Thierry Fournierc7492592020-11-28 23:57:24 +01008483 hlua_state_id = 0;
Thierry Fournier59f11be2020-11-29 00:37:41 +01008484 ha_set_tid(0);
Thierry Fournierafc63e22020-11-28 17:06:51 +01008485 return hlua_load_state(args[1], hlua_states[0], err);
Thierry Fournierc93c15c2020-11-28 15:02:13 +01008486}
8487
Thierry Fournier59f11be2020-11-29 00:37:41 +01008488static int hlua_load_per_thread(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01008489 const struct proxy *defpx, const char *file, int line,
Thierry Fournier59f11be2020-11-29 00:37:41 +01008490 char **err)
8491{
8492 int len;
8493
8494 if (*(args[1]) == 0) {
8495 memprintf(err, "'%s' expects a file as parameter.\n", args[0]);
8496 return -1;
8497 }
8498
8499 if (per_thread_load == NULL) {
8500 /* allocate the first entry large enough to store the final NULL */
8501 per_thread_load = calloc(1, sizeof(*per_thread_load));
8502 if (per_thread_load == NULL) {
8503 memprintf(err, "out of memory error");
8504 return -1;
8505 }
8506 }
8507
8508 /* count used entries */
8509 for (len = 0; per_thread_load[len] != NULL; len++)
8510 ;
8511
8512 per_thread_load = realloc(per_thread_load, (len + 2) * sizeof(*per_thread_load));
8513 if (per_thread_load == NULL) {
8514 memprintf(err, "out of memory error");
8515 return -1;
8516 }
8517
8518 per_thread_load[len] = strdup(args[1]);
8519 per_thread_load[len + 1] = NULL;
8520
8521 if (per_thread_load[len] == NULL) {
8522 memprintf(err, "out of memory error");
8523 return -1;
8524 }
8525
8526 /* loading for thread 1 only */
8527 hlua_state_id = 1;
8528 ha_set_tid(0);
8529 return hlua_load_state(args[1], hlua_states[1], err);
8530}
8531
Tim Duesterhusc9fc9f22020-01-12 13:55:39 +01008532/* Prepend the given <path> followed by a semicolon to the `package.<type>` variable
8533 * in the given <ctx>.
8534 */
Thierry Fournier3fb9e512020-11-28 10:13:12 +01008535static int hlua_prepend_path(lua_State *L, char *type, char *path)
Tim Duesterhusc9fc9f22020-01-12 13:55:39 +01008536{
Thierry Fournier3fb9e512020-11-28 10:13:12 +01008537 lua_getglobal(L, "package"); /* push package variable */
8538 lua_pushstring(L, path); /* push given path */
8539 lua_pushstring(L, ";"); /* push semicolon */
8540 lua_getfield(L, -3, type); /* push old path */
8541 lua_concat(L, 3); /* concatenate to new path */
8542 lua_setfield(L, -2, type); /* store new path */
8543 lua_pop(L, 1); /* pop package variable */
Tim Duesterhusc9fc9f22020-01-12 13:55:39 +01008544
8545 return 0;
8546}
8547
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +01008548static int hlua_config_prepend_path(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01008549 const struct proxy *defpx, const char *file, int line,
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +01008550 char **err)
8551{
8552 char *path;
8553 char *type = "path";
Tim Duesterhus621e74a2021-01-03 20:04:36 +01008554 struct prepend_path *p = NULL;
Thierry Fournier59f11be2020-11-29 00:37:41 +01008555
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +01008556 if (too_many_args(2, args, err, NULL)) {
Tim Duesterhus621e74a2021-01-03 20:04:36 +01008557 goto err;
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +01008558 }
8559
8560 if (!(*args[1])) {
8561 memprintf(err, "'%s' expects to receive a <path> as argument", args[0]);
Tim Duesterhus621e74a2021-01-03 20:04:36 +01008562 goto err;
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +01008563 }
8564 path = args[1];
8565
8566 if (*args[2]) {
8567 if (strcmp(args[2], "path") != 0 && strcmp(args[2], "cpath") != 0) {
8568 memprintf(err, "'%s' expects <type> to either be 'path' or 'cpath'", args[0]);
Tim Duesterhus621e74a2021-01-03 20:04:36 +01008569 goto err;
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +01008570 }
8571 type = args[2];
8572 }
8573
Thierry Fournier59f11be2020-11-29 00:37:41 +01008574 p = calloc(1, sizeof(*p));
8575 if (p == NULL) {
Tim Duesterhusf89d43a2021-01-03 20:04:37 +01008576 memprintf(err, "memory allocation failed");
Tim Duesterhus621e74a2021-01-03 20:04:36 +01008577 goto err;
Thierry Fournier59f11be2020-11-29 00:37:41 +01008578 }
8579 p->path = strdup(path);
8580 if (p->path == NULL) {
Tim Duesterhusf89d43a2021-01-03 20:04:37 +01008581 memprintf(err, "memory allocation failed");
Tim Duesterhus621e74a2021-01-03 20:04:36 +01008582 goto err2;
Thierry Fournier59f11be2020-11-29 00:37:41 +01008583 }
8584 p->type = strdup(type);
8585 if (p->type == NULL) {
Tim Duesterhusf89d43a2021-01-03 20:04:37 +01008586 memprintf(err, "memory allocation failed");
Tim Duesterhus621e74a2021-01-03 20:04:36 +01008587 goto err2;
Thierry Fournier59f11be2020-11-29 00:37:41 +01008588 }
Willy Tarreau2b718102021-04-21 07:32:39 +02008589 LIST_APPEND(&prepend_path_list, &p->l);
Thierry Fournier59f11be2020-11-29 00:37:41 +01008590
8591 hlua_prepend_path(hlua_states[0], type, path);
8592 hlua_prepend_path(hlua_states[1], type, path);
8593 return 0;
Tim Duesterhus621e74a2021-01-03 20:04:36 +01008594
8595err2:
8596 free(p->type);
8597 free(p->path);
8598err:
8599 free(p);
8600 return -1;
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +01008601}
8602
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008603/* configuration keywords declaration */
8604static struct cfg_kw_list cfg_kws = {{ },{
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +01008605 { CFG_GLOBAL, "lua-prepend-path", hlua_config_prepend_path },
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008606 { CFG_GLOBAL, "lua-load", hlua_load },
Thierry Fournier59f11be2020-11-29 00:37:41 +01008607 { CFG_GLOBAL, "lua-load-per-thread", hlua_load_per_thread },
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008608 { CFG_GLOBAL, "tune.lua.session-timeout", hlua_session_timeout },
8609 { CFG_GLOBAL, "tune.lua.task-timeout", hlua_task_timeout },
Thierry FOURNIER56da1012015-10-01 08:42:31 +02008610 { CFG_GLOBAL, "tune.lua.service-timeout", hlua_applet_timeout },
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01008611 { CFG_GLOBAL, "tune.lua.forced-yield", hlua_forced_yield },
Willy Tarreau32f61e22015-03-18 17:54:59 +01008612 { CFG_GLOBAL, "tune.lua.maxmem", hlua_parse_maxmem },
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008613 { 0, NULL, NULL },
8614}};
8615
Willy Tarreau0108d902018-11-25 19:14:37 +01008616INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
8617
Christopher Fauletafd8f102018-11-08 11:34:21 +01008618
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008619/* This function can fail with an abort() due to an Lua critical error.
8620 * We are in the initialisation process of HAProxy, this abort() is
8621 * tolerated.
8622 */
Thierry Fournierb8cef172020-11-28 15:37:17 +01008623int hlua_post_init_state(lua_State *L)
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008624{
8625 struct hlua_init_function *init;
8626 const char *msg;
8627 enum hlua_exec ret;
Thierry Fournierfd107a22016-02-19 19:57:23 +01008628 const char *error;
Thierry Fournier670db242020-11-28 10:49:59 +01008629 const char *kind;
8630 const char *trace;
8631 int return_status = 1;
8632#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504
8633 int nres;
8634#endif
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008635
Willy Tarreaucdb53462020-12-02 12:12:00 +01008636 /* disable memory limit checks if limit is not set */
8637 if (!hlua_global_allocator.limit)
8638 hlua_global_allocator.limit = ~hlua_global_allocator.limit;
8639
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05008640 /* Call post initialisation function in safe environment. */
Thierry Fournier3c539322020-11-28 16:05:05 +01008641 if (setjmp(safe_ljmp_env) != 0) {
8642 lua_atpanic(L, hlua_panic_safe);
Thierry Fournierb8cef172020-11-28 15:37:17 +01008643 if (lua_type(L, -1) == LUA_TSTRING)
8644 error = lua_tostring(L, -1);
Thierry Fournier3d4a6752016-02-19 20:53:30 +01008645 else
8646 error = "critical error";
8647 fprintf(stderr, "Lua post-init: %s.\n", error);
8648 exit(1);
Thierry Fournier3c539322020-11-28 16:05:05 +01008649 } else {
8650 lua_atpanic(L, hlua_panic_ljmp);
Thierry Fournier3d4a6752016-02-19 20:53:30 +01008651 }
Frédéric Lécaille54f2bcf2018-08-29 13:46:24 +02008652
Thierry Fournierb8cef172020-11-28 15:37:17 +01008653 hlua_fcn_post_init(L);
Thierry Fournier3d4a6752016-02-19 20:53:30 +01008654
Thierry Fournierc7492592020-11-28 23:57:24 +01008655 list_for_each_entry(init, &hlua_init_functions[hlua_state_id], l) {
Thierry Fournierb8cef172020-11-28 15:37:17 +01008656 lua_rawgeti(L, LUA_REGISTRYINDEX, init->function_ref);
Aurelien DARRAGON93591b42023-03-20 16:29:55 +01008657 /* function ref should be released right away since it was pushed
8658 * on the stack and will not be used anymore
8659 */
8660 hlua_unref(L, init->function_ref);
Thierry Fournier670db242020-11-28 10:49:59 +01008661
8662#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504
Thierry Fournierb8cef172020-11-28 15:37:17 +01008663 ret = lua_resume(L, L, 0, &nres);
Thierry Fournier670db242020-11-28 10:49:59 +01008664#else
Thierry Fournierb8cef172020-11-28 15:37:17 +01008665 ret = lua_resume(L, L, 0);
Thierry Fournier670db242020-11-28 10:49:59 +01008666#endif
8667 kind = NULL;
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008668 switch (ret) {
Thierry Fournier670db242020-11-28 10:49:59 +01008669
8670 case LUA_OK:
Thierry Fournierb8cef172020-11-28 15:37:17 +01008671 lua_pop(L, -1);
Thierry Fournier13d08b72020-11-28 11:02:58 +01008672 break;
Thierry Fournier670db242020-11-28 10:49:59 +01008673
8674 case LUA_ERRERR:
8675 kind = "message handler error";
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07008676 /* Fall through */
Thierry Fournier670db242020-11-28 10:49:59 +01008677 case LUA_ERRRUN:
8678 if (!kind)
8679 kind = "runtime error";
Thierry Fournierb8cef172020-11-28 15:37:17 +01008680 msg = lua_tostring(L, -1);
8681 lua_settop(L, 0); /* Empty the stack. */
Christopher Fauletd09cc512021-03-24 14:48:45 +01008682 trace = hlua_traceback(L, ", ");
Thierry Fournier670db242020-11-28 10:49:59 +01008683 if (msg)
8684 ha_alert("Lua init: %s: '%s' from %s\n", kind, msg, trace);
8685 else
8686 ha_alert("Lua init: unknown %s from %s\n", kind, trace);
8687 return_status = 0;
8688 break;
8689
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008690 default:
Thierry Fournier670db242020-11-28 10:49:59 +01008691 /* Unknown error */
8692 kind = "Unknown error";
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07008693 /* Fall through */
Thierry Fournier670db242020-11-28 10:49:59 +01008694 case LUA_YIELD:
8695 /* yield is not configured at this step, this state doesn't happen */
8696 if (!kind)
8697 kind = "yield not allowed";
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07008698 /* Fall through */
Thierry Fournier670db242020-11-28 10:49:59 +01008699 case LUA_ERRMEM:
8700 if (!kind)
8701 kind = "out of memory error";
Aurelien DARRAGON93f5d8d2023-08-09 10:11:49 +02008702 lua_settop(L, 0); /* Empty the stack. */
Christopher Fauletd09cc512021-03-24 14:48:45 +01008703 trace = hlua_traceback(L, ", ");
Thierry Fournier670db242020-11-28 10:49:59 +01008704 ha_alert("Lua init: %s: %s\n", kind, trace);
8705 return_status = 0;
8706 break;
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008707 }
Thierry Fournier670db242020-11-28 10:49:59 +01008708 if (!return_status)
8709 break;
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008710 }
Thierry Fournier3c539322020-11-28 16:05:05 +01008711
8712 lua_atpanic(L, hlua_panic_safe);
Thierry Fournier670db242020-11-28 10:49:59 +01008713 return return_status;
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008714}
8715
Thierry Fournierb8cef172020-11-28 15:37:17 +01008716int hlua_post_init()
8717{
Thierry Fournier59f11be2020-11-29 00:37:41 +01008718 int ret;
8719 int i;
8720 int errors;
8721 char *err = NULL;
8722 struct hlua_function *fcn;
8723
Willy Tarreau42afc592021-08-30 09:35:18 +02008724#if defined(USE_OPENSSL)
Thierry Fournierb8cef172020-11-28 15:37:17 +01008725 /* Initialize SSL server. */
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +01008726 if (socket_ssl->xprt->prepare_srv) {
Thierry Fournierb8cef172020-11-28 15:37:17 +01008727 int saved_used_backed = global.ssl_used_backend;
8728 // don't affect maxconn automatic computation
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +01008729 socket_ssl->xprt->prepare_srv(socket_ssl);
Thierry Fournierb8cef172020-11-28 15:37:17 +01008730 global.ssl_used_backend = saved_used_backed;
8731 }
8732#endif
8733
Thierry Fournierc7492592020-11-28 23:57:24 +01008734 /* Perform post init of common thread */
8735 hlua_state_id = 0;
Thierry Fournier59f11be2020-11-29 00:37:41 +01008736 ha_set_tid(0);
8737 ret = hlua_post_init_state(hlua_states[hlua_state_id]);
8738 if (ret == 0)
8739 return 0;
8740
8741 /* init remaining lua states and load files */
8742 for (hlua_state_id = 2; hlua_state_id < global.nbthread + 1; hlua_state_id++) {
8743
8744 /* set thread context */
8745 ha_set_tid(hlua_state_id - 1);
8746
8747 /* Init lua state */
8748 hlua_states[hlua_state_id] = hlua_init_state(hlua_state_id);
8749
8750 /* Load lua files */
8751 for (i = 0; per_thread_load && per_thread_load[i]; i++) {
8752 ret = hlua_load_state(per_thread_load[i], hlua_states[hlua_state_id], &err);
8753 if (ret != 0) {
8754 ha_alert("Lua init: %s\n", err);
8755 return 0;
8756 }
8757 }
8758 }
8759
8760 /* Reset thread context */
8761 ha_set_tid(0);
8762
8763 /* Execute post init for all states */
8764 for (hlua_state_id = 1; hlua_state_id < global.nbthread + 1; hlua_state_id++) {
8765
8766 /* set thread context */
8767 ha_set_tid(hlua_state_id - 1);
8768
8769 /* run post init */
8770 ret = hlua_post_init_state(hlua_states[hlua_state_id]);
8771 if (ret == 0)
8772 return 0;
8773 }
8774
8775 /* Reset thread context */
8776 ha_set_tid(0);
8777
8778 /* control functions registering. Each function must have:
8779 * - only the function_ref[0] set positive and all other to -1
8780 * - only the function_ref[0] set to -1 and all other positive
8781 * This ensure a same reference is not used both in shared
8782 * lua state and thread dedicated lua state. Note: is the case
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05008783 * reach, the shared state is priority, but the bug will be
Thierry Fournier59f11be2020-11-29 00:37:41 +01008784 * complicated to found for the end user.
8785 */
8786 errors = 0;
8787 list_for_each_entry(fcn, &referenced_functions, l) {
8788 ret = 0;
8789 for (i = 1; i < global.nbthread + 1; i++) {
8790 if (fcn->function_ref[i] == -1)
8791 ret--;
8792 else
8793 ret++;
8794 }
8795 if (abs(ret) != global.nbthread) {
8796 ha_alert("Lua function '%s' is not referenced in all thread. "
8797 "Expect function in all thread or in none thread.\n", fcn->name);
8798 errors++;
8799 continue;
8800 }
8801
8802 if ((fcn->function_ref[0] == -1) == (ret < 0)) {
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05008803 ha_alert("Lua function '%s' is referenced both ins shared Lua context (through lua-load) "
8804 "and per-thread Lua context (through lua-load-per-thread). these two context "
Thierry Fournier59f11be2020-11-29 00:37:41 +01008805 "exclusive.\n", fcn->name);
8806 errors++;
8807 }
8808 }
8809
8810 if (errors > 0)
8811 return 0;
8812
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05008813 /* after this point, this global will no longer be used, so set to
Thierry Fournier59f11be2020-11-29 00:37:41 +01008814 * -1 in order to have probably a segfault if someone use it
8815 */
8816 hlua_state_id = -1;
8817
8818 return 1;
Thierry Fournierb8cef172020-11-28 15:37:17 +01008819}
8820
Willy Tarreau32f61e22015-03-18 17:54:59 +01008821/* The memory allocator used by the Lua stack. <ud> is a pointer to the
8822 * allocator's context. <ptr> is the pointer to alloc/free/realloc. <osize>
8823 * is the previously allocated size or the kind of object in case of a new
Willy Tarreaud36c7fa2020-12-02 12:26:29 +01008824 * allocation. <nsize> is the requested new size. A new allocation is
8825 * indicated by <ptr> being NULL. A free is indicated by <nsize> being
Willy Tarreaucdb53462020-12-02 12:12:00 +01008826 * zero. This one verifies that the limits are respected but is optimized
8827 * for the fast case where limits are not used, hence stats are not updated.
Willy Tarreaue00ad052021-10-22 16:00:02 +02008828 *
8829 * Warning: while this API ressembles glibc's realloc() a lot, glibc surpasses
8830 * POSIX by making realloc(ptr,0) an effective free(), but others do not do
8831 * that and will simply allocate zero as if it were the result of malloc(0),
8832 * so mapping this onto realloc() will lead to memory leaks on non-glibc
8833 * systems.
Willy Tarreau32f61e22015-03-18 17:54:59 +01008834 */
8835static void *hlua_alloc(void *ud, void *ptr, size_t osize, size_t nsize)
8836{
8837 struct hlua_mem_allocator *zone = ud;
Willy Tarreaucdb53462020-12-02 12:12:00 +01008838 size_t limit, old, new;
8839
Tim Duesterhus22586522021-01-08 10:35:33 +01008840 if (unlikely(!ptr && !nsize))
8841 return NULL;
8842
Willy Tarreaucdb53462020-12-02 12:12:00 +01008843 /* a limit of ~0 means unlimited and boot complete, so there's no need
8844 * for accounting anymore.
8845 */
Willy Tarreaue00ad052021-10-22 16:00:02 +02008846 if (likely(~zone->limit == 0)) {
8847 if (!nsize)
8848 ha_free(&ptr);
8849 else
8850 ptr = realloc(ptr, nsize);
8851 return ptr;
8852 }
Willy Tarreau32f61e22015-03-18 17:54:59 +01008853
Willy Tarreaud36c7fa2020-12-02 12:26:29 +01008854 if (!ptr)
8855 osize = 0;
Willy Tarreau32f61e22015-03-18 17:54:59 +01008856
Willy Tarreaucdb53462020-12-02 12:12:00 +01008857 /* enforce strict limits across all threads */
8858 limit = zone->limit;
8859 old = _HA_ATOMIC_LOAD(&zone->allocated);
8860 do {
8861 new = old + nsize - osize;
8862 if (unlikely(nsize && limit && new > limit))
8863 return NULL;
8864 } while (!_HA_ATOMIC_CAS(&zone->allocated, &old, new));
Willy Tarreau32f61e22015-03-18 17:54:59 +01008865
Willy Tarreaue00ad052021-10-22 16:00:02 +02008866 if (!nsize)
8867 ha_free(&ptr);
8868 else
8869 ptr = realloc(ptr, nsize);
Willy Tarreaucdb53462020-12-02 12:12:00 +01008870
8871 if (unlikely(!ptr && nsize)) // failed
8872 _HA_ATOMIC_SUB(&zone->allocated, nsize - osize);
8873
8874 __ha_barrier_atomic_store();
Willy Tarreau32f61e22015-03-18 17:54:59 +01008875 return ptr;
8876}
8877
Thierry Fournierecb83c22020-11-28 15:49:44 +01008878/* This function can fail with an abort() due to a Lua critical error.
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008879 * We are in the initialisation process of HAProxy, this abort() is
8880 * tolerated.
8881 */
Thierry Fournierecb83c22020-11-28 15:49:44 +01008882lua_State *hlua_init_state(int thread_num)
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01008883{
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +01008884 int i;
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +01008885 int idx;
8886 struct sample_fetch *sf;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01008887 struct sample_conv *sc;
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +01008888 char *p;
Thierry Fournierfd107a22016-02-19 19:57:23 +01008889 const char *error_msg;
Thierry Fournier4234dbd2020-11-28 13:18:23 +01008890 void **context;
Thierry Fournier1eac28f2020-11-28 12:26:24 +01008891 lua_State *L;
Thierry Fournier59f11be2020-11-29 00:37:41 +01008892 struct prepend_path *pp;
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +01008893
Thierry FOURNIER380d0932015-01-23 14:27:52 +01008894 /* Init main lua stack. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01008895 L = lua_newstate(hlua_alloc, &hlua_global_allocator);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01008896
firexinghebdd336c2023-07-13 11:03:34 +08008897 if (!L) {
8898 fprintf(stderr,
8899 "Lua init: critical error: lua_newstate() returned NULL."
8900 " This may possibly be caused by a memory allocation error.\n");
8901 exit(1);
8902 }
8903
Thierry Fournier4234dbd2020-11-28 13:18:23 +01008904 /* Initialise Lua context to NULL */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01008905 context = lua_getextraspace(L);
Thierry Fournier4234dbd2020-11-28 13:18:23 +01008906 *context = NULL;
8907
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08008908 /* From this point, until the end of the initialisation function,
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008909 * the Lua function can fail with an abort. We are in the initialisation
8910 * process of HAProxy, this abort() is tolerated.
8911 */
8912
Thierry Fournier3c539322020-11-28 16:05:05 +01008913 /* Call post initialisation function in safe environment. */
8914 if (setjmp(safe_ljmp_env) != 0) {
8915 lua_atpanic(L, hlua_panic_safe);
Thierry Fournier1eac28f2020-11-28 12:26:24 +01008916 if (lua_type(L, -1) == LUA_TSTRING)
8917 error_msg = lua_tostring(L, -1);
Thierry Fournier2f05cc62020-11-28 16:08:02 +01008918 else
8919 error_msg = "critical error";
8920 fprintf(stderr, "Lua init: %s.\n", error_msg);
8921 exit(1);
Thierry Fournier3c539322020-11-28 16:05:05 +01008922 } else {
8923 lua_atpanic(L, hlua_panic_ljmp);
Thierry Fournier2f05cc62020-11-28 16:08:02 +01008924 }
8925
Thierry FOURNIER380d0932015-01-23 14:27:52 +01008926 /* Initialise lua. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01008927 luaL_openlibs(L);
Tim Duesterhus541fe1e2020-01-12 13:55:41 +01008928#define HLUA_PREPEND_PATH_TOSTRING1(x) #x
8929#define HLUA_PREPEND_PATH_TOSTRING(x) HLUA_PREPEND_PATH_TOSTRING1(x)
8930#ifdef HLUA_PREPEND_PATH
Thierry Fournier1eac28f2020-11-28 12:26:24 +01008931 hlua_prepend_path(L, "path", HLUA_PREPEND_PATH_TOSTRING(HLUA_PREPEND_PATH));
Tim Duesterhus541fe1e2020-01-12 13:55:41 +01008932#endif
8933#ifdef HLUA_PREPEND_CPATH
Thierry Fournier1eac28f2020-11-28 12:26:24 +01008934 hlua_prepend_path(L, "cpath", HLUA_PREPEND_PATH_TOSTRING(HLUA_PREPEND_CPATH));
Tim Duesterhus541fe1e2020-01-12 13:55:41 +01008935#endif
8936#undef HLUA_PREPEND_PATH_TOSTRING
8937#undef HLUA_PREPEND_PATH_TOSTRING1
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +01008938
Thierry Fournier59f11be2020-11-29 00:37:41 +01008939 /* Apply configured prepend path */
8940 list_for_each_entry(pp, &prepend_path_list, l)
8941 hlua_prepend_path(L, pp->type, pp->path);
8942
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +01008943 /*
8944 *
8945 * Create "core" object.
8946 *
8947 */
8948
Thierry FOURNIERa2d8c652015-03-11 17:29:39 +01008949 /* This table entry is the object "core" base. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01008950 lua_newtable(L);
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +01008951
Thierry Fournierecb83c22020-11-28 15:49:44 +01008952 /* set the thread id */
8953 hlua_class_const_int(L, "thread", thread_num);
8954
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +01008955 /* Push the loglevel constants. */
Willy Tarreau80f5fae2015-02-27 16:38:20 +01008956 for (i = 0; i < NB_LOG_LEVELS; i++)
Thierry Fournier1eac28f2020-11-28 12:26:24 +01008957 hlua_class_const_int(L, log_levels[i], i);
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +01008958
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008959 /* Register special functions. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01008960 hlua_class_function(L, "register_init", hlua_register_init);
8961 hlua_class_function(L, "register_task", hlua_register_task);
8962 hlua_class_function(L, "register_fetches", hlua_register_fetches);
8963 hlua_class_function(L, "register_converters", hlua_register_converters);
8964 hlua_class_function(L, "register_action", hlua_register_action);
8965 hlua_class_function(L, "register_service", hlua_register_service);
8966 hlua_class_function(L, "register_cli", hlua_register_cli);
8967 hlua_class_function(L, "yield", hlua_yield);
8968 hlua_class_function(L, "set_nice", hlua_set_nice);
8969 hlua_class_function(L, "sleep", hlua_sleep);
8970 hlua_class_function(L, "msleep", hlua_msleep);
8971 hlua_class_function(L, "add_acl", hlua_add_acl);
8972 hlua_class_function(L, "del_acl", hlua_del_acl);
8973 hlua_class_function(L, "set_map", hlua_set_map);
8974 hlua_class_function(L, "del_map", hlua_del_map);
8975 hlua_class_function(L, "tcp", hlua_socket_new);
8976 hlua_class_function(L, "log", hlua_log);
8977 hlua_class_function(L, "Debug", hlua_log_debug);
8978 hlua_class_function(L, "Info", hlua_log_info);
8979 hlua_class_function(L, "Warning", hlua_log_warning);
8980 hlua_class_function(L, "Alert", hlua_log_alert);
8981 hlua_class_function(L, "done", hlua_done);
8982 hlua_fcn_reg_core_fcn(L);
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008983
Thierry Fournier1eac28f2020-11-28 12:26:24 +01008984 lua_setglobal(L, "core");
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01008985
8986 /*
8987 *
Christopher Faulet0f3c8902020-01-31 18:57:12 +01008988 * Create "act" object.
8989 *
8990 */
8991
8992 /* This table entry is the object "act" base. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01008993 lua_newtable(L);
Christopher Faulet0f3c8902020-01-31 18:57:12 +01008994
8995 /* push action return constants */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01008996 hlua_class_const_int(L, "CONTINUE", ACT_RET_CONT);
8997 hlua_class_const_int(L, "STOP", ACT_RET_STOP);
8998 hlua_class_const_int(L, "YIELD", ACT_RET_YIELD);
8999 hlua_class_const_int(L, "ERROR", ACT_RET_ERR);
9000 hlua_class_const_int(L, "DONE", ACT_RET_DONE);
9001 hlua_class_const_int(L, "DENY", ACT_RET_DENY);
9002 hlua_class_const_int(L, "ABORT", ACT_RET_ABRT);
9003 hlua_class_const_int(L, "INVALID", ACT_RET_INV);
Christopher Faulet0f3c8902020-01-31 18:57:12 +01009004
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009005 hlua_class_function(L, "wake_time", hlua_set_wake_time);
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01009006
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009007 lua_setglobal(L, "act");
Christopher Faulet0f3c8902020-01-31 18:57:12 +01009008
9009 /*
9010 *
Thierry FOURNIER3def3932015-04-07 11:27:54 +02009011 * Register class Map
9012 *
9013 */
9014
9015 /* This table entry is the object "Map" base. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009016 lua_newtable(L);
Thierry FOURNIER3def3932015-04-07 11:27:54 +02009017
9018 /* register pattern types. */
9019 for (i=0; i<PAT_MATCH_NUM; i++)
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009020 hlua_class_const_int(L, pat_match_names[i], i);
Thierry FOURNIER4dc71972017-01-28 08:33:08 +01009021 for (i=0; i<PAT_MATCH_NUM; i++) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02009022 snprintf(trash.area, trash.size, "_%s", pat_match_names[i]);
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009023 hlua_class_const_int(L, trash.area, i);
Thierry FOURNIER4dc71972017-01-28 08:33:08 +01009024 }
Thierry FOURNIER3def3932015-04-07 11:27:54 +02009025
9026 /* register constructor. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009027 hlua_class_function(L, "new", hlua_map_new);
Thierry FOURNIER3def3932015-04-07 11:27:54 +02009028
9029 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009030 lua_newtable(L);
Thierry FOURNIER3def3932015-04-07 11:27:54 +02009031
Ilya Shipitsind4259502020-04-08 01:07:56 +05009032 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009033 lua_pushstring(L, "__index");
9034 lua_newtable(L);
Thierry FOURNIER3def3932015-04-07 11:27:54 +02009035
9036 /* Register . */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009037 hlua_class_function(L, "lookup", hlua_map_lookup);
9038 hlua_class_function(L, "slookup", hlua_map_slookup);
Thierry FOURNIER3def3932015-04-07 11:27:54 +02009039
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009040 lua_rawset(L, -3);
Thierry FOURNIER3def3932015-04-07 11:27:54 +02009041
Thierry Fournier45e78d72016-02-19 18:34:46 +01009042 /* Register previous table in the registry with reference and named entry.
9043 * The function hlua_register_metatable() pops the stack, so we
9044 * previously create a copy of the table.
9045 */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009046 lua_pushvalue(L, -1); /* Copy the -1 entry and push it on the stack. */
9047 class_map_ref = hlua_register_metatable(L, CLASS_MAP);
Thierry FOURNIER3def3932015-04-07 11:27:54 +02009048
9049 /* Assign the metatable to the mai Map object. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009050 lua_setmetatable(L, -2);
Thierry FOURNIER3def3932015-04-07 11:27:54 +02009051
9052 /* Set a name to the table. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009053 lua_setglobal(L, "Map");
Thierry FOURNIER3def3932015-04-07 11:27:54 +02009054
9055 /*
9056 *
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01009057 * Register class Channel
9058 *
9059 */
9060
9061 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009062 lua_newtable(L);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01009063
Ilya Shipitsind4259502020-04-08 01:07:56 +05009064 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009065 lua_pushstring(L, "__index");
9066 lua_newtable(L);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01009067
9068 /* Register . */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009069 hlua_class_function(L, "get", hlua_channel_get);
9070 hlua_class_function(L, "dup", hlua_channel_dup);
9071 hlua_class_function(L, "getline", hlua_channel_getline);
9072 hlua_class_function(L, "set", hlua_channel_set);
9073 hlua_class_function(L, "append", hlua_channel_append);
9074 hlua_class_function(L, "send", hlua_channel_send);
9075 hlua_class_function(L, "forward", hlua_channel_forward);
9076 hlua_class_function(L, "get_in_len", hlua_channel_get_in_len);
9077 hlua_class_function(L, "get_out_len", hlua_channel_get_out_len);
9078 hlua_class_function(L, "is_full", hlua_channel_is_full);
9079 hlua_class_function(L, "is_resp", hlua_channel_is_resp);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01009080
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009081 lua_rawset(L, -3);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01009082
9083 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009084 class_channel_ref = hlua_register_metatable(L, CLASS_CHANNEL);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01009085
9086 /*
9087 *
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01009088 * Register class Fetches
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01009089 *
9090 */
9091
9092 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009093 lua_newtable(L);
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01009094
Ilya Shipitsind4259502020-04-08 01:07:56 +05009095 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009096 lua_pushstring(L, "__index");
9097 lua_newtable(L);
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01009098
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +01009099 /* Browse existing fetches and create the associated
9100 * object method.
9101 */
9102 sf = NULL;
9103 while ((sf = sample_fetch_getnext(sf, &idx)) != NULL) {
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +01009104 /* gL.Tua doesn't support '.' and '-' in the function names, replace it
9105 * by an underscore.
9106 */
Willy Tarreaufa92f362021-08-26 16:48:53 +02009107 strlcpy2(trash.area, sf->kw, trash.size);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02009108 for (p = trash.area; *p; p++)
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +01009109 if (*p == '.' || *p == '-' || *p == '+')
9110 *p = '_';
9111
9112 /* Register the function. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009113 lua_pushstring(L, trash.area);
9114 lua_pushlightuserdata(L, sf);
9115 lua_pushcclosure(L, hlua_run_sample_fetch, 1);
9116 lua_rawset(L, -3);
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +01009117 }
9118
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009119 lua_rawset(L, -3);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01009120
9121 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009122 class_fetches_ref = hlua_register_metatable(L, CLASS_FETCHES);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01009123
9124 /*
9125 *
Thierry FOURNIER594afe72015-03-10 23:58:30 +01009126 * Register class Converters
9127 *
9128 */
9129
9130 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009131 lua_newtable(L);
Thierry FOURNIER594afe72015-03-10 23:58:30 +01009132
9133 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009134 lua_pushstring(L, "__index");
9135 lua_newtable(L);
Thierry FOURNIER594afe72015-03-10 23:58:30 +01009136
9137 /* Browse existing converters and create the associated
9138 * object method.
9139 */
9140 sc = NULL;
9141 while ((sc = sample_conv_getnext(sc, &idx)) != NULL) {
Thierry FOURNIER594afe72015-03-10 23:58:30 +01009142 /* gL.Tua doesn't support '.' and '-' in the function names, replace it
9143 * by an underscore.
9144 */
Willy Tarreaufa92f362021-08-26 16:48:53 +02009145 strlcpy2(trash.area, sc->kw, trash.size);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02009146 for (p = trash.area; *p; p++)
Thierry FOURNIER594afe72015-03-10 23:58:30 +01009147 if (*p == '.' || *p == '-' || *p == '+')
9148 *p = '_';
9149
9150 /* Register the function. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009151 lua_pushstring(L, trash.area);
9152 lua_pushlightuserdata(L, sc);
9153 lua_pushcclosure(L, hlua_run_sample_conv, 1);
9154 lua_rawset(L, -3);
Thierry FOURNIER594afe72015-03-10 23:58:30 +01009155 }
9156
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009157 lua_rawset(L, -3);
Thierry FOURNIER594afe72015-03-10 23:58:30 +01009158
9159 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009160 class_converters_ref = hlua_register_metatable(L, CLASS_CONVERTERS);
Thierry FOURNIER594afe72015-03-10 23:58:30 +01009161
9162 /*
9163 *
Thierry FOURNIER08504f42015-03-16 14:17:08 +01009164 * Register class HTTP
9165 *
9166 */
9167
9168 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009169 lua_newtable(L);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01009170
Ilya Shipitsind4259502020-04-08 01:07:56 +05009171 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009172 lua_pushstring(L, "__index");
9173 lua_newtable(L);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01009174
9175 /* Register Lua functions. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009176 hlua_class_function(L, "req_get_headers",hlua_http_req_get_headers);
9177 hlua_class_function(L, "req_del_header", hlua_http_req_del_hdr);
9178 hlua_class_function(L, "req_rep_header", hlua_http_req_rep_hdr);
9179 hlua_class_function(L, "req_rep_value", hlua_http_req_rep_val);
9180 hlua_class_function(L, "req_add_header", hlua_http_req_add_hdr);
9181 hlua_class_function(L, "req_set_header", hlua_http_req_set_hdr);
9182 hlua_class_function(L, "req_set_method", hlua_http_req_set_meth);
9183 hlua_class_function(L, "req_set_path", hlua_http_req_set_path);
9184 hlua_class_function(L, "req_set_query", hlua_http_req_set_query);
9185 hlua_class_function(L, "req_set_uri", hlua_http_req_set_uri);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01009186
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009187 hlua_class_function(L, "res_get_headers",hlua_http_res_get_headers);
9188 hlua_class_function(L, "res_del_header", hlua_http_res_del_hdr);
9189 hlua_class_function(L, "res_rep_header", hlua_http_res_rep_hdr);
9190 hlua_class_function(L, "res_rep_value", hlua_http_res_rep_val);
9191 hlua_class_function(L, "res_add_header", hlua_http_res_add_hdr);
9192 hlua_class_function(L, "res_set_header", hlua_http_res_set_hdr);
9193 hlua_class_function(L, "res_set_status", hlua_http_res_set_status);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01009194
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009195 lua_rawset(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01009196
9197 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009198 class_http_ref = hlua_register_metatable(L, CLASS_HTTP);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01009199
9200 /*
9201 *
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009202 * Register class AppletTCP
9203 *
9204 */
9205
9206 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009207 lua_newtable(L);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009208
Ilya Shipitsind4259502020-04-08 01:07:56 +05009209 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009210 lua_pushstring(L, "__index");
9211 lua_newtable(L);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009212
9213 /* Register Lua functions. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009214 hlua_class_function(L, "getline", hlua_applet_tcp_getline);
9215 hlua_class_function(L, "receive", hlua_applet_tcp_recv);
9216 hlua_class_function(L, "send", hlua_applet_tcp_send);
9217 hlua_class_function(L, "set_priv", hlua_applet_tcp_set_priv);
9218 hlua_class_function(L, "get_priv", hlua_applet_tcp_get_priv);
9219 hlua_class_function(L, "set_var", hlua_applet_tcp_set_var);
9220 hlua_class_function(L, "unset_var", hlua_applet_tcp_unset_var);
9221 hlua_class_function(L, "get_var", hlua_applet_tcp_get_var);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009222
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009223 lua_settable(L, -3);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009224
9225 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009226 class_applet_tcp_ref = hlua_register_metatable(L, CLASS_APPLET_TCP);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009227
9228 /*
9229 *
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009230 * Register class AppletHTTP
9231 *
9232 */
9233
9234 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009235 lua_newtable(L);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009236
Ilya Shipitsind4259502020-04-08 01:07:56 +05009237 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009238 lua_pushstring(L, "__index");
9239 lua_newtable(L);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009240
9241 /* Register Lua functions. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009242 hlua_class_function(L, "set_priv", hlua_applet_http_set_priv);
9243 hlua_class_function(L, "get_priv", hlua_applet_http_get_priv);
9244 hlua_class_function(L, "set_var", hlua_applet_http_set_var);
9245 hlua_class_function(L, "unset_var", hlua_applet_http_unset_var);
9246 hlua_class_function(L, "get_var", hlua_applet_http_get_var);
9247 hlua_class_function(L, "getline", hlua_applet_http_getline);
9248 hlua_class_function(L, "receive", hlua_applet_http_recv);
9249 hlua_class_function(L, "send", hlua_applet_http_send);
9250 hlua_class_function(L, "add_header", hlua_applet_http_addheader);
9251 hlua_class_function(L, "set_status", hlua_applet_http_status);
9252 hlua_class_function(L, "start_response", hlua_applet_http_start_response);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009253
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009254 lua_settable(L, -3);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009255
9256 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009257 class_applet_http_ref = hlua_register_metatable(L, CLASS_APPLET_HTTP);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009258
9259 /*
9260 *
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01009261 * Register class TXN
9262 *
9263 */
9264
9265 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009266 lua_newtable(L);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01009267
Ilya Shipitsind4259502020-04-08 01:07:56 +05009268 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009269 lua_pushstring(L, "__index");
9270 lua_newtable(L);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01009271
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01009272 /* Register Lua functions. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009273 hlua_class_function(L, "set_priv", hlua_set_priv);
9274 hlua_class_function(L, "get_priv", hlua_get_priv);
9275 hlua_class_function(L, "set_var", hlua_set_var);
9276 hlua_class_function(L, "unset_var", hlua_unset_var);
9277 hlua_class_function(L, "get_var", hlua_get_var);
9278 hlua_class_function(L, "done", hlua_txn_done);
9279 hlua_class_function(L, "reply", hlua_txn_reply_new);
9280 hlua_class_function(L, "set_loglevel", hlua_txn_set_loglevel);
9281 hlua_class_function(L, "set_tos", hlua_txn_set_tos);
9282 hlua_class_function(L, "set_mark", hlua_txn_set_mark);
9283 hlua_class_function(L, "set_priority_class", hlua_txn_set_priority_class);
9284 hlua_class_function(L, "set_priority_offset", hlua_txn_set_priority_offset);
9285 hlua_class_function(L, "deflog", hlua_txn_deflog);
9286 hlua_class_function(L, "log", hlua_txn_log);
9287 hlua_class_function(L, "Debug", hlua_txn_log_debug);
9288 hlua_class_function(L, "Info", hlua_txn_log_info);
9289 hlua_class_function(L, "Warning", hlua_txn_log_warning);
9290 hlua_class_function(L, "Alert", hlua_txn_log_alert);
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01009291
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009292 lua_rawset(L, -3);
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01009293
9294 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009295 class_txn_ref = hlua_register_metatable(L, CLASS_TXN);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009296
9297 /*
9298 *
Christopher Faulet700d9e82020-01-31 12:21:52 +01009299 * Register class reply
9300 *
9301 */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009302 lua_newtable(L);
9303 lua_pushstring(L, "__index");
9304 lua_newtable(L);
9305 hlua_class_function(L, "set_status", hlua_txn_reply_set_status);
9306 hlua_class_function(L, "add_header", hlua_txn_reply_add_header);
9307 hlua_class_function(L, "del_header", hlua_txn_reply_del_header);
9308 hlua_class_function(L, "set_body", hlua_txn_reply_set_body);
9309 lua_settable(L, -3); /* Sets the __index entry. */
9310 class_txn_reply_ref = luaL_ref(L, LUA_REGISTRYINDEX);
Christopher Faulet700d9e82020-01-31 12:21:52 +01009311
9312
9313 /*
9314 *
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009315 * Register class Socket
9316 *
9317 */
9318
9319 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009320 lua_newtable(L);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009321
Ilya Shipitsind4259502020-04-08 01:07:56 +05009322 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009323 lua_pushstring(L, "__index");
9324 lua_newtable(L);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009325
Baptiste Assmann84bb4932015-03-02 21:40:06 +01009326#ifdef USE_OPENSSL
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009327 hlua_class_function(L, "connect_ssl", hlua_socket_connect_ssl);
Baptiste Assmann84bb4932015-03-02 21:40:06 +01009328#endif
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009329 hlua_class_function(L, "connect", hlua_socket_connect);
9330 hlua_class_function(L, "send", hlua_socket_send);
9331 hlua_class_function(L, "receive", hlua_socket_receive);
9332 hlua_class_function(L, "close", hlua_socket_close);
9333 hlua_class_function(L, "getpeername", hlua_socket_getpeername);
9334 hlua_class_function(L, "getsockname", hlua_socket_getsockname);
9335 hlua_class_function(L, "setoption", hlua_socket_setoption);
9336 hlua_class_function(L, "settimeout", hlua_socket_settimeout);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009337
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009338 lua_rawset(L, -3); /* Push the last 2 entries in the table at index -3 */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009339
9340 /* Register the garbage collector entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009341 lua_pushstring(L, "__gc");
9342 lua_pushcclosure(L, hlua_socket_gc, 0);
9343 lua_rawset(L, -3); /* Push the last 2 entries in the table at index -3 */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009344
9345 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009346 class_socket_ref = hlua_register_metatable(L, CLASS_SOCKET);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009347
Thierry Fournieraafc7772020-12-04 11:47:47 +01009348 lua_atpanic(L, hlua_panic_safe);
9349
9350 return L;
9351}
9352
9353void hlua_init(void) {
9354 int i;
Amaury Denoyelle239fdbf2021-03-24 10:22:03 +01009355 char *errmsg;
Thierry Fournieraafc7772020-12-04 11:47:47 +01009356#ifdef USE_OPENSSL
9357 struct srv_kw *kw;
9358 int tmp_error;
9359 char *error;
9360 char *args[] = { /* SSL client configuration. */
9361 "ssl",
9362 "verify",
9363 "none",
9364 NULL
9365 };
9366#endif
9367
9368 /* Init post init function list head */
9369 for (i = 0; i < MAX_THREADS + 1; i++)
9370 LIST_INIT(&hlua_init_functions[i]);
9371
9372 /* Init state for common/shared lua parts */
9373 hlua_state_id = 0;
9374 ha_set_tid(0);
9375 hlua_states[0] = hlua_init_state(0);
9376
9377 /* Init state 1 for thread 0. We have at least one thread. */
9378 hlua_state_id = 1;
9379 ha_set_tid(0);
9380 hlua_states[1] = hlua_init_state(1);
9381
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009382 /* Proxy and server configuration initialisation. */
Amaury Denoyelle239fdbf2021-03-24 10:22:03 +01009383 socket_proxy = alloc_new_proxy("LUA-SOCKET", PR_CAP_FE|PR_CAP_BE|PR_CAP_LUA, &errmsg);
9384 if (!socket_proxy) {
9385 fprintf(stderr, "Lua init: %s\n", errmsg);
9386 exit(1);
9387 }
9388 proxy_preset_defaults(socket_proxy);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009389
9390 /* Init TCP server: unchanged parameters */
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +01009391 socket_tcp = new_server(socket_proxy);
9392 if (!socket_tcp) {
9393 fprintf(stderr, "Lua init: failed to allocate tcp server socket\n");
9394 exit(1);
9395 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009396
9397#ifdef USE_OPENSSL
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009398 /* Init TCP server: unchanged parameters */
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +01009399 socket_ssl = new_server(socket_proxy);
9400 if (!socket_ssl) {
9401 fprintf(stderr, "Lua init: failed to allocate ssl server socket\n");
9402 exit(1);
9403 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009404
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +01009405 socket_ssl->use_ssl = 1;
9406 socket_ssl->xprt = xprt_get(XPRT_SSL);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009407
Bertrand Jacquin80839ff2021-01-21 19:14:46 +00009408 for (i = 0; args[i] != NULL; i++) {
9409 if ((kw = srv_find_kw(args[i])) != NULL) { /* Maybe it's registered server keyword */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009410 /*
9411 *
9412 * If the keyword is not known, we can search in the registered
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08009413 * server keywords. This is useful to configure special SSL
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009414 * features like client certificates and ssl_verify.
9415 *
9416 */
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +01009417 tmp_error = kw->parse(args, &i, socket_proxy, socket_ssl, &error);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009418 if (tmp_error != 0) {
9419 fprintf(stderr, "INTERNAL ERROR: %s\n", error);
9420 abort(); /* This must be never arrives because the command line
9421 not editable by the user. */
9422 }
Bertrand Jacquin80839ff2021-01-21 19:14:46 +00009423 i += kw->skip;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009424 }
9425 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009426#endif
Thierry Fournier75933d42016-01-21 09:30:18 +01009427
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01009428}
Willy Tarreaubb57d942016-12-21 19:04:56 +01009429
Tim Duesterhusd0c0ca22020-07-04 11:53:26 +02009430static void hlua_deinit()
9431{
Willy Tarreau186f3762020-12-04 11:48:12 +01009432 int thr;
9433
9434 for (thr = 0; thr < MAX_THREADS+1; thr++) {
9435 if (hlua_states[thr])
9436 lua_close(hlua_states[thr]);
9437 }
Willy Tarreau430bf4a2021-03-04 09:45:32 +01009438
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +01009439 free_server(socket_tcp);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01009440
Willy Tarreau0f143af2021-03-05 10:41:48 +01009441#ifdef USE_OPENSSL
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +01009442 free_server(socket_ssl);
Willy Tarreau0f143af2021-03-05 10:41:48 +01009443#endif
Amaury Denoyelle239fdbf2021-03-24 10:22:03 +01009444
9445 free_proxy(socket_proxy);
Tim Duesterhusd0c0ca22020-07-04 11:53:26 +02009446}
9447
9448REGISTER_POST_DEINIT(hlua_deinit);
9449
Willy Tarreau80713382018-11-26 10:19:54 +01009450static void hlua_register_build_options(void)
9451{
Willy Tarreaubb57d942016-12-21 19:04:56 +01009452 char *ptr = NULL;
Willy Tarreau80713382018-11-26 10:19:54 +01009453
Willy Tarreaubb57d942016-12-21 19:04:56 +01009454 memprintf(&ptr, "Built with Lua version : %s", LUA_RELEASE);
9455 hap_register_build_opts(ptr, 1);
9456}
Willy Tarreau80713382018-11-26 10:19:54 +01009457
9458INITCALL0(STG_REGISTER, hlua_register_build_options);