blob: f1648100a1f9ad599e1f4c47c0cfc475a59738a5 [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
Aurelien DARRAGONa3741612024-03-01 15:55:17 +0100189/* below is an helper function to retrieve string on on Lua stack at <index>
190 * in a safe way (function may not LJMP). It can be useful to retrieve errors
191 * at the top of the stack from an unprotected environment.
192 *
193 * The returned string will is only valid as long as the value at <index> is
194 * not removed from the stack.
195 *
196 * It is assumed that the calling function is allowed to manipulate <L>
197 */
198__LJMP static int _hlua_tostring_safe(lua_State *L)
199{
200 const char **str = lua_touserdata(L, 1);
201 const char *cur_str = MAY_LJMP(lua_tostring(L, 2));
202
203 if (cur_str)
204 *str = cur_str;
205 return 0;
206}
207static const char *hlua_tostring_safe(lua_State *L, int index)
208{
209 const char *str = NULL;
210
211 if (!lua_checkstack(L, 4))
212 return NULL;
213
214 /* before any stack modification, save the targeted value on the top of
215 * the stack: this will allow us to use relative index to target it.
216 */
217 lua_pushvalue(L, index);
218
219 /* push our custom _hlua_tostring_safe() function on the stack, then push
220 * our own string pointer and targeted value (at <index>) as argument
221 */
222 lua_pushcfunction(L, _hlua_tostring_safe);
223 lua_pushlightuserdata(L, &str); // 1st func argument = string pointer
224 lua_pushvalue(L, -3); // 2nd func argument = targeted value
225
226 lua_remove(L, -4); // remove <index> copy as we're done using it
227
228 /* call our custom function with proper arguments using pcall() to catch
229 * exceptions (if any)
230 */
231 switch (lua_pcall(L, 2, 0, 0)) {
232 case LUA_OK:
233 break;
234 default:
235 /* error was caught */
236 return NULL;
237 }
238 return str;
239}
240
Thierry Fournier7cbe5042020-11-28 17:02:21 +0100241#define SET_SAFE_LJMP_L(__L, __HLUA) \
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200242 ({ \
243 int ret; \
Aurelien DARRAGONe00bf5d2023-03-21 13:22:33 +0100244 hlua_lock(__HLUA); \
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200245 if (setjmp(safe_ljmp_env) != 0) { \
246 lua_atpanic(__L, hlua_panic_safe); \
247 ret = 0; \
Aurelien DARRAGONe00bf5d2023-03-21 13:22:33 +0100248 hlua_unlock(__HLUA); \
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200249 } else { \
250 lua_atpanic(__L, hlua_panic_ljmp); \
251 ret = 1; \
252 } \
253 ret; \
254 })
255
256/* If we are the last function catching Lua errors, we
257 * must reset the panic function.
258 */
Thierry Fournier7cbe5042020-11-28 17:02:21 +0100259#define RESET_SAFE_LJMP_L(__L, __HLUA) \
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200260 do { \
261 lua_atpanic(__L, hlua_panic_safe); \
Aurelien DARRAGONe00bf5d2023-03-21 13:22:33 +0100262 hlua_unlock(__HLUA); \
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200263 } while(0)
264
Thierry Fournier7cbe5042020-11-28 17:02:21 +0100265#define SET_SAFE_LJMP(__HLUA) \
266 SET_SAFE_LJMP_L((__HLUA)->T, __HLUA)
267
268#define RESET_SAFE_LJMP(__HLUA) \
269 RESET_SAFE_LJMP_L((__HLUA)->T, __HLUA)
270
271#define SET_SAFE_LJMP_PARENT(__HLUA) \
Thierry Fournier021d9862020-11-28 23:42:03 +0100272 SET_SAFE_LJMP_L(hlua_states[(__HLUA)->state_id], __HLUA)
Thierry Fournier7cbe5042020-11-28 17:02:21 +0100273
274#define RESET_SAFE_LJMP_PARENT(__HLUA) \
Thierry Fournier021d9862020-11-28 23:42:03 +0100275 RESET_SAFE_LJMP_L(hlua_states[(__HLUA)->state_id], __HLUA)
Thierry Fournier7cbe5042020-11-28 17:02:21 +0100276
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +0200277/* Applet status flags */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200278#define APPLET_DONE 0x01 /* applet processing is done. */
Christopher Faulet18c2e8d2019-03-01 12:02:08 +0100279/* unused: 0x02 */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200280#define APPLET_HDR_SENT 0x04 /* Response header sent. */
Christopher Fauleta2097962019-07-15 16:25:33 +0200281/* unused: 0x08, 0x10 */
Thierry FOURNIERd93ea2b2015-12-20 19:14:52 +0100282#define APPLET_HTTP11 0x20 /* Last chunk sent. */
Christopher Faulet56a3d6e2019-02-27 22:06:23 +0100283#define APPLET_RSP_SENT 0x40 /* The response was fully sent */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200284
Thierry Fournierafc63e22020-11-28 17:06:51 +0100285/* The main Lua execution context. The 0 index is the
286 * common state shared by all threads.
287 */
Willy Tarreau186f3762020-12-04 11:48:12 +0100288static lua_State *hlua_states[MAX_THREADS + 1];
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100289
Thierry FOURNIERebed6e92016-12-16 11:54:07 +0100290/* This is the memory pool containing struct lua for applets
291 * (including cli).
292 */
Willy Tarreau8ceae722018-11-26 11:58:30 +0100293DECLARE_STATIC_POOL(pool_head_hlua, "hlua", sizeof(struct hlua));
Thierry FOURNIERebed6e92016-12-16 11:54:07 +0100294
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +0100295/* Used for Socket connection. */
Amaury Denoyelle239fdbf2021-03-24 10:22:03 +0100296static struct proxy *socket_proxy;
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +0100297static struct server *socket_tcp;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +0100298#ifdef USE_OPENSSL
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +0100299static struct server *socket_ssl;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +0100300#endif
301
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +0100302/* List head of the function called at the initialisation time. */
Thierry Fournierc7492592020-11-28 23:57:24 +0100303struct list hlua_init_functions[MAX_THREADS + 1];
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +0100304
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +0100305/* The following variables contains the reference of the different
306 * Lua classes. These references are useful for identify metadata
307 * associated with an object.
308 */
Thierry FOURNIER65f34c62015-02-16 20:11:43 +0100309static int class_txn_ref;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +0100310static int class_socket_ref;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +0100311static int class_channel_ref;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +0100312static int class_fetches_ref;
Thierry FOURNIER594afe72015-03-10 23:58:30 +0100313static int class_converters_ref;
Thierry FOURNIER08504f42015-03-16 14:17:08 +0100314static int class_http_ref;
Thierry FOURNIER3def3932015-04-07 11:27:54 +0200315static int class_map_ref;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +0200316static int class_applet_tcp_ref;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200317static int class_applet_http_ref;
Christopher Faulet700d9e82020-01-31 12:21:52 +0100318static int class_txn_reply_ref;
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +0100319
Thierry FOURNIERbd413492015-03-03 16:52:26 +0100320/* Global Lua execution timeout. By default Lua, execution linked
Willy Tarreau87b09662015-04-03 00:22:06 +0200321 * with stream (actions, sample-fetches and converters) have a
Thierry FOURNIERbd413492015-03-03 16:52:26 +0100322 * short timeout. Lua linked with tasks doesn't have a timeout
323 * because a task may remain alive during all the haproxy execution.
324 */
325static unsigned int hlua_timeout_session = 4000; /* session timeout. */
326static unsigned int hlua_timeout_task = TICK_ETERNITY; /* task timeout. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +0200327static unsigned int hlua_timeout_applet = 4000; /* applet timeout. */
Thierry FOURNIERbd413492015-03-03 16:52:26 +0100328
Thierry FOURNIERee9f8022015-03-03 17:37:37 +0100329/* Interrupts the Lua processing each "hlua_nb_instruction" instructions.
330 * it is used for preventing infinite loops.
331 *
332 * I test the scheer with an infinite loop containing one incrementation
333 * and one test. I run this loop between 10 seconds, I raise a ceil of
334 * 710M loops from one interrupt each 9000 instructions, so I fix the value
335 * to one interrupt each 10 000 instructions.
336 *
337 * configured | Number of
338 * instructions | loops executed
339 * between two | in milions
340 * forced yields |
341 * ---------------+---------------
342 * 10 | 160
343 * 500 | 670
344 * 1000 | 680
345 * 5000 | 700
346 * 7000 | 700
347 * 8000 | 700
348 * 9000 | 710 <- ceil
349 * 10000 | 710
350 * 100000 | 710
351 * 1000000 | 710
352 *
353 */
354static unsigned int hlua_nb_instruction = 10000;
355
Willy Tarreaucdb53462020-12-02 12:12:00 +0100356/* Descriptor for the memory allocation state. The limit is pre-initialised to
357 * 0 until it is replaced by "tune.lua.maxmem" during the config parsing, or it
358 * is replaced with ~0 during post_init after everything was loaded. This way
359 * it is guaranteed that if limit is ~0 the boot is complete and that if it's
360 * zero it's not yet limited and proper accounting is required.
Willy Tarreau32f61e22015-03-18 17:54:59 +0100361 */
362struct hlua_mem_allocator {
363 size_t allocated;
364 size_t limit;
365};
366
Willy Tarreaucdb53462020-12-02 12:12:00 +0100367static struct hlua_mem_allocator hlua_global_allocator THREAD_ALIGNED(64);
Willy Tarreau32f61e22015-03-18 17:54:59 +0100368
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100369/* These functions converts types between HAProxy internal args or
370 * sample and LUA types. Another function permits to check if the
371 * LUA stack contains arguments according with an required ARG_T
372 * format.
373 */
374static int hlua_arg2lua(lua_State *L, const struct arg *arg);
375static int hlua_lua2arg(lua_State *L, int ud, struct arg *arg);
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100376__LJMP static int hlua_lua2arg_check(lua_State *L, int first, struct arg *argp,
David Carlier0c437f42016-04-27 16:21:56 +0100377 uint64_t mask, struct proxy *p);
Willy Tarreau5eadada2015-03-10 17:28:54 +0100378static int hlua_smp2lua(lua_State *L, struct sample *smp);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100379static int hlua_smp2lua_str(lua_State *L, struct sample *smp);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100380static int hlua_lua2smp(lua_State *L, int ud, struct sample *smp);
381
Christopher Faulet9d1332b2020-02-24 16:46:16 +0100382__LJMP static int hlua_http_get_headers(lua_State *L, struct http_msg *msg);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200383
Thierry Fournier59f11be2020-11-29 00:37:41 +0100384struct prepend_path {
385 struct list l;
386 char *type;
387 char *path;
388};
389
390static struct list prepend_path_list = LIST_HEAD_INIT(prepend_path_list);
391
Thierry FOURNIER23bc3752015-09-11 19:15:43 +0200392#define SEND_ERR(__be, __fmt, __args...) \
393 do { \
394 send_log(__be, LOG_ERR, __fmt, ## __args); \
395 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) \
Christopher Faulet767a84b2017-11-24 16:50:31 +0100396 ha_alert(__fmt, ## __args); \
Thierry FOURNIER23bc3752015-09-11 19:15:43 +0200397 } while (0)
398
Thierry Fournier62a22aa2020-11-28 21:06:35 +0100399static inline struct hlua_function *new_hlua_function()
400{
401 struct hlua_function *fcn;
Thierry Fournierc7492592020-11-28 23:57:24 +0100402 int i;
Thierry Fournier62a22aa2020-11-28 21:06:35 +0100403
404 fcn = calloc(1, sizeof(*fcn));
405 if (!fcn)
406 return NULL;
Willy Tarreau2b718102021-04-21 07:32:39 +0200407 LIST_APPEND(&referenced_functions, &fcn->l);
Thierry Fournierc7492592020-11-28 23:57:24 +0100408 for (i = 0; i < MAX_THREADS + 1; i++)
409 fcn->function_ref[i] = -1;
Thierry Fournier62a22aa2020-11-28 21:06:35 +0100410 return fcn;
411}
412
Christopher Fauletdda44442021-04-12 14:05:43 +0200413static inline void release_hlua_function(struct hlua_function *fcn)
414{
415 if (!fcn)
416 return;
417 if (fcn->name)
418 ha_free(&fcn->name);
Willy Tarreau2b718102021-04-21 07:32:39 +0200419 LIST_DELETE(&fcn->l);
Christopher Fauletdda44442021-04-12 14:05:43 +0200420 ha_free(&fcn);
421}
422
Thierry Fournierc7492592020-11-28 23:57:24 +0100423/* If the common state is set, the stack id is 0, otherwise it is the tid + 1 */
424static inline int fcn_ref_to_stack_id(struct hlua_function *fcn)
425{
426 if (fcn->function_ref[0] == -1)
427 return tid + 1;
428 return 0;
429}
430
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100431/* Used to check an Lua function type in the stack. It creates and
432 * returns a reference of the function. This function throws an
Aurelien DARRAGON5ce11522023-03-02 17:50:49 +0100433 * error if the argument is not a "function".
434 * When no longer used, the ref must be released with hlua_unref()
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100435 */
436__LJMP unsigned int hlua_checkfunction(lua_State *L, int argno)
437{
438 if (!lua_isfunction(L, argno)) {
Thierry FOURNIERfd1e9552018-02-23 18:41:18 +0100439 const char *msg = lua_pushfstring(L, "function expected, got %s", luaL_typename(L, argno));
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100440 WILL_LJMP(luaL_argerror(L, argno, msg));
441 }
442 lua_pushvalue(L, argno);
443 return luaL_ref(L, LUA_REGISTRYINDEX);
444}
445
Christopher Fauletddc90322020-02-25 10:20:04 +0100446/* Used to check an Lua table type in the stack. It creates and
447 * returns a reference of the table. This function throws an
Aurelien DARRAGON5ce11522023-03-02 17:50:49 +0100448 * error if the argument is not a "table".
449 * When no longer used, the ref must be released with hlua_unref()
Christopher Fauletddc90322020-02-25 10:20:04 +0100450 */
451__LJMP unsigned int hlua_checktable(lua_State *L, int argno)
452{
453 if (!lua_istable(L, argno)) {
454 const char *msg = lua_pushfstring(L, "table expected, got %s", luaL_typename(L, argno));
455 WILL_LJMP(luaL_argerror(L, argno, msg));
456 }
457 lua_pushvalue(L, argno);
458 return luaL_ref(L, LUA_REGISTRYINDEX);
459}
460
Aurelien DARRAGON5ce11522023-03-02 17:50:49 +0100461/* Get a reference to the object that is at the top of the stack
462 * The referenced object will be popped from the stack
463 *
464 * The function returns the reference to the object which must
465 * be cleared using hlua_unref() when no longer used
466 */
467__LJMP int hlua_ref(lua_State *L)
468{
469 return MAY_LJMP(luaL_ref(L, LUA_REGISTRYINDEX));
470}
471
472/* Pushes a reference previously created using luaL_ref(L, LUA_REGISTRYINDEX)
473 * on <L> stack
474 * (ie: hlua_checkfunction(), hlua_checktable() or hlua_ref())
475 *
476 * When the reference is no longer used, it should be released by calling
477 * hlua_unref()
478 *
479 * <L> can be from any co-routine as long as it belongs to the same lua
480 * parent state that the one used to get the reference.
481 */
482void hlua_pushref(lua_State *L, int ref)
483{
484 lua_rawgeti(L, LUA_REGISTRYINDEX, ref);
485}
486
487/* Releases a reference previously created using luaL_ref(L, LUA_REGISTRYINDEX)
488 * (ie: hlua_checkfunction(), hlua_checktable() or hlua_ref())
489 *
490 * This will allow the reference to be reused and the referred object
491 * to be garbage collected.
492 *
493 * <L> can be from any co-routine as long as it belongs to the same lua
494 * parent state that the one used to get the reference.
495 */
496void hlua_unref(lua_State *L, int ref)
497{
498 luaL_unref(L, LUA_REGISTRYINDEX, ref);
499}
500
Christopher Fauletd09cc512021-03-24 14:48:45 +0100501__LJMP const char *hlua_traceback(lua_State *L, const char* sep)
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200502{
503 lua_Debug ar;
504 int level = 0;
Willy Tarreau83061a82018-07-13 11:56:34 +0200505 struct buffer *msg = get_trash_chunk();
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200506
507 while (lua_getstack(L, level++, &ar)) {
508
509 /* Add separator */
Christopher Fauletd09cc512021-03-24 14:48:45 +0100510 if (b_data(msg))
511 chunk_appendf(msg, "%s", sep);
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200512
513 /* Fill fields:
514 * 'S': fills in the fields source, short_src, linedefined, lastlinedefined, and what;
515 * 'l': fills in the field currentline;
516 * 'n': fills in the field name and namewhat;
517 * 't': fills in the field istailcall;
518 */
519 lua_getinfo(L, "Slnt", &ar);
520
521 /* Append code localisation */
522 if (ar.currentline > 0)
Christopher Fauletd09cc512021-03-24 14:48:45 +0100523 chunk_appendf(msg, "%s:%d: ", ar.short_src, ar.currentline);
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200524 else
Christopher Fauletd09cc512021-03-24 14:48:45 +0100525 chunk_appendf(msg, "%s: ", ar.short_src);
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200526
527 /*
528 * Get function name
529 *
530 * if namewhat is no empty, name is defined.
531 * what contains "Lua" for Lua function, "C" for C function,
532 * or "main" for main code.
533 */
534 if (*ar.namewhat != '\0' && ar.name != NULL) /* is there a name from code? */
Christopher Fauletd09cc512021-03-24 14:48:45 +0100535 chunk_appendf(msg, "in %s '%s'", ar.namewhat, ar.name); /* use it */
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200536
537 else if (*ar.what == 'm') /* "main", the code is not executed in a function */
Christopher Fauletd09cc512021-03-24 14:48:45 +0100538 chunk_appendf(msg, "in main chunk");
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200539
540 else if (*ar.what != 'C') /* for Lua functions, use <file:line> */
Christopher Fauletd09cc512021-03-24 14:48:45 +0100541 chunk_appendf(msg, "in function line %d", ar.linedefined);
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200542
543 else /* nothing left... */
544 chunk_appendf(msg, "?");
545
546
547 /* Display tailed call */
548 if (ar.istailcall)
549 chunk_appendf(msg, " ...");
550 }
551
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200552 return msg->area;
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200553}
554
555
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100556/* This function check the number of arguments available in the
557 * stack. If the number of arguments available is not the same
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +0500558 * then <nb> an error is thrown.
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100559 */
560__LJMP static inline void check_args(lua_State *L, int nb, char *fcn)
561{
562 if (lua_gettop(L) == nb)
563 return;
564 WILL_LJMP(luaL_error(L, "'%s' needs %d arguments", fcn, nb));
565}
566
Mark Lakes22154b42018-01-29 14:38:40 -0800567/* This function pushes an error string prefixed by the file name
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100568 * and the line number where the error is encountered.
569 */
570static int hlua_pusherror(lua_State *L, const char *fmt, ...)
571{
572 va_list argp;
573 va_start(argp, fmt);
574 luaL_where(L, 1);
575 lua_pushvfstring(L, fmt, argp);
576 va_end(argp);
577 lua_concat(L, 2);
578 return 1;
579}
580
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100581/* This functions is used with sample fetch and converters. It
582 * converts the HAProxy configuration argument in a lua stack
583 * values.
584 *
585 * It takes an array of "arg", and each entry of the array is
586 * converted and pushed in the LUA stack.
587 */
588static int hlua_arg2lua(lua_State *L, const struct arg *arg)
589{
590 switch (arg->type) {
591 case ARGT_SINT:
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100592 case ARGT_TIME:
593 case ARGT_SIZE:
Thierry FOURNIERf90838b2015-03-06 13:48:32 +0100594 lua_pushinteger(L, arg->data.sint);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100595 break;
596
597 case ARGT_STR:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200598 lua_pushlstring(L, arg->data.str.area, arg->data.str.data);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100599 break;
600
601 case ARGT_IPV4:
602 case ARGT_IPV6:
603 case ARGT_MSK4:
604 case ARGT_MSK6:
605 case ARGT_FE:
606 case ARGT_BE:
607 case ARGT_TAB:
608 case ARGT_SRV:
609 case ARGT_USR:
610 case ARGT_MAP:
611 default:
612 lua_pushnil(L);
613 break;
614 }
615 return 1;
616}
617
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +0500618/* This function take one entry in an LUA stack at the index "ud",
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100619 * and try to convert it in an HAProxy argument entry. This is useful
Ilya Shipitsind4259502020-04-08 01:07:56 +0500620 * with sample fetch wrappers. The input arguments are given to the
621 * lua wrapper and converted as arg list by the function.
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100622 */
623static int hlua_lua2arg(lua_State *L, int ud, struct arg *arg)
624{
625 switch (lua_type(L, ud)) {
626
627 case LUA_TNUMBER:
628 case LUA_TBOOLEAN:
629 arg->type = ARGT_SINT;
630 arg->data.sint = lua_tointeger(L, ud);
631 break;
632
633 case LUA_TSTRING:
634 arg->type = ARGT_STR;
Tim Duesterhus2e89dec2019-09-29 23:03:08 +0200635 arg->data.str.area = (char *)lua_tolstring(L, ud, &arg->data.str.data);
Tim Duesterhus29d2e8a2019-09-29 23:03:07 +0200636 /* We don't know the actual size of the underlying allocation, so be conservative. */
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200637 arg->data.str.size = arg->data.str.data+1; /* count the terminating null byte */
Tim Duesterhus29d2e8a2019-09-29 23:03:07 +0200638 arg->data.str.head = 0;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100639 break;
640
641 case LUA_TUSERDATA:
642 case LUA_TNIL:
643 case LUA_TTABLE:
644 case LUA_TFUNCTION:
645 case LUA_TTHREAD:
646 case LUA_TLIGHTUSERDATA:
647 arg->type = ARGT_SINT;
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +0200648 arg->data.sint = 0;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100649 break;
650 }
651 return 1;
652}
653
654/* the following functions are used to convert a struct sample
655 * in Lua type. This useful to convert the return of the
Ilya Shipitsind4259502020-04-08 01:07:56 +0500656 * fetches or converters.
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100657 */
Willy Tarreau5eadada2015-03-10 17:28:54 +0100658static int hlua_smp2lua(lua_State *L, struct sample *smp)
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100659{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200660 switch (smp->data.type) {
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100661 case SMP_T_SINT:
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100662 case SMP_T_BOOL:
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200663 lua_pushinteger(L, smp->data.u.sint);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100664 break;
665
666 case SMP_T_BIN:
667 case SMP_T_STR:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200668 lua_pushlstring(L, smp->data.u.str.area, smp->data.u.str.data);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100669 break;
670
671 case SMP_T_METH:
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200672 switch (smp->data.u.meth.meth) {
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100673 case HTTP_METH_OPTIONS: lua_pushstring(L, "OPTIONS"); break;
674 case HTTP_METH_GET: lua_pushstring(L, "GET"); break;
675 case HTTP_METH_HEAD: lua_pushstring(L, "HEAD"); break;
676 case HTTP_METH_POST: lua_pushstring(L, "POST"); break;
677 case HTTP_METH_PUT: lua_pushstring(L, "PUT"); break;
678 case HTTP_METH_DELETE: lua_pushstring(L, "DELETE"); break;
679 case HTTP_METH_TRACE: lua_pushstring(L, "TRACE"); break;
680 case HTTP_METH_CONNECT: lua_pushstring(L, "CONNECT"); break;
681 case HTTP_METH_OTHER:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200682 lua_pushlstring(L, smp->data.u.meth.str.area, smp->data.u.meth.str.data);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100683 break;
684 default:
685 lua_pushnil(L);
686 break;
687 }
688 break;
689
690 case SMP_T_IPV4:
691 case SMP_T_IPV6:
692 case SMP_T_ADDR: /* This type is never used to qualify a sample. */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200693 if (sample_casts[smp->data.type][SMP_T_STR] &&
694 sample_casts[smp->data.type][SMP_T_STR](smp))
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200695 lua_pushlstring(L, smp->data.u.str.area, smp->data.u.str.data);
Willy Tarreau5eadada2015-03-10 17:28:54 +0100696 else
697 lua_pushnil(L);
698 break;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100699 default:
700 lua_pushnil(L);
701 break;
702 }
703 return 1;
704}
705
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100706/* the following functions are used to convert a struct sample
707 * in Lua strings. This is useful to convert the return of the
Ilya Shipitsind4259502020-04-08 01:07:56 +0500708 * fetches or converters.
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100709 */
710static int hlua_smp2lua_str(lua_State *L, struct sample *smp)
711{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200712 switch (smp->data.type) {
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100713
714 case SMP_T_BIN:
715 case SMP_T_STR:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200716 lua_pushlstring(L, smp->data.u.str.area, smp->data.u.str.data);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100717 break;
718
719 case SMP_T_METH:
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200720 switch (smp->data.u.meth.meth) {
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100721 case HTTP_METH_OPTIONS: lua_pushstring(L, "OPTIONS"); break;
722 case HTTP_METH_GET: lua_pushstring(L, "GET"); break;
723 case HTTP_METH_HEAD: lua_pushstring(L, "HEAD"); break;
724 case HTTP_METH_POST: lua_pushstring(L, "POST"); break;
725 case HTTP_METH_PUT: lua_pushstring(L, "PUT"); break;
726 case HTTP_METH_DELETE: lua_pushstring(L, "DELETE"); break;
727 case HTTP_METH_TRACE: lua_pushstring(L, "TRACE"); break;
728 case HTTP_METH_CONNECT: lua_pushstring(L, "CONNECT"); break;
729 case HTTP_METH_OTHER:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200730 lua_pushlstring(L, smp->data.u.meth.str.area, smp->data.u.meth.str.data);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100731 break;
732 default:
733 lua_pushstring(L, "");
734 break;
735 }
736 break;
737
738 case SMP_T_SINT:
739 case SMP_T_BOOL:
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100740 case SMP_T_IPV4:
741 case SMP_T_IPV6:
742 case SMP_T_ADDR: /* This type is never used to qualify a sample. */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200743 if (sample_casts[smp->data.type][SMP_T_STR] &&
744 sample_casts[smp->data.type][SMP_T_STR](smp))
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200745 lua_pushlstring(L, smp->data.u.str.area, smp->data.u.str.data);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100746 else
747 lua_pushstring(L, "");
748 break;
749 default:
750 lua_pushstring(L, "");
751 break;
752 }
753 return 1;
754}
755
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100756/* the following functions are used to convert an Lua type in a
757 * struct sample. This is useful to provide data from a converter
758 * to the LUA code.
759 */
760static int hlua_lua2smp(lua_State *L, int ud, struct sample *smp)
761{
762 switch (lua_type(L, ud)) {
763
764 case LUA_TNUMBER:
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200765 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200766 smp->data.u.sint = lua_tointeger(L, ud);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100767 break;
768
769
770 case LUA_TBOOLEAN:
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200771 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200772 smp->data.u.sint = lua_toboolean(L, ud);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100773 break;
774
775 case LUA_TSTRING:
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200776 smp->data.type = SMP_T_STR;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100777 smp->flags |= SMP_F_CONST;
Tim Duesterhus2e89dec2019-09-29 23:03:08 +0200778 smp->data.u.str.area = (char *)lua_tolstring(L, ud, &smp->data.u.str.data);
Tim Duesterhus29d2e8a2019-09-29 23:03:07 +0200779 /* We don't know the actual size of the underlying allocation, so be conservative. */
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200780 smp->data.u.str.size = smp->data.u.str.data+1; /* count the terminating null byte */
Tim Duesterhus29d2e8a2019-09-29 23:03:07 +0200781 smp->data.u.str.head = 0;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100782 break;
783
784 case LUA_TUSERDATA:
785 case LUA_TNIL:
786 case LUA_TTABLE:
787 case LUA_TFUNCTION:
788 case LUA_TTHREAD:
789 case LUA_TLIGHTUSERDATA:
Thierry FOURNIER93405e12015-08-26 14:19:03 +0200790 case LUA_TNONE:
791 default:
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200792 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200793 smp->data.u.sint = 0;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100794 break;
795 }
796 return 1;
797}
798
Ilya Shipitsind4259502020-04-08 01:07:56 +0500799/* This function check the "argp" built by another conversion function
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -0800800 * is in accord with the expected argp defined by the "mask". The function
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100801 * returns true or false. It can be adjust the types if there compatibles.
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100802 *
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +0500803 * This function assumes that the argp argument contains ARGM_NBARGS + 1
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100804 * entries.
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100805 */
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100806__LJMP int hlua_lua2arg_check(lua_State *L, int first, struct arg *argp,
David Carlier0c437f42016-04-27 16:21:56 +0100807 uint64_t mask, struct proxy *p)
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100808{
809 int min_arg;
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200810 int i, idx;
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100811 struct proxy *px;
Christopher Fauletd25d9262020-08-06 11:04:46 +0200812 struct userlist *ul;
Christopher Fauletfd2e9062020-08-06 11:10:57 +0200813 struct my_regex *reg;
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200814 const char *msg = NULL;
Christopher Fauletfd2e9062020-08-06 11:10:57 +0200815 char *sname, *pname, *err = NULL;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100816
817 idx = 0;
818 min_arg = ARGM(mask);
819 mask >>= ARGM_BITS;
820
821 while (1) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200822 struct buffer tmp = BUF_NULL;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100823
824 /* Check oversize. */
825 if (idx >= ARGM_NBARGS && argp[idx].type != ARGT_STOP) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200826 msg = "Malformed argument mask";
827 goto error;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100828 }
829
830 /* Check for mandatory arguments. */
831 if (argp[idx].type == ARGT_STOP) {
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100832 if (idx < min_arg) {
833
834 /* If miss other argument than the first one, we return an error. */
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200835 if (idx > 0) {
836 msg = "Mandatory argument expected";
837 goto error;
838 }
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100839
840 /* If first argument have a certain type, some default values
841 * may be used. See the function smp_resolve_args().
842 */
843 switch (mask & ARGT_MASK) {
844
845 case ARGT_FE:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200846 if (!(p->cap & PR_CAP_FE)) {
847 msg = "Mandatory argument expected";
848 goto error;
849 }
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100850 argp[idx].data.prx = p;
851 argp[idx].type = ARGT_FE;
852 argp[idx+1].type = ARGT_STOP;
853 break;
854
855 case ARGT_BE:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200856 if (!(p->cap & PR_CAP_BE)) {
857 msg = "Mandatory argument expected";
858 goto error;
859 }
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100860 argp[idx].data.prx = p;
861 argp[idx].type = ARGT_BE;
862 argp[idx+1].type = ARGT_STOP;
863 break;
864
865 case ARGT_TAB:
Olivier Houcharda2658272022-09-13 00:35:53 +0200866 if (!p->table) {
867 msg = "Mandatory argument expected";
868 goto error;
869 }
870 argp[idx].data.t = p->table;
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100871 argp[idx].type = ARGT_TAB;
872 argp[idx+1].type = ARGT_STOP;
873 break;
874
875 default:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200876 msg = "Mandatory argument expected";
877 goto error;
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100878 break;
879 }
880 }
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200881 break;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100882 }
883
Ilya Shipitsin856aabc2020-04-16 23:51:34 +0500884 /* Check for exceed the number of required argument. */
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100885 if ((mask & ARGT_MASK) == ARGT_STOP &&
886 argp[idx].type != ARGT_STOP) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200887 msg = "Last argument expected";
888 goto error;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100889 }
890
891 if ((mask & ARGT_MASK) == ARGT_STOP &&
892 argp[idx].type == ARGT_STOP) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200893 break;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100894 }
895
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200896 /* Convert some argument types. All string in argp[] are for not
897 * duplicated yet.
898 */
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100899 switch (mask & ARGT_MASK) {
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100900 case ARGT_SINT:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200901 if (argp[idx].type != ARGT_SINT) {
902 msg = "integer expected";
903 goto error;
904 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100905 argp[idx].type = ARGT_SINT;
906 break;
907
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100908 case ARGT_TIME:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200909 if (argp[idx].type != ARGT_SINT) {
910 msg = "integer expected";
911 goto error;
912 }
Thierry FOURNIER29176f32015-07-07 00:41:29 +0200913 argp[idx].type = ARGT_TIME;
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100914 break;
915
916 case ARGT_SIZE:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200917 if (argp[idx].type != ARGT_SINT) {
918 msg = "integer expected";
919 goto error;
920 }
Thierry FOURNIER29176f32015-07-07 00:41:29 +0200921 argp[idx].type = ARGT_SIZE;
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100922 break;
923
924 case ARGT_FE:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200925 if (argp[idx].type != ARGT_STR) {
926 msg = "string expected";
927 goto error;
928 }
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200929 argp[idx].data.prx = proxy_fe_by_name(argp[idx].data.str.area);
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200930 if (!argp[idx].data.prx) {
931 msg = "frontend doesn't exist";
932 goto error;
933 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100934 argp[idx].type = ARGT_FE;
935 break;
936
937 case ARGT_BE:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200938 if (argp[idx].type != ARGT_STR) {
939 msg = "string expected";
940 goto error;
941 }
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200942 argp[idx].data.prx = proxy_be_by_name(argp[idx].data.str.area);
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200943 if (!argp[idx].data.prx) {
944 msg = "backend doesn't exist";
945 goto error;
946 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100947 argp[idx].type = ARGT_BE;
948 break;
949
950 case ARGT_TAB:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200951 if (argp[idx].type != ARGT_STR) {
952 msg = "string expected";
953 goto error;
954 }
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200955 argp[idx].data.t = stktable_find_by_name(argp[idx].data.str.area);
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200956 if (!argp[idx].data.t) {
957 msg = "table doesn't exist";
958 goto error;
959 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100960 argp[idx].type = ARGT_TAB;
961 break;
962
963 case ARGT_SRV:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200964 if (argp[idx].type != ARGT_STR) {
965 msg = "string expected";
966 goto error;
967 }
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200968 sname = strrchr(argp[idx].data.str.area, '/');
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100969 if (sname) {
970 *sname++ = '\0';
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200971 pname = argp[idx].data.str.area;
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200972 px = proxy_be_by_name(pname);
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200973 if (!px) {
974 msg = "backend doesn't exist";
975 goto error;
976 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100977 }
978 else {
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200979 sname = argp[idx].data.str.area;
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100980 px = p;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100981 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100982 argp[idx].data.srv = findserver(px, sname);
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200983 if (!argp[idx].data.srv) {
984 msg = "server doesn't exist";
985 goto error;
986 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100987 argp[idx].type = ARGT_SRV;
988 break;
989
990 case ARGT_IPV4:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200991 if (argp[idx].type != ARGT_STR) {
992 msg = "string expected";
993 goto error;
994 }
995 if (inet_pton(AF_INET, argp[idx].data.str.area, &argp[idx].data.ipv4)) {
996 msg = "invalid IPv4 address";
997 goto error;
998 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100999 argp[idx].type = ARGT_IPV4;
1000 break;
1001
1002 case ARGT_MSK4:
Christopher Faulete663a6e2020-08-07 09:11:22 +02001003 if (argp[idx].type == ARGT_SINT)
1004 len2mask4(argp[idx].data.sint, &argp[idx].data.ipv4);
1005 else if (argp[idx].type == ARGT_STR) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +02001006 if (!str2mask(argp[idx].data.str.area, &argp[idx].data.ipv4)) {
1007 msg = "invalid IPv4 mask";
1008 goto error;
1009 }
1010 }
1011 else {
1012 msg = "integer or string expected";
1013 goto error;
Christopher Faulete663a6e2020-08-07 09:11:22 +02001014 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +01001015 argp[idx].type = ARGT_MSK4;
1016 break;
1017
1018 case ARGT_IPV6:
Christopher Fauletaec27ef2020-08-06 08:54:25 +02001019 if (argp[idx].type != ARGT_STR) {
1020 msg = "string expected";
1021 goto error;
1022 }
1023 if (inet_pton(AF_INET6, argp[idx].data.str.area, &argp[idx].data.ipv6)) {
1024 msg = "invalid IPv6 address";
1025 goto error;
1026 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +01001027 argp[idx].type = ARGT_IPV6;
1028 break;
1029
1030 case ARGT_MSK6:
Christopher Faulete663a6e2020-08-07 09:11:22 +02001031 if (argp[idx].type == ARGT_SINT)
1032 len2mask6(argp[idx].data.sint, &argp[idx].data.ipv6);
1033 else if (argp[idx].type == ARGT_STR) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +02001034 if (!str2mask6(argp[idx].data.str.area, &argp[idx].data.ipv6)) {
1035 msg = "invalid IPv6 mask";
1036 goto error;
1037 }
1038 }
1039 else {
1040 msg = "integer or string expected";
1041 goto error;
Christopher Faulete663a6e2020-08-07 09:11:22 +02001042 }
Tim Duesterhusb814da62018-01-25 16:24:50 +01001043 argp[idx].type = ARGT_MSK6;
1044 break;
1045
Christopher Fauletfd2e9062020-08-06 11:10:57 +02001046 case ARGT_REG:
1047 if (argp[idx].type != ARGT_STR) {
1048 msg = "string expected";
1049 goto error;
1050 }
1051 reg = regex_comp(argp[idx].data.str.area, !(argp[idx].type_flags & ARGF_REG_ICASE), 1, &err);
1052 if (!reg) {
1053 msg = lua_pushfstring(L, "error compiling regex '%s' : '%s'",
1054 argp[idx].data.str.area, err);
1055 free(err);
1056 goto error;
1057 }
1058 argp[idx].type = ARGT_REG;
1059 argp[idx].data.reg = reg;
1060 break;
1061
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +01001062 case ARGT_USR:
Christopher Fauletd25d9262020-08-06 11:04:46 +02001063 if (argp[idx].type != ARGT_STR) {
1064 msg = "string expected";
1065 goto error;
1066 }
1067 if (p->uri_auth && p->uri_auth->userlist &&
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001068 strcmp(p->uri_auth->userlist->name, argp[idx].data.str.area) == 0)
Christopher Fauletd25d9262020-08-06 11:04:46 +02001069 ul = p->uri_auth->userlist;
1070 else
1071 ul = auth_find_userlist(argp[idx].data.str.area);
1072
1073 if (!ul) {
1074 msg = lua_pushfstring(L, "unable to find userlist '%s'", argp[idx].data.str.area);
1075 goto error;
1076 }
1077 argp[idx].type = ARGT_USR;
1078 argp[idx].data.usr = ul;
Christopher Fauletaec27ef2020-08-06 08:54:25 +02001079 break;
1080
1081 case ARGT_STR:
1082 if (!chunk_dup(&tmp, &argp[idx].data.str)) {
1083 msg = "unable to duplicate string arg";
1084 goto error;
1085 }
1086 argp[idx].data.str = tmp;
Thierry FOURNIER55da1652015-01-23 11:36:30 +01001087 break;
Christopher Fauletaec27ef2020-08-06 08:54:25 +02001088
Christopher Fauletd25d9262020-08-06 11:04:46 +02001089 case ARGT_MAP:
Christopher Fauletd25d9262020-08-06 11:04:46 +02001090 msg = "type not yet supported";
1091 goto error;
1092 break;
1093
Thierry FOURNIER55da1652015-01-23 11:36:30 +01001094 }
1095
1096 /* Check for type of argument. */
1097 if ((mask & ARGT_MASK) != argp[idx].type) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +02001098 msg = lua_pushfstring(L, "'%s' expected, got '%s'",
1099 arg_type_names[(mask & ARGT_MASK)],
1100 arg_type_names[argp[idx].type & ARGT_MASK]);
1101 goto error;
Thierry FOURNIER55da1652015-01-23 11:36:30 +01001102 }
1103
1104 /* Next argument. */
1105 mask >>= ARGT_BITS;
1106 idx++;
1107 }
Christopher Fauletaec27ef2020-08-06 08:54:25 +02001108 return 0;
1109
1110 error:
Olivier Houchardda25dac2022-09-13 00:31:17 +02001111 argp[idx].type = ARGT_STOP;
Christopher Fauletaec27ef2020-08-06 08:54:25 +02001112 for (i = 0; i < idx; i++) {
1113 if (argp[i].type == ARGT_STR)
1114 chunk_destroy(&argp[i].data.str);
Christopher Fauletfd2e9062020-08-06 11:10:57 +02001115 else if (argp[i].type == ARGT_REG)
1116 regex_free(argp[i].data.reg);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02001117 }
1118 WILL_LJMP(luaL_argerror(L, first + idx, msg));
1119 return 0; /* Never reached */
Thierry FOURNIER55da1652015-01-23 11:36:30 +01001120}
1121
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001122/*
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001123 * The following functions are used to make correspondence between the the
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001124 * executed lua pointer and the "struct hlua *" that contain the context.
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001125 *
1126 * - hlua_gethlua : return the hlua context associated with an lua_State.
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001127 * - hlua_sethlua : create the association between hlua context and lua_state.
1128 */
1129static inline struct hlua *hlua_gethlua(lua_State *L)
1130{
Thierry FOURNIER38c5fd62015-03-10 02:40:29 +01001131 struct hlua **hlua = lua_getextraspace(L);
1132 return *hlua;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001133}
1134static inline void hlua_sethlua(struct hlua *hlua)
1135{
Thierry FOURNIER38c5fd62015-03-10 02:40:29 +01001136 struct hlua **hlua_store = lua_getextraspace(hlua->T);
1137 *hlua_store = hlua;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001138}
1139
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01001140/* This function is used to send logs. It try to send on screen (stderr)
1141 * and on the default syslog server.
1142 */
1143static inline void hlua_sendlog(struct proxy *px, int level, const char *msg)
1144{
1145 struct tm tm;
1146 char *p;
1147
1148 /* Cleanup the log message. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001149 p = trash.area;
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01001150 for (; *msg != '\0'; msg++, p++) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001151 if (p >= trash.area + trash.size - 1) {
Thierry FOURNIERccf00632015-09-16 12:47:03 +02001152 /* Break the message if exceed the buffer size. */
1153 *(p-4) = ' ';
1154 *(p-3) = '.';
1155 *(p-2) = '.';
1156 *(p-1) = '.';
1157 break;
1158 }
Willy Tarreau90807112020-02-25 08:16:33 +01001159 if (isprint((unsigned char)*msg))
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01001160 *p = *msg;
1161 else
1162 *p = '.';
1163 }
1164 *p = '\0';
1165
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001166 send_log(px, level, "%s\n", trash.area);
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01001167 if (!(global.mode & MODE_QUIET) || (global.mode & (MODE_VERBOSE | MODE_STARTING))) {
Christopher Fauletf98d8212020-10-02 18:13:52 +02001168 if (level == LOG_DEBUG && !(global.mode & MODE_DEBUG))
1169 return;
1170
Willy Tarreaua678b432015-08-28 10:14:59 +02001171 get_localtime(date.tv_sec, &tm);
1172 fprintf(stderr, "[%s] %03d/%02d%02d%02d (%d) : %s\n",
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01001173 log_levels[level], tm.tm_yday, tm.tm_hour, tm.tm_min, tm.tm_sec,
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001174 (int)getpid(), trash.area);
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01001175 fflush(stderr);
1176 }
1177}
1178
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001179/* This function just ensure that the yield will be always
1180 * returned with a timeout and permit to set some flags
1181 */
Aurelien DARRAGONf5d3b312023-07-13 10:18:04 +02001182__LJMP void hlua_yieldk(lua_State *L, int nresults, lua_KContext ctx,
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01001183 lua_KFunction k, int timeout, unsigned int flags)
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001184{
Thierry Fournier4234dbd2020-11-28 13:18:23 +01001185 struct hlua *hlua;
1186
1187 /* Get hlua struct, or NULL if we execute from main lua state */
1188 hlua = hlua_gethlua(L);
1189 if (!hlua) {
1190 return;
1191 }
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001192
1193 /* Set the wake timeout. If timeout is required, we set
1194 * the expiration time.
1195 */
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001196 hlua->wake_time = timeout;
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001197
Thierry FOURNIER4abd3ae2015-03-03 17:29:06 +01001198 hlua->flags |= flags;
1199
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001200 /* Process the yield. */
Willy Tarreau9635e032018-10-16 17:52:55 +02001201 MAY_LJMP(lua_yieldk(L, nresults, ctx, k));
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001202}
1203
Willy Tarreau87b09662015-04-03 00:22:06 +02001204/* This function initialises the Lua environment stored in the stream.
1205 * It must be called at the start of the stream. This function creates
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001206 * an LUA coroutine. It can not be use to crete the main LUA context.
Thierry FOURNIERbabae282015-09-17 11:36:37 +02001207 *
1208 * This function is particular. it initialises a new Lua thread. If the
1209 * initialisation fails (example: out of memory error), the lua function
1210 * throws an error (longjmp).
1211 *
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001212 * This function manipulates two Lua stacks: the main and the thread. Only
Thierry FOURNIERbabae282015-09-17 11:36:37 +02001213 * the main stack can fail. The thread is not manipulated. This function
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001214 * MUST NOT manipulate the created thread stack state, because it is not
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05001215 * protected against errors thrown by the thread stack.
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001216 */
Aurelien DARRAGON5483bde2023-03-21 14:02:16 +01001217int hlua_ctx_init(struct hlua *lua, int state_id, struct task *task)
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001218{
1219 lua->Mref = LUA_REFNIL;
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01001220 lua->flags = 0;
Willy Tarreauf31af932020-01-14 09:59:38 +01001221 lua->gc_count = 0;
Christopher Fauletbc275a92020-02-26 14:55:16 +01001222 lua->wake_time = TICK_ETERNITY;
Thierry Fournier021d9862020-11-28 23:42:03 +01001223 lua->state_id = state_id;
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +01001224 LIST_INIT(&lua->com);
Aurelien DARRAGON5483bde2023-03-21 14:02:16 +01001225 if (!SET_SAFE_LJMP_PARENT(lua)) {
1226 lua->Tref = LUA_REFNIL;
1227 return 0;
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001228 }
Thierry Fournier021d9862020-11-28 23:42:03 +01001229 lua->T = lua_newthread(hlua_states[state_id]);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001230 if (!lua->T) {
1231 lua->Tref = LUA_REFNIL;
Aurelien DARRAGON5483bde2023-03-21 14:02:16 +01001232 RESET_SAFE_LJMP_PARENT(lua);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001233 return 0;
1234 }
1235 hlua_sethlua(lua);
Thierry Fournier021d9862020-11-28 23:42:03 +01001236 lua->Tref = luaL_ref(hlua_states[state_id], LUA_REGISTRYINDEX);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001237 lua->task = task;
Aurelien DARRAGON5483bde2023-03-21 14:02:16 +01001238 RESET_SAFE_LJMP_PARENT(lua);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001239 return 1;
1240}
1241
Willy Tarreau87b09662015-04-03 00:22:06 +02001242/* Used to destroy the Lua coroutine when the attached stream or task
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001243 * is destroyed. The destroy also the memory context. The struct "lua"
Aurelien DARRAGONd5c8a102023-03-01 16:45:50 +01001244 * will be freed.
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001245 */
1246void hlua_ctx_destroy(struct hlua *lua)
1247{
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01001248 if (!lua)
Thierry FOURNIERa718b292015-03-04 16:48:34 +01001249 return;
1250
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01001251 if (!lua->T)
1252 goto end;
1253
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +01001254 /* Purge all the pending signals. */
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001255 notification_purge(&lua->com);
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +01001256
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001257 if (!SET_SAFE_LJMP(lua))
Thierry FOURNIER75d02082017-07-12 13:41:33 +02001258 return;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001259 luaL_unref(lua->T, LUA_REGISTRYINDEX, lua->Mref);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001260 RESET_SAFE_LJMP(lua);
Thierry FOURNIER5a50a852015-09-23 16:59:28 +02001261
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001262 if (!SET_SAFE_LJMP_PARENT(lua))
Thierry FOURNIER75d02082017-07-12 13:41:33 +02001263 return;
Thierry Fournier021d9862020-11-28 23:42:03 +01001264 luaL_unref(hlua_states[lua->state_id], LUA_REGISTRYINDEX, lua->Tref);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001265 RESET_SAFE_LJMP_PARENT(lua);
Thierry FOURNIER5a50a852015-09-23 16:59:28 +02001266 /* Forces a garbage collecting process. If the Lua program is finished
1267 * without error, we run the GC on the thread pointer. Its freed all
1268 * the unused memory.
1269 * If the thread is finnish with an error or is currently yielded,
1270 * it seems that the GC applied on the thread doesn't clean anything,
1271 * so e run the GC on the main thread.
1272 * NOTE: maybe this action locks all the Lua threads untiml the en of
1273 * the garbage collection.
1274 */
Willy Tarreauf31af932020-01-14 09:59:38 +01001275 if (lua->gc_count) {
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001276 if (!SET_SAFE_LJMP_PARENT(lua))
Thierry FOURNIER75d02082017-07-12 13:41:33 +02001277 return;
Thierry Fournier021d9862020-11-28 23:42:03 +01001278 lua_gc(hlua_states[lua->state_id], LUA_GCCOLLECT, 0);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001279 RESET_SAFE_LJMP_PARENT(lua);
Thierry FOURNIER7c39ab42015-09-27 22:53:33 +02001280 }
Thierry FOURNIER5a50a852015-09-23 16:59:28 +02001281
Thierry FOURNIERa7b536b2015-09-21 22:50:24 +02001282 lua->T = NULL;
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01001283
1284end:
Willy Tarreaubafbe012017-11-24 17:34:44 +01001285 pool_free(pool_head_hlua, lua);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001286}
1287
1288/* This function is used to restore the Lua context when a coroutine
1289 * fails. This function copy the common memory between old coroutine
1290 * and the new coroutine. The old coroutine is destroyed, and its
1291 * replaced by the new coroutine.
1292 * If the flag "keep_msg" is set, the last entry of the old is assumed
1293 * as string error message and it is copied in the new stack.
1294 */
1295static int hlua_ctx_renew(struct hlua *lua, int keep_msg)
1296{
1297 lua_State *T;
1298 int new_ref;
1299
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001300 /* New Lua coroutine. */
Thierry Fournier021d9862020-11-28 23:42:03 +01001301 T = lua_newthread(hlua_states[lua->state_id]);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001302 if (!T)
1303 return 0;
1304
1305 /* Copy last error message. */
1306 if (keep_msg)
1307 lua_xmove(lua->T, T, 1);
1308
1309 /* Copy data between the coroutines. */
1310 lua_rawgeti(lua->T, LUA_REGISTRYINDEX, lua->Mref);
1311 lua_xmove(lua->T, T, 1);
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05001312 new_ref = luaL_ref(T, LUA_REGISTRYINDEX); /* Value popped. */
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001313
1314 /* Destroy old data. */
1315 luaL_unref(lua->T, LUA_REGISTRYINDEX, lua->Mref);
1316
1317 /* The thread is garbage collected by Lua. */
Thierry Fournier021d9862020-11-28 23:42:03 +01001318 luaL_unref(hlua_states[lua->state_id], LUA_REGISTRYINDEX, lua->Tref);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001319
1320 /* Fill the struct with the new coroutine values. */
1321 lua->Mref = new_ref;
1322 lua->T = T;
Thierry Fournier021d9862020-11-28 23:42:03 +01001323 lua->Tref = luaL_ref(hlua_states[lua->state_id], LUA_REGISTRYINDEX);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001324
1325 /* Set context. */
1326 hlua_sethlua(lua);
1327
1328 return 1;
1329}
1330
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01001331/* Helper function to get the lua ctx for a given stream */
1332static inline struct hlua *hlua_stream_ctx_get(struct stream *s)
1333{
1334 return s->hlua;
1335}
1336
1337/* Helper function to prepare the lua ctx for a given stream
1338 *
1339 * ctx will be enforced in <state_id> parent stack on initial creation.
1340 * If s->hlua->state_id differs from <state_id>, which may happen at
1341 * runtime since existing stream hlua ctx will be reused for other
1342 * "independent" (but stream-related) lua executions, hlua will be
1343 * recreated with the expected state id.
1344 *
1345 * Returns hlua ctx on success and NULL on failure
1346 */
1347static struct hlua *hlua_stream_ctx_prepare(struct stream *s, int state_id)
1348{
1349 /* In the execution wrappers linked with a stream, the
1350 * Lua context can be not initialized. This behavior
1351 * permits to save performances because a systematic
1352 * Lua initialization cause 5% performances loss.
1353 */
1354 ctx_renew:
1355 if (!s->hlua) {
1356 struct hlua *hlua;
1357
1358 hlua = pool_alloc(pool_head_hlua);
1359 if (!hlua)
1360 return NULL;
1361 HLUA_INIT(hlua);
1362 if (!hlua_ctx_init(hlua, state_id, s->task)) {
1363 pool_free(pool_head_hlua, hlua);
1364 return NULL;
1365 }
1366 s->hlua = hlua;
1367 }
1368 else if (s->hlua->state_id != state_id) {
1369 /* ctx already created, but not in proper state.
1370 * It should only happen after the previous execution is
1371 * finished, otherwise it's probably a bug since we don't
1372 * want to abort unfinished job..
1373 */
1374 BUG_ON(HLUA_IS_RUNNING(s->hlua));
1375 hlua_ctx_destroy(s->hlua);
1376 s->hlua = NULL;
1377 goto ctx_renew;
1378 }
1379 return s->hlua;
1380}
1381
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001382void hlua_hook(lua_State *L, lua_Debug *ar)
1383{
Thierry Fournier4234dbd2020-11-28 13:18:23 +01001384 struct hlua *hlua;
1385
1386 /* Get hlua struct, or NULL if we execute from main lua state */
1387 hlua = hlua_gethlua(L);
1388 if (!hlua)
1389 return;
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001390
1391 /* Lua cannot yield when its returning from a function,
1392 * so, we can fix the interrupt hook to 1 instruction,
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05001393 * expecting that the function is finished.
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001394 */
1395 if (lua_gethookmask(L) & LUA_MASKRET) {
1396 lua_sethook(hlua->T, hlua_hook, LUA_MASKCOUNT, 1);
1397 return;
1398 }
1399
1400 /* restore the interrupt condition. */
1401 lua_sethook(hlua->T, hlua_hook, LUA_MASKCOUNT, hlua_nb_instruction);
1402
1403 /* If we interrupt the Lua processing in yieldable state, we yield.
1404 * If the state is not yieldable, trying yield causes an error.
1405 */
1406 if (lua_isyieldable(L))
Willy Tarreau9635e032018-10-16 17:52:55 +02001407 MAY_LJMP(hlua_yieldk(L, 0, 0, NULL, TICK_ETERNITY, HLUA_CTRLYIELD));
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001408
Thierry FOURNIERa85cfb12015-03-13 14:50:06 +01001409 /* If we cannot yield, update the clock and check the timeout. */
1410 tv_update_date(0, 1);
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001411 hlua->run_time += now_ms - hlua->start_time;
1412 if (hlua->max_time && hlua->run_time >= hlua->max_time) {
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001413 lua_pushfstring(L, "execution timeout");
1414 WILL_LJMP(lua_error(L));
1415 }
1416
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001417 /* Update the start time. */
1418 hlua->start_time = now_ms;
1419
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001420 /* Try to interrupt the process at the end of the current
1421 * unyieldable function.
1422 */
1423 lua_sethook(hlua->T, hlua_hook, LUA_MASKRET|LUA_MASKCOUNT, hlua_nb_instruction);
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001424}
1425
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001426/* This function start or resumes the Lua stack execution. If the flag
1427 * "yield_allowed" if no set and the LUA stack execution returns a yield
1428 * The function return an error.
1429 *
1430 * The function can returns 4 values:
1431 * - HLUA_E_OK : The execution is terminated without any errors.
1432 * - HLUA_E_AGAIN : The execution must continue at the next associated
1433 * task wakeup.
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001434 * - HLUA_E_ERRMSG : An error has occurred, an error message is set in
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001435 * the top of the stack.
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001436 * - HLUA_E_ERR : An error has occurred without error message.
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001437 *
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001438 * If an error occurred, the stack is renewed and it is ready to run new
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001439 * LUA code.
1440 */
1441static enum hlua_exec hlua_ctx_resume(struct hlua *lua, int yield_allowed)
1442{
Christopher Faulet08ed98f2020-07-28 10:33:25 +02001443#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504
1444 int nres;
1445#endif
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001446 int ret;
1447 const char *msg;
Thierry FOURNIERfc044c92018-06-07 14:40:48 +02001448 const char *trace;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001449
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001450 /* Initialise run time counter. */
1451 if (!HLUA_IS_RUNNING(lua))
1452 lua->run_time = 0;
Thierry FOURNIERdc9ca962015-03-05 11:16:52 +01001453
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +02001454 /* Lock the whole Lua execution. This lock must be before the
1455 * label "resume_execution".
1456 */
Aurelien DARRAGONe00bf5d2023-03-21 13:22:33 +01001457 hlua_lock(lua);
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +02001458
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001459resume_execution:
1460
1461 /* This hook interrupts the Lua processing each 'hlua_nb_instruction'
1462 * instructions. it is used for preventing infinite loops.
1463 */
1464 lua_sethook(lua->T, hlua_hook, LUA_MASKCOUNT, hlua_nb_instruction);
1465
Thierry FOURNIER1bfc09b2015-03-05 17:10:14 +01001466 /* Remove all flags except the running flags. */
Thierry FOURNIER2f3867f2015-09-28 01:02:01 +02001467 HLUA_SET_RUN(lua);
1468 HLUA_CLR_CTRLYIELD(lua);
1469 HLUA_CLR_WAKERESWR(lua);
1470 HLUA_CLR_WAKEREQWR(lua);
Christopher Fauleta6e792f2021-08-04 17:58:21 +02001471 HLUA_CLR_NOYIELD(lua);
1472 if (!yield_allowed)
1473 HLUA_SET_NOYIELD(lua);
Thierry FOURNIER1bfc09b2015-03-05 17:10:14 +01001474
Christopher Fauletbc275a92020-02-26 14:55:16 +01001475 /* Update the start time and reset wake_time. */
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001476 lua->start_time = now_ms;
Christopher Fauletbc275a92020-02-26 14:55:16 +01001477 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001478
Aurelien DARRAGON5d351962024-03-12 00:22:44 +01001479 HLUA_SET_BUSY(lua);
1480
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001481 /* Call the function. */
Christopher Faulet08ed98f2020-07-28 10:33:25 +02001482#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504
Thierry Fournier021d9862020-11-28 23:42:03 +01001483 ret = lua_resume(lua->T, hlua_states[lua->state_id], lua->nargs, &nres);
Christopher Faulet08ed98f2020-07-28 10:33:25 +02001484#else
Thierry Fournier021d9862020-11-28 23:42:03 +01001485 ret = lua_resume(lua->T, hlua_states[lua->state_id], lua->nargs);
Christopher Faulet08ed98f2020-07-28 10:33:25 +02001486#endif
Aurelien DARRAGONfff27962023-09-08 14:00:27 +02001487
Aurelien DARRAGON5d351962024-03-12 00:22:44 +01001488 HLUA_CLR_BUSY(lua);
1489
Aurelien DARRAGONfff27962023-09-08 14:00:27 +02001490 /* reset nargs because those possibly passed to the lua_resume() call
1491 * were already consumed, and since we may call lua_resume() again
1492 * after a successful yield, we don't want to pass stale nargs hint
1493 * to the Lua API. As such, nargs should be set explicitly before each
1494 * lua_resume() (or hlua_ctx_resume()) invocation if needed.
1495 */
1496 lua->nargs = 0;
1497
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001498 switch (ret) {
1499
1500 case LUA_OK:
1501 ret = HLUA_E_OK;
1502 break;
1503
1504 case LUA_YIELD:
Thierry FOURNIERdc9ca962015-03-05 11:16:52 +01001505 /* Check if the execution timeout is expired. It it is the case, we
1506 * break the Lua execution.
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001507 */
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001508 tv_update_date(0, 1);
1509 lua->run_time += now_ms - lua->start_time;
1510 if (lua->max_time && lua->run_time > lua->max_time) {
Thierry FOURNIERdc9ca962015-03-05 11:16:52 +01001511 lua_settop(lua->T, 0); /* Empty the stack. */
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001512 ret = HLUA_E_ETMOUT;
Thierry FOURNIERdc9ca962015-03-05 11:16:52 +01001513 break;
1514 }
1515 /* Process the forced yield. if the general yield is not allowed or
1516 * if no task were associated this the current Lua execution
1517 * coroutine, we resume the execution. Else we want to return in the
1518 * scheduler and we want to be waked up again, to continue the
1519 * current Lua execution. So we schedule our own task.
1520 */
1521 if (HLUA_IS_CTRLYIELDING(lua)) {
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001522 if (!yield_allowed || !lua->task)
1523 goto resume_execution;
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001524 task_wakeup(lua->task, TASK_WOKEN_MSG);
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001525 }
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001526 if (!yield_allowed) {
1527 lua_settop(lua->T, 0); /* Empty the stack. */
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001528 ret = HLUA_E_YIELD;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001529 break;
1530 }
1531 ret = HLUA_E_AGAIN;
1532 break;
1533
1534 case LUA_ERRRUN:
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02001535
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001536 /* Special exit case. The traditional exit is returned as an error
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02001537 * because the errors ares the only one mean to return immediately
1538 * from and lua execution.
1539 */
1540 if (lua->flags & HLUA_EXIT) {
1541 ret = HLUA_E_OK;
Christopher Faulet7716cdf2020-01-29 11:53:30 +01001542 hlua_ctx_renew(lua, 1);
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02001543 break;
1544 }
1545
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001546 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001547 if (!lua_checkstack(lua->T, 1)) {
1548 ret = HLUA_E_ERR;
1549 break;
1550 }
Aurelien DARRAGONa3741612024-03-01 15:55:17 +01001551 msg = hlua_tostring_safe(lua->T, -1);
Christopher Fauletd09cc512021-03-24 14:48:45 +01001552 trace = hlua_traceback(lua->T, ", ");
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001553 if (msg)
Thierry Fournier46278ff2020-11-29 11:48:12 +01001554 lua_pushfstring(lua->T, "[state-id %d] runtime error: %s from %s", lua->state_id, msg, trace);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001555 else
Thierry Fournier46278ff2020-11-29 11:48:12 +01001556 lua_pushfstring(lua->T, "[state-id %d] unknown runtime error from %s", lua->state_id, trace);
Aurelien DARRAGONadac9322024-03-01 19:54:16 +01001557
1558 /* Move the error msg at the top and then empty the stack except last msg */
1559 lua_insert(lua->T, -lua_gettop(lua->T));
1560 lua_settop(lua->T, 1);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001561 ret = HLUA_E_ERRMSG;
1562 break;
1563
1564 case LUA_ERRMEM:
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001565 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001566 lua_settop(lua->T, 0); /* Empty the stack. */
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001567 ret = HLUA_E_NOMEM;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001568 break;
1569
1570 case LUA_ERRERR:
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001571 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001572 if (!lua_checkstack(lua->T, 1)) {
1573 ret = HLUA_E_ERR;
1574 break;
1575 }
Aurelien DARRAGONa3741612024-03-01 15:55:17 +01001576 msg = hlua_tostring_safe(lua->T, -1);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001577 if (msg)
Thierry Fournier46278ff2020-11-29 11:48:12 +01001578 lua_pushfstring(lua->T, "[state-id %d] message handler error: %s", lua->state_id, msg);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001579 else
Thierry Fournier46278ff2020-11-29 11:48:12 +01001580 lua_pushfstring(lua->T, "[state-id %d] message handler error", lua->state_id);
Aurelien DARRAGONadac9322024-03-01 19:54:16 +01001581
1582 /* Move the error msg at the top and then empty the stack except last msg */
1583 lua_insert(lua->T, -lua_gettop(lua->T));
1584 lua_settop(lua->T, 1);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001585 ret = HLUA_E_ERRMSG;
1586 break;
1587
1588 default:
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001589 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001590 lua_settop(lua->T, 0); /* Empty the stack. */
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001591 ret = HLUA_E_ERR;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001592 break;
1593 }
1594
1595 switch (ret) {
1596 case HLUA_E_AGAIN:
1597 break;
1598
1599 case HLUA_E_ERRMSG:
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001600 notification_purge(&lua->com);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001601 hlua_ctx_renew(lua, 1);
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01001602 HLUA_CLR_RUN(lua);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001603 break;
1604
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001605 case HLUA_E_ETMOUT:
1606 case HLUA_E_NOMEM:
1607 case HLUA_E_YIELD:
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001608 case HLUA_E_ERR:
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01001609 HLUA_CLR_RUN(lua);
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001610 notification_purge(&lua->com);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001611 hlua_ctx_renew(lua, 0);
1612 break;
1613
1614 case HLUA_E_OK:
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01001615 HLUA_CLR_RUN(lua);
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001616 notification_purge(&lua->com);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001617 break;
1618 }
1619
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +02001620 /* This is the main exit point, remove the Lua lock. */
Aurelien DARRAGONe00bf5d2023-03-21 13:22:33 +01001621 hlua_unlock(lua);
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +02001622
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001623 return ret;
1624}
1625
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02001626/* This function exit the current code. */
1627__LJMP static int hlua_done(lua_State *L)
1628{
Thierry Fournier4234dbd2020-11-28 13:18:23 +01001629 struct hlua *hlua;
1630
1631 /* Get hlua struct, or NULL if we execute from main lua state */
1632 hlua = hlua_gethlua(L);
1633 if (!hlua)
1634 return 0;
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02001635
1636 hlua->flags |= HLUA_EXIT;
1637 WILL_LJMP(lua_error(L));
1638
1639 return 0;
1640}
1641
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001642/* This function is an LUA binding. It provides a function
1643 * for deleting ACL from a referenced ACL file.
1644 */
1645__LJMP static int hlua_del_acl(lua_State *L)
1646{
1647 const char *name;
1648 const char *key;
1649 struct pat_ref *ref;
1650
1651 MAY_LJMP(check_args(L, 2, "del_acl"));
1652
1653 name = MAY_LJMP(luaL_checkstring(L, 1));
1654 key = MAY_LJMP(luaL_checkstring(L, 2));
1655
1656 ref = pat_ref_lookup(name);
1657 if (!ref)
Vincent Bernata72db182015-10-06 16:05:59 +02001658 WILL_LJMP(luaL_error(L, "'del_acl': unknown acl file '%s'", name));
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001659
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001660 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001661 pat_ref_delete(ref, key);
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001662 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001663 return 0;
1664}
1665
1666/* This function is an LUA binding. It provides a function
1667 * for deleting map entry from a referenced map file.
1668 */
1669static int hlua_del_map(lua_State *L)
1670{
1671 const char *name;
1672 const char *key;
1673 struct pat_ref *ref;
1674
1675 MAY_LJMP(check_args(L, 2, "del_map"));
1676
1677 name = MAY_LJMP(luaL_checkstring(L, 1));
1678 key = MAY_LJMP(luaL_checkstring(L, 2));
1679
1680 ref = pat_ref_lookup(name);
1681 if (!ref)
Vincent Bernata72db182015-10-06 16:05:59 +02001682 WILL_LJMP(luaL_error(L, "'del_map': unknown acl file '%s'", name));
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001683
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001684 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001685 pat_ref_delete(ref, key);
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001686 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001687 return 0;
1688}
1689
1690/* This function is an LUA binding. It provides a function
1691 * for adding ACL pattern from a referenced ACL file.
1692 */
1693static int hlua_add_acl(lua_State *L)
1694{
1695 const char *name;
1696 const char *key;
1697 struct pat_ref *ref;
1698
1699 MAY_LJMP(check_args(L, 2, "add_acl"));
1700
1701 name = MAY_LJMP(luaL_checkstring(L, 1));
1702 key = MAY_LJMP(luaL_checkstring(L, 2));
1703
1704 ref = pat_ref_lookup(name);
1705 if (!ref)
Vincent Bernata72db182015-10-06 16:05:59 +02001706 WILL_LJMP(luaL_error(L, "'add_acl': unknown acl file '%s'", name));
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001707
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001708 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001709 if (pat_ref_find_elt(ref, key) == NULL)
1710 pat_ref_add(ref, key, NULL, NULL);
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001711 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001712 return 0;
1713}
1714
1715/* This function is an LUA binding. It provides a function
1716 * for setting map pattern and sample from a referenced map
1717 * file.
1718 */
1719static int hlua_set_map(lua_State *L)
1720{
1721 const char *name;
1722 const char *key;
1723 const char *value;
1724 struct pat_ref *ref;
1725
1726 MAY_LJMP(check_args(L, 3, "set_map"));
1727
1728 name = MAY_LJMP(luaL_checkstring(L, 1));
1729 key = MAY_LJMP(luaL_checkstring(L, 2));
1730 value = MAY_LJMP(luaL_checkstring(L, 3));
1731
1732 ref = pat_ref_lookup(name);
1733 if (!ref)
Vincent Bernata72db182015-10-06 16:05:59 +02001734 WILL_LJMP(luaL_error(L, "'set_map': unknown map file '%s'", name));
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001735
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001736 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001737 if (pat_ref_find_elt(ref, key) != NULL)
1738 pat_ref_set(ref, key, value, NULL);
1739 else
1740 pat_ref_add(ref, key, value, NULL);
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001741 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001742 return 0;
1743}
1744
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01001745/* A class is a lot of memory that contain data. This data can be a table,
1746 * an integer or user data. This data is associated with a metatable. This
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001747 * metatable have an original version registered in the global context with
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01001748 * the name of the object (_G[<name>] = <metable> ).
1749 *
1750 * A metable is a table that modify the standard behavior of a standard
1751 * access to the associated data. The entries of this new metatable are
1752 * defined as is:
1753 *
1754 * http://lua-users.org/wiki/MetatableEvents
1755 *
1756 * __index
1757 *
1758 * we access an absent field in a table, the result is nil. This is
1759 * true, but it is not the whole truth. Actually, such access triggers
1760 * the interpreter to look for an __index metamethod: If there is no
1761 * such method, as usually happens, then the access results in nil;
1762 * otherwise, the metamethod will provide the result.
1763 *
1764 * Control 'prototype' inheritance. When accessing "myTable[key]" and
1765 * the key does not appear in the table, but the metatable has an __index
1766 * property:
1767 *
1768 * - if the value is a function, the function is called, passing in the
1769 * table and the key; the return value of that function is returned as
1770 * the result.
1771 *
1772 * - if the value is another table, the value of the key in that table is
1773 * asked for and returned (and if it doesn't exist in that table, but that
1774 * table's metatable has an __index property, then it continues on up)
1775 *
1776 * - Use "rawget(myTable,key)" to skip this metamethod.
1777 *
1778 * http://www.lua.org/pil/13.4.1.html
1779 *
1780 * __newindex
1781 *
1782 * Like __index, but control property assignment.
1783 *
1784 * __mode - Control weak references. A string value with one or both
1785 * of the characters 'k' and 'v' which specifies that the the
1786 * keys and/or values in the table are weak references.
1787 *
1788 * __call - Treat a table like a function. When a table is followed by
1789 * parenthesis such as "myTable( 'foo' )" and the metatable has
1790 * a __call key pointing to a function, that function is invoked
1791 * (passing any specified arguments) and the return value is
1792 * returned.
1793 *
1794 * __metatable - Hide the metatable. When "getmetatable( myTable )" is
1795 * called, if the metatable for myTable has a __metatable
1796 * key, the value of that key is returned instead of the
1797 * actual metatable.
1798 *
1799 * __tostring - Control string representation. When the builtin
1800 * "tostring( myTable )" function is called, if the metatable
1801 * for myTable has a __tostring property set to a function,
1802 * that function is invoked (passing myTable to it) and the
1803 * return value is used as the string representation.
1804 *
1805 * __len - Control table length. When the table length is requested using
1806 * the length operator ( '#' ), if the metatable for myTable has
1807 * a __len key pointing to a function, that function is invoked
1808 * (passing myTable to it) and the return value used as the value
1809 * of "#myTable".
1810 *
1811 * __gc - Userdata finalizer code. When userdata is set to be garbage
1812 * collected, if the metatable has a __gc field pointing to a
1813 * function, that function is first invoked, passing the userdata
1814 * to it. The __gc metamethod is not called for tables.
1815 * (See http://lua-users.org/lists/lua-l/2006-11/msg00508.html)
1816 *
1817 * Special metamethods for redefining standard operators:
1818 * http://www.lua.org/pil/13.1.html
1819 *
1820 * __add "+"
1821 * __sub "-"
1822 * __mul "*"
1823 * __div "/"
1824 * __unm "!"
1825 * __pow "^"
1826 * __concat ".."
1827 *
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05001828 * Special methods for redefining standard relations
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01001829 * http://www.lua.org/pil/13.2.html
1830 *
1831 * __eq "=="
1832 * __lt "<"
1833 * __le "<="
1834 */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001835
1836/*
1837 *
1838 *
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001839 * Class Map
1840 *
1841 *
1842 */
1843
1844/* Returns a struct hlua_map if the stack entry "ud" is
1845 * a class session, otherwise it throws an error.
1846 */
1847__LJMP static struct map_descriptor *hlua_checkmap(lua_State *L, int ud)
1848{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02001849 return MAY_LJMP(hlua_checkudata(L, ud, class_map_ref));
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001850}
1851
1852/* This function is the map constructor. It don't need
1853 * the class Map object. It creates and return a new Map
1854 * object. It must be called only during "body" or "init"
1855 * context because it process some filesystem accesses.
1856 */
1857__LJMP static int hlua_map_new(struct lua_State *L)
1858{
1859 const char *fn;
1860 int match = PAT_MATCH_STR;
1861 struct sample_conv conv;
1862 const char *file = "";
1863 int line = 0;
1864 lua_Debug ar;
1865 char *err = NULL;
1866 struct arg args[2];
1867
1868 if (lua_gettop(L) < 1 || lua_gettop(L) > 2)
1869 WILL_LJMP(luaL_error(L, "'new' needs at least 1 argument."));
1870
1871 fn = MAY_LJMP(luaL_checkstring(L, 1));
1872
1873 if (lua_gettop(L) >= 2) {
1874 match = MAY_LJMP(luaL_checkinteger(L, 2));
1875 if (match < 0 || match >= PAT_MATCH_NUM)
1876 WILL_LJMP(luaL_error(L, "'new' needs a valid match method."));
1877 }
1878
1879 /* Get Lua filename and line number. */
1880 if (lua_getstack(L, 1, &ar)) { /* check function at level */
1881 lua_getinfo(L, "Sl", &ar); /* get info about it */
1882 if (ar.currentline > 0) { /* is there info? */
1883 file = ar.short_src;
1884 line = ar.currentline;
1885 }
1886 }
1887
1888 /* fill fake sample_conv struct. */
1889 conv.kw = ""; /* unused. */
1890 conv.process = NULL; /* unused. */
1891 conv.arg_mask = 0; /* unused. */
1892 conv.val_args = NULL; /* unused. */
1893 conv.out_type = SMP_T_STR;
1894 conv.private = (void *)(long)match;
1895 switch (match) {
1896 case PAT_MATCH_STR: conv.in_type = SMP_T_STR; break;
1897 case PAT_MATCH_BEG: conv.in_type = SMP_T_STR; break;
1898 case PAT_MATCH_SUB: conv.in_type = SMP_T_STR; break;
1899 case PAT_MATCH_DIR: conv.in_type = SMP_T_STR; break;
1900 case PAT_MATCH_DOM: conv.in_type = SMP_T_STR; break;
1901 case PAT_MATCH_END: conv.in_type = SMP_T_STR; break;
1902 case PAT_MATCH_REG: conv.in_type = SMP_T_STR; break;
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001903 case PAT_MATCH_INT: conv.in_type = SMP_T_SINT; break;
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001904 case PAT_MATCH_IP: conv.in_type = SMP_T_ADDR; break;
1905 default:
1906 WILL_LJMP(luaL_error(L, "'new' doesn't support this match mode."));
1907 }
1908
1909 /* fill fake args. */
1910 args[0].type = ARGT_STR;
Christopher Faulet73292e92020-08-06 08:40:09 +02001911 args[0].data.str.area = strdup(fn);
1912 args[0].data.str.data = strlen(fn);
1913 args[0].data.str.size = args[0].data.str.data+1;
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001914 args[1].type = ARGT_STOP;
1915
1916 /* load the map. */
1917 if (!sample_load_map(args, &conv, file, line, &err)) {
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001918 /* error case: we can't use luaL_error because we must
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001919 * free the err variable.
1920 */
1921 luaL_where(L, 1);
1922 lua_pushfstring(L, "'new': %s.", err);
1923 lua_concat(L, 2);
1924 free(err);
Christopher Faulet6ad7df42020-08-07 11:45:18 +02001925 chunk_destroy(&args[0].data.str);
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001926 WILL_LJMP(lua_error(L));
1927 }
1928
1929 /* create the lua object. */
1930 lua_newtable(L);
1931 lua_pushlightuserdata(L, args[0].data.map);
1932 lua_rawseti(L, -2, 0);
1933
1934 /* Pop a class Map metatable and affect it to the userdata. */
1935 lua_rawgeti(L, LUA_REGISTRYINDEX, class_map_ref);
1936 lua_setmetatable(L, -2);
1937
1938
1939 return 1;
1940}
1941
1942__LJMP static inline int _hlua_map_lookup(struct lua_State *L, int str)
1943{
1944 struct map_descriptor *desc;
1945 struct pattern *pat;
1946 struct sample smp;
1947
1948 MAY_LJMP(check_args(L, 2, "lookup"));
1949 desc = MAY_LJMP(hlua_checkmap(L, 1));
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001950 if (desc->pat.expect_type == SMP_T_SINT) {
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001951 smp.data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001952 smp.data.u.sint = MAY_LJMP(luaL_checkinteger(L, 2));
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001953 }
1954 else {
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001955 smp.data.type = SMP_T_STR;
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001956 smp.flags = SMP_F_CONST;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001957 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 +01001958 smp.data.u.str.size = smp.data.u.str.data + 1;
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001959 }
1960
1961 pat = pattern_exec_match(&desc->pat, &smp, 1);
Thierry FOURNIER503bb092015-08-19 08:35:43 +02001962 if (!pat || !pat->data) {
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001963 if (str)
1964 lua_pushstring(L, "");
1965 else
1966 lua_pushnil(L);
1967 return 1;
1968 }
1969
1970 /* The Lua pattern must return a string, so we can't check the returned type */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001971 lua_pushlstring(L, pat->data->u.str.area, pat->data->u.str.data);
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001972 return 1;
1973}
1974
1975__LJMP static int hlua_map_lookup(struct lua_State *L)
1976{
1977 return _hlua_map_lookup(L, 0);
1978}
1979
1980__LJMP static int hlua_map_slookup(struct lua_State *L)
1981{
1982 return _hlua_map_lookup(L, 1);
1983}
1984
1985/*
1986 *
1987 *
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001988 * Class Socket
1989 *
1990 *
1991 */
1992
1993__LJMP static struct hlua_socket *hlua_checksocket(lua_State *L, int ud)
1994{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02001995 return MAY_LJMP(hlua_checkudata(L, ud, class_socket_ref));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001996}
1997
1998/* This function is the handler called for each I/O on the established
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001999 * connection. It is used for notify space available to send or data
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002000 * received.
2001 */
Willy Tarreau00a37f02015-04-13 12:05:19 +02002002static void hlua_socket_handler(struct appctx *appctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002003{
Willy Tarreau00a37f02015-04-13 12:05:19 +02002004 struct stream_interface *si = appctx->owner;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002005
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02002006 if (appctx->ctx.hlua_cosocket.die) {
2007 si_shutw(si);
2008 si_shutr(si);
2009 si_ic(si)->flags |= CF_READ_NULL;
Thierry FOURNIERd6975962017-07-12 14:31:10 +02002010 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read);
2011 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write);
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02002012 stream_shutdown(si_strm(si), SF_ERR_KILLED);
2013 }
2014
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05002015 /* If we can't write, wakeup the pending write signals. */
Thierry FOURNIER6d695e62015-09-27 19:29:38 +02002016 if (channel_output_closed(si_ic(si)))
Thierry FOURNIERd6975962017-07-12 14:31:10 +02002017 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write);
Thierry FOURNIER6d695e62015-09-27 19:29:38 +02002018
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05002019 /* If we can't read, wakeup the pending read signals. */
Thierry FOURNIER6d695e62015-09-27 19:29:38 +02002020 if (channel_input_closed(si_oc(si)))
Thierry FOURNIERd6975962017-07-12 14:31:10 +02002021 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read);
Thierry FOURNIER6d695e62015-09-27 19:29:38 +02002022
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002023 /* if the connection is not established, inform the stream that we want
Thierry FOURNIER316e3192015-09-04 18:25:53 +02002024 * to be notified whenever the connection completes.
2025 */
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002026 if (si_opposite(si)->state < SI_ST_EST) {
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01002027 si_cant_get(si);
Willy Tarreau12c24232018-12-06 15:29:50 +01002028 si_rx_conn_blk(si);
Willy Tarreau3367d412018-11-15 10:57:41 +01002029 si_rx_endp_more(si);
Willy Tarreaud4da1962015-04-20 01:31:23 +02002030 return;
Thierry FOURNIER316e3192015-09-04 18:25:53 +02002031 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002032
2033 /* This function is called after the connect. */
Thierry FOURNIER18d09902016-12-16 09:25:38 +01002034 appctx->ctx.hlua_cosocket.connected = 1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002035
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002036 /* Wake the tasks which wants to write if the buffer have available space. */
Thierry FOURNIEReba6f642015-09-26 22:01:07 +02002037 if (channel_may_recv(si_ic(si)))
Thierry FOURNIERd6975962017-07-12 14:31:10 +02002038 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002039
2040 /* Wake the tasks which wants to read if the buffer contains data. */
Christopher Faulet174144c2024-02-16 15:33:44 +01002041 if (!channel_is_empty(si_oc(si))) {
Thierry FOURNIERd6975962017-07-12 14:31:10 +02002042 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read);
Christopher Faulet174144c2024-02-16 15:33:44 +01002043 si_cant_get(si);
2044 }
Thierry FOURNIER101b9762018-05-27 01:27:40 +02002045
2046 /* Some data were injected in the buffer, notify the stream
2047 * interface.
2048 */
2049 if (!channel_is_empty(si_ic(si)))
Willy Tarreau14bfe9a2018-12-19 15:19:27 +01002050 si_update(si);
Thierry FOURNIER101b9762018-05-27 01:27:40 +02002051
2052 /* If write notifications are registered, we considers we want
Willy Tarreau3367d412018-11-15 10:57:41 +01002053 * to write, so we clear the blocking flag.
Thierry FOURNIER101b9762018-05-27 01:27:40 +02002054 */
2055 if (notification_registered(&appctx->ctx.hlua_cosocket.wake_on_write))
Willy Tarreau3367d412018-11-15 10:57:41 +01002056 si_rx_endp_more(si);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002057}
2058
Willy Tarreau87b09662015-04-03 00:22:06 +02002059/* This function is called when the "struct stream" is destroyed.
2060 * Remove the link from the object to this stream.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002061 * Wake all the pending signals.
2062 */
Willy Tarreau00a37f02015-04-13 12:05:19 +02002063static void hlua_socket_release(struct appctx *appctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002064{
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002065 struct xref *peer;
2066
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002067 /* Remove my link in the original object. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002068 peer = xref_get_peer_and_lock(&appctx->ctx.hlua_cosocket.xref);
2069 if (peer)
2070 xref_disconnect(&appctx->ctx.hlua_cosocket.xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002071
2072 /* Wake all the task waiting for me. */
Thierry FOURNIERd6975962017-07-12 14:31:10 +02002073 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read);
2074 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002075}
2076
2077/* If the garbage collectio of the object is launch, nobody
Willy Tarreau87b09662015-04-03 00:22:06 +02002078 * uses this object. If the stream does not exists, just quit.
2079 * Send the shutdown signal to the stream. In some cases,
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002080 * pending signal can rest in the read and write lists. destroy
2081 * it.
2082 */
2083__LJMP static int hlua_socket_gc(lua_State *L)
2084{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002085 struct hlua_socket *socket;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002086 struct appctx *appctx;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002087 struct xref *peer;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002088
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002089 MAY_LJMP(check_args(L, 1, "__gc"));
2090
2091 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002092 peer = xref_get_peer_and_lock(&socket->xref);
2093 if (!peer)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002094 return 0;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002095 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002096
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002097 /* Set the flag which destroy the session. */
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02002098 appctx->ctx.hlua_cosocket.die = 1;
2099 appctx_wakeup(appctx);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002100
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002101 /* Remove all reference between the Lua stack and the coroutine stream. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002102 xref_disconnect(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002103 return 0;
2104}
2105
2106/* The close function send shutdown signal and break the
Willy Tarreau87b09662015-04-03 00:22:06 +02002107 * links between the stream and the object.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002108 */
sada05ed3302018-05-11 11:48:18 -07002109__LJMP static int hlua_socket_close_helper(lua_State *L)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002110{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002111 struct hlua_socket *socket;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002112 struct appctx *appctx;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002113 struct xref *peer;
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002114 struct hlua *hlua;
2115
2116 /* Get hlua struct, or NULL if we execute from main lua state */
2117 hlua = hlua_gethlua(L);
2118 if (!hlua)
2119 return 0;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002120
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002121 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002122
2123 /* Check if we run on the same thread than the xreator thread.
2124 * We cannot access to the socket if the thread is different.
2125 */
2126 if (socket->tid != tid)
2127 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2128
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002129 peer = xref_get_peer_and_lock(&socket->xref);
2130 if (!peer)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002131 return 0;
Willy Tarreauf31af932020-01-14 09:59:38 +01002132
2133 hlua->gc_count--;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002134 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002135
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002136 /* Set the flag which destroy the session. */
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02002137 appctx->ctx.hlua_cosocket.die = 1;
2138 appctx_wakeup(appctx);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002139
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002140 /* Remove all reference between the Lua stack and the coroutine stream. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002141 xref_disconnect(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002142 return 0;
2143}
2144
sada05ed3302018-05-11 11:48:18 -07002145/* The close function calls close_helper.
2146 */
2147__LJMP static int hlua_socket_close(lua_State *L)
2148{
2149 MAY_LJMP(check_args(L, 1, "close"));
2150 return hlua_socket_close_helper(L);
2151}
2152
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002153/* This Lua function assumes that the stack contain three parameters.
2154 * 1 - USERDATA containing a struct socket
2155 * 2 - INTEGER with values of the macro defined below
2156 * If the integer is -1, we must read at most one line.
2157 * If the integer is -2, we ust read all the data until the
2158 * end of the stream.
2159 * If the integer is positive value, we must read a number of
2160 * bytes corresponding to this value.
2161 */
2162#define HLSR_READ_LINE (-1)
2163#define HLSR_READ_ALL (-2)
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002164__LJMP static int hlua_socket_receive_yield(struct lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002165{
2166 struct hlua_socket *socket = MAY_LJMP(hlua_checksocket(L, 1));
2167 int wanted = lua_tointeger(L, 2);
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002168 struct hlua *hlua;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002169 struct appctx *appctx;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02002170 size_t len;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002171 int nblk;
Willy Tarreau206ba832018-06-14 15:27:31 +02002172 const char *blk1;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02002173 size_t len1;
Willy Tarreau206ba832018-06-14 15:27:31 +02002174 const char *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02002175 size_t len2;
Thierry FOURNIER00543922015-03-09 18:35:06 +01002176 int skip_at_end = 0;
Willy Tarreau81389672015-03-10 12:03:52 +01002177 struct channel *oc;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002178 struct stream_interface *si;
2179 struct stream *s;
2180 struct xref *peer;
Thierry FOURNIER8c126c72018-05-25 16:27:44 +02002181 int missing_bytes;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002182
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002183 /* Get hlua struct, or NULL if we execute from main lua state */
2184 hlua = hlua_gethlua(L);
2185
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002186 /* Check if this lua stack is schedulable. */
2187 if (!hlua || !hlua->task)
2188 WILL_LJMP(luaL_error(L, "The 'receive' function is only allowed in "
2189 "'frontend', 'backend' or 'task'"));
2190
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002191 /* Check if we run on the same thread than the xreator thread.
2192 * We cannot access to the socket if the thread is different.
2193 */
2194 if (socket->tid != tid)
2195 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2196
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002197 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002198 peer = xref_get_peer_and_lock(&socket->xref);
2199 if (!peer)
2200 goto no_peer;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002201 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2202 si = appctx->owner;
2203 s = si_strm(si);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002204
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002205 oc = &s->res;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002206 if (wanted == HLSR_READ_LINE) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002207 /* Read line. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02002208 nblk = co_getline_nc(oc, &blk1, &len1, &blk2, &len2);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002209 if (nblk < 0) /* Connection close. */
2210 goto connection_closed;
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002211 if (nblk == 0) /* No data available. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002212 goto connection_empty;
Thierry FOURNIER00543922015-03-09 18:35:06 +01002213
2214 /* remove final \r\n. */
2215 if (nblk == 1) {
2216 if (blk1[len1-1] == '\n') {
2217 len1--;
2218 skip_at_end++;
2219 if (blk1[len1-1] == '\r') {
2220 len1--;
2221 skip_at_end++;
2222 }
2223 }
2224 }
2225 else {
2226 if (blk2[len2-1] == '\n') {
2227 len2--;
2228 skip_at_end++;
2229 if (blk2[len2-1] == '\r') {
2230 len2--;
2231 skip_at_end++;
2232 }
2233 }
2234 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002235 }
2236
2237 else if (wanted == HLSR_READ_ALL) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002238 /* Read all the available data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02002239 nblk = co_getblk_nc(oc, &blk1, &len1, &blk2, &len2);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002240 if (nblk < 0) /* Connection close. */
2241 goto connection_closed;
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002242 if (nblk == 0) /* No data available. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002243 goto connection_empty;
2244 }
2245
2246 else {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002247 /* Read a block of data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02002248 nblk = co_getblk_nc(oc, &blk1, &len1, &blk2, &len2);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002249 if (nblk < 0) /* Connection close. */
2250 goto connection_closed;
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002251 if (nblk == 0) /* No data available. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002252 goto connection_empty;
2253
Thierry FOURNIER8c126c72018-05-25 16:27:44 +02002254 missing_bytes = wanted - socket->b.n;
2255 if (len1 > missing_bytes) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002256 nblk = 1;
Thierry FOURNIER8c126c72018-05-25 16:27:44 +02002257 len1 = missing_bytes;
2258 } if (nblk == 2 && len1 + len2 > missing_bytes)
2259 len2 = missing_bytes - len1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002260 }
2261
2262 len = len1;
2263
2264 luaL_addlstring(&socket->b, blk1, len1);
2265 if (nblk == 2) {
2266 len += len2;
2267 luaL_addlstring(&socket->b, blk2, len2);
2268 }
2269
2270 /* Consume data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02002271 co_skip(oc, len + skip_at_end);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002272
2273 /* Don't wait anything. */
Christopher Faulet174144c2024-02-16 15:33:44 +01002274 si_want_get(si);
Thierry FOURNIER7e4ee472018-05-25 15:03:50 +02002275 appctx_wakeup(appctx);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002276
2277 /* If the pattern reclaim to read all the data
2278 * in the connection, got out.
2279 */
2280 if (wanted == HLSR_READ_ALL)
2281 goto connection_empty;
Thierry FOURNIER8c126c72018-05-25 16:27:44 +02002282 else if (wanted >= 0 && socket->b.n < wanted)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002283 goto connection_empty;
2284
2285 /* Return result. */
2286 luaL_pushresult(&socket->b);
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002287 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002288 return 1;
2289
2290connection_closed:
2291
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002292 xref_unlock(&socket->xref, peer);
2293
2294no_peer:
2295
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002296 /* If the buffer containds data. */
2297 if (socket->b.n > 0) {
2298 luaL_pushresult(&socket->b);
2299 return 1;
2300 }
2301 lua_pushnil(L);
2302 lua_pushstring(L, "connection closed.");
2303 return 2;
2304
2305connection_empty:
2306
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002307 if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_read, hlua->task)) {
2308 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002309 WILL_LJMP(luaL_error(L, "out of memory"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002310 }
2311 xref_unlock(&socket->xref, peer);
Willy Tarreau9635e032018-10-16 17:52:55 +02002312 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_receive_yield, TICK_ETERNITY, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002313 return 0;
2314}
2315
Tim Duesterhusb33754c2018-01-04 19:32:14 +01002316/* This Lua function gets two parameters. The first one can be string
2317 * or a number. If the string is "*l", the user requires one line. If
2318 * the string is "*a", the user requires all the contents of the stream.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002319 * If the value is a number, the user require a number of bytes equal
2320 * to the value. The default value is "*l" (a line).
2321 *
Tim Duesterhusb33754c2018-01-04 19:32:14 +01002322 * This parameter with a variable type is converted in integer. This
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002323 * integer takes this values:
2324 * -1 : read a line
2325 * -2 : read all the stream
Tim Duesterhusb33754c2018-01-04 19:32:14 +01002326 * >0 : amount of bytes.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002327 *
Tim Duesterhusb33754c2018-01-04 19:32:14 +01002328 * The second parameter is optional. It contains a string that must be
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002329 * concatenated with the read data.
2330 */
2331__LJMP static int hlua_socket_receive(struct lua_State *L)
2332{
2333 int wanted = HLSR_READ_LINE;
2334 const char *pattern;
Christopher Fauletc31b2002021-05-03 10:11:13 +02002335 int lastarg, type;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002336 char *error;
2337 size_t len;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002338 struct hlua_socket *socket;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002339
2340 if (lua_gettop(L) < 1 || lua_gettop(L) > 3)
2341 WILL_LJMP(luaL_error(L, "The 'receive' function requires between 1 and 3 arguments."));
2342
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002343 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002344
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002345 /* Check if we run on the same thread than the xreator thread.
2346 * We cannot access to the socket if the thread is different.
2347 */
2348 if (socket->tid != tid)
2349 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2350
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002351 /* check for pattern. */
2352 if (lua_gettop(L) >= 2) {
2353 type = lua_type(L, 2);
2354 if (type == LUA_TSTRING) {
2355 pattern = lua_tostring(L, 2);
2356 if (strcmp(pattern, "*a") == 0)
2357 wanted = HLSR_READ_ALL;
2358 else if (strcmp(pattern, "*l") == 0)
2359 wanted = HLSR_READ_LINE;
2360 else {
2361 wanted = strtoll(pattern, &error, 10);
2362 if (*error != '\0')
2363 WILL_LJMP(luaL_error(L, "Unsupported pattern."));
2364 }
2365 }
2366 else if (type == LUA_TNUMBER) {
2367 wanted = lua_tointeger(L, 2);
2368 if (wanted < 0)
2369 WILL_LJMP(luaL_error(L, "Unsupported size."));
2370 }
2371 }
2372
2373 /* Set pattern. */
2374 lua_pushinteger(L, wanted);
Tim Duesterhusc6e377e2018-01-04 19:32:13 +01002375
2376 /* Check if we would replace the top by itself. */
2377 if (lua_gettop(L) != 2)
2378 lua_replace(L, 2);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002379
Christopher Fauletc31b2002021-05-03 10:11:13 +02002380 /* Save index of the top of the stack because since buffers are used, it
2381 * may change
2382 */
2383 lastarg = lua_gettop(L);
2384
Tim Duesterhusb33754c2018-01-04 19:32:14 +01002385 /* init buffer, and fill it with prefix. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002386 luaL_buffinit(L, &socket->b);
2387
2388 /* Check prefix. */
Christopher Fauletc31b2002021-05-03 10:11:13 +02002389 if (lastarg >= 3) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002390 if (lua_type(L, 3) != LUA_TSTRING)
2391 WILL_LJMP(luaL_error(L, "Expect a 'string' for the prefix"));
2392 pattern = lua_tolstring(L, 3, &len);
2393 luaL_addlstring(&socket->b, pattern, len);
2394 }
2395
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002396 return __LJMP(hlua_socket_receive_yield(L, 0, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002397}
2398
2399/* Write the Lua input string in the output buffer.
Mark Lakes22154b42018-01-29 14:38:40 -08002400 * This function returns a yield if no space is available.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002401 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002402static int hlua_socket_write_yield(struct lua_State *L,int status, lua_KContext ctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002403{
2404 struct hlua_socket *socket;
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002405 struct hlua *hlua;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002406 struct appctx *appctx;
2407 size_t buf_len;
2408 const char *buf;
2409 int len;
2410 int send_len;
2411 int sent;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002412 struct xref *peer;
2413 struct stream_interface *si;
2414 struct stream *s;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002415
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002416 /* Get hlua struct, or NULL if we execute from main lua state */
2417 hlua = hlua_gethlua(L);
2418
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002419 /* Check if this lua stack is schedulable. */
2420 if (!hlua || !hlua->task)
2421 WILL_LJMP(luaL_error(L, "The 'write' function is only allowed in "
2422 "'frontend', 'backend' or 'task'"));
2423
2424 /* Get object */
2425 socket = MAY_LJMP(hlua_checksocket(L, 1));
2426 buf = MAY_LJMP(luaL_checklstring(L, 2, &buf_len));
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002427 sent = MAY_LJMP(luaL_checkinteger(L, 3));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002428
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002429 /* Check if we run on the same thread than the xreator thread.
2430 * We cannot access to the socket if the thread is different.
2431 */
2432 if (socket->tid != tid)
2433 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2434
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002435 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002436 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002437 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002438 lua_pushinteger(L, -1);
2439 return 1;
2440 }
2441 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2442 si = appctx->owner;
2443 s = si_strm(si);
2444
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002445 /* Check for connection close. */
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002446 if (channel_output_closed(&s->req)) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002447 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002448 lua_pushinteger(L, -1);
2449 return 1;
2450 }
2451
2452 /* Update the input buffer data. */
2453 buf += sent;
2454 send_len = buf_len - sent;
2455
2456 /* All the data are sent. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002457 if (sent >= buf_len) {
2458 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002459 return 1; /* Implicitly return the length sent. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002460 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002461
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002462 /* Check if the buffer is available because HAProxy doesn't allocate
Thierry FOURNIER486d52a2015-03-09 17:51:43 +01002463 * the request buffer if its not required.
2464 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002465 if (s->req.buf.size == 0) {
Willy Tarreau581abd32018-10-25 10:21:41 +02002466 if (!si_alloc_ibuf(si, &appctx->buffer_wait))
Christopher Faulet33834b12016-12-19 09:29:06 +01002467 goto hlua_socket_write_yield_return;
Thierry FOURNIER486d52a2015-03-09 17:51:43 +01002468 }
2469
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002470 /* Check for available space. */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002471 len = b_room(&s->req.buf);
Christopher Faulet33834b12016-12-19 09:29:06 +01002472 if (len <= 0) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002473 goto hlua_socket_write_yield_return;
Christopher Faulet33834b12016-12-19 09:29:06 +01002474 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002475
2476 /* send data */
2477 if (len < send_len)
2478 send_len = len;
Thierry FOURNIER66b89192018-05-27 01:14:47 +02002479 len = ci_putblk(&s->req, buf, send_len);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002480
2481 /* "Not enough space" (-1), "Buffer too little to contain
2482 * the data" (-2) are not expected because the available length
2483 * is tested.
2484 * Other unknown error are also not expected.
2485 */
2486 if (len <= 0) {
Willy Tarreaubc18da12015-03-13 14:00:47 +01002487 if (len == -1)
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002488 s->req.flags |= CF_WAKE_WRITE;
Willy Tarreaubc18da12015-03-13 14:00:47 +01002489
sada05ed3302018-05-11 11:48:18 -07002490 MAY_LJMP(hlua_socket_close_helper(L));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002491 lua_pop(L, 1);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002492 lua_pushinteger(L, -1);
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002493 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002494 return 1;
2495 }
2496
2497 /* update buffers. */
Thierry FOURNIER101b9762018-05-27 01:27:40 +02002498 appctx_wakeup(appctx);
Willy Tarreaude70fa12015-09-26 11:25:05 +02002499
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002500 s->req.rex = TICK_ETERNITY;
2501 s->res.wex = TICK_ETERNITY;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002502
2503 /* Update length sent. */
2504 lua_pop(L, 1);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002505 lua_pushinteger(L, sent + len);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002506
2507 /* All the data buffer is sent ? */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002508 if (sent + len >= buf_len) {
2509 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002510 return 1;
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002511 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002512
2513hlua_socket_write_yield_return:
Thierry FOURNIERba42fcd2018-05-27 00:59:48 +02002514 if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_write, hlua->task)) {
2515 xref_unlock(&socket->xref, peer);
2516 WILL_LJMP(luaL_error(L, "out of memory"));
2517 }
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002518 xref_unlock(&socket->xref, peer);
Willy Tarreau9635e032018-10-16 17:52:55 +02002519 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_write_yield, TICK_ETERNITY, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002520 return 0;
2521}
2522
2523/* This function initiate the send of data. It just check the input
2524 * parameters and push an integer in the Lua stack that contain the
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002525 * amount of data written to the buffer. This is used by the function
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002526 * "hlua_socket_write_yield" that can yield.
2527 *
2528 * The Lua function gets between 3 and 4 parameters. The first one is
2529 * the associated object. The second is a string buffer. The third is
2530 * a facultative integer that represents where is the buffer position
2531 * of the start of the data that can send. The first byte is the
2532 * position "1". The default value is "1". The fourth argument is a
2533 * facultative integer that represents where is the buffer position
2534 * of the end of the data that can send. The default is the last byte.
2535 */
2536static int hlua_socket_send(struct lua_State *L)
2537{
2538 int i;
2539 int j;
2540 const char *buf;
2541 size_t buf_len;
2542
2543 /* Check number of arguments. */
2544 if (lua_gettop(L) < 2 || lua_gettop(L) > 4)
2545 WILL_LJMP(luaL_error(L, "'send' needs between 2 and 4 arguments"));
2546
2547 /* Get the string. */
2548 buf = MAY_LJMP(luaL_checklstring(L, 2, &buf_len));
2549
2550 /* Get and check j. */
2551 if (lua_gettop(L) == 4) {
2552 j = MAY_LJMP(luaL_checkinteger(L, 4));
2553 if (j < 0)
2554 j = buf_len + j + 1;
2555 if (j > buf_len)
2556 j = buf_len + 1;
2557 lua_pop(L, 1);
2558 }
2559 else
2560 j = buf_len;
2561
2562 /* Get and check i. */
2563 if (lua_gettop(L) == 3) {
2564 i = MAY_LJMP(luaL_checkinteger(L, 3));
2565 if (i < 0)
2566 i = buf_len + i + 1;
2567 if (i > buf_len)
2568 i = buf_len + 1;
2569 lua_pop(L, 1);
2570 } else
2571 i = 1;
2572
2573 /* Check bth i and j. */
2574 if (i > j) {
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002575 lua_pushinteger(L, 0);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002576 return 1;
2577 }
2578 if (i == 0 && j == 0) {
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002579 lua_pushinteger(L, 0);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002580 return 1;
2581 }
2582 if (i == 0)
2583 i = 1;
2584 if (j == 0)
2585 j = 1;
2586
2587 /* Pop the string. */
2588 lua_pop(L, 1);
2589
2590 /* Update the buffer length. */
2591 buf += i - 1;
2592 buf_len = j - i + 1;
2593 lua_pushlstring(L, buf, buf_len);
2594
2595 /* This unsigned is used to remember the amount of sent data. */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002596 lua_pushinteger(L, 0);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002597
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002598 return MAY_LJMP(hlua_socket_write_yield(L, 0, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002599}
2600
Willy Tarreau22b0a682015-06-17 19:43:49 +02002601#define SOCKET_INFO_MAX_LEN sizeof("[0000:0000:0000:0000:0000:0000:0000:0000]:12345")
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002602__LJMP static inline int hlua_socket_info(struct lua_State *L, struct sockaddr_storage *addr)
2603{
2604 static char buffer[SOCKET_INFO_MAX_LEN];
2605 int ret;
2606 int len;
2607 char *p;
2608
2609 ret = addr_to_str(addr, buffer+1, SOCKET_INFO_MAX_LEN-1);
2610 if (ret <= 0) {
2611 lua_pushnil(L);
2612 return 1;
2613 }
2614
2615 if (ret == AF_UNIX) {
2616 lua_pushstring(L, buffer+1);
2617 return 1;
2618 }
2619 else if (ret == AF_INET6) {
2620 buffer[0] = '[';
2621 len = strlen(buffer);
2622 buffer[len] = ']';
2623 len++;
2624 buffer[len] = ':';
2625 len++;
2626 p = buffer;
2627 }
2628 else if (ret == AF_INET) {
2629 p = buffer + 1;
2630 len = strlen(p);
2631 p[len] = ':';
2632 len++;
2633 }
2634 else {
2635 lua_pushnil(L);
2636 return 1;
2637 }
2638
2639 if (port_to_str(addr, p + len, SOCKET_INFO_MAX_LEN-1 - len) <= 0) {
2640 lua_pushnil(L);
2641 return 1;
2642 }
2643
2644 lua_pushstring(L, p);
2645 return 1;
2646}
2647
2648/* Returns information about the peer of the connection. */
2649__LJMP static int hlua_socket_getpeername(struct lua_State *L)
2650{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002651 struct hlua_socket *socket;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002652 struct xref *peer;
2653 struct appctx *appctx;
2654 struct stream_interface *si;
2655 struct stream *s;
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002656 int ret;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002657
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002658 MAY_LJMP(check_args(L, 1, "getpeername"));
2659
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002660 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002661
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002662 /* Check if we run on the same thread than the xreator thread.
2663 * We cannot access to the socket if the thread is different.
2664 */
2665 if (socket->tid != tid)
2666 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2667
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002668 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002669 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002670 if (!peer) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002671 lua_pushnil(L);
2672 return 1;
2673 }
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002674 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2675 si = appctx->owner;
2676 s = si_strm(si);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002677
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002678 if (!s->target_addr) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002679 xref_unlock(&socket->xref, peer);
Willy Tarreaua71f6422016-11-16 17:00:14 +01002680 lua_pushnil(L);
2681 return 1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002682 }
2683
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002684 ret = MAY_LJMP(hlua_socket_info(L, s->target_addr));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002685 xref_unlock(&socket->xref, peer);
2686 return ret;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002687}
2688
2689/* Returns information about my connection side. */
2690static int hlua_socket_getsockname(struct lua_State *L)
2691{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002692 struct hlua_socket *socket;
2693 struct connection *conn;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002694 struct appctx *appctx;
2695 struct xref *peer;
2696 struct stream_interface *si;
2697 struct stream *s;
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002698 int ret;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002699
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002700 MAY_LJMP(check_args(L, 1, "getsockname"));
2701
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002702 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002703
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002704 /* Check if we run on the same thread than the xreator thread.
2705 * We cannot access to the socket if the thread is different.
2706 */
2707 if (socket->tid != tid)
2708 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2709
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002710 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002711 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002712 if (!peer) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002713 lua_pushnil(L);
2714 return 1;
2715 }
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002716 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2717 si = appctx->owner;
2718 s = si_strm(si);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002719
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002720 conn = cs_conn(objt_cs(s->si[1].end));
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002721 if (!conn || !conn_get_src(conn)) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002722 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002723 lua_pushnil(L);
2724 return 1;
2725 }
2726
Willy Tarreau9da9a6f2019-07-17 14:49:44 +02002727 ret = hlua_socket_info(L, conn->src);
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002728 xref_unlock(&socket->xref, peer);
2729 return ret;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002730}
2731
2732/* This struct define the applet. */
Willy Tarreau30576452015-04-13 13:50:30 +02002733static struct applet update_applet = {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002734 .obj_type = OBJ_TYPE_APPLET,
2735 .name = "<LUA_TCP>",
2736 .fct = hlua_socket_handler,
2737 .release = hlua_socket_release,
2738};
2739
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002740__LJMP static int hlua_socket_connect_yield(struct lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002741{
2742 struct hlua_socket *socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002743 struct hlua *hlua;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002744 struct xref *peer;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002745 struct appctx *appctx;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002746 struct stream_interface *si;
2747 struct stream *s;
2748
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002749 /* Get hlua struct, or NULL if we execute from main lua state */
2750 hlua = hlua_gethlua(L);
2751 if (!hlua)
2752 return 0;
2753
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002754 /* Check if we run on the same thread than the xreator thread.
2755 * We cannot access to the socket if the thread is different.
2756 */
2757 if (socket->tid != tid)
2758 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2759
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002760 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002761 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002762 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002763 lua_pushnil(L);
2764 lua_pushstring(L, "Can't connect");
2765 return 2;
2766 }
2767 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2768 si = appctx->owner;
2769 s = si_strm(si);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002770
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002771 /* Check if we run on the same thread than the xreator thread.
2772 * We cannot access to the socket if the thread is different.
2773 */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002774 if (socket->tid != tid) {
2775 xref_unlock(&socket->xref, peer);
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002776 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002777 }
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002778
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002779 /* Check for connection close. */
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002780 if (!hlua || channel_output_closed(&s->req)) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002781 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002782 lua_pushnil(L);
2783 lua_pushstring(L, "Can't connect");
2784 return 2;
2785 }
2786
Willy Tarreaue09101e2018-10-16 17:37:12 +02002787 appctx = __objt_appctx(s->si[0].end);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002788
2789 /* Check for connection established. */
Thierry FOURNIER18d09902016-12-16 09:25:38 +01002790 if (appctx->ctx.hlua_cosocket.connected) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002791 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002792 lua_pushinteger(L, 1);
2793 return 1;
2794 }
2795
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002796 if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_write, hlua->task)) {
2797 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002798 WILL_LJMP(luaL_error(L, "out of memory error"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002799 }
2800 xref_unlock(&socket->xref, peer);
Willy Tarreau9635e032018-10-16 17:52:55 +02002801 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_connect_yield, TICK_ETERNITY, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002802 return 0;
2803}
2804
2805/* This function fail or initite the connection. */
2806__LJMP static int hlua_socket_connect(struct lua_State *L)
2807{
2808 struct hlua_socket *socket;
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002809 int port = -1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002810 const char *ip;
Thierry FOURNIER95ad96a2015-03-09 18:12:40 +01002811 struct hlua *hlua;
2812 struct appctx *appctx;
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002813 int low, high;
2814 struct sockaddr_storage *addr;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002815 struct xref *peer;
2816 struct stream_interface *si;
2817 struct stream *s;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002818
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002819 if (lua_gettop(L) < 2)
2820 WILL_LJMP(luaL_error(L, "connect: need at least 2 arguments"));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002821
2822 /* Get args. */
2823 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002824
2825 /* Check if we run on the same thread than the xreator thread.
2826 * We cannot access to the socket if the thread is different.
2827 */
2828 if (socket->tid != tid)
2829 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2830
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002831 ip = MAY_LJMP(luaL_checkstring(L, 2));
Tim Duesterhus6edab862018-01-06 19:04:45 +01002832 if (lua_gettop(L) >= 3) {
2833 luaL_Buffer b;
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002834 port = MAY_LJMP(luaL_checkinteger(L, 3));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002835
Tim Duesterhus6edab862018-01-06 19:04:45 +01002836 /* Force the ip to end with a colon, to support IPv6 addresses
2837 * that are not enclosed within square brackets.
2838 */
2839 if (port > 0) {
2840 luaL_buffinit(L, &b);
2841 luaL_addstring(&b, ip);
2842 luaL_addchar(&b, ':');
2843 luaL_pushresult(&b);
2844 ip = lua_tolstring(L, lua_gettop(L), NULL);
2845 }
2846 }
2847
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002848 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002849 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002850 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002851 lua_pushnil(L);
2852 return 1;
2853 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002854
2855 /* Parse ip address. */
Willy Tarreau5fc93282020-09-16 18:25:03 +02002856 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 +02002857 if (!addr) {
2858 xref_unlock(&socket->xref, peer);
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002859 WILL_LJMP(luaL_error(L, "connect: cannot parse destination address '%s'", ip));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002860 }
Willy Tarreau9da9a6f2019-07-17 14:49:44 +02002861
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002862 /* Set port. */
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002863 if (low == 0) {
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002864 if (addr->ss_family == AF_INET) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002865 if (port == -1) {
2866 xref_unlock(&socket->xref, peer);
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002867 WILL_LJMP(luaL_error(L, "connect: port missing"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002868 }
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002869 ((struct sockaddr_in *)addr)->sin_port = htons(port);
2870 } else if (addr->ss_family == AF_INET6) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002871 if (port == -1) {
2872 xref_unlock(&socket->xref, peer);
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002873 WILL_LJMP(luaL_error(L, "connect: port missing"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002874 }
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002875 ((struct sockaddr_in6 *)addr)->sin6_port = htons(port);
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002876 }
2877 }
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002878
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002879 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2880 si = appctx->owner;
2881 s = si_strm(si);
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002882
Willy Tarreau9b7587a2020-10-15 07:32:10 +02002883 if (!sockaddr_alloc(&s->target_addr, addr, sizeof(*addr))) {
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002884 xref_unlock(&socket->xref, peer);
2885 WILL_LJMP(luaL_error(L, "connect: internal error"));
2886 }
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002887 s->flags |= SF_ADDR_SET;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002888
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002889 /* Get hlua struct, or NULL if we execute from main lua state */
Thierry FOURNIER95ad96a2015-03-09 18:12:40 +01002890 hlua = hlua_gethlua(L);
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002891 if (!hlua)
2892 return 0;
Willy Tarreaubdc97a82015-08-24 15:42:28 +02002893
2894 /* inform the stream that we want to be notified whenever the
2895 * connection completes.
2896 */
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01002897 si_cant_get(&s->si[0]);
Willy Tarreau3367d412018-11-15 10:57:41 +01002898 si_rx_endp_more(&s->si[0]);
Thierry FOURNIER8c8fbbe2015-09-26 17:02:35 +02002899 appctx_wakeup(appctx);
Willy Tarreaubdc97a82015-08-24 15:42:28 +02002900
Willy Tarreauf31af932020-01-14 09:59:38 +01002901 hlua->gc_count++;
Thierry FOURNIER7c39ab42015-09-27 22:53:33 +02002902
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002903 if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_write, hlua->task)) {
2904 xref_unlock(&socket->xref, peer);
Thierry FOURNIER95ad96a2015-03-09 18:12:40 +01002905 WILL_LJMP(luaL_error(L, "out of memory"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002906 }
2907 xref_unlock(&socket->xref, peer);
PiBa-NL706d5ee2018-05-05 23:51:42 +02002908
2909 task_wakeup(s->task, TASK_WOKEN_INIT);
2910 /* Return yield waiting for connection. */
2911
Willy Tarreau9635e032018-10-16 17:52:55 +02002912 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_connect_yield, TICK_ETERNITY, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002913
2914 return 0;
2915}
2916
Baptiste Assmann84bb4932015-03-02 21:40:06 +01002917#ifdef USE_OPENSSL
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002918__LJMP static int hlua_socket_connect_ssl(struct lua_State *L)
2919{
2920 struct hlua_socket *socket;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002921 struct xref *peer;
2922 struct appctx *appctx;
2923 struct stream_interface *si;
2924 struct stream *s;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002925
2926 MAY_LJMP(check_args(L, 3, "connect_ssl"));
2927 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002928
2929 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002930 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002931 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002932 lua_pushnil(L);
2933 return 1;
2934 }
2935 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2936 si = appctx->owner;
2937 s = si_strm(si);
2938
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +01002939 s->target = &socket_ssl->obj_type;
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002940 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002941 return MAY_LJMP(hlua_socket_connect(L));
2942}
Baptiste Assmann84bb4932015-03-02 21:40:06 +01002943#endif
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002944
2945__LJMP static int hlua_socket_setoption(struct lua_State *L)
2946{
2947 return 0;
2948}
2949
2950__LJMP static int hlua_socket_settimeout(struct lua_State *L)
2951{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002952 struct hlua_socket *socket;
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002953 int tmout;
Mark Lakes56cc1252018-03-27 09:48:06 +02002954 double dtmout;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002955 struct xref *peer;
2956 struct appctx *appctx;
2957 struct stream_interface *si;
2958 struct stream *s;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002959
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002960 MAY_LJMP(check_args(L, 2, "settimeout"));
2961
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002962 socket = MAY_LJMP(hlua_checksocket(L, 1));
Mark Lakes56cc1252018-03-27 09:48:06 +02002963
Cyril Bonté7ee465f2018-08-19 22:08:50 +02002964 /* convert the timeout to millis */
2965 dtmout = MAY_LJMP(luaL_checknumber(L, 2)) * 1000;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002966
Thierry Fournier17a921b2018-03-08 09:59:02 +01002967 /* Check for negative values */
Mark Lakes56cc1252018-03-27 09:48:06 +02002968 if (dtmout < 0)
Thierry Fournier17a921b2018-03-08 09:59:02 +01002969 WILL_LJMP(luaL_error(L, "settimeout: cannot set negatives values"));
2970
Mark Lakes56cc1252018-03-27 09:48:06 +02002971 if (dtmout > INT_MAX) /* overflow check */
Cyril Bonté7ee465f2018-08-19 22:08:50 +02002972 WILL_LJMP(luaL_error(L, "settimeout: cannot set values larger than %d ms", INT_MAX));
Mark Lakes56cc1252018-03-27 09:48:06 +02002973
2974 tmout = MS_TO_TICKS((int)dtmout);
Cyril Bonté7ee465f2018-08-19 22:08:50 +02002975 if (tmout == 0)
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05002976 tmout++; /* very small timeouts are adjusted to a minimum of 1ms */
Mark Lakes56cc1252018-03-27 09:48:06 +02002977
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002978 /* Check if we run on the same thread than the xreator thread.
2979 * We cannot access to the socket if the thread is different.
2980 */
2981 if (socket->tid != tid)
2982 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2983
Mark Lakes56cc1252018-03-27 09:48:06 +02002984 /* check for connection break. If some data were read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002985 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002986 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002987 hlua_pusherror(L, "socket: not yet initialised, you can't set timeouts.");
2988 WILL_LJMP(lua_error(L));
2989 return 0;
2990 }
2991 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2992 si = appctx->owner;
2993 s = si_strm(si);
2994
Cyril Bonté7bb63452018-08-17 23:51:02 +02002995 s->sess->fe->timeout.connect = tmout;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002996 s->req.rto = tmout;
2997 s->req.wto = tmout;
2998 s->res.rto = tmout;
2999 s->res.wto = tmout;
Cyril Bonté7bb63452018-08-17 23:51:02 +02003000 s->req.rex = tick_add_ifset(now_ms, tmout);
3001 s->req.wex = tick_add_ifset(now_ms, tmout);
3002 s->res.rex = tick_add_ifset(now_ms, tmout);
3003 s->res.wex = tick_add_ifset(now_ms, tmout);
3004
3005 s->task->expire = tick_add_ifset(now_ms, tmout);
3006 task_queue(s->task);
3007
Thierry FOURNIER952939d2017-09-01 14:17:32 +02003008 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01003009
Thierry Fourniere9636f12018-03-08 09:54:32 +01003010 lua_pushinteger(L, 1);
Tim Duesterhus119a5f12018-01-06 19:16:25 +01003011 return 1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01003012}
3013
3014__LJMP static int hlua_socket_new(lua_State *L)
3015{
3016 struct hlua_socket *socket;
3017 struct appctx *appctx;
Willy Tarreau15b5e142015-04-04 14:38:25 +02003018 struct session *sess;
Willy Tarreau61cf7c82015-04-06 00:48:33 +02003019 struct stream *strm;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01003020
3021 /* Check stack size. */
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01003022 if (!lua_checkstack(L, 3)) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01003023 hlua_pusherror(L, "socket: full stack");
3024 goto out_fail_conf;
3025 }
3026
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01003027 /* Create the object: obj[0] = userdata. */
3028 lua_newtable(L);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01003029 socket = MAY_LJMP(lua_newuserdata(L, sizeof(*socket)));
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01003030 lua_rawseti(L, -2, 0);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01003031 memset(socket, 0, sizeof(*socket));
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02003032 socket->tid = tid;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01003033
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05003034 /* Check if the various memory pools are initialized. */
Willy Tarreaubafbe012017-11-24 17:34:44 +01003035 if (!pool_head_stream || !pool_head_buffer) {
Thierry FOURNIER4a6170c2015-03-09 17:07:10 +01003036 hlua_pusherror(L, "socket: uninitialized pools.");
3037 goto out_fail_conf;
3038 }
3039
Willy Tarreau87b09662015-04-03 00:22:06 +02003040 /* Pop a class stream metatable and affect it to the userdata. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01003041 lua_rawgeti(L, LUA_REGISTRYINDEX, class_socket_ref);
3042 lua_setmetatable(L, -2);
3043
Willy Tarreaud420a972015-04-06 00:39:18 +02003044 /* Create the applet context */
Willy Tarreau5f4a47b2017-10-31 15:59:32 +01003045 appctx = appctx_new(&update_applet, tid_bit);
Willy Tarreau61cf7c82015-04-06 00:48:33 +02003046 if (!appctx) {
3047 hlua_pusherror(L, "socket: out of memory");
Willy Tarreaufeb76402015-04-03 14:10:06 +02003048 goto out_fail_conf;
Willy Tarreau61cf7c82015-04-06 00:48:33 +02003049 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01003050
Thierry FOURNIER18d09902016-12-16 09:25:38 +01003051 appctx->ctx.hlua_cosocket.connected = 0;
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02003052 appctx->ctx.hlua_cosocket.die = 0;
Thierry FOURNIER18d09902016-12-16 09:25:38 +01003053 LIST_INIT(&appctx->ctx.hlua_cosocket.wake_on_write);
3054 LIST_INIT(&appctx->ctx.hlua_cosocket.wake_on_read);
Willy Tarreaub2bf8332015-04-04 15:58:58 +02003055
Willy Tarreaud420a972015-04-06 00:39:18 +02003056 /* Now create a session, task and stream for this applet */
Amaury Denoyelle239fdbf2021-03-24 10:22:03 +01003057 sess = session_new(socket_proxy, NULL, &appctx->obj_type);
Willy Tarreaud420a972015-04-06 00:39:18 +02003058 if (!sess) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01003059 hlua_pusherror(L, "socket: out of memory");
Willy Tarreaud420a972015-04-06 00:39:18 +02003060 goto out_fail_sess;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01003061 }
3062
Christopher Faulet26256f82020-09-14 11:40:13 +02003063 strm = stream_new(sess, &appctx->obj_type, &BUF_NULL);
Willy Tarreau61cf7c82015-04-06 00:48:33 +02003064 if (!strm) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01003065 hlua_pusherror(L, "socket: out of memory");
Willy Tarreaud420a972015-04-06 00:39:18 +02003066 goto out_fail_stream;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01003067 }
3068
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02003069 /* Initialise cross reference between stream and Lua socket object. */
3070 xref_create(&socket->xref, &appctx->ctx.hlua_cosocket.xref);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01003071
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01003072 /* Configure "right" stream interface. this "si" is used to connect
3073 * and retrieve data from the server. The connection is initialized
3074 * with the "struct server".
3075 */
Willy Tarreau61cf7c82015-04-06 00:48:33 +02003076 si_set_state(&strm->si[1], SI_ST_ASS);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01003077
3078 /* Force destination server. */
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02003079 strm->flags |= SF_DIRECT | SF_ASSIGNED | SF_BE_ASSIGNED;
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +01003080 strm->target = &socket_tcp->obj_type;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01003081
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01003082 return 1;
3083
Willy Tarreaud420a972015-04-06 00:39:18 +02003084 out_fail_stream:
Willy Tarreau11c36242015-04-04 15:54:03 +02003085 session_free(sess);
Willy Tarreaud420a972015-04-06 00:39:18 +02003086 out_fail_sess:
3087 appctx_free(appctx);
3088 out_fail_conf:
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01003089 WILL_LJMP(lua_error(L));
3090 return 0;
3091}
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01003092
3093/*
3094 *
3095 *
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003096 * Class Channel
3097 *
3098 *
3099 */
3100
3101/* Returns the struct hlua_channel join to the class channel in the
3102 * stack entry "ud" or throws an argument error.
3103 */
Willy Tarreau47860ed2015-03-10 14:07:50 +01003104__LJMP static struct channel *hlua_checkchannel(lua_State *L, int ud)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003105{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02003106 return MAY_LJMP(hlua_checkudata(L, ud, class_channel_ref));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003107}
3108
Willy Tarreau47860ed2015-03-10 14:07:50 +01003109/* Pushes the channel onto the top of the stack. If the stask does not have a
3110 * free slots, the function fails and returns 0;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003111 */
Willy Tarreau2a71af42015-03-10 13:51:50 +01003112static int hlua_channel_new(lua_State *L, struct channel *channel)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003113{
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003114 /* Check stack size. */
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01003115 if (!lua_checkstack(L, 3))
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003116 return 0;
3117
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01003118 lua_newtable(L);
Willy Tarreau47860ed2015-03-10 14:07:50 +01003119 lua_pushlightuserdata(L, channel);
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01003120 lua_rawseti(L, -2, 0);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003121
3122 /* Pop a class sesison metatable and affect it to the userdata. */
3123 lua_rawgeti(L, LUA_REGISTRYINDEX, class_channel_ref);
3124 lua_setmetatable(L, -2);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003125 return 1;
3126}
3127
3128/* Duplicate all the data present in the input channel and put it
3129 * in a string LUA variables. Returns -1 and push a nil value in
3130 * the stack if the channel is closed and all the data are consumed,
3131 * returns 0 if no data are available, otherwise it returns the length
Ilya Shipitsind4259502020-04-08 01:07:56 +05003132 * of the built string.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003133 */
Willy Tarreau47860ed2015-03-10 14:07:50 +01003134static inline int _hlua_channel_dup(struct channel *chn, lua_State *L)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003135{
3136 char *blk1;
3137 char *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02003138 size_t len1;
3139 size_t len2;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003140 int ret;
3141 luaL_Buffer b;
3142
Willy Tarreau06d80a92017-10-19 14:32:15 +02003143 ret = ci_getblk_nc(chn, &blk1, &len1, &blk2, &len2);
Christopher Faulet055310f2021-08-05 11:58:37 +02003144 if (unlikely(ret <= 0)) {
3145 if (ret < 0 || HLUA_CANT_YIELD(hlua_gethlua(L))) {
3146 lua_pushnil(L);
3147 return -1;
3148 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003149 return 0;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003150 }
3151
3152 luaL_buffinit(L, &b);
3153 luaL_addlstring(&b, blk1, len1);
3154 if (unlikely(ret == 2))
3155 luaL_addlstring(&b, blk2, len2);
3156 luaL_pushresult(&b);
3157
3158 if (unlikely(ret == 2))
3159 return len1 + len2;
3160 return len1;
3161}
3162
3163/* "_hlua_channel_dup" wrapper. If no data are available, it returns
3164 * a yield. This function keep the data in the buffer.
3165 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003166__LJMP static int hlua_channel_dup_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003167{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003168 struct channel *chn;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003169
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003170 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3171
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01003172 if (IS_HTX_STRM(chn_strm(chn))) {
Thierry Fournier77016da2020-08-15 14:35:51 +02003173 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
Christopher Faulet3f829a42018-12-13 21:56:45 +01003174 WILL_LJMP(lua_error(L));
Thierry Fournier77016da2020-08-15 14:35:51 +02003175 }
Christopher Faulet3f829a42018-12-13 21:56:45 +01003176
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003177 if (_hlua_channel_dup(chn, L) == 0)
Willy Tarreau9635e032018-10-16 17:52:55 +02003178 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_dup_yield, TICK_ETERNITY, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003179 return 1;
3180}
3181
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003182/* Check arguments for the function "hlua_channel_dup_yield". */
3183__LJMP static int hlua_channel_dup(lua_State *L)
3184{
3185 MAY_LJMP(check_args(L, 1, "dup"));
3186 MAY_LJMP(hlua_checkchannel(L, 1));
3187 return MAY_LJMP(hlua_channel_dup_yield(L, 0, 0));
3188}
3189
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003190/* "_hlua_channel_dup" wrapper. If no data are available, it returns
3191 * a yield. This function consumes the data in the buffer. It returns
3192 * a string containing the data or a nil pointer if no data are available
3193 * and the channel is closed.
3194 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003195__LJMP static int hlua_channel_get_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003196{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003197 struct channel *chn;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003198 int ret;
3199
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003200 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003201
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01003202 if (IS_HTX_STRM(chn_strm(chn))) {
Thierry Fournier77016da2020-08-15 14:35:51 +02003203 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
Christopher Faulet3f829a42018-12-13 21:56:45 +01003204 WILL_LJMP(lua_error(L));
Thierry Fournier77016da2020-08-15 14:35:51 +02003205 }
Christopher Faulet3f829a42018-12-13 21:56:45 +01003206
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003207 ret = _hlua_channel_dup(chn, L);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003208 if (unlikely(ret == 0))
Willy Tarreau9635e032018-10-16 17:52:55 +02003209 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_get_yield, TICK_ETERNITY, 0));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003210
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003211 if (unlikely(ret == -1))
3212 return 1;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003213
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003214 b_sub(&chn->buf, ret);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003215 return 1;
3216}
3217
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003218/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003219__LJMP static int hlua_channel_get(lua_State *L)
3220{
3221 MAY_LJMP(check_args(L, 1, "get"));
3222 MAY_LJMP(hlua_checkchannel(L, 1));
3223 return MAY_LJMP(hlua_channel_get_yield(L, 0, 0));
3224}
3225
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003226/* This functions consumes and returns one line. If the channel is closed,
3227 * and the last data does not contains a final '\n', the data are returned
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003228 * without the final '\n'. When no more data are available, it returns nil
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003229 * value.
3230 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003231__LJMP static int hlua_channel_getline_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003232{
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003233 char *blk1;
3234 char *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02003235 size_t len1;
3236 size_t len2;
3237 size_t len;
Willy Tarreau47860ed2015-03-10 14:07:50 +01003238 struct channel *chn;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003239 int ret;
3240 luaL_Buffer b;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003241
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003242 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3243
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01003244 if (IS_HTX_STRM(chn_strm(chn))) {
Thierry Fournier77016da2020-08-15 14:35:51 +02003245 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
Christopher Faulet3f829a42018-12-13 21:56:45 +01003246 WILL_LJMP(lua_error(L));
Thierry Fournier77016da2020-08-15 14:35:51 +02003247 }
Christopher Faulet3f829a42018-12-13 21:56:45 +01003248
Willy Tarreau06d80a92017-10-19 14:32:15 +02003249 ret = ci_getline_nc(chn, &blk1, &len1, &blk2, &len2);
Christopher Faulet055310f2021-08-05 11:58:37 +02003250 if (ret == 0) {
3251 if (HLUA_CANT_YIELD(hlua_gethlua(L))) {
3252 _hlua_channel_dup(chn, L);
3253 return 1;
3254 }
Willy Tarreau9635e032018-10-16 17:52:55 +02003255 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_getline_yield, TICK_ETERNITY, 0));
Christopher Faulet055310f2021-08-05 11:58:37 +02003256 }
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003257
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003258 if (ret == -1) {
3259 lua_pushnil(L);
3260 return 1;
3261 }
3262
3263 luaL_buffinit(L, &b);
3264 luaL_addlstring(&b, blk1, len1);
3265 len = len1;
3266 if (unlikely(ret == 2)) {
3267 luaL_addlstring(&b, blk2, len2);
3268 len += len2;
3269 }
3270 luaL_pushresult(&b);
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003271 b_rep_blk(&chn->buf, ci_head(chn), ci_head(chn) + len, NULL, 0);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003272 return 1;
3273}
3274
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003275/* Check arguments for the function "hlua_channel_getline_yield". */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003276__LJMP static int hlua_channel_getline(lua_State *L)
3277{
3278 MAY_LJMP(check_args(L, 1, "getline"));
3279 MAY_LJMP(hlua_checkchannel(L, 1));
3280 return MAY_LJMP(hlua_channel_getline_yield(L, 0, 0));
3281}
3282
Christopher Faulet3b7bc3e2021-08-06 09:59:49 +02003283/* This function takes a string as argument, and append it at the input side of
3284 * channel. If data cannot be copied, because there is not enough space to do so
3285 * or because the channel is closed, it returns -1. Otherwise, it returns the
3286 * amount of data written (the string length). This function does not yield.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003287 */
Christopher Faulet3b7bc3e2021-08-06 09:59:49 +02003288__LJMP static int hlua_channel_append(lua_State *L)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003289{
Christopher Faulet3b7bc3e2021-08-06 09:59:49 +02003290 struct channel *chn;
3291 const char *str;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003292 size_t len;
Christopher Faulet3b7bc3e2021-08-06 09:59:49 +02003293
3294 MAY_LJMP(check_args(L, 2, "append"));
3295 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3296 str = MAY_LJMP(luaL_checklstring(L, 2, &len));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003297
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01003298 if (IS_HTX_STRM(chn_strm(chn))) {
Thierry Fournier77016da2020-08-15 14:35:51 +02003299 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
Christopher Faulet3f829a42018-12-13 21:56:45 +01003300 WILL_LJMP(lua_error(L));
Thierry Fournier77016da2020-08-15 14:35:51 +02003301 }
Christopher Faulet3f829a42018-12-13 21:56:45 +01003302
Christopher Faulet3b7bc3e2021-08-06 09:59:49 +02003303 if (len > c_room(chn) || ci_putblk(chn, str, len) < 0)
3304 lua_pushinteger(L, -1);
3305 else
3306 lua_pushinteger(L, len);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003307 return 1;
3308}
3309
Christopher Faulet3b7bc3e2021-08-06 09:59:49 +02003310/* The function replaces input data from the channel by the string passed as
3311 * argument. Before clearing the buffer, we take care the copy will be
3312 * possible. It returns the amount of data written (the string length) on
3313 * success or -1 if the copy is not performed. This function does not yield.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003314 */
3315__LJMP static int hlua_channel_set(lua_State *L)
3316{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003317 struct channel *chn;
Christopher Faulet3b7bc3e2021-08-06 09:59:49 +02003318 const char *str;
3319 size_t len;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003320
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003321 MAY_LJMP(check_args(L, 2, "set"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003322 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Faulet3b7bc3e2021-08-06 09:59:49 +02003323 str = MAY_LJMP(luaL_checklstring(L, 2, &len));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003324
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01003325 if (IS_HTX_STRM(chn_strm(chn))) {
Thierry Fournier77016da2020-08-15 14:35:51 +02003326 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
Christopher Faulet3f829a42018-12-13 21:56:45 +01003327 WILL_LJMP(lua_error(L));
Thierry Fournier77016da2020-08-15 14:35:51 +02003328 }
Christopher Faulet3f829a42018-12-13 21:56:45 +01003329
Christopher Faulet3b7bc3e2021-08-06 09:59:49 +02003330 /* Be sure we can copied the string once input data will be removed. */
3331 if (len > ci_data(chn) || channel_input_closed(chn))
3332 lua_pushinteger(L, -1);
3333 else {
3334 b_set_data(&chn->buf, co_data(chn));
3335 if (ci_putblk(chn, str, len) < 0)
3336 lua_pushinteger(L, -1);
3337 else
3338 lua_pushinteger(L, len);
3339 }
3340 return -1;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003341}
3342
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003343/* Append data in the output side of the buffer. This data is immediately
3344 * sent. The function returns the amount of data written. If the buffer
3345 * cannot contain the data, the function yields. The function returns -1
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003346 * if the channel is closed.
3347 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003348__LJMP static int hlua_channel_send_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003349{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003350 struct channel *chn = MAY_LJMP(hlua_checkchannel(L, 1));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003351 size_t len;
3352 const char *str = MAY_LJMP(luaL_checklstring(L, 2, &len));
3353 int l = MAY_LJMP(luaL_checkinteger(L, 3));
3354 int max;
Thierry Fournier4234dbd2020-11-28 13:18:23 +01003355 struct hlua *hlua;
3356
3357 /* Get hlua struct, or NULL if we execute from main lua state */
3358 hlua = hlua_gethlua(L);
3359 if (!hlua) {
3360 lua_pushnil(L);
3361 return 1;
3362 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003363
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01003364 if (IS_HTX_STRM(chn_strm(chn))) {
Thierry Fournier77016da2020-08-15 14:35:51 +02003365 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
Christopher Faulet3f829a42018-12-13 21:56:45 +01003366 WILL_LJMP(lua_error(L));
Thierry Fournier77016da2020-08-15 14:35:51 +02003367 }
Christopher Faulet3f829a42018-12-13 21:56:45 +01003368
Willy Tarreau47860ed2015-03-10 14:07:50 +01003369 if (unlikely(channel_output_closed(chn))) {
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003370 lua_pushinteger(L, -1);
3371 return 1;
3372 }
3373
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003374 /* Check if the buffer is available because HAProxy doesn't allocate
Thierry FOURNIER3e3a6082015-03-05 17:06:12 +01003375 * the request buffer if its not required.
3376 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003377 if (chn->buf.size == 0) {
Christopher Faulet055310f2021-08-05 11:58:37 +02003378 if (HLUA_CANT_YIELD(hlua_gethlua(L)))
3379 return 1;
Willy Tarreau4b962a42018-11-15 11:03:21 +01003380 si_rx_buff_blk(chn_prod(chn));
Willy Tarreau9635e032018-10-16 17:52:55 +02003381 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_send_yield, TICK_ETERNITY, 0));
Thierry FOURNIER3e3a6082015-03-05 17:06:12 +01003382 }
3383
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003384 /* The written data will be immediately sent, so we can check
3385 * the available space without taking in account the reserve.
3386 * The reserve is guaranteed for the processing of incoming
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003387 * data, because the buffer will be flushed.
3388 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003389 max = b_room(&chn->buf);
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003390
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003391 /* If there is no space available, and the output buffer is empty.
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003392 * in this case, we cannot add more data, so we cannot yield,
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05003393 * we return the amount of copied data.
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003394 */
Willy Tarreaua79021a2018-06-15 18:07:57 +02003395 if (max == 0 && co_data(chn) == 0)
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003396 return 1;
3397
3398 /* Adjust the real required length. */
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003399 if (max > len - l)
3400 max = len - l;
3401
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003402 /* The buffer available size may be not contiguous. This test
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003403 * detects a non contiguous buffer and realign it.
3404 */
Willy Tarreau3f679992018-06-15 15:06:42 +02003405 if (ci_space_for_replace(chn) < max)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003406 channel_slow_realign(chn, trash.area);
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003407
3408 /* Copy input data in the buffer. */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003409 max = b_rep_blk(&chn->buf, ci_head(chn), ci_head(chn), str + l, max);
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003410
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003411 /* buffer replace considers that the input part is filled.
3412 * so, I must forward these new data in the output part.
3413 */
Willy Tarreaubcbd3932018-06-06 07:13:22 +02003414 c_adv(chn, max);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003415
3416 l += max;
3417 lua_pop(L, 1);
3418 lua_pushinteger(L, l);
3419
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003420 if (l < len) {
Christopher Faulet055310f2021-08-05 11:58:37 +02003421 /* If there is no space available, and the output buffer is empty.
3422 * in this case, we cannot add more data, so we cannot yield,
3423 * we return the amount of copied data.
3424 */
3425 max = b_room(&chn->buf);
3426 if ((max == 0 && co_data(chn) == 0) || HLUA_CANT_YIELD(hlua_gethlua(L)))
3427 return 1;
3428
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003429 /* If we are waiting for space in the response buffer, we
3430 * must set the flag WAKERESWR. This flag required the task
3431 * wake up if any activity is detected on the response buffer.
3432 */
Willy Tarreau47860ed2015-03-10 14:07:50 +01003433 if (chn->flags & CF_ISRESP)
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003434 HLUA_SET_WAKERESWR(hlua);
Thierry FOURNIER53e08ec2015-03-06 00:35:53 +01003435 else
3436 HLUA_SET_WAKEREQWR(hlua);
Willy Tarreau9635e032018-10-16 17:52:55 +02003437 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_send_yield, TICK_ETERNITY, 0));
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003438 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003439
3440 return 1;
3441}
3442
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05003443/* Just a wrapper of "_hlua_channel_send". This wrapper permits
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003444 * yield the LUA process, and resume it without checking the
3445 * input arguments.
3446 */
3447__LJMP static int hlua_channel_send(lua_State *L)
3448{
3449 MAY_LJMP(check_args(L, 2, "send"));
3450 lua_pushinteger(L, 0);
3451
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003452 return MAY_LJMP(hlua_channel_send_yield(L, 0, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003453}
3454
3455/* This function forward and amount of butes. The data pass from
3456 * the input side of the buffer to the output side, and can be
3457 * forwarded. This function never fails.
3458 *
3459 * The Lua function takes an amount of bytes to be forwarded in
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05003460 * input. It returns the number of bytes forwarded.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003461 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003462__LJMP static int hlua_channel_forward_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003463{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003464 struct channel *chn;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003465 int len;
3466 int l;
3467 int max;
Thierry Fournier4234dbd2020-11-28 13:18:23 +01003468 struct hlua *hlua;
3469
3470 /* Get hlua struct, or NULL if we execute from main lua state */
3471 hlua = hlua_gethlua(L);
3472 if (!hlua)
3473 return 1;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003474
3475 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Faulet3f829a42018-12-13 21:56:45 +01003476
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01003477 if (IS_HTX_STRM(chn_strm(chn))) {
Thierry Fournier77016da2020-08-15 14:35:51 +02003478 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
Christopher Faulet3f829a42018-12-13 21:56:45 +01003479 WILL_LJMP(lua_error(L));
Thierry Fournier77016da2020-08-15 14:35:51 +02003480 }
Christopher Faulet3f829a42018-12-13 21:56:45 +01003481
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003482 len = MAY_LJMP(luaL_checkinteger(L, 2));
3483 l = MAY_LJMP(luaL_checkinteger(L, -1));
3484
3485 max = len - l;
Willy Tarreaua79021a2018-06-15 18:07:57 +02003486 if (max > ci_data(chn))
3487 max = ci_data(chn);
Willy Tarreau47860ed2015-03-10 14:07:50 +01003488 channel_forward(chn, max);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003489 l += max;
3490
3491 lua_pop(L, 1);
3492 lua_pushinteger(L, l);
3493
3494 /* Check if it miss bytes to forward. */
3495 if (l < len) {
3496 /* The the input channel or the output channel are closed, we
3497 * must return the amount of data forwarded.
3498 */
Christopher Faulet055310f2021-08-05 11:58:37 +02003499 if (channel_input_closed(chn) || channel_output_closed(chn) || HLUA_CANT_YIELD(hlua_gethlua(L)))
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003500 return 1;
3501
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003502 /* If we are waiting for space data in the response buffer, we
3503 * must set the flag WAKERESWR. This flag required the task
3504 * wake up if any activity is detected on the response buffer.
3505 */
Willy Tarreau47860ed2015-03-10 14:07:50 +01003506 if (chn->flags & CF_ISRESP)
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003507 HLUA_SET_WAKERESWR(hlua);
Thierry FOURNIER53e08ec2015-03-06 00:35:53 +01003508 else
3509 HLUA_SET_WAKEREQWR(hlua);
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003510
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003511 /* Otherwise, we can yield waiting for new data in the inpout side. */
Willy Tarreau9635e032018-10-16 17:52:55 +02003512 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_forward_yield, TICK_ETERNITY, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003513 }
3514
3515 return 1;
3516}
3517
3518/* Just check the input and prepare the stack for the previous
3519 * function "hlua_channel_forward_yield"
3520 */
3521__LJMP static int hlua_channel_forward(lua_State *L)
3522{
3523 MAY_LJMP(check_args(L, 2, "forward"));
3524 MAY_LJMP(hlua_checkchannel(L, 1));
3525 MAY_LJMP(luaL_checkinteger(L, 2));
3526
3527 lua_pushinteger(L, 0);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003528 return MAY_LJMP(hlua_channel_forward_yield(L, 0, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003529}
3530
3531/* Just returns the number of bytes available in the input
3532 * side of the buffer. This function never fails.
3533 */
3534__LJMP static int hlua_channel_get_in_len(lua_State *L)
3535{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003536 struct channel *chn;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003537
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003538 MAY_LJMP(check_args(L, 1, "get_in_len"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003539 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Fauleta3ceac12018-12-14 13:39:09 +01003540 if (IS_HTX_STRM(chn_strm(chn))) {
3541 struct htx *htx = htxbuf(&chn->buf);
3542 lua_pushinteger(L, htx->data - co_data(chn));
3543 }
3544 else
3545 lua_pushinteger(L, ci_data(chn));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003546 return 1;
3547}
3548
Thierry FOURNIER / OZON.IO65192f32016-11-07 15:28:40 +01003549/* Returns true if the channel is full. */
3550__LJMP static int hlua_channel_is_full(lua_State *L)
3551{
3552 struct channel *chn;
Thierry FOURNIER / OZON.IO65192f32016-11-07 15:28:40 +01003553
3554 MAY_LJMP(check_args(L, 1, "is_full"));
3555 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Faulet0ec740e2020-02-26 11:59:19 +01003556 /* ignore the reserve, we are not on a producer side (ie in an
3557 * applet).
3558 */
3559 lua_pushboolean(L, channel_full(chn, 0));
Thierry FOURNIER / OZON.IO65192f32016-11-07 15:28:40 +01003560 return 1;
3561}
3562
Christopher Faulet2ac9ba22020-02-25 10:15:50 +01003563/* Returns true if the channel is the response channel. */
3564__LJMP static int hlua_channel_is_resp(lua_State *L)
3565{
3566 struct channel *chn;
3567
3568 MAY_LJMP(check_args(L, 1, "is_resp"));
3569 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3570
3571 lua_pushboolean(L, !!(chn->flags & CF_ISRESP));
3572 return 1;
3573}
3574
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003575/* Just returns the number of bytes available in the output
3576 * side of the buffer. This function never fails.
3577 */
3578__LJMP static int hlua_channel_get_out_len(lua_State *L)
3579{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003580 struct channel *chn;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003581
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003582 MAY_LJMP(check_args(L, 1, "get_out_len"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003583 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Willy Tarreaua79021a2018-06-15 18:07:57 +02003584 lua_pushinteger(L, co_data(chn));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003585 return 1;
3586}
3587
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003588/*
3589 *
3590 *
3591 * Class Fetches
3592 *
3593 *
3594 */
3595
3596/* Returns a struct hlua_session if the stack entry "ud" is
Willy Tarreau87b09662015-04-03 00:22:06 +02003597 * a class stream, otherwise it throws an error.
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003598 */
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01003599__LJMP static struct hlua_smp *hlua_checkfetches(lua_State *L, int ud)
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003600{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02003601 return MAY_LJMP(hlua_checkudata(L, ud, class_fetches_ref));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003602}
3603
3604/* This function creates and push in the stack a fetch object according
3605 * with a current TXN.
3606 */
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003607static int hlua_fetches_new(lua_State *L, struct hlua_txn *txn, unsigned int flags)
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003608{
Willy Tarreau7073c472015-04-06 11:15:40 +02003609 struct hlua_smp *hsmp;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003610
3611 /* Check stack size. */
3612 if (!lua_checkstack(L, 3))
3613 return 0;
3614
3615 /* Create the object: obj[0] = userdata.
3616 * Note that the base of the Fetches object is the
3617 * transaction object.
3618 */
3619 lua_newtable(L);
Willy Tarreau7073c472015-04-06 11:15:40 +02003620 hsmp = lua_newuserdata(L, sizeof(*hsmp));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003621 lua_rawseti(L, -2, 0);
3622
Willy Tarreau7073c472015-04-06 11:15:40 +02003623 hsmp->s = txn->s;
3624 hsmp->p = txn->p;
Thierry FOURNIERc4eebc82015-11-02 10:01:59 +01003625 hsmp->dir = txn->dir;
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003626 hsmp->flags = flags;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003627
3628 /* Pop a class sesison metatable and affect it to the userdata. */
3629 lua_rawgeti(L, LUA_REGISTRYINDEX, class_fetches_ref);
3630 lua_setmetatable(L, -2);
3631
3632 return 1;
3633}
3634
3635/* This function is an LUA binding. It is called with each sample-fetch.
3636 * It uses closure argument to store the associated sample-fetch. It
3637 * returns only one argument or throws an error. An error is thrown
3638 * only if an error is encountered during the argument parsing. If
3639 * the "sample-fetch" function fails, nil is returned.
3640 */
3641__LJMP static int hlua_run_sample_fetch(lua_State *L)
3642{
Willy Tarreaub2ccb562015-04-06 11:11:15 +02003643 struct hlua_smp *hsmp;
Willy Tarreau2ec22742015-03-10 14:27:20 +01003644 struct sample_fetch *f;
Frédéric Lécaillef874a832018-06-15 13:56:04 +02003645 struct arg args[ARGM_NBARGS + 1] = {{0}};
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003646 int i;
3647 struct sample smp;
3648
3649 /* Get closure arguments. */
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02003650 f = lua_touserdata(L, lua_upvalueindex(1));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003651
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003652 /* Get traditional arguments. */
Willy Tarreaub2ccb562015-04-06 11:11:15 +02003653 hsmp = MAY_LJMP(hlua_checkfetches(L, 1));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003654
Thierry FOURNIERca988662015-12-20 18:43:03 +01003655 /* Check execution authorization. */
3656 if (f->use & SMP_USE_HTTP_ANY &&
3657 !(hsmp->flags & HLUA_F_MAY_USE_HTTP)) {
3658 lua_pushfstring(L, "the sample-fetch '%s' needs an HTTP parser which "
3659 "is not available in Lua services", f->kw);
3660 WILL_LJMP(lua_error(L));
3661 }
3662
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003663 /* Get extra arguments. */
3664 for (i = 0; i < lua_gettop(L) - 1; i++) {
3665 if (i >= ARGM_NBARGS)
3666 break;
3667 hlua_lua2arg(L, i + 2, &args[i]);
3668 }
3669 args[i].type = ARGT_STOP;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003670 args[i].data.str.area = NULL;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003671
3672 /* Check arguments. */
Willy Tarreaub2ccb562015-04-06 11:11:15 +02003673 MAY_LJMP(hlua_lua2arg_check(L, 2, args, f->arg_mask, hsmp->p));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003674
3675 /* Run the special args checker. */
Willy Tarreau2ec22742015-03-10 14:27:20 +01003676 if (f->val_args && !f->val_args(args, NULL)) {
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003677 lua_pushfstring(L, "error in arguments");
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003678 goto error;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003679 }
3680
3681 /* Initialise the sample. */
3682 memset(&smp, 0, sizeof(smp));
3683
3684 /* Run the sample fetch process. */
Willy Tarreau1777ea62016-03-10 16:15:46 +01003685 smp_set_owner(&smp, hsmp->p, hsmp->s->sess, hsmp->s, hsmp->dir & SMP_OPT_DIR);
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003686 if (!f->process(args, &smp, f->kw, f->private)) {
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003687 if (hsmp->flags & HLUA_F_AS_STRING)
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01003688 lua_pushstring(L, "");
3689 else
3690 lua_pushnil(L);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003691 goto end;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003692 }
3693
3694 /* Convert the returned sample in lua value. */
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003695 if (hsmp->flags & HLUA_F_AS_STRING)
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01003696 hlua_smp2lua_str(L, &smp);
3697 else
3698 hlua_smp2lua(L, &smp);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003699
3700 end:
3701 for (i = 0; args[i].type != ARGT_STOP; i++) {
3702 if (args[i].type == ARGT_STR)
3703 chunk_destroy(&args[i].data.str);
Christopher Fauletfd2e9062020-08-06 11:10:57 +02003704 else if (args[i].type == ARGT_REG)
3705 regex_free(args[i].data.reg);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003706 }
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003707 return 1;
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003708
3709 error:
3710 for (i = 0; args[i].type != ARGT_STOP; i++) {
3711 if (args[i].type == ARGT_STR)
3712 chunk_destroy(&args[i].data.str);
Christopher Fauletfd2e9062020-08-06 11:10:57 +02003713 else if (args[i].type == ARGT_REG)
3714 regex_free(args[i].data.reg);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003715 }
3716 WILL_LJMP(lua_error(L));
3717 return 0; /* Never reached */
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003718}
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003719
3720/*
3721 *
3722 *
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003723 * Class Converters
3724 *
3725 *
3726 */
3727
3728/* Returns a struct hlua_session if the stack entry "ud" is
Willy Tarreau87b09662015-04-03 00:22:06 +02003729 * a class stream, otherwise it throws an error.
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003730 */
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01003731__LJMP static struct hlua_smp *hlua_checkconverters(lua_State *L, int ud)
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003732{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02003733 return MAY_LJMP(hlua_checkudata(L, ud, class_converters_ref));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003734}
3735
3736/* This function creates and push in the stack a Converters object
3737 * according with a current TXN.
3738 */
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003739static int hlua_converters_new(lua_State *L, struct hlua_txn *txn, unsigned int flags)
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003740{
Willy Tarreau7073c472015-04-06 11:15:40 +02003741 struct hlua_smp *hsmp;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003742
3743 /* Check stack size. */
3744 if (!lua_checkstack(L, 3))
3745 return 0;
3746
3747 /* Create the object: obj[0] = userdata.
3748 * Note that the base of the Converters object is the
3749 * same than the TXN object.
3750 */
3751 lua_newtable(L);
Willy Tarreau7073c472015-04-06 11:15:40 +02003752 hsmp = lua_newuserdata(L, sizeof(*hsmp));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003753 lua_rawseti(L, -2, 0);
3754
Willy Tarreau7073c472015-04-06 11:15:40 +02003755 hsmp->s = txn->s;
3756 hsmp->p = txn->p;
Thierry FOURNIERc4eebc82015-11-02 10:01:59 +01003757 hsmp->dir = txn->dir;
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003758 hsmp->flags = flags;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003759
Willy Tarreau87b09662015-04-03 00:22:06 +02003760 /* Pop a class stream metatable and affect it to the table. */
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003761 lua_rawgeti(L, LUA_REGISTRYINDEX, class_converters_ref);
3762 lua_setmetatable(L, -2);
3763
3764 return 1;
3765}
3766
3767/* This function is an LUA binding. It is called with each converter.
3768 * It uses closure argument to store the associated converter. It
3769 * returns only one argument or throws an error. An error is thrown
3770 * only if an error is encountered during the argument parsing. If
3771 * the converter function function fails, nil is returned.
3772 */
3773__LJMP static int hlua_run_sample_conv(lua_State *L)
3774{
Willy Tarreauda5f1082015-04-06 11:17:13 +02003775 struct hlua_smp *hsmp;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003776 struct sample_conv *conv;
Frédéric Lécaillef874a832018-06-15 13:56:04 +02003777 struct arg args[ARGM_NBARGS + 1] = {{0}};
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003778 int i;
3779 struct sample smp;
3780
3781 /* Get closure arguments. */
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02003782 conv = lua_touserdata(L, lua_upvalueindex(1));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003783
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003784 /* Get traditional arguments. */
Willy Tarreauda5f1082015-04-06 11:17:13 +02003785 hsmp = MAY_LJMP(hlua_checkconverters(L, 1));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003786
3787 /* Get extra arguments. */
3788 for (i = 0; i < lua_gettop(L) - 2; i++) {
3789 if (i >= ARGM_NBARGS)
3790 break;
3791 hlua_lua2arg(L, i + 3, &args[i]);
3792 }
3793 args[i].type = ARGT_STOP;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003794 args[i].data.str.area = NULL;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003795
3796 /* Check arguments. */
Willy Tarreauda5f1082015-04-06 11:17:13 +02003797 MAY_LJMP(hlua_lua2arg_check(L, 3, args, conv->arg_mask, hsmp->p));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003798
3799 /* Run the special args checker. */
3800 if (conv->val_args && !conv->val_args(args, conv, "", 0, NULL)) {
3801 hlua_pusherror(L, "error in arguments");
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003802 goto error;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003803 }
3804
3805 /* Initialise the sample. */
Amaury Denoyellebc0af6a2020-10-29 17:21:20 +01003806 memset(&smp, 0, sizeof(smp));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003807 if (!hlua_lua2smp(L, 2, &smp)) {
3808 hlua_pusherror(L, "error in the input argument");
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003809 goto error;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003810 }
3811
Willy Tarreau1777ea62016-03-10 16:15:46 +01003812 smp_set_owner(&smp, hsmp->p, hsmp->s->sess, hsmp->s, hsmp->dir & SMP_OPT_DIR);
3813
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003814 /* Apply expected cast. */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003815 if (!sample_casts[smp.data.type][conv->in_type]) {
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003816 hlua_pusherror(L, "invalid input argument: cannot cast '%s' to '%s'",
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003817 smp_to_type[smp.data.type], smp_to_type[conv->in_type]);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003818 goto error;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003819 }
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003820 if (sample_casts[smp.data.type][conv->in_type] != c_none &&
3821 !sample_casts[smp.data.type][conv->in_type](&smp)) {
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003822 hlua_pusherror(L, "error during the input argument casting");
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003823 goto error;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003824 }
3825
3826 /* Run the sample conversion process. */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02003827 if (!conv->process(args, &smp, conv->private)) {
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003828 if (hsmp->flags & HLUA_F_AS_STRING)
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01003829 lua_pushstring(L, "");
3830 else
Willy Tarreaua678b432015-08-28 10:14:59 +02003831 lua_pushnil(L);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003832 goto end;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003833 }
3834
3835 /* Convert the returned sample in lua value. */
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003836 if (hsmp->flags & HLUA_F_AS_STRING)
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01003837 hlua_smp2lua_str(L, &smp);
3838 else
3839 hlua_smp2lua(L, &smp);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003840 end:
3841 for (i = 0; args[i].type != ARGT_STOP; i++) {
3842 if (args[i].type == ARGT_STR)
3843 chunk_destroy(&args[i].data.str);
Christopher Fauletfd2e9062020-08-06 11:10:57 +02003844 else if (args[i].type == ARGT_REG)
3845 regex_free(args[i].data.reg);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003846 }
Willy Tarreaua678b432015-08-28 10:14:59 +02003847 return 1;
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003848
3849 error:
3850 for (i = 0; args[i].type != ARGT_STOP; i++) {
3851 if (args[i].type == ARGT_STR)
3852 chunk_destroy(&args[i].data.str);
Christopher Fauletfd2e9062020-08-06 11:10:57 +02003853 else if (args[i].type == ARGT_REG)
3854 regex_free(args[i].data.reg);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003855 }
3856 WILL_LJMP(lua_error(L));
3857 return 0; /* Never reached */
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003858}
3859
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003860/*
3861 *
3862 *
3863 * Class AppletTCP
3864 *
3865 *
3866 */
3867
3868/* Returns a struct hlua_txn if the stack entry "ud" is
3869 * a class stream, otherwise it throws an error.
3870 */
3871__LJMP static struct hlua_appctx *hlua_checkapplet_tcp(lua_State *L, int ud)
3872{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02003873 return MAY_LJMP(hlua_checkudata(L, ud, class_applet_tcp_ref));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003874}
3875
3876/* This function creates and push in the stack an Applet object
3877 * according with a current TXN.
3878 */
3879static int hlua_applet_tcp_new(lua_State *L, struct appctx *ctx)
3880{
Willy Tarreau7e702d12021-04-28 17:59:21 +02003881 struct hlua_appctx *luactx;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003882 struct stream_interface *si = ctx->owner;
3883 struct stream *s = si_strm(si);
3884 struct proxy *p = s->be;
3885
3886 /* Check stack size. */
3887 if (!lua_checkstack(L, 3))
3888 return 0;
3889
3890 /* Create the object: obj[0] = userdata.
3891 * Note that the base of the Converters object is the
3892 * same than the TXN object.
3893 */
3894 lua_newtable(L);
Willy Tarreau7e702d12021-04-28 17:59:21 +02003895 luactx = lua_newuserdata(L, sizeof(*luactx));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003896 lua_rawseti(L, -2, 0);
Willy Tarreau7e702d12021-04-28 17:59:21 +02003897 luactx->appctx = ctx;
3898 luactx->htxn.s = s;
3899 luactx->htxn.p = p;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003900
3901 /* Create the "f" field that contains a list of fetches. */
3902 lua_pushstring(L, "f");
Willy Tarreau7e702d12021-04-28 17:59:21 +02003903 if (!hlua_fetches_new(L, &luactx->htxn, 0))
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003904 return 0;
3905 lua_settable(L, -3);
3906
3907 /* Create the "sf" field that contains a list of stringsafe fetches. */
3908 lua_pushstring(L, "sf");
Willy Tarreau7e702d12021-04-28 17:59:21 +02003909 if (!hlua_fetches_new(L, &luactx->htxn, HLUA_F_AS_STRING))
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003910 return 0;
3911 lua_settable(L, -3);
3912
3913 /* Create the "c" field that contains a list of converters. */
3914 lua_pushstring(L, "c");
Willy Tarreau7e702d12021-04-28 17:59:21 +02003915 if (!hlua_converters_new(L, &luactx->htxn, 0))
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003916 return 0;
3917 lua_settable(L, -3);
3918
3919 /* Create the "sc" field that contains a list of stringsafe converters. */
3920 lua_pushstring(L, "sc");
Willy Tarreau7e702d12021-04-28 17:59:21 +02003921 if (!hlua_converters_new(L, &luactx->htxn, HLUA_F_AS_STRING))
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003922 return 0;
3923 lua_settable(L, -3);
3924
3925 /* Pop a class stream metatable and affect it to the table. */
3926 lua_rawgeti(L, LUA_REGISTRYINDEX, class_applet_tcp_ref);
3927 lua_setmetatable(L, -2);
3928
3929 return 1;
3930}
3931
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003932__LJMP static int hlua_applet_tcp_set_var(lua_State *L)
3933{
Willy Tarreau7e702d12021-04-28 17:59:21 +02003934 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003935 struct stream *s;
3936 const char *name;
3937 size_t len;
3938 struct sample smp;
3939
Tim Duesterhus4e172c92020-05-19 13:49:42 +02003940 if (lua_gettop(L) < 3 || lua_gettop(L) > 4)
3941 WILL_LJMP(luaL_error(L, "'set_var' needs between 3 and 4 arguments"));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003942
3943 /* It is useles to retrieve the stream, but this function
3944 * runs only in a stream context.
3945 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02003946 luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003947 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02003948 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003949
3950 /* Converts the third argument in a sample. */
Amaury Denoyellebc0af6a2020-10-29 17:21:20 +01003951 memset(&smp, 0, sizeof(smp));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003952 hlua_lua2smp(L, 3, &smp);
3953
Aurelien DARRAGONd39fb742023-05-17 16:06:11 +02003954 /* Store the sample in a variable. We don't need to dup the smp, vars API
3955 * already takes care of duplicating dynamic var data.
3956 */
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003957 smp_set_owner(&smp, s->be, s->sess, s, 0);
Tim Duesterhus4e172c92020-05-19 13:49:42 +02003958
3959 if (lua_gettop(L) == 4 && lua_toboolean(L, 4))
3960 lua_pushboolean(L, vars_set_by_name_ifexist(name, len, &smp) != 0);
3961 else
3962 lua_pushboolean(L, vars_set_by_name(name, len, &smp) != 0);
3963
Tim Duesterhus84ebc132020-05-19 13:49:41 +02003964 return 1;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003965}
3966
3967__LJMP static int hlua_applet_tcp_unset_var(lua_State *L)
3968{
Willy Tarreau7e702d12021-04-28 17:59:21 +02003969 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003970 struct stream *s;
3971 const char *name;
3972 size_t len;
3973 struct sample smp;
3974
3975 MAY_LJMP(check_args(L, 2, "unset_var"));
3976
3977 /* It is useles to retrieve the stream, but this function
3978 * runs only in a stream context.
3979 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02003980 luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003981 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02003982 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003983
3984 /* Unset the variable. */
3985 smp_set_owner(&smp, s->be, s->sess, s, 0);
Tim Duesterhus84ebc132020-05-19 13:49:41 +02003986 lua_pushboolean(L, vars_unset_by_name_ifexist(name, len, &smp) != 0);
3987 return 1;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003988}
3989
3990__LJMP static int hlua_applet_tcp_get_var(lua_State *L)
3991{
Willy Tarreau7e702d12021-04-28 17:59:21 +02003992 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003993 struct stream *s;
3994 const char *name;
3995 size_t len;
3996 struct sample smp;
3997
3998 MAY_LJMP(check_args(L, 2, "get_var"));
3999
4000 /* It is useles to retrieve the stream, but this function
4001 * runs only in a stream context.
4002 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004003 luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004004 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004005 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004006
4007 smp_set_owner(&smp, s->be, s->sess, s, 0);
4008 if (!vars_get_by_name(name, len, &smp)) {
4009 lua_pushnil(L);
4010 return 1;
4011 }
4012
4013 return hlua_smp2lua(L, &smp);
4014}
4015
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004016__LJMP static int hlua_applet_tcp_set_priv(lua_State *L)
4017{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004018 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
4019 struct stream *s = luactx->htxn.s;
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01004020 struct hlua *hlua = hlua_stream_ctx_get(s);
Thierry FOURNIER3b0a6d42016-12-16 08:48:32 +01004021
4022 /* Note that this hlua struct is from the session and not from the applet. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01004023 if (!hlua)
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01004024 return 0;
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004025
4026 MAY_LJMP(check_args(L, 2, "set_priv"));
4027
4028 /* Remove previous value. */
Thierry FOURNIERe068b602017-04-26 13:27:05 +02004029 luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref);
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004030
4031 /* Get and store new value. */
4032 lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */
4033 hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */
4034
4035 return 0;
4036}
4037
4038__LJMP static int hlua_applet_tcp_get_priv(lua_State *L)
4039{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004040 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
4041 struct stream *s = luactx->htxn.s;
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01004042 struct hlua *hlua = hlua_stream_ctx_get(s);
Thierry FOURNIER3b0a6d42016-12-16 08:48:32 +01004043
4044 /* Note that this hlua struct is from the session and not from the applet. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01004045 if (!hlua) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01004046 lua_pushnil(L);
4047 return 1;
4048 }
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004049
4050 /* Push configuration index in the stack. */
4051 lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref);
4052
4053 return 1;
4054}
4055
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004056/* If expected data not yet available, it returns a yield. This function
4057 * consumes the data in the buffer. It returns a string containing the
4058 * data. This string can be empty.
4059 */
4060__LJMP static int hlua_applet_tcp_getline_yield(lua_State *L, int status, lua_KContext ctx)
4061{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004062 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
4063 struct stream_interface *si = luactx->appctx->owner;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004064 int ret;
Willy Tarreau206ba832018-06-14 15:27:31 +02004065 const char *blk1;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02004066 size_t len1;
Willy Tarreau206ba832018-06-14 15:27:31 +02004067 const char *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02004068 size_t len2;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004069
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004070 /* Read the maximum amount of data available. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02004071 ret = co_getline_nc(si_oc(si), &blk1, &len1, &blk2, &len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004072
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004073 /* Data not yet available. return yield. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004074 if (ret == 0) {
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01004075 si_cant_get(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02004076 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_getline_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004077 }
4078
4079 /* End of data: commit the total strings and return. */
4080 if (ret < 0) {
Willy Tarreau7e702d12021-04-28 17:59:21 +02004081 luaL_pushresult(&luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004082 return 1;
4083 }
4084
4085 /* Ensure that the block 2 length is usable. */
4086 if (ret == 1)
4087 len2 = 0;
4088
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07004089 /* don't check the max length read and don't check. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004090 luaL_addlstring(&luactx->b, blk1, len1);
4091 luaL_addlstring(&luactx->b, blk2, len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004092
4093 /* Consume input channel output buffer data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02004094 co_skip(si_oc(si), len1 + len2);
Willy Tarreau7e702d12021-04-28 17:59:21 +02004095 luaL_pushresult(&luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004096 return 1;
4097}
4098
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004099/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004100__LJMP static int hlua_applet_tcp_getline(lua_State *L)
4101{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004102 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004103
4104 /* Initialise the string catenation. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004105 luaL_buffinit(L, &luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004106
4107 return MAY_LJMP(hlua_applet_tcp_getline_yield(L, 0, 0));
4108}
4109
4110/* If expected data not yet available, it returns a yield. This function
4111 * consumes the data in the buffer. It returns a string containing the
4112 * data. This string can be empty.
4113 */
4114__LJMP static int hlua_applet_tcp_recv_yield(lua_State *L, int status, lua_KContext ctx)
4115{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004116 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
4117 struct stream_interface *si = luactx->appctx->owner;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02004118 size_t len = MAY_LJMP(luaL_checkinteger(L, 2));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004119 int ret;
Willy Tarreau206ba832018-06-14 15:27:31 +02004120 const char *blk1;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02004121 size_t len1;
Willy Tarreau206ba832018-06-14 15:27:31 +02004122 const char *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02004123 size_t len2;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004124
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004125 /* Read the maximum amount of data available. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02004126 ret = co_getblk_nc(si_oc(si), &blk1, &len1, &blk2, &len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004127
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004128 /* Data not yet available. return yield. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004129 if (ret == 0) {
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01004130 si_cant_get(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02004131 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_recv_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004132 }
4133
4134 /* End of data: commit the total strings and return. */
4135 if (ret < 0) {
Willy Tarreau7e702d12021-04-28 17:59:21 +02004136 luaL_pushresult(&luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004137 return 1;
4138 }
4139
4140 /* Ensure that the block 2 length is usable. */
4141 if (ret == 1)
4142 len2 = 0;
4143
4144 if (len == -1) {
4145
4146 /* If len == -1, catenate all the data avalaile and
4147 * yield because we want to get all the data until
4148 * the end of data stream.
4149 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004150 luaL_addlstring(&luactx->b, blk1, len1);
4151 luaL_addlstring(&luactx->b, blk2, len2);
Willy Tarreau06d80a92017-10-19 14:32:15 +02004152 co_skip(si_oc(si), len1 + len2);
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01004153 si_cant_get(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02004154 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_recv_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004155
4156 } else {
4157
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05004158 /* Copy the first block caping to the length required. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004159 if (len1 > len)
4160 len1 = len;
Willy Tarreau7e702d12021-04-28 17:59:21 +02004161 luaL_addlstring(&luactx->b, blk1, len1);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004162 len -= len1;
4163
4164 /* Copy the second block. */
4165 if (len2 > len)
4166 len2 = len;
Willy Tarreau7e702d12021-04-28 17:59:21 +02004167 luaL_addlstring(&luactx->b, blk2, len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004168 len -= len2;
4169
4170 /* Consume input channel output buffer data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02004171 co_skip(si_oc(si), len1 + len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004172
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004173 /* If there is no other data available, yield waiting for new data. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004174 if (len > 0) {
4175 lua_pushinteger(L, len);
4176 lua_replace(L, 2);
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01004177 si_cant_get(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02004178 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_recv_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004179 }
4180
4181 /* return the result. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004182 luaL_pushresult(&luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004183 return 1;
4184 }
4185
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004186 /* we never execute this */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004187 hlua_pusherror(L, "Lua: internal error");
4188 WILL_LJMP(lua_error(L));
4189 return 0;
4190}
4191
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004192/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004193__LJMP static int hlua_applet_tcp_recv(lua_State *L)
4194{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004195 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004196 int len = -1;
4197
4198 if (lua_gettop(L) > 2)
4199 WILL_LJMP(luaL_error(L, "The 'recv' function requires between 1 and 2 arguments."));
4200 if (lua_gettop(L) >= 2) {
4201 len = MAY_LJMP(luaL_checkinteger(L, 2));
4202 lua_pop(L, 1);
4203 }
4204
4205 /* Confirm or set the required length */
4206 lua_pushinteger(L, len);
4207
4208 /* Initialise the string catenation. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004209 luaL_buffinit(L, &luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004210
4211 return MAY_LJMP(hlua_applet_tcp_recv_yield(L, 0, 0));
4212}
4213
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004214/* Append data in the output side of the buffer. This data is immediately
4215 * sent. The function returns the amount of data written. If the buffer
4216 * cannot contain the data, the function yields. The function returns -1
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004217 * if the channel is closed.
4218 */
4219__LJMP static int hlua_applet_tcp_send_yield(lua_State *L, int status, lua_KContext ctx)
4220{
4221 size_t len;
Willy Tarreau7e702d12021-04-28 17:59:21 +02004222 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004223 const char *str = MAY_LJMP(luaL_checklstring(L, 2, &len));
4224 int l = MAY_LJMP(luaL_checkinteger(L, 3));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004225 struct stream_interface *si = luactx->appctx->owner;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004226 struct channel *chn = si_ic(si);
4227 int max;
4228
4229 /* Get the max amount of data which can write as input in the channel. */
4230 max = channel_recv_max(chn);
4231 if (max > (len - l))
4232 max = len - l;
4233
4234 /* Copy data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02004235 ci_putblk(chn, str + l, max);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004236
4237 /* update counters. */
4238 l += max;
4239 lua_pop(L, 1);
4240 lua_pushinteger(L, l);
4241
4242 /* If some data is not send, declares the situation to the
4243 * applet, and returns a yield.
4244 */
4245 if (l < len) {
Willy Tarreaudb398432018-11-15 11:08:52 +01004246 si_rx_room_blk(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02004247 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_send_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004248 }
4249
4250 return 1;
4251}
4252
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05004253/* Just a wrapper of "hlua_applet_tcp_send_yield". This wrapper permits
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004254 * yield the LUA process, and resume it without checking the
4255 * input arguments.
4256 */
4257__LJMP static int hlua_applet_tcp_send(lua_State *L)
4258{
4259 MAY_LJMP(check_args(L, 2, "send"));
4260 lua_pushinteger(L, 0);
4261
4262 return MAY_LJMP(hlua_applet_tcp_send_yield(L, 0, 0));
4263}
4264
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004265/*
4266 *
4267 *
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004268 * Class AppletHTTP
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004269 *
4270 *
4271 */
4272
4273/* Returns a struct hlua_txn if the stack entry "ud" is
Willy Tarreau87b09662015-04-03 00:22:06 +02004274 * a class stream, otherwise it throws an error.
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004275 */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004276__LJMP static struct hlua_appctx *hlua_checkapplet_http(lua_State *L, int ud)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004277{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02004278 return MAY_LJMP(hlua_checkudata(L, ud, class_applet_http_ref));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004279}
4280
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004281/* This function creates and push in the stack an Applet object
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004282 * according with a current TXN.
4283 */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004284static int hlua_applet_http_new(lua_State *L, struct appctx *ctx)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004285{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004286 struct hlua_appctx *luactx;
Thierry FOURNIER841475e2015-12-11 17:10:09 +01004287 struct hlua_txn htxn;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004288 struct stream_interface *si = ctx->owner;
4289 struct stream *s = si_strm(si);
4290 struct proxy *px = s->be;
Christopher Fauleta2097962019-07-15 16:25:33 +02004291 struct htx *htx;
4292 struct htx_blk *blk;
4293 struct htx_sl *sl;
4294 struct ist path;
4295 unsigned long long len = 0;
4296 int32_t pos;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004297
4298 /* Check stack size. */
4299 if (!lua_checkstack(L, 3))
4300 return 0;
4301
4302 /* Create the object: obj[0] = userdata.
4303 * Note that the base of the Converters object is the
4304 * same than the TXN object.
4305 */
4306 lua_newtable(L);
Willy Tarreau7e702d12021-04-28 17:59:21 +02004307 luactx = lua_newuserdata(L, sizeof(*luactx));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004308 lua_rawseti(L, -2, 0);
Willy Tarreau7e702d12021-04-28 17:59:21 +02004309 luactx->appctx = ctx;
4310 luactx->appctx->ctx.hlua_apphttp.status = 200; /* Default status code returned. */
4311 luactx->appctx->ctx.hlua_apphttp.reason = NULL; /* Use default reason based on status */
4312 luactx->htxn.s = s;
4313 luactx->htxn.p = px;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004314
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004315 /* Create the "f" field that contains a list of fetches. */
4316 lua_pushstring(L, "f");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004317 if (!hlua_fetches_new(L, &luactx->htxn, 0))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004318 return 0;
4319 lua_settable(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004320
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004321 /* Create the "sf" field that contains a list of stringsafe fetches. */
4322 lua_pushstring(L, "sf");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004323 if (!hlua_fetches_new(L, &luactx->htxn, HLUA_F_AS_STRING))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004324 return 0;
4325 lua_settable(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004326
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004327 /* Create the "c" field that contains a list of converters. */
4328 lua_pushstring(L, "c");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004329 if (!hlua_converters_new(L, &luactx->htxn, 0))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004330 return 0;
4331 lua_settable(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004332
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004333 /* Create the "sc" field that contains a list of stringsafe converters. */
4334 lua_pushstring(L, "sc");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004335 if (!hlua_converters_new(L, &luactx->htxn, HLUA_F_AS_STRING))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004336 return 0;
4337 lua_settable(L, -3);
Willy Tarreaueee5b512015-04-03 23:46:31 +02004338
Christopher Fauleta2097962019-07-15 16:25:33 +02004339 htx = htxbuf(&s->req.buf);
4340 blk = htx_get_first_blk(htx);
Christopher Fauletea009732019-11-18 15:50:25 +01004341 BUG_ON(!blk || htx_get_blk_type(blk) != HTX_BLK_REQ_SL);
Christopher Fauleta2097962019-07-15 16:25:33 +02004342 sl = htx_get_blk_ptr(htx, blk);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004343
Christopher Fauleta2097962019-07-15 16:25:33 +02004344 /* Stores the request method. */
4345 lua_pushstring(L, "method");
4346 lua_pushlstring(L, HTX_SL_REQ_MPTR(sl), HTX_SL_REQ_MLEN(sl));
4347 lua_settable(L, -3);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004348
Christopher Fauleta2097962019-07-15 16:25:33 +02004349 /* Stores the http version. */
4350 lua_pushstring(L, "version");
4351 lua_pushlstring(L, HTX_SL_REQ_VPTR(sl), HTX_SL_REQ_VLEN(sl));
4352 lua_settable(L, -3);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004353
Christopher Fauleta2097962019-07-15 16:25:33 +02004354 /* creates an array of headers. hlua_http_get_headers() crates and push
4355 * the array on the top of the stack.
4356 */
4357 lua_pushstring(L, "headers");
4358 htxn.s = s;
4359 htxn.p = px;
4360 htxn.dir = SMP_OPT_DIR_REQ;
Christopher Faulet9d1332b2020-02-24 16:46:16 +01004361 if (!hlua_http_get_headers(L, &htxn.s->txn->req))
Christopher Fauleta2097962019-07-15 16:25:33 +02004362 return 0;
4363 lua_settable(L, -3);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004364
Christopher Fauleta2097962019-07-15 16:25:33 +02004365 path = http_get_path(htx_sl_req_uri(sl));
Tim Duesterhused526372020-03-05 17:56:33 +01004366 if (isttest(path)) {
Christopher Fauleta2097962019-07-15 16:25:33 +02004367 char *p, *q, *end;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004368
Christopher Fauleta2097962019-07-15 16:25:33 +02004369 p = path.ptr;
4370 end = path.ptr + path.len;
4371 q = p;
4372 while (q < end && *q != '?')
4373 q++;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004374
Thierry FOURNIER7d388632017-02-22 02:06:16 +01004375 /* Stores the request path. */
Christopher Fauleta2097962019-07-15 16:25:33 +02004376 lua_pushstring(L, "path");
4377 lua_pushlstring(L, p, q - p);
Thierry FOURNIER7d388632017-02-22 02:06:16 +01004378 lua_settable(L, -3);
Thierry FOURNIER04c57b32015-03-18 13:43:10 +01004379
Christopher Fauleta2097962019-07-15 16:25:33 +02004380 /* Stores the query string. */
4381 lua_pushstring(L, "qs");
4382 if (*q == '?')
4383 q++;
4384 lua_pushlstring(L, q, end - q);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004385 lua_settable(L, -3);
Christopher Fauleta2097962019-07-15 16:25:33 +02004386 }
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004387
Christopher Fauleta2097962019-07-15 16:25:33 +02004388 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
4389 struct htx_blk *blk = htx_get_blk(htx, pos);
4390 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004391
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004392 if (type == HTX_BLK_TLR || type == HTX_BLK_EOT)
Christopher Fauleta2097962019-07-15 16:25:33 +02004393 break;
4394 if (type == HTX_BLK_DATA)
4395 len += htx_get_blksz(blk);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004396 }
Christopher Fauleta2097962019-07-15 16:25:33 +02004397 if (htx->extra != ULLONG_MAX)
4398 len += htx->extra;
4399
4400 /* Stores the request path. */
4401 lua_pushstring(L, "length");
4402 lua_pushinteger(L, len);
4403 lua_settable(L, -3);
Thierry FOURNIER04c57b32015-03-18 13:43:10 +01004404
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004405 /* Create an empty array of HTTP request headers. */
4406 lua_pushstring(L, "response");
4407 lua_newtable(L);
4408 lua_settable(L, -3);
Thierry FOURNIER04c57b32015-03-18 13:43:10 +01004409
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004410 /* Pop a class stream metatable and affect it to the table. */
4411 lua_rawgeti(L, LUA_REGISTRYINDEX, class_applet_http_ref);
4412 lua_setmetatable(L, -2);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004413
4414 return 1;
4415}
4416
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004417__LJMP static int hlua_applet_http_set_var(lua_State *L)
4418{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004419 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004420 struct stream *s;
4421 const char *name;
4422 size_t len;
4423 struct sample smp;
4424
Tim Duesterhus4e172c92020-05-19 13:49:42 +02004425 if (lua_gettop(L) < 3 || lua_gettop(L) > 4)
4426 WILL_LJMP(luaL_error(L, "'set_var' needs between 3 and 4 arguments"));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004427
4428 /* It is useles to retrieve the stream, but this function
4429 * runs only in a stream context.
4430 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004431 luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004432 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004433 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004434
4435 /* Converts the third argument in a sample. */
Amaury Denoyellebc0af6a2020-10-29 17:21:20 +01004436 memset(&smp, 0, sizeof(smp));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004437 hlua_lua2smp(L, 3, &smp);
4438
Aurelien DARRAGONd39fb742023-05-17 16:06:11 +02004439 /* Store the sample in a variable. We don't need to dup the smp, vars API
4440 * already takes care of duplicating dynamic var data.
4441 */
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004442 smp_set_owner(&smp, s->be, s->sess, s, 0);
Tim Duesterhus4e172c92020-05-19 13:49:42 +02004443
4444 if (lua_gettop(L) == 4 && lua_toboolean(L, 4))
4445 lua_pushboolean(L, vars_set_by_name_ifexist(name, len, &smp) != 0);
4446 else
4447 lua_pushboolean(L, vars_set_by_name(name, len, &smp) != 0);
4448
Tim Duesterhus84ebc132020-05-19 13:49:41 +02004449 return 1;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004450}
4451
4452__LJMP static int hlua_applet_http_unset_var(lua_State *L)
4453{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004454 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004455 struct stream *s;
4456 const char *name;
4457 size_t len;
4458 struct sample smp;
4459
4460 MAY_LJMP(check_args(L, 2, "unset_var"));
4461
4462 /* It is useles to retrieve the stream, but this function
4463 * runs only in a stream context.
4464 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004465 luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004466 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004467 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004468
4469 /* Unset the variable. */
4470 smp_set_owner(&smp, s->be, s->sess, s, 0);
Tim Duesterhus84ebc132020-05-19 13:49:41 +02004471 lua_pushboolean(L, vars_unset_by_name_ifexist(name, len, &smp) != 0);
4472 return 1;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004473}
4474
4475__LJMP static int hlua_applet_http_get_var(lua_State *L)
4476{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004477 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004478 struct stream *s;
4479 const char *name;
4480 size_t len;
4481 struct sample smp;
4482
4483 MAY_LJMP(check_args(L, 2, "get_var"));
4484
4485 /* It is useles to retrieve the stream, but this function
4486 * runs only in a stream context.
4487 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004488 luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004489 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004490 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004491
4492 smp_set_owner(&smp, s->be, s->sess, s, 0);
4493 if (!vars_get_by_name(name, len, &smp)) {
4494 lua_pushnil(L);
4495 return 1;
4496 }
4497
4498 return hlua_smp2lua(L, &smp);
4499}
4500
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004501__LJMP static int hlua_applet_http_set_priv(lua_State *L)
4502{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004503 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4504 struct stream *s = luactx->htxn.s;
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01004505 struct hlua *hlua = hlua_stream_ctx_get(s);
Thierry FOURNIER3b0a6d42016-12-16 08:48:32 +01004506
4507 /* Note that this hlua struct is from the session and not from the applet. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01004508 if (!hlua)
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01004509 return 0;
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004510
4511 MAY_LJMP(check_args(L, 2, "set_priv"));
4512
4513 /* Remove previous value. */
Thierry FOURNIERe068b602017-04-26 13:27:05 +02004514 luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref);
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004515
4516 /* Get and store new value. */
4517 lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */
4518 hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */
4519
4520 return 0;
4521}
4522
4523__LJMP static int hlua_applet_http_get_priv(lua_State *L)
4524{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004525 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4526 struct stream *s = luactx->htxn.s;
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01004527 struct hlua *hlua = hlua_stream_ctx_get(s);
Thierry FOURNIER3b0a6d42016-12-16 08:48:32 +01004528
4529 /* Note that this hlua struct is from the session and not from the applet. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01004530 if (!hlua) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01004531 lua_pushnil(L);
4532 return 1;
4533 }
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004534
4535 /* Push configuration index in the stack. */
4536 lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref);
4537
4538 return 1;
4539}
4540
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004541/* If expected data not yet available, it returns a yield. This function
4542 * consumes the data in the buffer. It returns a string containing the
4543 * data. This string can be empty.
4544 */
Christopher Fauleta2097962019-07-15 16:25:33 +02004545__LJMP static int hlua_applet_http_getline_yield(lua_State *L, int status, lua_KContext ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004546{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004547 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4548 struct stream_interface *si = luactx->appctx->owner;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004549 struct channel *req = si_oc(si);
4550 struct htx *htx;
4551 struct htx_blk *blk;
4552 size_t count;
4553 int stop = 0;
4554
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004555 htx = htx_from_buf(&req->buf);
4556 count = co_data(req);
Christopher Fauleta3f15502019-05-13 15:27:23 +02004557 blk = htx_get_first_blk(htx);
Christopher Fauletcc26b132018-12-18 21:20:57 +01004558
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004559 while (count && !stop && blk) {
4560 enum htx_blk_type type = htx_get_blk_type(blk);
4561 uint32_t sz = htx_get_blksz(blk);
4562 struct ist v;
4563 uint32_t vlen;
4564 char *nl;
4565
4566 vlen = sz;
4567 if (vlen > count) {
4568 if (type != HTX_BLK_DATA)
4569 break;
4570 vlen = count;
4571 }
4572
4573 switch (type) {
4574 case HTX_BLK_UNUSED:
4575 break;
4576
4577 case HTX_BLK_DATA:
4578 v = htx_get_blk_value(htx, blk);
4579 v.len = vlen;
4580 nl = istchr(v, '\n');
4581 if (nl != NULL) {
4582 stop = 1;
4583 vlen = nl - v.ptr + 1;
4584 }
Willy Tarreau7e702d12021-04-28 17:59:21 +02004585 luaL_addlstring(&luactx->b, v.ptr, vlen);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004586 break;
4587
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004588 case HTX_BLK_TLR:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004589 case HTX_BLK_EOT:
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004590 stop = 1;
4591 break;
4592
4593 default:
4594 break;
4595 }
4596
4597 co_set_data(req, co_data(req) - vlen);
4598 count -= vlen;
4599 if (sz == vlen)
4600 blk = htx_remove_blk(htx, blk);
4601 else {
4602 htx_cut_data_blk(htx, blk, vlen);
4603 break;
4604 }
4605 }
4606
Christopher Fauleteccb31c2021-04-02 14:24:56 +02004607 /* The message was fully consumed and no more data are expected
4608 * (EOM flag set).
4609 */
Christopher Fauleta5a25b12022-08-29 15:37:16 +02004610 if (htx_is_empty(htx) && (req->flags & CF_EOI))
Christopher Fauleteccb31c2021-04-02 14:24:56 +02004611 stop = 1;
4612
Christopher Faulet0ae79d02019-02-27 21:36:59 +01004613 htx_to_buf(htx, &req->buf);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004614 if (!stop) {
4615 si_cant_get(si);
Christopher Fauleta2097962019-07-15 16:25:33 +02004616 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_getline_yield, TICK_ETERNITY, 0));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004617 }
4618
4619 /* return the result. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004620 luaL_pushresult(&luactx->b);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004621 return 1;
4622}
4623
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004624
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004625/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004626__LJMP static int hlua_applet_http_getline(lua_State *L)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004627{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004628 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004629
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004630 /* Initialise the string catenation. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004631 luaL_buffinit(L, &luactx->b);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004632
Christopher Fauleta2097962019-07-15 16:25:33 +02004633 return MAY_LJMP(hlua_applet_http_getline_yield(L, 0, 0));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004634}
4635
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004636/* If expected data not yet available, it returns a yield. This function
4637 * consumes the data in the buffer. It returns a string containing the
4638 * data. This string can be empty.
4639 */
Christopher Fauleta2097962019-07-15 16:25:33 +02004640__LJMP static int hlua_applet_http_recv_yield(lua_State *L, int status, lua_KContext ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004641{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004642 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4643 struct stream_interface *si = luactx->appctx->owner;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004644 struct channel *req = si_oc(si);
4645 struct htx *htx;
4646 struct htx_blk *blk;
4647 size_t count;
4648 int len;
4649
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004650 htx = htx_from_buf(&req->buf);
4651 len = MAY_LJMP(luaL_checkinteger(L, 2));
4652 count = co_data(req);
Christopher Faulet29f17582019-05-23 11:03:26 +02004653 blk = htx_get_head_blk(htx);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004654 while (count && len && blk) {
4655 enum htx_blk_type type = htx_get_blk_type(blk);
4656 uint32_t sz = htx_get_blksz(blk);
4657 struct ist v;
4658 uint32_t vlen;
4659
4660 vlen = sz;
4661 if (len > 0 && vlen > len)
4662 vlen = len;
4663 if (vlen > count) {
4664 if (type != HTX_BLK_DATA)
4665 break;
4666 vlen = count;
4667 }
4668
4669 switch (type) {
4670 case HTX_BLK_UNUSED:
4671 break;
4672
4673 case HTX_BLK_DATA:
4674 v = htx_get_blk_value(htx, blk);
Willy Tarreau7e702d12021-04-28 17:59:21 +02004675 luaL_addlstring(&luactx->b, v.ptr, vlen);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004676 break;
4677
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004678 case HTX_BLK_TLR:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004679 case HTX_BLK_EOT:
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004680 len = 0;
4681 break;
4682
4683 default:
4684 break;
4685 }
4686
4687 co_set_data(req, co_data(req) - vlen);
4688 count -= vlen;
4689 if (len > 0)
4690 len -= vlen;
4691 if (sz == vlen)
4692 blk = htx_remove_blk(htx, blk);
4693 else {
4694 htx_cut_data_blk(htx, blk, vlen);
4695 break;
4696 }
4697 }
4698
Christopher Fauleteccb31c2021-04-02 14:24:56 +02004699 /* The message was fully consumed and no more data are expected
4700 * (EOM flag set).
4701 */
Christopher Fauleta5a25b12022-08-29 15:37:16 +02004702 if (htx_is_empty(htx) && (req->flags & CF_EOI))
Christopher Fauleteccb31c2021-04-02 14:24:56 +02004703 len = 0;
4704
Christopher Faulet0ae79d02019-02-27 21:36:59 +01004705 htx_to_buf(htx, &req->buf);
4706
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004707 /* If we are no other data available, yield waiting for new data. */
4708 if (len) {
4709 if (len > 0) {
4710 lua_pushinteger(L, len);
4711 lua_replace(L, 2);
4712 }
4713 si_cant_get(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02004714 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_recv_yield, TICK_ETERNITY, 0));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004715 }
4716
4717 /* return the result. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004718 luaL_pushresult(&luactx->b);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004719 return 1;
4720}
4721
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004722/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004723__LJMP static int hlua_applet_http_recv(lua_State *L)
4724{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004725 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004726 int len = -1;
4727
4728 /* Check arguments. */
4729 if (lua_gettop(L) > 2)
4730 WILL_LJMP(luaL_error(L, "The 'recv' function requires between 1 and 2 arguments."));
4731 if (lua_gettop(L) >= 2) {
4732 len = MAY_LJMP(luaL_checkinteger(L, 2));
4733 lua_pop(L, 1);
4734 }
4735
Christopher Fauleta2097962019-07-15 16:25:33 +02004736 lua_pushinteger(L, len);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004737
Christopher Fauleta2097962019-07-15 16:25:33 +02004738 /* Initialise the string catenation. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004739 luaL_buffinit(L, &luactx->b);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004740
Christopher Fauleta2097962019-07-15 16:25:33 +02004741 return MAY_LJMP(hlua_applet_http_recv_yield(L, 0, 0));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004742}
4743
4744/* Append data in the output side of the buffer. This data is immediately
4745 * sent. The function returns the amount of data written. If the buffer
4746 * cannot contain the data, the function yields. The function returns -1
4747 * if the channel is closed.
4748 */
Christopher Fauleta2097962019-07-15 16:25:33 +02004749__LJMP static int hlua_applet_http_send_yield(lua_State *L, int status, lua_KContext ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004750{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004751 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4752 struct stream_interface *si = luactx->appctx->owner;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004753 struct channel *res = si_ic(si);
4754 struct htx *htx = htx_from_buf(&res->buf);
4755 const char *data;
4756 size_t len;
4757 int l = MAY_LJMP(luaL_checkinteger(L, 3));
4758 int max;
4759
Christopher Faulet9060fc02019-07-03 11:39:30 +02004760 max = htx_get_max_blksz(htx, channel_htx_recv_max(res, htx));
Christopher Faulet4b0e9b22019-01-09 12:16:58 +01004761 if (!max)
4762 goto snd_yield;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004763
4764 data = MAY_LJMP(luaL_checklstring(L, 2, &len));
4765
4766 /* Get the max amount of data which can write as input in the channel. */
4767 if (max > (len - l))
4768 max = len - l;
4769
4770 /* Copy data. */
Willy Tarreau0a7ef022019-05-28 10:30:11 +02004771 max = htx_add_data(htx, ist2(data + l, max));
Christopher Fauletf6cce3f2019-02-27 21:20:09 +01004772 channel_add_input(res, max);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004773
4774 /* update counters. */
4775 l += max;
4776 lua_pop(L, 1);
4777 lua_pushinteger(L, l);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004778
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004779 /* If some data is not send, declares the situation to the
4780 * applet, and returns a yield.
4781 */
4782 if (l < len) {
Christopher Faulet4b0e9b22019-01-09 12:16:58 +01004783 snd_yield:
Christopher Faulet0ae79d02019-02-27 21:36:59 +01004784 htx_to_buf(htx, &res->buf);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004785 si_rx_room_blk(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02004786 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_send_yield, TICK_ETERNITY, 0));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004787 }
4788
Christopher Fauleta2097962019-07-15 16:25:33 +02004789 htx_to_buf(htx, &res->buf);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004790 return 1;
4791}
4792
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05004793/* Just a wrapper of "hlua_applet_send_yield". This wrapper permits
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004794 * yield the LUA process, and resume it without checking the
4795 * input arguments.
4796 */
4797__LJMP static int hlua_applet_http_send(lua_State *L)
4798{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004799 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004800
4801 /* We want to send some data. Headers must be sent. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004802 if (!(luactx->appctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT)) {
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004803 hlua_pusherror(L, "Lua: 'send' you must call start_response() before sending data.");
4804 WILL_LJMP(lua_error(L));
4805 }
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004806
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05004807 /* This integer is used for followinf the amount of data sent. */
Christopher Fauleta2097962019-07-15 16:25:33 +02004808 lua_pushinteger(L, 0);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004809
Christopher Fauleta2097962019-07-15 16:25:33 +02004810 return MAY_LJMP(hlua_applet_http_send_yield(L, 0, 0));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004811}
4812
4813__LJMP static int hlua_applet_http_addheader(lua_State *L)
4814{
4815 const char *name;
4816 int ret;
4817
4818 MAY_LJMP(hlua_checkapplet_http(L, 1));
4819 name = MAY_LJMP(luaL_checkstring(L, 2));
4820 MAY_LJMP(luaL_checkstring(L, 3));
4821
4822 /* Push in the stack the "response" entry. */
4823 ret = lua_getfield(L, 1, "response");
4824 if (ret != LUA_TTABLE) {
4825 hlua_pusherror(L, "Lua: 'add_header' internal error: AppletHTTP['response'] "
4826 "is expected as an array. %s found", lua_typename(L, ret));
4827 WILL_LJMP(lua_error(L));
4828 }
4829
4830 /* check if the header is already registered if it is not
4831 * the case, register it.
4832 */
4833 ret = lua_getfield(L, -1, name);
4834 if (ret == LUA_TNIL) {
4835
4836 /* Entry not found. */
4837 lua_pop(L, 1); /* remove the nil. The "response" table is the top of the stack. */
4838
4839 /* Insert the new header name in the array in the top of the stack.
4840 * It left the new array in the top of the stack.
4841 */
4842 lua_newtable(L);
4843 lua_pushvalue(L, 2);
4844 lua_pushvalue(L, -2);
4845 lua_settable(L, -4);
4846
4847 } else if (ret != LUA_TTABLE) {
4848
4849 /* corruption error. */
4850 hlua_pusherror(L, "Lua: 'add_header' internal error: AppletHTTP['response']['%s'] "
4851 "is expected as an array. %s found", name, lua_typename(L, ret));
4852 WILL_LJMP(lua_error(L));
4853 }
4854
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07004855 /* Now the top of thestack is an array of values. We push
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004856 * the header value as new entry.
4857 */
4858 lua_pushvalue(L, 3);
4859 ret = lua_rawlen(L, -2);
4860 lua_rawseti(L, -2, ret + 1);
4861 lua_pushboolean(L, 1);
4862 return 1;
4863}
4864
4865__LJMP static int hlua_applet_http_status(lua_State *L)
4866{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004867 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004868 int status = MAY_LJMP(luaL_checkinteger(L, 2));
Robin H. Johnson52f5db22017-01-01 13:10:52 -08004869 const char *reason = MAY_LJMP(luaL_optlstring(L, 3, NULL, NULL));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004870
4871 if (status < 100 || status > 599) {
4872 lua_pushboolean(L, 0);
4873 return 1;
4874 }
4875
Willy Tarreau7e702d12021-04-28 17:59:21 +02004876 luactx->appctx->ctx.hlua_apphttp.status = status;
4877 luactx->appctx->ctx.hlua_apphttp.reason = reason;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004878 lua_pushboolean(L, 1);
4879 return 1;
4880}
4881
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004882
Christopher Fauleta2097962019-07-15 16:25:33 +02004883__LJMP static int hlua_applet_http_send_response(lua_State *L)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004884{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004885 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4886 struct stream_interface *si = luactx->appctx->owner;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004887 struct channel *res = si_ic(si);
4888 struct htx *htx;
4889 struct htx_sl *sl;
4890 struct h1m h1m;
4891 const char *status, *reason;
4892 const char *name, *value;
4893 size_t nlen, vlen;
4894 unsigned int flags;
4895
4896 /* Send the message at once. */
4897 htx = htx_from_buf(&res->buf);
4898 h1m_init_res(&h1m);
4899
4900 /* Use the same http version than the request. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004901 status = ultoa_r(luactx->appctx->ctx.hlua_apphttp.status, trash.area, trash.size);
4902 reason = luactx->appctx->ctx.hlua_apphttp.reason;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004903 if (reason == NULL)
Willy Tarreau7e702d12021-04-28 17:59:21 +02004904 reason = http_get_reason(luactx->appctx->ctx.hlua_apphttp.status);
4905 if (luactx->appctx->ctx.hlua_apphttp.flags & APPLET_HTTP11) {
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004906 flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11);
4907 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"), ist(status), ist(reason));
4908 }
4909 else {
4910 flags = HTX_SL_F_IS_RESP;
4911 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.0"), ist(status), ist(reason));
4912 }
4913 if (!sl) {
4914 hlua_pusherror(L, "Lua applet http '%s': Failed to create response.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02004915 luactx->appctx->rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004916 WILL_LJMP(lua_error(L));
4917 }
Willy Tarreau7e702d12021-04-28 17:59:21 +02004918 sl->info.res.status = luactx->appctx->ctx.hlua_apphttp.status;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004919
4920 /* Get the array associated to the field "response" in the object AppletHTTP. */
4921 lua_pushvalue(L, 0);
4922 if (lua_getfield(L, 1, "response") != LUA_TTABLE) {
4923 hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response'] missing.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02004924 luactx->appctx->rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004925 WILL_LJMP(lua_error(L));
4926 }
4927
4928 /* Browse the list of headers. */
4929 lua_pushnil(L);
4930 while(lua_next(L, -2) != 0) {
4931 /* We expect a string as -2. */
4932 if (lua_type(L, -2) != LUA_TSTRING) {
4933 hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response'][] element must be a string. got %s.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02004934 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004935 lua_typename(L, lua_type(L, -2)));
4936 WILL_LJMP(lua_error(L));
4937 }
4938 name = lua_tolstring(L, -2, &nlen);
4939
4940 /* We expect an array as -1. */
4941 if (lua_type(L, -1) != LUA_TTABLE) {
4942 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 +02004943 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004944 name,
4945 lua_typename(L, lua_type(L, -1)));
4946 WILL_LJMP(lua_error(L));
4947 }
4948
4949 /* Browse the table who is on the top of the stack. */
4950 lua_pushnil(L);
4951 while(lua_next(L, -2) != 0) {
4952 int id;
4953
4954 /* We expect a number as -2. */
4955 if (lua_type(L, -2) != LUA_TNUMBER) {
4956 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 +02004957 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004958 name,
4959 lua_typename(L, lua_type(L, -2)));
4960 WILL_LJMP(lua_error(L));
4961 }
4962 id = lua_tointeger(L, -2);
4963
4964 /* We expect a string as -2. */
4965 if (lua_type(L, -1) != LUA_TSTRING) {
4966 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 +02004967 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004968 name, id,
4969 lua_typename(L, lua_type(L, -1)));
4970 WILL_LJMP(lua_error(L));
4971 }
4972 value = lua_tolstring(L, -1, &vlen);
4973
4974 /* Simple Protocol checks. */
4975 if (isteqi(ist2(name, nlen), ist("transfer-encoding")))
Christopher Faulet700d9e82020-01-31 12:21:52 +01004976 h1_parse_xfer_enc_header(&h1m, ist2(value, vlen));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004977 else if (isteqi(ist2(name, nlen), ist("content-length"))) {
4978 struct ist v = ist2(value, vlen);
4979 int ret;
4980
4981 ret = h1_parse_cont_len_header(&h1m, &v);
4982 if (ret < 0) {
4983 hlua_pusherror(L, "Lua applet http '%s': Invalid '%s' header.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02004984 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004985 name);
4986 WILL_LJMP(lua_error(L));
4987 }
4988 else if (ret == 0)
4989 goto next; /* Skip it */
4990 }
4991
4992 /* Add a new header */
4993 if (!htx_add_header(htx, ist2(name, nlen), ist2(value, vlen))) {
4994 hlua_pusherror(L, "Lua applet http '%s': Failed to add header '%s' in the response.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02004995 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004996 name);
4997 WILL_LJMP(lua_error(L));
4998 }
4999 next:
5000 /* Remove the array from the stack, and get next element with a remaining string. */
5001 lua_pop(L, 1);
5002 }
5003
5004 /* Remove the array from the stack, and get next element with a remaining string. */
5005 lua_pop(L, 1);
5006 }
5007
5008 if (h1m.flags & H1_MF_CHNK)
5009 h1m.flags &= ~H1_MF_CLEN;
5010 if (h1m.flags & (H1_MF_CLEN|H1_MF_CHNK))
5011 h1m.flags |= H1_MF_XFER_LEN;
5012
5013 /* Uset HTX start-line flags */
5014 if (h1m.flags & H1_MF_XFER_ENC)
5015 flags |= HTX_SL_F_XFER_ENC;
5016 if (h1m.flags & H1_MF_XFER_LEN) {
5017 flags |= HTX_SL_F_XFER_LEN;
5018 if (h1m.flags & H1_MF_CHNK)
5019 flags |= HTX_SL_F_CHNK;
5020 else if (h1m.flags & H1_MF_CLEN)
5021 flags |= HTX_SL_F_CLEN;
5022 if (h1m.body_len == 0)
5023 flags |= HTX_SL_F_BODYLESS;
5024 }
5025 sl->flags |= flags;
5026
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07005027 /* If we don't have a content-length set, and the HTTP version is 1.1
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005028 * and the status code implies the presence of a message body, we must
5029 * announce a transfer encoding chunked. This is required by haproxy
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05005030 * for the keepalive compliance. If the applet announces a transfer-encoding
5031 * chunked itself, don't do anything.
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005032 */
5033 if ((flags & (HTX_SL_F_VER_11|HTX_SL_F_XFER_LEN)) == HTX_SL_F_VER_11 &&
Willy Tarreau7e702d12021-04-28 17:59:21 +02005034 luactx->appctx->ctx.hlua_apphttp.status >= 200 &&
5035 luactx->appctx->ctx.hlua_apphttp.status != 204 &&
5036 luactx->appctx->ctx.hlua_apphttp.status != 304) {
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005037 /* Add a new header */
5038 sl->flags |= (HTX_SL_F_XFER_ENC|H1_MF_CHNK|H1_MF_XFER_LEN);
5039 if (!htx_add_header(htx, ist("transfer-encoding"), ist("chunked"))) {
5040 hlua_pusherror(L, "Lua applet http '%s': Failed to add header 'transfer-encoding' in the response.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005041 luactx->appctx->rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005042 WILL_LJMP(lua_error(L));
5043 }
5044 }
5045
5046 /* Finalize headers. */
5047 if (!htx_add_endof(htx, HTX_BLK_EOH)) {
5048 hlua_pusherror(L, "Lua applet http '%s': Failed create the response.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005049 luactx->appctx->rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005050 WILL_LJMP(lua_error(L));
5051 }
5052
5053 if (htx_used_space(htx) > b_size(&res->buf) - global.tune.maxrewrite) {
5054 b_reset(&res->buf);
5055 hlua_pusherror(L, "Lua: 'start_response': response header block too big");
5056 WILL_LJMP(lua_error(L));
5057 }
5058
5059 htx_to_buf(htx, &res->buf);
Christopher Fauletf6cce3f2019-02-27 21:20:09 +01005060 channel_add_input(res, htx->data);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005061
5062 /* Headers sent, set the flag. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02005063 luactx->appctx->ctx.hlua_apphttp.flags |= APPLET_HDR_SENT;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005064 return 0;
5065
5066}
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005067/* We will build the status line and the headers of the HTTP response.
5068 * We will try send at once if its not possible, we give back the hand
5069 * waiting for more room.
5070 */
Christopher Fauleta2097962019-07-15 16:25:33 +02005071__LJMP static int hlua_applet_http_start_response_yield(lua_State *L, int status, lua_KContext ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005072{
Willy Tarreau7e702d12021-04-28 17:59:21 +02005073 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
5074 struct stream_interface *si = luactx->appctx->owner;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005075 struct channel *res = si_ic(si);
5076
5077 if (co_data(res)) {
5078 si_rx_room_blk(si);
Christopher Fauleta2097962019-07-15 16:25:33 +02005079 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_start_response_yield, TICK_ETERNITY, 0));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005080 }
Christopher Fauleta2097962019-07-15 16:25:33 +02005081 return MAY_LJMP(hlua_applet_http_send_response(L));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005082}
5083
5084
Christopher Fauleta2097962019-07-15 16:25:33 +02005085__LJMP static int hlua_applet_http_start_response(lua_State *L)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005086{
Christopher Fauleta2097962019-07-15 16:25:33 +02005087 return MAY_LJMP(hlua_applet_http_start_response_yield(L, 0, 0));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005088}
5089
Christopher Fauleta2097962019-07-15 16:25:33 +02005090/*
5091 *
5092 *
5093 * Class HTTP
5094 *
5095 *
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005096 */
Christopher Fauleta2097962019-07-15 16:25:33 +02005097
5098/* Returns a struct hlua_txn if the stack entry "ud" is
5099 * a class stream, otherwise it throws an error.
5100 */
5101__LJMP static struct hlua_txn *hlua_checkhttp(lua_State *L, int ud)
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005102{
Christopher Fauleta2097962019-07-15 16:25:33 +02005103 return MAY_LJMP(hlua_checkudata(L, ud, class_http_ref));
5104}
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005105
Christopher Fauleta2097962019-07-15 16:25:33 +02005106/* This function creates and push in the stack a HTTP object
5107 * according with a current TXN.
5108 */
5109static int hlua_http_new(lua_State *L, struct hlua_txn *txn)
5110{
5111 struct hlua_txn *htxn;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005112
Christopher Fauleta2097962019-07-15 16:25:33 +02005113 /* Check stack size. */
5114 if (!lua_checkstack(L, 3))
5115 return 0;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005116
Christopher Fauleta2097962019-07-15 16:25:33 +02005117 /* Create the object: obj[0] = userdata.
5118 * Note that the base of the Converters object is the
5119 * same than the TXN object.
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005120 */
Christopher Fauleta2097962019-07-15 16:25:33 +02005121 lua_newtable(L);
5122 htxn = lua_newuserdata(L, sizeof(*htxn));
5123 lua_rawseti(L, -2, 0);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005124
5125 htxn->s = txn->s;
5126 htxn->p = txn->p;
Christopher Faulet256b69a2019-05-23 11:14:21 +02005127 htxn->dir = txn->dir;
5128 htxn->flags = txn->flags;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005129
5130 /* Pop a class stream metatable and affect it to the table. */
5131 lua_rawgeti(L, LUA_REGISTRYINDEX, class_http_ref);
5132 lua_setmetatable(L, -2);
5133
5134 return 1;
5135}
5136
5137/* This function creates ans returns an array of HTTP headers.
5138 * This function does not fails. It is used as wrapper with the
5139 * 2 following functions.
5140 */
Christopher Faulet9d1332b2020-02-24 16:46:16 +01005141__LJMP static int hlua_http_get_headers(lua_State *L, struct http_msg *msg)
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005142{
Christopher Fauleta2097962019-07-15 16:25:33 +02005143 struct htx *htx;
5144 int32_t pos;
5145
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005146 /* Create the table. */
5147 lua_newtable(L);
5148
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005149
Christopher Fauleta2097962019-07-15 16:25:33 +02005150 htx = htxbuf(&msg->chn->buf);
5151 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
5152 struct htx_blk *blk = htx_get_blk(htx, pos);
5153 enum htx_blk_type type = htx_get_blk_type(blk);
5154 struct ist n, v;
5155 int len;
Christopher Faulet724a12c2018-12-13 22:12:15 +01005156
Christopher Fauleta2097962019-07-15 16:25:33 +02005157 if (type == HTX_BLK_HDR) {
5158 n = htx_get_blk_name(htx,blk);
5159 v = htx_get_blk_value(htx, blk);
Christopher Faulet724a12c2018-12-13 22:12:15 +01005160 }
Christopher Fauleta2097962019-07-15 16:25:33 +02005161 else if (type == HTX_BLK_EOH)
5162 break;
5163 else
5164 continue;
Christopher Faulet724a12c2018-12-13 22:12:15 +01005165
Christopher Fauleta2097962019-07-15 16:25:33 +02005166 /* Check for existing entry:
5167 * assume that the table is on the top of the stack, and
5168 * push the key in the stack, the function lua_gettable()
5169 * perform the lookup.
5170 */
5171 lua_pushlstring(L, n.ptr, n.len);
5172 lua_gettable(L, -2);
Christopher Faulet724a12c2018-12-13 22:12:15 +01005173
Christopher Fauleta2097962019-07-15 16:25:33 +02005174 switch (lua_type(L, -1)) {
5175 case LUA_TNIL:
5176 /* Table not found, create it. */
5177 lua_pop(L, 1); /* remove the nil value. */
5178 lua_pushlstring(L, n.ptr, n.len); /* push the header name as key. */
5179 lua_newtable(L); /* create and push empty table. */
5180 lua_pushlstring(L, v.ptr, v.len); /* push header value. */
5181 lua_rawseti(L, -2, 0); /* index header value (pop it). */
5182 lua_rawset(L, -3); /* index new table with header name (pop the values). */
Christopher Faulet724a12c2018-12-13 22:12:15 +01005183 break;
Christopher Faulet724a12c2018-12-13 22:12:15 +01005184
Christopher Fauleta2097962019-07-15 16:25:33 +02005185 case LUA_TTABLE:
5186 /* Entry found: push the value in the table. */
5187 len = lua_rawlen(L, -1);
5188 lua_pushlstring(L, v.ptr, v.len); /* push header value. */
5189 lua_rawseti(L, -2, len+1); /* index header value (pop it). */
5190 lua_pop(L, 1); /* remove the table (it is stored in the main table). */
5191 break;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005192
Christopher Fauleta2097962019-07-15 16:25:33 +02005193 default:
5194 /* Other cases are errors. */
5195 hlua_pusherror(L, "internal error during the parsing of headers.");
5196 WILL_LJMP(lua_error(L));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005197 }
5198 }
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005199 return 1;
5200}
5201
5202__LJMP static int hlua_http_req_get_headers(lua_State *L)
5203{
5204 struct hlua_txn *htxn;
5205
5206 MAY_LJMP(check_args(L, 1, "req_get_headers"));
5207 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5208
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005209 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005210 WILL_LJMP(lua_error(L));
5211
Christopher Faulet9d1332b2020-02-24 16:46:16 +01005212 return hlua_http_get_headers(L, &htxn->s->txn->req);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005213}
5214
5215__LJMP static int hlua_http_res_get_headers(lua_State *L)
5216{
5217 struct hlua_txn *htxn;
5218
5219 MAY_LJMP(check_args(L, 1, "res_get_headers"));
5220 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5221
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005222 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005223 WILL_LJMP(lua_error(L));
5224
Christopher Faulet9d1332b2020-02-24 16:46:16 +01005225 return hlua_http_get_headers(L, &htxn->s->txn->rsp);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005226}
5227
5228/* This function replace full header, or just a value in
5229 * the request or in the response. It is a wrapper fir the
5230 * 4 following functions.
5231 */
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005232__LJMP static inline int hlua_http_rep_hdr(lua_State *L, struct http_msg *msg, int full)
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005233{
5234 size_t name_len;
5235 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
5236 const char *reg = MAY_LJMP(luaL_checkstring(L, 3));
5237 const char *value = MAY_LJMP(luaL_checkstring(L, 4));
Christopher Fauleta2097962019-07-15 16:25:33 +02005238 struct htx *htx;
Dragan Dosen26743032019-04-30 15:54:36 +02005239 struct my_regex *re;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005240
Dragan Dosen26743032019-04-30 15:54:36 +02005241 if (!(re = regex_comp(reg, 1, 1, NULL)))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005242 WILL_LJMP(luaL_argerror(L, 3, "invalid regex"));
5243
Christopher Fauleta2097962019-07-15 16:25:33 +02005244 htx = htxbuf(&msg->chn->buf);
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005245 http_replace_hdrs(chn_strm(msg->chn), htx, ist2(name, name_len), value, re, full);
Dragan Dosen26743032019-04-30 15:54:36 +02005246 regex_free(re);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005247 return 0;
5248}
5249
5250__LJMP static int hlua_http_req_rep_hdr(lua_State *L)
5251{
5252 struct hlua_txn *htxn;
5253
5254 MAY_LJMP(check_args(L, 4, "req_rep_hdr"));
5255 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5256
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005257 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005258 WILL_LJMP(lua_error(L));
5259
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005260 return MAY_LJMP(hlua_http_rep_hdr(L, &htxn->s->txn->req, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005261}
5262
5263__LJMP static int hlua_http_res_rep_hdr(lua_State *L)
5264{
5265 struct hlua_txn *htxn;
5266
5267 MAY_LJMP(check_args(L, 4, "res_rep_hdr"));
5268 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5269
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005270 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005271 WILL_LJMP(lua_error(L));
5272
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005273 return MAY_LJMP(hlua_http_rep_hdr(L, &htxn->s->txn->rsp, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005274}
5275
5276__LJMP static int hlua_http_req_rep_val(lua_State *L)
5277{
5278 struct hlua_txn *htxn;
5279
5280 MAY_LJMP(check_args(L, 4, "req_rep_hdr"));
5281 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5282
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005283 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005284 WILL_LJMP(lua_error(L));
5285
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005286 return MAY_LJMP(hlua_http_rep_hdr(L, &htxn->s->txn->req, 0));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005287}
5288
5289__LJMP static int hlua_http_res_rep_val(lua_State *L)
5290{
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005291 struct hlua_txn *htxn;
5292
5293 MAY_LJMP(check_args(L, 4, "res_rep_val"));
5294 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5295
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005296 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005297 WILL_LJMP(lua_error(L));
5298
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005299 return MAY_LJMP(hlua_http_rep_hdr(L, &htxn->s->txn->rsp, 0));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005300}
5301
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08005302/* This function deletes all the occurrences of an header.
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005303 * It is a wrapper for the 2 following functions.
5304 */
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005305__LJMP static inline int hlua_http_del_hdr(lua_State *L, struct http_msg *msg)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005306{
5307 size_t len;
5308 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Christopher Fauleta2097962019-07-15 16:25:33 +02005309 struct htx *htx = htxbuf(&msg->chn->buf);
5310 struct http_hdr_ctx ctx;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005311
Christopher Fauleta2097962019-07-15 16:25:33 +02005312 ctx.blk = NULL;
5313 while (http_find_header(htx, ist2(name, len), &ctx, 1))
5314 http_remove_header(htx, &ctx);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005315 return 0;
5316}
5317
5318__LJMP static int hlua_http_req_del_hdr(lua_State *L)
5319{
5320 struct hlua_txn *htxn;
5321
5322 MAY_LJMP(check_args(L, 2, "req_del_hdr"));
5323 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5324
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005325 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005326 WILL_LJMP(lua_error(L));
5327
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005328 return hlua_http_del_hdr(L, &htxn->s->txn->req);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005329}
5330
5331__LJMP static int hlua_http_res_del_hdr(lua_State *L)
5332{
5333 struct hlua_txn *htxn;
5334
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005335 MAY_LJMP(check_args(L, 2, "res_del_hdr"));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005336 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5337
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005338 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005339 WILL_LJMP(lua_error(L));
5340
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005341 return hlua_http_del_hdr(L, &htxn->s->txn->rsp);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005342}
5343
5344/* This function adds an header. It is a wrapper used by
5345 * the 2 following functions.
5346 */
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005347__LJMP static inline int hlua_http_add_hdr(lua_State *L, struct http_msg *msg)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005348{
5349 size_t name_len;
5350 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
5351 size_t value_len;
5352 const char *value = MAY_LJMP(luaL_checklstring(L, 3, &value_len));
Christopher Fauleta2097962019-07-15 16:25:33 +02005353 struct htx *htx = htxbuf(&msg->chn->buf);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005354
Christopher Fauleta2097962019-07-15 16:25:33 +02005355 lua_pushboolean(L, http_add_header(htx, ist2(name, name_len),
5356 ist2(value, value_len)));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005357 return 0;
5358}
5359
5360__LJMP static int hlua_http_req_add_hdr(lua_State *L)
5361{
5362 struct hlua_txn *htxn;
5363
5364 MAY_LJMP(check_args(L, 3, "req_add_hdr"));
5365 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5366
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005367 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005368 WILL_LJMP(lua_error(L));
5369
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005370 return hlua_http_add_hdr(L, &htxn->s->txn->req);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005371}
5372
5373__LJMP static int hlua_http_res_add_hdr(lua_State *L)
5374{
5375 struct hlua_txn *htxn;
5376
5377 MAY_LJMP(check_args(L, 3, "res_add_hdr"));
5378 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5379
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005380 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005381 WILL_LJMP(lua_error(L));
5382
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005383 return hlua_http_add_hdr(L, &htxn->s->txn->rsp);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005384}
5385
5386static int hlua_http_req_set_hdr(lua_State *L)
5387{
5388 struct hlua_txn *htxn;
5389
5390 MAY_LJMP(check_args(L, 3, "req_set_hdr"));
5391 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5392
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005393 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005394 WILL_LJMP(lua_error(L));
5395
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005396 hlua_http_del_hdr(L, &htxn->s->txn->req);
5397 return hlua_http_add_hdr(L, &htxn->s->txn->req);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005398}
5399
5400static int hlua_http_res_set_hdr(lua_State *L)
5401{
5402 struct hlua_txn *htxn;
5403
5404 MAY_LJMP(check_args(L, 3, "res_set_hdr"));
5405 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5406
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005407 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005408 WILL_LJMP(lua_error(L));
5409
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005410 hlua_http_del_hdr(L, &htxn->s->txn->rsp);
5411 return hlua_http_add_hdr(L, &htxn->s->txn->rsp);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005412}
5413
5414/* This function set the method. */
5415static int hlua_http_req_set_meth(lua_State *L)
5416{
Willy Tarreaubcb39cc2015-04-06 11:21:44 +02005417 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005418 size_t name_len;
5419 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005420
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005421 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005422 WILL_LJMP(lua_error(L));
5423
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02005424 lua_pushboolean(L, http_req_replace_stline(0, name, name_len, htxn->p, htxn->s) != -1);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005425 return 1;
5426}
5427
5428/* This function set the method. */
5429static int hlua_http_req_set_path(lua_State *L)
5430{
Willy Tarreaubcb39cc2015-04-06 11:21:44 +02005431 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005432 size_t name_len;
5433 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
Thierry FOURNIER / OZON.IOb84ae922016-08-02 23:44:58 +02005434
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005435 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005436 WILL_LJMP(lua_error(L));
5437
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02005438 lua_pushboolean(L, http_req_replace_stline(1, name, name_len, htxn->p, htxn->s) != -1);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005439 return 1;
5440}
5441
5442/* This function set the query-string. */
5443static int hlua_http_req_set_query(lua_State *L)
5444{
Willy Tarreaubcb39cc2015-04-06 11:21:44 +02005445 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005446 size_t name_len;
5447 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005448
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005449 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005450 WILL_LJMP(lua_error(L));
5451
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005452 /* Check length. */
5453 if (name_len > trash.size - 1) {
5454 lua_pushboolean(L, 0);
5455 return 1;
5456 }
5457
5458 /* Add the mark question as prefix. */
5459 chunk_reset(&trash);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005460 trash.area[trash.data++] = '?';
5461 memcpy(trash.area + trash.data, name, name_len);
5462 trash.data += name_len;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005463
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005464 lua_pushboolean(L,
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02005465 http_req_replace_stline(2, trash.area, trash.data, htxn->p, htxn->s) != -1);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005466 return 1;
5467}
5468
5469/* This function set the uri. */
5470static int hlua_http_req_set_uri(lua_State *L)
5471{
Willy Tarreaubcb39cc2015-04-06 11:21:44 +02005472 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005473 size_t name_len;
5474 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005475
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005476 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005477 WILL_LJMP(lua_error(L));
5478
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02005479 lua_pushboolean(L, http_req_replace_stline(3, name, name_len, htxn->p, htxn->s) != -1);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005480 return 1;
5481}
5482
Robin H. Johnson52f5db22017-01-01 13:10:52 -08005483/* This function set the response code & optionally reason. */
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +02005484static int hlua_http_res_set_status(lua_State *L)
5485{
5486 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5487 unsigned int code = MAY_LJMP(luaL_checkinteger(L, 2));
Christopher Faulet96bff762019-12-17 13:46:18 +01005488 const char *str = MAY_LJMP(luaL_optlstring(L, 3, NULL, NULL));
5489 const struct ist reason = ist2(str, (str ? strlen(str) : 0));
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +02005490
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005491 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005492 WILL_LJMP(lua_error(L));
5493
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02005494 http_res_set_status(code, reason, htxn->s);
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +02005495 return 0;
5496}
5497
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005498/*
5499 *
5500 *
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005501 * Class TXN
5502 *
5503 *
5504 */
5505
5506/* Returns a struct hlua_session if the stack entry "ud" is
Willy Tarreau87b09662015-04-03 00:22:06 +02005507 * a class stream, otherwise it throws an error.
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005508 */
5509__LJMP static struct hlua_txn *hlua_checktxn(lua_State *L, int ud)
5510{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02005511 return MAY_LJMP(hlua_checkudata(L, ud, class_txn_ref));
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005512}
5513
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02005514__LJMP static int hlua_set_var(lua_State *L)
5515{
5516 struct hlua_txn *htxn;
5517 const char *name;
5518 size_t len;
5519 struct sample smp;
5520
Tim Duesterhus4e172c92020-05-19 13:49:42 +02005521 if (lua_gettop(L) < 3 || lua_gettop(L) > 4)
5522 WILL_LJMP(luaL_error(L, "'set_var' needs between 3 and 4 arguments"));
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02005523
5524 /* It is useles to retrieve the stream, but this function
5525 * runs only in a stream context.
5526 */
5527 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5528 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
5529
5530 /* Converts the third argument in a sample. */
Amaury Denoyellebc0af6a2020-10-29 17:21:20 +01005531 memset(&smp, 0, sizeof(smp));
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02005532 hlua_lua2smp(L, 3, &smp);
5533
Aurelien DARRAGONd39fb742023-05-17 16:06:11 +02005534 /* Store the sample in a variable. We don't need to dup the smp, vars API
5535 * already takes care of duplicating dynamic var data.
5536 */
Willy Tarreau7560dd42016-03-10 16:28:58 +01005537 smp_set_owner(&smp, htxn->p, htxn->s->sess, htxn->s, htxn->dir & SMP_OPT_DIR);
Tim Duesterhus4e172c92020-05-19 13:49:42 +02005538
5539 if (lua_gettop(L) == 4 && lua_toboolean(L, 4))
5540 lua_pushboolean(L, vars_set_by_name_ifexist(name, len, &smp) != 0);
5541 else
5542 lua_pushboolean(L, vars_set_by_name(name, len, &smp) != 0);
5543
Tim Duesterhus84ebc132020-05-19 13:49:41 +02005544 return 1;
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02005545}
5546
Christopher Faulet85d79c92016-11-09 16:54:56 +01005547__LJMP static int hlua_unset_var(lua_State *L)
5548{
5549 struct hlua_txn *htxn;
5550 const char *name;
5551 size_t len;
5552 struct sample smp;
5553
5554 MAY_LJMP(check_args(L, 2, "unset_var"));
5555
5556 /* It is useles to retrieve the stream, but this function
5557 * runs only in a stream context.
5558 */
5559 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5560 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
5561
5562 /* Unset the variable. */
5563 smp_set_owner(&smp, htxn->p, htxn->s->sess, htxn->s, htxn->dir & SMP_OPT_DIR);
Tim Duesterhus84ebc132020-05-19 13:49:41 +02005564 lua_pushboolean(L, vars_unset_by_name_ifexist(name, len, &smp) != 0);
5565 return 1;
Christopher Faulet85d79c92016-11-09 16:54:56 +01005566}
5567
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02005568__LJMP static int hlua_get_var(lua_State *L)
5569{
5570 struct hlua_txn *htxn;
5571 const char *name;
5572 size_t len;
5573 struct sample smp;
5574
5575 MAY_LJMP(check_args(L, 2, "get_var"));
5576
5577 /* It is useles to retrieve the stream, but this function
5578 * runs only in a stream context.
5579 */
5580 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5581 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
5582
Willy Tarreau7560dd42016-03-10 16:28:58 +01005583 smp_set_owner(&smp, htxn->p, htxn->s->sess, htxn->s, htxn->dir & SMP_OPT_DIR);
Willy Tarreau6204cd92016-03-10 16:33:04 +01005584 if (!vars_get_by_name(name, len, &smp)) {
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02005585 lua_pushnil(L);
5586 return 1;
5587 }
5588
5589 return hlua_smp2lua(L, &smp);
5590}
5591
Willy Tarreau59551662015-03-10 14:23:13 +01005592__LJMP static int hlua_set_priv(lua_State *L)
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005593{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01005594 struct hlua *hlua;
5595
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005596 MAY_LJMP(check_args(L, 2, "set_priv"));
5597
Willy Tarreau87b09662015-04-03 00:22:06 +02005598 /* It is useles to retrieve the stream, but this function
5599 * runs only in a stream context.
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005600 */
5601 MAY_LJMP(hlua_checktxn(L, 1));
Thierry Fournier4234dbd2020-11-28 13:18:23 +01005602
5603 /* Get hlua struct, or NULL if we execute from main lua state */
Willy Tarreau80f5fae2015-02-27 16:38:20 +01005604 hlua = hlua_gethlua(L);
Thierry Fournier4234dbd2020-11-28 13:18:23 +01005605 if (!hlua)
5606 return 0;
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005607
5608 /* Remove previous value. */
Thierry FOURNIERe068b602017-04-26 13:27:05 +02005609 luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref);
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005610
5611 /* Get and store new value. */
5612 lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */
5613 hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */
5614
5615 return 0;
5616}
5617
Willy Tarreau59551662015-03-10 14:23:13 +01005618__LJMP static int hlua_get_priv(lua_State *L)
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005619{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01005620 struct hlua *hlua;
5621
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005622 MAY_LJMP(check_args(L, 1, "get_priv"));
5623
Willy Tarreau87b09662015-04-03 00:22:06 +02005624 /* It is useles to retrieve the stream, but this function
5625 * runs only in a stream context.
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005626 */
5627 MAY_LJMP(hlua_checktxn(L, 1));
Thierry Fournier4234dbd2020-11-28 13:18:23 +01005628
5629 /* Get hlua struct, or NULL if we execute from main lua state */
Willy Tarreau80f5fae2015-02-27 16:38:20 +01005630 hlua = hlua_gethlua(L);
Thierry Fournier4234dbd2020-11-28 13:18:23 +01005631 if (!hlua) {
5632 lua_pushnil(L);
5633 return 1;
5634 }
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005635
5636 /* Push configuration index in the stack. */
5637 lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref);
5638
5639 return 1;
5640}
5641
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005642/* Create stack entry containing a class TXN. This function
5643 * return 0 if the stack does not contains free slots,
5644 * otherwise it returns 1.
5645 */
Thierry FOURNIERab00df62016-07-14 11:42:37 +02005646static int hlua_txn_new(lua_State *L, struct stream *s, struct proxy *p, int dir, int flags)
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005647{
Willy Tarreaude491382015-04-06 11:04:28 +02005648 struct hlua_txn *htxn;
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005649
5650 /* Check stack size. */
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01005651 if (!lua_checkstack(L, 3))
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005652 return 0;
5653
5654 /* NOTE: The allocation never fails. The failure
5655 * throw an error, and the function never returns.
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08005656 * if the throw is not available, the process is aborted.
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005657 */
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01005658 /* Create the object: obj[0] = userdata. */
5659 lua_newtable(L);
Willy Tarreaude491382015-04-06 11:04:28 +02005660 htxn = lua_newuserdata(L, sizeof(*htxn));
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01005661 lua_rawseti(L, -2, 0);
5662
Willy Tarreaude491382015-04-06 11:04:28 +02005663 htxn->s = s;
5664 htxn->p = p;
Thierry FOURNIERc4eebc82015-11-02 10:01:59 +01005665 htxn->dir = dir;
Thierry FOURNIERab00df62016-07-14 11:42:37 +02005666 htxn->flags = flags;
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005667
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01005668 /* Create the "f" field that contains a list of fetches. */
5669 lua_pushstring(L, "f");
Thierry FOURNIERca988662015-12-20 18:43:03 +01005670 if (!hlua_fetches_new(L, htxn, HLUA_F_MAY_USE_HTTP))
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01005671 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02005672 lua_rawset(L, -3);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01005673
5674 /* Create the "sf" field that contains a list of stringsafe fetches. */
5675 lua_pushstring(L, "sf");
Thierry FOURNIERca988662015-12-20 18:43:03 +01005676 if (!hlua_fetches_new(L, htxn, HLUA_F_MAY_USE_HTTP | HLUA_F_AS_STRING))
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01005677 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02005678 lua_rawset(L, -3);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01005679
Thierry FOURNIER594afe72015-03-10 23:58:30 +01005680 /* Create the "c" field that contains a list of converters. */
5681 lua_pushstring(L, "c");
Willy Tarreaude491382015-04-06 11:04:28 +02005682 if (!hlua_converters_new(L, htxn, 0))
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01005683 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02005684 lua_rawset(L, -3);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01005685
5686 /* Create the "sc" field that contains a list of stringsafe converters. */
5687 lua_pushstring(L, "sc");
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01005688 if (!hlua_converters_new(L, htxn, HLUA_F_AS_STRING))
Thierry FOURNIER594afe72015-03-10 23:58:30 +01005689 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02005690 lua_rawset(L, -3);
Thierry FOURNIER594afe72015-03-10 23:58:30 +01005691
Thierry FOURNIER397826a2015-03-11 19:39:09 +01005692 /* Create the "req" field that contains the request channel object. */
5693 lua_pushstring(L, "req");
Willy Tarreau2a71af42015-03-10 13:51:50 +01005694 if (!hlua_channel_new(L, &s->req))
Thierry FOURNIER397826a2015-03-11 19:39:09 +01005695 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02005696 lua_rawset(L, -3);
Thierry FOURNIER397826a2015-03-11 19:39:09 +01005697
5698 /* Create the "res" field that contains the response channel object. */
5699 lua_pushstring(L, "res");
Willy Tarreau2a71af42015-03-10 13:51:50 +01005700 if (!hlua_channel_new(L, &s->res))
Thierry FOURNIER397826a2015-03-11 19:39:09 +01005701 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02005702 lua_rawset(L, -3);
Thierry FOURNIER397826a2015-03-11 19:39:09 +01005703
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005704 /* Creates the HTTP object is the current proxy allows http. */
5705 lua_pushstring(L, "http");
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01005706 if (IS_HTX_STRM(s)) {
Willy Tarreaude491382015-04-06 11:04:28 +02005707 if (!hlua_http_new(L, htxn))
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005708 return 0;
5709 }
5710 else
5711 lua_pushnil(L);
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02005712 lua_rawset(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005713
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005714 /* Pop a class sesison metatable and affect it to the userdata. */
5715 lua_rawgeti(L, LUA_REGISTRYINDEX, class_txn_ref);
5716 lua_setmetatable(L, -2);
5717
5718 return 1;
5719}
5720
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01005721__LJMP static int hlua_txn_deflog(lua_State *L)
5722{
5723 const char *msg;
5724 struct hlua_txn *htxn;
5725
5726 MAY_LJMP(check_args(L, 2, "deflog"));
5727 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5728 msg = MAY_LJMP(luaL_checkstring(L, 2));
5729
5730 hlua_sendlog(htxn->s->be, htxn->s->logs.level, msg);
5731 return 0;
5732}
5733
5734__LJMP static int hlua_txn_log(lua_State *L)
5735{
5736 int level;
5737 const char *msg;
5738 struct hlua_txn *htxn;
5739
5740 MAY_LJMP(check_args(L, 3, "log"));
5741 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5742 level = MAY_LJMP(luaL_checkinteger(L, 2));
5743 msg = MAY_LJMP(luaL_checkstring(L, 3));
5744
5745 if (level < 0 || level >= NB_LOG_LEVELS)
5746 WILL_LJMP(luaL_argerror(L, 1, "Invalid loglevel."));
5747
5748 hlua_sendlog(htxn->s->be, level, msg);
5749 return 0;
5750}
5751
5752__LJMP static int hlua_txn_log_debug(lua_State *L)
5753{
5754 const char *msg;
5755 struct hlua_txn *htxn;
5756
5757 MAY_LJMP(check_args(L, 2, "Debug"));
5758 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5759 msg = MAY_LJMP(luaL_checkstring(L, 2));
5760 hlua_sendlog(htxn->s->be, LOG_DEBUG, msg);
5761 return 0;
5762}
5763
5764__LJMP static int hlua_txn_log_info(lua_State *L)
5765{
5766 const char *msg;
5767 struct hlua_txn *htxn;
5768
5769 MAY_LJMP(check_args(L, 2, "Info"));
5770 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5771 msg = MAY_LJMP(luaL_checkstring(L, 2));
5772 hlua_sendlog(htxn->s->be, LOG_INFO, msg);
5773 return 0;
5774}
5775
5776__LJMP static int hlua_txn_log_warning(lua_State *L)
5777{
5778 const char *msg;
5779 struct hlua_txn *htxn;
5780
5781 MAY_LJMP(check_args(L, 2, "Warning"));
5782 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5783 msg = MAY_LJMP(luaL_checkstring(L, 2));
5784 hlua_sendlog(htxn->s->be, LOG_WARNING, msg);
5785 return 0;
5786}
5787
5788__LJMP static int hlua_txn_log_alert(lua_State *L)
5789{
5790 const char *msg;
5791 struct hlua_txn *htxn;
5792
5793 MAY_LJMP(check_args(L, 2, "Alert"));
5794 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5795 msg = MAY_LJMP(luaL_checkstring(L, 2));
5796 hlua_sendlog(htxn->s->be, LOG_ALERT, msg);
5797 return 0;
5798}
5799
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01005800__LJMP static int hlua_txn_set_loglevel(lua_State *L)
5801{
5802 struct hlua_txn *htxn;
5803 int ll;
5804
5805 MAY_LJMP(check_args(L, 2, "set_loglevel"));
5806 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5807 ll = MAY_LJMP(luaL_checkinteger(L, 2));
5808
Christopher Faulet8263e942024-02-29 15:41:17 +01005809 if (ll < -1 || ll > NB_LOG_LEVELS)
5810 WILL_LJMP(luaL_argerror(L, 2, "Bad log level. It must be one of the following value:"
5811 " core.silent(-1), core.emerg(0), core.alert(1), core.crit(2), core.error(3),"
5812 " core.warning(4), core.notice(5), core.info(6) or core.debug(7)"));
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01005813
Christopher Faulet8263e942024-02-29 15:41:17 +01005814 htxn->s->logs.level = (ll == -1) ? ll : ll + 1;
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01005815 return 0;
5816}
5817
5818__LJMP static int hlua_txn_set_tos(lua_State *L)
5819{
5820 struct hlua_txn *htxn;
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01005821 int tos;
5822
5823 MAY_LJMP(check_args(L, 2, "set_tos"));
5824 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5825 tos = MAY_LJMP(luaL_checkinteger(L, 2));
5826
Willy Tarreau1a18b542018-12-11 16:37:42 +01005827 conn_set_tos(objt_conn(htxn->s->sess->origin), tos);
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01005828 return 0;
5829}
5830
5831__LJMP static int hlua_txn_set_mark(lua_State *L)
5832{
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01005833 struct hlua_txn *htxn;
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01005834 int mark;
5835
5836 MAY_LJMP(check_args(L, 2, "set_mark"));
5837 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5838 mark = MAY_LJMP(luaL_checkinteger(L, 2));
5839
Lukas Tribus579e3e32019-08-11 18:03:45 +02005840 conn_set_mark(objt_conn(htxn->s->sess->origin), mark);
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01005841 return 0;
5842}
5843
Patrick Hemmer268a7072018-05-11 12:52:31 -04005844__LJMP static int hlua_txn_set_priority_class(lua_State *L)
5845{
5846 struct hlua_txn *htxn;
5847
5848 MAY_LJMP(check_args(L, 2, "set_priority_class"));
5849 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5850 htxn->s->priority_class = queue_limit_class(MAY_LJMP(luaL_checkinteger(L, 2)));
5851 return 0;
5852}
5853
5854__LJMP static int hlua_txn_set_priority_offset(lua_State *L)
5855{
5856 struct hlua_txn *htxn;
5857
5858 MAY_LJMP(check_args(L, 2, "set_priority_offset"));
5859 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5860 htxn->s->priority_offset = queue_limit_offset(MAY_LJMP(luaL_checkinteger(L, 2)));
5861 return 0;
5862}
5863
Christopher Faulet700d9e82020-01-31 12:21:52 +01005864/* Forward the Reply object to the client. This function converts the reply in
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05005865 * HTX an push it to into the response channel. It is response to forward the
Christopher Faulet700d9e82020-01-31 12:21:52 +01005866 * message and terminate the transaction. It returns 1 on success and 0 on
5867 * error. The Reply must be on top of the stack.
5868 */
5869__LJMP static int hlua_txn_forward_reply(lua_State *L, struct stream *s)
5870{
5871 struct htx *htx;
5872 struct htx_sl *sl;
5873 struct h1m h1m;
5874 const char *status, *reason, *body;
5875 size_t status_len, reason_len, body_len;
5876 int ret, code, flags;
5877
5878 code = 200;
5879 status = "200";
5880 status_len = 3;
5881 ret = lua_getfield(L, -1, "status");
5882 if (ret == LUA_TNUMBER) {
5883 code = lua_tointeger(L, -1);
5884 status = lua_tolstring(L, -1, &status_len);
5885 }
5886 lua_pop(L, 1);
5887
5888 reason = http_get_reason(code);
5889 reason_len = strlen(reason);
5890 ret = lua_getfield(L, -1, "reason");
5891 if (ret == LUA_TSTRING)
5892 reason = lua_tolstring(L, -1, &reason_len);
5893 lua_pop(L, 1);
5894
5895 body = NULL;
5896 body_len = 0;
5897 ret = lua_getfield(L, -1, "body");
5898 if (ret == LUA_TSTRING)
5899 body = lua_tolstring(L, -1, &body_len);
5900 lua_pop(L, 1);
5901
5902 /* Prepare the response before inserting the headers */
5903 h1m_init_res(&h1m);
5904 htx = htx_from_buf(&s->res.buf);
5905 channel_htx_truncate(&s->res, htx);
5906 if (s->txn->req.flags & HTTP_MSGF_VER_11) {
5907 flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11);
5908 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"),
5909 ist2(status, status_len), ist2(reason, reason_len));
5910 }
5911 else {
5912 flags = HTX_SL_F_IS_RESP;
5913 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.0"),
5914 ist2(status, status_len), ist2(reason, reason_len));
5915 }
5916 if (!sl)
5917 goto fail;
5918 sl->info.res.status = code;
5919
5920 /* Push in the stack the "headers" entry. */
5921 ret = lua_getfield(L, -1, "headers");
5922 if (ret != LUA_TTABLE)
5923 goto skip_headers;
5924
5925 lua_pushnil(L);
5926 while (lua_next(L, -2) != 0) {
5927 struct ist name, value;
5928 const char *n, *v;
5929 size_t nlen, vlen;
5930
5931 if (!lua_isstring(L, -2) || !lua_istable(L, -1)) {
5932 /* Skip element if the key is not a string or if the value is not a table */
5933 goto next_hdr;
5934 }
5935
5936 n = lua_tolstring(L, -2, &nlen);
5937 name = ist2(n, nlen);
5938 if (isteqi(name, ist("content-length"))) {
5939 /* Always skip content-length header. It will be added
5940 * later with the correct len
5941 */
5942 goto next_hdr;
5943 }
5944
5945 /* Loop on header's values */
5946 lua_pushnil(L);
5947 while (lua_next(L, -2)) {
5948 if (!lua_isstring(L, -1)) {
5949 /* Skip the value if it is not a string */
5950 goto next_value;
5951 }
5952
5953 v = lua_tolstring(L, -1, &vlen);
5954 value = ist2(v, vlen);
5955
5956 if (isteqi(name, ist("transfer-encoding")))
5957 h1_parse_xfer_enc_header(&h1m, value);
5958 if (!htx_add_header(htx, ist2(n, nlen), ist2(v, vlen)))
5959 goto fail;
5960
5961 next_value:
5962 lua_pop(L, 1);
5963 }
5964
5965 next_hdr:
5966 lua_pop(L, 1);
5967 }
5968 skip_headers:
5969 lua_pop(L, 1);
5970
5971 /* Update h1m flags: CLEN is set if CHNK is not present */
5972 if (!(h1m.flags & H1_MF_CHNK)) {
5973 const char *clen = ultoa(body_len);
5974
5975 h1m.flags |= H1_MF_CLEN;
5976 if (!htx_add_header(htx, ist("content-length"), ist(clen)))
5977 goto fail;
5978 }
5979 if (h1m.flags & (H1_MF_CLEN|H1_MF_CHNK))
5980 h1m.flags |= H1_MF_XFER_LEN;
5981
5982 /* Update HTX start-line flags */
5983 if (h1m.flags & H1_MF_XFER_ENC)
5984 flags |= HTX_SL_F_XFER_ENC;
5985 if (h1m.flags & H1_MF_XFER_LEN) {
5986 flags |= HTX_SL_F_XFER_LEN;
5987 if (h1m.flags & H1_MF_CHNK)
5988 flags |= HTX_SL_F_CHNK;
5989 else if (h1m.flags & H1_MF_CLEN)
5990 flags |= HTX_SL_F_CLEN;
5991 if (h1m.body_len == 0)
5992 flags |= HTX_SL_F_BODYLESS;
5993 }
5994 sl->flags |= flags;
5995
5996
5997 if (!htx_add_endof(htx, HTX_BLK_EOH) ||
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005998 (body_len && !htx_add_data_atonce(htx, ist2(body, body_len))))
Christopher Faulet700d9e82020-01-31 12:21:52 +01005999 goto fail;
6000
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006001 htx->flags |= HTX_FL_EOM;
6002
Christopher Faulet700d9e82020-01-31 12:21:52 +01006003 /* Now, forward the response and terminate the transaction */
6004 s->txn->status = code;
6005 htx_to_buf(htx, &s->res.buf);
6006 if (!http_forward_proxy_resp(s, 1))
6007 goto fail;
6008
6009 return 1;
6010
6011 fail:
6012 channel_htx_truncate(&s->res, htx);
6013 return 0;
6014}
6015
6016/* Terminate a transaction if called from a lua action. For TCP streams,
6017 * processing is just aborted. Nothing is returned to the client and all
6018 * arguments are ignored. For HTTP streams, if a reply is passed as argument, it
6019 * is forwarded to the client before terminating the transaction. On success,
6020 * the function exits with ACT_RET_DONE code. If an error occurred, it exits
6021 * with ACT_RET_ERR code. If this function is not called from a lua action, it
6022 * just exits without any processing.
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01006023 */
Thierry FOURNIER4bb375c2015-08-26 08:42:21 +02006024__LJMP static int hlua_txn_done(lua_State *L)
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01006025{
Willy Tarreaub2ccb562015-04-06 11:11:15 +02006026 struct hlua_txn *htxn;
Christopher Faulet700d9e82020-01-31 12:21:52 +01006027 struct stream *s;
6028 int finst;
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01006029
Willy Tarreaub2ccb562015-04-06 11:11:15 +02006030 htxn = MAY_LJMP(hlua_checktxn(L, 1));
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01006031
Christopher Faulet700d9e82020-01-31 12:21:52 +01006032 /* If the flags NOTERM is set, we cannot terminate the session, so we
6033 * just end the execution of the current lua code. */
6034 if (htxn->flags & HLUA_TXN_NOTERM)
Thierry FOURNIERab00df62016-07-14 11:42:37 +02006035 WILL_LJMP(hlua_done(L));
Thierry FOURNIERab00df62016-07-14 11:42:37 +02006036
Christopher Faulet700d9e82020-01-31 12:21:52 +01006037 s = htxn->s;
Christopher Fauletd8f0e072020-02-25 09:45:51 +01006038 if (!IS_HTX_STRM(htxn->s)) {
Christopher Faulet700d9e82020-01-31 12:21:52 +01006039 struct channel *req = &s->req;
6040 struct channel *res = &s->res;
Willy Tarreau81389672015-03-10 12:03:52 +01006041
Christopher Faulet700d9e82020-01-31 12:21:52 +01006042 channel_auto_read(req);
6043 channel_abort(req);
6044 channel_auto_close(req);
6045 channel_erase(req);
6046
6047 res->wex = tick_add_ifset(now_ms, res->wto);
6048 channel_auto_read(res);
6049 channel_auto_close(res);
6050 channel_shutr_now(res);
6051
6052 finst = ((htxn->dir == SMP_OPT_DIR_REQ) ? SF_FINST_R : SF_FINST_D);
6053 goto done;
Christopher Fauletfe6a71b2019-07-26 16:40:24 +02006054 }
Thierry FOURNIER10ec2142015-08-24 17:23:45 +02006055
Christopher Faulet700d9e82020-01-31 12:21:52 +01006056 if (lua_gettop(L) == 1 || !lua_istable(L, 2)) {
6057 /* No reply or invalid reply */
6058 s->txn->status = 0;
6059 http_reply_and_close(s, 0, NULL);
6060 }
6061 else {
6062 /* Remove extra args to have the reply on top of the stack */
6063 if (lua_gettop(L) > 2)
6064 lua_pop(L, lua_gettop(L) - 2);
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01006065
Christopher Faulet700d9e82020-01-31 12:21:52 +01006066 if (!hlua_txn_forward_reply(L, s)) {
6067 if (!(s->flags & SF_ERR_MASK))
6068 s->flags |= SF_ERR_PRXCOND;
6069 lua_pushinteger(L, ACT_RET_ERR);
6070 WILL_LJMP(hlua_done(L));
6071 return 0; /* Never reached */
6072 }
Christopher Faulet4d0e2632019-07-16 10:52:40 +02006073 }
Thierry FOURNIER4bb375c2015-08-26 08:42:21 +02006074
Christopher Faulet700d9e82020-01-31 12:21:52 +01006075 finst = ((htxn->dir == SMP_OPT_DIR_REQ) ? SF_FINST_R : SF_FINST_H);
6076 if (htxn->dir == SMP_OPT_DIR_REQ) {
6077 /* let's log the request time */
6078 s->logs.tv_request = now;
6079 if (s->sess->fe == s->be) /* report it if the request was intercepted by the frontend */
Willy Tarreau4781b152021-04-06 13:53:36 +02006080 _HA_ATOMIC_INC(&s->sess->fe->fe_counters.intercepted_req);
Christopher Faulet700d9e82020-01-31 12:21:52 +01006081 }
Christopher Fauletfe6a71b2019-07-26 16:40:24 +02006082
Christopher Faulet700d9e82020-01-31 12:21:52 +01006083 done:
6084 if (!(s->flags & SF_ERR_MASK))
6085 s->flags |= SF_ERR_LOCAL;
6086 if (!(s->flags & SF_FINST_MASK))
6087 s->flags |= finst;
Christopher Fauletfe6a71b2019-07-26 16:40:24 +02006088
Christopher Faulet4ad73102020-03-05 11:07:31 +01006089 lua_pushinteger(L, ACT_RET_ABRT);
Thierry FOURNIER4bb375c2015-08-26 08:42:21 +02006090 WILL_LJMP(hlua_done(L));
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01006091 return 0;
6092}
6093
Christopher Faulet700d9e82020-01-31 12:21:52 +01006094/*
6095 *
6096 *
6097 * Class REPLY
6098 *
6099 *
6100 */
6101
6102/* Pushes the TXN reply onto the top of the stack. If the stask does not have a
6103 * free slots, the function fails and returns 0;
6104 */
6105static int hlua_txn_reply_new(lua_State *L)
6106{
6107 struct hlua_txn *htxn;
6108 const char *reason, *body = NULL;
6109 int ret, status;
6110
6111 htxn = MAY_LJMP(hlua_checktxn(L, 1));
Christopher Fauletd8f0e072020-02-25 09:45:51 +01006112 if (!IS_HTX_STRM(htxn->s)) {
Christopher Faulet700d9e82020-01-31 12:21:52 +01006113 hlua_pusherror(L, "txn object is not an HTTP transaction.");
6114 WILL_LJMP(lua_error(L));
6115 }
6116
6117 /* Default value */
6118 status = 200;
6119 reason = http_get_reason(status);
6120
6121 if (lua_istable(L, 2)) {
6122 /* load status and reason from the table argument at index 2 */
6123 ret = lua_getfield(L, 2, "status");
6124 if (ret == LUA_TNIL)
6125 goto reason;
6126 else if (ret != LUA_TNUMBER) {
6127 /* invalid status: ignore the reason */
6128 goto body;
6129 }
6130 status = lua_tointeger(L, -1);
6131
6132 reason:
6133 lua_pop(L, 1); /* restore the stack: remove status */
6134 ret = lua_getfield(L, 2, "reason");
6135 if (ret == LUA_TSTRING)
6136 reason = lua_tostring(L, -1);
6137
6138 body:
6139 lua_pop(L, 1); /* restore the stack: remove invalid status or reason */
6140 ret = lua_getfield(L, 2, "body");
6141 if (ret == LUA_TSTRING)
6142 body = lua_tostring(L, -1);
6143 lua_pop(L, 1); /* restore the stack: remove body */
6144 }
6145
6146 /* Create the Reply table */
6147 lua_newtable(L);
6148
6149 /* Add status element */
6150 lua_pushstring(L, "status");
6151 lua_pushinteger(L, status);
6152 lua_settable(L, -3);
6153
6154 /* Add reason element */
6155 reason = http_get_reason(status);
6156 lua_pushstring(L, "reason");
6157 lua_pushstring(L, reason);
6158 lua_settable(L, -3);
6159
6160 /* Add body element, nil if undefined */
6161 lua_pushstring(L, "body");
6162 if (body)
6163 lua_pushstring(L, body);
6164 else
6165 lua_pushnil(L);
6166 lua_settable(L, -3);
6167
6168 /* Add headers element */
6169 lua_pushstring(L, "headers");
6170 lua_newtable(L);
6171
6172 /* stack: [ txn, <Arg:table>, <Reply:table>, "headers", <headers:table> ] */
6173 if (lua_istable(L, 2)) {
6174 /* load headers from the table argument at index 2. If it is a table, copy it. */
6175 ret = lua_getfield(L, 2, "headers");
6176 if (ret == LUA_TTABLE) {
6177 /* stack: [ ... <headers:table>, <table> ] */
6178 lua_pushnil(L);
6179 while (lua_next(L, -2) != 0) {
6180 /* stack: [ ... <headers:table>, <table>, k, v] */
6181 if (!lua_isstring(L, -1) && !lua_istable(L, -1)) {
6182 /* invalid value type, skip it */
6183 lua_pop(L, 1);
6184 continue;
6185 }
6186
6187
6188 /* Duplicate the key and swap it with the value. */
6189 lua_pushvalue(L, -2);
6190 lua_insert(L, -2);
6191 /* stack: [ ... <headers:table>, <table>, k, k, v ] */
6192
6193 lua_newtable(L);
6194 lua_insert(L, -2);
6195 /* stack: [ ... <headers:table>, <table>, k, k, <inner:table>, v ] */
6196
6197 if (lua_isstring(L, -1)) {
6198 /* push the value in the inner table */
6199 lua_rawseti(L, -2, 1);
6200 }
6201 else { /* table */
6202 lua_pushnil(L);
6203 while (lua_next(L, -2) != 0) {
6204 /* stack: [ ... <headers:table>, <table>, k, k, <inner:table>, <v:table>, k2, v2 ] */
6205 if (!lua_isstring(L, -1)) {
6206 /* invalid value type, skip it*/
6207 lua_pop(L, 1);
6208 continue;
6209 }
6210 /* push the value in the inner table */
6211 lua_rawseti(L, -4, lua_rawlen(L, -4) + 1);
6212 /* stack: [ ... <headers:table>, <table>, k, k, <inner:table>, <v:table>, k2 ] */
6213 }
6214 lua_pop(L, 1);
6215 /* stack: [ ... <headers:table>, <table>, k, k, <inner:table> ] */
6216 }
6217
6218 /* push (k,v) on the stack in the headers table:
6219 * stack: [ ... <headers:table>, <table>, k, k, v ]
6220 */
6221 lua_settable(L, -5);
6222 /* stack: [ ... <headers:table>, <table>, k ] */
6223 }
6224 }
6225 lua_pop(L, 1);
6226 }
6227 /* stack: [ txn, <Arg:table>, <Reply:table>, "headers", <headers:table> ] */
6228 lua_settable(L, -3);
6229 /* stack: [ txn, <Arg:table>, <Reply:table> ] */
6230
6231 /* Pop a class sesison metatable and affect it to the userdata. */
6232 lua_rawgeti(L, LUA_REGISTRYINDEX, class_txn_reply_ref);
6233 lua_setmetatable(L, -2);
6234 return 1;
6235}
6236
6237/* Set the reply status code, and optionally the reason. If no reason is
6238 * provided, the default one corresponding to the status code is used.
6239 */
6240__LJMP static int hlua_txn_reply_set_status(lua_State *L)
6241{
6242 int status = MAY_LJMP(luaL_checkinteger(L, 2));
6243 const char *reason = MAY_LJMP(luaL_optlstring(L, 3, NULL, NULL));
6244
6245 /* First argument (self) must be a table */
6246 luaL_checktype(L, 1, LUA_TTABLE);
6247
6248 if (status < 100 || status > 599) {
6249 lua_pushboolean(L, 0);
6250 return 1;
6251 }
6252 if (!reason)
6253 reason = http_get_reason(status);
6254
6255 lua_pushinteger(L, status);
6256 lua_setfield(L, 1, "status");
6257
6258 lua_pushstring(L, reason);
6259 lua_setfield(L, 1, "reason");
6260
6261 lua_pushboolean(L, 1);
6262 return 1;
6263}
6264
6265/* Add a header into the reply object. Each header name is associated to an
6266 * array of values in the "headers" table. If the header name is not found, a
6267 * new entry is created.
6268 */
6269__LJMP static int hlua_txn_reply_add_header(lua_State *L)
6270{
6271 const char *name = MAY_LJMP(luaL_checkstring(L, 2));
6272 const char *value = MAY_LJMP(luaL_checkstring(L, 3));
6273 int ret;
6274
6275 /* First argument (self) must be a table */
6276 luaL_checktype(L, 1, LUA_TTABLE);
6277
6278 /* Push in the stack the "headers" entry. */
6279 ret = lua_getfield(L, 1, "headers");
6280 if (ret != LUA_TTABLE) {
6281 hlua_pusherror(L, "Reply['headers'] is expected to a an array. %s found", lua_typename(L, ret));
6282 WILL_LJMP(lua_error(L));
6283 }
6284
6285 /* check if the header is already registered. If not, register it. */
6286 ret = lua_getfield(L, -1, name);
6287 if (ret == LUA_TNIL) {
6288 /* Entry not found. */
6289 lua_pop(L, 1); /* remove the nil. The "headers" table is the top of the stack. */
6290
6291 /* Insert the new header name in the array in the top of the stack.
6292 * It left the new array in the top of the stack.
6293 */
6294 lua_newtable(L);
6295 lua_pushstring(L, name);
6296 lua_pushvalue(L, -2);
6297 lua_settable(L, -4);
6298 }
6299 else if (ret != LUA_TTABLE) {
6300 hlua_pusherror(L, "Reply['headers']['%s'] is expected to be an array. %s found", name, lua_typename(L, ret));
6301 WILL_LJMP(lua_error(L));
6302 }
6303
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07006304 /* Now the top of thestack is an array of values. We push
Christopher Faulet700d9e82020-01-31 12:21:52 +01006305 * the header value as new entry.
6306 */
6307 lua_pushstring(L, value);
6308 ret = lua_rawlen(L, -2);
6309 lua_rawseti(L, -2, ret + 1);
6310
6311 lua_pushboolean(L, 1);
6312 return 1;
6313}
6314
6315/* Remove all occurrences of a given header name. */
6316__LJMP static int hlua_txn_reply_del_header(lua_State *L)
6317{
6318 const char *name = MAY_LJMP(luaL_checkstring(L, 2));
6319 int ret;
6320
6321 /* First argument (self) must be a table */
6322 luaL_checktype(L, 1, LUA_TTABLE);
6323
6324 /* Push in the stack the "headers" entry. */
6325 ret = lua_getfield(L, 1, "headers");
6326 if (ret != LUA_TTABLE) {
6327 hlua_pusherror(L, "Reply['headers'] is expected to be an array. %s found", lua_typename(L, ret));
6328 WILL_LJMP(lua_error(L));
6329 }
6330
6331 lua_pushstring(L, name);
6332 lua_pushnil(L);
6333 lua_settable(L, -3);
6334
6335 lua_pushboolean(L, 1);
6336 return 1;
6337}
6338
6339/* Set the reply's body. Overwrite any existing entry. */
6340__LJMP static int hlua_txn_reply_set_body(lua_State *L)
6341{
6342 const char *payload = MAY_LJMP(luaL_checkstring(L, 2));
6343
6344 /* First argument (self) must be a table */
6345 luaL_checktype(L, 1, LUA_TTABLE);
6346
6347 lua_pushstring(L, payload);
6348 lua_setfield(L, 1, "body");
6349
6350 lua_pushboolean(L, 1);
6351 return 1;
6352}
6353
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01006354__LJMP static int hlua_log(lua_State *L)
6355{
6356 int level;
6357 const char *msg;
6358
6359 MAY_LJMP(check_args(L, 2, "log"));
6360 level = MAY_LJMP(luaL_checkinteger(L, 1));
6361 msg = MAY_LJMP(luaL_checkstring(L, 2));
6362
6363 if (level < 0 || level >= NB_LOG_LEVELS)
6364 WILL_LJMP(luaL_argerror(L, 1, "Invalid loglevel."));
6365
6366 hlua_sendlog(NULL, level, msg);
6367 return 0;
6368}
6369
6370__LJMP static int hlua_log_debug(lua_State *L)
6371{
6372 const char *msg;
6373
6374 MAY_LJMP(check_args(L, 1, "debug"));
6375 msg = MAY_LJMP(luaL_checkstring(L, 1));
6376 hlua_sendlog(NULL, LOG_DEBUG, msg);
6377 return 0;
6378}
6379
6380__LJMP static int hlua_log_info(lua_State *L)
6381{
6382 const char *msg;
6383
6384 MAY_LJMP(check_args(L, 1, "info"));
6385 msg = MAY_LJMP(luaL_checkstring(L, 1));
6386 hlua_sendlog(NULL, LOG_INFO, msg);
6387 return 0;
6388}
6389
6390__LJMP static int hlua_log_warning(lua_State *L)
6391{
6392 const char *msg;
6393
6394 MAY_LJMP(check_args(L, 1, "warning"));
6395 msg = MAY_LJMP(luaL_checkstring(L, 1));
6396 hlua_sendlog(NULL, LOG_WARNING, msg);
6397 return 0;
6398}
6399
6400__LJMP static int hlua_log_alert(lua_State *L)
6401{
6402 const char *msg;
6403
6404 MAY_LJMP(check_args(L, 1, "alert"));
6405 msg = MAY_LJMP(luaL_checkstring(L, 1));
6406 hlua_sendlog(NULL, LOG_ALERT, msg);
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01006407 return 0;
6408}
6409
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01006410__LJMP static int hlua_sleep_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01006411{
6412 int wakeup_ms = lua_tointeger(L, -1);
Willy Tarreau9cc2e4c2021-09-30 16:12:31 +02006413 if (!tick_is_expired(wakeup_ms, now_ms))
Willy Tarreau9635e032018-10-16 17:52:55 +02006414 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_sleep_yield, wakeup_ms, 0));
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01006415 return 0;
6416}
6417
6418__LJMP static int hlua_sleep(lua_State *L)
6419{
6420 unsigned int delay;
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01006421 unsigned int wakeup_ms;
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01006422
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01006423 MAY_LJMP(check_args(L, 1, "sleep"));
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01006424
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01006425 delay = MAY_LJMP(luaL_checkinteger(L, 1)) * 1000;
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01006426 wakeup_ms = tick_add(now_ms, delay);
6427 lua_pushinteger(L, wakeup_ms);
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01006428
Willy Tarreau9635e032018-10-16 17:52:55 +02006429 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_sleep_yield, wakeup_ms, 0));
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01006430 return 0;
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01006431}
6432
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01006433__LJMP static int hlua_msleep(lua_State *L)
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01006434{
6435 unsigned int delay;
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01006436 unsigned int wakeup_ms;
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01006437
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01006438 MAY_LJMP(check_args(L, 1, "msleep"));
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01006439
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01006440 delay = MAY_LJMP(luaL_checkinteger(L, 1));
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01006441 wakeup_ms = tick_add(now_ms, delay);
6442 lua_pushinteger(L, wakeup_ms);
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01006443
Willy Tarreau9635e032018-10-16 17:52:55 +02006444 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_sleep_yield, wakeup_ms, 0));
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01006445 return 0;
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01006446}
6447
Thierry FOURNIER13416fe2015-02-17 15:01:59 +01006448/* This functionis an LUA binding. it permits to give back
6449 * the hand at the HAProxy scheduler. It is used when the
6450 * LUA processing consumes a lot of time.
6451 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01006452__LJMP static int hlua_yield_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01006453{
6454 return 0;
6455}
6456
Thierry FOURNIER13416fe2015-02-17 15:01:59 +01006457__LJMP static int hlua_yield(lua_State *L)
6458{
Willy Tarreau9635e032018-10-16 17:52:55 +02006459 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_yield_yield, TICK_ETERNITY, HLUA_CTRLYIELD));
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01006460 return 0;
Thierry FOURNIER13416fe2015-02-17 15:01:59 +01006461}
6462
Thierry FOURNIER37196f42015-02-16 19:34:56 +01006463/* This function change the nice of the currently executed
6464 * task. It is used set low or high priority at the current
6465 * task.
6466 */
Willy Tarreau59551662015-03-10 14:23:13 +01006467__LJMP static int hlua_set_nice(lua_State *L)
Thierry FOURNIER37196f42015-02-16 19:34:56 +01006468{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01006469 struct hlua *hlua;
6470 int nice;
Thierry FOURNIER37196f42015-02-16 19:34:56 +01006471
Willy Tarreau80f5fae2015-02-27 16:38:20 +01006472 MAY_LJMP(check_args(L, 1, "set_nice"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01006473 nice = MAY_LJMP(luaL_checkinteger(L, 1));
Thierry FOURNIER37196f42015-02-16 19:34:56 +01006474
Thierry Fournier4234dbd2020-11-28 13:18:23 +01006475 /* Get hlua struct, or NULL if we execute from main lua state */
6476 hlua = hlua_gethlua(L);
6477
6478 /* If the task is not set, I'm in a start mode. */
Thierry FOURNIER37196f42015-02-16 19:34:56 +01006479 if (!hlua || !hlua->task)
6480 return 0;
6481
6482 if (nice < -1024)
6483 nice = -1024;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01006484 else if (nice > 1024)
Thierry FOURNIER37196f42015-02-16 19:34:56 +01006485 nice = 1024;
6486
6487 hlua->task->nice = nice;
6488 return 0;
6489}
6490
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08006491/* This function is used as a callback of a task. It is called by the
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006492 * HAProxy task subsystem when the task is awaked. The LUA runtime can
6493 * return an E_AGAIN signal, the emmiter of this signal must set a
6494 * signal to wake the task.
Thierry FOURNIERbabae282015-09-17 11:36:37 +02006495 *
6496 * Task wrapper are longjmp safe because the only one Lua code
6497 * executed is the safe hlua_ctx_resume();
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006498 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01006499struct task *hlua_process_task(struct task *task, void *context, unsigned int state)
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006500{
Olivier Houchard9f6af332018-05-25 14:04:04 +02006501 struct hlua *hlua = context;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006502 enum hlua_exec status;
6503
Christopher Faulet5bc99722018-04-25 10:34:45 +02006504 if (task->thread_mask == MAX_THREADS_MASK)
6505 task_set_affinity(task, tid_bit);
6506
Thierry FOURNIERbd413492015-03-03 16:52:26 +01006507 /* If it is the first call to the task, we must initialize the
6508 * execution timeouts.
6509 */
6510 if (!HLUA_IS_RUNNING(hlua))
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02006511 hlua->max_time = hlua_timeout_task;
Thierry FOURNIERbd413492015-03-03 16:52:26 +01006512
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006513 /* Execute the Lua code. */
6514 status = hlua_ctx_resume(hlua, 1);
6515
6516 switch (status) {
6517 /* finished or yield */
6518 case HLUA_E_OK:
6519 hlua_ctx_destroy(hlua);
Olivier Houchard3f795f72019-04-17 22:51:06 +02006520 task_destroy(task);
Tim Duesterhuscd235c62018-04-24 13:56:01 +02006521 task = NULL;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006522 break;
6523
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01006524 case HLUA_E_AGAIN: /* co process or timeout wake me later. */
Thierry FOURNIERcb146882017-12-10 17:10:57 +01006525 notification_gc(&hlua->com);
PiBa-NLfe971b32018-05-02 22:27:14 +02006526 task->expire = hlua->wake_time;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006527 break;
6528
6529 /* finished with error. */
6530 case HLUA_E_ERRMSG:
Aurelien DARRAGON6ab7ec92024-03-01 21:17:51 +01006531 hlua_lock(hlua);
Aurelien DARRAGONa3741612024-03-01 15:55:17 +01006532 SEND_ERR(NULL, "Lua task: %s.\n", hlua_tostring_safe(hlua->T, -1));
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006533 hlua_ctx_destroy(hlua);
Olivier Houchard3f795f72019-04-17 22:51:06 +02006534 task_destroy(task);
Emeric Brun253e53e2017-10-17 18:58:40 +02006535 task = NULL;
Aurelien DARRAGON6ab7ec92024-03-01 21:17:51 +01006536 hlua_unlock(hlua);
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006537 break;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006538 case HLUA_E_ERR:
6539 default:
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006540 SEND_ERR(NULL, "Lua task: unknown error.\n");
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006541 hlua_ctx_destroy(hlua);
Olivier Houchard3f795f72019-04-17 22:51:06 +02006542 task_destroy(task);
Emeric Brun253e53e2017-10-17 18:58:40 +02006543 task = NULL;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006544 break;
6545 }
Emeric Brun253e53e2017-10-17 18:58:40 +02006546 return task;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006547}
6548
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01006549/* This function is an LUA binding that register LUA function to be
6550 * executed after the HAProxy configuration parsing and before the
6551 * HAProxy scheduler starts. This function expect only one LUA
6552 * argument that is a function. This function returns nothing, but
6553 * throws if an error is encountered.
6554 */
6555__LJMP static int hlua_register_init(lua_State *L)
6556{
6557 struct hlua_init_function *init;
6558 int ref;
6559
6560 MAY_LJMP(check_args(L, 1, "register_init"));
6561
Aurelien DARRAGON8985ab82023-02-24 09:43:54 +01006562 if (hlua_gethlua(L)) {
6563 /* runtime processing */
6564 WILL_LJMP(luaL_error(L, "register_init: not available outside of body context"));
6565 }
6566
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01006567 ref = MAY_LJMP(hlua_checkfunction(L, 1));
6568
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02006569 init = calloc(1, sizeof(*init));
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01006570 if (!init)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01006571 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01006572
6573 init->function_ref = ref;
Willy Tarreau2b718102021-04-21 07:32:39 +02006574 LIST_APPEND(&hlua_init_functions[hlua_state_id], &init->l);
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01006575 return 0;
6576}
6577
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006578/* This functio is an LUA binding. It permits to register a task
6579 * executed in parallel of the main HAroxy activity. The task is
6580 * created and it is set in the HAProxy scheduler. It can be called
6581 * from the "init" section, "post init" or during the runtime.
6582 *
6583 * Lua prototype:
6584 *
6585 * <none> core.register_task(<function>)
6586 */
6587static int hlua_register_task(lua_State *L)
6588{
Christopher Faulet5294ec02021-04-12 12:24:47 +02006589 struct hlua *hlua = NULL;
6590 struct task *task = NULL;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006591 int ref;
Thierry Fournier021d9862020-11-28 23:42:03 +01006592 int state_id;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006593
6594 MAY_LJMP(check_args(L, 1, "register_task"));
6595
6596 ref = MAY_LJMP(hlua_checkfunction(L, 1));
6597
Thierry Fournier75fc0292020-11-28 13:18:56 +01006598 /* Get the reference state. If the reference is NULL, L is the master
6599 * state, otherwise hlua->T is.
6600 */
6601 hlua = hlua_gethlua(L);
6602 if (hlua)
Thierry Fournier021d9862020-11-28 23:42:03 +01006603 /* we are in runtime processing */
6604 state_id = hlua->state_id;
Thierry Fournier75fc0292020-11-28 13:18:56 +01006605 else
Thierry Fournier021d9862020-11-28 23:42:03 +01006606 /* we are in initialization mode */
Thierry Fournierc7492592020-11-28 23:57:24 +01006607 state_id = hlua_state_id;
Thierry Fournier75fc0292020-11-28 13:18:56 +01006608
Willy Tarreaubafbe012017-11-24 17:34:44 +01006609 hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006610 if (!hlua)
Christopher Faulet5294ec02021-04-12 12:24:47 +02006611 goto alloc_error;
Christopher Faulet1e8433f2021-03-24 15:03:01 +01006612 HLUA_INIT(hlua);
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006613
Thierry Fournier59f11be2020-11-29 00:37:41 +01006614 /* We are in the common lua state, execute the task anywhere,
6615 * otherwise, inherit the current thread identifier
6616 */
6617 if (state_id == 0)
6618 task = task_new(MAX_THREADS_MASK);
6619 else
6620 task = task_new(tid_bit);
Willy Tarreaue09101e2018-10-16 17:37:12 +02006621 if (!task)
Christopher Faulet5294ec02021-04-12 12:24:47 +02006622 goto alloc_error;
Willy Tarreaue09101e2018-10-16 17:37:12 +02006623
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006624 task->context = hlua;
6625 task->process = hlua_process_task;
6626
Aurelien DARRAGON5483bde2023-03-21 14:02:16 +01006627 if (!hlua_ctx_init(hlua, state_id, task))
Christopher Faulet5294ec02021-04-12 12:24:47 +02006628 goto alloc_error;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006629
6630 /* Restore the function in the stack. */
6631 lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, ref);
Aurelien DARRAGONb6aade32023-03-13 14:09:21 +01006632 /* function ref not needed anymore since it was pushed to the substack */
6633 hlua_unref(L, ref);
6634
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006635 hlua->nargs = 0;
6636
6637 /* Schedule task. */
Willy Tarreau790810f2021-09-30 16:17:37 +02006638 task_wakeup(task, TASK_WOKEN_INIT);
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006639
6640 return 0;
Christopher Faulet5294ec02021-04-12 12:24:47 +02006641
6642 alloc_error:
6643 task_destroy(task);
6644 hlua_ctx_destroy(hlua);
6645 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
6646 return 0; /* Never reached */
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006647}
6648
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006649/* Wrapper called by HAProxy to execute an LUA converter. This wrapper
6650 * doesn't allow "yield" functions because the HAProxy engine cannot
6651 * resume converters.
6652 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02006653static int hlua_sample_conv_wrapper(const struct arg *arg_p, struct sample *smp, void *private)
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006654{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02006655 struct hlua_function *fcn = private;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02006656 struct stream *stream = smp->strm;
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006657 struct hlua *hlua = NULL;
Thierry Fournierfd107a22016-02-19 19:57:23 +01006658 const char *error;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006659
Willy Tarreaube508f12016-03-10 11:47:01 +01006660 if (!stream)
6661 return 0;
6662
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006663 if (!(hlua = hlua_stream_ctx_prepare(stream, fcn_ref_to_stack_id(fcn)))) {
Aurelien DARRAGON4a7a5d82023-08-09 14:56:19 +02006664 SEND_ERR(stream->be, "Lua converter '%s': can't initialize Lua context.\n", fcn->name);
6665 return 0;
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01006666 }
6667
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006668 /* If it is the first run, initialize the data for the call. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006669 if (!HLUA_IS_RUNNING(hlua)) {
Thierry FOURNIERbabae282015-09-17 11:36:37 +02006670
6671 /* The following Lua calls can fail. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006672 if (!SET_SAFE_LJMP(hlua)) {
6673 hlua_lock(hlua);
6674 if (lua_type(hlua->T, -1) == LUA_TSTRING)
6675 error = hlua_tostring_safe(hlua->T, -1);
Thierry Fournierfd107a22016-02-19 19:57:23 +01006676 else
6677 error = "critical error";
6678 SEND_ERR(stream->be, "Lua converter '%s': %s.\n", fcn->name, error);
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006679 hlua_unlock(hlua);
Thierry FOURNIERbabae282015-09-17 11:36:37 +02006680 return 0;
6681 }
6682
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006683 /* Check stack available size. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006684 if (!lua_checkstack(hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006685 SEND_ERR(stream->be, "Lua converter '%s': full stack.\n", fcn->name);
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006686 RESET_SAFE_LJMP(hlua);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006687 return 0;
6688 }
6689
6690 /* Restore the function in the stack. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006691 lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, fcn->function_ref[hlua->state_id]);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006692
6693 /* convert input sample and pust-it in the stack. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006694 if (!lua_checkstack(hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006695 SEND_ERR(stream->be, "Lua converter '%s': full stack.\n", fcn->name);
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006696 RESET_SAFE_LJMP(hlua);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006697 return 0;
6698 }
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006699 hlua_smp2lua(hlua->T, smp);
6700 hlua->nargs = 1;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006701
6702 /* push keywords in the stack. */
6703 if (arg_p) {
6704 for (; arg_p->type != ARGT_STOP; arg_p++) {
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006705 if (!lua_checkstack(hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006706 SEND_ERR(stream->be, "Lua converter '%s': full stack.\n", fcn->name);
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006707 RESET_SAFE_LJMP(hlua);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006708 return 0;
6709 }
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006710 hlua_arg2lua(hlua->T, arg_p);
6711 hlua->nargs++;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006712 }
6713 }
6714
Thierry FOURNIERbd413492015-03-03 16:52:26 +01006715 /* We must initialize the execution timeouts. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006716 hlua->max_time = hlua_timeout_session;
Thierry FOURNIERbd413492015-03-03 16:52:26 +01006717
Thierry FOURNIERbabae282015-09-17 11:36:37 +02006718 /* At this point the execution is safe. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006719 RESET_SAFE_LJMP(hlua);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006720 }
6721
6722 /* Execute the function. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006723 switch (hlua_ctx_resume(hlua, 0)) {
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006724 /* finished. */
6725 case HLUA_E_OK:
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006726 hlua_lock(hlua);
Thierry FOURNIERfd80df12017-05-12 16:32:20 +02006727 /* If the stack is empty, the function fails. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006728 if (lua_gettop(hlua->T) <= 0) {
6729 hlua_unlock(hlua);
Thierry FOURNIERfd80df12017-05-12 16:32:20 +02006730 return 0;
Aurelien DARRAGON6ab7ec92024-03-01 21:17:51 +01006731 }
Thierry FOURNIERfd80df12017-05-12 16:32:20 +02006732
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006733 /* Convert the returned value in sample. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006734 hlua_lua2smp(hlua->T, -1, smp);
Aurelien DARRAGONd39fb742023-05-17 16:06:11 +02006735 /* dup the smp before popping the related lua value and
6736 * returning it to haproxy
6737 */
6738 smp_dup(smp);
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006739 lua_pop(hlua->T, 1);
6740 hlua_unlock(hlua);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006741 return 1;
6742
6743 /* yield. */
6744 case HLUA_E_AGAIN:
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006745 SEND_ERR(stream->be, "Lua converter '%s': cannot use yielded functions.\n", fcn->name);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006746 return 0;
6747
6748 /* finished with error. */
6749 case HLUA_E_ERRMSG:
6750 /* Display log. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006751 hlua_lock(hlua);
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006752 SEND_ERR(stream->be, "Lua converter '%s': %s.\n",
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006753 fcn->name, hlua_tostring_safe(hlua->T, -1));
6754 lua_pop(hlua->T, 1);
6755 hlua_unlock(hlua);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006756 return 0;
6757
Thierry Fournierd5b073c2018-05-21 19:42:47 +02006758 case HLUA_E_ETMOUT:
6759 SEND_ERR(stream->be, "Lua converter '%s': execution timeout.\n", fcn->name);
6760 return 0;
6761
6762 case HLUA_E_NOMEM:
6763 SEND_ERR(stream->be, "Lua converter '%s': out of memory error.\n", fcn->name);
6764 return 0;
6765
6766 case HLUA_E_YIELD:
6767 SEND_ERR(stream->be, "Lua converter '%s': yield functions like core.tcp() or core.sleep() are not allowed.\n", fcn->name);
6768 return 0;
6769
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006770 case HLUA_E_ERR:
6771 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006772 SEND_ERR(stream->be, "Lua converter '%s' returns an unknown error.\n", fcn->name);
Tim Duesterhus588b3142020-05-29 14:35:51 +02006773 /* fall through */
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006774
6775 default:
6776 return 0;
6777 }
6778}
6779
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006780/* Wrapper called by HAProxy to execute a sample-fetch. this wrapper
6781 * doesn't allow "yield" functions because the HAProxy engine cannot
Willy Tarreaube508f12016-03-10 11:47:01 +01006782 * resume sample-fetches. This function will be called by the sample
6783 * fetch engine to call lua-based fetch operations.
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006784 */
Thierry FOURNIER0786d052015-05-11 15:42:45 +02006785static int hlua_sample_fetch_wrapper(const struct arg *arg_p, struct sample *smp,
6786 const char *kw, void *private)
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006787{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02006788 struct hlua_function *fcn = private;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02006789 struct stream *stream = smp->strm;
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006790 struct hlua *hlua = NULL;
Thierry Fournierfd107a22016-02-19 19:57:23 +01006791 const char *error;
Christopher Fauletbfab2dd2019-07-26 15:09:53 +02006792 unsigned int hflags = HLUA_TXN_NOTERM;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006793
Willy Tarreaube508f12016-03-10 11:47:01 +01006794 if (!stream)
6795 return 0;
Christopher Fauletafd8f102018-11-08 11:34:21 +01006796
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006797 if (!(hlua = hlua_stream_ctx_prepare(stream, fcn_ref_to_stack_id(fcn)))) {
Aurelien DARRAGON4a7a5d82023-08-09 14:56:19 +02006798 SEND_ERR(stream->be, "Lua sample-fetch '%s': can't initialize Lua context.\n", fcn->name);
6799 return 0;
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01006800 }
6801
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006802 /* If it is the first run, initialize the data for the call. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006803 if (!HLUA_IS_RUNNING(hlua)) {
Thierry FOURNIERbabae282015-09-17 11:36:37 +02006804
6805 /* The following Lua calls can fail. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006806 if (!SET_SAFE_LJMP(hlua)) {
6807 hlua_lock(hlua);
6808 if (lua_type(hlua->T, -1) == LUA_TSTRING)
6809 error = hlua_tostring_safe(hlua->T, -1);
Thierry Fournierfd107a22016-02-19 19:57:23 +01006810 else
6811 error = "critical error";
6812 SEND_ERR(smp->px, "Lua sample-fetch '%s': %s.\n", fcn->name, error);
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006813 hlua_unlock(hlua);
Thierry FOURNIERbabae282015-09-17 11:36:37 +02006814 return 0;
6815 }
6816
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006817 /* Check stack available size. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006818 if (!lua_checkstack(hlua->T, 2)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006819 SEND_ERR(smp->px, "Lua sample-fetch '%s': full stack.\n", fcn->name);
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006820 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006821 return 0;
6822 }
6823
6824 /* Restore the function in the stack. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006825 lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, fcn->function_ref[hlua->state_id]);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006826
6827 /* push arguments in the stack. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006828 if (!hlua_txn_new(hlua->T, stream, smp->px, smp->opt & SMP_OPT_DIR, hflags)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006829 SEND_ERR(smp->px, "Lua sample-fetch '%s': full stack.\n", fcn->name);
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006830 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006831 return 0;
6832 }
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006833 hlua->nargs = 1;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006834
6835 /* push keywords in the stack. */
6836 for (; arg_p && arg_p->type != ARGT_STOP; arg_p++) {
6837 /* Check stack available size. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006838 if (!lua_checkstack(hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006839 SEND_ERR(smp->px, "Lua sample-fetch '%s': full stack.\n", fcn->name);
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006840 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006841 return 0;
6842 }
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006843 hlua_arg2lua(hlua->T, arg_p);
6844 hlua->nargs++;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006845 }
6846
Thierry FOURNIERbd413492015-03-03 16:52:26 +01006847 /* We must initialize the execution timeouts. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006848 hlua->max_time = hlua_timeout_session;
Thierry FOURNIERbd413492015-03-03 16:52:26 +01006849
Thierry FOURNIERbabae282015-09-17 11:36:37 +02006850 /* At this point the execution is safe. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006851 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006852 }
6853
6854 /* Execute the function. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006855 switch (hlua_ctx_resume(hlua, 0)) {
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006856 /* finished. */
6857 case HLUA_E_OK:
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006858 hlua_lock(hlua);
Thierry FOURNIERfd80df12017-05-12 16:32:20 +02006859 /* If the stack is empty, the function fails. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006860 if (lua_gettop(hlua->T) <= 0) {
6861 hlua_unlock(hlua);
Thierry FOURNIERfd80df12017-05-12 16:32:20 +02006862 return 0;
Aurelien DARRAGON6ab7ec92024-03-01 21:17:51 +01006863 }
Thierry FOURNIERfd80df12017-05-12 16:32:20 +02006864
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006865 /* Convert the returned value in sample. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006866 hlua_lua2smp(hlua->T, -1, smp);
Aurelien DARRAGONd39fb742023-05-17 16:06:11 +02006867 /* dup the smp before popping the related lua value and
6868 * returning it to haproxy
6869 */
6870 smp_dup(smp);
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006871 lua_pop(hlua->T, 1);
6872 hlua_unlock(hlua);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006873
6874 /* Set the end of execution flag. */
6875 smp->flags &= ~SMP_F_MAY_CHANGE;
6876 return 1;
6877
6878 /* yield. */
6879 case HLUA_E_AGAIN:
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006880 SEND_ERR(smp->px, "Lua sample-fetch '%s': cannot use yielded functions.\n", fcn->name);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006881 return 0;
6882
6883 /* finished with error. */
6884 case HLUA_E_ERRMSG:
6885 /* Display log. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006886 hlua_lock(hlua);
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006887 SEND_ERR(smp->px, "Lua sample-fetch '%s': %s.\n",
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01006888 fcn->name, hlua_tostring_safe(hlua->T, -1));
6889 lua_pop(hlua->T, 1);
6890 hlua_unlock(hlua);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006891 return 0;
6892
Thierry Fournierd5b073c2018-05-21 19:42:47 +02006893 case HLUA_E_ETMOUT:
Thierry Fournierd5b073c2018-05-21 19:42:47 +02006894 SEND_ERR(smp->px, "Lua sample-fetch '%s': execution timeout.\n", fcn->name);
6895 return 0;
6896
6897 case HLUA_E_NOMEM:
Thierry Fournierd5b073c2018-05-21 19:42:47 +02006898 SEND_ERR(smp->px, "Lua sample-fetch '%s': out of memory error.\n", fcn->name);
6899 return 0;
6900
6901 case HLUA_E_YIELD:
Thierry Fournierd5b073c2018-05-21 19:42:47 +02006902 SEND_ERR(smp->px, "Lua sample-fetch '%s': yield not allowed.\n", fcn->name);
6903 return 0;
6904
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006905 case HLUA_E_ERR:
6906 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006907 SEND_ERR(smp->px, "Lua sample-fetch '%s' returns an unknown error.\n", fcn->name);
Tim Duesterhus588b3142020-05-29 14:35:51 +02006908 /* fall through */
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006909
6910 default:
6911 return 0;
6912 }
6913}
6914
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006915/* This function is an LUA binding used for registering
6916 * "sample-conv" functions. It expects a converter name used
6917 * in the haproxy configuration file, and an LUA function.
6918 */
6919__LJMP static int hlua_register_converters(lua_State *L)
6920{
6921 struct sample_conv_kw_list *sck;
6922 const char *name;
6923 int ref;
6924 int len;
Christopher Fauletaa224302021-04-12 14:08:21 +02006925 struct hlua_function *fcn = NULL;
Thierry Fournierf67442e2020-11-28 20:41:07 +01006926 struct sample_conv *sc;
6927 struct buffer *trash;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006928
6929 MAY_LJMP(check_args(L, 2, "register_converters"));
6930
Aurelien DARRAGON8985ab82023-02-24 09:43:54 +01006931 if (hlua_gethlua(L)) {
6932 /* runtime processing */
6933 WILL_LJMP(luaL_error(L, "register_converters: not available outside of body context"));
6934 }
6935
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006936 /* First argument : converter name. */
6937 name = MAY_LJMP(luaL_checkstring(L, 1));
6938
6939 /* Second argument : lua function. */
6940 ref = MAY_LJMP(hlua_checkfunction(L, 2));
6941
Thierry Fournierf67442e2020-11-28 20:41:07 +01006942 /* Check if the converter is already registered */
6943 trash = get_trash_chunk();
6944 chunk_printf(trash, "lua.%s", name);
6945 sc = find_sample_conv(trash->area, trash->data);
6946 if (sc != NULL) {
Thierry Fournier59f11be2020-11-29 00:37:41 +01006947 fcn = sc->private;
6948 if (fcn->function_ref[hlua_state_id] != -1) {
6949 ha_warning("Trying to register converter 'lua.%s' more than once. "
6950 "This will become a hard error in version 2.5.\n", name);
6951 }
6952 fcn->function_ref[hlua_state_id] = ref;
6953 return 0;
Thierry Fournierf67442e2020-11-28 20:41:07 +01006954 }
6955
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006956 /* Allocate and fill the sample fetch keyword struct. */
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02006957 sck = calloc(1, sizeof(*sck) + sizeof(struct sample_conv) * 2);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006958 if (!sck)
Christopher Fauletaa224302021-04-12 14:08:21 +02006959 goto alloc_error;
Thierry Fournier62a22aa2020-11-28 21:06:35 +01006960 fcn = new_hlua_function();
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006961 if (!fcn)
Christopher Fauletaa224302021-04-12 14:08:21 +02006962 goto alloc_error;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006963
6964 /* Fill fcn. */
6965 fcn->name = strdup(name);
6966 if (!fcn->name)
Christopher Fauletaa224302021-04-12 14:08:21 +02006967 goto alloc_error;
Thierry Fournierc7492592020-11-28 23:57:24 +01006968 fcn->function_ref[hlua_state_id] = ref;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006969
6970 /* List head */
6971 sck->list.n = sck->list.p = NULL;
6972
6973 /* converter keyword. */
6974 len = strlen("lua.") + strlen(name) + 1;
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02006975 sck->kw[0].kw = calloc(1, len);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006976 if (!sck->kw[0].kw)
Christopher Fauletaa224302021-04-12 14:08:21 +02006977 goto alloc_error;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006978
6979 snprintf((char *)sck->kw[0].kw, len, "lua.%s", name);
6980 sck->kw[0].process = hlua_sample_conv_wrapper;
David Carlier0c437f42016-04-27 16:21:56 +01006981 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 +01006982 sck->kw[0].val_args = NULL;
6983 sck->kw[0].in_type = SMP_T_STR;
6984 sck->kw[0].out_type = SMP_T_STR;
6985 sck->kw[0].private = fcn;
6986
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006987 /* Register this new converter */
6988 sample_register_convs(sck);
6989
6990 return 0;
Christopher Fauletaa224302021-04-12 14:08:21 +02006991
6992 alloc_error:
6993 release_hlua_function(fcn);
6994 ha_free(&sck);
6995 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
6996 return 0; /* Never reached */
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006997}
6998
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08006999/* This function is an LUA binding used for registering
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01007000 * "sample-fetch" functions. It expects a converter name used
7001 * in the haproxy configuration file, and an LUA function.
7002 */
7003__LJMP static int hlua_register_fetches(lua_State *L)
7004{
7005 const char *name;
7006 int ref;
7007 int len;
7008 struct sample_fetch_kw_list *sfk;
Christopher Faulet2567f182021-04-12 14:11:50 +02007009 struct hlua_function *fcn = NULL;
Thierry Fournierf67442e2020-11-28 20:41:07 +01007010 struct sample_fetch *sf;
7011 struct buffer *trash;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01007012
7013 MAY_LJMP(check_args(L, 2, "register_fetches"));
7014
Aurelien DARRAGON8985ab82023-02-24 09:43:54 +01007015 if (hlua_gethlua(L)) {
7016 /* runtime processing */
7017 WILL_LJMP(luaL_error(L, "register_fetches: not available outside of body context"));
7018 }
7019
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01007020 /* First argument : sample-fetch name. */
7021 name = MAY_LJMP(luaL_checkstring(L, 1));
7022
7023 /* Second argument : lua function. */
7024 ref = MAY_LJMP(hlua_checkfunction(L, 2));
7025
Thierry Fournierf67442e2020-11-28 20:41:07 +01007026 /* Check if the sample-fetch is already registered */
7027 trash = get_trash_chunk();
7028 chunk_printf(trash, "lua.%s", name);
7029 sf = find_sample_fetch(trash->area, trash->data);
7030 if (sf != NULL) {
Thierry Fournier59f11be2020-11-29 00:37:41 +01007031 fcn = sf->private;
7032 if (fcn->function_ref[hlua_state_id] != -1) {
7033 ha_warning("Trying to register sample-fetch 'lua.%s' more than once. "
7034 "This will become a hard error in version 2.5.\n", name);
7035 }
7036 fcn->function_ref[hlua_state_id] = ref;
7037 return 0;
Thierry Fournierf67442e2020-11-28 20:41:07 +01007038 }
7039
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01007040 /* Allocate and fill the sample fetch keyword struct. */
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02007041 sfk = calloc(1, sizeof(*sfk) + sizeof(struct sample_fetch) * 2);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01007042 if (!sfk)
Christopher Faulet2567f182021-04-12 14:11:50 +02007043 goto alloc_error;
Thierry Fournier62a22aa2020-11-28 21:06:35 +01007044 fcn = new_hlua_function();
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01007045 if (!fcn)
Christopher Faulet2567f182021-04-12 14:11:50 +02007046 goto alloc_error;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01007047
7048 /* Fill fcn. */
7049 fcn->name = strdup(name);
7050 if (!fcn->name)
Christopher Faulet2567f182021-04-12 14:11:50 +02007051 goto alloc_error;
Thierry Fournierc7492592020-11-28 23:57:24 +01007052 fcn->function_ref[hlua_state_id] = ref;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01007053
7054 /* List head */
7055 sfk->list.n = sfk->list.p = NULL;
7056
7057 /* sample-fetch keyword. */
7058 len = strlen("lua.") + strlen(name) + 1;
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02007059 sfk->kw[0].kw = calloc(1, len);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01007060 if (!sfk->kw[0].kw)
Christopher Faulet2567f182021-04-12 14:11:50 +02007061 goto alloc_error;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01007062
7063 snprintf((char *)sfk->kw[0].kw, len, "lua.%s", name);
7064 sfk->kw[0].process = hlua_sample_fetch_wrapper;
David Carlier0c437f42016-04-27 16:21:56 +01007065 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 +01007066 sfk->kw[0].val_args = NULL;
7067 sfk->kw[0].out_type = SMP_T_STR;
7068 sfk->kw[0].use = SMP_USE_HTTP_ANY;
7069 sfk->kw[0].val = 0;
7070 sfk->kw[0].private = fcn;
7071
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01007072 /* Register this new fetch. */
7073 sample_register_fetches(sfk);
7074
7075 return 0;
Christopher Faulet2567f182021-04-12 14:11:50 +02007076
7077 alloc_error:
7078 release_hlua_function(fcn);
7079 ha_free(&sfk);
7080 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
7081 return 0; /* Never reached */
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01007082}
7083
Christopher Faulet501465d2020-02-26 14:54:16 +01007084/* This function is a lua binding to set the wake_time.
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01007085 */
Christopher Faulet501465d2020-02-26 14:54:16 +01007086__LJMP static int hlua_set_wake_time(lua_State *L)
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01007087{
Thierry Fournier4234dbd2020-11-28 13:18:23 +01007088 struct hlua *hlua;
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01007089 unsigned int delay;
7090 unsigned int wakeup_ms;
7091
Thierry Fournier4234dbd2020-11-28 13:18:23 +01007092 /* Get hlua struct, or NULL if we execute from main lua state */
7093 hlua = hlua_gethlua(L);
7094 if (!hlua) {
7095 return 0;
7096 }
7097
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01007098 MAY_LJMP(check_args(L, 1, "wake_time"));
7099
7100 delay = MAY_LJMP(luaL_checkinteger(L, 1));
7101 wakeup_ms = tick_add(now_ms, delay);
7102 hlua->wake_time = wakeup_ms;
7103 return 0;
7104}
7105
Christopher Faulet7716cdf2020-01-29 11:53:30 +01007106/* This function is a wrapper to execute each LUA function declared as an action
7107 * wrapper during the initialisation period. This function may return any
7108 * ACT_RET_* value. On error ACT_RET_CONT is returned and the action is
7109 * ignored. If the lua action yields, ACT_RET_YIELD is returned. On success, the
7110 * return value is the first element on the stack.
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007111 */
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007112static enum act_return hlua_action(struct act_rule *rule, struct proxy *px,
Willy Tarreau658b85b2015-09-27 10:00:49 +02007113 struct session *sess, struct stream *s, int flags)
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007114{
7115 char **arg;
Christopher Fauletbfab2dd2019-07-26 15:09:53 +02007116 unsigned int hflags = 0;
Christopher Faulet7716cdf2020-01-29 11:53:30 +01007117 int dir, act_ret = ACT_RET_CONT;
Thierry Fournierfd107a22016-02-19 19:57:23 +01007118 const char *error;
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01007119 struct hlua *hlua = NULL;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007120
7121 switch (rule->from) {
Christopher Fauletd8f0e072020-02-25 09:45:51 +01007122 case ACT_F_TCP_REQ_CNT: dir = SMP_OPT_DIR_REQ; break;
7123 case ACT_F_TCP_RES_CNT: dir = SMP_OPT_DIR_RES; break;
7124 case ACT_F_HTTP_REQ: dir = SMP_OPT_DIR_REQ; break;
7125 case ACT_F_HTTP_RES: dir = SMP_OPT_DIR_RES; break;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007126 default:
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02007127 SEND_ERR(px, "Lua: internal error while execute action.\n");
Christopher Faulet7716cdf2020-01-29 11:53:30 +01007128 goto end;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007129 }
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007130
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01007131 if (!(hlua = hlua_stream_ctx_prepare(s, fcn_ref_to_stack_id(rule->arg.hlua_rule->fcn)))) {
Aurelien DARRAGON4a7a5d82023-08-09 14:56:19 +02007132 SEND_ERR(px, "Lua action '%s': can't initialize Lua context.\n",
7133 rule->arg.hlua_rule->fcn->name);
7134 goto end;
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01007135 }
7136
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007137 /* If it is the first run, initialize the data for the call. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01007138 if (!HLUA_IS_RUNNING(hlua)) {
Thierry FOURNIERbabae282015-09-17 11:36:37 +02007139
7140 /* The following Lua calls can fail. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01007141 if (!SET_SAFE_LJMP(hlua)) {
7142 hlua_lock(hlua);
7143 if (lua_type(hlua->T, -1) == LUA_TSTRING)
7144 error = hlua_tostring_safe(hlua->T, -1);
Thierry Fournierfd107a22016-02-19 19:57:23 +01007145 else
7146 error = "critical error";
7147 SEND_ERR(px, "Lua function '%s': %s.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007148 rule->arg.hlua_rule->fcn->name, error);
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01007149 hlua_unlock(hlua);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01007150 goto end;
Thierry FOURNIERbabae282015-09-17 11:36:37 +02007151 }
7152
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007153 /* Check stack available size. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01007154 if (!lua_checkstack(hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02007155 SEND_ERR(px, "Lua function '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007156 rule->arg.hlua_rule->fcn->name);
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01007157 RESET_SAFE_LJMP(hlua);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01007158 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007159 }
7160
7161 /* Restore the function in the stack. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01007162 lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, rule->arg.hlua_rule->fcn->function_ref[hlua->state_id]);
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007163
Willy Tarreau87b09662015-04-03 00:22:06 +02007164 /* Create and and push object stream in the stack. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01007165 if (!hlua_txn_new(hlua->T, s, px, dir, hflags)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02007166 SEND_ERR(px, "Lua function '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007167 rule->arg.hlua_rule->fcn->name);
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01007168 RESET_SAFE_LJMP(hlua);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01007169 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007170 }
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01007171 hlua->nargs = 1;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007172
7173 /* push keywords in the stack. */
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007174 for (arg = rule->arg.hlua_rule->args; arg && *arg; arg++) {
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01007175 if (!lua_checkstack(hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02007176 SEND_ERR(px, "Lua function '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007177 rule->arg.hlua_rule->fcn->name);
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01007178 RESET_SAFE_LJMP(hlua);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01007179 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007180 }
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01007181 lua_pushstring(hlua->T, *arg);
7182 hlua->nargs++;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007183 }
7184
Thierry FOURNIERbabae282015-09-17 11:36:37 +02007185 /* Now the execution is safe. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01007186 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERbabae282015-09-17 11:36:37 +02007187
Thierry FOURNIERbd413492015-03-03 16:52:26 +01007188 /* We must initialize the execution timeouts. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01007189 hlua->max_time = hlua_timeout_session;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007190 }
7191
7192 /* Execute the function. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01007193 switch (hlua_ctx_resume(hlua, !(flags & ACT_OPT_FINAL))) {
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007194 /* finished. */
7195 case HLUA_E_OK:
Christopher Faulet7716cdf2020-01-29 11:53:30 +01007196 /* Catch the return value */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01007197 hlua_lock(hlua);
7198 if (lua_gettop(hlua->T) > 0)
7199 act_ret = lua_tointeger(hlua->T, -1);
7200 hlua_unlock(hlua);
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007201
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01007202 /* Set timeout in the required channel. */
Christopher Faulet498c4832020-07-28 11:59:58 +02007203 if (act_ret == ACT_RET_YIELD) {
7204 if (flags & ACT_OPT_FINAL)
7205 goto err_yield;
7206
Christopher Faulet8f587ea2020-07-28 12:01:55 +02007207 if (dir == SMP_OPT_DIR_REQ)
7208 s->req.analyse_exp = tick_first((tick_is_expired(s->req.analyse_exp, now_ms) ? 0 : s->req.analyse_exp),
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01007209 hlua->wake_time);
Christopher Faulet8f587ea2020-07-28 12:01:55 +02007210 else
7211 s->res.analyse_exp = tick_first((tick_is_expired(s->res.analyse_exp, now_ms) ? 0 : s->res.analyse_exp),
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01007212 hlua->wake_time);
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01007213 }
7214 goto end;
7215
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007216 /* yield. */
7217 case HLUA_E_AGAIN:
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01007218 /* Set timeout in the required channel. */
Christopher Faulet8f587ea2020-07-28 12:01:55 +02007219 if (dir == SMP_OPT_DIR_REQ)
7220 s->req.analyse_exp = tick_first((tick_is_expired(s->req.analyse_exp, now_ms) ? 0 : s->req.analyse_exp),
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01007221 hlua->wake_time);
Christopher Faulet8f587ea2020-07-28 12:01:55 +02007222 else
7223 s->res.analyse_exp = tick_first((tick_is_expired(s->res.analyse_exp, now_ms) ? 0 : s->res.analyse_exp),
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01007224 hlua->wake_time);
Christopher Faulet8f587ea2020-07-28 12:01:55 +02007225
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007226 /* Some actions can be wake up when a "write" event
7227 * is detected on a response channel. This is useful
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08007228 * only for actions targeted on the requests.
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007229 */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01007230 if (HLUA_IS_WAKERESWR(hlua))
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01007231 s->res.flags |= CF_WAKE_WRITE;
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01007232 if (HLUA_IS_WAKEREQWR(hlua))
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01007233 s->req.flags |= CF_WAKE_WRITE;
Christopher Faulet7716cdf2020-01-29 11:53:30 +01007234 act_ret = ACT_RET_YIELD;
7235 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007236
7237 /* finished with error. */
7238 case HLUA_E_ERRMSG:
7239 /* Display log. */
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01007240 hlua_lock(hlua);
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02007241 SEND_ERR(px, "Lua function '%s': %s.\n",
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01007242 rule->arg.hlua_rule->fcn->name, hlua_tostring_safe(hlua->T, -1));
7243 lua_pop(hlua->T, 1);
7244 hlua_unlock(hlua);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01007245 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007246
Thierry Fournierd5b073c2018-05-21 19:42:47 +02007247 case HLUA_E_ETMOUT:
Thierry Fournierad5345f2020-11-29 02:05:57 +01007248 SEND_ERR(px, "Lua function '%s': execution timeout.\n", rule->arg.hlua_rule->fcn->name);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01007249 goto end;
Thierry Fournierd5b073c2018-05-21 19:42:47 +02007250
7251 case HLUA_E_NOMEM:
Thierry Fournierad5345f2020-11-29 02:05:57 +01007252 SEND_ERR(px, "Lua function '%s': out of memory error.\n", rule->arg.hlua_rule->fcn->name);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01007253 goto end;
Thierry Fournierd5b073c2018-05-21 19:42:47 +02007254
7255 case HLUA_E_YIELD:
Christopher Faulet498c4832020-07-28 11:59:58 +02007256 err_yield:
7257 act_ret = ACT_RET_CONT;
Aurelien DARRAGON602c4af2023-08-31 21:45:21 +02007258 SEND_ERR(px, "Lua function '%s': yield not allowed.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007259 rule->arg.hlua_rule->fcn->name);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01007260 goto end;
Thierry Fournierd5b073c2018-05-21 19:42:47 +02007261
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007262 case HLUA_E_ERR:
7263 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02007264 SEND_ERR(px, "Lua function '%s' return an unknown error.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007265 rule->arg.hlua_rule->fcn->name);
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007266
7267 default:
Christopher Faulet7716cdf2020-01-29 11:53:30 +01007268 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007269 }
Christopher Faulet7716cdf2020-01-29 11:53:30 +01007270
7271 end:
Aurelien DARRAGONd5911352024-03-12 17:00:25 +01007272 if (act_ret != ACT_RET_YIELD && hlua)
7273 hlua->wake_time = TICK_ETERNITY;
Christopher Faulet7716cdf2020-01-29 11:53:30 +01007274 return act_ret;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007275}
7276
Willy Tarreau144f84a2021-03-02 16:09:26 +01007277struct task *hlua_applet_wakeup(struct task *t, void *context, unsigned int state)
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007278{
Olivier Houchard9f6af332018-05-25 14:04:04 +02007279 struct appctx *ctx = context;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007280
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007281 appctx_wakeup(ctx);
Willy Tarreaud9587412017-08-23 16:07:33 +02007282 t->expire = TICK_ETERNITY;
Willy Tarreaud1aa41f2017-07-21 16:41:56 +02007283 return t;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007284}
7285
7286static int hlua_applet_tcp_init(struct appctx *ctx, struct proxy *px, struct stream *strm)
7287{
7288 struct stream_interface *si = ctx->owner;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007289 struct hlua *hlua;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007290 struct task *task;
7291 char **arg;
Thierry Fournierfd107a22016-02-19 19:57:23 +01007292 const char *error;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007293
Willy Tarreaubafbe012017-11-24 17:34:44 +01007294 hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007295 if (!hlua) {
7296 SEND_ERR(px, "Lua applet tcp '%s': out of memory.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007297 ctx->rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007298 return 0;
7299 }
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007300 HLUA_INIT(hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007301 ctx->ctx.hlua_apptcp.hlua = hlua;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007302 ctx->ctx.hlua_apptcp.flags = 0;
7303
7304 /* Create task used by signal to wakeup applets. */
Willy Tarreau5f4a47b2017-10-31 15:59:32 +01007305 task = task_new(tid_bit);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007306 if (!task) {
7307 SEND_ERR(px, "Lua applet tcp '%s': out of memory.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007308 ctx->rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007309 return 0;
7310 }
7311 task->nice = 0;
7312 task->context = ctx;
7313 task->process = hlua_applet_wakeup;
7314 ctx->ctx.hlua_apptcp.task = task;
7315
7316 /* In the execution wrappers linked with a stream, the
7317 * Lua context can be not initialized. This behavior
7318 * permits to save performances because a systematic
7319 * Lua initialization cause 5% performances loss.
7320 */
Aurelien DARRAGON5483bde2023-03-21 14:02:16 +01007321 if (!hlua_ctx_init(hlua, fcn_ref_to_stack_id(ctx->rule->arg.hlua_rule->fcn), task)) {
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007322 SEND_ERR(px, "Lua applet tcp '%s': can't initialize Lua context.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007323 ctx->rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007324 return 0;
7325 }
7326
7327 /* Set timeout according with the applet configuration. */
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02007328 hlua->max_time = ctx->applet->timeout;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007329
7330 /* The following Lua calls can fail. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01007331 if (!SET_SAFE_LJMP(hlua)) {
Aurelien DARRAGONd4df5622024-03-04 11:17:58 +01007332 hlua_lock(hlua);
Thierry Fournierfd107a22016-02-19 19:57:23 +01007333 if (lua_type(hlua->T, -1) == LUA_TSTRING)
Aurelien DARRAGONa3741612024-03-01 15:55:17 +01007334 error = hlua_tostring_safe(hlua->T, -1);
Thierry Fournierfd107a22016-02-19 19:57:23 +01007335 else
7336 error = "critical error";
7337 SEND_ERR(px, "Lua applet tcp '%s': %s.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007338 ctx->rule->arg.hlua_rule->fcn->name, error);
Aurelien DARRAGONd4df5622024-03-04 11:17:58 +01007339 hlua_unlock(hlua);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007340 return 0;
7341 }
7342
7343 /* Check stack available size. */
7344 if (!lua_checkstack(hlua->T, 1)) {
7345 SEND_ERR(px, "Lua applet tcp '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007346 ctx->rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01007347 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007348 return 0;
7349 }
7350
7351 /* Restore the function in the stack. */
Thierry Fournierc7492592020-11-28 23:57:24 +01007352 lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, ctx->rule->arg.hlua_rule->fcn->function_ref[hlua->state_id]);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007353
7354 /* Create and and push object stream in the stack. */
7355 if (!hlua_applet_tcp_new(hlua->T, ctx)) {
7356 SEND_ERR(px, "Lua applet tcp '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007357 ctx->rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01007358 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007359 return 0;
7360 }
7361 hlua->nargs = 1;
7362
7363 /* push keywords in the stack. */
7364 for (arg = ctx->rule->arg.hlua_rule->args; arg && *arg; arg++) {
7365 if (!lua_checkstack(hlua->T, 1)) {
7366 SEND_ERR(px, "Lua applet tcp '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007367 ctx->rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01007368 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007369 return 0;
7370 }
7371 lua_pushstring(hlua->T, *arg);
7372 hlua->nargs++;
7373 }
7374
Thierry Fournier7cbe5042020-11-28 17:02:21 +01007375 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007376
7377 /* Wakeup the applet ASAP. */
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01007378 si_cant_get(si);
Willy Tarreau3367d412018-11-15 10:57:41 +01007379 si_rx_endp_more(si);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007380
7381 return 1;
7382}
7383
Willy Tarreau60409db2019-08-21 14:14:50 +02007384void hlua_applet_tcp_fct(struct appctx *ctx)
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007385{
7386 struct stream_interface *si = ctx->owner;
7387 struct stream *strm = si_strm(si);
7388 struct channel *res = si_ic(si);
7389 struct act_rule *rule = ctx->rule;
7390 struct proxy *px = strm->be;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007391 struct hlua *hlua = ctx->ctx.hlua_apptcp.hlua;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007392
7393 /* The applet execution is already done. */
Olivier Houchard594c8c52018-08-28 14:41:31 +02007394 if (ctx->ctx.hlua_apptcp.flags & APPLET_DONE) {
7395 /* eat the whole request */
7396 co_skip(si_oc(si), co_data(si_oc(si)));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007397 return;
Olivier Houchard594c8c52018-08-28 14:41:31 +02007398 }
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007399
7400 /* If the stream is disconnect or closed, ldo nothing. */
7401 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
7402 return;
7403
7404 /* Execute the function. */
7405 switch (hlua_ctx_resume(hlua, 1)) {
7406 /* finished. */
7407 case HLUA_E_OK:
7408 ctx->ctx.hlua_apptcp.flags |= APPLET_DONE;
7409
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007410 /* eat the whole request */
Willy Tarreaua79021a2018-06-15 18:07:57 +02007411 co_skip(si_oc(si), co_data(si_oc(si)));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007412 res->flags |= CF_READ_NULL;
7413 si_shutr(si);
7414 return;
7415
7416 /* yield. */
7417 case HLUA_E_AGAIN:
Thierry Fournier0164f202016-02-20 17:47:43 +01007418 if (hlua->wake_time != TICK_ETERNITY)
7419 task_schedule(ctx->ctx.hlua_apptcp.task, hlua->wake_time);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007420 return;
7421
7422 /* finished with error. */
7423 case HLUA_E_ERRMSG:
7424 /* Display log. */
Aurelien DARRAGON6ab7ec92024-03-01 21:17:51 +01007425 hlua_lock(hlua);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007426 SEND_ERR(px, "Lua applet tcp '%s': %s.\n",
Aurelien DARRAGONa3741612024-03-01 15:55:17 +01007427 rule->arg.hlua_rule->fcn->name, hlua_tostring_safe(hlua->T, -1));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007428 lua_pop(hlua->T, 1);
Aurelien DARRAGON6ab7ec92024-03-01 21:17:51 +01007429 hlua_unlock(hlua);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007430 goto error;
7431
Thierry Fournierd5b073c2018-05-21 19:42:47 +02007432 case HLUA_E_ETMOUT:
7433 SEND_ERR(px, "Lua applet tcp '%s': execution timeout.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007434 rule->arg.hlua_rule->fcn->name);
Thierry Fournierd5b073c2018-05-21 19:42:47 +02007435 goto error;
7436
7437 case HLUA_E_NOMEM:
7438 SEND_ERR(px, "Lua applet tcp '%s': out of memory error.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007439 rule->arg.hlua_rule->fcn->name);
Thierry Fournierd5b073c2018-05-21 19:42:47 +02007440 goto error;
7441
7442 case HLUA_E_YIELD: /* unexpected */
7443 SEND_ERR(px, "Lua applet tcp '%s': yield not allowed.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007444 rule->arg.hlua_rule->fcn->name);
Thierry Fournierd5b073c2018-05-21 19:42:47 +02007445 goto error;
7446
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007447 case HLUA_E_ERR:
7448 /* Display log. */
7449 SEND_ERR(px, "Lua applet tcp '%s' return an unknown error.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007450 rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007451 goto error;
7452
7453 default:
7454 goto error;
7455 }
7456
7457error:
7458
7459 /* For all other cases, just close the stream. */
7460 si_shutw(si);
7461 si_shutr(si);
7462 ctx->ctx.hlua_apptcp.flags |= APPLET_DONE;
7463}
7464
7465static void hlua_applet_tcp_release(struct appctx *ctx)
7466{
Olivier Houchard3f795f72019-04-17 22:51:06 +02007467 task_destroy(ctx->ctx.hlua_apptcp.task);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007468 ctx->ctx.hlua_apptcp.task = NULL;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007469 hlua_ctx_destroy(ctx->ctx.hlua_apptcp.hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007470 ctx->ctx.hlua_apptcp.hlua = NULL;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007471}
7472
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007473/* The function returns 1 if the initialisation is complete, 0 if
7474 * an errors occurs and -1 if more data are required for initializing
7475 * the applet.
7476 */
7477static int hlua_applet_http_init(struct appctx *ctx, struct proxy *px, struct stream *strm)
7478{
7479 struct stream_interface *si = ctx->owner;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007480 struct http_txn *txn;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007481 struct hlua *hlua;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007482 char **arg;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007483 struct task *task;
Thierry Fournierfd107a22016-02-19 19:57:23 +01007484 const char *error;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007485
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007486 txn = strm->txn;
Willy Tarreaubafbe012017-11-24 17:34:44 +01007487 hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007488 if (!hlua) {
7489 SEND_ERR(px, "Lua applet http '%s': out of memory.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007490 ctx->rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007491 return 0;
7492 }
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007493 HLUA_INIT(hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007494 ctx->ctx.hlua_apphttp.hlua = hlua;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007495 ctx->ctx.hlua_apphttp.left_bytes = -1;
7496 ctx->ctx.hlua_apphttp.flags = 0;
7497
Thierry FOURNIERd93ea2b2015-12-20 19:14:52 +01007498 if (txn->req.flags & HTTP_MSGF_VER_11)
7499 ctx->ctx.hlua_apphttp.flags |= APPLET_HTTP11;
7500
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007501 /* Create task used by signal to wakeup applets. */
Willy Tarreau5f4a47b2017-10-31 15:59:32 +01007502 task = task_new(tid_bit);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007503 if (!task) {
7504 SEND_ERR(px, "Lua applet http '%s': out of memory.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007505 ctx->rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007506 return 0;
7507 }
7508 task->nice = 0;
7509 task->context = ctx;
7510 task->process = hlua_applet_wakeup;
7511 ctx->ctx.hlua_apphttp.task = task;
7512
7513 /* In the execution wrappers linked with a stream, the
7514 * Lua context can be not initialized. This behavior
7515 * permits to save performances because a systematic
7516 * Lua initialization cause 5% performances loss.
7517 */
Aurelien DARRAGON5483bde2023-03-21 14:02:16 +01007518 if (!hlua_ctx_init(hlua, fcn_ref_to_stack_id(ctx->rule->arg.hlua_rule->fcn), task)) {
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007519 SEND_ERR(px, "Lua applet http '%s': can't initialize Lua context.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007520 ctx->rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007521 return 0;
7522 }
7523
7524 /* Set timeout according with the applet configuration. */
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02007525 hlua->max_time = ctx->applet->timeout;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007526
7527 /* The following Lua calls can fail. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01007528 if (!SET_SAFE_LJMP(hlua)) {
Aurelien DARRAGONd4df5622024-03-04 11:17:58 +01007529 hlua_lock(hlua);
Thierry Fournierfd107a22016-02-19 19:57:23 +01007530 if (lua_type(hlua->T, -1) == LUA_TSTRING)
Aurelien DARRAGONa3741612024-03-01 15:55:17 +01007531 error = hlua_tostring_safe(hlua->T, -1);
Thierry Fournierfd107a22016-02-19 19:57:23 +01007532 else
7533 error = "critical error";
7534 SEND_ERR(px, "Lua applet http '%s': %s.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007535 ctx->rule->arg.hlua_rule->fcn->name, error);
Aurelien DARRAGONd4df5622024-03-04 11:17:58 +01007536 hlua_unlock(hlua);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007537 return 0;
7538 }
7539
7540 /* Check stack available size. */
7541 if (!lua_checkstack(hlua->T, 1)) {
7542 SEND_ERR(px, "Lua applet http '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007543 ctx->rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01007544 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007545 return 0;
7546 }
7547
7548 /* Restore the function in the stack. */
Thierry Fournierc7492592020-11-28 23:57:24 +01007549 lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, ctx->rule->arg.hlua_rule->fcn->function_ref[hlua->state_id]);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007550
7551 /* Create and and push object stream in the stack. */
7552 if (!hlua_applet_http_new(hlua->T, ctx)) {
7553 SEND_ERR(px, "Lua applet http '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007554 ctx->rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01007555 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007556 return 0;
7557 }
7558 hlua->nargs = 1;
7559
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007560 /* push keywords in the stack. */
7561 for (arg = ctx->rule->arg.hlua_rule->args; arg && *arg; arg++) {
7562 if (!lua_checkstack(hlua->T, 1)) {
7563 SEND_ERR(px, "Lua applet http '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007564 ctx->rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01007565 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007566 return 0;
7567 }
7568 lua_pushstring(hlua->T, *arg);
7569 hlua->nargs++;
7570 }
7571
Thierry Fournier7cbe5042020-11-28 17:02:21 +01007572 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007573
7574 /* Wakeup the applet when data is ready for read. */
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01007575 si_cant_get(si);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007576
7577 return 1;
7578}
7579
Willy Tarreau60409db2019-08-21 14:14:50 +02007580void hlua_applet_http_fct(struct appctx *ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007581{
7582 struct stream_interface *si = ctx->owner;
7583 struct stream *strm = si_strm(si);
7584 struct channel *req = si_oc(si);
7585 struct channel *res = si_ic(si);
7586 struct act_rule *rule = ctx->rule;
7587 struct proxy *px = strm->be;
7588 struct hlua *hlua = ctx->ctx.hlua_apphttp.hlua;
7589 struct htx *req_htx, *res_htx;
7590
7591 res_htx = htx_from_buf(&res->buf);
7592
7593 /* If the stream is disconnect or closed, ldo nothing. */
7594 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
7595 goto out;
7596
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05007597 /* Check if the input buffer is available. */
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007598 if (!b_size(&res->buf)) {
7599 si_rx_room_blk(si);
7600 goto out;
7601 }
7602 /* check that the output is not closed */
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01007603 if (res->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_SHUTR))
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007604 ctx->ctx.hlua_apphttp.flags |= APPLET_DONE;
7605
7606 /* Set the currently running flag. */
7607 if (!HLUA_IS_RUNNING(hlua) &&
7608 !(ctx->ctx.hlua_apphttp.flags & APPLET_DONE)) {
Christopher Fauletbd878d22021-04-28 10:50:21 +02007609 if (!co_data(req)) {
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007610 si_cant_get(si);
7611 goto out;
7612 }
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007613 }
7614
7615 /* Executes The applet if it is not done. */
7616 if (!(ctx->ctx.hlua_apphttp.flags & APPLET_DONE)) {
7617
7618 /* Execute the function. */
7619 switch (hlua_ctx_resume(hlua, 1)) {
7620 /* finished. */
7621 case HLUA_E_OK:
7622 ctx->ctx.hlua_apphttp.flags |= APPLET_DONE;
7623 break;
7624
7625 /* yield. */
7626 case HLUA_E_AGAIN:
7627 if (hlua->wake_time != TICK_ETERNITY)
7628 task_schedule(ctx->ctx.hlua_apphttp.task, hlua->wake_time);
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01007629 goto out;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007630
7631 /* finished with error. */
7632 case HLUA_E_ERRMSG:
7633 /* Display log. */
Aurelien DARRAGON6ab7ec92024-03-01 21:17:51 +01007634 hlua_lock(hlua);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007635 SEND_ERR(px, "Lua applet http '%s': %s.\n",
Aurelien DARRAGONa3741612024-03-01 15:55:17 +01007636 rule->arg.hlua_rule->fcn->name, hlua_tostring_safe(hlua->T, -1));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007637 lua_pop(hlua->T, 1);
Aurelien DARRAGON6ab7ec92024-03-01 21:17:51 +01007638 hlua_unlock(hlua);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007639 goto error;
7640
7641 case HLUA_E_ETMOUT:
7642 SEND_ERR(px, "Lua applet http '%s': execution timeout.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007643 rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007644 goto error;
7645
7646 case HLUA_E_NOMEM:
7647 SEND_ERR(px, "Lua applet http '%s': out of memory error.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007648 rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007649 goto error;
7650
7651 case HLUA_E_YIELD: /* unexpected */
7652 SEND_ERR(px, "Lua applet http '%s': yield not allowed.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007653 rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007654 goto error;
7655
7656 case HLUA_E_ERR:
7657 /* Display log. */
7658 SEND_ERR(px, "Lua applet http '%s' return an unknown error.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01007659 rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007660 goto error;
7661
7662 default:
7663 goto error;
7664 }
7665 }
7666
7667 if (ctx->ctx.hlua_apphttp.flags & APPLET_DONE) {
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01007668 if (ctx->ctx.hlua_apphttp.flags & APPLET_RSP_SENT)
7669 goto done;
7670
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007671 if (!(ctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT))
7672 goto error;
7673
Christopher Faulet868b3b12022-04-07 10:07:18 +02007674 /* no more data are expected. If the response buffer is empty
7675 * for a chunked message, be sure to add something (EOT block in
7676 * this case) to have something to send. It is important to be
7677 * sure the EOM flags will be handled by the endpoint.
7678 */
7679 if (htx_is_empty(res_htx) && (strm->txn->rsp.flags & (HTTP_MSGF_XFER_LEN|HTTP_MSGF_CNT_LEN)) == HTTP_MSGF_XFER_LEN) {
7680 if (!htx_add_endof(res_htx, HTX_BLK_EOT)) {
7681 si_rx_room_blk(si);
7682 goto out;
7683 }
7684 channel_add_input(res, 1);
7685 }
7686
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01007687 res_htx->flags |= HTX_FL_EOM;
Christopher Faulet79c0fc72022-03-07 15:50:54 +01007688 res->flags |= CF_EOI;
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01007689 strm->txn->status = ctx->ctx.hlua_apphttp.status;
7690 ctx->ctx.hlua_apphttp.flags |= APPLET_RSP_SENT;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007691 }
7692
7693 done:
7694 if (ctx->ctx.hlua_apphttp.flags & APPLET_DONE) {
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01007695 if (!(res->flags & CF_SHUTR)) {
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007696 res->flags |= CF_READ_NULL;
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01007697 si_shutr(si);
7698 }
7699
7700 /* eat the whole request */
7701 if (co_data(req)) {
7702 req_htx = htx_from_buf(&req->buf);
7703 co_htx_skip(req, req_htx, co_data(req));
7704 htx_to_buf(req_htx, &req->buf);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007705 }
7706 }
7707
7708 out:
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007709 htx_to_buf(res_htx, &res->buf);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007710 return;
7711
7712 error:
7713
7714 /* If we are in HTTP mode, and we are not send any
7715 * data, return a 500 server error in best effort:
7716 * if there is no room available in the buffer,
7717 * just close the connection.
7718 */
7719 if (!(ctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT)) {
Christopher Fauletf7346382019-07-17 22:02:08 +02007720 struct buffer *err = &http_err_chunks[HTTP_ERR_500];
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007721
7722 channel_erase(res);
7723 res->buf.data = b_data(err);
7724 memcpy(res->buf.area, b_head(err), b_data(err));
7725 res_htx = htx_from_buf(&res->buf);
Christopher Fauletf6cce3f2019-02-27 21:20:09 +01007726 channel_add_input(res, res_htx->data);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007727 }
7728 if (!(strm->flags & SF_ERR_MASK))
7729 strm->flags |= SF_ERR_RESOURCE;
7730 ctx->ctx.hlua_apphttp.flags |= APPLET_DONE;
7731 goto done;
7732}
7733
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007734static void hlua_applet_http_release(struct appctx *ctx)
7735{
Olivier Houchard3f795f72019-04-17 22:51:06 +02007736 task_destroy(ctx->ctx.hlua_apphttp.task);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007737 ctx->ctx.hlua_apphttp.task = NULL;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007738 hlua_ctx_destroy(ctx->ctx.hlua_apphttp.hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007739 ctx->ctx.hlua_apphttp.hlua = NULL;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007740}
7741
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007742/* global {tcp|http}-request parser. Return ACT_RET_PRS_OK in
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05007743 * success case, else return ACT_RET_PRS_ERR.
Thierry FOURNIERbabae282015-09-17 11:36:37 +02007744 *
7745 * This function can fail with an abort() due to an Lua critical error.
7746 * We are in the configuration parsing process of HAProxy, this abort() is
7747 * tolerated.
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007748 */
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007749static enum act_parse_ret action_register_lua(const char **args, int *cur_arg, struct proxy *px,
7750 struct act_rule *rule, char **err)
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007751{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02007752 struct hlua_function *fcn = rule->kw->private;
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007753 int i;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007754
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007755 /* Memory for the rule. */
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02007756 rule->arg.hlua_rule = calloc(1, sizeof(*rule->arg.hlua_rule));
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007757 if (!rule->arg.hlua_rule) {
7758 memprintf(err, "out of memory error");
Christopher Faulet528526f2021-04-12 14:37:32 +02007759 goto error;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007760 }
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007761
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007762 /* Memory for arguments. */
Tim Duesterhuse52b6e52020-09-12 20:26:43 +02007763 rule->arg.hlua_rule->args = calloc(fcn->nargs + 1,
7764 sizeof(*rule->arg.hlua_rule->args));
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007765 if (!rule->arg.hlua_rule->args) {
7766 memprintf(err, "out of memory error");
Christopher Faulet528526f2021-04-12 14:37:32 +02007767 goto error;
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007768 }
7769
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007770 /* Reference the Lua function and store the reference. */
Thierry Fournierad5345f2020-11-29 02:05:57 +01007771 rule->arg.hlua_rule->fcn = fcn;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007772
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007773 /* Expect some arguments */
7774 for (i = 0; i < fcn->nargs; i++) {
Thierry FOURNIER1725c2e2019-01-06 19:38:49 +01007775 if (*args[*cur_arg] == '\0') {
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007776 memprintf(err, "expect %d arguments", fcn->nargs);
Christopher Faulet528526f2021-04-12 14:37:32 +02007777 goto error;
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007778 }
Thierry FOURNIER1725c2e2019-01-06 19:38:49 +01007779 rule->arg.hlua_rule->args[i] = strdup(args[*cur_arg]);
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007780 if (!rule->arg.hlua_rule->args[i]) {
7781 memprintf(err, "out of memory error");
Christopher Faulet528526f2021-04-12 14:37:32 +02007782 goto error;
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007783 }
7784 (*cur_arg)++;
7785 }
7786 rule->arg.hlua_rule->args[i] = NULL;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007787
Thierry FOURNIER42148732015-09-02 17:17:33 +02007788 rule->action = ACT_CUSTOM;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007789 rule->action_ptr = hlua_action;
Thierry FOURNIERafa80492015-08-19 09:04:15 +02007790 return ACT_RET_PRS_OK;
Christopher Faulet528526f2021-04-12 14:37:32 +02007791
7792 error:
7793 if (rule->arg.hlua_rule) {
7794 if (rule->arg.hlua_rule->args) {
7795 for (i = 0; i < fcn->nargs; i++)
7796 ha_free(&rule->arg.hlua_rule->args[i]);
7797 ha_free(&rule->arg.hlua_rule->args);
7798 }
7799 ha_free(&rule->arg.hlua_rule);
7800 }
7801 return ACT_RET_PRS_ERR;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007802}
7803
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007804static enum act_parse_ret action_register_service_http(const char **args, int *cur_arg, struct proxy *px,
7805 struct act_rule *rule, char **err)
7806{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02007807 struct hlua_function *fcn = rule->kw->private;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007808
Thierry FOURNIER718e2a72015-12-20 20:13:14 +01007809 /* HTTP applets are forbidden in tcp-request rules.
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05007810 * HTTP applet request requires everything initialized by
Thierry FOURNIER718e2a72015-12-20 20:13:14 +01007811 * "http_process_request" (analyzer flag AN_REQ_HTTP_INNER).
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05007812 * The applet will be immediately initialized, but its before
Thierry FOURNIER718e2a72015-12-20 20:13:14 +01007813 * the call of this analyzer.
7814 */
7815 if (rule->from != ACT_F_HTTP_REQ) {
7816 memprintf(err, "HTTP applets are forbidden from 'tcp-request' rulesets");
7817 return ACT_RET_PRS_ERR;
7818 }
7819
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007820 /* Memory for the rule. */
7821 rule->arg.hlua_rule = calloc(1, sizeof(*rule->arg.hlua_rule));
7822 if (!rule->arg.hlua_rule) {
7823 memprintf(err, "out of memory error");
7824 return ACT_RET_PRS_ERR;
7825 }
7826
7827 /* Reference the Lua function and store the reference. */
Thierry Fournierad5345f2020-11-29 02:05:57 +01007828 rule->arg.hlua_rule->fcn = fcn;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007829
7830 /* TODO: later accept arguments. */
7831 rule->arg.hlua_rule->args = NULL;
7832
7833 /* Add applet pointer in the rule. */
7834 rule->applet.obj_type = OBJ_TYPE_APPLET;
7835 rule->applet.name = fcn->name;
7836 rule->applet.init = hlua_applet_http_init;
7837 rule->applet.fct = hlua_applet_http_fct;
7838 rule->applet.release = hlua_applet_http_release;
7839 rule->applet.timeout = hlua_timeout_applet;
7840
7841 return ACT_RET_PRS_OK;
7842}
7843
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007844/* This function is an LUA binding used for registering
7845 * "sample-conv" functions. It expects a converter name used
7846 * in the haproxy configuration file, and an LUA function.
7847 */
7848__LJMP static int hlua_register_action(lua_State *L)
7849{
Christopher Faulet4fc9da02021-04-12 15:08:12 +02007850 struct action_kw_list *akl = NULL;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007851 const char *name;
7852 int ref;
7853 int len;
Christopher Faulet4fc9da02021-04-12 15:08:12 +02007854 struct hlua_function *fcn = NULL;
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007855 int nargs;
Thierry Fournierf67442e2020-11-28 20:41:07 +01007856 struct buffer *trash;
7857 struct action_kw *akw;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007858
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007859 /* Initialise the number of expected arguments at 0. */
7860 nargs = 0;
7861
7862 if (lua_gettop(L) < 3 || lua_gettop(L) > 4)
7863 WILL_LJMP(luaL_error(L, "'register_action' needs between 3 and 4 arguments"));
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007864
Aurelien DARRAGON8985ab82023-02-24 09:43:54 +01007865 if (hlua_gethlua(L)) {
7866 /* runtime processing */
7867 WILL_LJMP(luaL_error(L, "register_action: not available outside of body context"));
7868 }
7869
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007870 /* First argument : converter name. */
7871 name = MAY_LJMP(luaL_checkstring(L, 1));
7872
7873 /* Second argument : environment. */
7874 if (lua_type(L, 2) != LUA_TTABLE)
7875 WILL_LJMP(luaL_error(L, "register_action: second argument must be a table of strings"));
7876
7877 /* Third argument : lua function. */
7878 ref = MAY_LJMP(hlua_checkfunction(L, 3));
7879
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08007880 /* Fourth argument : number of mandatory arguments expected on the configuration line. */
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007881 if (lua_gettop(L) >= 4)
7882 nargs = MAY_LJMP(luaL_checkinteger(L, 4));
7883
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08007884 /* browse the second argument as an array. */
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007885 lua_pushnil(L);
7886 while (lua_next(L, 2) != 0) {
7887 if (lua_type(L, -1) != LUA_TSTRING)
7888 WILL_LJMP(luaL_error(L, "register_action: second argument must be a table of strings"));
7889
Thierry Fournierf67442e2020-11-28 20:41:07 +01007890 /* Check if action exists */
7891 trash = get_trash_chunk();
7892 chunk_printf(trash, "lua.%s", name);
7893 if (strcmp(lua_tostring(L, -1), "tcp-req") == 0) {
7894 akw = tcp_req_cont_action(trash->area);
7895 } else if (strcmp(lua_tostring(L, -1), "tcp-res") == 0) {
7896 akw = tcp_res_cont_action(trash->area);
7897 } else if (strcmp(lua_tostring(L, -1), "http-req") == 0) {
7898 akw = action_http_req_custom(trash->area);
7899 } else if (strcmp(lua_tostring(L, -1), "http-res") == 0) {
7900 akw = action_http_res_custom(trash->area);
7901 } else {
7902 akw = NULL;
7903 }
7904 if (akw != NULL) {
Thierry Fournier59f11be2020-11-29 00:37:41 +01007905 fcn = akw->private;
7906 if (fcn->function_ref[hlua_state_id] != -1) {
7907 ha_warning("Trying to register action 'lua.%s' more than once. "
7908 "This will become a hard error in version 2.5.\n", name);
7909 }
7910 fcn->function_ref[hlua_state_id] = ref;
7911
7912 /* pop the environment string. */
7913 lua_pop(L, 1);
7914 continue;
Thierry Fournierf67442e2020-11-28 20:41:07 +01007915 }
7916
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007917 /* Check required environment. Only accepted "http" or "tcp". */
7918 /* Allocate and fill the sample fetch keyword struct. */
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02007919 akl = calloc(1, sizeof(*akl) + sizeof(struct action_kw) * 2);
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007920 if (!akl)
Christopher Faulet4fc9da02021-04-12 15:08:12 +02007921 goto alloc_error;;
Thierry Fournier62a22aa2020-11-28 21:06:35 +01007922 fcn = new_hlua_function();
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007923 if (!fcn)
Christopher Faulet4fc9da02021-04-12 15:08:12 +02007924 goto alloc_error;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007925
7926 /* Fill fcn. */
7927 fcn->name = strdup(name);
7928 if (!fcn->name)
Christopher Faulet4fc9da02021-04-12 15:08:12 +02007929 goto alloc_error;
Thierry Fournierc7492592020-11-28 23:57:24 +01007930 fcn->function_ref[hlua_state_id] = ref;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007931
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07007932 /* Set the expected number of arguments. */
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007933 fcn->nargs = nargs;
7934
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007935 /* List head */
7936 akl->list.n = akl->list.p = NULL;
7937
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007938 /* action keyword. */
7939 len = strlen("lua.") + strlen(name) + 1;
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02007940 akl->kw[0].kw = calloc(1, len);
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007941 if (!akl->kw[0].kw)
Christopher Faulet4fc9da02021-04-12 15:08:12 +02007942 goto alloc_error;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007943
7944 snprintf((char *)akl->kw[0].kw, len, "lua.%s", name);
7945
Amaury Denoyellee4a617c2021-05-06 15:33:09 +02007946 akl->kw[0].flags = 0;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007947 akl->kw[0].private = fcn;
7948 akl->kw[0].parse = action_register_lua;
7949
7950 /* select the action registering point. */
7951 if (strcmp(lua_tostring(L, -1), "tcp-req") == 0)
7952 tcp_req_cont_keywords_register(akl);
7953 else if (strcmp(lua_tostring(L, -1), "tcp-res") == 0)
7954 tcp_res_cont_keywords_register(akl);
7955 else if (strcmp(lua_tostring(L, -1), "http-req") == 0)
7956 http_req_keywords_register(akl);
7957 else if (strcmp(lua_tostring(L, -1), "http-res") == 0)
7958 http_res_keywords_register(akl);
Christopher Faulet4fc9da02021-04-12 15:08:12 +02007959 else {
7960 release_hlua_function(fcn);
7961 if (akl)
7962 ha_free((char **)&(akl->kw[0].kw));
7963 ha_free(&akl);
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01007964 WILL_LJMP(luaL_error(L, "Lua action environment '%s' is unknown. "
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007965 "'tcp-req', 'tcp-res', 'http-req' or 'http-res' "
7966 "are expected.", lua_tostring(L, -1)));
Christopher Faulet4fc9da02021-04-12 15:08:12 +02007967 }
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007968
7969 /* pop the environment string. */
7970 lua_pop(L, 1);
Christopher Faulet4fc9da02021-04-12 15:08:12 +02007971
7972 /* reset for next loop */
7973 akl = NULL;
7974 fcn = NULL;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007975 }
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007976 return ACT_RET_PRS_OK;
Christopher Faulet4fc9da02021-04-12 15:08:12 +02007977
7978 alloc_error:
7979 release_hlua_function(fcn);
7980 ha_free(&akl);
7981 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
7982 return 0; /* Never reached */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007983}
7984
7985static enum act_parse_ret action_register_service_tcp(const char **args, int *cur_arg, struct proxy *px,
7986 struct act_rule *rule, char **err)
7987{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02007988 struct hlua_function *fcn = rule->kw->private;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007989
Christopher Faulet280f85b2019-07-15 15:02:04 +02007990 if (px->mode == PR_MODE_HTTP) {
7991 memprintf(err, "Lua TCP services cannot be used on HTTP proxies");
Christopher Fauletafd8f102018-11-08 11:34:21 +01007992 return ACT_RET_PRS_ERR;
7993 }
7994
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007995 /* Memory for the rule. */
7996 rule->arg.hlua_rule = calloc(1, sizeof(*rule->arg.hlua_rule));
7997 if (!rule->arg.hlua_rule) {
7998 memprintf(err, "out of memory error");
7999 return ACT_RET_PRS_ERR;
8000 }
Thierry FOURNIER8255a752015-09-23 21:03:35 +02008001
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02008002 /* Reference the Lua function and store the reference. */
Thierry Fournierad5345f2020-11-29 02:05:57 +01008003 rule->arg.hlua_rule->fcn = fcn;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02008004
8005 /* TODO: later accept arguments. */
8006 rule->arg.hlua_rule->args = NULL;
8007
8008 /* Add applet pointer in the rule. */
8009 rule->applet.obj_type = OBJ_TYPE_APPLET;
8010 rule->applet.name = fcn->name;
8011 rule->applet.init = hlua_applet_tcp_init;
8012 rule->applet.fct = hlua_applet_tcp_fct;
8013 rule->applet.release = hlua_applet_tcp_release;
8014 rule->applet.timeout = hlua_timeout_applet;
8015
8016 return 0;
8017}
8018
8019/* This function is an LUA binding used for registering
8020 * "sample-conv" functions. It expects a converter name used
8021 * in the haproxy configuration file, and an LUA function.
8022 */
8023__LJMP static int hlua_register_service(lua_State *L)
8024{
8025 struct action_kw_list *akl;
8026 const char *name;
8027 const char *env;
8028 int ref;
8029 int len;
Christopher Faulet5c028d72021-04-12 15:11:44 +02008030 struct hlua_function *fcn = NULL;
Thierry Fournierf67442e2020-11-28 20:41:07 +01008031 struct buffer *trash;
8032 struct action_kw *akw;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02008033
8034 MAY_LJMP(check_args(L, 3, "register_service"));
8035
Aurelien DARRAGON8985ab82023-02-24 09:43:54 +01008036 if (hlua_gethlua(L)) {
8037 /* runtime processing */
8038 WILL_LJMP(luaL_error(L, "register_service: not available outside of body context"));
8039 }
8040
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02008041 /* First argument : converter name. */
8042 name = MAY_LJMP(luaL_checkstring(L, 1));
8043
8044 /* Second argument : environment. */
8045 env = MAY_LJMP(luaL_checkstring(L, 2));
8046
8047 /* Third argument : lua function. */
8048 ref = MAY_LJMP(hlua_checkfunction(L, 3));
8049
Thierry Fournierf67442e2020-11-28 20:41:07 +01008050 /* Check for service already registered */
8051 trash = get_trash_chunk();
8052 chunk_printf(trash, "lua.%s", name);
8053 akw = service_find(trash->area);
8054 if (akw != NULL) {
Thierry Fournier59f11be2020-11-29 00:37:41 +01008055 fcn = akw->private;
8056 if (fcn->function_ref[hlua_state_id] != -1) {
8057 ha_warning("Trying to register service 'lua.%s' more than once. "
8058 "This will become a hard error in version 2.5.\n", name);
8059 }
8060 fcn->function_ref[hlua_state_id] = ref;
8061 return 0;
Thierry Fournierf67442e2020-11-28 20:41:07 +01008062 }
8063
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02008064 /* Allocate and fill the sample fetch keyword struct. */
8065 akl = calloc(1, sizeof(*akl) + sizeof(struct action_kw) * 2);
8066 if (!akl)
Christopher Faulet5c028d72021-04-12 15:11:44 +02008067 goto alloc_error;
Thierry Fournier62a22aa2020-11-28 21:06:35 +01008068 fcn = new_hlua_function();
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02008069 if (!fcn)
Christopher Faulet5c028d72021-04-12 15:11:44 +02008070 goto alloc_error;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02008071
8072 /* Fill fcn. */
8073 len = strlen("<lua.>") + strlen(name) + 1;
8074 fcn->name = calloc(1, len);
8075 if (!fcn->name)
Christopher Faulet5c028d72021-04-12 15:11:44 +02008076 goto alloc_error;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02008077 snprintf((char *)fcn->name, len, "<lua.%s>", name);
Thierry Fournierc7492592020-11-28 23:57:24 +01008078 fcn->function_ref[hlua_state_id] = ref;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02008079
8080 /* List head */
8081 akl->list.n = akl->list.p = NULL;
8082
8083 /* converter keyword. */
8084 len = strlen("lua.") + strlen(name) + 1;
8085 akl->kw[0].kw = calloc(1, len);
8086 if (!akl->kw[0].kw)
Christopher Faulet5c028d72021-04-12 15:11:44 +02008087 goto alloc_error;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02008088
8089 snprintf((char *)akl->kw[0].kw, len, "lua.%s", name);
8090
Thierry FOURNIER / OZON.IO02564fd2016-11-12 11:07:05 +01008091 /* Check required environment. Only accepted "http" or "tcp". */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02008092 if (strcmp(env, "tcp") == 0)
8093 akl->kw[0].parse = action_register_service_tcp;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02008094 else if (strcmp(env, "http") == 0)
8095 akl->kw[0].parse = action_register_service_http;
Christopher Faulet5c028d72021-04-12 15:11:44 +02008096 else {
8097 release_hlua_function(fcn);
8098 if (akl)
8099 ha_free((char **)&(akl->kw[0].kw));
8100 ha_free(&akl);
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01008101 WILL_LJMP(luaL_error(L, "Lua service environment '%s' is unknown. "
Eric Salamafe7456f2017-12-21 14:30:07 +01008102 "'tcp' or 'http' are expected.", env));
Christopher Faulet5c028d72021-04-12 15:11:44 +02008103 }
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02008104
Amaury Denoyellee4a617c2021-05-06 15:33:09 +02008105 akl->kw[0].flags = 0;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02008106 akl->kw[0].private = fcn;
8107
8108 /* End of array. */
8109 memset(&akl->kw[1], 0, sizeof(*akl->kw));
8110
8111 /* Register this new converter */
8112 service_keywords_register(akl);
8113
Thierry FOURNIER8255a752015-09-23 21:03:35 +02008114 return 0;
Christopher Faulet5c028d72021-04-12 15:11:44 +02008115
8116 alloc_error:
8117 release_hlua_function(fcn);
8118 ha_free(&akl);
8119 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
8120 return 0; /* Never reached */
Thierry FOURNIER8255a752015-09-23 21:03:35 +02008121}
8122
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008123/* This function initialises Lua cli handler. It copies the
8124 * arguments in the Lua stack and create channel IO objects.
8125 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02008126static int hlua_cli_parse_fct(char **args, char *payload, struct appctx *appctx, void *private)
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008127{
8128 struct hlua *hlua;
8129 struct hlua_function *fcn;
8130 int i;
8131 const char *error;
8132
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008133 fcn = private;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01008134 appctx->ctx.hlua_cli.fcn = private;
8135
Willy Tarreaubafbe012017-11-24 17:34:44 +01008136 hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01008137 if (!hlua) {
8138 SEND_ERR(NULL, "Lua cli '%s': out of memory.\n", fcn->name);
Thierry FOURNIER1be34152016-12-17 12:09:51 +01008139 return 1;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01008140 }
8141 HLUA_INIT(hlua);
8142 appctx->ctx.hlua_cli.hlua = hlua;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008143
8144 /* Create task used by signal to wakeup applets.
Ilya Shipitsind4259502020-04-08 01:07:56 +05008145 * We use the same wakeup function than the Lua applet_tcp and
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008146 * applet_http. It is absolutely compatible.
8147 */
Willy Tarreau5f4a47b2017-10-31 15:59:32 +01008148 appctx->ctx.hlua_cli.task = task_new(tid_bit);
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008149 if (!appctx->ctx.hlua_cli.task) {
Thierry FOURNIERffbf5692016-12-16 11:14:06 +01008150 SEND_ERR(NULL, "Lua cli '%s': out of memory.\n", fcn->name);
Thierry FOURNIER1be34152016-12-17 12:09:51 +01008151 goto error;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008152 }
8153 appctx->ctx.hlua_cli.task->nice = 0;
8154 appctx->ctx.hlua_cli.task->context = appctx;
8155 appctx->ctx.hlua_cli.task->process = hlua_applet_wakeup;
8156
8157 /* Initialises the Lua context */
Aurelien DARRAGON5483bde2023-03-21 14:02:16 +01008158 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 +01008159 SEND_ERR(NULL, "Lua cli '%s': can't initialize Lua context.\n", fcn->name);
Thierry FOURNIER1be34152016-12-17 12:09:51 +01008160 goto error;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008161 }
8162
8163 /* The following Lua calls can fail. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008164 if (!SET_SAFE_LJMP(hlua)) {
Aurelien DARRAGONd4df5622024-03-04 11:17:58 +01008165 hlua_lock(hlua);
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008166 if (lua_type(hlua->T, -1) == LUA_TSTRING)
Aurelien DARRAGONa3741612024-03-01 15:55:17 +01008167 error = hlua_tostring_safe(hlua->T, -1);
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008168 else
8169 error = "critical error";
8170 SEND_ERR(NULL, "Lua cli '%s': %s.\n", fcn->name, error);
Aurelien DARRAGONd4df5622024-03-04 11:17:58 +01008171 hlua_unlock(hlua);
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008172 goto error;
8173 }
8174
8175 /* Check stack available size. */
8176 if (!lua_checkstack(hlua->T, 2)) {
8177 SEND_ERR(NULL, "Lua cli '%s': full stack.\n", fcn->name);
8178 goto error;
8179 }
8180
8181 /* Restore the function in the stack. */
Thierry Fournierc7492592020-11-28 23:57:24 +01008182 lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, fcn->function_ref[hlua->state_id]);
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008183
8184 /* Once the arguments parsed, the CLI is like an AppletTCP,
8185 * so push AppletTCP in the stack.
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008186 */
8187 if (!hlua_applet_tcp_new(hlua->T, appctx)) {
8188 SEND_ERR(NULL, "Lua cli '%s': full stack.\n", fcn->name);
8189 goto error;
8190 }
8191 hlua->nargs = 1;
8192
8193 /* push keywords in the stack. */
8194 for (i = 0; *args[i]; i++) {
8195 /* Check stack available size. */
8196 if (!lua_checkstack(hlua->T, 1)) {
8197 SEND_ERR(NULL, "Lua cli '%s': full stack.\n", fcn->name);
8198 goto error;
8199 }
8200 lua_pushstring(hlua->T, args[i]);
8201 hlua->nargs++;
8202 }
8203
8204 /* We must initialize the execution timeouts. */
8205 hlua->max_time = hlua_timeout_session;
8206
8207 /* At this point the execution is safe. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008208 RESET_SAFE_LJMP(hlua);
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008209
8210 /* It's ok */
8211 return 0;
8212
8213 /* It's not ok. */
8214error:
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008215 RESET_SAFE_LJMP(hlua);
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008216 hlua_ctx_destroy(hlua);
Thierry FOURNIER1be34152016-12-17 12:09:51 +01008217 appctx->ctx.hlua_cli.hlua = NULL;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008218 return 1;
8219}
8220
8221static int hlua_cli_io_handler_fct(struct appctx *appctx)
8222{
8223 struct hlua *hlua;
8224 struct stream_interface *si;
8225 struct hlua_function *fcn;
8226
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01008227 hlua = appctx->ctx.hlua_cli.hlua;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008228 si = appctx->owner;
Willy Tarreau8ae4f752016-12-14 15:41:45 +01008229 fcn = appctx->ctx.hlua_cli.fcn;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008230
8231 /* If the stream is disconnect or closed, ldo nothing. */
8232 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
8233 return 1;
8234
8235 /* Execute the function. */
8236 switch (hlua_ctx_resume(hlua, 1)) {
8237
8238 /* finished. */
8239 case HLUA_E_OK:
8240 return 1;
8241
8242 /* yield. */
8243 case HLUA_E_AGAIN:
8244 /* We want write. */
8245 if (HLUA_IS_WAKERESWR(hlua))
Willy Tarreaudb398432018-11-15 11:08:52 +01008246 si_rx_room_blk(si);
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008247 /* Set the timeout. */
8248 if (hlua->wake_time != TICK_ETERNITY)
8249 task_schedule(hlua->task, hlua->wake_time);
8250 return 0;
8251
8252 /* finished with error. */
8253 case HLUA_E_ERRMSG:
8254 /* Display log. */
Aurelien DARRAGON6ab7ec92024-03-01 21:17:51 +01008255 hlua_lock(hlua);
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008256 SEND_ERR(NULL, "Lua cli '%s': %s.\n",
Aurelien DARRAGONa3741612024-03-01 15:55:17 +01008257 fcn->name, hlua_tostring_safe(hlua->T, -1));
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008258 lua_pop(hlua->T, 1);
Aurelien DARRAGON6ab7ec92024-03-01 21:17:51 +01008259 hlua_unlock(hlua);
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008260 return 1;
8261
Thierry Fournierd5b073c2018-05-21 19:42:47 +02008262 case HLUA_E_ETMOUT:
8263 SEND_ERR(NULL, "Lua converter '%s': execution timeout.\n",
8264 fcn->name);
8265 return 1;
8266
8267 case HLUA_E_NOMEM:
8268 SEND_ERR(NULL, "Lua converter '%s': out of memory error.\n",
8269 fcn->name);
8270 return 1;
8271
8272 case HLUA_E_YIELD: /* unexpected */
8273 SEND_ERR(NULL, "Lua converter '%s': yield not allowed.\n",
8274 fcn->name);
8275 return 1;
8276
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008277 case HLUA_E_ERR:
8278 /* Display log. */
8279 SEND_ERR(NULL, "Lua cli '%s' return an unknown error.\n",
8280 fcn->name);
8281 return 1;
8282
8283 default:
8284 return 1;
8285 }
8286
8287 return 1;
8288}
8289
8290static void hlua_cli_io_release_fct(struct appctx *appctx)
8291{
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01008292 hlua_ctx_destroy(appctx->ctx.hlua_cli.hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01008293 appctx->ctx.hlua_cli.hlua = NULL;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008294}
8295
8296/* This function is an LUA binding used for registering
8297 * new keywords in the cli. It expects a list of keywords
8298 * which are the "path". It is limited to 5 keywords. A
8299 * description of the command, a function to be executed
8300 * for the parsing and a function for io handlers.
8301 */
8302__LJMP static int hlua_register_cli(lua_State *L)
8303{
8304 struct cli_kw_list *cli_kws;
8305 const char *message;
8306 int ref_io;
8307 int len;
Christopher Faulet3a9a12b2021-04-12 15:31:29 +02008308 struct hlua_function *fcn = NULL;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008309 int index;
8310 int i;
Thierry Fournierf67442e2020-11-28 20:41:07 +01008311 struct buffer *trash;
8312 const char *kw[5];
8313 struct cli_kw *cli_kw;
Christopher Faulet3a9a12b2021-04-12 15:31:29 +02008314 const char *errmsg;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008315
8316 MAY_LJMP(check_args(L, 3, "register_cli"));
8317
Aurelien DARRAGON8985ab82023-02-24 09:43:54 +01008318 if (hlua_gethlua(L)) {
8319 /* runtime processing */
8320 WILL_LJMP(luaL_error(L, "register_cli: not available outside of body context"));
8321 }
8322
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008323 /* First argument : an array of maximum 5 keywords. */
8324 if (!lua_istable(L, 1))
8325 WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table"));
8326
8327 /* Second argument : string with contextual message. */
8328 message = MAY_LJMP(luaL_checkstring(L, 2));
8329
8330 /* Third and fourth argument : lua function. */
8331 ref_io = MAY_LJMP(hlua_checkfunction(L, 3));
8332
Thierry Fournierf67442e2020-11-28 20:41:07 +01008333 /* Check for CLI service already registered */
8334 trash = get_trash_chunk();
8335 index = 0;
8336 lua_pushnil(L);
8337 memset(kw, 0, sizeof(kw));
8338 while (lua_next(L, 1) != 0) {
8339 if (index >= CLI_PREFIX_KW_NB)
8340 WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table with a maximum of 5 entries"));
8341 if (lua_type(L, -1) != LUA_TSTRING)
8342 WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table filled with strings"));
8343 kw[index] = lua_tostring(L, -1);
8344 if (index == 0)
8345 chunk_printf(trash, "%s", kw[index]);
8346 else
8347 chunk_appendf(trash, " %s", kw[index]);
8348 index++;
8349 lua_pop(L, 1);
8350 }
8351 cli_kw = cli_find_kw_exact((char **)kw);
8352 if (cli_kw != NULL) {
Thierry Fournier59f11be2020-11-29 00:37:41 +01008353 fcn = cli_kw->private;
8354 if (fcn->function_ref[hlua_state_id] != -1) {
8355 ha_warning("Trying to register CLI keyword 'lua.%s' more than once. "
8356 "This will become a hard error in version 2.5.\n", trash->area);
8357 }
8358 fcn->function_ref[hlua_state_id] = ref_io;
8359 return 0;
Thierry Fournierf67442e2020-11-28 20:41:07 +01008360 }
8361
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008362 /* Allocate and fill the sample fetch keyword struct. */
8363 cli_kws = calloc(1, sizeof(*cli_kws) + sizeof(struct cli_kw) * 2);
Christopher Faulet3a9a12b2021-04-12 15:31:29 +02008364 if (!cli_kws) {
8365 errmsg = "Lua out of memory error.";
8366 goto error;
8367 }
Thierry Fournier62a22aa2020-11-28 21:06:35 +01008368 fcn = new_hlua_function();
Christopher Faulet3a9a12b2021-04-12 15:31:29 +02008369 if (!fcn) {
8370 errmsg = "Lua out of memory error.";
8371 goto error;
8372 }
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008373
8374 /* Fill path. */
8375 index = 0;
8376 lua_pushnil(L);
8377 while(lua_next(L, 1) != 0) {
Christopher Faulet3a9a12b2021-04-12 15:31:29 +02008378 if (index >= 5) {
8379 errmsg = "1st argument must be a table with a maximum of 5 entries";
8380 goto error;
8381 }
8382 if (lua_type(L, -1) != LUA_TSTRING) {
8383 errmsg = "1st argument must be a table filled with strings";
8384 goto error;
8385 }
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008386 cli_kws->kw[0].str_kw[index] = strdup(lua_tostring(L, -1));
Christopher Faulet3a9a12b2021-04-12 15:31:29 +02008387 if (!cli_kws->kw[0].str_kw[index]) {
8388 errmsg = "Lua out of memory error.";
8389 goto error;
8390 }
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008391 index++;
8392 lua_pop(L, 1);
8393 }
8394
8395 /* Copy help message. */
8396 cli_kws->kw[0].usage = strdup(message);
Christopher Faulet3a9a12b2021-04-12 15:31:29 +02008397 if (!cli_kws->kw[0].usage) {
8398 errmsg = "Lua out of memory error.";
8399 goto error;
8400 }
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008401
8402 /* Fill fcn io handler. */
8403 len = strlen("<lua.cli>") + 1;
8404 for (i = 0; i < index; i++)
8405 len += strlen(cli_kws->kw[0].str_kw[i]) + 1;
8406 fcn->name = calloc(1, len);
Christopher Faulet3a9a12b2021-04-12 15:31:29 +02008407 if (!fcn->name) {
8408 errmsg = "Lua out of memory error.";
8409 goto error;
8410 }
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008411 strncat((char *)fcn->name, "<lua.cli", len);
8412 for (i = 0; i < index; i++) {
8413 strncat((char *)fcn->name, ".", len);
8414 strncat((char *)fcn->name, cli_kws->kw[0].str_kw[i], len);
8415 }
8416 strncat((char *)fcn->name, ">", len);
Thierry Fournierc7492592020-11-28 23:57:24 +01008417 fcn->function_ref[hlua_state_id] = ref_io;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008418
8419 /* Fill last entries. */
8420 cli_kws->kw[0].private = fcn;
8421 cli_kws->kw[0].parse = hlua_cli_parse_fct;
8422 cli_kws->kw[0].io_handler = hlua_cli_io_handler_fct;
8423 cli_kws->kw[0].io_release = hlua_cli_io_release_fct;
8424
8425 /* Register this new converter */
8426 cli_register_kw(cli_kws);
8427
8428 return 0;
Christopher Faulet3a9a12b2021-04-12 15:31:29 +02008429
8430 error:
8431 release_hlua_function(fcn);
8432 if (cli_kws) {
8433 for (i = 0; i < index; i++)
8434 ha_free((char **)&(cli_kws->kw[0].str_kw[i]));
8435 ha_free((char **)&(cli_kws->kw[0].usage));
8436 }
8437 ha_free(&cli_kws);
8438 WILL_LJMP(luaL_error(L, errmsg));
8439 return 0; /* Never reached */
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008440}
8441
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008442static int hlua_read_timeout(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01008443 const struct proxy *defpx, const char *file, int line,
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008444 char **err, unsigned int *timeout)
8445{
8446 const char *error;
8447
8448 error = parse_time_err(args[1], timeout, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02008449 if (error == PARSE_TIME_OVER) {
8450 memprintf(err, "timer overflow in argument <%s> to <%s> (maximum value is 2147483647 ms or ~24.8 days)",
8451 args[1], args[0]);
8452 return -1;
8453 }
8454 else if (error == PARSE_TIME_UNDER) {
8455 memprintf(err, "timer underflow in argument <%s> to <%s> (minimum non-null value is 1 ms)",
8456 args[1], args[0]);
8457 return -1;
8458 }
8459 else if (error) {
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008460 memprintf(err, "%s: invalid timeout", args[0]);
8461 return -1;
8462 }
8463 return 0;
8464}
8465
8466static int hlua_session_timeout(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01008467 const struct proxy *defpx, const char *file, int line,
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008468 char **err)
8469{
8470 return hlua_read_timeout(args, section_type, curpx, defpx,
8471 file, line, err, &hlua_timeout_session);
8472}
8473
8474static int hlua_task_timeout(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01008475 const struct proxy *defpx, const char *file, int line,
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008476 char **err)
8477{
8478 return hlua_read_timeout(args, section_type, curpx, defpx,
8479 file, line, err, &hlua_timeout_task);
8480}
8481
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02008482static int hlua_applet_timeout(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01008483 const struct proxy *defpx, const char *file, int line,
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02008484 char **err)
8485{
8486 return hlua_read_timeout(args, section_type, curpx, defpx,
8487 file, line, err, &hlua_timeout_applet);
8488}
8489
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01008490static int hlua_forced_yield(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01008491 const struct proxy *defpx, const char *file, int line,
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01008492 char **err)
8493{
8494 char *error;
8495
8496 hlua_nb_instruction = strtoll(args[1], &error, 10);
8497 if (*error != '\0') {
8498 memprintf(err, "%s: invalid number", args[0]);
8499 return -1;
8500 }
8501 return 0;
8502}
8503
Willy Tarreau32f61e22015-03-18 17:54:59 +01008504static int hlua_parse_maxmem(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01008505 const struct proxy *defpx, const char *file, int line,
Willy Tarreau32f61e22015-03-18 17:54:59 +01008506 char **err)
8507{
8508 char *error;
8509
8510 if (*(args[1]) == 0) {
8511 memprintf(err, "'%s' expects an integer argument (Lua memory size in MB).\n", args[0]);
8512 return -1;
8513 }
8514 hlua_global_allocator.limit = strtoll(args[1], &error, 10) * 1024L * 1024L;
8515 if (*error != '\0') {
8516 memprintf(err, "%s: invalid number %s (error at '%c')", args[0], args[1], *error);
8517 return -1;
8518 }
8519 return 0;
8520}
8521
8522
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008523/* This function is called by the main configuration key "lua-load". It loads and
8524 * execute an lua file during the parsing of the HAProxy configuration file. It is
8525 * the main lua entry point.
8526 *
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08008527 * This function runs with the HAProxy keywords API. It returns -1 if an error
8528 * occurs, otherwise it returns 0.
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008529 *
8530 * In some error case, LUA set an error message in top of the stack. This function
8531 * returns this error message in the HAProxy logs and pop it from the stack.
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008532 *
8533 * This function can fail with an abort() due to an Lua critical error.
8534 * We are in the configuration parsing process of HAProxy, this abort() is
8535 * tolerated.
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008536 */
Thierry Fournierc93c15c2020-11-28 15:02:13 +01008537static int hlua_load_state(char *filename, lua_State *L, char **err)
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008538{
8539 int error;
8540
8541 /* Just load and compile the file. */
Thierry Fournierc93c15c2020-11-28 15:02:13 +01008542 error = luaL_loadfile(L, filename);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008543 if (error) {
Aurelien DARRAGONa3741612024-03-01 15:55:17 +01008544 memprintf(err, "error in Lua file '%s': %s", filename, hlua_tostring_safe(L, -1));
Thierry Fournierc93c15c2020-11-28 15:02:13 +01008545 lua_pop(L, 1);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008546 return -1;
8547 }
8548
8549 /* If no syntax error where detected, execute the code. */
Thierry Fournierc93c15c2020-11-28 15:02:13 +01008550 error = lua_pcall(L, 0, LUA_MULTRET, 0);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008551 switch (error) {
8552 case LUA_OK:
8553 break;
8554 case LUA_ERRRUN:
Aurelien DARRAGONa3741612024-03-01 15:55:17 +01008555 memprintf(err, "Lua runtime error: %s\n", hlua_tostring_safe(L, -1));
Thierry Fournierc93c15c2020-11-28 15:02:13 +01008556 lua_pop(L, 1);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008557 return -1;
8558 case LUA_ERRMEM:
Thierry Fournierde6145f2020-11-29 00:55:53 +01008559 memprintf(err, "Lua out of memory error\n");
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008560 return -1;
8561 case LUA_ERRERR:
Aurelien DARRAGONa3741612024-03-01 15:55:17 +01008562 memprintf(err, "Lua message handler error: %s\n", hlua_tostring_safe(L, -1));
Thierry Fournierc93c15c2020-11-28 15:02:13 +01008563 lua_pop(L, 1);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008564 return -1;
Christopher Faulet08ed98f2020-07-28 10:33:25 +02008565#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM <= 503
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008566 case LUA_ERRGCMM:
Aurelien DARRAGONa3741612024-03-01 15:55:17 +01008567 memprintf(err, "Lua garbage collector error: %s\n", hlua_tostring_safe(L, -1));
Thierry Fournierc93c15c2020-11-28 15:02:13 +01008568 lua_pop(L, 1);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008569 return -1;
Christopher Faulet08ed98f2020-07-28 10:33:25 +02008570#endif
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008571 default:
Aurelien DARRAGONa3741612024-03-01 15:55:17 +01008572 memprintf(err, "Lua unknown error: %s\n", hlua_tostring_safe(L, -1));
Thierry Fournierc93c15c2020-11-28 15:02:13 +01008573 lua_pop(L, 1);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008574 return -1;
8575 }
8576
8577 return 0;
8578}
8579
Thierry Fournierc93c15c2020-11-28 15:02:13 +01008580static int hlua_load(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01008581 const struct proxy *defpx, const char *file, int line,
Thierry Fournierc93c15c2020-11-28 15:02:13 +01008582 char **err)
8583{
8584 if (*(args[1]) == 0) {
8585 memprintf(err, "'%s' expects a file name as parameter.\n", args[0]);
8586 return -1;
8587 }
8588
Thierry Fournier59f11be2020-11-29 00:37:41 +01008589 /* loading for global state */
Thierry Fournierc7492592020-11-28 23:57:24 +01008590 hlua_state_id = 0;
Thierry Fournier59f11be2020-11-29 00:37:41 +01008591 ha_set_tid(0);
Thierry Fournierafc63e22020-11-28 17:06:51 +01008592 return hlua_load_state(args[1], hlua_states[0], err);
Thierry Fournierc93c15c2020-11-28 15:02:13 +01008593}
8594
Thierry Fournier59f11be2020-11-29 00:37:41 +01008595static int hlua_load_per_thread(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01008596 const struct proxy *defpx, const char *file, int line,
Thierry Fournier59f11be2020-11-29 00:37:41 +01008597 char **err)
8598{
8599 int len;
8600
8601 if (*(args[1]) == 0) {
8602 memprintf(err, "'%s' expects a file as parameter.\n", args[0]);
8603 return -1;
8604 }
8605
8606 if (per_thread_load == NULL) {
8607 /* allocate the first entry large enough to store the final NULL */
8608 per_thread_load = calloc(1, sizeof(*per_thread_load));
8609 if (per_thread_load == NULL) {
8610 memprintf(err, "out of memory error");
8611 return -1;
8612 }
8613 }
8614
8615 /* count used entries */
8616 for (len = 0; per_thread_load[len] != NULL; len++)
8617 ;
8618
8619 per_thread_load = realloc(per_thread_load, (len + 2) * sizeof(*per_thread_load));
8620 if (per_thread_load == NULL) {
8621 memprintf(err, "out of memory error");
8622 return -1;
8623 }
8624
8625 per_thread_load[len] = strdup(args[1]);
8626 per_thread_load[len + 1] = NULL;
8627
8628 if (per_thread_load[len] == NULL) {
8629 memprintf(err, "out of memory error");
8630 return -1;
8631 }
8632
8633 /* loading for thread 1 only */
8634 hlua_state_id = 1;
8635 ha_set_tid(0);
8636 return hlua_load_state(args[1], hlua_states[1], err);
8637}
8638
Tim Duesterhusc9fc9f22020-01-12 13:55:39 +01008639/* Prepend the given <path> followed by a semicolon to the `package.<type>` variable
8640 * in the given <ctx>.
8641 */
Thierry Fournier3fb9e512020-11-28 10:13:12 +01008642static int hlua_prepend_path(lua_State *L, char *type, char *path)
Tim Duesterhusc9fc9f22020-01-12 13:55:39 +01008643{
Thierry Fournier3fb9e512020-11-28 10:13:12 +01008644 lua_getglobal(L, "package"); /* push package variable */
8645 lua_pushstring(L, path); /* push given path */
8646 lua_pushstring(L, ";"); /* push semicolon */
8647 lua_getfield(L, -3, type); /* push old path */
8648 lua_concat(L, 3); /* concatenate to new path */
8649 lua_setfield(L, -2, type); /* store new path */
8650 lua_pop(L, 1); /* pop package variable */
Tim Duesterhusc9fc9f22020-01-12 13:55:39 +01008651
8652 return 0;
8653}
8654
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +01008655static int hlua_config_prepend_path(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01008656 const struct proxy *defpx, const char *file, int line,
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +01008657 char **err)
8658{
8659 char *path;
8660 char *type = "path";
Tim Duesterhus621e74a2021-01-03 20:04:36 +01008661 struct prepend_path *p = NULL;
Thierry Fournier59f11be2020-11-29 00:37:41 +01008662
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +01008663 if (too_many_args(2, args, err, NULL)) {
Tim Duesterhus621e74a2021-01-03 20:04:36 +01008664 goto err;
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +01008665 }
8666
8667 if (!(*args[1])) {
8668 memprintf(err, "'%s' expects to receive a <path> as argument", args[0]);
Tim Duesterhus621e74a2021-01-03 20:04:36 +01008669 goto err;
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +01008670 }
8671 path = args[1];
8672
8673 if (*args[2]) {
8674 if (strcmp(args[2], "path") != 0 && strcmp(args[2], "cpath") != 0) {
8675 memprintf(err, "'%s' expects <type> to either be 'path' or 'cpath'", args[0]);
Tim Duesterhus621e74a2021-01-03 20:04:36 +01008676 goto err;
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +01008677 }
8678 type = args[2];
8679 }
8680
Thierry Fournier59f11be2020-11-29 00:37:41 +01008681 p = calloc(1, sizeof(*p));
8682 if (p == NULL) {
Tim Duesterhusf89d43a2021-01-03 20:04:37 +01008683 memprintf(err, "memory allocation failed");
Tim Duesterhus621e74a2021-01-03 20:04:36 +01008684 goto err;
Thierry Fournier59f11be2020-11-29 00:37:41 +01008685 }
8686 p->path = strdup(path);
8687 if (p->path == NULL) {
Tim Duesterhusf89d43a2021-01-03 20:04:37 +01008688 memprintf(err, "memory allocation failed");
Tim Duesterhus621e74a2021-01-03 20:04:36 +01008689 goto err2;
Thierry Fournier59f11be2020-11-29 00:37:41 +01008690 }
8691 p->type = strdup(type);
8692 if (p->type == NULL) {
Tim Duesterhusf89d43a2021-01-03 20:04:37 +01008693 memprintf(err, "memory allocation failed");
Tim Duesterhus621e74a2021-01-03 20:04:36 +01008694 goto err2;
Thierry Fournier59f11be2020-11-29 00:37:41 +01008695 }
Willy Tarreau2b718102021-04-21 07:32:39 +02008696 LIST_APPEND(&prepend_path_list, &p->l);
Thierry Fournier59f11be2020-11-29 00:37:41 +01008697
8698 hlua_prepend_path(hlua_states[0], type, path);
8699 hlua_prepend_path(hlua_states[1], type, path);
8700 return 0;
Tim Duesterhus621e74a2021-01-03 20:04:36 +01008701
8702err2:
8703 free(p->type);
8704 free(p->path);
8705err:
8706 free(p);
8707 return -1;
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +01008708}
8709
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008710/* configuration keywords declaration */
8711static struct cfg_kw_list cfg_kws = {{ },{
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +01008712 { CFG_GLOBAL, "lua-prepend-path", hlua_config_prepend_path },
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008713 { CFG_GLOBAL, "lua-load", hlua_load },
Thierry Fournier59f11be2020-11-29 00:37:41 +01008714 { CFG_GLOBAL, "lua-load-per-thread", hlua_load_per_thread },
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008715 { CFG_GLOBAL, "tune.lua.session-timeout", hlua_session_timeout },
8716 { CFG_GLOBAL, "tune.lua.task-timeout", hlua_task_timeout },
Thierry FOURNIER56da1012015-10-01 08:42:31 +02008717 { CFG_GLOBAL, "tune.lua.service-timeout", hlua_applet_timeout },
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01008718 { CFG_GLOBAL, "tune.lua.forced-yield", hlua_forced_yield },
Willy Tarreau32f61e22015-03-18 17:54:59 +01008719 { CFG_GLOBAL, "tune.lua.maxmem", hlua_parse_maxmem },
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008720 { 0, NULL, NULL },
8721}};
8722
Willy Tarreau0108d902018-11-25 19:14:37 +01008723INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
8724
Christopher Fauletafd8f102018-11-08 11:34:21 +01008725
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008726/* This function can fail with an abort() due to an Lua critical error.
8727 * We are in the initialisation process of HAProxy, this abort() is
8728 * tolerated.
8729 */
Thierry Fournierb8cef172020-11-28 15:37:17 +01008730int hlua_post_init_state(lua_State *L)
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008731{
8732 struct hlua_init_function *init;
8733 const char *msg;
8734 enum hlua_exec ret;
Thierry Fournierfd107a22016-02-19 19:57:23 +01008735 const char *error;
Thierry Fournier670db242020-11-28 10:49:59 +01008736 const char *kind;
8737 const char *trace;
8738 int return_status = 1;
8739#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504
8740 int nres;
8741#endif
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008742
Willy Tarreaucdb53462020-12-02 12:12:00 +01008743 /* disable memory limit checks if limit is not set */
8744 if (!hlua_global_allocator.limit)
8745 hlua_global_allocator.limit = ~hlua_global_allocator.limit;
8746
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05008747 /* Call post initialisation function in safe environment. */
Thierry Fournier3c539322020-11-28 16:05:05 +01008748 if (setjmp(safe_ljmp_env) != 0) {
8749 lua_atpanic(L, hlua_panic_safe);
Thierry Fournierb8cef172020-11-28 15:37:17 +01008750 if (lua_type(L, -1) == LUA_TSTRING)
Aurelien DARRAGONa3741612024-03-01 15:55:17 +01008751 error = hlua_tostring_safe(L, -1);
Thierry Fournier3d4a6752016-02-19 20:53:30 +01008752 else
8753 error = "critical error";
8754 fprintf(stderr, "Lua post-init: %s.\n", error);
8755 exit(1);
Thierry Fournier3c539322020-11-28 16:05:05 +01008756 } else {
8757 lua_atpanic(L, hlua_panic_ljmp);
Thierry Fournier3d4a6752016-02-19 20:53:30 +01008758 }
Frédéric Lécaille54f2bcf2018-08-29 13:46:24 +02008759
Thierry Fournierb8cef172020-11-28 15:37:17 +01008760 hlua_fcn_post_init(L);
Thierry Fournier3d4a6752016-02-19 20:53:30 +01008761
Thierry Fournierc7492592020-11-28 23:57:24 +01008762 list_for_each_entry(init, &hlua_init_functions[hlua_state_id], l) {
Thierry Fournierb8cef172020-11-28 15:37:17 +01008763 lua_rawgeti(L, LUA_REGISTRYINDEX, init->function_ref);
Aurelien DARRAGON93591b42023-03-20 16:29:55 +01008764 /* function ref should be released right away since it was pushed
8765 * on the stack and will not be used anymore
8766 */
8767 hlua_unref(L, init->function_ref);
Thierry Fournier670db242020-11-28 10:49:59 +01008768
8769#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504
Aurelien DARRAGON2dec9502023-09-08 19:29:08 +02008770 ret = lua_resume(L, NULL, 0, &nres);
Thierry Fournier670db242020-11-28 10:49:59 +01008771#else
Aurelien DARRAGON2dec9502023-09-08 19:29:08 +02008772 ret = lua_resume(L, NULL, 0);
Thierry Fournier670db242020-11-28 10:49:59 +01008773#endif
8774 kind = NULL;
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008775 switch (ret) {
Thierry Fournier670db242020-11-28 10:49:59 +01008776
8777 case LUA_OK:
Thierry Fournierb8cef172020-11-28 15:37:17 +01008778 lua_pop(L, -1);
Thierry Fournier13d08b72020-11-28 11:02:58 +01008779 break;
Thierry Fournier670db242020-11-28 10:49:59 +01008780
8781 case LUA_ERRERR:
8782 kind = "message handler error";
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07008783 /* Fall through */
Thierry Fournier670db242020-11-28 10:49:59 +01008784 case LUA_ERRRUN:
8785 if (!kind)
8786 kind = "runtime error";
Aurelien DARRAGONa3741612024-03-01 15:55:17 +01008787 msg = hlua_tostring_safe(L, -1);
Christopher Fauletd09cc512021-03-24 14:48:45 +01008788 trace = hlua_traceback(L, ", ");
Thierry Fournier670db242020-11-28 10:49:59 +01008789 if (msg)
8790 ha_alert("Lua init: %s: '%s' from %s\n", kind, msg, trace);
8791 else
8792 ha_alert("Lua init: unknown %s from %s\n", kind, trace);
Aurelien DARRAGONadac9322024-03-01 19:54:16 +01008793
8794 lua_settop(L, 0); /* Empty the stack. */
Thierry Fournier670db242020-11-28 10:49:59 +01008795 return_status = 0;
8796 break;
8797
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008798 default:
Thierry Fournier670db242020-11-28 10:49:59 +01008799 /* Unknown error */
8800 kind = "Unknown error";
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07008801 /* Fall through */
Thierry Fournier670db242020-11-28 10:49:59 +01008802 case LUA_YIELD:
8803 /* yield is not configured at this step, this state doesn't happen */
8804 if (!kind)
8805 kind = "yield not allowed";
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07008806 /* Fall through */
Thierry Fournier670db242020-11-28 10:49:59 +01008807 case LUA_ERRMEM:
8808 if (!kind)
8809 kind = "out of memory error";
Aurelien DARRAGON93f5d8d2023-08-09 10:11:49 +02008810 lua_settop(L, 0); /* Empty the stack. */
Christopher Fauletd09cc512021-03-24 14:48:45 +01008811 trace = hlua_traceback(L, ", ");
Thierry Fournier670db242020-11-28 10:49:59 +01008812 ha_alert("Lua init: %s: %s\n", kind, trace);
8813 return_status = 0;
8814 break;
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008815 }
Thierry Fournier670db242020-11-28 10:49:59 +01008816 if (!return_status)
8817 break;
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008818 }
Thierry Fournier3c539322020-11-28 16:05:05 +01008819
8820 lua_atpanic(L, hlua_panic_safe);
Thierry Fournier670db242020-11-28 10:49:59 +01008821 return return_status;
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008822}
8823
Thierry Fournierb8cef172020-11-28 15:37:17 +01008824int hlua_post_init()
8825{
Thierry Fournier59f11be2020-11-29 00:37:41 +01008826 int ret;
8827 int i;
8828 int errors;
8829 char *err = NULL;
8830 struct hlua_function *fcn;
8831
Willy Tarreau42afc592021-08-30 09:35:18 +02008832#if defined(USE_OPENSSL)
Thierry Fournierb8cef172020-11-28 15:37:17 +01008833 /* Initialize SSL server. */
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +01008834 if (socket_ssl->xprt->prepare_srv) {
Thierry Fournierb8cef172020-11-28 15:37:17 +01008835 int saved_used_backed = global.ssl_used_backend;
8836 // don't affect maxconn automatic computation
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +01008837 socket_ssl->xprt->prepare_srv(socket_ssl);
Thierry Fournierb8cef172020-11-28 15:37:17 +01008838 global.ssl_used_backend = saved_used_backed;
8839 }
8840#endif
8841
Thierry Fournierc7492592020-11-28 23:57:24 +01008842 /* Perform post init of common thread */
8843 hlua_state_id = 0;
Thierry Fournier59f11be2020-11-29 00:37:41 +01008844 ha_set_tid(0);
8845 ret = hlua_post_init_state(hlua_states[hlua_state_id]);
8846 if (ret == 0)
8847 return 0;
8848
8849 /* init remaining lua states and load files */
8850 for (hlua_state_id = 2; hlua_state_id < global.nbthread + 1; hlua_state_id++) {
8851
8852 /* set thread context */
8853 ha_set_tid(hlua_state_id - 1);
8854
8855 /* Init lua state */
8856 hlua_states[hlua_state_id] = hlua_init_state(hlua_state_id);
8857
8858 /* Load lua files */
8859 for (i = 0; per_thread_load && per_thread_load[i]; i++) {
8860 ret = hlua_load_state(per_thread_load[i], hlua_states[hlua_state_id], &err);
8861 if (ret != 0) {
8862 ha_alert("Lua init: %s\n", err);
8863 return 0;
8864 }
8865 }
8866 }
8867
8868 /* Reset thread context */
8869 ha_set_tid(0);
8870
8871 /* Execute post init for all states */
8872 for (hlua_state_id = 1; hlua_state_id < global.nbthread + 1; hlua_state_id++) {
8873
8874 /* set thread context */
8875 ha_set_tid(hlua_state_id - 1);
8876
8877 /* run post init */
8878 ret = hlua_post_init_state(hlua_states[hlua_state_id]);
8879 if (ret == 0)
8880 return 0;
8881 }
8882
8883 /* Reset thread context */
8884 ha_set_tid(0);
8885
8886 /* control functions registering. Each function must have:
8887 * - only the function_ref[0] set positive and all other to -1
8888 * - only the function_ref[0] set to -1 and all other positive
8889 * This ensure a same reference is not used both in shared
8890 * lua state and thread dedicated lua state. Note: is the case
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05008891 * reach, the shared state is priority, but the bug will be
Thierry Fournier59f11be2020-11-29 00:37:41 +01008892 * complicated to found for the end user.
8893 */
8894 errors = 0;
8895 list_for_each_entry(fcn, &referenced_functions, l) {
8896 ret = 0;
8897 for (i = 1; i < global.nbthread + 1; i++) {
8898 if (fcn->function_ref[i] == -1)
8899 ret--;
8900 else
8901 ret++;
8902 }
8903 if (abs(ret) != global.nbthread) {
8904 ha_alert("Lua function '%s' is not referenced in all thread. "
8905 "Expect function in all thread or in none thread.\n", fcn->name);
8906 errors++;
8907 continue;
8908 }
8909
8910 if ((fcn->function_ref[0] == -1) == (ret < 0)) {
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05008911 ha_alert("Lua function '%s' is referenced both ins shared Lua context (through lua-load) "
8912 "and per-thread Lua context (through lua-load-per-thread). these two context "
Thierry Fournier59f11be2020-11-29 00:37:41 +01008913 "exclusive.\n", fcn->name);
8914 errors++;
8915 }
8916 }
8917
8918 if (errors > 0)
8919 return 0;
8920
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05008921 /* after this point, this global will no longer be used, so set to
Thierry Fournier59f11be2020-11-29 00:37:41 +01008922 * -1 in order to have probably a segfault if someone use it
8923 */
8924 hlua_state_id = -1;
8925
8926 return 1;
Thierry Fournierb8cef172020-11-28 15:37:17 +01008927}
8928
Willy Tarreau32f61e22015-03-18 17:54:59 +01008929/* The memory allocator used by the Lua stack. <ud> is a pointer to the
8930 * allocator's context. <ptr> is the pointer to alloc/free/realloc. <osize>
8931 * is the previously allocated size or the kind of object in case of a new
Willy Tarreaud36c7fa2020-12-02 12:26:29 +01008932 * allocation. <nsize> is the requested new size. A new allocation is
8933 * indicated by <ptr> being NULL. A free is indicated by <nsize> being
Willy Tarreaucdb53462020-12-02 12:12:00 +01008934 * zero. This one verifies that the limits are respected but is optimized
8935 * for the fast case where limits are not used, hence stats are not updated.
Willy Tarreaue00ad052021-10-22 16:00:02 +02008936 *
8937 * Warning: while this API ressembles glibc's realloc() a lot, glibc surpasses
8938 * POSIX by making realloc(ptr,0) an effective free(), but others do not do
8939 * that and will simply allocate zero as if it were the result of malloc(0),
8940 * so mapping this onto realloc() will lead to memory leaks on non-glibc
8941 * systems.
Willy Tarreau32f61e22015-03-18 17:54:59 +01008942 */
8943static void *hlua_alloc(void *ud, void *ptr, size_t osize, size_t nsize)
8944{
8945 struct hlua_mem_allocator *zone = ud;
Willy Tarreaucdb53462020-12-02 12:12:00 +01008946 size_t limit, old, new;
8947
Tim Duesterhus22586522021-01-08 10:35:33 +01008948 if (unlikely(!ptr && !nsize))
8949 return NULL;
8950
Willy Tarreaucdb53462020-12-02 12:12:00 +01008951 /* a limit of ~0 means unlimited and boot complete, so there's no need
8952 * for accounting anymore.
8953 */
Willy Tarreaue00ad052021-10-22 16:00:02 +02008954 if (likely(~zone->limit == 0)) {
8955 if (!nsize)
8956 ha_free(&ptr);
8957 else
8958 ptr = realloc(ptr, nsize);
8959 return ptr;
8960 }
Willy Tarreau32f61e22015-03-18 17:54:59 +01008961
Willy Tarreaud36c7fa2020-12-02 12:26:29 +01008962 if (!ptr)
8963 osize = 0;
Willy Tarreau32f61e22015-03-18 17:54:59 +01008964
Willy Tarreaucdb53462020-12-02 12:12:00 +01008965 /* enforce strict limits across all threads */
8966 limit = zone->limit;
8967 old = _HA_ATOMIC_LOAD(&zone->allocated);
8968 do {
8969 new = old + nsize - osize;
8970 if (unlikely(nsize && limit && new > limit))
8971 return NULL;
8972 } while (!_HA_ATOMIC_CAS(&zone->allocated, &old, new));
Willy Tarreau32f61e22015-03-18 17:54:59 +01008973
Willy Tarreaue00ad052021-10-22 16:00:02 +02008974 if (!nsize)
8975 ha_free(&ptr);
8976 else
8977 ptr = realloc(ptr, nsize);
Willy Tarreaucdb53462020-12-02 12:12:00 +01008978
8979 if (unlikely(!ptr && nsize)) // failed
8980 _HA_ATOMIC_SUB(&zone->allocated, nsize - osize);
8981
8982 __ha_barrier_atomic_store();
Willy Tarreau32f61e22015-03-18 17:54:59 +01008983 return ptr;
8984}
8985
Thierry Fournierecb83c22020-11-28 15:49:44 +01008986/* This function can fail with an abort() due to a Lua critical error.
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008987 * We are in the initialisation process of HAProxy, this abort() is
8988 * tolerated.
8989 */
Thierry Fournierecb83c22020-11-28 15:49:44 +01008990lua_State *hlua_init_state(int thread_num)
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01008991{
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +01008992 int i;
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +01008993 int idx;
8994 struct sample_fetch *sf;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01008995 struct sample_conv *sc;
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +01008996 char *p;
Thierry Fournierfd107a22016-02-19 19:57:23 +01008997 const char *error_msg;
Thierry Fournier4234dbd2020-11-28 13:18:23 +01008998 void **context;
Thierry Fournier1eac28f2020-11-28 12:26:24 +01008999 lua_State *L;
Thierry Fournier59f11be2020-11-29 00:37:41 +01009000 struct prepend_path *pp;
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +01009001
Thierry FOURNIER380d0932015-01-23 14:27:52 +01009002 /* Init main lua stack. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009003 L = lua_newstate(hlua_alloc, &hlua_global_allocator);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01009004
firexinghebdd336c2023-07-13 11:03:34 +08009005 if (!L) {
9006 fprintf(stderr,
9007 "Lua init: critical error: lua_newstate() returned NULL."
9008 " This may possibly be caused by a memory allocation error.\n");
9009 exit(1);
9010 }
9011
Thierry Fournier4234dbd2020-11-28 13:18:23 +01009012 /* Initialise Lua context to NULL */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009013 context = lua_getextraspace(L);
Thierry Fournier4234dbd2020-11-28 13:18:23 +01009014 *context = NULL;
9015
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08009016 /* From this point, until the end of the initialisation function,
Thierry FOURNIERbabae282015-09-17 11:36:37 +02009017 * the Lua function can fail with an abort. We are in the initialisation
9018 * process of HAProxy, this abort() is tolerated.
9019 */
9020
Thierry Fournier3c539322020-11-28 16:05:05 +01009021 /* Call post initialisation function in safe environment. */
9022 if (setjmp(safe_ljmp_env) != 0) {
9023 lua_atpanic(L, hlua_panic_safe);
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009024 if (lua_type(L, -1) == LUA_TSTRING)
Aurelien DARRAGONa3741612024-03-01 15:55:17 +01009025 error_msg = hlua_tostring_safe(L, -1);
Thierry Fournier2f05cc62020-11-28 16:08:02 +01009026 else
9027 error_msg = "critical error";
9028 fprintf(stderr, "Lua init: %s.\n", error_msg);
9029 exit(1);
Thierry Fournier3c539322020-11-28 16:05:05 +01009030 } else {
9031 lua_atpanic(L, hlua_panic_ljmp);
Thierry Fournier2f05cc62020-11-28 16:08:02 +01009032 }
9033
Thierry FOURNIER380d0932015-01-23 14:27:52 +01009034 /* Initialise lua. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009035 luaL_openlibs(L);
Tim Duesterhus541fe1e2020-01-12 13:55:41 +01009036#define HLUA_PREPEND_PATH_TOSTRING1(x) #x
9037#define HLUA_PREPEND_PATH_TOSTRING(x) HLUA_PREPEND_PATH_TOSTRING1(x)
9038#ifdef HLUA_PREPEND_PATH
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009039 hlua_prepend_path(L, "path", HLUA_PREPEND_PATH_TOSTRING(HLUA_PREPEND_PATH));
Tim Duesterhus541fe1e2020-01-12 13:55:41 +01009040#endif
9041#ifdef HLUA_PREPEND_CPATH
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009042 hlua_prepend_path(L, "cpath", HLUA_PREPEND_PATH_TOSTRING(HLUA_PREPEND_CPATH));
Tim Duesterhus541fe1e2020-01-12 13:55:41 +01009043#endif
9044#undef HLUA_PREPEND_PATH_TOSTRING
9045#undef HLUA_PREPEND_PATH_TOSTRING1
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +01009046
Thierry Fournier59f11be2020-11-29 00:37:41 +01009047 /* Apply configured prepend path */
9048 list_for_each_entry(pp, &prepend_path_list, l)
9049 hlua_prepend_path(L, pp->type, pp->path);
9050
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +01009051 /*
9052 *
9053 * Create "core" object.
9054 *
9055 */
9056
Thierry FOURNIERa2d8c652015-03-11 17:29:39 +01009057 /* This table entry is the object "core" base. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009058 lua_newtable(L);
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +01009059
Thierry Fournierecb83c22020-11-28 15:49:44 +01009060 /* set the thread id */
9061 hlua_class_const_int(L, "thread", thread_num);
9062
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +01009063 /* Push the loglevel constants. */
Christopher Faulet8263e942024-02-29 15:41:17 +01009064 hlua_class_const_int(L, "silent", -1);
Willy Tarreau80f5fae2015-02-27 16:38:20 +01009065 for (i = 0; i < NB_LOG_LEVELS; i++)
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009066 hlua_class_const_int(L, log_levels[i], i);
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +01009067
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01009068 /* Register special functions. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009069 hlua_class_function(L, "register_init", hlua_register_init);
9070 hlua_class_function(L, "register_task", hlua_register_task);
9071 hlua_class_function(L, "register_fetches", hlua_register_fetches);
9072 hlua_class_function(L, "register_converters", hlua_register_converters);
9073 hlua_class_function(L, "register_action", hlua_register_action);
9074 hlua_class_function(L, "register_service", hlua_register_service);
9075 hlua_class_function(L, "register_cli", hlua_register_cli);
9076 hlua_class_function(L, "yield", hlua_yield);
9077 hlua_class_function(L, "set_nice", hlua_set_nice);
9078 hlua_class_function(L, "sleep", hlua_sleep);
9079 hlua_class_function(L, "msleep", hlua_msleep);
9080 hlua_class_function(L, "add_acl", hlua_add_acl);
9081 hlua_class_function(L, "del_acl", hlua_del_acl);
9082 hlua_class_function(L, "set_map", hlua_set_map);
9083 hlua_class_function(L, "del_map", hlua_del_map);
9084 hlua_class_function(L, "tcp", hlua_socket_new);
9085 hlua_class_function(L, "log", hlua_log);
9086 hlua_class_function(L, "Debug", hlua_log_debug);
9087 hlua_class_function(L, "Info", hlua_log_info);
9088 hlua_class_function(L, "Warning", hlua_log_warning);
9089 hlua_class_function(L, "Alert", hlua_log_alert);
9090 hlua_class_function(L, "done", hlua_done);
9091 hlua_fcn_reg_core_fcn(L);
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01009092
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009093 lua_setglobal(L, "core");
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01009094
9095 /*
9096 *
Christopher Faulet0f3c8902020-01-31 18:57:12 +01009097 * Create "act" object.
9098 *
9099 */
9100
9101 /* This table entry is the object "act" base. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009102 lua_newtable(L);
Christopher Faulet0f3c8902020-01-31 18:57:12 +01009103
9104 /* push action return constants */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009105 hlua_class_const_int(L, "CONTINUE", ACT_RET_CONT);
9106 hlua_class_const_int(L, "STOP", ACT_RET_STOP);
9107 hlua_class_const_int(L, "YIELD", ACT_RET_YIELD);
9108 hlua_class_const_int(L, "ERROR", ACT_RET_ERR);
9109 hlua_class_const_int(L, "DONE", ACT_RET_DONE);
9110 hlua_class_const_int(L, "DENY", ACT_RET_DENY);
9111 hlua_class_const_int(L, "ABORT", ACT_RET_ABRT);
9112 hlua_class_const_int(L, "INVALID", ACT_RET_INV);
Christopher Faulet0f3c8902020-01-31 18:57:12 +01009113
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009114 hlua_class_function(L, "wake_time", hlua_set_wake_time);
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01009115
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009116 lua_setglobal(L, "act");
Christopher Faulet0f3c8902020-01-31 18:57:12 +01009117
9118 /*
9119 *
Thierry FOURNIER3def3932015-04-07 11:27:54 +02009120 * Register class Map
9121 *
9122 */
9123
9124 /* This table entry is the object "Map" base. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009125 lua_newtable(L);
Thierry FOURNIER3def3932015-04-07 11:27:54 +02009126
9127 /* register pattern types. */
9128 for (i=0; i<PAT_MATCH_NUM; i++)
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009129 hlua_class_const_int(L, pat_match_names[i], i);
Thierry FOURNIER4dc71972017-01-28 08:33:08 +01009130 for (i=0; i<PAT_MATCH_NUM; i++) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02009131 snprintf(trash.area, trash.size, "_%s", pat_match_names[i]);
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009132 hlua_class_const_int(L, trash.area, i);
Thierry FOURNIER4dc71972017-01-28 08:33:08 +01009133 }
Thierry FOURNIER3def3932015-04-07 11:27:54 +02009134
9135 /* register constructor. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009136 hlua_class_function(L, "new", hlua_map_new);
Thierry FOURNIER3def3932015-04-07 11:27:54 +02009137
9138 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009139 lua_newtable(L);
Thierry FOURNIER3def3932015-04-07 11:27:54 +02009140
Ilya Shipitsind4259502020-04-08 01:07:56 +05009141 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009142 lua_pushstring(L, "__index");
9143 lua_newtable(L);
Thierry FOURNIER3def3932015-04-07 11:27:54 +02009144
9145 /* Register . */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009146 hlua_class_function(L, "lookup", hlua_map_lookup);
9147 hlua_class_function(L, "slookup", hlua_map_slookup);
Thierry FOURNIER3def3932015-04-07 11:27:54 +02009148
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009149 lua_rawset(L, -3);
Thierry FOURNIER3def3932015-04-07 11:27:54 +02009150
Thierry Fournier45e78d72016-02-19 18:34:46 +01009151 /* Register previous table in the registry with reference and named entry.
9152 * The function hlua_register_metatable() pops the stack, so we
9153 * previously create a copy of the table.
9154 */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009155 lua_pushvalue(L, -1); /* Copy the -1 entry and push it on the stack. */
9156 class_map_ref = hlua_register_metatable(L, CLASS_MAP);
Thierry FOURNIER3def3932015-04-07 11:27:54 +02009157
9158 /* Assign the metatable to the mai Map object. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009159 lua_setmetatable(L, -2);
Thierry FOURNIER3def3932015-04-07 11:27:54 +02009160
9161 /* Set a name to the table. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009162 lua_setglobal(L, "Map");
Thierry FOURNIER3def3932015-04-07 11:27:54 +02009163
9164 /*
9165 *
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01009166 * Register class Channel
9167 *
9168 */
9169
9170 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009171 lua_newtable(L);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01009172
Ilya Shipitsind4259502020-04-08 01:07:56 +05009173 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009174 lua_pushstring(L, "__index");
9175 lua_newtable(L);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01009176
9177 /* Register . */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009178 hlua_class_function(L, "get", hlua_channel_get);
9179 hlua_class_function(L, "dup", hlua_channel_dup);
9180 hlua_class_function(L, "getline", hlua_channel_getline);
9181 hlua_class_function(L, "set", hlua_channel_set);
9182 hlua_class_function(L, "append", hlua_channel_append);
9183 hlua_class_function(L, "send", hlua_channel_send);
9184 hlua_class_function(L, "forward", hlua_channel_forward);
9185 hlua_class_function(L, "get_in_len", hlua_channel_get_in_len);
9186 hlua_class_function(L, "get_out_len", hlua_channel_get_out_len);
9187 hlua_class_function(L, "is_full", hlua_channel_is_full);
9188 hlua_class_function(L, "is_resp", hlua_channel_is_resp);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01009189
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009190 lua_rawset(L, -3);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01009191
9192 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009193 class_channel_ref = hlua_register_metatable(L, CLASS_CHANNEL);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01009194
9195 /*
9196 *
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01009197 * Register class Fetches
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01009198 *
9199 */
9200
9201 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009202 lua_newtable(L);
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01009203
Ilya Shipitsind4259502020-04-08 01:07:56 +05009204 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009205 lua_pushstring(L, "__index");
9206 lua_newtable(L);
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01009207
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +01009208 /* Browse existing fetches and create the associated
9209 * object method.
9210 */
9211 sf = NULL;
9212 while ((sf = sample_fetch_getnext(sf, &idx)) != NULL) {
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +01009213 /* gL.Tua doesn't support '.' and '-' in the function names, replace it
9214 * by an underscore.
9215 */
Willy Tarreaufa92f362021-08-26 16:48:53 +02009216 strlcpy2(trash.area, sf->kw, trash.size);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02009217 for (p = trash.area; *p; p++)
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +01009218 if (*p == '.' || *p == '-' || *p == '+')
9219 *p = '_';
9220
9221 /* Register the function. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009222 lua_pushstring(L, trash.area);
9223 lua_pushlightuserdata(L, sf);
9224 lua_pushcclosure(L, hlua_run_sample_fetch, 1);
9225 lua_rawset(L, -3);
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +01009226 }
9227
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009228 lua_rawset(L, -3);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01009229
9230 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009231 class_fetches_ref = hlua_register_metatable(L, CLASS_FETCHES);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01009232
9233 /*
9234 *
Thierry FOURNIER594afe72015-03-10 23:58:30 +01009235 * Register class Converters
9236 *
9237 */
9238
9239 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009240 lua_newtable(L);
Thierry FOURNIER594afe72015-03-10 23:58:30 +01009241
9242 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009243 lua_pushstring(L, "__index");
9244 lua_newtable(L);
Thierry FOURNIER594afe72015-03-10 23:58:30 +01009245
9246 /* Browse existing converters and create the associated
9247 * object method.
9248 */
9249 sc = NULL;
9250 while ((sc = sample_conv_getnext(sc, &idx)) != NULL) {
Thierry FOURNIER594afe72015-03-10 23:58:30 +01009251 /* gL.Tua doesn't support '.' and '-' in the function names, replace it
9252 * by an underscore.
9253 */
Willy Tarreaufa92f362021-08-26 16:48:53 +02009254 strlcpy2(trash.area, sc->kw, trash.size);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02009255 for (p = trash.area; *p; p++)
Thierry FOURNIER594afe72015-03-10 23:58:30 +01009256 if (*p == '.' || *p == '-' || *p == '+')
9257 *p = '_';
9258
9259 /* Register the function. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009260 lua_pushstring(L, trash.area);
9261 lua_pushlightuserdata(L, sc);
9262 lua_pushcclosure(L, hlua_run_sample_conv, 1);
9263 lua_rawset(L, -3);
Thierry FOURNIER594afe72015-03-10 23:58:30 +01009264 }
9265
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009266 lua_rawset(L, -3);
Thierry FOURNIER594afe72015-03-10 23:58:30 +01009267
9268 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009269 class_converters_ref = hlua_register_metatable(L, CLASS_CONVERTERS);
Thierry FOURNIER594afe72015-03-10 23:58:30 +01009270
9271 /*
9272 *
Thierry FOURNIER08504f42015-03-16 14:17:08 +01009273 * Register class HTTP
9274 *
9275 */
9276
9277 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009278 lua_newtable(L);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01009279
Ilya Shipitsind4259502020-04-08 01:07:56 +05009280 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009281 lua_pushstring(L, "__index");
9282 lua_newtable(L);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01009283
9284 /* Register Lua functions. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009285 hlua_class_function(L, "req_get_headers",hlua_http_req_get_headers);
9286 hlua_class_function(L, "req_del_header", hlua_http_req_del_hdr);
9287 hlua_class_function(L, "req_rep_header", hlua_http_req_rep_hdr);
9288 hlua_class_function(L, "req_rep_value", hlua_http_req_rep_val);
9289 hlua_class_function(L, "req_add_header", hlua_http_req_add_hdr);
9290 hlua_class_function(L, "req_set_header", hlua_http_req_set_hdr);
9291 hlua_class_function(L, "req_set_method", hlua_http_req_set_meth);
9292 hlua_class_function(L, "req_set_path", hlua_http_req_set_path);
9293 hlua_class_function(L, "req_set_query", hlua_http_req_set_query);
9294 hlua_class_function(L, "req_set_uri", hlua_http_req_set_uri);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01009295
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009296 hlua_class_function(L, "res_get_headers",hlua_http_res_get_headers);
9297 hlua_class_function(L, "res_del_header", hlua_http_res_del_hdr);
9298 hlua_class_function(L, "res_rep_header", hlua_http_res_rep_hdr);
9299 hlua_class_function(L, "res_rep_value", hlua_http_res_rep_val);
9300 hlua_class_function(L, "res_add_header", hlua_http_res_add_hdr);
9301 hlua_class_function(L, "res_set_header", hlua_http_res_set_hdr);
9302 hlua_class_function(L, "res_set_status", hlua_http_res_set_status);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01009303
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009304 lua_rawset(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01009305
9306 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009307 class_http_ref = hlua_register_metatable(L, CLASS_HTTP);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01009308
9309 /*
9310 *
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009311 * Register class AppletTCP
9312 *
9313 */
9314
9315 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009316 lua_newtable(L);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009317
Ilya Shipitsind4259502020-04-08 01:07:56 +05009318 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009319 lua_pushstring(L, "__index");
9320 lua_newtable(L);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009321
9322 /* Register Lua functions. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009323 hlua_class_function(L, "getline", hlua_applet_tcp_getline);
9324 hlua_class_function(L, "receive", hlua_applet_tcp_recv);
9325 hlua_class_function(L, "send", hlua_applet_tcp_send);
9326 hlua_class_function(L, "set_priv", hlua_applet_tcp_set_priv);
9327 hlua_class_function(L, "get_priv", hlua_applet_tcp_get_priv);
9328 hlua_class_function(L, "set_var", hlua_applet_tcp_set_var);
9329 hlua_class_function(L, "unset_var", hlua_applet_tcp_unset_var);
9330 hlua_class_function(L, "get_var", hlua_applet_tcp_get_var);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009331
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009332 lua_settable(L, -3);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009333
9334 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009335 class_applet_tcp_ref = hlua_register_metatable(L, CLASS_APPLET_TCP);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009336
9337 /*
9338 *
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009339 * Register class AppletHTTP
9340 *
9341 */
9342
9343 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009344 lua_newtable(L);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009345
Ilya Shipitsind4259502020-04-08 01:07:56 +05009346 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009347 lua_pushstring(L, "__index");
9348 lua_newtable(L);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009349
9350 /* Register Lua functions. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009351 hlua_class_function(L, "set_priv", hlua_applet_http_set_priv);
9352 hlua_class_function(L, "get_priv", hlua_applet_http_get_priv);
9353 hlua_class_function(L, "set_var", hlua_applet_http_set_var);
9354 hlua_class_function(L, "unset_var", hlua_applet_http_unset_var);
9355 hlua_class_function(L, "get_var", hlua_applet_http_get_var);
9356 hlua_class_function(L, "getline", hlua_applet_http_getline);
9357 hlua_class_function(L, "receive", hlua_applet_http_recv);
9358 hlua_class_function(L, "send", hlua_applet_http_send);
9359 hlua_class_function(L, "add_header", hlua_applet_http_addheader);
9360 hlua_class_function(L, "set_status", hlua_applet_http_status);
9361 hlua_class_function(L, "start_response", hlua_applet_http_start_response);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009362
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009363 lua_settable(L, -3);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009364
9365 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009366 class_applet_http_ref = hlua_register_metatable(L, CLASS_APPLET_HTTP);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009367
9368 /*
9369 *
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01009370 * Register class TXN
9371 *
9372 */
9373
9374 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009375 lua_newtable(L);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01009376
Ilya Shipitsind4259502020-04-08 01:07:56 +05009377 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009378 lua_pushstring(L, "__index");
9379 lua_newtable(L);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01009380
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01009381 /* Register Lua functions. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009382 hlua_class_function(L, "set_priv", hlua_set_priv);
9383 hlua_class_function(L, "get_priv", hlua_get_priv);
9384 hlua_class_function(L, "set_var", hlua_set_var);
9385 hlua_class_function(L, "unset_var", hlua_unset_var);
9386 hlua_class_function(L, "get_var", hlua_get_var);
9387 hlua_class_function(L, "done", hlua_txn_done);
9388 hlua_class_function(L, "reply", hlua_txn_reply_new);
9389 hlua_class_function(L, "set_loglevel", hlua_txn_set_loglevel);
9390 hlua_class_function(L, "set_tos", hlua_txn_set_tos);
9391 hlua_class_function(L, "set_mark", hlua_txn_set_mark);
9392 hlua_class_function(L, "set_priority_class", hlua_txn_set_priority_class);
9393 hlua_class_function(L, "set_priority_offset", hlua_txn_set_priority_offset);
9394 hlua_class_function(L, "deflog", hlua_txn_deflog);
9395 hlua_class_function(L, "log", hlua_txn_log);
9396 hlua_class_function(L, "Debug", hlua_txn_log_debug);
9397 hlua_class_function(L, "Info", hlua_txn_log_info);
9398 hlua_class_function(L, "Warning", hlua_txn_log_warning);
9399 hlua_class_function(L, "Alert", hlua_txn_log_alert);
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01009400
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009401 lua_rawset(L, -3);
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01009402
9403 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009404 class_txn_ref = hlua_register_metatable(L, CLASS_TXN);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009405
9406 /*
9407 *
Christopher Faulet700d9e82020-01-31 12:21:52 +01009408 * Register class reply
9409 *
9410 */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009411 lua_newtable(L);
9412 lua_pushstring(L, "__index");
9413 lua_newtable(L);
9414 hlua_class_function(L, "set_status", hlua_txn_reply_set_status);
9415 hlua_class_function(L, "add_header", hlua_txn_reply_add_header);
9416 hlua_class_function(L, "del_header", hlua_txn_reply_del_header);
9417 hlua_class_function(L, "set_body", hlua_txn_reply_set_body);
9418 lua_settable(L, -3); /* Sets the __index entry. */
9419 class_txn_reply_ref = luaL_ref(L, LUA_REGISTRYINDEX);
Christopher Faulet700d9e82020-01-31 12:21:52 +01009420
9421
9422 /*
9423 *
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009424 * Register class Socket
9425 *
9426 */
9427
9428 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009429 lua_newtable(L);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009430
Ilya Shipitsind4259502020-04-08 01:07:56 +05009431 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009432 lua_pushstring(L, "__index");
9433 lua_newtable(L);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009434
Baptiste Assmann84bb4932015-03-02 21:40:06 +01009435#ifdef USE_OPENSSL
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009436 hlua_class_function(L, "connect_ssl", hlua_socket_connect_ssl);
Baptiste Assmann84bb4932015-03-02 21:40:06 +01009437#endif
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009438 hlua_class_function(L, "connect", hlua_socket_connect);
9439 hlua_class_function(L, "send", hlua_socket_send);
9440 hlua_class_function(L, "receive", hlua_socket_receive);
9441 hlua_class_function(L, "close", hlua_socket_close);
9442 hlua_class_function(L, "getpeername", hlua_socket_getpeername);
9443 hlua_class_function(L, "getsockname", hlua_socket_getsockname);
9444 hlua_class_function(L, "setoption", hlua_socket_setoption);
9445 hlua_class_function(L, "settimeout", hlua_socket_settimeout);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009446
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009447 lua_rawset(L, -3); /* Push the last 2 entries in the table at index -3 */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009448
9449 /* Register the garbage collector entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009450 lua_pushstring(L, "__gc");
9451 lua_pushcclosure(L, hlua_socket_gc, 0);
9452 lua_rawset(L, -3); /* Push the last 2 entries in the table at index -3 */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009453
9454 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +01009455 class_socket_ref = hlua_register_metatable(L, CLASS_SOCKET);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009456
Thierry Fournieraafc7772020-12-04 11:47:47 +01009457 lua_atpanic(L, hlua_panic_safe);
9458
9459 return L;
9460}
9461
9462void hlua_init(void) {
9463 int i;
Amaury Denoyelle239fdbf2021-03-24 10:22:03 +01009464 char *errmsg;
Thierry Fournieraafc7772020-12-04 11:47:47 +01009465#ifdef USE_OPENSSL
9466 struct srv_kw *kw;
9467 int tmp_error;
9468 char *error;
9469 char *args[] = { /* SSL client configuration. */
9470 "ssl",
9471 "verify",
9472 "none",
9473 NULL
9474 };
9475#endif
9476
9477 /* Init post init function list head */
9478 for (i = 0; i < MAX_THREADS + 1; i++)
9479 LIST_INIT(&hlua_init_functions[i]);
9480
9481 /* Init state for common/shared lua parts */
9482 hlua_state_id = 0;
9483 ha_set_tid(0);
9484 hlua_states[0] = hlua_init_state(0);
9485
9486 /* Init state 1 for thread 0. We have at least one thread. */
9487 hlua_state_id = 1;
9488 ha_set_tid(0);
9489 hlua_states[1] = hlua_init_state(1);
9490
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009491 /* Proxy and server configuration initialisation. */
Amaury Denoyelle239fdbf2021-03-24 10:22:03 +01009492 socket_proxy = alloc_new_proxy("LUA-SOCKET", PR_CAP_FE|PR_CAP_BE|PR_CAP_LUA, &errmsg);
9493 if (!socket_proxy) {
9494 fprintf(stderr, "Lua init: %s\n", errmsg);
9495 exit(1);
9496 }
9497 proxy_preset_defaults(socket_proxy);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009498
9499 /* Init TCP server: unchanged parameters */
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +01009500 socket_tcp = new_server(socket_proxy);
9501 if (!socket_tcp) {
9502 fprintf(stderr, "Lua init: failed to allocate tcp server socket\n");
9503 exit(1);
9504 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009505
9506#ifdef USE_OPENSSL
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009507 /* Init TCP server: unchanged parameters */
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +01009508 socket_ssl = new_server(socket_proxy);
9509 if (!socket_ssl) {
9510 fprintf(stderr, "Lua init: failed to allocate ssl server socket\n");
9511 exit(1);
9512 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009513
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +01009514 socket_ssl->use_ssl = 1;
9515 socket_ssl->xprt = xprt_get(XPRT_SSL);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009516
Bertrand Jacquin80839ff2021-01-21 19:14:46 +00009517 for (i = 0; args[i] != NULL; i++) {
9518 if ((kw = srv_find_kw(args[i])) != NULL) { /* Maybe it's registered server keyword */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009519 /*
9520 *
9521 * If the keyword is not known, we can search in the registered
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08009522 * server keywords. This is useful to configure special SSL
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009523 * features like client certificates and ssl_verify.
9524 *
9525 */
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +01009526 tmp_error = kw->parse(args, &i, socket_proxy, socket_ssl, &error);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009527 if (tmp_error != 0) {
9528 fprintf(stderr, "INTERNAL ERROR: %s\n", error);
9529 abort(); /* This must be never arrives because the command line
9530 not editable by the user. */
9531 }
Bertrand Jacquin80839ff2021-01-21 19:14:46 +00009532 i += kw->skip;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009533 }
9534 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01009535#endif
Thierry Fournier75933d42016-01-21 09:30:18 +01009536
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01009537}
Willy Tarreaubb57d942016-12-21 19:04:56 +01009538
Tim Duesterhusd0c0ca22020-07-04 11:53:26 +02009539static void hlua_deinit()
9540{
Willy Tarreau186f3762020-12-04 11:48:12 +01009541 int thr;
9542
9543 for (thr = 0; thr < MAX_THREADS+1; thr++) {
9544 if (hlua_states[thr])
9545 lua_close(hlua_states[thr]);
9546 }
Willy Tarreau430bf4a2021-03-04 09:45:32 +01009547
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +01009548 free_server(socket_tcp);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01009549
Willy Tarreau0f143af2021-03-05 10:41:48 +01009550#ifdef USE_OPENSSL
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +01009551 free_server(socket_ssl);
Willy Tarreau0f143af2021-03-05 10:41:48 +01009552#endif
Amaury Denoyelle239fdbf2021-03-24 10:22:03 +01009553
9554 free_proxy(socket_proxy);
Tim Duesterhusd0c0ca22020-07-04 11:53:26 +02009555}
9556
9557REGISTER_POST_DEINIT(hlua_deinit);
9558
Willy Tarreau80713382018-11-26 10:19:54 +01009559static void hlua_register_build_options(void)
9560{
Willy Tarreaubb57d942016-12-21 19:04:56 +01009561 char *ptr = NULL;
Willy Tarreau80713382018-11-26 10:19:54 +01009562
Willy Tarreaubb57d942016-12-21 19:04:56 +01009563 memprintf(&ptr, "Built with Lua version : %s", LUA_RELEASE);
9564 hap_register_build_opts(ptr, 1);
9565}
Willy Tarreau80713382018-11-26 10:19:54 +01009566
9567INITCALL0(STG_REGISTER, hlua_register_build_options);