blob: b03d8bb4634f8b936c439ec55509834036b0343a [file] [log] [blame]
Thierry Fourniere726b142016-02-11 17:57:57 +01001/*
2 * Lua unsafe core engine
3 *
4 * Copyright 2015-2016 Thierry Fournier <tfournier@arpalert.org>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
Bertrand Jacquinf4c12d42021-01-21 21:14:07 +000013#define _GNU_SOURCE
14
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +010015#include <ctype.h>
Thierry FOURNIERbabae282015-09-17 11:36:37 +020016#include <setjmp.h>
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +010017
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +010018#include <lauxlib.h>
19#include <lua.h>
20#include <lualib.h>
21
Thierry FOURNIER463119c2015-03-10 00:35:36 +010022#if !defined(LUA_VERSION_NUM) || LUA_VERSION_NUM < 503
23#error "Requires Lua 5.3 or later."
Cyril Bontédc0306e2015-03-02 00:08:40 +010024#endif
25
Willy Tarreau8d2b7772020-05-27 10:58:19 +020026#include <import/ebpttree.h>
Thierry FOURNIER380d0932015-01-23 14:27:52 +010027
Willy Tarreaub2551052020-06-09 09:07:15 +020028#include <haproxy/api.h>
29#include <haproxy/applet.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020030#include <haproxy/arg.h>
Christopher Fauletd25d9262020-08-06 11:04:46 +020031#include <haproxy/auth.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020032#include <haproxy/cfgparse.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020033#include <haproxy/channel.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020034#include <haproxy/cli.h>
Willy Tarreau55542642021-10-08 09:33:24 +020035#include <haproxy/clock.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020036#include <haproxy/connection.h>
Christopher Faulet69c581a2021-05-31 08:54:04 +020037#include <haproxy/filters.h>
Willy Tarreau5413a872020-06-02 19:33:08 +020038#include <haproxy/h1.h>
Willy Tarreau86416052020-06-04 09:20:54 +020039#include <haproxy/hlua.h>
Willy Tarreau8c794002020-06-04 10:05:25 +020040#include <haproxy/hlua_fcn.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020041#include <haproxy/http_ana.h>
William Lallemand3956c4e2021-09-21 16:25:15 +020042#include <haproxy/http_client.h>
Willy Tarreau126ba3a2020-06-04 18:26:43 +020043#include <haproxy/http_fetch.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020044#include <haproxy/http_htx.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020045#include <haproxy/http_rules.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020046#include <haproxy/log.h>
Willy Tarreau2cd58092020-06-04 15:10:43 +020047#include <haproxy/map.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020048#include <haproxy/obj_type.h>
Willy Tarreau225a90a2020-06-04 15:06:28 +020049#include <haproxy/pattern.h>
Willy Tarreau469509b2020-06-04 15:13:30 +020050#include <haproxy/payload.h>
Willy Tarreau3d6ee402021-05-08 20:28:07 +020051#include <haproxy/proxy.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020052#include <haproxy/regex.h>
Willy Tarreaue6ce10b2020-06-04 15:33:47 +020053#include <haproxy/sample.h>
Willy Tarreau198e92a2021-03-05 10:23:32 +010054#include <haproxy/server.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020055#include <haproxy/session.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020056#include <haproxy/stats-t.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020057#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020058#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020059#include <haproxy/task.h>
Willy Tarreau8b550af2020-06-04 17:42:48 +020060#include <haproxy/tcp_rules.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020061#include <haproxy/thread.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +020062#include <haproxy/tools.h>
Willy Tarreaua1718922020-06-04 16:25:31 +020063#include <haproxy/vars.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020064#include <haproxy/xref.h>
65
Thierry FOURNIER380d0932015-01-23 14:27:52 +010066
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +010067/* Lua uses longjmp to perform yield or throwing errors. This
68 * macro is used only for identifying the function that can
69 * not return because a longjmp is executed.
70 * __LJMP marks a prototype of hlua file that can use longjmp.
71 * WILL_LJMP() marks an lua function that will use longjmp.
72 * MAY_LJMP() marks an lua function that may use longjmp.
73 */
74#define __LJMP
Willy Tarreau4e7cc332018-10-20 17:45:48 +020075#define WILL_LJMP(func) do { func; my_unreachable(); } while(0)
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +010076#define MAY_LJMP(func) func
77
Thierry FOURNIERbabae282015-09-17 11:36:37 +020078/* This couple of function executes securely some Lua calls outside of
79 * the lua runtime environment. Each Lua call can return a longjmp
80 * if it encounter a memory error.
81 *
82 * Lua documentation extract:
83 *
84 * If an error happens outside any protected environment, Lua calls
85 * a panic function (see lua_atpanic) and then calls abort, thus
86 * exiting the host application. Your panic function can avoid this
87 * exit by never returning (e.g., doing a long jump to your own
88 * recovery point outside Lua).
89 *
90 * The panic function runs as if it were a message handler (see
91 * §2.3); in particular, the error message is at the top of the
92 * stack. However, there is no guarantee about stack space. To push
93 * anything on the stack, the panic function must first check the
94 * available space (see §4.2).
95 *
96 * We must check all the Lua entry point. This includes:
97 * - The include/proto/hlua.h exported functions
98 * - the task wrapper function
99 * - The action wrapper function
100 * - The converters wrapper function
101 * - The sample-fetch wrapper functions
102 *
Ilya Shipitsin46a030c2020-07-05 16:36:08 +0500103 * It is tolerated that the initialisation function returns an abort.
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -0800104 * Before each Lua abort, an error message is written on stderr.
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200105 *
106 * The macro SET_SAFE_LJMP initialise the longjmp. The Macro
107 * RESET_SAFE_LJMP reset the longjmp. These function must be macro
108 * because they must be exists in the program stack when the longjmp
109 * is called.
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +0200110 *
111 * Note that the Lua processing is not really thread safe. It provides
112 * heavy system which consists to add our own lock function in the Lua
113 * code and recompile the library. This system will probably not accepted
114 * by maintainers of various distribs.
115 *
Ilya Shipitsin856aabc2020-04-16 23:51:34 +0500116 * Our main execution point of the Lua is the function lua_resume(). A
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +0200117 * quick looking on the Lua sources displays a lua_lock() a the start
118 * of function and a lua_unlock() at the end of the function. So I
119 * conclude that the Lua thread safe mode just perform a mutex around
120 * all execution. So I prefer to do this in the HAProxy code, it will be
121 * easier for distro maintainers.
122 *
123 * Note that the HAProxy lua functions rounded by the macro SET_SAFE_LJMP
124 * and RESET_SAFE_LJMP manipulates the Lua stack, so it will be careful
125 * to set mutex around these functions.
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200126 */
Willy Tarreau86abe442018-11-25 20:12:18 +0100127__decl_spinlock(hlua_global_lock);
Thierry FOURNIERffbad792017-07-12 11:39:04 +0200128THREAD_LOCAL jmp_buf safe_ljmp_env;
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200129static int hlua_panic_safe(lua_State *L) { return 0; }
Willy Tarreau6a510902021-07-14 19:41:25 +0200130static int hlua_panic_ljmp(lua_State *L) { WILL_LJMP(longjmp(safe_ljmp_env, 1)); return 0; }
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200131
Thierry Fournier62a22aa2020-11-28 21:06:35 +0100132/* This is the chained list of struct hlua_function referenced
133 * for haproxy action, sample-fetches, converters, cli and
134 * applet bindings. It is used for a post-initialisation control.
135 */
136static struct list referenced_functions = LIST_HEAD_INIT(referenced_functions);
137
Thierry Fournierc7492592020-11-28 23:57:24 +0100138/* This variable is used only during initialization to identify the Lua state
139 * currently being initialized. 0 is the common lua state, 1 to n are the Lua
140 * states dedicated to each thread (in this case hlua_state_id==tid+1).
141 */
142static int hlua_state_id;
143
Thierry Fournier59f11be2020-11-29 00:37:41 +0100144/* This is a NULL-terminated list of lua file which are referenced to load per thread */
145static char **per_thread_load = NULL;
146
147lua_State *hlua_init_state(int thread_id);
148
Willy Tarreau1e7bef12021-08-20 15:47:25 +0200149/* This function takes the Lua global lock. Keep this function's visibility
150 * global so that it can appear in stack dumps and performance profiles!
151 */
152void lua_take_global_lock()
153{
154 HA_SPIN_LOCK(LUA_LOCK, &hlua_global_lock);
155}
156
157static inline void lua_drop_global_lock()
158{
159 HA_SPIN_UNLOCK(LUA_LOCK, &hlua_global_lock);
160}
161
Thierry Fournier7cbe5042020-11-28 17:02:21 +0100162#define SET_SAFE_LJMP_L(__L, __HLUA) \
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200163 ({ \
164 int ret; \
Thierry Fournier021d9862020-11-28 23:42:03 +0100165 if ((__HLUA)->state_id == 0) \
Willy Tarreau1e7bef12021-08-20 15:47:25 +0200166 lua_take_global_lock(); \
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200167 if (setjmp(safe_ljmp_env) != 0) { \
168 lua_atpanic(__L, hlua_panic_safe); \
169 ret = 0; \
Thierry Fournier021d9862020-11-28 23:42:03 +0100170 if ((__HLUA)->state_id == 0) \
Willy Tarreau1e7bef12021-08-20 15:47:25 +0200171 lua_drop_global_lock(); \
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200172 } else { \
173 lua_atpanic(__L, hlua_panic_ljmp); \
174 ret = 1; \
175 } \
176 ret; \
177 })
178
179/* If we are the last function catching Lua errors, we
180 * must reset the panic function.
181 */
Thierry Fournier7cbe5042020-11-28 17:02:21 +0100182#define RESET_SAFE_LJMP_L(__L, __HLUA) \
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200183 do { \
184 lua_atpanic(__L, hlua_panic_safe); \
Thierry Fournier021d9862020-11-28 23:42:03 +0100185 if ((__HLUA)->state_id == 0) \
Willy Tarreau1e7bef12021-08-20 15:47:25 +0200186 lua_drop_global_lock(); \
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200187 } while(0)
188
Thierry Fournier7cbe5042020-11-28 17:02:21 +0100189#define SET_SAFE_LJMP(__HLUA) \
190 SET_SAFE_LJMP_L((__HLUA)->T, __HLUA)
191
192#define RESET_SAFE_LJMP(__HLUA) \
193 RESET_SAFE_LJMP_L((__HLUA)->T, __HLUA)
194
195#define SET_SAFE_LJMP_PARENT(__HLUA) \
Thierry Fournier021d9862020-11-28 23:42:03 +0100196 SET_SAFE_LJMP_L(hlua_states[(__HLUA)->state_id], __HLUA)
Thierry Fournier7cbe5042020-11-28 17:02:21 +0100197
198#define RESET_SAFE_LJMP_PARENT(__HLUA) \
Thierry Fournier021d9862020-11-28 23:42:03 +0100199 RESET_SAFE_LJMP_L(hlua_states[(__HLUA)->state_id], __HLUA)
Thierry Fournier7cbe5042020-11-28 17:02:21 +0100200
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +0200201/* Applet status flags */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200202#define APPLET_DONE 0x01 /* applet processing is done. */
Christopher Faulet18c2e8d2019-03-01 12:02:08 +0100203/* unused: 0x02 */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200204#define APPLET_HDR_SENT 0x04 /* Response header sent. */
Christopher Fauleta2097962019-07-15 16:25:33 +0200205/* unused: 0x08, 0x10 */
Thierry FOURNIERd93ea2b2015-12-20 19:14:52 +0100206#define APPLET_HTTP11 0x20 /* Last chunk sent. */
Christopher Faulet56a3d6e2019-02-27 22:06:23 +0100207#define APPLET_RSP_SENT 0x40 /* The response was fully sent */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200208
Thierry Fournierafc63e22020-11-28 17:06:51 +0100209/* The main Lua execution context. The 0 index is the
210 * common state shared by all threads.
211 */
Willy Tarreau186f3762020-12-04 11:48:12 +0100212static lua_State *hlua_states[MAX_THREADS + 1];
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100213
Christopher Fauletc404f112020-02-26 15:03:09 +0100214#define HLUA_FLT_CB_FINAL 0x00000001
215#define HLUA_FLT_CB_RETVAL 0x00000002
216#define HLUA_FLT_CB_ARG_CHN 0x00000004
217#define HLUA_FLT_CB_ARG_HTTP_MSG 0x00000008
218
Christopher Faulet9f55a502020-02-25 15:21:02 +0100219#define HLUA_FLT_CTX_FL_PAYLOAD 0x00000001
220
Christopher Faulet69c581a2021-05-31 08:54:04 +0200221struct hlua_reg_filter {
222 char *name;
223 int flt_ref[MAX_THREADS + 1];
224 int fun_ref[MAX_THREADS + 1];
225 struct list l;
226};
227
228struct hlua_flt_config {
229 struct hlua_reg_filter *reg;
230 int ref[MAX_THREADS + 1];
231 char **args;
232};
233
234struct hlua_flt_ctx {
235 int ref; /* ref to the filter lua object */
236 struct hlua *hlua[2]; /* lua runtime context (0: request, 1: response) */
237 unsigned int cur_off[2]; /* current offset (0: request, 1: response) */
238 unsigned int cur_len[2]; /* current forwardable length (0: request, 1: response) */
239 unsigned int flags; /* HLUA_FLT_CTX_FL_* */
240};
241
242DECLARE_STATIC_POOL(pool_head_hlua_flt_ctx, "hlua_flt_ctx", sizeof(struct hlua_flt_ctx));
243
Christopher Faulet9f55a502020-02-25 15:21:02 +0100244static int hlua_filter_from_payload(struct filter *filter);
245
Christopher Faulet69c581a2021-05-31 08:54:04 +0200246/* This is the chained list of struct hlua_flt referenced
247 * for haproxy filters. It is used for a post-initialisation control.
248 */
249static struct list referenced_filters = LIST_HEAD_INIT(referenced_filters);
250
251
Thierry FOURNIERebed6e92016-12-16 11:54:07 +0100252/* This is the memory pool containing struct lua for applets
253 * (including cli).
254 */
Willy Tarreau8ceae722018-11-26 11:58:30 +0100255DECLARE_STATIC_POOL(pool_head_hlua, "hlua", sizeof(struct hlua));
Thierry FOURNIERebed6e92016-12-16 11:54:07 +0100256
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +0100257/* Used for Socket connection. */
Amaury Denoyelle239fdbf2021-03-24 10:22:03 +0100258static struct proxy *socket_proxy;
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +0100259static struct server *socket_tcp;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +0100260#ifdef USE_OPENSSL
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +0100261static struct server *socket_ssl;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +0100262#endif
263
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +0100264/* List head of the function called at the initialisation time. */
Thierry Fournierc7492592020-11-28 23:57:24 +0100265struct list hlua_init_functions[MAX_THREADS + 1];
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +0100266
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +0100267/* The following variables contains the reference of the different
268 * Lua classes. These references are useful for identify metadata
269 * associated with an object.
270 */
Thierry FOURNIER65f34c62015-02-16 20:11:43 +0100271static int class_txn_ref;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +0100272static int class_socket_ref;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +0100273static int class_channel_ref;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +0100274static int class_fetches_ref;
Thierry FOURNIER594afe72015-03-10 23:58:30 +0100275static int class_converters_ref;
Thierry FOURNIER08504f42015-03-16 14:17:08 +0100276static int class_http_ref;
Christopher Fauletdf97ac42020-02-26 16:57:19 +0100277static int class_http_msg_ref;
William Lallemand3956c4e2021-09-21 16:25:15 +0200278static int class_httpclient_ref;
Thierry FOURNIER3def3932015-04-07 11:27:54 +0200279static int class_map_ref;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +0200280static int class_applet_tcp_ref;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200281static int class_applet_http_ref;
Christopher Faulet700d9e82020-01-31 12:21:52 +0100282static int class_txn_reply_ref;
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +0100283
Thierry FOURNIERbd413492015-03-03 16:52:26 +0100284/* Global Lua execution timeout. By default Lua, execution linked
Willy Tarreau87b09662015-04-03 00:22:06 +0200285 * with stream (actions, sample-fetches and converters) have a
Thierry FOURNIERbd413492015-03-03 16:52:26 +0100286 * short timeout. Lua linked with tasks doesn't have a timeout
287 * because a task may remain alive during all the haproxy execution.
288 */
289static unsigned int hlua_timeout_session = 4000; /* session timeout. */
290static unsigned int hlua_timeout_task = TICK_ETERNITY; /* task timeout. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +0200291static unsigned int hlua_timeout_applet = 4000; /* applet timeout. */
Thierry FOURNIERbd413492015-03-03 16:52:26 +0100292
Thierry FOURNIERee9f8022015-03-03 17:37:37 +0100293/* Interrupts the Lua processing each "hlua_nb_instruction" instructions.
294 * it is used for preventing infinite loops.
295 *
296 * I test the scheer with an infinite loop containing one incrementation
297 * and one test. I run this loop between 10 seconds, I raise a ceil of
298 * 710M loops from one interrupt each 9000 instructions, so I fix the value
299 * to one interrupt each 10 000 instructions.
300 *
301 * configured | Number of
302 * instructions | loops executed
303 * between two | in milions
304 * forced yields |
305 * ---------------+---------------
306 * 10 | 160
307 * 500 | 670
308 * 1000 | 680
309 * 5000 | 700
310 * 7000 | 700
311 * 8000 | 700
312 * 9000 | 710 <- ceil
313 * 10000 | 710
314 * 100000 | 710
315 * 1000000 | 710
316 *
317 */
318static unsigned int hlua_nb_instruction = 10000;
319
Willy Tarreaucdb53462020-12-02 12:12:00 +0100320/* Descriptor for the memory allocation state. The limit is pre-initialised to
321 * 0 until it is replaced by "tune.lua.maxmem" during the config parsing, or it
322 * is replaced with ~0 during post_init after everything was loaded. This way
323 * it is guaranteed that if limit is ~0 the boot is complete and that if it's
324 * zero it's not yet limited and proper accounting is required.
Willy Tarreau32f61e22015-03-18 17:54:59 +0100325 */
326struct hlua_mem_allocator {
327 size_t allocated;
328 size_t limit;
329};
330
Willy Tarreaucdb53462020-12-02 12:12:00 +0100331static struct hlua_mem_allocator hlua_global_allocator THREAD_ALIGNED(64);
Willy Tarreau32f61e22015-03-18 17:54:59 +0100332
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100333/* These functions converts types between HAProxy internal args or
334 * sample and LUA types. Another function permits to check if the
335 * LUA stack contains arguments according with an required ARG_T
336 * format.
337 */
338static int hlua_arg2lua(lua_State *L, const struct arg *arg);
339static int hlua_lua2arg(lua_State *L, int ud, struct arg *arg);
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100340__LJMP static int hlua_lua2arg_check(lua_State *L, int first, struct arg *argp,
David Carlier0c437f42016-04-27 16:21:56 +0100341 uint64_t mask, struct proxy *p);
Willy Tarreau5eadada2015-03-10 17:28:54 +0100342static int hlua_smp2lua(lua_State *L, struct sample *smp);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100343static int hlua_smp2lua_str(lua_State *L, struct sample *smp);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100344static int hlua_lua2smp(lua_State *L, int ud, struct sample *smp);
345
Christopher Faulet9d1332b2020-02-24 16:46:16 +0100346__LJMP static int hlua_http_get_headers(lua_State *L, struct http_msg *msg);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200347
Thierry Fournier59f11be2020-11-29 00:37:41 +0100348struct prepend_path {
349 struct list l;
350 char *type;
351 char *path;
352};
353
354static struct list prepend_path_list = LIST_HEAD_INIT(prepend_path_list);
355
Thierry FOURNIER23bc3752015-09-11 19:15:43 +0200356#define SEND_ERR(__be, __fmt, __args...) \
357 do { \
358 send_log(__be, LOG_ERR, __fmt, ## __args); \
359 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) \
Christopher Faulet767a84b2017-11-24 16:50:31 +0100360 ha_alert(__fmt, ## __args); \
Thierry FOURNIER23bc3752015-09-11 19:15:43 +0200361 } while (0)
362
Thierry Fournier62a22aa2020-11-28 21:06:35 +0100363static inline struct hlua_function *new_hlua_function()
364{
365 struct hlua_function *fcn;
Thierry Fournierc7492592020-11-28 23:57:24 +0100366 int i;
Thierry Fournier62a22aa2020-11-28 21:06:35 +0100367
368 fcn = calloc(1, sizeof(*fcn));
369 if (!fcn)
370 return NULL;
Willy Tarreau2b718102021-04-21 07:32:39 +0200371 LIST_APPEND(&referenced_functions, &fcn->l);
Thierry Fournierc7492592020-11-28 23:57:24 +0100372 for (i = 0; i < MAX_THREADS + 1; i++)
373 fcn->function_ref[i] = -1;
Thierry Fournier62a22aa2020-11-28 21:06:35 +0100374 return fcn;
375}
376
Christopher Fauletdda44442021-04-12 14:05:43 +0200377static inline void release_hlua_function(struct hlua_function *fcn)
378{
379 if (!fcn)
380 return;
381 if (fcn->name)
382 ha_free(&fcn->name);
Willy Tarreau2b718102021-04-21 07:32:39 +0200383 LIST_DELETE(&fcn->l);
Christopher Fauletdda44442021-04-12 14:05:43 +0200384 ha_free(&fcn);
385}
386
Thierry Fournierc7492592020-11-28 23:57:24 +0100387/* If the common state is set, the stack id is 0, otherwise it is the tid + 1 */
388static inline int fcn_ref_to_stack_id(struct hlua_function *fcn)
389{
390 if (fcn->function_ref[0] == -1)
391 return tid + 1;
392 return 0;
393}
394
Christopher Faulet69c581a2021-05-31 08:54:04 +0200395/* Create a new registered filter. Only its name is filled */
396static inline struct hlua_reg_filter *new_hlua_reg_filter(const char *name)
397{
398 struct hlua_reg_filter *reg_flt;
399 int i;
400
401 reg_flt = calloc(1, sizeof(*reg_flt));
402 if (!reg_flt)
403 return NULL;
404 reg_flt->name = strdup(name);
405 if (!reg_flt->name) {
406 free(reg_flt);
407 return NULL;
408 }
409 LIST_APPEND(&referenced_filters, &reg_flt->l);
410 for (i = 0; i < MAX_THREADS + 1; i++) {
411 reg_flt->flt_ref[i] = -1;
412 reg_flt->fun_ref[i] = -1;
413 }
414 return reg_flt;
415}
416
417/* Release a registered filter */
418static inline void release_hlua_reg_filter(struct hlua_reg_filter *reg_flt)
419{
420 if (!reg_flt)
421 return;
422 if (reg_flt->name)
423 ha_free(&reg_flt->name);
424 LIST_DELETE(&reg_flt->l);
425 ha_free(&reg_flt);
426}
427
428/* If the common state is set, the stack id is 0, otherwise it is the tid + 1 */
429static inline int reg_flt_to_stack_id(struct hlua_reg_filter *reg_flt)
430{
431 if (reg_flt->fun_ref[0] == -1)
432 return tid + 1;
433 return 0;
434}
435
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100436/* Used to check an Lua function type in the stack. It creates and
437 * returns a reference of the function. This function throws an
438 * error if the rgument is not a "function".
439 */
440__LJMP unsigned int hlua_checkfunction(lua_State *L, int argno)
441{
442 if (!lua_isfunction(L, argno)) {
Thierry FOURNIERfd1e9552018-02-23 18:41:18 +0100443 const char *msg = lua_pushfstring(L, "function expected, got %s", luaL_typename(L, argno));
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100444 WILL_LJMP(luaL_argerror(L, argno, msg));
445 }
446 lua_pushvalue(L, argno);
447 return luaL_ref(L, LUA_REGISTRYINDEX);
448}
449
Christopher Fauletba9e21d2020-02-25 10:20:04 +0100450/* Used to check an Lua table type in the stack. It creates and
451 * returns a reference of the table. This function throws an
452 * error if the rgument is not a "table".
453 */
454__LJMP unsigned int hlua_checktable(lua_State *L, int argno)
455{
456 if (!lua_istable(L, argno)) {
457 const char *msg = lua_pushfstring(L, "table expected, got %s", luaL_typename(L, argno));
458 WILL_LJMP(luaL_argerror(L, argno, msg));
459 }
460 lua_pushvalue(L, argno);
461 return luaL_ref(L, LUA_REGISTRYINDEX);
462}
463
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200464/* Return the string that is of the top of the stack. */
465const char *hlua_get_top_error_string(lua_State *L)
466{
467 if (lua_gettop(L) < 1)
468 return "unknown error";
469 if (lua_type(L, -1) != LUA_TSTRING)
470 return "unknown error";
471 return lua_tostring(L, -1);
472}
473
Christopher Fauletd09cc512021-03-24 14:48:45 +0100474__LJMP const char *hlua_traceback(lua_State *L, const char* sep)
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200475{
476 lua_Debug ar;
477 int level = 0;
Willy Tarreau83061a82018-07-13 11:56:34 +0200478 struct buffer *msg = get_trash_chunk();
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200479
480 while (lua_getstack(L, level++, &ar)) {
481
482 /* Add separator */
Christopher Fauletd09cc512021-03-24 14:48:45 +0100483 if (b_data(msg))
484 chunk_appendf(msg, "%s", sep);
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200485
486 /* Fill fields:
487 * 'S': fills in the fields source, short_src, linedefined, lastlinedefined, and what;
488 * 'l': fills in the field currentline;
489 * 'n': fills in the field name and namewhat;
490 * 't': fills in the field istailcall;
491 */
492 lua_getinfo(L, "Slnt", &ar);
493
494 /* Append code localisation */
495 if (ar.currentline > 0)
Christopher Fauletd09cc512021-03-24 14:48:45 +0100496 chunk_appendf(msg, "%s:%d: ", ar.short_src, ar.currentline);
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200497 else
Christopher Fauletd09cc512021-03-24 14:48:45 +0100498 chunk_appendf(msg, "%s: ", ar.short_src);
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200499
500 /*
501 * Get function name
502 *
503 * if namewhat is no empty, name is defined.
504 * what contains "Lua" for Lua function, "C" for C function,
505 * or "main" for main code.
506 */
507 if (*ar.namewhat != '\0' && ar.name != NULL) /* is there a name from code? */
Christopher Fauletd09cc512021-03-24 14:48:45 +0100508 chunk_appendf(msg, "in %s '%s'", ar.namewhat, ar.name); /* use it */
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200509
510 else if (*ar.what == 'm') /* "main", the code is not executed in a function */
Christopher Fauletd09cc512021-03-24 14:48:45 +0100511 chunk_appendf(msg, "in main chunk");
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200512
513 else if (*ar.what != 'C') /* for Lua functions, use <file:line> */
Christopher Fauletd09cc512021-03-24 14:48:45 +0100514 chunk_appendf(msg, "in function line %d", ar.linedefined);
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200515
516 else /* nothing left... */
517 chunk_appendf(msg, "?");
518
519
520 /* Display tailed call */
521 if (ar.istailcall)
522 chunk_appendf(msg, " ...");
523 }
524
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200525 return msg->area;
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200526}
527
528
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100529/* This function check the number of arguments available in the
530 * stack. If the number of arguments available is not the same
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +0500531 * then <nb> an error is thrown.
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100532 */
533__LJMP static inline void check_args(lua_State *L, int nb, char *fcn)
534{
535 if (lua_gettop(L) == nb)
536 return;
537 WILL_LJMP(luaL_error(L, "'%s' needs %d arguments", fcn, nb));
538}
539
Mark Lakes22154b42018-01-29 14:38:40 -0800540/* This function pushes an error string prefixed by the file name
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100541 * and the line number where the error is encountered.
542 */
543static int hlua_pusherror(lua_State *L, const char *fmt, ...)
544{
545 va_list argp;
546 va_start(argp, fmt);
547 luaL_where(L, 1);
548 lua_pushvfstring(L, fmt, argp);
549 va_end(argp);
550 lua_concat(L, 2);
551 return 1;
552}
553
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100554/* This functions is used with sample fetch and converters. It
555 * converts the HAProxy configuration argument in a lua stack
556 * values.
557 *
558 * It takes an array of "arg", and each entry of the array is
559 * converted and pushed in the LUA stack.
560 */
561static int hlua_arg2lua(lua_State *L, const struct arg *arg)
562{
563 switch (arg->type) {
564 case ARGT_SINT:
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100565 case ARGT_TIME:
566 case ARGT_SIZE:
Thierry FOURNIERf90838b2015-03-06 13:48:32 +0100567 lua_pushinteger(L, arg->data.sint);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100568 break;
569
570 case ARGT_STR:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200571 lua_pushlstring(L, arg->data.str.area, arg->data.str.data);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100572 break;
573
574 case ARGT_IPV4:
575 case ARGT_IPV6:
576 case ARGT_MSK4:
577 case ARGT_MSK6:
578 case ARGT_FE:
579 case ARGT_BE:
580 case ARGT_TAB:
581 case ARGT_SRV:
582 case ARGT_USR:
583 case ARGT_MAP:
584 default:
585 lua_pushnil(L);
586 break;
587 }
588 return 1;
589}
590
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +0500591/* This function take one entry in an LUA stack at the index "ud",
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100592 * and try to convert it in an HAProxy argument entry. This is useful
Ilya Shipitsind4259502020-04-08 01:07:56 +0500593 * with sample fetch wrappers. The input arguments are given to the
594 * lua wrapper and converted as arg list by the function.
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100595 */
596static int hlua_lua2arg(lua_State *L, int ud, struct arg *arg)
597{
598 switch (lua_type(L, ud)) {
599
600 case LUA_TNUMBER:
601 case LUA_TBOOLEAN:
602 arg->type = ARGT_SINT;
603 arg->data.sint = lua_tointeger(L, ud);
604 break;
605
606 case LUA_TSTRING:
607 arg->type = ARGT_STR;
Tim Duesterhus2e89dec2019-09-29 23:03:08 +0200608 arg->data.str.area = (char *)lua_tolstring(L, ud, &arg->data.str.data);
Tim Duesterhus29d2e8a2019-09-29 23:03:07 +0200609 /* We don't know the actual size of the underlying allocation, so be conservative. */
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200610 arg->data.str.size = arg->data.str.data+1; /* count the terminating null byte */
Tim Duesterhus29d2e8a2019-09-29 23:03:07 +0200611 arg->data.str.head = 0;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100612 break;
613
614 case LUA_TUSERDATA:
615 case LUA_TNIL:
616 case LUA_TTABLE:
617 case LUA_TFUNCTION:
618 case LUA_TTHREAD:
619 case LUA_TLIGHTUSERDATA:
620 arg->type = ARGT_SINT;
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +0200621 arg->data.sint = 0;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100622 break;
623 }
624 return 1;
625}
626
627/* the following functions are used to convert a struct sample
628 * in Lua type. This useful to convert the return of the
Ilya Shipitsind4259502020-04-08 01:07:56 +0500629 * fetches or converters.
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100630 */
Willy Tarreau5eadada2015-03-10 17:28:54 +0100631static int hlua_smp2lua(lua_State *L, struct sample *smp)
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100632{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200633 switch (smp->data.type) {
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100634 case SMP_T_SINT:
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100635 case SMP_T_BOOL:
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200636 lua_pushinteger(L, smp->data.u.sint);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100637 break;
638
639 case SMP_T_BIN:
640 case SMP_T_STR:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200641 lua_pushlstring(L, smp->data.u.str.area, smp->data.u.str.data);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100642 break;
643
644 case SMP_T_METH:
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200645 switch (smp->data.u.meth.meth) {
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100646 case HTTP_METH_OPTIONS: lua_pushstring(L, "OPTIONS"); break;
647 case HTTP_METH_GET: lua_pushstring(L, "GET"); break;
648 case HTTP_METH_HEAD: lua_pushstring(L, "HEAD"); break;
649 case HTTP_METH_POST: lua_pushstring(L, "POST"); break;
650 case HTTP_METH_PUT: lua_pushstring(L, "PUT"); break;
651 case HTTP_METH_DELETE: lua_pushstring(L, "DELETE"); break;
652 case HTTP_METH_TRACE: lua_pushstring(L, "TRACE"); break;
653 case HTTP_METH_CONNECT: lua_pushstring(L, "CONNECT"); break;
654 case HTTP_METH_OTHER:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200655 lua_pushlstring(L, smp->data.u.meth.str.area, smp->data.u.meth.str.data);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100656 break;
657 default:
658 lua_pushnil(L);
659 break;
660 }
661 break;
662
663 case SMP_T_IPV4:
664 case SMP_T_IPV6:
665 case SMP_T_ADDR: /* This type is never used to qualify a sample. */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200666 if (sample_casts[smp->data.type][SMP_T_STR] &&
667 sample_casts[smp->data.type][SMP_T_STR](smp))
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200668 lua_pushlstring(L, smp->data.u.str.area, smp->data.u.str.data);
Willy Tarreau5eadada2015-03-10 17:28:54 +0100669 else
670 lua_pushnil(L);
671 break;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100672 default:
673 lua_pushnil(L);
674 break;
675 }
676 return 1;
677}
678
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100679/* the following functions are used to convert a struct sample
680 * in Lua strings. This is useful to convert the return of the
Ilya Shipitsind4259502020-04-08 01:07:56 +0500681 * fetches or converters.
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100682 */
683static int hlua_smp2lua_str(lua_State *L, struct sample *smp)
684{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200685 switch (smp->data.type) {
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100686
687 case SMP_T_BIN:
688 case SMP_T_STR:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200689 lua_pushlstring(L, smp->data.u.str.area, smp->data.u.str.data);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100690 break;
691
692 case SMP_T_METH:
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200693 switch (smp->data.u.meth.meth) {
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100694 case HTTP_METH_OPTIONS: lua_pushstring(L, "OPTIONS"); break;
695 case HTTP_METH_GET: lua_pushstring(L, "GET"); break;
696 case HTTP_METH_HEAD: lua_pushstring(L, "HEAD"); break;
697 case HTTP_METH_POST: lua_pushstring(L, "POST"); break;
698 case HTTP_METH_PUT: lua_pushstring(L, "PUT"); break;
699 case HTTP_METH_DELETE: lua_pushstring(L, "DELETE"); break;
700 case HTTP_METH_TRACE: lua_pushstring(L, "TRACE"); break;
701 case HTTP_METH_CONNECT: lua_pushstring(L, "CONNECT"); break;
702 case HTTP_METH_OTHER:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200703 lua_pushlstring(L, smp->data.u.meth.str.area, smp->data.u.meth.str.data);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100704 break;
705 default:
706 lua_pushstring(L, "");
707 break;
708 }
709 break;
710
711 case SMP_T_SINT:
712 case SMP_T_BOOL:
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100713 case SMP_T_IPV4:
714 case SMP_T_IPV6:
715 case SMP_T_ADDR: /* This type is never used to qualify a sample. */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200716 if (sample_casts[smp->data.type][SMP_T_STR] &&
717 sample_casts[smp->data.type][SMP_T_STR](smp))
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200718 lua_pushlstring(L, smp->data.u.str.area, smp->data.u.str.data);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100719 else
720 lua_pushstring(L, "");
721 break;
722 default:
723 lua_pushstring(L, "");
724 break;
725 }
726 return 1;
727}
728
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100729/* the following functions are used to convert an Lua type in a
730 * struct sample. This is useful to provide data from a converter
731 * to the LUA code.
732 */
733static int hlua_lua2smp(lua_State *L, int ud, struct sample *smp)
734{
735 switch (lua_type(L, ud)) {
736
737 case LUA_TNUMBER:
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200738 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200739 smp->data.u.sint = lua_tointeger(L, ud);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100740 break;
741
742
743 case LUA_TBOOLEAN:
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200744 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200745 smp->data.u.sint = lua_toboolean(L, ud);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100746 break;
747
748 case LUA_TSTRING:
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200749 smp->data.type = SMP_T_STR;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100750 smp->flags |= SMP_F_CONST;
Tim Duesterhus2e89dec2019-09-29 23:03:08 +0200751 smp->data.u.str.area = (char *)lua_tolstring(L, ud, &smp->data.u.str.data);
Tim Duesterhus29d2e8a2019-09-29 23:03:07 +0200752 /* We don't know the actual size of the underlying allocation, so be conservative. */
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200753 smp->data.u.str.size = smp->data.u.str.data+1; /* count the terminating null byte */
Tim Duesterhus29d2e8a2019-09-29 23:03:07 +0200754 smp->data.u.str.head = 0;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100755 break;
756
757 case LUA_TUSERDATA:
758 case LUA_TNIL:
759 case LUA_TTABLE:
760 case LUA_TFUNCTION:
761 case LUA_TTHREAD:
762 case LUA_TLIGHTUSERDATA:
Thierry FOURNIER93405e12015-08-26 14:19:03 +0200763 case LUA_TNONE:
764 default:
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200765 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200766 smp->data.u.sint = 0;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100767 break;
768 }
769 return 1;
770}
771
Ilya Shipitsind4259502020-04-08 01:07:56 +0500772/* This function check the "argp" built by another conversion function
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -0800773 * is in accord with the expected argp defined by the "mask". The function
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100774 * returns true or false. It can be adjust the types if there compatibles.
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100775 *
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +0500776 * This function assumes that the argp argument contains ARGM_NBARGS + 1
Willy Tarreauee0d7272021-07-16 10:26:56 +0200777 * entries and that there is at least one stop at the last position.
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100778 */
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100779__LJMP int hlua_lua2arg_check(lua_State *L, int first, struct arg *argp,
David Carlier0c437f42016-04-27 16:21:56 +0100780 uint64_t mask, struct proxy *p)
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100781{
782 int min_arg;
Willy Tarreauee0d7272021-07-16 10:26:56 +0200783 int idx;
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100784 struct proxy *px;
Christopher Fauletd25d9262020-08-06 11:04:46 +0200785 struct userlist *ul;
Christopher Fauletfd2e9062020-08-06 11:10:57 +0200786 struct my_regex *reg;
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200787 const char *msg = NULL;
Christopher Fauletfd2e9062020-08-06 11:10:57 +0200788 char *sname, *pname, *err = NULL;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100789
790 idx = 0;
791 min_arg = ARGM(mask);
792 mask >>= ARGM_BITS;
793
794 while (1) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200795 struct buffer tmp = BUF_NULL;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100796
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100797 /* Check for mandatory arguments. */
798 if (argp[idx].type == ARGT_STOP) {
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100799 if (idx < min_arg) {
800
801 /* If miss other argument than the first one, we return an error. */
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200802 if (idx > 0) {
803 msg = "Mandatory argument expected";
804 goto error;
805 }
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100806
807 /* If first argument have a certain type, some default values
808 * may be used. See the function smp_resolve_args().
809 */
810 switch (mask & ARGT_MASK) {
811
812 case ARGT_FE:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200813 if (!(p->cap & PR_CAP_FE)) {
814 msg = "Mandatory argument expected";
815 goto error;
816 }
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100817 argp[idx].data.prx = p;
818 argp[idx].type = ARGT_FE;
819 argp[idx+1].type = ARGT_STOP;
820 break;
821
822 case ARGT_BE:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200823 if (!(p->cap & PR_CAP_BE)) {
824 msg = "Mandatory argument expected";
825 goto error;
826 }
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100827 argp[idx].data.prx = p;
828 argp[idx].type = ARGT_BE;
829 argp[idx+1].type = ARGT_STOP;
830 break;
831
832 case ARGT_TAB:
833 argp[idx].data.prx = p;
834 argp[idx].type = ARGT_TAB;
835 argp[idx+1].type = ARGT_STOP;
836 break;
837
838 default:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200839 msg = "Mandatory argument expected";
840 goto error;
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100841 break;
842 }
843 }
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200844 break;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100845 }
846
Ilya Shipitsin856aabc2020-04-16 23:51:34 +0500847 /* Check for exceed the number of required argument. */
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100848 if ((mask & ARGT_MASK) == ARGT_STOP &&
849 argp[idx].type != ARGT_STOP) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200850 msg = "Last argument expected";
851 goto error;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100852 }
853
854 if ((mask & ARGT_MASK) == ARGT_STOP &&
855 argp[idx].type == ARGT_STOP) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200856 break;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100857 }
858
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200859 /* Convert some argument types. All string in argp[] are for not
860 * duplicated yet.
861 */
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100862 switch (mask & ARGT_MASK) {
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100863 case ARGT_SINT:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200864 if (argp[idx].type != ARGT_SINT) {
865 msg = "integer expected";
866 goto error;
867 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100868 argp[idx].type = ARGT_SINT;
869 break;
870
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100871 case ARGT_TIME:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200872 if (argp[idx].type != ARGT_SINT) {
873 msg = "integer expected";
874 goto error;
875 }
Thierry FOURNIER29176f32015-07-07 00:41:29 +0200876 argp[idx].type = ARGT_TIME;
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100877 break;
878
879 case ARGT_SIZE:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200880 if (argp[idx].type != ARGT_SINT) {
881 msg = "integer expected";
882 goto error;
883 }
Thierry FOURNIER29176f32015-07-07 00:41:29 +0200884 argp[idx].type = ARGT_SIZE;
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100885 break;
886
887 case ARGT_FE:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200888 if (argp[idx].type != ARGT_STR) {
889 msg = "string expected";
890 goto error;
891 }
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200892 argp[idx].data.prx = proxy_fe_by_name(argp[idx].data.str.area);
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200893 if (!argp[idx].data.prx) {
894 msg = "frontend doesn't exist";
895 goto error;
896 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100897 argp[idx].type = ARGT_FE;
898 break;
899
900 case ARGT_BE:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200901 if (argp[idx].type != ARGT_STR) {
902 msg = "string expected";
903 goto error;
904 }
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200905 argp[idx].data.prx = proxy_be_by_name(argp[idx].data.str.area);
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200906 if (!argp[idx].data.prx) {
907 msg = "backend doesn't exist";
908 goto error;
909 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100910 argp[idx].type = ARGT_BE;
911 break;
912
913 case ARGT_TAB:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200914 if (argp[idx].type != ARGT_STR) {
915 msg = "string expected";
916 goto error;
917 }
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200918 argp[idx].data.t = stktable_find_by_name(argp[idx].data.str.area);
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200919 if (!argp[idx].data.t) {
920 msg = "table doesn't exist";
921 goto error;
922 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100923 argp[idx].type = ARGT_TAB;
924 break;
925
926 case ARGT_SRV:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200927 if (argp[idx].type != ARGT_STR) {
928 msg = "string expected";
929 goto error;
930 }
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200931 sname = strrchr(argp[idx].data.str.area, '/');
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100932 if (sname) {
933 *sname++ = '\0';
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200934 pname = argp[idx].data.str.area;
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200935 px = proxy_be_by_name(pname);
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200936 if (!px) {
937 msg = "backend doesn't exist";
938 goto error;
939 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100940 }
941 else {
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200942 sname = argp[idx].data.str.area;
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100943 px = p;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100944 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100945 argp[idx].data.srv = findserver(px, sname);
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200946 if (!argp[idx].data.srv) {
947 msg = "server doesn't exist";
948 goto error;
949 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100950 argp[idx].type = ARGT_SRV;
951 break;
952
953 case ARGT_IPV4:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200954 if (argp[idx].type != ARGT_STR) {
955 msg = "string expected";
956 goto error;
957 }
958 if (inet_pton(AF_INET, argp[idx].data.str.area, &argp[idx].data.ipv4)) {
959 msg = "invalid IPv4 address";
960 goto error;
961 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100962 argp[idx].type = ARGT_IPV4;
963 break;
964
965 case ARGT_MSK4:
Christopher Faulete663a6e2020-08-07 09:11:22 +0200966 if (argp[idx].type == ARGT_SINT)
967 len2mask4(argp[idx].data.sint, &argp[idx].data.ipv4);
968 else if (argp[idx].type == ARGT_STR) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200969 if (!str2mask(argp[idx].data.str.area, &argp[idx].data.ipv4)) {
970 msg = "invalid IPv4 mask";
971 goto error;
972 }
973 }
974 else {
975 msg = "integer or string expected";
976 goto error;
Christopher Faulete663a6e2020-08-07 09:11:22 +0200977 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100978 argp[idx].type = ARGT_MSK4;
979 break;
980
981 case ARGT_IPV6:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200982 if (argp[idx].type != ARGT_STR) {
983 msg = "string expected";
984 goto error;
985 }
986 if (inet_pton(AF_INET6, argp[idx].data.str.area, &argp[idx].data.ipv6)) {
987 msg = "invalid IPv6 address";
988 goto error;
989 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100990 argp[idx].type = ARGT_IPV6;
991 break;
992
993 case ARGT_MSK6:
Christopher Faulete663a6e2020-08-07 09:11:22 +0200994 if (argp[idx].type == ARGT_SINT)
995 len2mask6(argp[idx].data.sint, &argp[idx].data.ipv6);
996 else if (argp[idx].type == ARGT_STR) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200997 if (!str2mask6(argp[idx].data.str.area, &argp[idx].data.ipv6)) {
998 msg = "invalid IPv6 mask";
999 goto error;
1000 }
1001 }
1002 else {
1003 msg = "integer or string expected";
1004 goto error;
Christopher Faulete663a6e2020-08-07 09:11:22 +02001005 }
Tim Duesterhusb814da62018-01-25 16:24:50 +01001006 argp[idx].type = ARGT_MSK6;
1007 break;
1008
Christopher Fauletfd2e9062020-08-06 11:10:57 +02001009 case ARGT_REG:
1010 if (argp[idx].type != ARGT_STR) {
1011 msg = "string expected";
1012 goto error;
1013 }
1014 reg = regex_comp(argp[idx].data.str.area, !(argp[idx].type_flags & ARGF_REG_ICASE), 1, &err);
1015 if (!reg) {
1016 msg = lua_pushfstring(L, "error compiling regex '%s' : '%s'",
1017 argp[idx].data.str.area, err);
1018 free(err);
1019 goto error;
1020 }
1021 argp[idx].type = ARGT_REG;
1022 argp[idx].data.reg = reg;
1023 break;
1024
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +01001025 case ARGT_USR:
Christopher Fauletd25d9262020-08-06 11:04:46 +02001026 if (argp[idx].type != ARGT_STR) {
1027 msg = "string expected";
1028 goto error;
1029 }
1030 if (p->uri_auth && p->uri_auth->userlist &&
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001031 strcmp(p->uri_auth->userlist->name, argp[idx].data.str.area) == 0)
Christopher Fauletd25d9262020-08-06 11:04:46 +02001032 ul = p->uri_auth->userlist;
1033 else
1034 ul = auth_find_userlist(argp[idx].data.str.area);
1035
1036 if (!ul) {
1037 msg = lua_pushfstring(L, "unable to find userlist '%s'", argp[idx].data.str.area);
1038 goto error;
1039 }
1040 argp[idx].type = ARGT_USR;
1041 argp[idx].data.usr = ul;
Christopher Fauletaec27ef2020-08-06 08:54:25 +02001042 break;
1043
1044 case ARGT_STR:
1045 if (!chunk_dup(&tmp, &argp[idx].data.str)) {
1046 msg = "unable to duplicate string arg";
1047 goto error;
1048 }
1049 argp[idx].data.str = tmp;
Thierry FOURNIER55da1652015-01-23 11:36:30 +01001050 break;
Christopher Fauletaec27ef2020-08-06 08:54:25 +02001051
Christopher Fauletd25d9262020-08-06 11:04:46 +02001052 case ARGT_MAP:
Christopher Fauletd25d9262020-08-06 11:04:46 +02001053 msg = "type not yet supported";
1054 goto error;
1055 break;
1056
Thierry FOURNIER55da1652015-01-23 11:36:30 +01001057 }
1058
1059 /* Check for type of argument. */
1060 if ((mask & ARGT_MASK) != argp[idx].type) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +02001061 msg = lua_pushfstring(L, "'%s' expected, got '%s'",
1062 arg_type_names[(mask & ARGT_MASK)],
1063 arg_type_names[argp[idx].type & ARGT_MASK]);
1064 goto error;
Thierry FOURNIER55da1652015-01-23 11:36:30 +01001065 }
1066
1067 /* Next argument. */
1068 mask >>= ARGT_BITS;
1069 idx++;
1070 }
Christopher Fauletaec27ef2020-08-06 08:54:25 +02001071 return 0;
1072
1073 error:
Willy Tarreauee0d7272021-07-16 10:26:56 +02001074 free_args(argp);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02001075 WILL_LJMP(luaL_argerror(L, first + idx, msg));
1076 return 0; /* Never reached */
Thierry FOURNIER55da1652015-01-23 11:36:30 +01001077}
1078
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001079/*
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001080 * The following functions are used to make correspondence between the the
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001081 * executed lua pointer and the "struct hlua *" that contain the context.
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001082 *
1083 * - hlua_gethlua : return the hlua context associated with an lua_State.
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001084 * - hlua_sethlua : create the association between hlua context and lua_state.
1085 */
1086static inline struct hlua *hlua_gethlua(lua_State *L)
1087{
Thierry FOURNIER38c5fd62015-03-10 02:40:29 +01001088 struct hlua **hlua = lua_getextraspace(L);
1089 return *hlua;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001090}
1091static inline void hlua_sethlua(struct hlua *hlua)
1092{
Thierry FOURNIER38c5fd62015-03-10 02:40:29 +01001093 struct hlua **hlua_store = lua_getextraspace(hlua->T);
1094 *hlua_store = hlua;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001095}
1096
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01001097/* This function is used to send logs. It try to send on screen (stderr)
1098 * and on the default syslog server.
1099 */
1100static inline void hlua_sendlog(struct proxy *px, int level, const char *msg)
1101{
1102 struct tm tm;
1103 char *p;
1104
1105 /* Cleanup the log message. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001106 p = trash.area;
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01001107 for (; *msg != '\0'; msg++, p++) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001108 if (p >= trash.area + trash.size - 1) {
Thierry FOURNIERccf00632015-09-16 12:47:03 +02001109 /* Break the message if exceed the buffer size. */
1110 *(p-4) = ' ';
1111 *(p-3) = '.';
1112 *(p-2) = '.';
1113 *(p-1) = '.';
1114 break;
1115 }
Willy Tarreau90807112020-02-25 08:16:33 +01001116 if (isprint((unsigned char)*msg))
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01001117 *p = *msg;
1118 else
1119 *p = '.';
1120 }
1121 *p = '\0';
1122
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001123 send_log(px, level, "%s\n", trash.area);
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01001124 if (!(global.mode & MODE_QUIET) || (global.mode & (MODE_VERBOSE | MODE_STARTING))) {
Christopher Fauletf98d8212020-10-02 18:13:52 +02001125 if (level == LOG_DEBUG && !(global.mode & MODE_DEBUG))
1126 return;
1127
Willy Tarreaua678b432015-08-28 10:14:59 +02001128 get_localtime(date.tv_sec, &tm);
1129 fprintf(stderr, "[%s] %03d/%02d%02d%02d (%d) : %s\n",
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01001130 log_levels[level], tm.tm_yday, tm.tm_hour, tm.tm_min, tm.tm_sec,
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001131 (int)getpid(), trash.area);
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01001132 fflush(stderr);
1133 }
1134}
1135
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001136/* This function just ensure that the yield will be always
1137 * returned with a timeout and permit to set some flags
1138 */
1139__LJMP void hlua_yieldk(lua_State *L, int nresults, int ctx,
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01001140 lua_KFunction k, int timeout, unsigned int flags)
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001141{
Thierry Fournier4234dbd2020-11-28 13:18:23 +01001142 struct hlua *hlua;
1143
1144 /* Get hlua struct, or NULL if we execute from main lua state */
1145 hlua = hlua_gethlua(L);
1146 if (!hlua) {
1147 return;
1148 }
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001149
1150 /* Set the wake timeout. If timeout is required, we set
1151 * the expiration time.
1152 */
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001153 hlua->wake_time = timeout;
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001154
Thierry FOURNIER4abd3ae2015-03-03 17:29:06 +01001155 hlua->flags |= flags;
1156
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001157 /* Process the yield. */
Willy Tarreau9635e032018-10-16 17:52:55 +02001158 MAY_LJMP(lua_yieldk(L, nresults, ctx, k));
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001159}
1160
Willy Tarreau87b09662015-04-03 00:22:06 +02001161/* This function initialises the Lua environment stored in the stream.
1162 * It must be called at the start of the stream. This function creates
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001163 * an LUA coroutine. It can not be use to crete the main LUA context.
Thierry FOURNIERbabae282015-09-17 11:36:37 +02001164 *
1165 * This function is particular. it initialises a new Lua thread. If the
1166 * initialisation fails (example: out of memory error), the lua function
1167 * throws an error (longjmp).
1168 *
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01001169 * In some case (at least one), this function can be called from safe
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05001170 * environment, so we must not initialise it. While the support of
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01001171 * threads appear, the safe environment set a lock to ensure only one
1172 * Lua execution at a time. If we initialize safe environment in another
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05001173 * safe environment, we have a dead lock.
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01001174 *
1175 * set "already_safe" true if the context is initialized form safe
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05001176 * Lua function.
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01001177 *
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001178 * This function manipulates two Lua stacks: the main and the thread. Only
Thierry FOURNIERbabae282015-09-17 11:36:37 +02001179 * the main stack can fail. The thread is not manipulated. This function
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001180 * MUST NOT manipulate the created thread stack state, because it is not
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05001181 * protected against errors thrown by the thread stack.
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001182 */
Thierry Fournier021d9862020-11-28 23:42:03 +01001183int hlua_ctx_init(struct hlua *lua, int state_id, struct task *task, int already_safe)
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001184{
1185 lua->Mref = LUA_REFNIL;
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01001186 lua->flags = 0;
Willy Tarreauf31af932020-01-14 09:59:38 +01001187 lua->gc_count = 0;
Christopher Fauletbc275a92020-02-26 14:55:16 +01001188 lua->wake_time = TICK_ETERNITY;
Thierry Fournier021d9862020-11-28 23:42:03 +01001189 lua->state_id = state_id;
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +01001190 LIST_INIT(&lua->com);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001191 if (!already_safe) {
1192 if (!SET_SAFE_LJMP_PARENT(lua)) {
1193 lua->Tref = LUA_REFNIL;
1194 return 0;
1195 }
1196 }
Thierry Fournier021d9862020-11-28 23:42:03 +01001197 lua->T = lua_newthread(hlua_states[state_id]);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001198 if (!lua->T) {
1199 lua->Tref = LUA_REFNIL;
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01001200 if (!already_safe)
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001201 RESET_SAFE_LJMP_PARENT(lua);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001202 return 0;
1203 }
1204 hlua_sethlua(lua);
Thierry Fournier021d9862020-11-28 23:42:03 +01001205 lua->Tref = luaL_ref(hlua_states[state_id], LUA_REGISTRYINDEX);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001206 lua->task = task;
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01001207 if (!already_safe)
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001208 RESET_SAFE_LJMP_PARENT(lua);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001209 return 1;
1210}
1211
Willy Tarreau87b09662015-04-03 00:22:06 +02001212/* Used to destroy the Lua coroutine when the attached stream or task
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001213 * is destroyed. The destroy also the memory context. The struct "lua"
1214 * is not freed.
1215 */
1216void hlua_ctx_destroy(struct hlua *lua)
1217{
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01001218 if (!lua)
Thierry FOURNIERa718b292015-03-04 16:48:34 +01001219 return;
1220
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01001221 if (!lua->T)
1222 goto end;
1223
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +01001224 /* Purge all the pending signals. */
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001225 notification_purge(&lua->com);
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +01001226
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001227 if (!SET_SAFE_LJMP(lua))
Thierry FOURNIER75d02082017-07-12 13:41:33 +02001228 return;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001229 luaL_unref(lua->T, LUA_REGISTRYINDEX, lua->Mref);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001230 RESET_SAFE_LJMP(lua);
Thierry FOURNIER5a50a852015-09-23 16:59:28 +02001231
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001232 if (!SET_SAFE_LJMP_PARENT(lua))
Thierry FOURNIER75d02082017-07-12 13:41:33 +02001233 return;
Thierry Fournier021d9862020-11-28 23:42:03 +01001234 luaL_unref(hlua_states[lua->state_id], LUA_REGISTRYINDEX, lua->Tref);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001235 RESET_SAFE_LJMP_PARENT(lua);
Thierry FOURNIER5a50a852015-09-23 16:59:28 +02001236 /* Forces a garbage collecting process. If the Lua program is finished
1237 * without error, we run the GC on the thread pointer. Its freed all
1238 * the unused memory.
1239 * If the thread is finnish with an error or is currently yielded,
1240 * it seems that the GC applied on the thread doesn't clean anything,
1241 * so e run the GC on the main thread.
1242 * NOTE: maybe this action locks all the Lua threads untiml the en of
1243 * the garbage collection.
1244 */
Willy Tarreauf31af932020-01-14 09:59:38 +01001245 if (lua->gc_count) {
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001246 if (!SET_SAFE_LJMP_PARENT(lua))
Thierry FOURNIER75d02082017-07-12 13:41:33 +02001247 return;
Thierry Fournier021d9862020-11-28 23:42:03 +01001248 lua_gc(hlua_states[lua->state_id], LUA_GCCOLLECT, 0);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01001249 RESET_SAFE_LJMP_PARENT(lua);
Thierry FOURNIER7c39ab42015-09-27 22:53:33 +02001250 }
Thierry FOURNIER5a50a852015-09-23 16:59:28 +02001251
Thierry FOURNIERa7b536b2015-09-21 22:50:24 +02001252 lua->T = NULL;
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01001253
1254end:
Willy Tarreaubafbe012017-11-24 17:34:44 +01001255 pool_free(pool_head_hlua, lua);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001256}
1257
1258/* This function is used to restore the Lua context when a coroutine
1259 * fails. This function copy the common memory between old coroutine
1260 * and the new coroutine. The old coroutine is destroyed, and its
1261 * replaced by the new coroutine.
1262 * If the flag "keep_msg" is set, the last entry of the old is assumed
1263 * as string error message and it is copied in the new stack.
1264 */
1265static int hlua_ctx_renew(struct hlua *lua, int keep_msg)
1266{
1267 lua_State *T;
1268 int new_ref;
1269
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001270 /* New Lua coroutine. */
Thierry Fournier021d9862020-11-28 23:42:03 +01001271 T = lua_newthread(hlua_states[lua->state_id]);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001272 if (!T)
1273 return 0;
1274
1275 /* Copy last error message. */
1276 if (keep_msg)
1277 lua_xmove(lua->T, T, 1);
1278
1279 /* Copy data between the coroutines. */
1280 lua_rawgeti(lua->T, LUA_REGISTRYINDEX, lua->Mref);
1281 lua_xmove(lua->T, T, 1);
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05001282 new_ref = luaL_ref(T, LUA_REGISTRYINDEX); /* Value popped. */
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001283
1284 /* Destroy old data. */
1285 luaL_unref(lua->T, LUA_REGISTRYINDEX, lua->Mref);
1286
1287 /* The thread is garbage collected by Lua. */
Thierry Fournier021d9862020-11-28 23:42:03 +01001288 luaL_unref(hlua_states[lua->state_id], LUA_REGISTRYINDEX, lua->Tref);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001289
1290 /* Fill the struct with the new coroutine values. */
1291 lua->Mref = new_ref;
1292 lua->T = T;
Thierry Fournier021d9862020-11-28 23:42:03 +01001293 lua->Tref = luaL_ref(hlua_states[lua->state_id], LUA_REGISTRYINDEX);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001294
1295 /* Set context. */
1296 hlua_sethlua(lua);
1297
1298 return 1;
1299}
1300
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001301void hlua_hook(lua_State *L, lua_Debug *ar)
1302{
Thierry Fournier4234dbd2020-11-28 13:18:23 +01001303 struct hlua *hlua;
1304
1305 /* Get hlua struct, or NULL if we execute from main lua state */
1306 hlua = hlua_gethlua(L);
1307 if (!hlua)
1308 return;
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001309
1310 /* Lua cannot yield when its returning from a function,
1311 * so, we can fix the interrupt hook to 1 instruction,
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05001312 * expecting that the function is finished.
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001313 */
1314 if (lua_gethookmask(L) & LUA_MASKRET) {
1315 lua_sethook(hlua->T, hlua_hook, LUA_MASKCOUNT, 1);
1316 return;
1317 }
1318
1319 /* restore the interrupt condition. */
1320 lua_sethook(hlua->T, hlua_hook, LUA_MASKCOUNT, hlua_nb_instruction);
1321
1322 /* If we interrupt the Lua processing in yieldable state, we yield.
1323 * If the state is not yieldable, trying yield causes an error.
1324 */
1325 if (lua_isyieldable(L))
Willy Tarreau9635e032018-10-16 17:52:55 +02001326 MAY_LJMP(hlua_yieldk(L, 0, 0, NULL, TICK_ETERNITY, HLUA_CTRLYIELD));
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001327
Thierry FOURNIERa85cfb12015-03-13 14:50:06 +01001328 /* If we cannot yield, update the clock and check the timeout. */
Willy Tarreau55542642021-10-08 09:33:24 +02001329 clock_update_date(0, 1);
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001330 hlua->run_time += now_ms - hlua->start_time;
1331 if (hlua->max_time && hlua->run_time >= hlua->max_time) {
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001332 lua_pushfstring(L, "execution timeout");
1333 WILL_LJMP(lua_error(L));
1334 }
1335
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001336 /* Update the start time. */
1337 hlua->start_time = now_ms;
1338
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001339 /* Try to interrupt the process at the end of the current
1340 * unyieldable function.
1341 */
1342 lua_sethook(hlua->T, hlua_hook, LUA_MASKRET|LUA_MASKCOUNT, hlua_nb_instruction);
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001343}
1344
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001345/* This function start or resumes the Lua stack execution. If the flag
1346 * "yield_allowed" if no set and the LUA stack execution returns a yield
1347 * The function return an error.
1348 *
1349 * The function can returns 4 values:
1350 * - HLUA_E_OK : The execution is terminated without any errors.
1351 * - HLUA_E_AGAIN : The execution must continue at the next associated
1352 * task wakeup.
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001353 * - HLUA_E_ERRMSG : An error has occurred, an error message is set in
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001354 * the top of the stack.
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001355 * - HLUA_E_ERR : An error has occurred without error message.
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001356 *
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001357 * If an error occurred, the stack is renewed and it is ready to run new
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001358 * LUA code.
1359 */
1360static enum hlua_exec hlua_ctx_resume(struct hlua *lua, int yield_allowed)
1361{
Christopher Faulet08ed98f2020-07-28 10:33:25 +02001362#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504
1363 int nres;
1364#endif
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001365 int ret;
1366 const char *msg;
Thierry FOURNIERfc044c92018-06-07 14:40:48 +02001367 const char *trace;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001368
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001369 /* Initialise run time counter. */
1370 if (!HLUA_IS_RUNNING(lua))
1371 lua->run_time = 0;
Thierry FOURNIERdc9ca962015-03-05 11:16:52 +01001372
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +02001373 /* Lock the whole Lua execution. This lock must be before the
1374 * label "resume_execution".
1375 */
Thierry Fournier021d9862020-11-28 23:42:03 +01001376 if (lua->state_id == 0)
Willy Tarreau1e7bef12021-08-20 15:47:25 +02001377 lua_take_global_lock();
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +02001378
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001379resume_execution:
1380
1381 /* This hook interrupts the Lua processing each 'hlua_nb_instruction'
1382 * instructions. it is used for preventing infinite loops.
1383 */
1384 lua_sethook(lua->T, hlua_hook, LUA_MASKCOUNT, hlua_nb_instruction);
1385
Thierry FOURNIER1bfc09b2015-03-05 17:10:14 +01001386 /* Remove all flags except the running flags. */
Thierry FOURNIER2f3867f2015-09-28 01:02:01 +02001387 HLUA_SET_RUN(lua);
1388 HLUA_CLR_CTRLYIELD(lua);
1389 HLUA_CLR_WAKERESWR(lua);
1390 HLUA_CLR_WAKEREQWR(lua);
Christopher Faulet1f43a342021-08-04 17:58:21 +02001391 HLUA_CLR_NOYIELD(lua);
1392 if (!yield_allowed)
1393 HLUA_SET_NOYIELD(lua);
Thierry FOURNIER1bfc09b2015-03-05 17:10:14 +01001394
Christopher Fauletbc275a92020-02-26 14:55:16 +01001395 /* Update the start time and reset wake_time. */
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001396 lua->start_time = now_ms;
Christopher Fauletbc275a92020-02-26 14:55:16 +01001397 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001398
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001399 /* Call the function. */
Christopher Faulet08ed98f2020-07-28 10:33:25 +02001400#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504
Thierry Fournier021d9862020-11-28 23:42:03 +01001401 ret = lua_resume(lua->T, hlua_states[lua->state_id], lua->nargs, &nres);
Christopher Faulet08ed98f2020-07-28 10:33:25 +02001402#else
Thierry Fournier021d9862020-11-28 23:42:03 +01001403 ret = lua_resume(lua->T, hlua_states[lua->state_id], lua->nargs);
Christopher Faulet08ed98f2020-07-28 10:33:25 +02001404#endif
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001405 switch (ret) {
1406
1407 case LUA_OK:
1408 ret = HLUA_E_OK;
1409 break;
1410
1411 case LUA_YIELD:
Thierry FOURNIERdc9ca962015-03-05 11:16:52 +01001412 /* Check if the execution timeout is expired. It it is the case, we
1413 * break the Lua execution.
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001414 */
Willy Tarreau55542642021-10-08 09:33:24 +02001415 clock_update_date(0, 1);
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001416 lua->run_time += now_ms - lua->start_time;
1417 if (lua->max_time && lua->run_time > lua->max_time) {
Thierry FOURNIERdc9ca962015-03-05 11:16:52 +01001418 lua_settop(lua->T, 0); /* Empty the stack. */
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001419 ret = HLUA_E_ETMOUT;
Thierry FOURNIERdc9ca962015-03-05 11:16:52 +01001420 break;
1421 }
1422 /* Process the forced yield. if the general yield is not allowed or
1423 * if no task were associated this the current Lua execution
1424 * coroutine, we resume the execution. Else we want to return in the
1425 * scheduler and we want to be waked up again, to continue the
1426 * current Lua execution. So we schedule our own task.
1427 */
1428 if (HLUA_IS_CTRLYIELDING(lua)) {
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001429 if (!yield_allowed || !lua->task)
1430 goto resume_execution;
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001431 task_wakeup(lua->task, TASK_WOKEN_MSG);
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001432 }
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001433 if (!yield_allowed) {
1434 lua_settop(lua->T, 0); /* Empty the stack. */
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001435 ret = HLUA_E_YIELD;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001436 break;
1437 }
1438 ret = HLUA_E_AGAIN;
1439 break;
1440
1441 case LUA_ERRRUN:
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02001442
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001443 /* Special exit case. The traditional exit is returned as an error
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02001444 * because the errors ares the only one mean to return immediately
1445 * from and lua execution.
1446 */
1447 if (lua->flags & HLUA_EXIT) {
1448 ret = HLUA_E_OK;
Christopher Faulet7716cdf2020-01-29 11:53:30 +01001449 hlua_ctx_renew(lua, 1);
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02001450 break;
1451 }
1452
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001453 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001454 if (!lua_checkstack(lua->T, 1)) {
1455 ret = HLUA_E_ERR;
1456 break;
1457 }
1458 msg = lua_tostring(lua->T, -1);
1459 lua_settop(lua->T, 0); /* Empty the stack. */
1460 lua_pop(lua->T, 1);
Christopher Fauletd09cc512021-03-24 14:48:45 +01001461 trace = hlua_traceback(lua->T, ", ");
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001462 if (msg)
Thierry Fournier46278ff2020-11-29 11:48:12 +01001463 lua_pushfstring(lua->T, "[state-id %d] runtime error: %s from %s", lua->state_id, msg, trace);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001464 else
Thierry Fournier46278ff2020-11-29 11:48:12 +01001465 lua_pushfstring(lua->T, "[state-id %d] unknown runtime error from %s", lua->state_id, trace);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001466 ret = HLUA_E_ERRMSG;
1467 break;
1468
1469 case LUA_ERRMEM:
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001470 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001471 lua_settop(lua->T, 0); /* Empty the stack. */
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001472 ret = HLUA_E_NOMEM;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001473 break;
1474
1475 case LUA_ERRERR:
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001476 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001477 if (!lua_checkstack(lua->T, 1)) {
1478 ret = HLUA_E_ERR;
1479 break;
1480 }
1481 msg = lua_tostring(lua->T, -1);
1482 lua_settop(lua->T, 0); /* Empty the stack. */
1483 lua_pop(lua->T, 1);
1484 if (msg)
Thierry Fournier46278ff2020-11-29 11:48:12 +01001485 lua_pushfstring(lua->T, "[state-id %d] message handler error: %s", lua->state_id, msg);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001486 else
Thierry Fournier46278ff2020-11-29 11:48:12 +01001487 lua_pushfstring(lua->T, "[state-id %d] message handler error", lua->state_id);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001488 ret = HLUA_E_ERRMSG;
1489 break;
1490
1491 default:
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001492 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001493 lua_settop(lua->T, 0); /* Empty the stack. */
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001494 ret = HLUA_E_ERR;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001495 break;
1496 }
1497
1498 switch (ret) {
1499 case HLUA_E_AGAIN:
1500 break;
1501
1502 case HLUA_E_ERRMSG:
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001503 notification_purge(&lua->com);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001504 hlua_ctx_renew(lua, 1);
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01001505 HLUA_CLR_RUN(lua);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001506 break;
1507
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001508 case HLUA_E_ETMOUT:
1509 case HLUA_E_NOMEM:
1510 case HLUA_E_YIELD:
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001511 case HLUA_E_ERR:
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01001512 HLUA_CLR_RUN(lua);
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001513 notification_purge(&lua->com);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001514 hlua_ctx_renew(lua, 0);
1515 break;
1516
1517 case HLUA_E_OK:
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01001518 HLUA_CLR_RUN(lua);
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001519 notification_purge(&lua->com);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001520 break;
1521 }
1522
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +02001523 /* This is the main exit point, remove the Lua lock. */
Thierry Fournier021d9862020-11-28 23:42:03 +01001524 if (lua->state_id == 0)
Willy Tarreau1e7bef12021-08-20 15:47:25 +02001525 lua_drop_global_lock();
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +02001526
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001527 return ret;
1528}
1529
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02001530/* This function exit the current code. */
1531__LJMP static int hlua_done(lua_State *L)
1532{
Thierry Fournier4234dbd2020-11-28 13:18:23 +01001533 struct hlua *hlua;
1534
1535 /* Get hlua struct, or NULL if we execute from main lua state */
1536 hlua = hlua_gethlua(L);
1537 if (!hlua)
1538 return 0;
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02001539
1540 hlua->flags |= HLUA_EXIT;
1541 WILL_LJMP(lua_error(L));
1542
1543 return 0;
1544}
1545
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001546/* This function is an LUA binding. It provides a function
1547 * for deleting ACL from a referenced ACL file.
1548 */
1549__LJMP static int hlua_del_acl(lua_State *L)
1550{
1551 const char *name;
1552 const char *key;
1553 struct pat_ref *ref;
1554
1555 MAY_LJMP(check_args(L, 2, "del_acl"));
1556
1557 name = MAY_LJMP(luaL_checkstring(L, 1));
1558 key = MAY_LJMP(luaL_checkstring(L, 2));
1559
1560 ref = pat_ref_lookup(name);
1561 if (!ref)
Vincent Bernata72db182015-10-06 16:05:59 +02001562 WILL_LJMP(luaL_error(L, "'del_acl': unknown acl file '%s'", name));
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001563
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001564 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001565 pat_ref_delete(ref, key);
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001566 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001567 return 0;
1568}
1569
1570/* This function is an LUA binding. It provides a function
1571 * for deleting map entry from a referenced map file.
1572 */
1573static int hlua_del_map(lua_State *L)
1574{
1575 const char *name;
1576 const char *key;
1577 struct pat_ref *ref;
1578
1579 MAY_LJMP(check_args(L, 2, "del_map"));
1580
1581 name = MAY_LJMP(luaL_checkstring(L, 1));
1582 key = MAY_LJMP(luaL_checkstring(L, 2));
1583
1584 ref = pat_ref_lookup(name);
1585 if (!ref)
Vincent Bernata72db182015-10-06 16:05:59 +02001586 WILL_LJMP(luaL_error(L, "'del_map': unknown acl file '%s'", name));
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001587
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001588 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001589 pat_ref_delete(ref, key);
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001590 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001591 return 0;
1592}
1593
1594/* This function is an LUA binding. It provides a function
1595 * for adding ACL pattern from a referenced ACL file.
1596 */
1597static int hlua_add_acl(lua_State *L)
1598{
1599 const char *name;
1600 const char *key;
1601 struct pat_ref *ref;
1602
1603 MAY_LJMP(check_args(L, 2, "add_acl"));
1604
1605 name = MAY_LJMP(luaL_checkstring(L, 1));
1606 key = MAY_LJMP(luaL_checkstring(L, 2));
1607
1608 ref = pat_ref_lookup(name);
1609 if (!ref)
Vincent Bernata72db182015-10-06 16:05:59 +02001610 WILL_LJMP(luaL_error(L, "'add_acl': unknown acl file '%s'", name));
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001611
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001612 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001613 if (pat_ref_find_elt(ref, key) == NULL)
1614 pat_ref_add(ref, key, NULL, NULL);
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001615 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001616 return 0;
1617}
1618
1619/* This function is an LUA binding. It provides a function
1620 * for setting map pattern and sample from a referenced map
1621 * file.
1622 */
1623static int hlua_set_map(lua_State *L)
1624{
1625 const char *name;
1626 const char *key;
1627 const char *value;
1628 struct pat_ref *ref;
1629
1630 MAY_LJMP(check_args(L, 3, "set_map"));
1631
1632 name = MAY_LJMP(luaL_checkstring(L, 1));
1633 key = MAY_LJMP(luaL_checkstring(L, 2));
1634 value = MAY_LJMP(luaL_checkstring(L, 3));
1635
1636 ref = pat_ref_lookup(name);
1637 if (!ref)
Vincent Bernata72db182015-10-06 16:05:59 +02001638 WILL_LJMP(luaL_error(L, "'set_map': unknown map file '%s'", name));
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001639
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001640 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001641 if (pat_ref_find_elt(ref, key) != NULL)
1642 pat_ref_set(ref, key, value, NULL);
1643 else
1644 pat_ref_add(ref, key, value, NULL);
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001645 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001646 return 0;
1647}
1648
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01001649/* A class is a lot of memory that contain data. This data can be a table,
1650 * an integer or user data. This data is associated with a metatable. This
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001651 * metatable have an original version registered in the global context with
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01001652 * the name of the object (_G[<name>] = <metable> ).
1653 *
1654 * A metable is a table that modify the standard behavior of a standard
1655 * access to the associated data. The entries of this new metatable are
1656 * defined as is:
1657 *
1658 * http://lua-users.org/wiki/MetatableEvents
1659 *
1660 * __index
1661 *
1662 * we access an absent field in a table, the result is nil. This is
1663 * true, but it is not the whole truth. Actually, such access triggers
1664 * the interpreter to look for an __index metamethod: If there is no
1665 * such method, as usually happens, then the access results in nil;
1666 * otherwise, the metamethod will provide the result.
1667 *
1668 * Control 'prototype' inheritance. When accessing "myTable[key]" and
1669 * the key does not appear in the table, but the metatable has an __index
1670 * property:
1671 *
1672 * - if the value is a function, the function is called, passing in the
1673 * table and the key; the return value of that function is returned as
1674 * the result.
1675 *
1676 * - if the value is another table, the value of the key in that table is
1677 * asked for and returned (and if it doesn't exist in that table, but that
1678 * table's metatable has an __index property, then it continues on up)
1679 *
1680 * - Use "rawget(myTable,key)" to skip this metamethod.
1681 *
1682 * http://www.lua.org/pil/13.4.1.html
1683 *
1684 * __newindex
1685 *
1686 * Like __index, but control property assignment.
1687 *
1688 * __mode - Control weak references. A string value with one or both
1689 * of the characters 'k' and 'v' which specifies that the the
1690 * keys and/or values in the table are weak references.
1691 *
1692 * __call - Treat a table like a function. When a table is followed by
1693 * parenthesis such as "myTable( 'foo' )" and the metatable has
1694 * a __call key pointing to a function, that function is invoked
1695 * (passing any specified arguments) and the return value is
1696 * returned.
1697 *
1698 * __metatable - Hide the metatable. When "getmetatable( myTable )" is
1699 * called, if the metatable for myTable has a __metatable
1700 * key, the value of that key is returned instead of the
1701 * actual metatable.
1702 *
1703 * __tostring - Control string representation. When the builtin
1704 * "tostring( myTable )" function is called, if the metatable
1705 * for myTable has a __tostring property set to a function,
1706 * that function is invoked (passing myTable to it) and the
1707 * return value is used as the string representation.
1708 *
1709 * __len - Control table length. When the table length is requested using
1710 * the length operator ( '#' ), if the metatable for myTable has
1711 * a __len key pointing to a function, that function is invoked
1712 * (passing myTable to it) and the return value used as the value
1713 * of "#myTable".
1714 *
1715 * __gc - Userdata finalizer code. When userdata is set to be garbage
1716 * collected, if the metatable has a __gc field pointing to a
1717 * function, that function is first invoked, passing the userdata
1718 * to it. The __gc metamethod is not called for tables.
1719 * (See http://lua-users.org/lists/lua-l/2006-11/msg00508.html)
1720 *
1721 * Special metamethods for redefining standard operators:
1722 * http://www.lua.org/pil/13.1.html
1723 *
1724 * __add "+"
1725 * __sub "-"
1726 * __mul "*"
1727 * __div "/"
1728 * __unm "!"
1729 * __pow "^"
1730 * __concat ".."
1731 *
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05001732 * Special methods for redefining standard relations
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01001733 * http://www.lua.org/pil/13.2.html
1734 *
1735 * __eq "=="
1736 * __lt "<"
1737 * __le "<="
1738 */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001739
1740/*
1741 *
1742 *
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001743 * Class Map
1744 *
1745 *
1746 */
1747
1748/* Returns a struct hlua_map if the stack entry "ud" is
1749 * a class session, otherwise it throws an error.
1750 */
1751__LJMP static struct map_descriptor *hlua_checkmap(lua_State *L, int ud)
1752{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02001753 return MAY_LJMP(hlua_checkudata(L, ud, class_map_ref));
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001754}
1755
1756/* This function is the map constructor. It don't need
1757 * the class Map object. It creates and return a new Map
1758 * object. It must be called only during "body" or "init"
1759 * context because it process some filesystem accesses.
1760 */
1761__LJMP static int hlua_map_new(struct lua_State *L)
1762{
1763 const char *fn;
1764 int match = PAT_MATCH_STR;
1765 struct sample_conv conv;
1766 const char *file = "";
1767 int line = 0;
1768 lua_Debug ar;
1769 char *err = NULL;
1770 struct arg args[2];
1771
1772 if (lua_gettop(L) < 1 || lua_gettop(L) > 2)
1773 WILL_LJMP(luaL_error(L, "'new' needs at least 1 argument."));
1774
1775 fn = MAY_LJMP(luaL_checkstring(L, 1));
1776
1777 if (lua_gettop(L) >= 2) {
1778 match = MAY_LJMP(luaL_checkinteger(L, 2));
1779 if (match < 0 || match >= PAT_MATCH_NUM)
1780 WILL_LJMP(luaL_error(L, "'new' needs a valid match method."));
1781 }
1782
1783 /* Get Lua filename and line number. */
1784 if (lua_getstack(L, 1, &ar)) { /* check function at level */
1785 lua_getinfo(L, "Sl", &ar); /* get info about it */
1786 if (ar.currentline > 0) { /* is there info? */
1787 file = ar.short_src;
1788 line = ar.currentline;
1789 }
1790 }
1791
1792 /* fill fake sample_conv struct. */
1793 conv.kw = ""; /* unused. */
1794 conv.process = NULL; /* unused. */
1795 conv.arg_mask = 0; /* unused. */
1796 conv.val_args = NULL; /* unused. */
1797 conv.out_type = SMP_T_STR;
1798 conv.private = (void *)(long)match;
1799 switch (match) {
1800 case PAT_MATCH_STR: conv.in_type = SMP_T_STR; break;
1801 case PAT_MATCH_BEG: conv.in_type = SMP_T_STR; break;
1802 case PAT_MATCH_SUB: conv.in_type = SMP_T_STR; break;
1803 case PAT_MATCH_DIR: conv.in_type = SMP_T_STR; break;
1804 case PAT_MATCH_DOM: conv.in_type = SMP_T_STR; break;
1805 case PAT_MATCH_END: conv.in_type = SMP_T_STR; break;
1806 case PAT_MATCH_REG: conv.in_type = SMP_T_STR; break;
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001807 case PAT_MATCH_INT: conv.in_type = SMP_T_SINT; break;
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001808 case PAT_MATCH_IP: conv.in_type = SMP_T_ADDR; break;
1809 default:
1810 WILL_LJMP(luaL_error(L, "'new' doesn't support this match mode."));
1811 }
1812
1813 /* fill fake args. */
1814 args[0].type = ARGT_STR;
Christopher Faulet73292e92020-08-06 08:40:09 +02001815 args[0].data.str.area = strdup(fn);
1816 args[0].data.str.data = strlen(fn);
1817 args[0].data.str.size = args[0].data.str.data+1;
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001818 args[1].type = ARGT_STOP;
1819
1820 /* load the map. */
1821 if (!sample_load_map(args, &conv, file, line, &err)) {
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001822 /* error case: we can't use luaL_error because we must
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001823 * free the err variable.
1824 */
1825 luaL_where(L, 1);
1826 lua_pushfstring(L, "'new': %s.", err);
1827 lua_concat(L, 2);
1828 free(err);
Christopher Faulet6ad7df42020-08-07 11:45:18 +02001829 chunk_destroy(&args[0].data.str);
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001830 WILL_LJMP(lua_error(L));
1831 }
1832
1833 /* create the lua object. */
1834 lua_newtable(L);
1835 lua_pushlightuserdata(L, args[0].data.map);
1836 lua_rawseti(L, -2, 0);
1837
1838 /* Pop a class Map metatable and affect it to the userdata. */
1839 lua_rawgeti(L, LUA_REGISTRYINDEX, class_map_ref);
1840 lua_setmetatable(L, -2);
1841
1842
1843 return 1;
1844}
1845
1846__LJMP static inline int _hlua_map_lookup(struct lua_State *L, int str)
1847{
1848 struct map_descriptor *desc;
1849 struct pattern *pat;
1850 struct sample smp;
1851
1852 MAY_LJMP(check_args(L, 2, "lookup"));
1853 desc = MAY_LJMP(hlua_checkmap(L, 1));
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001854 if (desc->pat.expect_type == SMP_T_SINT) {
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001855 smp.data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001856 smp.data.u.sint = MAY_LJMP(luaL_checkinteger(L, 2));
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001857 }
1858 else {
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001859 smp.data.type = SMP_T_STR;
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001860 smp.flags = SMP_F_CONST;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001861 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 +01001862 smp.data.u.str.size = smp.data.u.str.data + 1;
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001863 }
1864
1865 pat = pattern_exec_match(&desc->pat, &smp, 1);
Thierry FOURNIER503bb092015-08-19 08:35:43 +02001866 if (!pat || !pat->data) {
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001867 if (str)
1868 lua_pushstring(L, "");
1869 else
1870 lua_pushnil(L);
1871 return 1;
1872 }
1873
1874 /* The Lua pattern must return a string, so we can't check the returned type */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001875 lua_pushlstring(L, pat->data->u.str.area, pat->data->u.str.data);
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001876 return 1;
1877}
1878
1879__LJMP static int hlua_map_lookup(struct lua_State *L)
1880{
1881 return _hlua_map_lookup(L, 0);
1882}
1883
1884__LJMP static int hlua_map_slookup(struct lua_State *L)
1885{
1886 return _hlua_map_lookup(L, 1);
1887}
1888
1889/*
1890 *
1891 *
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001892 * Class Socket
1893 *
1894 *
1895 */
1896
1897__LJMP static struct hlua_socket *hlua_checksocket(lua_State *L, int ud)
1898{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02001899 return MAY_LJMP(hlua_checkudata(L, ud, class_socket_ref));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001900}
1901
1902/* This function is the handler called for each I/O on the established
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001903 * connection. It is used for notify space available to send or data
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001904 * received.
1905 */
Willy Tarreau00a37f02015-04-13 12:05:19 +02001906static void hlua_socket_handler(struct appctx *appctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001907{
Willy Tarreau00a37f02015-04-13 12:05:19 +02001908 struct stream_interface *si = appctx->owner;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001909
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02001910 if (appctx->ctx.hlua_cosocket.die) {
1911 si_shutw(si);
1912 si_shutr(si);
1913 si_ic(si)->flags |= CF_READ_NULL;
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001914 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read);
1915 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write);
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02001916 stream_shutdown(si_strm(si), SF_ERR_KILLED);
1917 }
1918
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001919 /* If we can't write, wakeup the pending write signals. */
Thierry FOURNIER6d695e62015-09-27 19:29:38 +02001920 if (channel_output_closed(si_ic(si)))
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001921 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write);
Thierry FOURNIER6d695e62015-09-27 19:29:38 +02001922
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001923 /* If we can't read, wakeup the pending read signals. */
Thierry FOURNIER6d695e62015-09-27 19:29:38 +02001924 if (channel_input_closed(si_oc(si)))
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001925 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read);
Thierry FOURNIER6d695e62015-09-27 19:29:38 +02001926
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02001927 /* if the connection is not established, inform the stream that we want
Thierry FOURNIER316e3192015-09-04 18:25:53 +02001928 * to be notified whenever the connection completes.
1929 */
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02001930 if (si_opposite(si)->state < SI_ST_EST) {
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01001931 si_cant_get(si);
Willy Tarreau12c24232018-12-06 15:29:50 +01001932 si_rx_conn_blk(si);
Willy Tarreau3367d412018-11-15 10:57:41 +01001933 si_rx_endp_more(si);
Willy Tarreaud4da1962015-04-20 01:31:23 +02001934 return;
Thierry FOURNIER316e3192015-09-04 18:25:53 +02001935 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001936
1937 /* This function is called after the connect. */
Thierry FOURNIER18d09902016-12-16 09:25:38 +01001938 appctx->ctx.hlua_cosocket.connected = 1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001939
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001940 /* Wake the tasks which wants to write if the buffer have available space. */
Thierry FOURNIEReba6f642015-09-26 22:01:07 +02001941 if (channel_may_recv(si_ic(si)))
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001942 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001943
1944 /* Wake the tasks which wants to read if the buffer contains data. */
Thierry FOURNIEReba6f642015-09-26 22:01:07 +02001945 if (!channel_is_empty(si_oc(si)))
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001946 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read);
Thierry FOURNIER101b9762018-05-27 01:27:40 +02001947
1948 /* Some data were injected in the buffer, notify the stream
1949 * interface.
1950 */
1951 if (!channel_is_empty(si_ic(si)))
Willy Tarreau14bfe9a2018-12-19 15:19:27 +01001952 si_update(si);
Thierry FOURNIER101b9762018-05-27 01:27:40 +02001953
1954 /* If write notifications are registered, we considers we want
Willy Tarreau3367d412018-11-15 10:57:41 +01001955 * to write, so we clear the blocking flag.
Thierry FOURNIER101b9762018-05-27 01:27:40 +02001956 */
1957 if (notification_registered(&appctx->ctx.hlua_cosocket.wake_on_write))
Willy Tarreau3367d412018-11-15 10:57:41 +01001958 si_rx_endp_more(si);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001959}
1960
Willy Tarreau87b09662015-04-03 00:22:06 +02001961/* This function is called when the "struct stream" is destroyed.
1962 * Remove the link from the object to this stream.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001963 * Wake all the pending signals.
1964 */
Willy Tarreau00a37f02015-04-13 12:05:19 +02001965static void hlua_socket_release(struct appctx *appctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001966{
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001967 struct xref *peer;
1968
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001969 /* Remove my link in the original object. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001970 peer = xref_get_peer_and_lock(&appctx->ctx.hlua_cosocket.xref);
1971 if (peer)
1972 xref_disconnect(&appctx->ctx.hlua_cosocket.xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001973
1974 /* Wake all the task waiting for me. */
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001975 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read);
1976 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001977}
1978
1979/* If the garbage collectio of the object is launch, nobody
Willy Tarreau87b09662015-04-03 00:22:06 +02001980 * uses this object. If the stream does not exists, just quit.
1981 * Send the shutdown signal to the stream. In some cases,
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001982 * pending signal can rest in the read and write lists. destroy
1983 * it.
1984 */
1985__LJMP static int hlua_socket_gc(lua_State *L)
1986{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001987 struct hlua_socket *socket;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001988 struct appctx *appctx;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001989 struct xref *peer;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001990
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001991 MAY_LJMP(check_args(L, 1, "__gc"));
1992
1993 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001994 peer = xref_get_peer_and_lock(&socket->xref);
1995 if (!peer)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001996 return 0;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001997 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001998
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001999 /* Set the flag which destroy the session. */
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02002000 appctx->ctx.hlua_cosocket.die = 1;
2001 appctx_wakeup(appctx);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002002
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002003 /* Remove all reference between the Lua stack and the coroutine stream. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002004 xref_disconnect(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002005 return 0;
2006}
2007
2008/* The close function send shutdown signal and break the
Willy Tarreau87b09662015-04-03 00:22:06 +02002009 * links between the stream and the object.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002010 */
sada05ed3302018-05-11 11:48:18 -07002011__LJMP static int hlua_socket_close_helper(lua_State *L)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002012{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002013 struct hlua_socket *socket;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002014 struct appctx *appctx;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002015 struct xref *peer;
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002016 struct hlua *hlua;
2017
2018 /* Get hlua struct, or NULL if we execute from main lua state */
2019 hlua = hlua_gethlua(L);
2020 if (!hlua)
2021 return 0;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002022
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002023 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002024
2025 /* Check if we run on the same thread than the xreator thread.
2026 * We cannot access to the socket if the thread is different.
2027 */
2028 if (socket->tid != tid)
2029 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2030
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002031 peer = xref_get_peer_and_lock(&socket->xref);
2032 if (!peer)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002033 return 0;
Willy Tarreauf31af932020-01-14 09:59:38 +01002034
2035 hlua->gc_count--;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002036 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002037
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002038 /* Set the flag which destroy the session. */
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02002039 appctx->ctx.hlua_cosocket.die = 1;
2040 appctx_wakeup(appctx);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002041
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002042 /* Remove all reference between the Lua stack and the coroutine stream. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002043 xref_disconnect(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002044 return 0;
2045}
2046
sada05ed3302018-05-11 11:48:18 -07002047/* The close function calls close_helper.
2048 */
2049__LJMP static int hlua_socket_close(lua_State *L)
2050{
2051 MAY_LJMP(check_args(L, 1, "close"));
2052 return hlua_socket_close_helper(L);
2053}
2054
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002055/* This Lua function assumes that the stack contain three parameters.
2056 * 1 - USERDATA containing a struct socket
2057 * 2 - INTEGER with values of the macro defined below
2058 * If the integer is -1, we must read at most one line.
2059 * If the integer is -2, we ust read all the data until the
2060 * end of the stream.
2061 * If the integer is positive value, we must read a number of
2062 * bytes corresponding to this value.
2063 */
2064#define HLSR_READ_LINE (-1)
2065#define HLSR_READ_ALL (-2)
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002066__LJMP static int hlua_socket_receive_yield(struct lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002067{
2068 struct hlua_socket *socket = MAY_LJMP(hlua_checksocket(L, 1));
2069 int wanted = lua_tointeger(L, 2);
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002070 struct hlua *hlua;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002071 struct appctx *appctx;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02002072 size_t len;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002073 int nblk;
Willy Tarreau206ba832018-06-14 15:27:31 +02002074 const char *blk1;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02002075 size_t len1;
Willy Tarreau206ba832018-06-14 15:27:31 +02002076 const char *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02002077 size_t len2;
Thierry FOURNIER00543922015-03-09 18:35:06 +01002078 int skip_at_end = 0;
Willy Tarreau81389672015-03-10 12:03:52 +01002079 struct channel *oc;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002080 struct stream_interface *si;
2081 struct stream *s;
2082 struct xref *peer;
Thierry FOURNIER8c126c72018-05-25 16:27:44 +02002083 int missing_bytes;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002084
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002085 /* Get hlua struct, or NULL if we execute from main lua state */
2086 hlua = hlua_gethlua(L);
2087
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002088 /* Check if this lua stack is schedulable. */
2089 if (!hlua || !hlua->task)
2090 WILL_LJMP(luaL_error(L, "The 'receive' function is only allowed in "
2091 "'frontend', 'backend' or 'task'"));
2092
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002093 /* Check if we run on the same thread than the xreator thread.
2094 * We cannot access to the socket if the thread is different.
2095 */
2096 if (socket->tid != tid)
2097 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2098
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002099 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002100 peer = xref_get_peer_and_lock(&socket->xref);
2101 if (!peer)
2102 goto no_peer;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002103 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2104 si = appctx->owner;
2105 s = si_strm(si);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002106
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002107 oc = &s->res;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002108 if (wanted == HLSR_READ_LINE) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002109 /* Read line. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02002110 nblk = co_getline_nc(oc, &blk1, &len1, &blk2, &len2);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002111 if (nblk < 0) /* Connection close. */
2112 goto connection_closed;
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002113 if (nblk == 0) /* No data available. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002114 goto connection_empty;
Thierry FOURNIER00543922015-03-09 18:35:06 +01002115
2116 /* remove final \r\n. */
2117 if (nblk == 1) {
2118 if (blk1[len1-1] == '\n') {
2119 len1--;
2120 skip_at_end++;
2121 if (blk1[len1-1] == '\r') {
2122 len1--;
2123 skip_at_end++;
2124 }
2125 }
2126 }
2127 else {
2128 if (blk2[len2-1] == '\n') {
2129 len2--;
2130 skip_at_end++;
2131 if (blk2[len2-1] == '\r') {
2132 len2--;
2133 skip_at_end++;
2134 }
2135 }
2136 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002137 }
2138
2139 else if (wanted == HLSR_READ_ALL) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002140 /* Read all the available data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02002141 nblk = co_getblk_nc(oc, &blk1, &len1, &blk2, &len2);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002142 if (nblk < 0) /* Connection close. */
2143 goto connection_closed;
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002144 if (nblk == 0) /* No data available. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002145 goto connection_empty;
2146 }
2147
2148 else {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002149 /* Read a block of data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02002150 nblk = co_getblk_nc(oc, &blk1, &len1, &blk2, &len2);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002151 if (nblk < 0) /* Connection close. */
2152 goto connection_closed;
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002153 if (nblk == 0) /* No data available. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002154 goto connection_empty;
2155
Thierry FOURNIER8c126c72018-05-25 16:27:44 +02002156 missing_bytes = wanted - socket->b.n;
2157 if (len1 > missing_bytes) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002158 nblk = 1;
Thierry FOURNIER8c126c72018-05-25 16:27:44 +02002159 len1 = missing_bytes;
2160 } if (nblk == 2 && len1 + len2 > missing_bytes)
2161 len2 = missing_bytes - len1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002162 }
2163
2164 len = len1;
2165
2166 luaL_addlstring(&socket->b, blk1, len1);
2167 if (nblk == 2) {
2168 len += len2;
2169 luaL_addlstring(&socket->b, blk2, len2);
2170 }
2171
2172 /* Consume data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02002173 co_skip(oc, len + skip_at_end);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002174
2175 /* Don't wait anything. */
Thierry FOURNIER7e4ee472018-05-25 15:03:50 +02002176 appctx_wakeup(appctx);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002177
2178 /* If the pattern reclaim to read all the data
2179 * in the connection, got out.
2180 */
2181 if (wanted == HLSR_READ_ALL)
2182 goto connection_empty;
Thierry FOURNIER8c126c72018-05-25 16:27:44 +02002183 else if (wanted >= 0 && socket->b.n < wanted)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002184 goto connection_empty;
2185
2186 /* Return result. */
2187 luaL_pushresult(&socket->b);
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002188 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002189 return 1;
2190
2191connection_closed:
2192
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002193 xref_unlock(&socket->xref, peer);
2194
2195no_peer:
2196
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002197 /* If the buffer containds data. */
2198 if (socket->b.n > 0) {
2199 luaL_pushresult(&socket->b);
2200 return 1;
2201 }
2202 lua_pushnil(L);
2203 lua_pushstring(L, "connection closed.");
2204 return 2;
2205
2206connection_empty:
2207
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002208 if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_read, hlua->task)) {
2209 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002210 WILL_LJMP(luaL_error(L, "out of memory"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002211 }
2212 xref_unlock(&socket->xref, peer);
Willy Tarreau9635e032018-10-16 17:52:55 +02002213 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_receive_yield, TICK_ETERNITY, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002214 return 0;
2215}
2216
Tim Duesterhusb33754c2018-01-04 19:32:14 +01002217/* This Lua function gets two parameters. The first one can be string
2218 * or a number. If the string is "*l", the user requires one line. If
2219 * the string is "*a", the user requires all the contents of the stream.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002220 * If the value is a number, the user require a number of bytes equal
2221 * to the value. The default value is "*l" (a line).
2222 *
Tim Duesterhusb33754c2018-01-04 19:32:14 +01002223 * This parameter with a variable type is converted in integer. This
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002224 * integer takes this values:
2225 * -1 : read a line
2226 * -2 : read all the stream
Tim Duesterhusb33754c2018-01-04 19:32:14 +01002227 * >0 : amount of bytes.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002228 *
Tim Duesterhusb33754c2018-01-04 19:32:14 +01002229 * The second parameter is optional. It contains a string that must be
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002230 * concatenated with the read data.
2231 */
2232__LJMP static int hlua_socket_receive(struct lua_State *L)
2233{
2234 int wanted = HLSR_READ_LINE;
2235 const char *pattern;
Christopher Fauletc31b2002021-05-03 10:11:13 +02002236 int lastarg, type;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002237 char *error;
2238 size_t len;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002239 struct hlua_socket *socket;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002240
2241 if (lua_gettop(L) < 1 || lua_gettop(L) > 3)
2242 WILL_LJMP(luaL_error(L, "The 'receive' function requires between 1 and 3 arguments."));
2243
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002244 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002245
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002246 /* Check if we run on the same thread than the xreator thread.
2247 * We cannot access to the socket if the thread is different.
2248 */
2249 if (socket->tid != tid)
2250 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2251
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002252 /* check for pattern. */
2253 if (lua_gettop(L) >= 2) {
2254 type = lua_type(L, 2);
2255 if (type == LUA_TSTRING) {
2256 pattern = lua_tostring(L, 2);
2257 if (strcmp(pattern, "*a") == 0)
2258 wanted = HLSR_READ_ALL;
2259 else if (strcmp(pattern, "*l") == 0)
2260 wanted = HLSR_READ_LINE;
2261 else {
2262 wanted = strtoll(pattern, &error, 10);
2263 if (*error != '\0')
2264 WILL_LJMP(luaL_error(L, "Unsupported pattern."));
2265 }
2266 }
2267 else if (type == LUA_TNUMBER) {
2268 wanted = lua_tointeger(L, 2);
2269 if (wanted < 0)
2270 WILL_LJMP(luaL_error(L, "Unsupported size."));
2271 }
2272 }
2273
2274 /* Set pattern. */
2275 lua_pushinteger(L, wanted);
Tim Duesterhusc6e377e2018-01-04 19:32:13 +01002276
2277 /* Check if we would replace the top by itself. */
2278 if (lua_gettop(L) != 2)
2279 lua_replace(L, 2);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002280
Christopher Fauletc31b2002021-05-03 10:11:13 +02002281 /* Save index of the top of the stack because since buffers are used, it
2282 * may change
2283 */
2284 lastarg = lua_gettop(L);
2285
Tim Duesterhusb33754c2018-01-04 19:32:14 +01002286 /* init buffer, and fill it with prefix. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002287 luaL_buffinit(L, &socket->b);
2288
2289 /* Check prefix. */
Christopher Fauletc31b2002021-05-03 10:11:13 +02002290 if (lastarg >= 3) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002291 if (lua_type(L, 3) != LUA_TSTRING)
2292 WILL_LJMP(luaL_error(L, "Expect a 'string' for the prefix"));
2293 pattern = lua_tolstring(L, 3, &len);
2294 luaL_addlstring(&socket->b, pattern, len);
2295 }
2296
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002297 return __LJMP(hlua_socket_receive_yield(L, 0, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002298}
2299
2300/* Write the Lua input string in the output buffer.
Mark Lakes22154b42018-01-29 14:38:40 -08002301 * This function returns a yield if no space is available.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002302 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002303static int hlua_socket_write_yield(struct lua_State *L,int status, lua_KContext ctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002304{
2305 struct hlua_socket *socket;
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002306 struct hlua *hlua;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002307 struct appctx *appctx;
2308 size_t buf_len;
2309 const char *buf;
2310 int len;
2311 int send_len;
2312 int sent;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002313 struct xref *peer;
2314 struct stream_interface *si;
2315 struct stream *s;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002316
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002317 /* Get hlua struct, or NULL if we execute from main lua state */
2318 hlua = hlua_gethlua(L);
2319
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002320 /* Check if this lua stack is schedulable. */
2321 if (!hlua || !hlua->task)
2322 WILL_LJMP(luaL_error(L, "The 'write' function is only allowed in "
2323 "'frontend', 'backend' or 'task'"));
2324
2325 /* Get object */
2326 socket = MAY_LJMP(hlua_checksocket(L, 1));
2327 buf = MAY_LJMP(luaL_checklstring(L, 2, &buf_len));
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002328 sent = MAY_LJMP(luaL_checkinteger(L, 3));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002329
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002330 /* Check if we run on the same thread than the xreator thread.
2331 * We cannot access to the socket if the thread is different.
2332 */
2333 if (socket->tid != tid)
2334 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2335
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002336 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002337 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002338 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002339 lua_pushinteger(L, -1);
2340 return 1;
2341 }
2342 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2343 si = appctx->owner;
2344 s = si_strm(si);
2345
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002346 /* Check for connection close. */
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002347 if (channel_output_closed(&s->req)) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002348 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002349 lua_pushinteger(L, -1);
2350 return 1;
2351 }
2352
2353 /* Update the input buffer data. */
2354 buf += sent;
2355 send_len = buf_len - sent;
2356
2357 /* All the data are sent. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002358 if (sent >= buf_len) {
2359 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002360 return 1; /* Implicitly return the length sent. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002361 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002362
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002363 /* Check if the buffer is available because HAProxy doesn't allocate
Thierry FOURNIER486d52a2015-03-09 17:51:43 +01002364 * the request buffer if its not required.
2365 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002366 if (s->req.buf.size == 0) {
Willy Tarreau581abd32018-10-25 10:21:41 +02002367 if (!si_alloc_ibuf(si, &appctx->buffer_wait))
Christopher Faulet33834b12016-12-19 09:29:06 +01002368 goto hlua_socket_write_yield_return;
Thierry FOURNIER486d52a2015-03-09 17:51:43 +01002369 }
2370
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002371 /* Check for available space. */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002372 len = b_room(&s->req.buf);
Christopher Faulet33834b12016-12-19 09:29:06 +01002373 if (len <= 0) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002374 goto hlua_socket_write_yield_return;
Christopher Faulet33834b12016-12-19 09:29:06 +01002375 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002376
2377 /* send data */
2378 if (len < send_len)
2379 send_len = len;
Thierry FOURNIER66b89192018-05-27 01:14:47 +02002380 len = ci_putblk(&s->req, buf, send_len);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002381
2382 /* "Not enough space" (-1), "Buffer too little to contain
2383 * the data" (-2) are not expected because the available length
2384 * is tested.
2385 * Other unknown error are also not expected.
2386 */
2387 if (len <= 0) {
Willy Tarreaubc18da12015-03-13 14:00:47 +01002388 if (len == -1)
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002389 s->req.flags |= CF_WAKE_WRITE;
Willy Tarreaubc18da12015-03-13 14:00:47 +01002390
sada05ed3302018-05-11 11:48:18 -07002391 MAY_LJMP(hlua_socket_close_helper(L));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002392 lua_pop(L, 1);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002393 lua_pushinteger(L, -1);
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002394 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002395 return 1;
2396 }
2397
2398 /* update buffers. */
Thierry FOURNIER101b9762018-05-27 01:27:40 +02002399 appctx_wakeup(appctx);
Willy Tarreaude70fa12015-09-26 11:25:05 +02002400
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002401 s->req.rex = TICK_ETERNITY;
2402 s->res.wex = TICK_ETERNITY;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002403
2404 /* Update length sent. */
2405 lua_pop(L, 1);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002406 lua_pushinteger(L, sent + len);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002407
2408 /* All the data buffer is sent ? */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002409 if (sent + len >= buf_len) {
2410 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002411 return 1;
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002412 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002413
2414hlua_socket_write_yield_return:
Thierry FOURNIERba42fcd2018-05-27 00:59:48 +02002415 if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_write, hlua->task)) {
2416 xref_unlock(&socket->xref, peer);
2417 WILL_LJMP(luaL_error(L, "out of memory"));
2418 }
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002419 xref_unlock(&socket->xref, peer);
Willy Tarreau9635e032018-10-16 17:52:55 +02002420 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_write_yield, TICK_ETERNITY, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002421 return 0;
2422}
2423
2424/* This function initiate the send of data. It just check the input
2425 * parameters and push an integer in the Lua stack that contain the
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002426 * amount of data written to the buffer. This is used by the function
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002427 * "hlua_socket_write_yield" that can yield.
2428 *
2429 * The Lua function gets between 3 and 4 parameters. The first one is
2430 * the associated object. The second is a string buffer. The third is
2431 * a facultative integer that represents where is the buffer position
2432 * of the start of the data that can send. The first byte is the
2433 * position "1". The default value is "1". The fourth argument is a
2434 * facultative integer that represents where is the buffer position
2435 * of the end of the data that can send. The default is the last byte.
2436 */
2437static int hlua_socket_send(struct lua_State *L)
2438{
2439 int i;
2440 int j;
2441 const char *buf;
2442 size_t buf_len;
2443
2444 /* Check number of arguments. */
2445 if (lua_gettop(L) < 2 || lua_gettop(L) > 4)
2446 WILL_LJMP(luaL_error(L, "'send' needs between 2 and 4 arguments"));
2447
2448 /* Get the string. */
2449 buf = MAY_LJMP(luaL_checklstring(L, 2, &buf_len));
2450
2451 /* Get and check j. */
2452 if (lua_gettop(L) == 4) {
2453 j = MAY_LJMP(luaL_checkinteger(L, 4));
2454 if (j < 0)
2455 j = buf_len + j + 1;
2456 if (j > buf_len)
2457 j = buf_len + 1;
2458 lua_pop(L, 1);
2459 }
2460 else
2461 j = buf_len;
2462
2463 /* Get and check i. */
2464 if (lua_gettop(L) == 3) {
2465 i = MAY_LJMP(luaL_checkinteger(L, 3));
2466 if (i < 0)
2467 i = buf_len + i + 1;
2468 if (i > buf_len)
2469 i = buf_len + 1;
2470 lua_pop(L, 1);
2471 } else
2472 i = 1;
2473
2474 /* Check bth i and j. */
2475 if (i > j) {
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002476 lua_pushinteger(L, 0);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002477 return 1;
2478 }
2479 if (i == 0 && j == 0) {
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002480 lua_pushinteger(L, 0);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002481 return 1;
2482 }
2483 if (i == 0)
2484 i = 1;
2485 if (j == 0)
2486 j = 1;
2487
2488 /* Pop the string. */
2489 lua_pop(L, 1);
2490
2491 /* Update the buffer length. */
2492 buf += i - 1;
2493 buf_len = j - i + 1;
2494 lua_pushlstring(L, buf, buf_len);
2495
2496 /* This unsigned is used to remember the amount of sent data. */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002497 lua_pushinteger(L, 0);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002498
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002499 return MAY_LJMP(hlua_socket_write_yield(L, 0, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002500}
2501
Willy Tarreau22b0a682015-06-17 19:43:49 +02002502#define SOCKET_INFO_MAX_LEN sizeof("[0000:0000:0000:0000:0000:0000:0000:0000]:12345")
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002503__LJMP static inline int hlua_socket_info(struct lua_State *L, struct sockaddr_storage *addr)
2504{
2505 static char buffer[SOCKET_INFO_MAX_LEN];
2506 int ret;
2507 int len;
2508 char *p;
2509
2510 ret = addr_to_str(addr, buffer+1, SOCKET_INFO_MAX_LEN-1);
2511 if (ret <= 0) {
2512 lua_pushnil(L);
2513 return 1;
2514 }
2515
2516 if (ret == AF_UNIX) {
2517 lua_pushstring(L, buffer+1);
2518 return 1;
2519 }
2520 else if (ret == AF_INET6) {
2521 buffer[0] = '[';
2522 len = strlen(buffer);
2523 buffer[len] = ']';
2524 len++;
2525 buffer[len] = ':';
2526 len++;
2527 p = buffer;
2528 }
2529 else if (ret == AF_INET) {
2530 p = buffer + 1;
2531 len = strlen(p);
2532 p[len] = ':';
2533 len++;
2534 }
2535 else {
2536 lua_pushnil(L);
2537 return 1;
2538 }
2539
2540 if (port_to_str(addr, p + len, SOCKET_INFO_MAX_LEN-1 - len) <= 0) {
2541 lua_pushnil(L);
2542 return 1;
2543 }
2544
2545 lua_pushstring(L, p);
2546 return 1;
2547}
2548
2549/* Returns information about the peer of the connection. */
2550__LJMP static int hlua_socket_getpeername(struct lua_State *L)
2551{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002552 struct hlua_socket *socket;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002553 struct xref *peer;
2554 struct appctx *appctx;
2555 struct stream_interface *si;
2556 struct stream *s;
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002557 int ret;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002558
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002559 MAY_LJMP(check_args(L, 1, "getpeername"));
2560
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002561 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002562
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002563 /* Check if we run on the same thread than the xreator thread.
2564 * We cannot access to the socket if the thread is different.
2565 */
2566 if (socket->tid != tid)
2567 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2568
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002569 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002570 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002571 if (!peer) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002572 lua_pushnil(L);
2573 return 1;
2574 }
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002575 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2576 si = appctx->owner;
2577 s = si_strm(si);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002578
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002579 if (!s->target_addr) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002580 xref_unlock(&socket->xref, peer);
Willy Tarreaua71f6422016-11-16 17:00:14 +01002581 lua_pushnil(L);
2582 return 1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002583 }
2584
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002585 ret = MAY_LJMP(hlua_socket_info(L, s->target_addr));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002586 xref_unlock(&socket->xref, peer);
2587 return ret;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002588}
2589
2590/* Returns information about my connection side. */
2591static int hlua_socket_getsockname(struct lua_State *L)
2592{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002593 struct hlua_socket *socket;
2594 struct connection *conn;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002595 struct appctx *appctx;
2596 struct xref *peer;
2597 struct stream_interface *si;
2598 struct stream *s;
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002599 int ret;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002600
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002601 MAY_LJMP(check_args(L, 1, "getsockname"));
2602
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002603 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002604
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002605 /* Check if we run on the same thread than the xreator thread.
2606 * We cannot access to the socket if the thread is different.
2607 */
2608 if (socket->tid != tid)
2609 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2610
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002611 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002612 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002613 if (!peer) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002614 lua_pushnil(L);
2615 return 1;
2616 }
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002617 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2618 si = appctx->owner;
2619 s = si_strm(si);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002620
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002621 conn = cs_conn(objt_cs(s->si[1].end));
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002622 if (!conn || !conn_get_src(conn)) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002623 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002624 lua_pushnil(L);
2625 return 1;
2626 }
2627
Willy Tarreau9da9a6f2019-07-17 14:49:44 +02002628 ret = hlua_socket_info(L, conn->src);
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002629 xref_unlock(&socket->xref, peer);
2630 return ret;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002631}
2632
2633/* This struct define the applet. */
Willy Tarreau30576452015-04-13 13:50:30 +02002634static struct applet update_applet = {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002635 .obj_type = OBJ_TYPE_APPLET,
2636 .name = "<LUA_TCP>",
2637 .fct = hlua_socket_handler,
2638 .release = hlua_socket_release,
2639};
2640
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002641__LJMP static int hlua_socket_connect_yield(struct lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002642{
2643 struct hlua_socket *socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002644 struct hlua *hlua;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002645 struct xref *peer;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002646 struct appctx *appctx;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002647 struct stream_interface *si;
2648 struct stream *s;
2649
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002650 /* Get hlua struct, or NULL if we execute from main lua state */
2651 hlua = hlua_gethlua(L);
2652 if (!hlua)
2653 return 0;
2654
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002655 /* Check if we run on the same thread than the xreator thread.
2656 * We cannot access to the socket if the thread is different.
2657 */
2658 if (socket->tid != tid)
2659 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2660
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002661 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002662 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002663 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002664 lua_pushnil(L);
2665 lua_pushstring(L, "Can't connect");
2666 return 2;
2667 }
2668 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2669 si = appctx->owner;
2670 s = si_strm(si);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002671
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002672 /* Check if we run on the same thread than the xreator thread.
2673 * We cannot access to the socket if the thread is different.
2674 */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002675 if (socket->tid != tid) {
2676 xref_unlock(&socket->xref, peer);
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002677 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002678 }
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002679
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002680 /* Check for connection close. */
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002681 if (!hlua || channel_output_closed(&s->req)) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002682 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002683 lua_pushnil(L);
2684 lua_pushstring(L, "Can't connect");
2685 return 2;
2686 }
2687
Willy Tarreaue09101e2018-10-16 17:37:12 +02002688 appctx = __objt_appctx(s->si[0].end);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002689
2690 /* Check for connection established. */
Thierry FOURNIER18d09902016-12-16 09:25:38 +01002691 if (appctx->ctx.hlua_cosocket.connected) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002692 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002693 lua_pushinteger(L, 1);
2694 return 1;
2695 }
2696
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002697 if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_write, hlua->task)) {
2698 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002699 WILL_LJMP(luaL_error(L, "out of memory error"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002700 }
2701 xref_unlock(&socket->xref, peer);
Willy Tarreau9635e032018-10-16 17:52:55 +02002702 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_connect_yield, TICK_ETERNITY, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002703 return 0;
2704}
2705
2706/* This function fail or initite the connection. */
2707__LJMP static int hlua_socket_connect(struct lua_State *L)
2708{
2709 struct hlua_socket *socket;
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002710 int port = -1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002711 const char *ip;
Thierry FOURNIER95ad96a2015-03-09 18:12:40 +01002712 struct hlua *hlua;
2713 struct appctx *appctx;
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002714 int low, high;
2715 struct sockaddr_storage *addr;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002716 struct xref *peer;
2717 struct stream_interface *si;
2718 struct stream *s;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002719
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002720 if (lua_gettop(L) < 2)
2721 WILL_LJMP(luaL_error(L, "connect: need at least 2 arguments"));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002722
2723 /* Get args. */
2724 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002725
2726 /* Check if we run on the same thread than the xreator thread.
2727 * We cannot access to the socket if the thread is different.
2728 */
2729 if (socket->tid != tid)
2730 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2731
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002732 ip = MAY_LJMP(luaL_checkstring(L, 2));
Tim Duesterhus6edab862018-01-06 19:04:45 +01002733 if (lua_gettop(L) >= 3) {
2734 luaL_Buffer b;
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002735 port = MAY_LJMP(luaL_checkinteger(L, 3));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002736
Tim Duesterhus6edab862018-01-06 19:04:45 +01002737 /* Force the ip to end with a colon, to support IPv6 addresses
2738 * that are not enclosed within square brackets.
2739 */
2740 if (port > 0) {
2741 luaL_buffinit(L, &b);
2742 luaL_addstring(&b, ip);
2743 luaL_addchar(&b, ':');
2744 luaL_pushresult(&b);
2745 ip = lua_tolstring(L, lua_gettop(L), NULL);
2746 }
2747 }
2748
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002749 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002750 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002751 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002752 lua_pushnil(L);
2753 return 1;
2754 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002755
2756 /* Parse ip address. */
Willy Tarreau5fc93282020-09-16 18:25:03 +02002757 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 +02002758 if (!addr) {
2759 xref_unlock(&socket->xref, peer);
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002760 WILL_LJMP(luaL_error(L, "connect: cannot parse destination address '%s'", ip));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002761 }
Willy Tarreau9da9a6f2019-07-17 14:49:44 +02002762
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002763 /* Set port. */
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002764 if (low == 0) {
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002765 if (addr->ss_family == AF_INET) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002766 if (port == -1) {
2767 xref_unlock(&socket->xref, peer);
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002768 WILL_LJMP(luaL_error(L, "connect: port missing"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002769 }
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002770 ((struct sockaddr_in *)addr)->sin_port = htons(port);
2771 } else if (addr->ss_family == AF_INET6) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002772 if (port == -1) {
2773 xref_unlock(&socket->xref, peer);
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002774 WILL_LJMP(luaL_error(L, "connect: port missing"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002775 }
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002776 ((struct sockaddr_in6 *)addr)->sin6_port = htons(port);
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002777 }
2778 }
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002779
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002780 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2781 si = appctx->owner;
2782 s = si_strm(si);
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002783
Willy Tarreau9b7587a2020-10-15 07:32:10 +02002784 if (!sockaddr_alloc(&s->target_addr, addr, sizeof(*addr))) {
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002785 xref_unlock(&socket->xref, peer);
2786 WILL_LJMP(luaL_error(L, "connect: internal error"));
2787 }
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002788 s->flags |= SF_ADDR_SET;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002789
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002790 /* Get hlua struct, or NULL if we execute from main lua state */
Thierry FOURNIER95ad96a2015-03-09 18:12:40 +01002791 hlua = hlua_gethlua(L);
Thierry Fournier4234dbd2020-11-28 13:18:23 +01002792 if (!hlua)
2793 return 0;
Willy Tarreaubdc97a82015-08-24 15:42:28 +02002794
2795 /* inform the stream that we want to be notified whenever the
2796 * connection completes.
2797 */
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01002798 si_cant_get(&s->si[0]);
Willy Tarreau3367d412018-11-15 10:57:41 +01002799 si_rx_endp_more(&s->si[0]);
Thierry FOURNIER8c8fbbe2015-09-26 17:02:35 +02002800 appctx_wakeup(appctx);
Willy Tarreaubdc97a82015-08-24 15:42:28 +02002801
Willy Tarreauf31af932020-01-14 09:59:38 +01002802 hlua->gc_count++;
Thierry FOURNIER7c39ab42015-09-27 22:53:33 +02002803
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002804 if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_write, hlua->task)) {
2805 xref_unlock(&socket->xref, peer);
Thierry FOURNIER95ad96a2015-03-09 18:12:40 +01002806 WILL_LJMP(luaL_error(L, "out of memory"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002807 }
2808 xref_unlock(&socket->xref, peer);
PiBa-NL706d5ee2018-05-05 23:51:42 +02002809
2810 task_wakeup(s->task, TASK_WOKEN_INIT);
2811 /* Return yield waiting for connection. */
2812
Willy Tarreau9635e032018-10-16 17:52:55 +02002813 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_connect_yield, TICK_ETERNITY, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002814
2815 return 0;
2816}
2817
Baptiste Assmann84bb4932015-03-02 21:40:06 +01002818#ifdef USE_OPENSSL
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002819__LJMP static int hlua_socket_connect_ssl(struct lua_State *L)
2820{
2821 struct hlua_socket *socket;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002822 struct xref *peer;
2823 struct appctx *appctx;
2824 struct stream_interface *si;
2825 struct stream *s;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002826
2827 MAY_LJMP(check_args(L, 3, "connect_ssl"));
2828 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002829
2830 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002831 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002832 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002833 lua_pushnil(L);
2834 return 1;
2835 }
2836 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2837 si = appctx->owner;
2838 s = si_strm(si);
2839
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +01002840 s->target = &socket_ssl->obj_type;
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002841 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002842 return MAY_LJMP(hlua_socket_connect(L));
2843}
Baptiste Assmann84bb4932015-03-02 21:40:06 +01002844#endif
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002845
2846__LJMP static int hlua_socket_setoption(struct lua_State *L)
2847{
2848 return 0;
2849}
2850
2851__LJMP static int hlua_socket_settimeout(struct lua_State *L)
2852{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002853 struct hlua_socket *socket;
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002854 int tmout;
Mark Lakes56cc1252018-03-27 09:48:06 +02002855 double dtmout;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002856 struct xref *peer;
2857 struct appctx *appctx;
2858 struct stream_interface *si;
2859 struct stream *s;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002860
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002861 MAY_LJMP(check_args(L, 2, "settimeout"));
2862
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002863 socket = MAY_LJMP(hlua_checksocket(L, 1));
Mark Lakes56cc1252018-03-27 09:48:06 +02002864
Cyril Bonté7ee465f2018-08-19 22:08:50 +02002865 /* convert the timeout to millis */
2866 dtmout = MAY_LJMP(luaL_checknumber(L, 2)) * 1000;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002867
Thierry Fournier17a921b2018-03-08 09:59:02 +01002868 /* Check for negative values */
Mark Lakes56cc1252018-03-27 09:48:06 +02002869 if (dtmout < 0)
Thierry Fournier17a921b2018-03-08 09:59:02 +01002870 WILL_LJMP(luaL_error(L, "settimeout: cannot set negatives values"));
2871
Mark Lakes56cc1252018-03-27 09:48:06 +02002872 if (dtmout > INT_MAX) /* overflow check */
Cyril Bonté7ee465f2018-08-19 22:08:50 +02002873 WILL_LJMP(luaL_error(L, "settimeout: cannot set values larger than %d ms", INT_MAX));
Mark Lakes56cc1252018-03-27 09:48:06 +02002874
2875 tmout = MS_TO_TICKS((int)dtmout);
Cyril Bonté7ee465f2018-08-19 22:08:50 +02002876 if (tmout == 0)
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05002877 tmout++; /* very small timeouts are adjusted to a minimum of 1ms */
Mark Lakes56cc1252018-03-27 09:48:06 +02002878
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002879 /* Check if we run on the same thread than the xreator thread.
2880 * We cannot access to the socket if the thread is different.
2881 */
2882 if (socket->tid != tid)
2883 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2884
Mark Lakes56cc1252018-03-27 09:48:06 +02002885 /* check for connection break. If some data were read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002886 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002887 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002888 hlua_pusherror(L, "socket: not yet initialised, you can't set timeouts.");
2889 WILL_LJMP(lua_error(L));
2890 return 0;
2891 }
2892 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2893 si = appctx->owner;
2894 s = si_strm(si);
2895
Cyril Bonté7bb63452018-08-17 23:51:02 +02002896 s->sess->fe->timeout.connect = tmout;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002897 s->req.rto = tmout;
2898 s->req.wto = tmout;
2899 s->res.rto = tmout;
2900 s->res.wto = tmout;
Cyril Bonté7bb63452018-08-17 23:51:02 +02002901 s->req.rex = tick_add_ifset(now_ms, tmout);
2902 s->req.wex = tick_add_ifset(now_ms, tmout);
2903 s->res.rex = tick_add_ifset(now_ms, tmout);
2904 s->res.wex = tick_add_ifset(now_ms, tmout);
2905
2906 s->task->expire = tick_add_ifset(now_ms, tmout);
2907 task_queue(s->task);
2908
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002909 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002910
Thierry Fourniere9636f12018-03-08 09:54:32 +01002911 lua_pushinteger(L, 1);
Tim Duesterhus119a5f12018-01-06 19:16:25 +01002912 return 1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002913}
2914
2915__LJMP static int hlua_socket_new(lua_State *L)
2916{
2917 struct hlua_socket *socket;
2918 struct appctx *appctx;
Willy Tarreau15b5e142015-04-04 14:38:25 +02002919 struct session *sess;
Willy Tarreau61cf7c82015-04-06 00:48:33 +02002920 struct stream *strm;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002921
2922 /* Check stack size. */
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01002923 if (!lua_checkstack(L, 3)) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002924 hlua_pusherror(L, "socket: full stack");
2925 goto out_fail_conf;
2926 }
2927
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01002928 /* Create the object: obj[0] = userdata. */
2929 lua_newtable(L);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002930 socket = MAY_LJMP(lua_newuserdata(L, sizeof(*socket)));
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01002931 lua_rawseti(L, -2, 0);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002932 memset(socket, 0, sizeof(*socket));
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002933 socket->tid = tid;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002934
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05002935 /* Check if the various memory pools are initialized. */
Willy Tarreaubafbe012017-11-24 17:34:44 +01002936 if (!pool_head_stream || !pool_head_buffer) {
Thierry FOURNIER4a6170c2015-03-09 17:07:10 +01002937 hlua_pusherror(L, "socket: uninitialized pools.");
2938 goto out_fail_conf;
2939 }
2940
Willy Tarreau87b09662015-04-03 00:22:06 +02002941 /* Pop a class stream metatable and affect it to the userdata. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002942 lua_rawgeti(L, LUA_REGISTRYINDEX, class_socket_ref);
2943 lua_setmetatable(L, -2);
2944
Willy Tarreaud420a972015-04-06 00:39:18 +02002945 /* Create the applet context */
Willy Tarreaue6124462021-09-13 10:07:38 +02002946 appctx = appctx_new(&update_applet);
Willy Tarreau61cf7c82015-04-06 00:48:33 +02002947 if (!appctx) {
2948 hlua_pusherror(L, "socket: out of memory");
Willy Tarreaufeb76402015-04-03 14:10:06 +02002949 goto out_fail_conf;
Willy Tarreau61cf7c82015-04-06 00:48:33 +02002950 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002951
Thierry FOURNIER18d09902016-12-16 09:25:38 +01002952 appctx->ctx.hlua_cosocket.connected = 0;
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02002953 appctx->ctx.hlua_cosocket.die = 0;
Thierry FOURNIER18d09902016-12-16 09:25:38 +01002954 LIST_INIT(&appctx->ctx.hlua_cosocket.wake_on_write);
2955 LIST_INIT(&appctx->ctx.hlua_cosocket.wake_on_read);
Willy Tarreaub2bf8332015-04-04 15:58:58 +02002956
Willy Tarreaud420a972015-04-06 00:39:18 +02002957 /* Now create a session, task and stream for this applet */
Amaury Denoyelle239fdbf2021-03-24 10:22:03 +01002958 sess = session_new(socket_proxy, NULL, &appctx->obj_type);
Willy Tarreaud420a972015-04-06 00:39:18 +02002959 if (!sess) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002960 hlua_pusherror(L, "socket: out of memory");
Willy Tarreaud420a972015-04-06 00:39:18 +02002961 goto out_fail_sess;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002962 }
2963
Christopher Faulet26256f82020-09-14 11:40:13 +02002964 strm = stream_new(sess, &appctx->obj_type, &BUF_NULL);
Willy Tarreau61cf7c82015-04-06 00:48:33 +02002965 if (!strm) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002966 hlua_pusherror(L, "socket: out of memory");
Willy Tarreaud420a972015-04-06 00:39:18 +02002967 goto out_fail_stream;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002968 }
2969
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002970 /* Initialise cross reference between stream and Lua socket object. */
2971 xref_create(&socket->xref, &appctx->ctx.hlua_cosocket.xref);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002972
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002973 /* Configure "right" stream interface. this "si" is used to connect
2974 * and retrieve data from the server. The connection is initialized
2975 * with the "struct server".
2976 */
Willy Tarreau61cf7c82015-04-06 00:48:33 +02002977 si_set_state(&strm->si[1], SI_ST_ASS);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002978
2979 /* Force destination server. */
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002980 strm->flags |= SF_DIRECT | SF_ASSIGNED | SF_BE_ASSIGNED;
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +01002981 strm->target = &socket_tcp->obj_type;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002982
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002983 return 1;
2984
Willy Tarreaud420a972015-04-06 00:39:18 +02002985 out_fail_stream:
Willy Tarreau11c36242015-04-04 15:54:03 +02002986 session_free(sess);
Willy Tarreaud420a972015-04-06 00:39:18 +02002987 out_fail_sess:
2988 appctx_free(appctx);
2989 out_fail_conf:
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002990 WILL_LJMP(lua_error(L));
2991 return 0;
2992}
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01002993
2994/*
2995 *
2996 *
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002997 * Class Channel
2998 *
2999 *
3000 */
3001
3002/* Returns the struct hlua_channel join to the class channel in the
3003 * stack entry "ud" or throws an argument error.
3004 */
Willy Tarreau47860ed2015-03-10 14:07:50 +01003005__LJMP static struct channel *hlua_checkchannel(lua_State *L, int ud)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003006{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02003007 return MAY_LJMP(hlua_checkudata(L, ud, class_channel_ref));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003008}
3009
Willy Tarreau47860ed2015-03-10 14:07:50 +01003010/* Pushes the channel onto the top of the stack. If the stask does not have a
3011 * free slots, the function fails and returns 0;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003012 */
Willy Tarreau2a71af42015-03-10 13:51:50 +01003013static int hlua_channel_new(lua_State *L, struct channel *channel)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003014{
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003015 /* Check stack size. */
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01003016 if (!lua_checkstack(L, 3))
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003017 return 0;
3018
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01003019 lua_newtable(L);
Willy Tarreau47860ed2015-03-10 14:07:50 +01003020 lua_pushlightuserdata(L, channel);
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01003021 lua_rawseti(L, -2, 0);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003022
3023 /* Pop a class sesison metatable and affect it to the userdata. */
3024 lua_rawgeti(L, LUA_REGISTRYINDEX, class_channel_ref);
3025 lua_setmetatable(L, -2);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003026 return 1;
3027}
3028
Christopher Faulet9f55a502020-02-25 15:21:02 +01003029/* Helper function returning a filter attached to a channel at the position <ud>
3030 * in the stack, filling the current offset and length of the filter. If no
Ilya Shipitsinff0f2782021-08-22 22:18:07 +05003031 * filter is attached, NULL is returned and <offset> and <len> are not
Christopher Faulet9f55a502020-02-25 15:21:02 +01003032 * initialized.
3033 */
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003034static struct filter *hlua_channel_filter(lua_State *L, int ud, struct channel *chn, size_t *offset, size_t *len)
Christopher Faulet9f55a502020-02-25 15:21:02 +01003035{
3036 struct filter *filter = NULL;
3037
3038 if (lua_getfield(L, ud, "__filter") == LUA_TLIGHTUSERDATA) {
3039 struct hlua_flt_ctx *flt_ctx;
3040
3041 filter = lua_touserdata (L, -1);
3042 flt_ctx = filter->ctx;
3043 if (hlua_filter_from_payload(filter)) {
3044 *offset = flt_ctx->cur_off[CHN_IDX(chn)];
3045 *len = flt_ctx->cur_len[CHN_IDX(chn)];
3046 }
3047 }
3048
3049 lua_pop(L, 1);
3050 return filter;
3051}
3052
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003053/* Copies <len> bytes of data present in the channel's buffer, starting at the
3054* offset <offset>, and put it in a LUA string variable. It is the caller
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003055* responsibility to ensure <len> and <offset> are valid. It always return the
3056* length of the built string. <len> may be 0, in this case, an empty string is
3057* created and 0 is returned.
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003058*/
3059static inline int _hlua_channel_dup(struct channel *chn, lua_State *L, size_t offset, size_t len)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003060{
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003061 size_t block1, block2;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003062 luaL_Buffer b;
3063
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003064 block1 = len;
3065 if (block1 > b_contig_data(&chn->buf, b_peek_ofs(&chn->buf, offset)))
3066 block1 = b_contig_data(&chn->buf, b_peek_ofs(&chn->buf, offset));
3067 block2 = len - block1;
3068
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003069 luaL_buffinit(L, &b);
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003070 luaL_addlstring(&b, b_peek(&chn->buf, offset), block1);
3071 if (block2)
3072 luaL_addlstring(&b, b_orig(&chn->buf), block2);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003073 luaL_pushresult(&b);
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003074 return len;
3075}
3076
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003077/* Inserts the string <str> to the channel's buffer at the offset <offset>. This
3078 * function returns -1 if data cannot be copied. Otherwise, it returns the
3079 * number of bytes copied.
3080 */
3081static int _hlua_channel_insert(struct channel *chn, lua_State *L, struct ist str, size_t offset)
3082{
3083 int ret = 0;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003084
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003085 /* Nothing to do, just return */
3086 if (unlikely(istlen(str) == 0))
3087 goto end;
3088
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003089 if (istlen(str) > c_room(chn)) {
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003090 ret = -1;
3091 goto end;
3092 }
3093 ret = b_insert_blk(&chn->buf, offset, istptr(str), istlen(str));
3094
3095 end:
3096 return ret;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003097}
3098
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003099/* Removes <len> bytes of data at the absolute position <offset>.
3100 */
3101static void _hlua_channel_delete(struct channel *chn, size_t offset, size_t len)
3102{
3103 size_t end = offset + len;
3104
3105 if (b_peek(&chn->buf, end) != b_tail(&chn->buf))
3106 b_move(&chn->buf, b_peek_ofs(&chn->buf, end),
3107 b_data(&chn->buf) - end, -len);
3108 b_sub(&chn->buf, len);
3109}
3110
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003111/* Copies input data in the channel's buffer. It is possible to set a specific
3112 * offset (0 by default) and a length (all remaining input data starting for the
3113 * offset by default). If there is not enough input data and more data can be
3114 * received, this function yields.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003115 *
3116 * From an action, All input data are considered. For a filter, the offset and
3117 * the length of input data to consider are retrieved from the filter context.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003118 */
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003119__LJMP static int hlua_channel_get_data_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003120{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003121 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003122 struct filter *filter;
3123 size_t input, output;
3124 int offset, len;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003125
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003126 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003127
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003128 output = co_data(chn);
3129 input = ci_data(chn);
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003130
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003131 filter = hlua_channel_filter(L, 1, chn, &output, &input);
3132 if (filter && !hlua_filter_from_payload(filter))
3133 WILL_LJMP(lua_error(L));
3134
3135 offset = output;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003136 if (lua_gettop(L) > 1) {
3137 offset = MAY_LJMP(luaL_checkinteger(L, 2));
3138 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02003139 offset = MAX(0, (int)input + offset);
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003140 offset += output;
3141 if (offset < output || offset > input + output) {
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003142 lua_pushfstring(L, "offset out of range.");
3143 WILL_LJMP(lua_error(L));
3144 }
3145 }
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003146 len = output + input - offset;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003147 if (lua_gettop(L) == 3) {
3148 len = MAY_LJMP(luaL_checkinteger(L, 3));
3149 if (!len)
3150 goto dup;
3151 if (len == -1)
3152 len = global.tune.bufsize;
3153 if (len < 0) {
3154 lua_pushfstring(L, "length out of range.");
3155 WILL_LJMP(lua_error(L));
3156 }
3157 }
3158
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003159 if (offset + len > output + input) {
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003160 if (!HLUA_CANT_YIELD(hlua_gethlua(L)) && !channel_input_closed(chn) && channel_may_recv(chn)) {
3161 /* Yield waiting for more data, as requested */
3162 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_get_data_yield, TICK_ETERNITY, 0));
3163 }
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003164 len = output + input - offset;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003165 }
3166
3167 dup:
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003168 _hlua_channel_dup(chn, L, offset, len);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003169 return 1;
3170}
3171
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003172/* Copies the first line (including the trailing LF) of input data in the
3173 * channel's buffer. It is possible to set a specific offset (0 by default) and
3174 * a length (all remaining input data starting for the offset by default). If
3175 * there is not enough input data and more data can be received, the function
3176 * yields. If a length is explicitly specified, no more data are
3177 * copied. Otherwise, if no LF is found and more data can be received, this
3178 * function yields.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003179 *
3180 * From an action, All input data are considered. For a filter, the offset and
3181 * the length of input data to consider are retrieved from the filter context.
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003182 */
3183__LJMP static int hlua_channel_get_line_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003184{
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003185 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003186 struct filter *filter;
3187 size_t l, input, output;
3188 int offset, len;
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003189
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003190 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003191 output = co_data(chn);
3192 input = ci_data(chn);
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003193
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003194 filter = hlua_channel_filter(L, 1, chn, &output, &input);
3195 if (filter && !hlua_filter_from_payload(filter))
3196 WILL_LJMP(lua_error(L));
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003197
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003198 offset = output;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003199 if (lua_gettop(L) > 1) {
3200 offset = MAY_LJMP(luaL_checkinteger(L, 2));
3201 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02003202 offset = MAX(0, (int)input + offset);
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003203 offset += output;
3204 if (offset < output || offset > input + output) {
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003205 lua_pushfstring(L, "offset out of range.");
3206 WILL_LJMP(lua_error(L));
3207 }
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003208 }
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003209
3210 len = output + input - offset;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003211 if (lua_gettop(L) == 3) {
3212 len = MAY_LJMP(luaL_checkinteger(L, 3));
3213 if (!len)
3214 goto dup;
3215 if (len == -1)
3216 len = global.tune.bufsize;
3217 if (len < 0) {
3218 lua_pushfstring(L, "length out of range.");
3219 WILL_LJMP(lua_error(L));
3220 }
3221 }
3222
3223 for (l = 0; l < len; l++) {
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003224 if (l + offset >= output + input)
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003225 break;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003226 if (*(b_peek(&chn->buf, offset + l)) == '\n') {
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003227 len = l+1;
3228 goto dup;
3229 }
3230 }
3231
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003232 if (offset + len > output + input) {
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003233 if (!HLUA_CANT_YIELD(hlua_gethlua(L)) && !channel_input_closed(chn) && channel_may_recv(chn)) {
3234 /* Yield waiting for more data */
3235 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_get_line_yield, TICK_ETERNITY, 0));
3236 }
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003237 len = output + input - offset;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003238 }
3239
3240 dup:
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003241 _hlua_channel_dup(chn, L, offset, len);
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003242 return 1;
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003243}
3244
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003245/* [ DEPRECATED ]
3246 *
3247 * Duplicate all input data foud in the channel's buffer. The data are not
3248 * removed from the buffer. This function relies on _hlua_channel_dup().
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003249 *
3250 * From an action, All input data are considered. For a filter, the offset and
3251 * the length of input data to consider are retrieved from the filter context.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003252 */
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003253__LJMP static int hlua_channel_dup(lua_State *L)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003254{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003255 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003256 struct filter *filter;
3257 size_t offset, len;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003258
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003259 MAY_LJMP(check_args(L, 1, "dup"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003260 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003261 if (IS_HTX_STRM(chn_strm(chn))) {
3262 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3263 WILL_LJMP(lua_error(L));
3264 }
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003265
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003266 offset = co_data(chn);
3267 len = ci_data(chn);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003268
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003269 filter = hlua_channel_filter(L, 1, chn, &offset, &len);
3270 if (filter && !hlua_filter_from_payload(filter))
3271 WILL_LJMP(lua_error(L));
3272
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003273 if (!ci_data(chn) && channel_input_closed(chn)) {
3274 lua_pushnil(L);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003275 return 1;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003276 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003277
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003278 _hlua_channel_dup(chn, L, offset, len);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003279 return 1;
3280}
3281
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003282/* [ DEPRECATED ]
3283 *
3284 * Get all input data foud in the channel's buffer. The data are removed from
3285 * the buffer after the copy. This function relies on _hlua_channel_dup() and
3286 * _hlua_channel_delete().
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003287 *
3288 * From an action, All input data are considered. For a filter, the offset and
3289 * the length of input data to consider are retrieved from the filter context.
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003290 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003291__LJMP static int hlua_channel_get(lua_State *L)
3292{
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003293 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003294 struct filter *filter;
3295 size_t offset, len;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003296 int ret;
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003297
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003298 MAY_LJMP(check_args(L, 1, "get"));
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003299 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3300 if (IS_HTX_STRM(chn_strm(chn))) {
3301 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3302 WILL_LJMP(lua_error(L));
3303 }
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003304
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003305 offset = co_data(chn);
3306 len = ci_data(chn);
3307
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003308 filter = hlua_channel_filter(L, 1, chn, &offset, &len);
3309 if (filter && !hlua_filter_from_payload(filter))
3310 WILL_LJMP(lua_error(L));
3311
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003312 if (!ci_data(chn) && channel_input_closed(chn)) {
3313 lua_pushnil(L);
3314 return 1;
3315 }
3316
3317 ret = _hlua_channel_dup(chn, L, offset, len);
3318 _hlua_channel_delete(chn, offset, ret);
3319 return 1;
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003320}
3321
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003322/* This functions consumes and returns one line. If the channel is closed,
3323 * and the last data does not contains a final '\n', the data are returned
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003324 * without the final '\n'. When no more data are available, it returns nil
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003325 * value.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003326 *
3327 * From an action, All input data are considered. For a filter, the offset and
3328 * the length of input data to consider are retrieved from the filter context.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003329 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003330__LJMP static int hlua_channel_getline_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003331{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003332 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003333 struct filter *filter;
3334 size_t l, offset, len;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003335 int ret;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003336
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003337 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003338
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003339 offset = co_data(chn);
3340 len = ci_data(chn);
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003341
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003342 filter = hlua_channel_filter(L, 1, chn, &offset, &len);
3343 if (filter && !hlua_filter_from_payload(filter))
3344 WILL_LJMP(lua_error(L));
3345
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003346 if (!ci_data(chn) && channel_input_closed(chn)) {
3347 lua_pushnil(L);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003348 return 1;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003349 }
3350
3351 for (l = 0; l < len; l++) {
3352 if (*(b_peek(&chn->buf, offset+l)) == '\n') {
3353 len = l+1;
3354 goto dup;
3355 }
3356 }
3357
3358 if (!HLUA_CANT_YIELD(hlua_gethlua(L)) && !channel_input_closed(chn) && channel_may_recv(chn)) {
3359 /* Yield waiting for more data */
3360 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_getline_yield, TICK_ETERNITY, 0));
3361 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003362
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003363 dup:
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003364 ret = _hlua_channel_dup(chn, L, offset, len);
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003365 _hlua_channel_delete(chn, offset, ret);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003366 return 1;
3367}
3368
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003369/* [ DEPRECATED ]
3370 *
3371 * Check arguments for the function "hlua_channel_getline_yield".
3372 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003373__LJMP static int hlua_channel_getline(lua_State *L)
3374{
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003375 struct channel *chn;
3376
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003377 MAY_LJMP(check_args(L, 1, "getline"));
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003378 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3379 if (IS_HTX_STRM(chn_strm(chn))) {
3380 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3381 WILL_LJMP(lua_error(L));
3382 }
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003383 return MAY_LJMP(hlua_channel_getline_yield(L, 0, 0));
3384}
3385
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003386/* Retrieves a given amount of input data at the given offset. By default all
3387 * available input data are returned. The offset may be negactive to start from
3388 * the end of input data. The length may be -1 to set it to the maximum buffer
3389 * size.
3390 */
3391__LJMP static int hlua_channel_get_data(lua_State *L)
3392{
3393 struct channel *chn;
3394
3395 if (lua_gettop(L) < 1 || lua_gettop(L) > 3)
3396 WILL_LJMP(luaL_error(L, "'data' expects at most 2 arguments"));
3397 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3398 if (IS_HTX_STRM(chn_strm(chn))) {
3399 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3400 WILL_LJMP(lua_error(L));
3401 }
3402 return MAY_LJMP(hlua_channel_get_data_yield(L, 0, 0));
3403}
3404
3405/* Retrieves a given amount of input data at the given offset. By default all
3406 * available input data are returned. The offset may be negactive to start from
3407 * the end of input data. The length may be -1 to set it to the maximum buffer
3408 * size.
3409 */
3410__LJMP static int hlua_channel_get_line(lua_State *L)
3411{
3412 struct channel *chn;
3413
3414 if (lua_gettop(L) < 1 || lua_gettop(L) > 3)
3415 WILL_LJMP(luaL_error(L, "'line' expects at most 2 arguments"));
3416 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3417 if (IS_HTX_STRM(chn_strm(chn))) {
3418 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3419 WILL_LJMP(lua_error(L));
3420 }
3421 return MAY_LJMP(hlua_channel_get_line_yield(L, 0, 0));
3422}
3423
3424/* Appends a string into the input side of channel. It returns the length of the
3425 * written string, or -1 if the channel is closed or if the buffer size is too
3426 * little for the data. 0 may be returned if nothing is copied. This function
3427 * does not yield.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003428 *
3429 * For a filter, the context is updated on success.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003430 */
Christopher Faulet23976d92021-08-06 09:59:49 +02003431__LJMP static int hlua_channel_append(lua_State *L)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003432{
Christopher Faulet23976d92021-08-06 09:59:49 +02003433 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003434 struct filter *filter;
Christopher Faulet23976d92021-08-06 09:59:49 +02003435 const char *str;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003436 size_t sz, offset, len;
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003437 int ret;
Christopher Faulet23976d92021-08-06 09:59:49 +02003438
3439 MAY_LJMP(check_args(L, 2, "append"));
3440 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003441 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01003442 if (IS_HTX_STRM(chn_strm(chn))) {
Thierry Fournier77016da2020-08-15 14:35:51 +02003443 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
Christopher Faulet3f829a42018-12-13 21:56:45 +01003444 WILL_LJMP(lua_error(L));
Thierry Fournier77016da2020-08-15 14:35:51 +02003445 }
Christopher Faulet3f829a42018-12-13 21:56:45 +01003446
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003447 offset = co_data(chn);
3448 len = ci_data(chn);
3449
3450 filter = hlua_channel_filter(L, 1, chn, &offset, &len);
3451 if (filter && !hlua_filter_from_payload(filter))
3452 WILL_LJMP(lua_error(L));
3453
3454 ret = _hlua_channel_insert(chn, L, ist2(str, sz), offset);
3455 if (ret > 0 && filter) {
3456 struct hlua_flt_ctx *flt_ctx = filter->ctx;
3457
3458 flt_update_offsets(filter, chn, ret);
3459 flt_ctx->cur_len[CHN_IDX(chn)] += ret;
3460 }
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003461 lua_pushinteger(L, ret);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003462 return 1;
3463}
3464
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003465/* Prepends a string into the input side of channel. It returns the length of the
3466 * written string, or -1 if the channel is closed or if the buffer size is too
3467 * little for the data. 0 may be returned if nothing is copied. This function
3468 * does not yield.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003469 *
3470 * For a filter, the context is updated on success.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003471 */
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003472__LJMP static int hlua_channel_prepend(lua_State *L)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003473{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003474 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003475 struct filter *filter;
Christopher Faulet23976d92021-08-06 09:59:49 +02003476 const char *str;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003477 size_t sz, offset, len;
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003478 int ret;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003479
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003480 MAY_LJMP(check_args(L, 2, "prepend"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003481 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003482 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
3483 if (IS_HTX_STRM(chn_strm(chn))) {
3484 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3485 WILL_LJMP(lua_error(L));
3486 }
3487
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003488 offset = co_data(chn);
3489 len = ci_data(chn);
3490
3491 filter = hlua_channel_filter(L, 1, chn, &offset, &len);
3492 if (filter && !hlua_filter_from_payload(filter))
3493 WILL_LJMP(lua_error(L));
3494
3495 ret = _hlua_channel_insert(chn, L, ist2(str, sz), offset);
3496 if (ret > 0 && filter) {
3497 struct hlua_flt_ctx *flt_ctx = filter->ctx;
3498
3499 flt_update_offsets(filter, chn, ret);
3500 flt_ctx->cur_len[CHN_IDX(chn)] += ret;
3501 }
3502
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003503 lua_pushinteger(L, ret);
3504 return 1;
3505}
3506
3507/* Inserts a given amount of input data at the given offset by a string
3508 * content. By default the string is appended at the end of input data. It
3509 * returns the length of the written string, or -1 if the channel is closed or
3510 * if the buffer size is too little for the data.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003511 *
3512 * For a filter, the context is updated on success.
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003513 */
3514__LJMP static int hlua_channel_insert_data(lua_State *L)
3515{
3516 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003517 struct filter *filter;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003518 const char *str;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003519 size_t sz, input, output;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003520 int ret, offset;
3521
3522 if (lua_gettop(L) < 2 || lua_gettop(L) > 3)
3523 WILL_LJMP(luaL_error(L, "'insert' expects at least 1 argument and at most 2 arguments"));
3524 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3525 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003526
3527 output = co_data(chn);
3528 input = ci_data(chn);
3529
3530 filter = hlua_channel_filter(L, 1, chn, &output, &input);
3531 if (filter && !hlua_filter_from_payload(filter))
3532 WILL_LJMP(lua_error(L));
3533
3534 offset = input + output;
3535 if (lua_gettop(L) > 2) {
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003536 offset = MAY_LJMP(luaL_checkinteger(L, 3));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003537 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02003538 offset = MAX(0, (int)input + offset);
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003539 offset += output;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003540 if (offset < output || offset > output + input) {
3541 lua_pushfstring(L, "offset out of range.");
3542 WILL_LJMP(lua_error(L));
3543 }
3544 }
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003545 if (IS_HTX_STRM(chn_strm(chn))) {
3546 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3547 WILL_LJMP(lua_error(L));
3548 }
3549
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003550 ret = _hlua_channel_insert(chn, L, ist2(str, sz), offset);
3551 if (ret > 0 && filter) {
3552 struct hlua_flt_ctx *flt_ctx = filter->ctx;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003553
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003554 flt_update_offsets(filter, chn, ret);
3555 flt_ctx->cur_len[CHN_IDX(chn)] += ret;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003556 }
3557
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003558 lua_pushinteger(L, ret);
3559 return 1;
3560}
3561/* Replaces a given amount of input data at the given offset by a string
3562 * content. By default all remaining data are removed (offset = 0 and len =
3563 * -1). It returns the length of the written string, or -1 if the channel is
3564 * closed or if the buffer size is too little for the data.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003565 *
3566 * For a filter, the context is updated on success.
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003567 */
3568__LJMP static int hlua_channel_set_data(lua_State *L)
3569{
3570 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003571 struct filter *filter;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003572 const char *str;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003573 size_t sz, input, output;
3574 int ret, offset, len;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003575
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003576 if (lua_gettop(L) < 2 || lua_gettop(L) > 4)
3577 WILL_LJMP(luaL_error(L, "'set' expects at least 1 argument and at most 3 arguments"));
3578 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3579 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003580
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01003581 if (IS_HTX_STRM(chn_strm(chn))) {
Thierry Fournier77016da2020-08-15 14:35:51 +02003582 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
Christopher Faulet3f829a42018-12-13 21:56:45 +01003583 WILL_LJMP(lua_error(L));
Thierry Fournier77016da2020-08-15 14:35:51 +02003584 }
Christopher Faulet3f829a42018-12-13 21:56:45 +01003585
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003586 output = co_data(chn);
3587 input = ci_data(chn);
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003588
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003589 filter = hlua_channel_filter(L, 1, chn, &output, &input);
3590 if (filter && !hlua_filter_from_payload(filter))
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003591 WILL_LJMP(lua_error(L));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003592
3593 offset = output;
3594 if (lua_gettop(L) > 2) {
3595 offset = MAY_LJMP(luaL_checkinteger(L, 3));
3596 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02003597 offset = MAX(0, (int)input + offset);
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003598 offset += output;
3599 if (offset < output || offset > input + output) {
3600 lua_pushfstring(L, "offset out of range.");
3601 WILL_LJMP(lua_error(L));
3602 }
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003603 }
3604
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003605 len = output + input - offset;
3606 if (lua_gettop(L) == 4) {
3607 len = MAY_LJMP(luaL_checkinteger(L, 4));
3608 if (!len)
3609 goto set;
3610 if (len == -1)
3611 len = output + input - offset;
3612 if (len < 0 || offset + len > output + input) {
3613 lua_pushfstring(L, "length out of range.");
3614 WILL_LJMP(lua_error(L));
3615 }
3616 }
3617
3618 set:
Christopher Faulet23976d92021-08-06 09:59:49 +02003619 /* Be sure we can copied the string once input data will be removed. */
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003620 if (sz > c_room(chn) + len)
Christopher Faulet23976d92021-08-06 09:59:49 +02003621 lua_pushinteger(L, -1);
3622 else {
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003623 _hlua_channel_delete(chn, offset, len);
3624 ret = _hlua_channel_insert(chn, L, ist2(str, sz), offset);
3625 if (filter) {
3626 struct hlua_flt_ctx *flt_ctx = filter->ctx;
3627
3628 len -= (ret > 0 ? ret : 0);
3629 flt_update_offsets(filter, chn, -len);
3630 flt_ctx->cur_len[CHN_IDX(chn)] -= len;
3631 }
3632
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003633 lua_pushinteger(L, ret);
Christopher Faulet23976d92021-08-06 09:59:49 +02003634 }
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003635 return 1;
3636}
3637
3638/* Removes a given amount of input data at the given offset. By default all
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003639 * input data are removed (offset = 0 and len = -1). It returns the amount of
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003640 * the removed data.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003641 *
3642 * For a filter, the context is updated on success.
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003643 */
3644__LJMP static int hlua_channel_del_data(lua_State *L)
3645{
3646 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003647 struct filter *filter;
3648 size_t input, output;
3649 int offset, len;
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003650
3651 if (lua_gettop(L) < 1 || lua_gettop(L) > 3)
3652 WILL_LJMP(luaL_error(L, "'remove' expects at most 2 arguments"));
3653 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003654
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003655 if (IS_HTX_STRM(chn_strm(chn))) {
3656 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3657 WILL_LJMP(lua_error(L));
3658 }
3659
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003660 output = co_data(chn);
3661 input = ci_data(chn);
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003662
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003663 filter = hlua_channel_filter(L, 1, chn, &output, &input);
3664 if (filter && !hlua_filter_from_payload(filter))
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003665 WILL_LJMP(lua_error(L));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003666
3667 offset = output;
3668 if (lua_gettop(L) > 2) {
3669 offset = MAY_LJMP(luaL_checkinteger(L, 3));
3670 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02003671 offset = MAX(0, (int)input + offset);
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003672 offset += output;
3673 if (offset < output || offset > input + output) {
3674 lua_pushfstring(L, "offset out of range.");
3675 WILL_LJMP(lua_error(L));
3676 }
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003677 }
3678
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003679 len = output + input - offset;
3680 if (lua_gettop(L) == 4) {
3681 len = MAY_LJMP(luaL_checkinteger(L, 4));
3682 if (!len)
3683 goto end;
3684 if (len == -1)
3685 len = output + input - offset;
3686 if (len < 0 || offset + len > output + input) {
3687 lua_pushfstring(L, "length out of range.");
3688 WILL_LJMP(lua_error(L));
3689 }
3690 }
3691
3692 _hlua_channel_delete(chn, offset, len);
3693 if (filter) {
3694 struct hlua_flt_ctx *flt_ctx = filter->ctx;
3695
3696 flt_update_offsets(filter, chn, -len);
3697 flt_ctx->cur_len[CHN_IDX(chn)] -= len;
3698 }
3699
3700 end:
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003701 lua_pushinteger(L, len);
Christopher Faulet23976d92021-08-06 09:59:49 +02003702 return 1;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003703}
3704
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003705/* Append data in the output side of the buffer. This data is immediately
3706 * sent. The function returns the amount of data written. If the buffer
3707 * cannot contain the data, the function yields. The function returns -1
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003708 * if the channel is closed.
3709 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003710__LJMP static int hlua_channel_send_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003711{
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003712 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003713 struct filter *filter;
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003714 const char *str;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003715 size_t offset, len, sz;
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003716 int l, ret;
Thierry Fournier4234dbd2020-11-28 13:18:23 +01003717 struct hlua *hlua;
3718
3719 /* Get hlua struct, or NULL if we execute from main lua state */
3720 hlua = hlua_gethlua(L);
3721 if (!hlua) {
3722 lua_pushnil(L);
3723 return 1;
3724 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003725
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003726 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3727 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
3728 l = MAY_LJMP(luaL_checkinteger(L, 3));
Christopher Faulet3f829a42018-12-13 21:56:45 +01003729
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003730 offset = co_data(chn);
3731 len = ci_data(chn);
3732
3733 filter = hlua_channel_filter(L, 1, chn, &offset, &len);
3734 if (filter && !hlua_filter_from_payload(filter))
3735 WILL_LJMP(lua_error(L));
3736
3737
Willy Tarreau47860ed2015-03-10 14:07:50 +01003738 if (unlikely(channel_output_closed(chn))) {
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003739 lua_pushinteger(L, -1);
3740 return 1;
3741 }
3742
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003743 len = c_room(chn);
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003744 if (len > sz -l) {
3745 if (filter) {
3746 lua_pushinteger(L, -1);
3747 return 1;
3748 }
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003749 len = sz - l;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003750 }
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003751
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003752 ret = _hlua_channel_insert(chn, L, ist2(str, len), offset);
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003753 if (ret == -1) {
3754 lua_pop(L, 1);
3755 lua_pushinteger(L, -1);
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003756 return 1;
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003757 }
3758 if (ret) {
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003759 if (filter) {
3760 struct hlua_flt_ctx *flt_ctx = filter->ctx;
3761
3762
3763 flt_update_offsets(filter, chn, ret);
3764 FLT_OFF(filter, chn) += ret;
3765 flt_ctx->cur_off[CHN_IDX(chn)] += ret;
3766 }
3767 else
3768 c_adv(chn, ret);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003769
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003770 l += ret;
3771 lua_pop(L, 1);
3772 lua_pushinteger(L, l);
3773 }
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003774
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003775 if (l < sz) {
3776 /* Yield only if the channel's output is not empty.
3777 * Otherwise it means we cannot add more data. */
3778 if (co_data(chn) == 0 || HLUA_CANT_YIELD(hlua_gethlua(L)))
Christopher Faulet2e60aa42021-08-05 11:58:37 +02003779 return 1;
3780
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003781 /* If we are waiting for space in the response buffer, we
3782 * must set the flag WAKERESWR. This flag required the task
3783 * wake up if any activity is detected on the response buffer.
3784 */
Willy Tarreau47860ed2015-03-10 14:07:50 +01003785 if (chn->flags & CF_ISRESP)
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003786 HLUA_SET_WAKERESWR(hlua);
Thierry FOURNIER53e08ec2015-03-06 00:35:53 +01003787 else
3788 HLUA_SET_WAKEREQWR(hlua);
Willy Tarreau9635e032018-10-16 17:52:55 +02003789 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_send_yield, TICK_ETERNITY, 0));
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003790 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003791
3792 return 1;
3793}
3794
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05003795/* Just a wrapper of "_hlua_channel_send". This wrapper permits
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003796 * yield the LUA process, and resume it without checking the
3797 * input arguments.
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003798 *
3799 * This function cannot be called from a filter.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003800 */
3801__LJMP static int hlua_channel_send(lua_State *L)
3802{
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003803 struct channel *chn;
3804
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003805 MAY_LJMP(check_args(L, 2, "send"));
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003806 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3807 if (IS_HTX_STRM(chn_strm(chn))) {
3808 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3809 WILL_LJMP(lua_error(L));
3810 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003811 lua_pushinteger(L, 0);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003812 return MAY_LJMP(hlua_channel_send_yield(L, 0, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003813}
3814
3815/* This function forward and amount of butes. The data pass from
3816 * the input side of the buffer to the output side, and can be
3817 * forwarded. This function never fails.
3818 *
3819 * The Lua function takes an amount of bytes to be forwarded in
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05003820 * input. It returns the number of bytes forwarded.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003821 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003822__LJMP static int hlua_channel_forward_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003823{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003824 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003825 struct filter *filter;
3826 size_t offset, len, fwd;
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003827 int l, max;
Thierry Fournier4234dbd2020-11-28 13:18:23 +01003828 struct hlua *hlua;
3829
3830 /* Get hlua struct, or NULL if we execute from main lua state */
3831 hlua = hlua_gethlua(L);
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003832 if (!hlua) {
3833 lua_pushnil(L);
Thierry Fournier4234dbd2020-11-28 13:18:23 +01003834 return 1;
Thierry Fournier77016da2020-08-15 14:35:51 +02003835 }
Christopher Faulet3f829a42018-12-13 21:56:45 +01003836
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003837 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003838 fwd = MAY_LJMP(luaL_checkinteger(L, 2));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003839 l = MAY_LJMP(luaL_checkinteger(L, -1));
3840
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003841 offset = co_data(chn);
3842 len = ci_data(chn);
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003843
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003844 filter = hlua_channel_filter(L, 1, chn, &offset, &len);
3845 if (filter && !hlua_filter_from_payload(filter))
3846 WILL_LJMP(lua_error(L));
3847
3848 max = fwd - l;
3849 if (max > len)
3850 max = len;
3851
3852 if (filter) {
3853 struct hlua_flt_ctx *flt_ctx = filter->ctx;
3854
3855 FLT_OFF(filter, chn) += max;
3856 flt_ctx->cur_off[CHN_IDX(chn)] += max;
3857 flt_ctx->cur_len[CHN_IDX(chn)] -= max;
3858 }
3859 else
3860 channel_forward(chn, max);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003861
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003862 l += max;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003863 lua_pop(L, 1);
3864 lua_pushinteger(L, l);
3865
3866 /* Check if it miss bytes to forward. */
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003867 if (l < fwd) {
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003868 /* The the input channel or the output channel are closed, we
3869 * must return the amount of data forwarded.
3870 */
Christopher Faulet2e60aa42021-08-05 11:58:37 +02003871 if (channel_input_closed(chn) || channel_output_closed(chn) || HLUA_CANT_YIELD(hlua_gethlua(L)))
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003872 return 1;
3873
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003874 /* If we are waiting for space data in the response buffer, we
3875 * must set the flag WAKERESWR. This flag required the task
3876 * wake up if any activity is detected on the response buffer.
3877 */
Willy Tarreau47860ed2015-03-10 14:07:50 +01003878 if (chn->flags & CF_ISRESP)
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003879 HLUA_SET_WAKERESWR(hlua);
Thierry FOURNIER53e08ec2015-03-06 00:35:53 +01003880 else
3881 HLUA_SET_WAKEREQWR(hlua);
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003882
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003883 /* Otherwise, we can yield waiting for new data in the inpout side. */
Willy Tarreau9635e032018-10-16 17:52:55 +02003884 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_forward_yield, TICK_ETERNITY, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003885 }
3886
3887 return 1;
3888}
3889
3890/* Just check the input and prepare the stack for the previous
3891 * function "hlua_channel_forward_yield"
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003892 *
3893 * This function cannot be called from a filter.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003894 */
3895__LJMP static int hlua_channel_forward(lua_State *L)
3896{
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003897 struct channel *chn;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003898
Christopher Faulet9a6ffda2021-08-06 13:49:54 +02003899 MAY_LJMP(check_args(L, 2, "forward"));
3900 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3901 if (IS_HTX_STRM(chn_strm(chn))) {
3902 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
3903 WILL_LJMP(lua_error(L));
3904 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003905 lua_pushinteger(L, 0);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003906 return MAY_LJMP(hlua_channel_forward_yield(L, 0, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003907}
3908
3909/* Just returns the number of bytes available in the input
3910 * side of the buffer. This function never fails.
3911 */
3912__LJMP static int hlua_channel_get_in_len(lua_State *L)
3913{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003914 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003915 struct filter *filter;
3916 size_t output, input;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003917
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003918 MAY_LJMP(check_args(L, 1, "input"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003919 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003920
3921 output = co_data(chn);
3922 input = ci_data(chn);
3923 filter = hlua_channel_filter(L, 1, chn, &output, &input);
3924 if (filter || !IS_HTX_STRM(chn_strm(chn)))
3925 lua_pushinteger(L, input);
3926 else {
Christopher Fauleta3ceac12018-12-14 13:39:09 +01003927 struct htx *htx = htxbuf(&chn->buf);
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003928
Christopher Fauleta3ceac12018-12-14 13:39:09 +01003929 lua_pushinteger(L, htx->data - co_data(chn));
3930 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003931 return 1;
3932}
3933
Thierry FOURNIER / OZON.IO65192f32016-11-07 15:28:40 +01003934/* Returns true if the channel is full. */
3935__LJMP static int hlua_channel_is_full(lua_State *L)
3936{
3937 struct channel *chn;
Thierry FOURNIER / OZON.IO65192f32016-11-07 15:28:40 +01003938
3939 MAY_LJMP(check_args(L, 1, "is_full"));
3940 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Faulet0ec740e2020-02-26 11:59:19 +01003941 /* ignore the reserve, we are not on a producer side (ie in an
3942 * applet).
3943 */
3944 lua_pushboolean(L, channel_full(chn, 0));
Thierry FOURNIER / OZON.IO65192f32016-11-07 15:28:40 +01003945 return 1;
3946}
3947
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003948/* Returns true if the channel may still receive data. */
3949__LJMP static int hlua_channel_may_recv(lua_State *L)
3950{
3951 struct channel *chn;
3952
3953 MAY_LJMP(check_args(L, 1, "may_recv"));
3954 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3955 lua_pushboolean(L, (!channel_input_closed(chn) && channel_may_recv(chn)));
3956 return 1;
3957}
3958
Christopher Faulet2ac9ba22020-02-25 10:15:50 +01003959/* Returns true if the channel is the response channel. */
3960__LJMP static int hlua_channel_is_resp(lua_State *L)
3961{
3962 struct channel *chn;
3963
3964 MAY_LJMP(check_args(L, 1, "is_resp"));
3965 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3966
3967 lua_pushboolean(L, !!(chn->flags & CF_ISRESP));
3968 return 1;
3969}
3970
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003971/* Just returns the number of bytes available in the output
3972 * side of the buffer. This function never fails.
3973 */
3974__LJMP static int hlua_channel_get_out_len(lua_State *L)
3975{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003976 struct channel *chn;
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003977 size_t output, input;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003978
Christopher Faulet6a79fc12021-08-06 16:02:36 +02003979 MAY_LJMP(check_args(L, 1, "output"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003980 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Fauleta1ac5fb2021-08-09 10:22:46 +02003981
3982 output = co_data(chn);
3983 input = ci_data(chn);
3984 hlua_channel_filter(L, 1, chn, &output, &input);
3985
3986 lua_pushinteger(L, output);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003987 return 1;
3988}
3989
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003990/*
3991 *
3992 *
3993 * Class Fetches
3994 *
3995 *
3996 */
3997
3998/* Returns a struct hlua_session if the stack entry "ud" is
Willy Tarreau87b09662015-04-03 00:22:06 +02003999 * a class stream, otherwise it throws an error.
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004000 */
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01004001__LJMP static struct hlua_smp *hlua_checkfetches(lua_State *L, int ud)
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004002{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02004003 return MAY_LJMP(hlua_checkudata(L, ud, class_fetches_ref));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004004}
4005
4006/* This function creates and push in the stack a fetch object according
4007 * with a current TXN.
4008 */
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004009static int hlua_fetches_new(lua_State *L, struct hlua_txn *txn, unsigned int flags)
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004010{
Willy Tarreau7073c472015-04-06 11:15:40 +02004011 struct hlua_smp *hsmp;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004012
4013 /* Check stack size. */
4014 if (!lua_checkstack(L, 3))
4015 return 0;
4016
4017 /* Create the object: obj[0] = userdata.
4018 * Note that the base of the Fetches object is the
4019 * transaction object.
4020 */
4021 lua_newtable(L);
Willy Tarreau7073c472015-04-06 11:15:40 +02004022 hsmp = lua_newuserdata(L, sizeof(*hsmp));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004023 lua_rawseti(L, -2, 0);
4024
Willy Tarreau7073c472015-04-06 11:15:40 +02004025 hsmp->s = txn->s;
4026 hsmp->p = txn->p;
Thierry FOURNIERc4eebc82015-11-02 10:01:59 +01004027 hsmp->dir = txn->dir;
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004028 hsmp->flags = flags;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004029
4030 /* Pop a class sesison metatable and affect it to the userdata. */
4031 lua_rawgeti(L, LUA_REGISTRYINDEX, class_fetches_ref);
4032 lua_setmetatable(L, -2);
4033
4034 return 1;
4035}
4036
4037/* This function is an LUA binding. It is called with each sample-fetch.
4038 * It uses closure argument to store the associated sample-fetch. It
4039 * returns only one argument or throws an error. An error is thrown
4040 * only if an error is encountered during the argument parsing. If
4041 * the "sample-fetch" function fails, nil is returned.
4042 */
4043__LJMP static int hlua_run_sample_fetch(lua_State *L)
4044{
Willy Tarreaub2ccb562015-04-06 11:11:15 +02004045 struct hlua_smp *hsmp;
Willy Tarreau2ec22742015-03-10 14:27:20 +01004046 struct sample_fetch *f;
Frédéric Lécaillef874a832018-06-15 13:56:04 +02004047 struct arg args[ARGM_NBARGS + 1] = {{0}};
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004048 int i;
4049 struct sample smp;
4050
4051 /* Get closure arguments. */
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02004052 f = lua_touserdata(L, lua_upvalueindex(1));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004053
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004054 /* Get traditional arguments. */
Willy Tarreaub2ccb562015-04-06 11:11:15 +02004055 hsmp = MAY_LJMP(hlua_checkfetches(L, 1));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004056
Thierry FOURNIERca988662015-12-20 18:43:03 +01004057 /* Check execution authorization. */
4058 if (f->use & SMP_USE_HTTP_ANY &&
4059 !(hsmp->flags & HLUA_F_MAY_USE_HTTP)) {
4060 lua_pushfstring(L, "the sample-fetch '%s' needs an HTTP parser which "
4061 "is not available in Lua services", f->kw);
4062 WILL_LJMP(lua_error(L));
4063 }
4064
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004065 /* Get extra arguments. */
4066 for (i = 0; i < lua_gettop(L) - 1; i++) {
4067 if (i >= ARGM_NBARGS)
4068 break;
4069 hlua_lua2arg(L, i + 2, &args[i]);
4070 }
4071 args[i].type = ARGT_STOP;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004072 args[i].data.str.area = NULL;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004073
4074 /* Check arguments. */
Willy Tarreaub2ccb562015-04-06 11:11:15 +02004075 MAY_LJMP(hlua_lua2arg_check(L, 2, args, f->arg_mask, hsmp->p));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004076
4077 /* Run the special args checker. */
Willy Tarreau2ec22742015-03-10 14:27:20 +01004078 if (f->val_args && !f->val_args(args, NULL)) {
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004079 lua_pushfstring(L, "error in arguments");
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004080 goto error;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004081 }
4082
4083 /* Initialise the sample. */
4084 memset(&smp, 0, sizeof(smp));
4085
4086 /* Run the sample fetch process. */
Willy Tarreau1777ea62016-03-10 16:15:46 +01004087 smp_set_owner(&smp, hsmp->p, hsmp->s->sess, hsmp->s, hsmp->dir & SMP_OPT_DIR);
Thierry FOURNIER0786d052015-05-11 15:42:45 +02004088 if (!f->process(args, &smp, f->kw, f->private)) {
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004089 if (hsmp->flags & HLUA_F_AS_STRING)
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01004090 lua_pushstring(L, "");
4091 else
4092 lua_pushnil(L);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004093 goto end;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004094 }
4095
4096 /* Convert the returned sample in lua value. */
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004097 if (hsmp->flags & HLUA_F_AS_STRING)
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01004098 hlua_smp2lua_str(L, &smp);
4099 else
4100 hlua_smp2lua(L, &smp);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004101
4102 end:
Willy Tarreauee0d7272021-07-16 10:26:56 +02004103 free_args(args);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004104 return 1;
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004105
4106 error:
Willy Tarreauee0d7272021-07-16 10:26:56 +02004107 free_args(args);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004108 WILL_LJMP(lua_error(L));
4109 return 0; /* Never reached */
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01004110}
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01004111
4112/*
4113 *
4114 *
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004115 * Class Converters
4116 *
4117 *
4118 */
4119
4120/* Returns a struct hlua_session if the stack entry "ud" is
Willy Tarreau87b09662015-04-03 00:22:06 +02004121 * a class stream, otherwise it throws an error.
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004122 */
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01004123__LJMP static struct hlua_smp *hlua_checkconverters(lua_State *L, int ud)
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004124{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02004125 return MAY_LJMP(hlua_checkudata(L, ud, class_converters_ref));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004126}
4127
4128/* This function creates and push in the stack a Converters object
4129 * according with a current TXN.
4130 */
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004131static int hlua_converters_new(lua_State *L, struct hlua_txn *txn, unsigned int flags)
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004132{
Willy Tarreau7073c472015-04-06 11:15:40 +02004133 struct hlua_smp *hsmp;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004134
4135 /* Check stack size. */
4136 if (!lua_checkstack(L, 3))
4137 return 0;
4138
4139 /* Create the object: obj[0] = userdata.
4140 * Note that the base of the Converters object is the
4141 * same than the TXN object.
4142 */
4143 lua_newtable(L);
Willy Tarreau7073c472015-04-06 11:15:40 +02004144 hsmp = lua_newuserdata(L, sizeof(*hsmp));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004145 lua_rawseti(L, -2, 0);
4146
Willy Tarreau7073c472015-04-06 11:15:40 +02004147 hsmp->s = txn->s;
4148 hsmp->p = txn->p;
Thierry FOURNIERc4eebc82015-11-02 10:01:59 +01004149 hsmp->dir = txn->dir;
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004150 hsmp->flags = flags;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004151
Willy Tarreau87b09662015-04-03 00:22:06 +02004152 /* Pop a class stream metatable and affect it to the table. */
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004153 lua_rawgeti(L, LUA_REGISTRYINDEX, class_converters_ref);
4154 lua_setmetatable(L, -2);
4155
4156 return 1;
4157}
4158
4159/* This function is an LUA binding. It is called with each converter.
4160 * It uses closure argument to store the associated converter. It
4161 * returns only one argument or throws an error. An error is thrown
4162 * only if an error is encountered during the argument parsing. If
4163 * the converter function function fails, nil is returned.
4164 */
4165__LJMP static int hlua_run_sample_conv(lua_State *L)
4166{
Willy Tarreauda5f1082015-04-06 11:17:13 +02004167 struct hlua_smp *hsmp;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004168 struct sample_conv *conv;
Frédéric Lécaillef874a832018-06-15 13:56:04 +02004169 struct arg args[ARGM_NBARGS + 1] = {{0}};
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004170 int i;
4171 struct sample smp;
4172
4173 /* Get closure arguments. */
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02004174 conv = lua_touserdata(L, lua_upvalueindex(1));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004175
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004176 /* Get traditional arguments. */
Willy Tarreauda5f1082015-04-06 11:17:13 +02004177 hsmp = MAY_LJMP(hlua_checkconverters(L, 1));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004178
4179 /* Get extra arguments. */
4180 for (i = 0; i < lua_gettop(L) - 2; i++) {
4181 if (i >= ARGM_NBARGS)
4182 break;
4183 hlua_lua2arg(L, i + 3, &args[i]);
4184 }
4185 args[i].type = ARGT_STOP;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004186 args[i].data.str.area = NULL;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004187
4188 /* Check arguments. */
Willy Tarreauda5f1082015-04-06 11:17:13 +02004189 MAY_LJMP(hlua_lua2arg_check(L, 3, args, conv->arg_mask, hsmp->p));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004190
4191 /* Run the special args checker. */
4192 if (conv->val_args && !conv->val_args(args, conv, "", 0, NULL)) {
4193 hlua_pusherror(L, "error in arguments");
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004194 goto error;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004195 }
4196
4197 /* Initialise the sample. */
Amaury Denoyellebc0af6a2020-10-29 17:21:20 +01004198 memset(&smp, 0, sizeof(smp));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004199 if (!hlua_lua2smp(L, 2, &smp)) {
4200 hlua_pusherror(L, "error in the input argument");
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004201 goto error;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004202 }
4203
Willy Tarreau1777ea62016-03-10 16:15:46 +01004204 smp_set_owner(&smp, hsmp->p, hsmp->s->sess, hsmp->s, hsmp->dir & SMP_OPT_DIR);
4205
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004206 /* Apply expected cast. */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02004207 if (!sample_casts[smp.data.type][conv->in_type]) {
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004208 hlua_pusherror(L, "invalid input argument: cannot cast '%s' to '%s'",
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02004209 smp_to_type[smp.data.type], smp_to_type[conv->in_type]);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004210 goto error;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004211 }
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02004212 if (sample_casts[smp.data.type][conv->in_type] != c_none &&
4213 !sample_casts[smp.data.type][conv->in_type](&smp)) {
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004214 hlua_pusherror(L, "error during the input argument casting");
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004215 goto error;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004216 }
4217
4218 /* Run the sample conversion process. */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02004219 if (!conv->process(args, &smp, conv->private)) {
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004220 if (hsmp->flags & HLUA_F_AS_STRING)
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01004221 lua_pushstring(L, "");
4222 else
Willy Tarreaua678b432015-08-28 10:14:59 +02004223 lua_pushnil(L);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004224 goto end;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004225 }
4226
4227 /* Convert the returned sample in lua value. */
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004228 if (hsmp->flags & HLUA_F_AS_STRING)
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01004229 hlua_smp2lua_str(L, &smp);
4230 else
4231 hlua_smp2lua(L, &smp);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004232 end:
Willy Tarreauee0d7272021-07-16 10:26:56 +02004233 free_args(args);
Willy Tarreaua678b432015-08-28 10:14:59 +02004234 return 1;
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004235
4236 error:
Willy Tarreauee0d7272021-07-16 10:26:56 +02004237 free_args(args);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02004238 WILL_LJMP(lua_error(L));
4239 return 0; /* Never reached */
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004240}
4241
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004242/*
4243 *
4244 *
4245 * Class AppletTCP
4246 *
4247 *
4248 */
4249
4250/* Returns a struct hlua_txn if the stack entry "ud" is
4251 * a class stream, otherwise it throws an error.
4252 */
4253__LJMP static struct hlua_appctx *hlua_checkapplet_tcp(lua_State *L, int ud)
4254{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02004255 return MAY_LJMP(hlua_checkudata(L, ud, class_applet_tcp_ref));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004256}
4257
4258/* This function creates and push in the stack an Applet object
4259 * according with a current TXN.
4260 */
4261static int hlua_applet_tcp_new(lua_State *L, struct appctx *ctx)
4262{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004263 struct hlua_appctx *luactx;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004264 struct stream_interface *si = ctx->owner;
4265 struct stream *s = si_strm(si);
4266 struct proxy *p = s->be;
4267
4268 /* Check stack size. */
4269 if (!lua_checkstack(L, 3))
4270 return 0;
4271
4272 /* Create the object: obj[0] = userdata.
4273 * Note that the base of the Converters object is the
4274 * same than the TXN object.
4275 */
4276 lua_newtable(L);
Willy Tarreau7e702d12021-04-28 17:59:21 +02004277 luactx = lua_newuserdata(L, sizeof(*luactx));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004278 lua_rawseti(L, -2, 0);
Willy Tarreau7e702d12021-04-28 17:59:21 +02004279 luactx->appctx = ctx;
4280 luactx->htxn.s = s;
4281 luactx->htxn.p = p;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004282
4283 /* Create the "f" field that contains a list of fetches. */
4284 lua_pushstring(L, "f");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004285 if (!hlua_fetches_new(L, &luactx->htxn, 0))
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004286 return 0;
4287 lua_settable(L, -3);
4288
4289 /* Create the "sf" field that contains a list of stringsafe fetches. */
4290 lua_pushstring(L, "sf");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004291 if (!hlua_fetches_new(L, &luactx->htxn, HLUA_F_AS_STRING))
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004292 return 0;
4293 lua_settable(L, -3);
4294
4295 /* Create the "c" field that contains a list of converters. */
4296 lua_pushstring(L, "c");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004297 if (!hlua_converters_new(L, &luactx->htxn, 0))
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004298 return 0;
4299 lua_settable(L, -3);
4300
4301 /* Create the "sc" field that contains a list of stringsafe converters. */
4302 lua_pushstring(L, "sc");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004303 if (!hlua_converters_new(L, &luactx->htxn, HLUA_F_AS_STRING))
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004304 return 0;
4305 lua_settable(L, -3);
4306
4307 /* Pop a class stream metatable and affect it to the table. */
4308 lua_rawgeti(L, LUA_REGISTRYINDEX, class_applet_tcp_ref);
4309 lua_setmetatable(L, -2);
4310
4311 return 1;
4312}
4313
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004314__LJMP static int hlua_applet_tcp_set_var(lua_State *L)
4315{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004316 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004317 struct stream *s;
4318 const char *name;
4319 size_t len;
4320 struct sample smp;
4321
Tim Duesterhus4e172c92020-05-19 13:49:42 +02004322 if (lua_gettop(L) < 3 || lua_gettop(L) > 4)
4323 WILL_LJMP(luaL_error(L, "'set_var' needs between 3 and 4 arguments"));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004324
4325 /* It is useles to retrieve the stream, but this function
4326 * runs only in a stream context.
4327 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004328 luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004329 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004330 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004331
4332 /* Converts the third argument in a sample. */
Amaury Denoyellebc0af6a2020-10-29 17:21:20 +01004333 memset(&smp, 0, sizeof(smp));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004334 hlua_lua2smp(L, 3, &smp);
4335
4336 /* Store the sample in a variable. */
4337 smp_set_owner(&smp, s->be, s->sess, s, 0);
Tim Duesterhus4e172c92020-05-19 13:49:42 +02004338
4339 if (lua_gettop(L) == 4 && lua_toboolean(L, 4))
4340 lua_pushboolean(L, vars_set_by_name_ifexist(name, len, &smp) != 0);
4341 else
4342 lua_pushboolean(L, vars_set_by_name(name, len, &smp) != 0);
4343
Tim Duesterhus84ebc132020-05-19 13:49:41 +02004344 return 1;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004345}
4346
4347__LJMP static int hlua_applet_tcp_unset_var(lua_State *L)
4348{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004349 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004350 struct stream *s;
4351 const char *name;
4352 size_t len;
4353 struct sample smp;
4354
4355 MAY_LJMP(check_args(L, 2, "unset_var"));
4356
4357 /* It is useles to retrieve the stream, but this function
4358 * runs only in a stream context.
4359 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004360 luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004361 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004362 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004363
4364 /* Unset the variable. */
4365 smp_set_owner(&smp, s->be, s->sess, s, 0);
Tim Duesterhus84ebc132020-05-19 13:49:41 +02004366 lua_pushboolean(L, vars_unset_by_name_ifexist(name, len, &smp) != 0);
4367 return 1;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004368}
4369
4370__LJMP static int hlua_applet_tcp_get_var(lua_State *L)
4371{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004372 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004373 struct stream *s;
4374 const char *name;
4375 size_t len;
4376 struct sample smp;
4377
4378 MAY_LJMP(check_args(L, 2, "get_var"));
4379
4380 /* It is useles to retrieve the stream, but this function
4381 * runs only in a stream context.
4382 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004383 luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004384 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004385 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004386
4387 smp_set_owner(&smp, s->be, s->sess, s, 0);
Willy Tarreaue352b9d2021-09-03 11:52:38 +02004388 if (!vars_get_by_name(name, len, &smp, NULL)) {
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004389 lua_pushnil(L);
4390 return 1;
4391 }
4392
4393 return hlua_smp2lua(L, &smp);
4394}
4395
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004396__LJMP static int hlua_applet_tcp_set_priv(lua_State *L)
4397{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004398 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
4399 struct stream *s = luactx->htxn.s;
Thierry FOURNIER3b0a6d42016-12-16 08:48:32 +01004400 struct hlua *hlua;
4401
4402 /* Note that this hlua struct is from the session and not from the applet. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01004403 if (!s->hlua)
4404 return 0;
4405 hlua = s->hlua;
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004406
4407 MAY_LJMP(check_args(L, 2, "set_priv"));
4408
4409 /* Remove previous value. */
Thierry FOURNIERe068b602017-04-26 13:27:05 +02004410 luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref);
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004411
4412 /* Get and store new value. */
4413 lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */
4414 hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */
4415
4416 return 0;
4417}
4418
4419__LJMP static int hlua_applet_tcp_get_priv(lua_State *L)
4420{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004421 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
4422 struct stream *s = luactx->htxn.s;
Thierry FOURNIER3b0a6d42016-12-16 08:48:32 +01004423 struct hlua *hlua;
4424
4425 /* Note that this hlua struct is from the session and not from the applet. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01004426 if (!s->hlua) {
4427 lua_pushnil(L);
4428 return 1;
4429 }
4430 hlua = s->hlua;
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004431
4432 /* Push configuration index in the stack. */
4433 lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref);
4434
4435 return 1;
4436}
4437
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004438/* If expected data not yet available, it returns a yield. This function
4439 * consumes the data in the buffer. It returns a string containing the
4440 * data. This string can be empty.
4441 */
4442__LJMP static int hlua_applet_tcp_getline_yield(lua_State *L, int status, lua_KContext ctx)
4443{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004444 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
4445 struct stream_interface *si = luactx->appctx->owner;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004446 int ret;
Willy Tarreau206ba832018-06-14 15:27:31 +02004447 const char *blk1;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02004448 size_t len1;
Willy Tarreau206ba832018-06-14 15:27:31 +02004449 const char *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02004450 size_t len2;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004451
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004452 /* Read the maximum amount of data available. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02004453 ret = co_getline_nc(si_oc(si), &blk1, &len1, &blk2, &len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004454
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004455 /* Data not yet available. return yield. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004456 if (ret == 0) {
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01004457 si_cant_get(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02004458 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_getline_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004459 }
4460
4461 /* End of data: commit the total strings and return. */
4462 if (ret < 0) {
Willy Tarreau7e702d12021-04-28 17:59:21 +02004463 luaL_pushresult(&luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004464 return 1;
4465 }
4466
4467 /* Ensure that the block 2 length is usable. */
4468 if (ret == 1)
4469 len2 = 0;
4470
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07004471 /* don't check the max length read and don't check. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004472 luaL_addlstring(&luactx->b, blk1, len1);
4473 luaL_addlstring(&luactx->b, blk2, len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004474
4475 /* Consume input channel output buffer data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02004476 co_skip(si_oc(si), len1 + len2);
Willy Tarreau7e702d12021-04-28 17:59:21 +02004477 luaL_pushresult(&luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004478 return 1;
4479}
4480
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004481/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004482__LJMP static int hlua_applet_tcp_getline(lua_State *L)
4483{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004484 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004485
4486 /* Initialise the string catenation. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004487 luaL_buffinit(L, &luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004488
4489 return MAY_LJMP(hlua_applet_tcp_getline_yield(L, 0, 0));
4490}
4491
4492/* If expected data not yet available, it returns a yield. This function
4493 * consumes the data in the buffer. It returns a string containing the
4494 * data. This string can be empty.
4495 */
4496__LJMP static int hlua_applet_tcp_recv_yield(lua_State *L, int status, lua_KContext ctx)
4497{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004498 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
4499 struct stream_interface *si = luactx->appctx->owner;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02004500 size_t len = MAY_LJMP(luaL_checkinteger(L, 2));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004501 int ret;
Willy Tarreau206ba832018-06-14 15:27:31 +02004502 const char *blk1;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02004503 size_t len1;
Willy Tarreau206ba832018-06-14 15:27:31 +02004504 const char *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02004505 size_t len2;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004506
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004507 /* Read the maximum amount of data available. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02004508 ret = co_getblk_nc(si_oc(si), &blk1, &len1, &blk2, &len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004509
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004510 /* Data not yet available. return yield. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004511 if (ret == 0) {
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01004512 si_cant_get(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02004513 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_recv_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004514 }
4515
4516 /* End of data: commit the total strings and return. */
4517 if (ret < 0) {
Willy Tarreau7e702d12021-04-28 17:59:21 +02004518 luaL_pushresult(&luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004519 return 1;
4520 }
4521
4522 /* Ensure that the block 2 length is usable. */
4523 if (ret == 1)
4524 len2 = 0;
4525
4526 if (len == -1) {
4527
4528 /* If len == -1, catenate all the data avalaile and
4529 * yield because we want to get all the data until
4530 * the end of data stream.
4531 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004532 luaL_addlstring(&luactx->b, blk1, len1);
4533 luaL_addlstring(&luactx->b, blk2, len2);
Willy Tarreau06d80a92017-10-19 14:32:15 +02004534 co_skip(si_oc(si), len1 + len2);
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01004535 si_cant_get(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02004536 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_recv_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004537
4538 } else {
4539
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05004540 /* Copy the first block caping to the length required. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004541 if (len1 > len)
4542 len1 = len;
Willy Tarreau7e702d12021-04-28 17:59:21 +02004543 luaL_addlstring(&luactx->b, blk1, len1);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004544 len -= len1;
4545
4546 /* Copy the second block. */
4547 if (len2 > len)
4548 len2 = len;
Willy Tarreau7e702d12021-04-28 17:59:21 +02004549 luaL_addlstring(&luactx->b, blk2, len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004550 len -= len2;
4551
4552 /* Consume input channel output buffer data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02004553 co_skip(si_oc(si), len1 + len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004554
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004555 /* If there is no other data available, yield waiting for new data. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004556 if (len > 0) {
4557 lua_pushinteger(L, len);
4558 lua_replace(L, 2);
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01004559 si_cant_get(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02004560 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_recv_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004561 }
4562
4563 /* return the result. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004564 luaL_pushresult(&luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004565 return 1;
4566 }
4567
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004568 /* we never execute this */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004569 hlua_pusherror(L, "Lua: internal error");
4570 WILL_LJMP(lua_error(L));
4571 return 0;
4572}
4573
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004574/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004575__LJMP static int hlua_applet_tcp_recv(lua_State *L)
4576{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004577 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004578 int len = -1;
4579
4580 if (lua_gettop(L) > 2)
4581 WILL_LJMP(luaL_error(L, "The 'recv' function requires between 1 and 2 arguments."));
4582 if (lua_gettop(L) >= 2) {
4583 len = MAY_LJMP(luaL_checkinteger(L, 2));
4584 lua_pop(L, 1);
4585 }
4586
4587 /* Confirm or set the required length */
4588 lua_pushinteger(L, len);
4589
4590 /* Initialise the string catenation. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004591 luaL_buffinit(L, &luactx->b);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004592
4593 return MAY_LJMP(hlua_applet_tcp_recv_yield(L, 0, 0));
4594}
4595
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004596/* Append data in the output side of the buffer. This data is immediately
4597 * sent. The function returns the amount of data written. If the buffer
4598 * cannot contain the data, the function yields. The function returns -1
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004599 * if the channel is closed.
4600 */
4601__LJMP static int hlua_applet_tcp_send_yield(lua_State *L, int status, lua_KContext ctx)
4602{
4603 size_t len;
Willy Tarreau7e702d12021-04-28 17:59:21 +02004604 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004605 const char *str = MAY_LJMP(luaL_checklstring(L, 2, &len));
4606 int l = MAY_LJMP(luaL_checkinteger(L, 3));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004607 struct stream_interface *si = luactx->appctx->owner;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004608 struct channel *chn = si_ic(si);
4609 int max;
4610
4611 /* Get the max amount of data which can write as input in the channel. */
4612 max = channel_recv_max(chn);
4613 if (max > (len - l))
4614 max = len - l;
4615
4616 /* Copy data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02004617 ci_putblk(chn, str + l, max);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004618
4619 /* update counters. */
4620 l += max;
4621 lua_pop(L, 1);
4622 lua_pushinteger(L, l);
4623
4624 /* If some data is not send, declares the situation to the
4625 * applet, and returns a yield.
4626 */
4627 if (l < len) {
Willy Tarreaudb398432018-11-15 11:08:52 +01004628 si_rx_room_blk(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02004629 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_send_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004630 }
4631
4632 return 1;
4633}
4634
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05004635/* Just a wrapper of "hlua_applet_tcp_send_yield". This wrapper permits
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02004636 * yield the LUA process, and resume it without checking the
4637 * input arguments.
4638 */
4639__LJMP static int hlua_applet_tcp_send(lua_State *L)
4640{
4641 MAY_LJMP(check_args(L, 2, "send"));
4642 lua_pushinteger(L, 0);
4643
4644 return MAY_LJMP(hlua_applet_tcp_send_yield(L, 0, 0));
4645}
4646
Thierry FOURNIER594afe72015-03-10 23:58:30 +01004647/*
4648 *
4649 *
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004650 * Class AppletHTTP
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004651 *
4652 *
4653 */
4654
4655/* Returns a struct hlua_txn if the stack entry "ud" is
Willy Tarreau87b09662015-04-03 00:22:06 +02004656 * a class stream, otherwise it throws an error.
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004657 */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004658__LJMP static struct hlua_appctx *hlua_checkapplet_http(lua_State *L, int ud)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004659{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02004660 return MAY_LJMP(hlua_checkudata(L, ud, class_applet_http_ref));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004661}
4662
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004663/* This function creates and push in the stack an Applet object
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004664 * according with a current TXN.
4665 */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004666static int hlua_applet_http_new(lua_State *L, struct appctx *ctx)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004667{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004668 struct hlua_appctx *luactx;
Thierry FOURNIER841475e2015-12-11 17:10:09 +01004669 struct hlua_txn htxn;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004670 struct stream_interface *si = ctx->owner;
4671 struct stream *s = si_strm(si);
4672 struct proxy *px = s->be;
Christopher Fauleta2097962019-07-15 16:25:33 +02004673 struct htx *htx;
4674 struct htx_blk *blk;
4675 struct htx_sl *sl;
4676 struct ist path;
4677 unsigned long long len = 0;
4678 int32_t pos;
Amaury Denoyellec453f952021-07-06 11:40:12 +02004679 struct http_uri_parser parser;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004680
4681 /* Check stack size. */
4682 if (!lua_checkstack(L, 3))
4683 return 0;
4684
4685 /* Create the object: obj[0] = userdata.
4686 * Note that the base of the Converters object is the
4687 * same than the TXN object.
4688 */
4689 lua_newtable(L);
Willy Tarreau7e702d12021-04-28 17:59:21 +02004690 luactx = lua_newuserdata(L, sizeof(*luactx));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004691 lua_rawseti(L, -2, 0);
Willy Tarreau7e702d12021-04-28 17:59:21 +02004692 luactx->appctx = ctx;
4693 luactx->appctx->ctx.hlua_apphttp.status = 200; /* Default status code returned. */
4694 luactx->appctx->ctx.hlua_apphttp.reason = NULL; /* Use default reason based on status */
4695 luactx->htxn.s = s;
4696 luactx->htxn.p = px;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004697
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004698 /* Create the "f" field that contains a list of fetches. */
4699 lua_pushstring(L, "f");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004700 if (!hlua_fetches_new(L, &luactx->htxn, 0))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004701 return 0;
4702 lua_settable(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004703
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004704 /* Create the "sf" field that contains a list of stringsafe fetches. */
4705 lua_pushstring(L, "sf");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004706 if (!hlua_fetches_new(L, &luactx->htxn, HLUA_F_AS_STRING))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004707 return 0;
4708 lua_settable(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004709
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004710 /* Create the "c" field that contains a list of converters. */
4711 lua_pushstring(L, "c");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004712 if (!hlua_converters_new(L, &luactx->htxn, 0))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004713 return 0;
4714 lua_settable(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004715
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004716 /* Create the "sc" field that contains a list of stringsafe converters. */
4717 lua_pushstring(L, "sc");
Willy Tarreau7e702d12021-04-28 17:59:21 +02004718 if (!hlua_converters_new(L, &luactx->htxn, HLUA_F_AS_STRING))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004719 return 0;
4720 lua_settable(L, -3);
Willy Tarreaueee5b512015-04-03 23:46:31 +02004721
Christopher Fauleta2097962019-07-15 16:25:33 +02004722 htx = htxbuf(&s->req.buf);
4723 blk = htx_get_first_blk(htx);
Christopher Fauletea009732019-11-18 15:50:25 +01004724 BUG_ON(!blk || htx_get_blk_type(blk) != HTX_BLK_REQ_SL);
Christopher Fauleta2097962019-07-15 16:25:33 +02004725 sl = htx_get_blk_ptr(htx, blk);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004726
Christopher Fauleta2097962019-07-15 16:25:33 +02004727 /* Stores the request method. */
4728 lua_pushstring(L, "method");
4729 lua_pushlstring(L, HTX_SL_REQ_MPTR(sl), HTX_SL_REQ_MLEN(sl));
4730 lua_settable(L, -3);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004731
Christopher Fauleta2097962019-07-15 16:25:33 +02004732 /* Stores the http version. */
4733 lua_pushstring(L, "version");
4734 lua_pushlstring(L, HTX_SL_REQ_VPTR(sl), HTX_SL_REQ_VLEN(sl));
4735 lua_settable(L, -3);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004736
Christopher Fauleta2097962019-07-15 16:25:33 +02004737 /* creates an array of headers. hlua_http_get_headers() crates and push
4738 * the array on the top of the stack.
4739 */
4740 lua_pushstring(L, "headers");
4741 htxn.s = s;
4742 htxn.p = px;
4743 htxn.dir = SMP_OPT_DIR_REQ;
Christopher Faulet9d1332b2020-02-24 16:46:16 +01004744 if (!hlua_http_get_headers(L, &htxn.s->txn->req))
Christopher Fauleta2097962019-07-15 16:25:33 +02004745 return 0;
4746 lua_settable(L, -3);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004747
Amaury Denoyellec453f952021-07-06 11:40:12 +02004748 parser = http_uri_parser_init(htx_sl_req_uri(sl));
4749 path = http_parse_path(&parser);
Tim Duesterhused526372020-03-05 17:56:33 +01004750 if (isttest(path)) {
Christopher Fauleta2097962019-07-15 16:25:33 +02004751 char *p, *q, *end;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004752
Christopher Fauleta2097962019-07-15 16:25:33 +02004753 p = path.ptr;
4754 end = path.ptr + path.len;
4755 q = p;
4756 while (q < end && *q != '?')
4757 q++;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004758
Thierry FOURNIER7d388632017-02-22 02:06:16 +01004759 /* Stores the request path. */
Christopher Fauleta2097962019-07-15 16:25:33 +02004760 lua_pushstring(L, "path");
4761 lua_pushlstring(L, p, q - p);
Thierry FOURNIER7d388632017-02-22 02:06:16 +01004762 lua_settable(L, -3);
Thierry FOURNIER04c57b32015-03-18 13:43:10 +01004763
Christopher Fauleta2097962019-07-15 16:25:33 +02004764 /* Stores the query string. */
4765 lua_pushstring(L, "qs");
4766 if (*q == '?')
4767 q++;
4768 lua_pushlstring(L, q, end - q);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004769 lua_settable(L, -3);
Christopher Fauleta2097962019-07-15 16:25:33 +02004770 }
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004771
Christopher Fauleta2097962019-07-15 16:25:33 +02004772 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
4773 struct htx_blk *blk = htx_get_blk(htx, pos);
4774 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004775
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004776 if (type == HTX_BLK_TLR || type == HTX_BLK_EOT)
Christopher Fauleta2097962019-07-15 16:25:33 +02004777 break;
4778 if (type == HTX_BLK_DATA)
4779 len += htx_get_blksz(blk);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004780 }
Christopher Fauleta2097962019-07-15 16:25:33 +02004781 if (htx->extra != ULLONG_MAX)
4782 len += htx->extra;
4783
4784 /* Stores the request path. */
4785 lua_pushstring(L, "length");
4786 lua_pushinteger(L, len);
4787 lua_settable(L, -3);
Thierry FOURNIER04c57b32015-03-18 13:43:10 +01004788
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004789 /* Create an empty array of HTTP request headers. */
4790 lua_pushstring(L, "response");
4791 lua_newtable(L);
4792 lua_settable(L, -3);
Thierry FOURNIER04c57b32015-03-18 13:43:10 +01004793
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004794 /* Pop a class stream metatable and affect it to the table. */
4795 lua_rawgeti(L, LUA_REGISTRYINDEX, class_applet_http_ref);
4796 lua_setmetatable(L, -2);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004797
4798 return 1;
4799}
4800
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004801__LJMP static int hlua_applet_http_set_var(lua_State *L)
4802{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004803 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004804 struct stream *s;
4805 const char *name;
4806 size_t len;
4807 struct sample smp;
4808
Tim Duesterhus4e172c92020-05-19 13:49:42 +02004809 if (lua_gettop(L) < 3 || lua_gettop(L) > 4)
4810 WILL_LJMP(luaL_error(L, "'set_var' needs between 3 and 4 arguments"));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004811
4812 /* It is useles to retrieve the stream, but this function
4813 * runs only in a stream context.
4814 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004815 luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004816 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004817 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004818
4819 /* Converts the third argument in a sample. */
Amaury Denoyellebc0af6a2020-10-29 17:21:20 +01004820 memset(&smp, 0, sizeof(smp));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004821 hlua_lua2smp(L, 3, &smp);
4822
4823 /* Store the sample in a variable. */
4824 smp_set_owner(&smp, s->be, s->sess, s, 0);
Tim Duesterhus4e172c92020-05-19 13:49:42 +02004825
4826 if (lua_gettop(L) == 4 && lua_toboolean(L, 4))
4827 lua_pushboolean(L, vars_set_by_name_ifexist(name, len, &smp) != 0);
4828 else
4829 lua_pushboolean(L, vars_set_by_name(name, len, &smp) != 0);
4830
Tim Duesterhus84ebc132020-05-19 13:49:41 +02004831 return 1;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004832}
4833
4834__LJMP static int hlua_applet_http_unset_var(lua_State *L)
4835{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004836 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004837 struct stream *s;
4838 const char *name;
4839 size_t len;
4840 struct sample smp;
4841
4842 MAY_LJMP(check_args(L, 2, "unset_var"));
4843
4844 /* It is useles to retrieve the stream, but this function
4845 * runs only in a stream context.
4846 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004847 luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004848 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004849 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004850
4851 /* Unset the variable. */
4852 smp_set_owner(&smp, s->be, s->sess, s, 0);
Tim Duesterhus84ebc132020-05-19 13:49:41 +02004853 lua_pushboolean(L, vars_unset_by_name_ifexist(name, len, &smp) != 0);
4854 return 1;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004855}
4856
4857__LJMP static int hlua_applet_http_get_var(lua_State *L)
4858{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004859 struct hlua_appctx *luactx;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004860 struct stream *s;
4861 const char *name;
4862 size_t len;
4863 struct sample smp;
4864
4865 MAY_LJMP(check_args(L, 2, "get_var"));
4866
4867 /* It is useles to retrieve the stream, but this function
4868 * runs only in a stream context.
4869 */
Willy Tarreau7e702d12021-04-28 17:59:21 +02004870 luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004871 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Willy Tarreau7e702d12021-04-28 17:59:21 +02004872 s = luactx->htxn.s;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004873
4874 smp_set_owner(&smp, s->be, s->sess, s, 0);
Willy Tarreaue352b9d2021-09-03 11:52:38 +02004875 if (!vars_get_by_name(name, len, &smp, NULL)) {
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004876 lua_pushnil(L);
4877 return 1;
4878 }
4879
4880 return hlua_smp2lua(L, &smp);
4881}
4882
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004883__LJMP static int hlua_applet_http_set_priv(lua_State *L)
4884{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004885 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4886 struct stream *s = luactx->htxn.s;
Thierry FOURNIER3b0a6d42016-12-16 08:48:32 +01004887 struct hlua *hlua;
4888
4889 /* Note that this hlua struct is from the session and not from the applet. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01004890 if (!s->hlua)
4891 return 0;
4892 hlua = s->hlua;
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004893
4894 MAY_LJMP(check_args(L, 2, "set_priv"));
4895
4896 /* Remove previous value. */
Thierry FOURNIERe068b602017-04-26 13:27:05 +02004897 luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref);
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004898
4899 /* Get and store new value. */
4900 lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */
4901 hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */
4902
4903 return 0;
4904}
4905
4906__LJMP static int hlua_applet_http_get_priv(lua_State *L)
4907{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004908 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4909 struct stream *s = luactx->htxn.s;
Thierry FOURNIER3b0a6d42016-12-16 08:48:32 +01004910 struct hlua *hlua;
4911
4912 /* Note that this hlua struct is from the session and not from the applet. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01004913 if (!s->hlua) {
4914 lua_pushnil(L);
4915 return 1;
4916 }
4917 hlua = s->hlua;
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004918
4919 /* Push configuration index in the stack. */
4920 lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref);
4921
4922 return 1;
4923}
4924
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004925/* If expected data not yet available, it returns a yield. This function
4926 * consumes the data in the buffer. It returns a string containing the
4927 * data. This string can be empty.
4928 */
Christopher Fauleta2097962019-07-15 16:25:33 +02004929__LJMP static int hlua_applet_http_getline_yield(lua_State *L, int status, lua_KContext ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004930{
Willy Tarreau7e702d12021-04-28 17:59:21 +02004931 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4932 struct stream_interface *si = luactx->appctx->owner;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004933 struct channel *req = si_oc(si);
4934 struct htx *htx;
4935 struct htx_blk *blk;
4936 size_t count;
4937 int stop = 0;
4938
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004939 htx = htx_from_buf(&req->buf);
4940 count = co_data(req);
Christopher Fauleta3f15502019-05-13 15:27:23 +02004941 blk = htx_get_first_blk(htx);
Christopher Fauletcc26b132018-12-18 21:20:57 +01004942
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004943 while (count && !stop && blk) {
4944 enum htx_blk_type type = htx_get_blk_type(blk);
4945 uint32_t sz = htx_get_blksz(blk);
4946 struct ist v;
4947 uint32_t vlen;
4948 char *nl;
4949
4950 vlen = sz;
4951 if (vlen > count) {
4952 if (type != HTX_BLK_DATA)
4953 break;
4954 vlen = count;
4955 }
4956
4957 switch (type) {
4958 case HTX_BLK_UNUSED:
4959 break;
4960
4961 case HTX_BLK_DATA:
4962 v = htx_get_blk_value(htx, blk);
4963 v.len = vlen;
4964 nl = istchr(v, '\n');
4965 if (nl != NULL) {
4966 stop = 1;
4967 vlen = nl - v.ptr + 1;
4968 }
Willy Tarreau7e702d12021-04-28 17:59:21 +02004969 luaL_addlstring(&luactx->b, v.ptr, vlen);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004970 break;
4971
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004972 case HTX_BLK_TLR:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004973 case HTX_BLK_EOT:
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004974 stop = 1;
4975 break;
4976
4977 default:
4978 break;
4979 }
4980
4981 co_set_data(req, co_data(req) - vlen);
4982 count -= vlen;
4983 if (sz == vlen)
4984 blk = htx_remove_blk(htx, blk);
4985 else {
4986 htx_cut_data_blk(htx, blk, vlen);
4987 break;
4988 }
4989 }
4990
Christopher Fauleteccb31c2021-04-02 14:24:56 +02004991 /* The message was fully consumed and no more data are expected
4992 * (EOM flag set).
4993 */
4994 if (htx_is_empty(htx) && (htx->flags & HTX_FL_EOM))
4995 stop = 1;
4996
Christopher Faulet0ae79d02019-02-27 21:36:59 +01004997 htx_to_buf(htx, &req->buf);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004998 if (!stop) {
4999 si_cant_get(si);
Christopher Fauleta2097962019-07-15 16:25:33 +02005000 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_getline_yield, TICK_ETERNITY, 0));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005001 }
5002
5003 /* return the result. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02005004 luaL_pushresult(&luactx->b);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005005 return 1;
5006}
5007
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005008
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08005009/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005010__LJMP static int hlua_applet_http_getline(lua_State *L)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005011{
Willy Tarreau7e702d12021-04-28 17:59:21 +02005012 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005013
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005014 /* Initialise the string catenation. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02005015 luaL_buffinit(L, &luactx->b);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005016
Christopher Fauleta2097962019-07-15 16:25:33 +02005017 return MAY_LJMP(hlua_applet_http_getline_yield(L, 0, 0));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005018}
5019
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005020/* If expected data not yet available, it returns a yield. This function
5021 * consumes the data in the buffer. It returns a string containing the
5022 * data. This string can be empty.
5023 */
Christopher Fauleta2097962019-07-15 16:25:33 +02005024__LJMP static int hlua_applet_http_recv_yield(lua_State *L, int status, lua_KContext ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005025{
Willy Tarreau7e702d12021-04-28 17:59:21 +02005026 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
5027 struct stream_interface *si = luactx->appctx->owner;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005028 struct channel *req = si_oc(si);
5029 struct htx *htx;
5030 struct htx_blk *blk;
5031 size_t count;
5032 int len;
5033
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005034 htx = htx_from_buf(&req->buf);
5035 len = MAY_LJMP(luaL_checkinteger(L, 2));
5036 count = co_data(req);
Christopher Faulet29f17582019-05-23 11:03:26 +02005037 blk = htx_get_head_blk(htx);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005038 while (count && len && blk) {
5039 enum htx_blk_type type = htx_get_blk_type(blk);
5040 uint32_t sz = htx_get_blksz(blk);
5041 struct ist v;
5042 uint32_t vlen;
5043
5044 vlen = sz;
5045 if (len > 0 && vlen > len)
5046 vlen = len;
5047 if (vlen > count) {
5048 if (type != HTX_BLK_DATA)
5049 break;
5050 vlen = count;
5051 }
5052
5053 switch (type) {
5054 case HTX_BLK_UNUSED:
5055 break;
5056
5057 case HTX_BLK_DATA:
5058 v = htx_get_blk_value(htx, blk);
Willy Tarreau7e702d12021-04-28 17:59:21 +02005059 luaL_addlstring(&luactx->b, v.ptr, vlen);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005060 break;
5061
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005062 case HTX_BLK_TLR:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005063 case HTX_BLK_EOT:
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005064 len = 0;
5065 break;
5066
5067 default:
5068 break;
5069 }
5070
5071 co_set_data(req, co_data(req) - vlen);
5072 count -= vlen;
5073 if (len > 0)
5074 len -= vlen;
5075 if (sz == vlen)
5076 blk = htx_remove_blk(htx, blk);
5077 else {
5078 htx_cut_data_blk(htx, blk, vlen);
5079 break;
5080 }
5081 }
5082
Christopher Fauleteccb31c2021-04-02 14:24:56 +02005083 /* The message was fully consumed and no more data are expected
5084 * (EOM flag set).
5085 */
5086 if (htx_is_empty(htx) && (htx->flags & HTX_FL_EOM))
5087 len = 0;
5088
Christopher Faulet0ae79d02019-02-27 21:36:59 +01005089 htx_to_buf(htx, &req->buf);
5090
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005091 /* If we are no other data available, yield waiting for new data. */
5092 if (len) {
5093 if (len > 0) {
5094 lua_pushinteger(L, len);
5095 lua_replace(L, 2);
5096 }
5097 si_cant_get(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02005098 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_recv_yield, TICK_ETERNITY, 0));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005099 }
5100
5101 /* return the result. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02005102 luaL_pushresult(&luactx->b);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005103 return 1;
5104}
5105
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08005106/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005107__LJMP static int hlua_applet_http_recv(lua_State *L)
5108{
Willy Tarreau7e702d12021-04-28 17:59:21 +02005109 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005110 int len = -1;
5111
5112 /* Check arguments. */
5113 if (lua_gettop(L) > 2)
5114 WILL_LJMP(luaL_error(L, "The 'recv' function requires between 1 and 2 arguments."));
5115 if (lua_gettop(L) >= 2) {
5116 len = MAY_LJMP(luaL_checkinteger(L, 2));
5117 lua_pop(L, 1);
5118 }
5119
Christopher Fauleta2097962019-07-15 16:25:33 +02005120 lua_pushinteger(L, len);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005121
Christopher Fauleta2097962019-07-15 16:25:33 +02005122 /* Initialise the string catenation. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02005123 luaL_buffinit(L, &luactx->b);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005124
Christopher Fauleta2097962019-07-15 16:25:33 +02005125 return MAY_LJMP(hlua_applet_http_recv_yield(L, 0, 0));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005126}
5127
5128/* Append data in the output side of the buffer. This data is immediately
5129 * sent. The function returns the amount of data written. If the buffer
5130 * cannot contain the data, the function yields. The function returns -1
5131 * if the channel is closed.
5132 */
Christopher Fauleta2097962019-07-15 16:25:33 +02005133__LJMP static int hlua_applet_http_send_yield(lua_State *L, int status, lua_KContext ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005134{
Willy Tarreau7e702d12021-04-28 17:59:21 +02005135 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
5136 struct stream_interface *si = luactx->appctx->owner;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005137 struct channel *res = si_ic(si);
5138 struct htx *htx = htx_from_buf(&res->buf);
5139 const char *data;
5140 size_t len;
5141 int l = MAY_LJMP(luaL_checkinteger(L, 3));
5142 int max;
5143
Christopher Faulet9060fc02019-07-03 11:39:30 +02005144 max = htx_get_max_blksz(htx, channel_htx_recv_max(res, htx));
Christopher Faulet4b0e9b22019-01-09 12:16:58 +01005145 if (!max)
5146 goto snd_yield;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005147
5148 data = MAY_LJMP(luaL_checklstring(L, 2, &len));
5149
5150 /* Get the max amount of data which can write as input in the channel. */
5151 if (max > (len - l))
5152 max = len - l;
5153
5154 /* Copy data. */
Willy Tarreau0a7ef022019-05-28 10:30:11 +02005155 max = htx_add_data(htx, ist2(data + l, max));
Christopher Fauletf6cce3f2019-02-27 21:20:09 +01005156 channel_add_input(res, max);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005157
5158 /* update counters. */
5159 l += max;
5160 lua_pop(L, 1);
5161 lua_pushinteger(L, l);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005162
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005163 /* If some data is not send, declares the situation to the
5164 * applet, and returns a yield.
5165 */
5166 if (l < len) {
Christopher Faulet4b0e9b22019-01-09 12:16:58 +01005167 snd_yield:
Christopher Faulet0ae79d02019-02-27 21:36:59 +01005168 htx_to_buf(htx, &res->buf);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005169 si_rx_room_blk(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02005170 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_send_yield, TICK_ETERNITY, 0));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005171 }
5172
Christopher Fauleta2097962019-07-15 16:25:33 +02005173 htx_to_buf(htx, &res->buf);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005174 return 1;
5175}
5176
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05005177/* Just a wrapper of "hlua_applet_send_yield". This wrapper permits
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005178 * yield the LUA process, and resume it without checking the
5179 * input arguments.
5180 */
5181__LJMP static int hlua_applet_http_send(lua_State *L)
5182{
Willy Tarreau7e702d12021-04-28 17:59:21 +02005183 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005184
5185 /* We want to send some data. Headers must be sent. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02005186 if (!(luactx->appctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT)) {
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005187 hlua_pusherror(L, "Lua: 'send' you must call start_response() before sending data.");
5188 WILL_LJMP(lua_error(L));
5189 }
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005190
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05005191 /* This integer is used for followinf the amount of data sent. */
Christopher Fauleta2097962019-07-15 16:25:33 +02005192 lua_pushinteger(L, 0);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005193
Christopher Fauleta2097962019-07-15 16:25:33 +02005194 return MAY_LJMP(hlua_applet_http_send_yield(L, 0, 0));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005195}
5196
5197__LJMP static int hlua_applet_http_addheader(lua_State *L)
5198{
5199 const char *name;
5200 int ret;
5201
5202 MAY_LJMP(hlua_checkapplet_http(L, 1));
5203 name = MAY_LJMP(luaL_checkstring(L, 2));
5204 MAY_LJMP(luaL_checkstring(L, 3));
5205
5206 /* Push in the stack the "response" entry. */
5207 ret = lua_getfield(L, 1, "response");
5208 if (ret != LUA_TTABLE) {
5209 hlua_pusherror(L, "Lua: 'add_header' internal error: AppletHTTP['response'] "
5210 "is expected as an array. %s found", lua_typename(L, ret));
5211 WILL_LJMP(lua_error(L));
5212 }
5213
5214 /* check if the header is already registered if it is not
5215 * the case, register it.
5216 */
5217 ret = lua_getfield(L, -1, name);
5218 if (ret == LUA_TNIL) {
5219
5220 /* Entry not found. */
5221 lua_pop(L, 1); /* remove the nil. The "response" table is the top of the stack. */
5222
5223 /* Insert the new header name in the array in the top of the stack.
5224 * It left the new array in the top of the stack.
5225 */
5226 lua_newtable(L);
5227 lua_pushvalue(L, 2);
5228 lua_pushvalue(L, -2);
5229 lua_settable(L, -4);
5230
5231 } else if (ret != LUA_TTABLE) {
5232
5233 /* corruption error. */
5234 hlua_pusherror(L, "Lua: 'add_header' internal error: AppletHTTP['response']['%s'] "
5235 "is expected as an array. %s found", name, lua_typename(L, ret));
5236 WILL_LJMP(lua_error(L));
5237 }
5238
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07005239 /* Now the top of thestack is an array of values. We push
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005240 * the header value as new entry.
5241 */
5242 lua_pushvalue(L, 3);
5243 ret = lua_rawlen(L, -2);
5244 lua_rawseti(L, -2, ret + 1);
5245 lua_pushboolean(L, 1);
5246 return 1;
5247}
5248
5249__LJMP static int hlua_applet_http_status(lua_State *L)
5250{
Willy Tarreau7e702d12021-04-28 17:59:21 +02005251 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005252 int status = MAY_LJMP(luaL_checkinteger(L, 2));
Robin H. Johnson52f5db22017-01-01 13:10:52 -08005253 const char *reason = MAY_LJMP(luaL_optlstring(L, 3, NULL, NULL));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005254
5255 if (status < 100 || status > 599) {
5256 lua_pushboolean(L, 0);
5257 return 1;
5258 }
5259
Willy Tarreau7e702d12021-04-28 17:59:21 +02005260 luactx->appctx->ctx.hlua_apphttp.status = status;
5261 luactx->appctx->ctx.hlua_apphttp.reason = reason;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005262 lua_pushboolean(L, 1);
5263 return 1;
5264}
5265
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005266
Christopher Fauleta2097962019-07-15 16:25:33 +02005267__LJMP static int hlua_applet_http_send_response(lua_State *L)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005268{
Willy Tarreau7e702d12021-04-28 17:59:21 +02005269 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
5270 struct stream_interface *si = luactx->appctx->owner;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005271 struct channel *res = si_ic(si);
5272 struct htx *htx;
5273 struct htx_sl *sl;
5274 struct h1m h1m;
5275 const char *status, *reason;
5276 const char *name, *value;
5277 size_t nlen, vlen;
5278 unsigned int flags;
5279
5280 /* Send the message at once. */
5281 htx = htx_from_buf(&res->buf);
5282 h1m_init_res(&h1m);
5283
5284 /* Use the same http version than the request. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02005285 status = ultoa_r(luactx->appctx->ctx.hlua_apphttp.status, trash.area, trash.size);
5286 reason = luactx->appctx->ctx.hlua_apphttp.reason;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005287 if (reason == NULL)
Willy Tarreau7e702d12021-04-28 17:59:21 +02005288 reason = http_get_reason(luactx->appctx->ctx.hlua_apphttp.status);
5289 if (luactx->appctx->ctx.hlua_apphttp.flags & APPLET_HTTP11) {
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005290 flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11);
5291 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"), ist(status), ist(reason));
5292 }
5293 else {
5294 flags = HTX_SL_F_IS_RESP;
5295 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.0"), ist(status), ist(reason));
5296 }
5297 if (!sl) {
5298 hlua_pusherror(L, "Lua applet http '%s': Failed to create response.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005299 luactx->appctx->rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005300 WILL_LJMP(lua_error(L));
5301 }
Willy Tarreau7e702d12021-04-28 17:59:21 +02005302 sl->info.res.status = luactx->appctx->ctx.hlua_apphttp.status;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005303
5304 /* Get the array associated to the field "response" in the object AppletHTTP. */
5305 lua_pushvalue(L, 0);
5306 if (lua_getfield(L, 1, "response") != LUA_TTABLE) {
5307 hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response'] missing.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005308 luactx->appctx->rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005309 WILL_LJMP(lua_error(L));
5310 }
5311
5312 /* Browse the list of headers. */
5313 lua_pushnil(L);
5314 while(lua_next(L, -2) != 0) {
5315 /* We expect a string as -2. */
5316 if (lua_type(L, -2) != LUA_TSTRING) {
5317 hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response'][] element must be a string. got %s.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005318 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005319 lua_typename(L, lua_type(L, -2)));
5320 WILL_LJMP(lua_error(L));
5321 }
5322 name = lua_tolstring(L, -2, &nlen);
5323
5324 /* We expect an array as -1. */
5325 if (lua_type(L, -1) != LUA_TTABLE) {
5326 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 +02005327 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005328 name,
5329 lua_typename(L, lua_type(L, -1)));
5330 WILL_LJMP(lua_error(L));
5331 }
5332
5333 /* Browse the table who is on the top of the stack. */
5334 lua_pushnil(L);
5335 while(lua_next(L, -2) != 0) {
5336 int id;
5337
5338 /* We expect a number as -2. */
5339 if (lua_type(L, -2) != LUA_TNUMBER) {
5340 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 +02005341 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005342 name,
5343 lua_typename(L, lua_type(L, -2)));
5344 WILL_LJMP(lua_error(L));
5345 }
5346 id = lua_tointeger(L, -2);
5347
5348 /* We expect a string as -2. */
5349 if (lua_type(L, -1) != LUA_TSTRING) {
5350 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 +02005351 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005352 name, id,
5353 lua_typename(L, lua_type(L, -1)));
5354 WILL_LJMP(lua_error(L));
5355 }
5356 value = lua_tolstring(L, -1, &vlen);
5357
5358 /* Simple Protocol checks. */
Christopher Faulet545fbba2021-09-28 09:36:25 +02005359 if (isteqi(ist2(name, nlen), ist("transfer-encoding"))) {
5360 int ret;
5361
5362 ret = h1_parse_xfer_enc_header(&h1m, ist2(value, vlen));
5363 if (ret < 0) {
5364 hlua_pusherror(L, "Lua applet http '%s': Invalid '%s' header.\n",
5365 luactx->appctx->rule->arg.hlua_rule->fcn->name,
5366 name);
5367 WILL_LJMP(lua_error(L));
5368 }
5369 else if (ret == 0)
5370 goto next; /* Skip it */
5371 }
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005372 else if (isteqi(ist2(name, nlen), ist("content-length"))) {
5373 struct ist v = ist2(value, vlen);
5374 int ret;
5375
5376 ret = h1_parse_cont_len_header(&h1m, &v);
5377 if (ret < 0) {
5378 hlua_pusherror(L, "Lua applet http '%s': Invalid '%s' header.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005379 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005380 name);
5381 WILL_LJMP(lua_error(L));
5382 }
5383 else if (ret == 0)
5384 goto next; /* Skip it */
5385 }
5386
5387 /* Add a new header */
5388 if (!htx_add_header(htx, ist2(name, nlen), ist2(value, vlen))) {
5389 hlua_pusherror(L, "Lua applet http '%s': Failed to add header '%s' in the response.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005390 luactx->appctx->rule->arg.hlua_rule->fcn->name,
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005391 name);
5392 WILL_LJMP(lua_error(L));
5393 }
5394 next:
5395 /* Remove the array from the stack, and get next element with a remaining string. */
5396 lua_pop(L, 1);
5397 }
5398
5399 /* Remove the array from the stack, and get next element with a remaining string. */
5400 lua_pop(L, 1);
5401 }
5402
5403 if (h1m.flags & H1_MF_CHNK)
5404 h1m.flags &= ~H1_MF_CLEN;
5405 if (h1m.flags & (H1_MF_CLEN|H1_MF_CHNK))
5406 h1m.flags |= H1_MF_XFER_LEN;
5407
5408 /* Uset HTX start-line flags */
5409 if (h1m.flags & H1_MF_XFER_ENC)
5410 flags |= HTX_SL_F_XFER_ENC;
5411 if (h1m.flags & H1_MF_XFER_LEN) {
5412 flags |= HTX_SL_F_XFER_LEN;
5413 if (h1m.flags & H1_MF_CHNK)
5414 flags |= HTX_SL_F_CHNK;
5415 else if (h1m.flags & H1_MF_CLEN)
5416 flags |= HTX_SL_F_CLEN;
5417 if (h1m.body_len == 0)
5418 flags |= HTX_SL_F_BODYLESS;
5419 }
5420 sl->flags |= flags;
5421
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07005422 /* If we don't have a content-length set, and the HTTP version is 1.1
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005423 * and the status code implies the presence of a message body, we must
5424 * announce a transfer encoding chunked. This is required by haproxy
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05005425 * for the keepalive compliance. If the applet announces a transfer-encoding
5426 * chunked itself, don't do anything.
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005427 */
5428 if ((flags & (HTX_SL_F_VER_11|HTX_SL_F_XFER_LEN)) == HTX_SL_F_VER_11 &&
Willy Tarreau7e702d12021-04-28 17:59:21 +02005429 luactx->appctx->ctx.hlua_apphttp.status >= 200 &&
5430 luactx->appctx->ctx.hlua_apphttp.status != 204 &&
5431 luactx->appctx->ctx.hlua_apphttp.status != 304) {
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005432 /* Add a new header */
5433 sl->flags |= (HTX_SL_F_XFER_ENC|H1_MF_CHNK|H1_MF_XFER_LEN);
5434 if (!htx_add_header(htx, ist("transfer-encoding"), ist("chunked"))) {
5435 hlua_pusherror(L, "Lua applet http '%s': Failed to add header 'transfer-encoding' in the response.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005436 luactx->appctx->rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005437 WILL_LJMP(lua_error(L));
5438 }
5439 }
5440
5441 /* Finalize headers. */
5442 if (!htx_add_endof(htx, HTX_BLK_EOH)) {
5443 hlua_pusherror(L, "Lua applet http '%s': Failed create the response.\n",
Willy Tarreau7e702d12021-04-28 17:59:21 +02005444 luactx->appctx->rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005445 WILL_LJMP(lua_error(L));
5446 }
5447
5448 if (htx_used_space(htx) > b_size(&res->buf) - global.tune.maxrewrite) {
5449 b_reset(&res->buf);
5450 hlua_pusherror(L, "Lua: 'start_response': response header block too big");
5451 WILL_LJMP(lua_error(L));
5452 }
5453
5454 htx_to_buf(htx, &res->buf);
Christopher Fauletf6cce3f2019-02-27 21:20:09 +01005455 channel_add_input(res, htx->data);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005456
5457 /* Headers sent, set the flag. */
Willy Tarreau7e702d12021-04-28 17:59:21 +02005458 luactx->appctx->ctx.hlua_apphttp.flags |= APPLET_HDR_SENT;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005459 return 0;
5460
5461}
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005462/* We will build the status line and the headers of the HTTP response.
5463 * We will try send at once if its not possible, we give back the hand
5464 * waiting for more room.
5465 */
Christopher Fauleta2097962019-07-15 16:25:33 +02005466__LJMP static int hlua_applet_http_start_response_yield(lua_State *L, int status, lua_KContext ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005467{
Willy Tarreau7e702d12021-04-28 17:59:21 +02005468 struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1));
5469 struct stream_interface *si = luactx->appctx->owner;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005470 struct channel *res = si_ic(si);
5471
5472 if (co_data(res)) {
5473 si_rx_room_blk(si);
Christopher Fauleta2097962019-07-15 16:25:33 +02005474 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_start_response_yield, TICK_ETERNITY, 0));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005475 }
Christopher Fauleta2097962019-07-15 16:25:33 +02005476 return MAY_LJMP(hlua_applet_http_send_response(L));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005477}
5478
5479
Christopher Fauleta2097962019-07-15 16:25:33 +02005480__LJMP static int hlua_applet_http_start_response(lua_State *L)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005481{
Christopher Fauleta2097962019-07-15 16:25:33 +02005482 return MAY_LJMP(hlua_applet_http_start_response_yield(L, 0, 0));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005483}
5484
Christopher Fauleta2097962019-07-15 16:25:33 +02005485/*
5486 *
5487 *
5488 * Class HTTP
5489 *
5490 *
Christopher Faulet9c832fc2018-12-14 13:34:05 +01005491 */
Christopher Fauleta2097962019-07-15 16:25:33 +02005492
5493/* Returns a struct hlua_txn if the stack entry "ud" is
5494 * a class stream, otherwise it throws an error.
5495 */
5496__LJMP static struct hlua_txn *hlua_checkhttp(lua_State *L, int ud)
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005497{
Christopher Fauleta2097962019-07-15 16:25:33 +02005498 return MAY_LJMP(hlua_checkudata(L, ud, class_http_ref));
5499}
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005500
Christopher Fauleta2097962019-07-15 16:25:33 +02005501/* This function creates and push in the stack a HTTP object
5502 * according with a current TXN.
5503 */
5504static int hlua_http_new(lua_State *L, struct hlua_txn *txn)
5505{
5506 struct hlua_txn *htxn;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005507
Christopher Fauleta2097962019-07-15 16:25:33 +02005508 /* Check stack size. */
5509 if (!lua_checkstack(L, 3))
5510 return 0;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005511
Christopher Fauleta2097962019-07-15 16:25:33 +02005512 /* Create the object: obj[0] = userdata.
5513 * Note that the base of the Converters object is the
5514 * same than the TXN object.
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005515 */
Christopher Fauleta2097962019-07-15 16:25:33 +02005516 lua_newtable(L);
5517 htxn = lua_newuserdata(L, sizeof(*htxn));
5518 lua_rawseti(L, -2, 0);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005519
5520 htxn->s = txn->s;
5521 htxn->p = txn->p;
Christopher Faulet256b69a2019-05-23 11:14:21 +02005522 htxn->dir = txn->dir;
5523 htxn->flags = txn->flags;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005524
5525 /* Pop a class stream metatable and affect it to the table. */
5526 lua_rawgeti(L, LUA_REGISTRYINDEX, class_http_ref);
5527 lua_setmetatable(L, -2);
5528
5529 return 1;
5530}
5531
Christopher Fauletdf97ac42020-02-26 16:57:19 +01005532/* This function creates and returns an array containing the status-line
5533 * elements. This function does not fails.
5534 */
5535__LJMP static int hlua_http_get_stline(lua_State *L, struct htx_sl *sl)
5536{
5537 /* Create the table. */
5538 lua_newtable(L);
5539
5540 if (sl->flags & HTX_SL_F_IS_RESP) {
5541 lua_pushstring(L, "version");
5542 lua_pushlstring(L, HTX_SL_RES_VPTR(sl), HTX_SL_RES_VLEN(sl));
5543 lua_settable(L, -3);
5544 lua_pushstring(L, "code");
5545 lua_pushlstring(L, HTX_SL_RES_CPTR(sl), HTX_SL_RES_CLEN(sl));
5546 lua_settable(L, -3);
5547 lua_pushstring(L, "reason");
5548 lua_pushlstring(L, HTX_SL_RES_RPTR(sl), HTX_SL_RES_RLEN(sl));
5549 lua_settable(L, -3);
5550 }
5551 else {
5552 lua_pushstring(L, "method");
5553 lua_pushlstring(L, HTX_SL_REQ_MPTR(sl), HTX_SL_REQ_MLEN(sl));
5554 lua_settable(L, -3);
5555 lua_pushstring(L, "uri");
5556 lua_pushlstring(L, HTX_SL_REQ_UPTR(sl), HTX_SL_REQ_ULEN(sl));
5557 lua_settable(L, -3);
5558 lua_pushstring(L, "version");
5559 lua_pushlstring(L, HTX_SL_REQ_VPTR(sl), HTX_SL_REQ_VLEN(sl));
5560 lua_settable(L, -3);
5561 }
5562 return 1;
5563}
5564
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005565/* This function creates ans returns an array of HTTP headers.
5566 * This function does not fails. It is used as wrapper with the
5567 * 2 following functions.
5568 */
Christopher Faulet9d1332b2020-02-24 16:46:16 +01005569__LJMP static int hlua_http_get_headers(lua_State *L, struct http_msg *msg)
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005570{
Christopher Fauleta2097962019-07-15 16:25:33 +02005571 struct htx *htx;
5572 int32_t pos;
5573
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005574 /* Create the table. */
5575 lua_newtable(L);
5576
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005577
Christopher Fauleta2097962019-07-15 16:25:33 +02005578 htx = htxbuf(&msg->chn->buf);
5579 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
5580 struct htx_blk *blk = htx_get_blk(htx, pos);
5581 enum htx_blk_type type = htx_get_blk_type(blk);
5582 struct ist n, v;
5583 int len;
Christopher Faulet724a12c2018-12-13 22:12:15 +01005584
Christopher Fauleta2097962019-07-15 16:25:33 +02005585 if (type == HTX_BLK_HDR) {
5586 n = htx_get_blk_name(htx,blk);
5587 v = htx_get_blk_value(htx, blk);
Christopher Faulet724a12c2018-12-13 22:12:15 +01005588 }
Christopher Fauleta2097962019-07-15 16:25:33 +02005589 else if (type == HTX_BLK_EOH)
5590 break;
5591 else
5592 continue;
Christopher Faulet724a12c2018-12-13 22:12:15 +01005593
Christopher Fauleta2097962019-07-15 16:25:33 +02005594 /* Check for existing entry:
5595 * assume that the table is on the top of the stack, and
5596 * push the key in the stack, the function lua_gettable()
5597 * perform the lookup.
5598 */
5599 lua_pushlstring(L, n.ptr, n.len);
5600 lua_gettable(L, -2);
Christopher Faulet724a12c2018-12-13 22:12:15 +01005601
Christopher Fauleta2097962019-07-15 16:25:33 +02005602 switch (lua_type(L, -1)) {
5603 case LUA_TNIL:
5604 /* Table not found, create it. */
5605 lua_pop(L, 1); /* remove the nil value. */
5606 lua_pushlstring(L, n.ptr, n.len); /* push the header name as key. */
5607 lua_newtable(L); /* create and push empty table. */
5608 lua_pushlstring(L, v.ptr, v.len); /* push header value. */
5609 lua_rawseti(L, -2, 0); /* index header value (pop it). */
5610 lua_rawset(L, -3); /* index new table with header name (pop the values). */
Christopher Faulet724a12c2018-12-13 22:12:15 +01005611 break;
Christopher Faulet724a12c2018-12-13 22:12:15 +01005612
Christopher Fauleta2097962019-07-15 16:25:33 +02005613 case LUA_TTABLE:
5614 /* Entry found: push the value in the table. */
5615 len = lua_rawlen(L, -1);
5616 lua_pushlstring(L, v.ptr, v.len); /* push header value. */
5617 lua_rawseti(L, -2, len+1); /* index header value (pop it). */
5618 lua_pop(L, 1); /* remove the table (it is stored in the main table). */
5619 break;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005620
Christopher Fauleta2097962019-07-15 16:25:33 +02005621 default:
5622 /* Other cases are errors. */
5623 hlua_pusherror(L, "internal error during the parsing of headers.");
5624 WILL_LJMP(lua_error(L));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005625 }
5626 }
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005627 return 1;
5628}
5629
5630__LJMP static int hlua_http_req_get_headers(lua_State *L)
5631{
5632 struct hlua_txn *htxn;
5633
5634 MAY_LJMP(check_args(L, 1, "req_get_headers"));
5635 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5636
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005637 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005638 WILL_LJMP(lua_error(L));
5639
Christopher Faulet9d1332b2020-02-24 16:46:16 +01005640 return hlua_http_get_headers(L, &htxn->s->txn->req);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005641}
5642
5643__LJMP static int hlua_http_res_get_headers(lua_State *L)
5644{
5645 struct hlua_txn *htxn;
5646
5647 MAY_LJMP(check_args(L, 1, "res_get_headers"));
5648 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5649
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005650 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005651 WILL_LJMP(lua_error(L));
5652
Christopher Faulet9d1332b2020-02-24 16:46:16 +01005653 return hlua_http_get_headers(L, &htxn->s->txn->rsp);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005654}
5655
5656/* This function replace full header, or just a value in
5657 * the request or in the response. It is a wrapper fir the
5658 * 4 following functions.
5659 */
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005660__LJMP static inline int hlua_http_rep_hdr(lua_State *L, struct http_msg *msg, int full)
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005661{
5662 size_t name_len;
5663 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
5664 const char *reg = MAY_LJMP(luaL_checkstring(L, 3));
5665 const char *value = MAY_LJMP(luaL_checkstring(L, 4));
Christopher Fauleta2097962019-07-15 16:25:33 +02005666 struct htx *htx;
Dragan Dosen26743032019-04-30 15:54:36 +02005667 struct my_regex *re;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005668
Dragan Dosen26743032019-04-30 15:54:36 +02005669 if (!(re = regex_comp(reg, 1, 1, NULL)))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005670 WILL_LJMP(luaL_argerror(L, 3, "invalid regex"));
5671
Christopher Fauleta2097962019-07-15 16:25:33 +02005672 htx = htxbuf(&msg->chn->buf);
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005673 http_replace_hdrs(chn_strm(msg->chn), htx, ist2(name, name_len), value, re, full);
Dragan Dosen26743032019-04-30 15:54:36 +02005674 regex_free(re);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005675 return 0;
5676}
5677
5678__LJMP static int hlua_http_req_rep_hdr(lua_State *L)
5679{
5680 struct hlua_txn *htxn;
5681
5682 MAY_LJMP(check_args(L, 4, "req_rep_hdr"));
5683 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5684
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005685 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005686 WILL_LJMP(lua_error(L));
5687
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005688 return MAY_LJMP(hlua_http_rep_hdr(L, &htxn->s->txn->req, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005689}
5690
5691__LJMP static int hlua_http_res_rep_hdr(lua_State *L)
5692{
5693 struct hlua_txn *htxn;
5694
5695 MAY_LJMP(check_args(L, 4, "res_rep_hdr"));
5696 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5697
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005698 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005699 WILL_LJMP(lua_error(L));
5700
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005701 return MAY_LJMP(hlua_http_rep_hdr(L, &htxn->s->txn->rsp, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005702}
5703
5704__LJMP static int hlua_http_req_rep_val(lua_State *L)
5705{
5706 struct hlua_txn *htxn;
5707
5708 MAY_LJMP(check_args(L, 4, "req_rep_hdr"));
5709 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5710
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005711 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005712 WILL_LJMP(lua_error(L));
5713
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005714 return MAY_LJMP(hlua_http_rep_hdr(L, &htxn->s->txn->req, 0));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02005715}
5716
5717__LJMP static int hlua_http_res_rep_val(lua_State *L)
5718{
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005719 struct hlua_txn *htxn;
5720
5721 MAY_LJMP(check_args(L, 4, "res_rep_val"));
5722 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5723
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005724 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005725 WILL_LJMP(lua_error(L));
5726
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005727 return MAY_LJMP(hlua_http_rep_hdr(L, &htxn->s->txn->rsp, 0));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005728}
5729
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08005730/* This function deletes all the occurrences of an header.
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005731 * It is a wrapper for the 2 following functions.
5732 */
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005733__LJMP static inline int hlua_http_del_hdr(lua_State *L, struct http_msg *msg)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005734{
5735 size_t len;
5736 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Christopher Fauleta2097962019-07-15 16:25:33 +02005737 struct htx *htx = htxbuf(&msg->chn->buf);
5738 struct http_hdr_ctx ctx;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005739
Christopher Fauleta2097962019-07-15 16:25:33 +02005740 ctx.blk = NULL;
5741 while (http_find_header(htx, ist2(name, len), &ctx, 1))
5742 http_remove_header(htx, &ctx);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005743 return 0;
5744}
5745
5746__LJMP static int hlua_http_req_del_hdr(lua_State *L)
5747{
5748 struct hlua_txn *htxn;
5749
5750 MAY_LJMP(check_args(L, 2, "req_del_hdr"));
5751 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5752
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005753 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005754 WILL_LJMP(lua_error(L));
5755
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005756 return hlua_http_del_hdr(L, &htxn->s->txn->req);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005757}
5758
5759__LJMP static int hlua_http_res_del_hdr(lua_State *L)
5760{
5761 struct hlua_txn *htxn;
5762
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005763 MAY_LJMP(check_args(L, 2, "res_del_hdr"));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005764 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5765
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005766 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005767 WILL_LJMP(lua_error(L));
5768
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005769 return hlua_http_del_hdr(L, &htxn->s->txn->rsp);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005770}
5771
5772/* This function adds an header. It is a wrapper used by
5773 * the 2 following functions.
5774 */
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005775__LJMP static inline int hlua_http_add_hdr(lua_State *L, struct http_msg *msg)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005776{
5777 size_t name_len;
5778 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
5779 size_t value_len;
5780 const char *value = MAY_LJMP(luaL_checklstring(L, 3, &value_len));
Christopher Fauleta2097962019-07-15 16:25:33 +02005781 struct htx *htx = htxbuf(&msg->chn->buf);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005782
Christopher Fauleta2097962019-07-15 16:25:33 +02005783 lua_pushboolean(L, http_add_header(htx, ist2(name, name_len),
5784 ist2(value, value_len)));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005785 return 0;
5786}
5787
Christopher Fauletdf97ac42020-02-26 16:57:19 +01005788__LJMP static int hlua_http_req_add_hdr(lua_State *L)
5789{
5790 struct hlua_txn *htxn;
5791
5792 MAY_LJMP(check_args(L, 3, "req_add_hdr"));
5793 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5794
5795 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
5796 WILL_LJMP(lua_error(L));
5797
5798 return hlua_http_add_hdr(L, &htxn->s->txn->req);
5799}
5800
5801__LJMP static int hlua_http_res_add_hdr(lua_State *L)
5802{
5803 struct hlua_txn *htxn;
5804
5805 MAY_LJMP(check_args(L, 3, "res_add_hdr"));
5806 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5807
5808 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
5809 WILL_LJMP(lua_error(L));
5810
5811 return hlua_http_add_hdr(L, &htxn->s->txn->rsp);
5812}
5813
5814static int hlua_http_req_set_hdr(lua_State *L)
5815{
5816 struct hlua_txn *htxn;
5817
5818 MAY_LJMP(check_args(L, 3, "req_set_hdr"));
5819 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5820
5821 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
5822 WILL_LJMP(lua_error(L));
5823
5824 hlua_http_del_hdr(L, &htxn->s->txn->req);
5825 return hlua_http_add_hdr(L, &htxn->s->txn->req);
5826}
5827
5828static int hlua_http_res_set_hdr(lua_State *L)
5829{
5830 struct hlua_txn *htxn;
5831
5832 MAY_LJMP(check_args(L, 3, "res_set_hdr"));
5833 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5834
5835 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
5836 WILL_LJMP(lua_error(L));
5837
5838 hlua_http_del_hdr(L, &htxn->s->txn->rsp);
5839 return hlua_http_add_hdr(L, &htxn->s->txn->rsp);
5840}
5841
5842/* This function set the method. */
5843static int hlua_http_req_set_meth(lua_State *L)
5844{
5845 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5846 size_t name_len;
5847 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
5848
5849 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
5850 WILL_LJMP(lua_error(L));
5851
5852 lua_pushboolean(L, http_req_replace_stline(0, name, name_len, htxn->p, htxn->s) != -1);
5853 return 1;
5854}
5855
5856/* This function set the method. */
5857static int hlua_http_req_set_path(lua_State *L)
5858{
5859 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5860 size_t name_len;
5861 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
5862
5863 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
5864 WILL_LJMP(lua_error(L));
5865
5866 lua_pushboolean(L, http_req_replace_stline(1, name, name_len, htxn->p, htxn->s) != -1);
5867 return 1;
5868}
5869
5870/* This function set the query-string. */
5871static int hlua_http_req_set_query(lua_State *L)
5872{
5873 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5874 size_t name_len;
5875 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
5876
5877 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
5878 WILL_LJMP(lua_error(L));
5879
5880 /* Check length. */
5881 if (name_len > trash.size - 1) {
5882 lua_pushboolean(L, 0);
5883 return 1;
5884 }
5885
5886 /* Add the mark question as prefix. */
5887 chunk_reset(&trash);
5888 trash.area[trash.data++] = '?';
5889 memcpy(trash.area + trash.data, name, name_len);
5890 trash.data += name_len;
5891
5892 lua_pushboolean(L,
5893 http_req_replace_stline(2, trash.area, trash.data, htxn->p, htxn->s) != -1);
5894 return 1;
5895}
5896
5897/* This function set the uri. */
5898static int hlua_http_req_set_uri(lua_State *L)
5899{
5900 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5901 size_t name_len;
5902 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
5903
5904 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
5905 WILL_LJMP(lua_error(L));
5906
5907 lua_pushboolean(L, http_req_replace_stline(3, name, name_len, htxn->p, htxn->s) != -1);
5908 return 1;
5909}
5910
5911/* This function set the response code & optionally reason. */
5912static int hlua_http_res_set_status(lua_State *L)
5913{
5914 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5915 unsigned int code = MAY_LJMP(luaL_checkinteger(L, 2));
5916 const char *str = MAY_LJMP(luaL_optlstring(L, 3, NULL, NULL));
5917 const struct ist reason = ist2(str, (str ? strlen(str) : 0));
5918
5919 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
5920 WILL_LJMP(lua_error(L));
5921
5922 http_res_set_status(code, reason, htxn->s);
5923 return 0;
5924}
5925
5926/*
5927 *
5928 *
5929 * Class HTTPMessage
5930 *
5931 *
5932 */
5933
5934/* Returns a struct http_msg if the stack entry "ud" is a class HTTPMessage,
5935 * otherwise it throws an error.
5936 */
5937__LJMP static struct http_msg *hlua_checkhttpmsg(lua_State *L, int ud)
5938{
5939 return MAY_LJMP(hlua_checkudata(L, ud, class_http_msg_ref));
5940}
5941
5942/* Creates and pushes on the stack a HTTP object according with a current TXN.
5943 */
Christopher Faulet78c35472020-02-26 17:14:08 +01005944static int hlua_http_msg_new(lua_State *L, struct http_msg *msg)
Christopher Fauletdf97ac42020-02-26 16:57:19 +01005945{
5946 /* Check stack size. */
5947 if (!lua_checkstack(L, 3))
5948 return 0;
5949
5950 lua_newtable(L);
5951 lua_pushlightuserdata(L, msg);
5952 lua_rawseti(L, -2, 0);
5953
5954 /* Create the "channel" field that contains the request channel object. */
5955 lua_pushstring(L, "channel");
5956 if (!hlua_channel_new(L, msg->chn))
5957 return 0;
5958 lua_rawset(L, -3);
5959
5960 /* Pop a class stream metatable and affect it to the table. */
5961 lua_rawgeti(L, LUA_REGISTRYINDEX, class_http_msg_ref);
5962 lua_setmetatable(L, -2);
5963
5964 return 1;
5965}
5966
5967/* Helper function returning a filter attached to the HTTP message at the
5968 * position <ud> in the stack, filling the current offset and length of the
Ilya Shipitsinff0f2782021-08-22 22:18:07 +05005969 * filter. If no filter is attached, NULL is returned and <offset> and <len> are
Christopher Fauletdf97ac42020-02-26 16:57:19 +01005970 * filled with output and input length respectively.
5971 */
5972static struct filter *hlua_http_msg_filter(lua_State *L, int ud, struct http_msg *msg, size_t *offset, size_t *len)
5973{
5974 struct channel *chn = msg->chn;
5975 struct htx *htx = htxbuf(&chn->buf);
5976 struct filter *filter = NULL;
5977
5978 *offset = co_data(msg->chn);
5979 *len = htx->data - co_data(msg->chn);
5980
5981 if (lua_getfield(L, ud, "__filter") == LUA_TLIGHTUSERDATA) {
5982 filter = lua_touserdata (L, -1);
5983 if (msg->msg_state >= HTTP_MSG_DATA) {
5984 struct hlua_flt_ctx *flt_ctx = filter->ctx;
5985
5986 *offset = flt_ctx->cur_off[CHN_IDX(chn)];
5987 *len = flt_ctx->cur_len[CHN_IDX(chn)];
5988 }
5989 }
5990
5991 lua_pop(L, 1);
5992 return filter;
5993}
5994
5995/* Returns true if the channel attached to the HTTP message is the response
5996 * channel.
5997 */
5998__LJMP static int hlua_http_msg_is_resp(lua_State *L)
5999{
6000 struct http_msg *msg;
6001
6002 MAY_LJMP(check_args(L, 1, "is_resp"));
6003 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6004
6005 lua_pushboolean(L, !!(msg->chn->flags & CF_ISRESP));
6006 return 1;
6007}
6008
6009/* Returns an array containing the elements status-line of the HTTP message. It relies
6010 * on hlua_http_get_stline().
6011 */
6012__LJMP static int hlua_http_msg_get_stline(lua_State *L)
6013{
6014 struct http_msg *msg;
6015 struct htx *htx;
6016 struct htx_sl *sl;
6017
6018 MAY_LJMP(check_args(L, 1, "get_stline"));
6019 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6020
6021 if (msg->msg_state > HTTP_MSG_BODY)
6022 WILL_LJMP(lua_error(L));
6023
6024 htx = htxbuf(&msg->chn->buf);
6025 sl = http_get_stline(htx);
6026 if (!sl)
6027 return 0;
6028 return hlua_http_get_stline(L, sl);
6029}
6030
6031/* Returns an array containing all headers of the HTTP message. it relies on
6032 * hlua_http_get_headers().
6033 */
6034__LJMP static int hlua_http_msg_get_headers(lua_State *L)
6035{
6036 struct http_msg *msg;
6037
6038 MAY_LJMP(check_args(L, 1, "get_headers"));
6039 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6040
6041 if (msg->msg_state > HTTP_MSG_BODY)
6042 WILL_LJMP(lua_error(L));
6043
6044 return hlua_http_get_headers(L, msg);
6045}
6046
6047/* Deletes all occurrences of an header in the HTTP message matching on its
6048 * name. It relies on hlua_http_del_hdr().
6049 */
6050__LJMP static int hlua_http_msg_del_hdr(lua_State *L)
6051{
6052 struct http_msg *msg;
6053
6054 MAY_LJMP(check_args(L, 2, "del_header"));
6055 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6056
6057 if (msg->msg_state > HTTP_MSG_BODY)
6058 WILL_LJMP(lua_error(L));
6059
6060 return hlua_http_del_hdr(L, msg);
6061}
6062
Ilya Shipitsinff0f2782021-08-22 22:18:07 +05006063/* Matches the full value line of all occurrences of an header in the HTTP
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006064 * message given its name against a regex and replaces it if it matches. It
6065 * relies on hlua_http_rep_hdr().
6066 */
6067__LJMP static int hlua_http_msg_rep_hdr(lua_State *L)
6068{
6069 struct http_msg *msg;
6070
6071 MAY_LJMP(check_args(L, 4, "rep_header"));
6072 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6073
6074 if (msg->msg_state > HTTP_MSG_BODY)
6075 WILL_LJMP(lua_error(L));
6076
6077 return hlua_http_rep_hdr(L, msg, 1);
6078}
6079
6080/* Matches all comma-separated values of all occurences of an header in the HTTP
6081 * message given its name against a regex and replaces it if it matches. It
6082 * relies on hlua_http_rep_hdr().
6083 */
6084__LJMP static int hlua_http_msg_rep_val(lua_State *L)
6085{
6086 struct http_msg *msg;
6087
6088 MAY_LJMP(check_args(L, 4, "rep_value"));
6089 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6090
6091 if (msg->msg_state > HTTP_MSG_BODY)
6092 WILL_LJMP(lua_error(L));
6093
6094 return hlua_http_rep_hdr(L, msg, 0);
6095}
6096
6097/* Add an header in the HTTP message. It relies on hlua_http_add_hdr() */
6098__LJMP static int hlua_http_msg_add_hdr(lua_State *L)
6099{
6100 struct http_msg *msg;
6101
6102 MAY_LJMP(check_args(L, 3, "add_header"));
6103 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6104
6105 if (msg->msg_state > HTTP_MSG_BODY)
6106 WILL_LJMP(lua_error(L));
6107
6108 return hlua_http_add_hdr(L, msg);
6109}
6110
6111/* Add an header in the HTTP message removing existing headers with the same
6112 * name. It relies on hlua_http_del_hdr() and hlua_http_add_hdr().
6113 */
6114__LJMP static int hlua_http_msg_set_hdr(lua_State *L)
6115{
6116 struct http_msg *msg;
6117
6118 MAY_LJMP(check_args(L, 3, "set_header"));
6119 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6120
6121 if (msg->msg_state > HTTP_MSG_BODY)
6122 WILL_LJMP(lua_error(L));
6123
6124 hlua_http_del_hdr(L, msg);
6125 return hlua_http_add_hdr(L, msg);
6126}
6127
6128/* Rewrites the request method. It relies on http_req_replace_stline(). */
6129__LJMP static int hlua_http_msg_set_meth(lua_State *L)
6130{
6131 struct stream *s;
6132 struct http_msg *msg;
6133 const char *name;
6134 size_t name_len;
6135
6136 MAY_LJMP(check_args(L, 2, "set_method"));
6137 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6138 name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
6139
6140 if ((msg->chn->flags & CF_ISRESP) || msg->msg_state > HTTP_MSG_BODY)
6141 WILL_LJMP(lua_error(L));
6142
6143 s = chn_strm(msg->chn);
6144 lua_pushboolean(L, http_req_replace_stline(0, name, name_len, s->be, s) != -1);
6145 return 1;
6146}
6147
6148/* Rewrites the request path. It relies on http_req_replace_stline(). */
6149__LJMP static int hlua_http_msg_set_path(lua_State *L)
6150{
6151 struct stream *s;
6152 struct http_msg *msg;
6153 const char *name;
6154 size_t name_len;
6155
6156 MAY_LJMP(check_args(L, 2, "set_path"));
6157 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6158 name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
6159
6160 if ((msg->chn->flags & CF_ISRESP) || msg->msg_state > HTTP_MSG_BODY)
6161 WILL_LJMP(lua_error(L));
6162
6163 s = chn_strm(msg->chn);
6164 lua_pushboolean(L, http_req_replace_stline(1, name, name_len, s->be, s) != -1);
6165 return 1;
6166}
6167
6168/* Rewrites the request query-string. It relies on http_req_replace_stline(). */
6169__LJMP static int hlua_http_msg_set_query(lua_State *L)
6170{
6171 struct stream *s;
6172 struct http_msg *msg;
6173 const char *name;
6174 size_t name_len;
6175
6176 MAY_LJMP(check_args(L, 2, "set_query"));
6177 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6178 name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
6179
6180 if ((msg->chn->flags & CF_ISRESP) || msg->msg_state > HTTP_MSG_BODY)
6181 WILL_LJMP(lua_error(L));
6182
6183 /* Check length. */
6184 if (name_len > trash.size - 1) {
6185 lua_pushboolean(L, 0);
6186 return 1;
6187 }
6188
6189 /* Add the mark question as prefix. */
6190 chunk_reset(&trash);
6191 trash.area[trash.data++] = '?';
6192 memcpy(trash.area + trash.data, name, name_len);
6193 trash.data += name_len;
6194
6195 s = chn_strm(msg->chn);
6196 lua_pushboolean(L, http_req_replace_stline(2, trash.area, trash.data, s->be, s) != -1);
6197 return 1;
6198}
6199
6200/* Rewrites the request URI. It relies on http_req_replace_stline(). */
6201__LJMP static int hlua_http_msg_set_uri(lua_State *L)
6202{
6203 struct stream *s;
6204 struct http_msg *msg;
6205 const char *name;
6206 size_t name_len;
6207
6208 MAY_LJMP(check_args(L, 2, "set_uri"));
6209 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6210 name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
6211
6212 if ((msg->chn->flags & CF_ISRESP) || msg->msg_state > HTTP_MSG_BODY)
6213 WILL_LJMP(lua_error(L));
6214
6215 s = chn_strm(msg->chn);
6216 lua_pushboolean(L, http_req_replace_stline(3, name, name_len, s->be, s) != -1);
6217 return 1;
6218}
6219
6220/* Rewrites the response status code. It relies on http_res_set_status(). */
6221__LJMP static int hlua_http_msg_set_status(lua_State *L)
6222{
6223 struct http_msg *msg;
6224 unsigned int code;
6225 const char *reason;
6226 size_t reason_len;
6227
6228 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6229 code = MAY_LJMP(luaL_checkinteger(L, 2));
6230 reason = MAY_LJMP(luaL_optlstring(L, 3, NULL, &reason_len));
6231
6232 if (!(msg->chn->flags & CF_ISRESP) || msg->msg_state > HTTP_MSG_BODY)
6233 WILL_LJMP(lua_error(L));
6234
6235 lua_pushboolean(L, http_res_set_status(code, ist2(reason, reason_len), chn_strm(msg->chn)) != -1);
6236 return 1;
6237}
6238
6239/* Returns true if the HTTP message is full. */
6240__LJMP static int hlua_http_msg_is_full(lua_State *L)
6241{
6242 struct http_msg *msg;
6243
6244 MAY_LJMP(check_args(L, 1, "is_full"));
6245 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6246 lua_pushboolean(L, channel_full(msg->chn, 0));
6247 return 1;
6248}
6249
6250/* Returns true if the HTTP message may still receive data. */
6251__LJMP static int hlua_http_msg_may_recv(lua_State *L)
6252{
6253 struct http_msg *msg;
6254 struct htx *htx;
6255
6256 MAY_LJMP(check_args(L, 1, "may_recv"));
6257 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6258 htx = htxbuf(&msg->chn->buf);
6259 lua_pushboolean(L, (htx_expect_more(htx) && !channel_input_closed(msg->chn) && channel_may_recv(msg->chn)));
6260 return 1;
6261}
6262
6263/* Returns true if the HTTP message EOM was received */
6264__LJMP static int hlua_http_msg_is_eom(lua_State *L)
6265{
6266 struct http_msg *msg;
6267 struct htx *htx;
6268
6269 MAY_LJMP(check_args(L, 1, "may_recv"));
6270 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6271 htx = htxbuf(&msg->chn->buf);
6272 lua_pushboolean(L, !htx_expect_more(htx));
6273 return 1;
6274}
6275
6276/* Returns the number of bytes available in the input side of the HTTP
6277 * message. This function never fails.
6278 */
6279__LJMP static int hlua_http_msg_get_in_len(lua_State *L)
6280{
6281 struct http_msg *msg;
Christopher Fauleteae8afa2020-02-26 17:15:48 +01006282 size_t output, input;
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006283
6284 MAY_LJMP(check_args(L, 1, "input"));
6285 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
Christopher Fauleteae8afa2020-02-26 17:15:48 +01006286 hlua_http_msg_filter(L, 1, msg, &output, &input);
6287 lua_pushinteger(L, input);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006288 return 1;
6289}
6290
6291/* Returns the number of bytes available in the output side of the HTTP
6292 * message. This function never fails.
6293 */
6294__LJMP static int hlua_http_msg_get_out_len(lua_State *L)
6295{
6296 struct http_msg *msg;
Christopher Fauleteae8afa2020-02-26 17:15:48 +01006297 size_t output, input;
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006298
6299 MAY_LJMP(check_args(L, 1, "output"));
6300 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
Christopher Fauleteae8afa2020-02-26 17:15:48 +01006301 hlua_http_msg_filter(L, 1, msg, &output, &input);
6302 lua_pushinteger(L, output);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006303 return 1;
6304}
6305
6306/* Copies at most <len> bytes of DATA blocks from the HTTP message <msg>
6307 * starting at the offset <offset> and put it in a string LUA variables. It
Ilya Shipitsinff0f2782021-08-22 22:18:07 +05006308 * returns the built string length. It stops on the first non-DATA HTX
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006309 * block. This function is called during the payload filtering, so the headers
6310 * are already scheduled for output (from the filter point of view).
6311 */
6312static int _hlua_http_msg_dup(struct http_msg *msg, lua_State *L, size_t offset, size_t len)
6313{
6314 struct htx *htx = htxbuf(&msg->chn->buf);
6315 struct htx_blk *blk;
6316 struct htx_ret htxret;
6317 luaL_Buffer b;
6318 int ret = 0;
6319
6320 luaL_buffinit(L, &b);
6321 htxret = htx_find_offset(htx, offset);
6322 for (blk = htxret.blk, offset = htxret.ret; blk && len; blk = htx_get_next_blk(htx, blk)) {
6323 enum htx_blk_type type = htx_get_blk_type(blk);
6324 struct ist v;
6325
6326 switch (type) {
6327 case HTX_BLK_UNUSED:
6328 break;
6329
6330 case HTX_BLK_DATA:
6331 v = htx_get_blk_value(htx, blk);
Tim Duesterhusb113b5c2021-09-15 13:58:44 +02006332 v = istadv(v, offset);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006333 if (v.len > len)
6334 v.len = len;
6335
6336 luaL_addlstring(&b, v.ptr, v.len);
6337 ret += v.len;
6338 break;
6339
6340 default:
6341 if (!ret) {
6342 /* Remove the empty string and push nil on the stack */
6343 lua_pop(L, 1);
6344 lua_pushnil(L);
6345 }
6346 goto end;
6347 }
6348 offset = 0;
6349 }
6350
6351 luaL_pushresult(&b);
6352
6353end:
6354 return ret;
6355}
6356
6357/* Copies the string <str> to the HTTP message <msg> at the offset
6358 * <offset>. This function returns -1 if data cannot be copied. Otherwise, it
Ilya Shipitsinff0f2782021-08-22 22:18:07 +05006359 * returns the amount of data written. This function is responsible to update
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006360 * the filter context.
6361 */
6362static int _hlua_http_msg_insert(struct http_msg *msg, struct filter *filter, struct ist str, size_t offset)
6363{
6364 struct htx *htx = htx_from_buf(&msg->chn->buf);
6365 struct htx_ret htxret;
6366 int /*max, */ret = 0;
6367
6368 /* Nothing to do, just return */
6369 if (unlikely(istlen(str) == 0))
6370 goto end;
6371
6372 if (istlen(str) > htx_free_data_space(htx)) {
6373 ret = -1;
6374 goto end;
6375 }
6376
6377 htxret = htx_find_offset(htx, offset);
6378 if (!htxret.blk || htx_get_blk_type(htxret.blk) != HTX_BLK_DATA) {
6379 if (!htx_add_last_data(htx, str))
6380 goto end;
6381 }
6382 else {
6383 struct ist v = htx_get_blk_value(htx, htxret.blk);
6384 v.ptr += htxret.ret;
6385 v.len = 0;
6386 if (!htx_replace_blk_value(htx, htxret.blk, v, str))
6387 goto end;
6388 }
6389 ret = str.len;
6390 if (ret) {
6391 struct hlua_flt_ctx *flt_ctx = filter->ctx;
6392 flt_update_offsets(filter, msg->chn, ret);
6393 flt_ctx->cur_len[CHN_IDX(msg->chn)] += ret;
6394 }
6395
6396 end:
6397 htx_to_buf(htx, &msg->chn->buf);
6398 return ret;
6399}
6400
6401/* Helper function removing at most <len> bytes of DATA blocks at the absolute
6402 * position <offset>. It stops on the first non-DATA HTX block. This function is
6403 * called during the payload filtering, so the headers are already scheduled for
Ilya Shipitsinff0f2782021-08-22 22:18:07 +05006404 * output (from the filter point of view). This function is responsible to
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006405 * update the filter context.
6406 */
6407static void _hlua_http_msg_delete(struct http_msg *msg, struct filter *filter, size_t offset, size_t len)
6408{
6409 struct hlua_flt_ctx *flt_ctx = filter->ctx;
6410 struct htx *htx = htx_from_buf(&msg->chn->buf);
6411 struct htx_blk *blk;
6412 struct htx_ret htxret;
6413 size_t ret = 0;
6414
6415 /* Be sure <len> is always the amount of DATA to remove */
6416 if (htx->data == offset+len && htx_get_tail_type(htx) == HTX_BLK_DATA) {
6417 htx_truncate(htx, offset);
6418 ret = len;
6419 goto end;
6420 }
6421
6422 htxret = htx_find_offset(htx, offset);
6423 blk = htxret.blk;
6424 if (htxret.ret) {
6425 struct ist v;
6426
6427 if (htx_get_blk_type(blk) != HTX_BLK_DATA)
6428 goto end;
6429 v = htx_get_blk_value(htx, blk);
6430 v.ptr += htxret.ret;
6431 if (v.len > len)
6432 v.len = len;
Tim Duesterhusb113b5c2021-09-15 13:58:44 +02006433 blk = htx_replace_blk_value(htx, blk, v, IST_NULL);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006434 len -= v.len;
6435 ret += v.len;
6436 }
6437
6438
6439 while (blk && len) {
6440 enum htx_blk_type type = htx_get_blk_type(blk);
6441 uint32_t sz = htx_get_blksz(blk);
6442
6443 switch (type) {
6444 case HTX_BLK_UNUSED:
6445 break;
6446
6447 case HTX_BLK_DATA:
6448 if (len < sz) {
6449 htx_cut_data_blk(htx, blk, len);
6450 ret += len;
6451 goto end;
6452 }
6453 break;
6454
6455 default:
6456 goto end;
6457 }
6458
Ilya Shipitsinff0f2782021-08-22 22:18:07 +05006459 /* Remove all the data block */
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006460 len -= sz;
6461 ret += sz;
6462 blk = htx_remove_blk(htx, blk);
6463 }
6464
6465end:
6466 flt_update_offsets(filter, msg->chn, -ret);
6467 flt_ctx->cur_len[CHN_IDX(msg->chn)] -= ret;
6468 /* WARNING: we don't call htx_to_buf() on purpose, because we don't want
6469 * to loose the EOM flag if the message is empty.
6470 */
6471}
6472
6473/* Copies input data found in an HTTP message. Unlike the channel function used
6474 * to duplicate raw data, this one can only be called inside a filter, from
6475 * http_payload callback. So it cannot yield. An exception is returned if it is
6476 * called from another callback. If nothing was copied, a nil value is pushed on
6477 * the stack.
6478 */
6479__LJMP static int hlua_http_msg_get_body(lua_State *L)
6480{
6481 struct http_msg *msg;
6482 struct filter *filter;
6483 size_t output, input;
6484 int offset, len;
6485
6486 if (lua_gettop(L) < 1 || lua_gettop(L) > 3)
6487 WILL_LJMP(luaL_error(L, "'data' expects at most 2 arguments"));
6488 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6489
6490 if (msg->msg_state < HTTP_MSG_DATA)
6491 WILL_LJMP(lua_error(L));
6492
6493 filter = hlua_http_msg_filter(L, 1, msg, &output, &input);
6494 if (!filter || !hlua_filter_from_payload(filter))
6495 WILL_LJMP(lua_error(L));
6496
6497 if (!ci_data(msg->chn) && channel_input_closed(msg->chn)) {
6498 lua_pushnil(L);
6499 return 1;
6500 }
6501
6502 offset = output;
6503 if (lua_gettop(L) > 1) {
6504 offset = MAY_LJMP(luaL_checkinteger(L, 2));
6505 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02006506 offset = MAX(0, (int)input + offset);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006507 offset += output;
6508 if (offset < output || offset > input + output) {
6509 lua_pushfstring(L, "offset out of range.");
6510 WILL_LJMP(lua_error(L));
6511 }
6512 }
6513 len = output + input - offset;
6514 if (lua_gettop(L) == 3) {
6515 len = MAY_LJMP(luaL_checkinteger(L, 3));
6516 if (!len)
6517 goto dup;
6518 if (len == -1)
6519 len = global.tune.bufsize;
6520 if (len < 0) {
6521 lua_pushfstring(L, "length out of range.");
6522 WILL_LJMP(lua_error(L));
6523 }
6524 }
6525
6526 dup:
6527 _hlua_http_msg_dup(msg, L, offset, len);
6528 return 1;
6529}
6530
6531/* Appends a string to the HTTP message, after all existing DATA blocks but
6532 * before the trailers, if any. It returns the amount of data written or -1 if
6533 * nothing was copied. Unlike the channel function used to append data, this one
6534 * can only be called inside a filter, from http_payload callback. So it cannot
6535 * yield. An exception is returned if it is called from another callback.
6536 */
6537__LJMP static int hlua_http_msg_append(lua_State *L)
6538{
6539 struct http_msg *msg;
6540 struct filter *filter;
6541 const char *str;
6542 size_t offset, len, sz;
6543 int ret;
6544
6545 MAY_LJMP(check_args(L, 2, "append"));
6546 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6547
6548 if (msg->msg_state < HTTP_MSG_DATA)
6549 WILL_LJMP(lua_error(L));
6550
6551 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
6552 filter = hlua_http_msg_filter(L, 1, msg, &offset, &len);
6553 if (!filter || !hlua_filter_from_payload(filter))
6554 WILL_LJMP(lua_error(L));
6555
6556 ret = _hlua_http_msg_insert(msg, filter, ist2(str, sz), offset+len);
6557 lua_pushinteger(L, ret);
6558 return 1;
6559}
6560
6561/* Prepends a string to the HTTP message, before all existing DATA blocks. It
6562 * returns the amount of data written or -1 if nothing was copied. Unlike the
6563 * channel function used to prepend data, this one can only be called inside a
6564 * filter, from http_payload callback. So it cannot yield. An exception is
6565 * returned if it is called from another callback.
6566 */
6567__LJMP static int hlua_http_msg_prepend(lua_State *L)
6568{
6569 struct http_msg *msg;
6570 struct filter *filter;
6571 const char *str;
6572 size_t offset, len, sz;
6573 int ret;
6574
6575 MAY_LJMP(check_args(L, 2, "prepend"));
6576 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006577
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006578 if (msg->msg_state < HTTP_MSG_DATA)
6579 WILL_LJMP(lua_error(L));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006580
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006581 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
6582 filter = hlua_http_msg_filter(L, 1, msg, &offset, &len);
6583 if (!filter || !hlua_filter_from_payload(filter))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006584 WILL_LJMP(lua_error(L));
6585
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006586 ret = _hlua_http_msg_insert(msg, filter, ist2(str, sz), offset);
6587 lua_pushinteger(L, ret);
6588 return 1;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006589}
6590
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006591/* Inserts a string to the HTTP message at a given offset. By default the string
6592 * is appended at the end of DATA blocks. It returns the amount of data written
6593 * or -1 if nothing was copied. Unlike the channel function used to insert data,
6594 * this one can only be called inside a filter, from http_payload callback. So
6595 * it cannot yield. An exception is returned if it is called from another
6596 * callback.
6597 */
6598__LJMP static int hlua_http_msg_insert_data(lua_State *L)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006599{
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006600 struct http_msg *msg;
6601 struct filter *filter;
6602 const char *str;
6603 size_t input, output, sz;
6604 int offset;
6605 int ret;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006606
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006607 if (lua_gettop(L) < 2 || lua_gettop(L) > 3)
6608 WILL_LJMP(luaL_error(L, "'insert' expects at least 1 argument and at most 2 arguments"));
6609 MAY_LJMP(check_args(L, 2, "insert"));
6610 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006611
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006612 if (msg->msg_state < HTTP_MSG_DATA)
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006613 WILL_LJMP(lua_error(L));
6614
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006615 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
6616 filter = hlua_http_msg_filter(L, 1, msg, &input, &output);
6617 if (!filter || !hlua_filter_from_payload(filter))
6618 WILL_LJMP(lua_error(L));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006619
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006620 offset = input + output;
6621 if (lua_gettop(L) > 2) {
6622 offset = MAY_LJMP(luaL_checkinteger(L, 3));
6623 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02006624 offset = MAX(0, (int)input + offset);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006625 offset += output;
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006626 if (offset < output || offset > output + input) {
6627 lua_pushfstring(L, "offset out of range.");
6628 WILL_LJMP(lua_error(L));
6629 }
6630 }
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006631
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006632 ret = _hlua_http_msg_insert(msg, filter, ist2(str, sz), offset);
6633 lua_pushinteger(L, ret);
6634 return 1;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006635}
6636
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006637/* Removes a given amount of data from the HTTP message at a given offset. By
6638 * default all DATA blocks are removed. It returns the amount of data
6639 * removed. Unlike the channel function used to remove data, this one can only
6640 * be called inside a filter, from http_payload callback. So it cannot yield. An
6641 * exception is returned if it is called from another callback.
6642 */
6643__LJMP static int hlua_http_msg_del_data(lua_State *L)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006644{
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006645 struct http_msg *msg;
6646 struct filter *filter;
6647 size_t input, output;
6648 int offset, len;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006649
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006650 if (lua_gettop(L) < 1 || lua_gettop(L) > 3)
6651 WILL_LJMP(luaL_error(L, "'insert' expects at most 2 arguments"));
6652 MAY_LJMP(check_args(L, 2, "insert"));
6653 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006654
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006655 if (msg->msg_state < HTTP_MSG_DATA)
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006656 WILL_LJMP(lua_error(L));
6657
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006658 filter = hlua_http_msg_filter(L, 1, msg, &input, &output);
6659 if (!filter || !hlua_filter_from_payload(filter))
6660 WILL_LJMP(lua_error(L));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006661
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006662 offset = input + output;
6663 if (lua_gettop(L) > 2) {
6664 offset = MAY_LJMP(luaL_checkinteger(L, 3));
6665 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02006666 offset = MAX(0, (int)input + offset);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006667 offset += output;
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006668 if (offset < output || offset > output + input) {
6669 lua_pushfstring(L, "offset out of range.");
6670 WILL_LJMP(lua_error(L));
6671 }
6672 }
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006673
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006674 len = output + input - offset;
6675 if (lua_gettop(L) == 4) {
6676 len = MAY_LJMP(luaL_checkinteger(L, 4));
6677 if (!len)
6678 goto end;
6679 if (len == -1)
6680 len = output + input - offset;
6681 if (len < 0 || offset + len > output + input) {
6682 lua_pushfstring(L, "length out of range.");
6683 WILL_LJMP(lua_error(L));
6684 }
6685 }
6686
6687 _hlua_http_msg_delete(msg, filter, offset, len);
6688
6689 end:
6690 lua_pushinteger(L, len);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006691 return 1;
6692}
6693
Ilya Shipitsinff0f2782021-08-22 22:18:07 +05006694/* Replaces a given amount of data at the given offset by a string. By default,
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006695 * all remaining data are removed, accordingly to the filter context. It returns
6696 * the amount of data written or -1 if nothing was copied. Unlike the channel
6697 * function used to replace data, this one can only be called inside a filter,
6698 * from http_payload callback. So it cannot yield. An exception is returned if
6699 * it is called from another callback.
6700 */
6701__LJMP static int hlua_http_msg_set_data(lua_State *L)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006702{
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006703 struct http_msg *msg;
6704 struct filter *filter;
6705 struct htx *htx;
6706 const char *str;
6707 size_t input, output, sz;
6708 int offset, len;
6709 int ret;
Thierry FOURNIER / OZON.IOb84ae922016-08-02 23:44:58 +02006710
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006711 if (lua_gettop(L) < 2 || lua_gettop(L) > 4)
6712 WILL_LJMP(luaL_error(L, "'set' expects at least 1 argument and at most 3 arguments"));
6713 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6714
6715 if (msg->msg_state < HTTP_MSG_DATA)
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006716 WILL_LJMP(lua_error(L));
6717
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006718 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
6719 filter = hlua_http_msg_filter(L, 1, msg, &output, &input);
6720 if (!filter || !hlua_filter_from_payload(filter))
6721 WILL_LJMP(lua_error(L));
6722
6723 offset = output;
6724 if (lua_gettop(L) > 2) {
6725 offset = MAY_LJMP(luaL_checkinteger(L, 3));
6726 if (offset < 0)
Christopher Faulet70c43452021-08-13 08:11:00 +02006727 offset = MAX(0, (int)input + offset);
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006728 offset += output;
6729 if (offset < output || offset > input + output) {
6730 lua_pushfstring(L, "offset out of range.");
6731 WILL_LJMP(lua_error(L));
6732 }
6733 }
6734
6735 len = output + input - offset;
6736 if (lua_gettop(L) == 4) {
6737 len = MAY_LJMP(luaL_checkinteger(L, 4));
6738 if (!len)
6739 goto set;
6740 if (len == -1)
6741 len = output + input - offset;
6742 if (len < 0 || offset + len > output + input) {
6743 lua_pushfstring(L, "length out of range.");
6744 WILL_LJMP(lua_error(L));
6745 }
6746 }
6747
6748 set:
6749 /* Be sure we can copied the string once input data will be removed. */
6750 htx = htx_from_buf(&msg->chn->buf);
6751 if (sz > htx_free_data_space(htx) + len)
6752 lua_pushinteger(L, -1);
6753 else {
6754 _hlua_http_msg_delete(msg, filter, offset, len);
6755 ret = _hlua_http_msg_insert(msg, filter, ist2(str, sz), offset);
6756 lua_pushinteger(L, ret);
6757 }
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006758 return 1;
6759}
6760
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006761/* Prepends data into an HTTP message and forward it, from the filter point of
6762 * view. It returns the amount of data written or -1 if nothing was sent. Unlike
6763 * the channel function used to send data, this one can only be called inside a
6764 * filter, from http_payload callback. So it cannot yield. An exception is
6765 * returned if it is called from another callback.
6766 */
6767__LJMP static int hlua_http_msg_send(lua_State *L)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006768{
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006769 struct http_msg *msg;
6770 struct filter *filter;
6771 struct htx *htx;
6772 const char *str;
6773 size_t offset, len, sz;
6774 int ret;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006775
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006776 MAY_LJMP(check_args(L, 2, "send"));
6777 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6778
6779 if (msg->msg_state < HTTP_MSG_DATA)
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006780 WILL_LJMP(lua_error(L));
6781
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006782 str = MAY_LJMP(luaL_checklstring(L, 2, &sz));
6783 filter = hlua_http_msg_filter(L, 1, msg, &offset, &len);
6784 if (!filter || !hlua_filter_from_payload(filter))
6785 WILL_LJMP(lua_error(L));
6786
6787 /* Return an error if the channel's output is closed */
6788 if (unlikely(channel_output_closed(msg->chn))) {
6789 lua_pushinteger(L, -1);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006790 return 1;
6791 }
6792
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006793 htx = htx_from_buf(&msg->chn->buf);
6794 if (sz > htx_free_data_space(htx)) {
6795 lua_pushinteger(L, -1);
6796 return 1;
6797 }
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006798
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006799 ret = _hlua_http_msg_insert(msg, filter, ist2(str, sz), offset);
6800 if (ret > 0) {
6801 struct hlua_flt_ctx *flt_ctx = filter->ctx;
6802
6803 FLT_OFF(filter, msg->chn) += ret;
6804 flt_ctx->cur_len[CHN_IDX(msg->chn)] -= ret;
6805 flt_ctx->cur_off[CHN_IDX(msg->chn)] += ret;
6806 }
6807
6808 lua_pushinteger(L, ret);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006809 return 1;
6810}
6811
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006812/* Forwards a given amount of bytes. It return -1 if the channel's output is
6813 * closed. Otherwise, it returns the number of bytes forwarded. Unlike the
6814 * channel function used to forward data, this one can only be called inside a
6815 * filter, from http_payload callback. So it cannot yield. An exception is
6816 * returned if it is called from another callback. All other functions deal with
6817 * DATA block, this one not.
6818*/
6819__LJMP static int hlua_http_msg_forward(lua_State *L)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006820{
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006821 struct http_msg *msg;
6822 struct filter *filter;
6823 size_t offset, len;
6824 int fwd, ret = 0;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006825
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006826 MAY_LJMP(check_args(L, 2, "forward"));
6827 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6828
6829 if (msg->msg_state < HTTP_MSG_DATA)
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006830 WILL_LJMP(lua_error(L));
6831
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006832 fwd = MAY_LJMP(luaL_checkinteger(L, 2));
6833 filter = hlua_http_msg_filter(L, 1, msg, &offset, &len);
6834 if (!filter || !hlua_filter_from_payload(filter))
6835 WILL_LJMP(lua_error(L));
6836
6837 /* Nothing to do, just return */
6838 if (!fwd)
6839 goto end;
6840
6841 /* Return an error if the channel's output is closed */
6842 if (unlikely(channel_output_closed(msg->chn))) {
6843 ret = -1;
6844 goto end;
6845 }
6846
6847 ret = fwd;
6848 if (ret > len)
6849 ret = len;
6850
6851 if (ret) {
6852 struct hlua_flt_ctx *flt_ctx = filter->ctx;
6853
6854 FLT_OFF(filter, msg->chn) += ret;
6855 flt_ctx->cur_off[CHN_IDX(msg->chn)] += ret;
6856 flt_ctx->cur_len[CHN_IDX(msg->chn)] -= ret;
6857 }
6858
6859 end:
6860 lua_pushinteger(L, ret);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006861 return 1;
6862}
6863
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006864/* Set EOM flag on the HTX message.
6865 *
6866 * NOTE: Not sure it is a good idea to manipulate this flag but for now I don't
6867 * really know how to do without this feature.
6868 */
6869__LJMP static int hlua_http_msg_set_eom(lua_State *L)
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +02006870{
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006871 struct http_msg *msg;
6872 struct htx *htx;
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +02006873
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006874 MAY_LJMP(check_args(L, 1, "set_eom"));
6875 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6876 htx = htxbuf(&msg->chn->buf);
6877 htx->flags |= HTX_FL_EOM;
6878 return 0;
6879}
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02006880
Christopher Fauletdf97ac42020-02-26 16:57:19 +01006881/* Unset EOM flag on the HTX message.
6882 *
6883 * NOTE: Not sure it is a good idea to manipulate this flag but for now I don't
6884 * really know how to do without this feature.
6885 */
6886__LJMP static int hlua_http_msg_unset_eom(lua_State *L)
6887{
6888 struct http_msg *msg;
6889 struct htx *htx;
6890
6891 MAY_LJMP(check_args(L, 1, "set_eom"));
6892 msg = MAY_LJMP(hlua_checkhttpmsg(L, 1));
6893 htx = htxbuf(&msg->chn->buf);
6894 htx->flags &= ~HTX_FL_EOM;
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +02006895 return 0;
6896}
6897
Thierry FOURNIER08504f42015-03-16 14:17:08 +01006898/*
6899 *
6900 *
William Lallemand3956c4e2021-09-21 16:25:15 +02006901 * Class HTTPClient
6902 *
6903 *
6904 */
6905__LJMP static struct hlua_httpclient *hlua_checkhttpclient(lua_State *L, int ud)
6906{
6907 return MAY_LJMP(hlua_checkudata(L, ud, class_httpclient_ref));
6908}
6909
William Lallemandf77f1de2021-09-28 19:10:38 +02006910
6911/* stops the httpclient and ask it to kill itself */
6912__LJMP static int hlua_httpclient_gc(lua_State *L)
6913{
6914 struct hlua_httpclient *hlua_hc;
6915
6916 MAY_LJMP(check_args(L, 1, "__gc"));
6917
6918 hlua_hc = MAY_LJMP(hlua_checkhttpclient(L, 1));
6919
6920 httpclient_stop_and_destroy(hlua_hc->hc);
6921
6922 hlua_hc->hc = NULL;
6923
6924
6925 return 0;
6926}
6927
6928
William Lallemand3956c4e2021-09-21 16:25:15 +02006929__LJMP static int hlua_httpclient_new(lua_State *L)
6930{
6931 struct hlua_httpclient *hlua_hc;
6932 struct hlua *hlua;
6933
6934 /* Get hlua struct, or NULL if we execute from main lua state */
6935 hlua = hlua_gethlua(L);
6936 if (!hlua)
6937 return 0;
6938
6939 /* Check stack size. */
6940 if (!lua_checkstack(L, 3)) {
6941 hlua_pusherror(L, "httpclient: full stack");
6942 goto err;
6943 }
6944 /* Create the object: obj[0] = userdata. */
6945 lua_newtable(L);
6946 hlua_hc = MAY_LJMP(lua_newuserdata(L, sizeof(*hlua_hc)));
6947 lua_rawseti(L, -2, 0);
6948 memset(hlua_hc, 0, sizeof(*hlua_hc));
6949
6950 hlua_hc->hc = httpclient_new(hlua, 0, IST_NULL);
6951 if (!hlua_hc->hc)
6952 goto err;
6953
6954 /* Pop a class stream metatable and affect it to the userdata. */
6955 lua_rawgeti(L, LUA_REGISTRYINDEX, class_httpclient_ref);
6956 lua_setmetatable(L, -2);
6957
6958 return 1;
6959
6960 err:
6961 WILL_LJMP(lua_error(L));
6962 return 0;
6963}
6964
6965
6966/*
6967 * Callback of the httpclient, this callback wakes the lua task up, once the
6968 * httpclient receives some data
6969 *
6970 */
6971
6972static void hlua_httpclient_res_cb(struct httpclient *hc)
6973{
6974 struct hlua *hlua = hc->caller;
6975
6976 if (!hlua || !hlua->task)
6977 return;
6978
6979 task_wakeup(hlua->task, TASK_WOKEN_MSG);
6980}
6981
6982/*
William Lallemandd7df73a2021-09-23 17:54:00 +02006983 * Fill the lua stack with headers from the httpclient response
6984 * This works the same way as the hlua_http_get_headers() function
6985 */
6986__LJMP static int hlua_httpclient_get_headers(lua_State *L, struct hlua_httpclient *hlua_hc)
6987{
6988 struct http_hdr *hdr;
6989
6990 lua_newtable(L);
6991
William Lallemandef574b22021-10-05 16:19:31 +02006992 for (hdr = hlua_hc->hc->res.hdrs; hdr && isttest(hdr->n); hdr++) {
William Lallemandd7df73a2021-09-23 17:54:00 +02006993 struct ist n, v;
6994 int len;
6995
6996 n = hdr->n;
6997 v = hdr->v;
6998
6999 /* Check for existing entry:
7000 * assume that the table is on the top of the stack, and
7001 * push the key in the stack, the function lua_gettable()
7002 * perform the lookup.
7003 */
7004
7005 lua_pushlstring(L, n.ptr, n.len);
7006 lua_gettable(L, -2);
7007
7008 switch (lua_type(L, -1)) {
7009 case LUA_TNIL:
7010 /* Table not found, create it. */
7011 lua_pop(L, 1); /* remove the nil value. */
7012 lua_pushlstring(L, n.ptr, n.len); /* push the header name as key. */
7013 lua_newtable(L); /* create and push empty table. */
7014 lua_pushlstring(L, v.ptr, v.len); /* push header value. */
7015 lua_rawseti(L, -2, 0); /* index header value (pop it). */
7016 lua_rawset(L, -3); /* index new table with header name (pop the values). */
7017 break;
7018
7019 case LUA_TTABLE:
7020 /* Entry found: push the value in the table. */
7021 len = lua_rawlen(L, -1);
7022 lua_pushlstring(L, v.ptr, v.len); /* push header value. */
7023 lua_rawseti(L, -2, len+1); /* index header value (pop it). */
7024 lua_pop(L, 1); /* remove the table (it is stored in the main table). */
7025 break;
7026
7027 default:
7028 /* Other cases are errors. */
7029 hlua_pusherror(L, "internal error during the parsing of headers.");
7030 WILL_LJMP(lua_error(L));
7031 }
7032 }
7033 return 1;
7034}
7035
7036/*
William Lallemand3956c4e2021-09-21 16:25:15 +02007037 * For each yield, checks if there is some data in the httpclient and push them
7038 * in the lua buffer, once the httpclient finished its job, push the result on
7039 * the stack
7040 */
William Lallemand4a4e6632021-09-24 19:13:04 +02007041__LJMP static int hlua_httpclient_get_yield(lua_State *L, int status, lua_KContext ctx)
William Lallemand3956c4e2021-09-21 16:25:15 +02007042{
7043 struct buffer *tr;
7044 int res;
7045 struct hlua *hlua = hlua_gethlua(L);
7046 struct hlua_httpclient *hlua_hc = hlua_checkhttpclient(L, 1);
7047
7048
7049 tr = get_trash_chunk();
7050
7051 res = httpclient_res_xfer(hlua_hc->hc, tr);
7052 luaL_addlstring(&hlua_hc->b, b_orig(tr), res);
7053
7054 if (!httpclient_data(hlua_hc->hc) && httpclient_ended(hlua_hc->hc)) {
7055
7056 luaL_pushresult(&hlua_hc->b);
7057 lua_settable(L, -3);
7058
7059 lua_pushstring(L, "status");
7060 lua_pushinteger(L, hlua_hc->hc->res.status);
7061 lua_settable(L, -3);
7062
7063
7064 lua_pushstring(L, "reason");
7065 lua_pushlstring(L, hlua_hc->hc->res.reason.ptr, hlua_hc->hc->res.reason.len);
7066 lua_settable(L, -3);
7067
William Lallemandd7df73a2021-09-23 17:54:00 +02007068 lua_pushstring(L, "headers");
7069 hlua_httpclient_get_headers(L, hlua_hc);
7070 lua_settable(L, -3);
7071
William Lallemand3956c4e2021-09-21 16:25:15 +02007072 return 1;
7073 }
7074
7075 if (httpclient_data(hlua_hc->hc))
7076 task_wakeup(hlua->task, TASK_WOKEN_MSG);
7077
7078
William Lallemand4a4e6632021-09-24 19:13:04 +02007079 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_httpclient_get_yield, TICK_ETERNITY, 0));
William Lallemand3956c4e2021-09-21 16:25:15 +02007080 return 0;
7081}
7082
William Lallemand746e6f32021-10-06 10:57:44 +02007083
7084/*
7085 * Allocate and return an array of http_hdr ist extracted from the <headers> lua table
7086 *
7087 * Caller must free the result
7088 */
7089struct http_hdr *hlua_httpclient_table_to_hdrs(lua_State *L)
7090{
7091 struct http_hdr hdrs[global.tune.max_http_hdr];
7092 struct http_hdr *result = NULL;
7093 uint32_t hdr_num = 0;
7094
7095 lua_pushnil(L);
7096 while (lua_next(L, -2) != 0) {
7097 struct ist name, value;
7098 const char *n, *v;
7099 size_t nlen, vlen;
7100
7101 if (!lua_isstring(L, -2) || !lua_istable(L, -1)) {
7102 /* Skip element if the key is not a string or if the value is not a table */
7103 goto next_hdr;
7104 }
7105
7106 n = lua_tolstring(L, -2, &nlen);
7107 name = ist2(n, nlen);
7108
7109 /* Loop on header's values */
7110 lua_pushnil(L);
7111 while (lua_next(L, -2)) {
7112 if (!lua_isstring(L, -1)) {
7113 /* Skip the value if it is not a string */
7114 goto next_value;
7115 }
7116
7117 v = lua_tolstring(L, -1, &vlen);
7118 value = ist2(v, vlen);
7119 name = ist2(n, nlen);
7120
7121 hdrs[hdr_num].n = istdup(name);
7122 hdrs[hdr_num].v = istdup(value);
7123
7124 hdr_num++;
7125
7126 next_value:
7127 lua_pop(L, 1);
7128 }
7129
7130 next_hdr:
7131 lua_pop(L, 1);
7132
7133 }
7134
7135 if (hdr_num) {
7136 /* alloc and copy the headers in the httpclient struct */
7137 result = calloc((hdr_num + 1), sizeof(*hdrs));
7138 if (!result)
7139 goto skip_headers;
7140 memcpy(result, hdrs, sizeof(struct http_hdr) * (hdr_num + 1));
7141
7142 result[hdr_num].n = IST_NULL;
7143 result[hdr_num].v = IST_NULL;
7144 }
7145
7146skip_headers:
7147 lua_pop(L, 1);
7148
7149 return result;
7150}
7151
7152
7153
William Lallemand3956c4e2021-09-21 16:25:15 +02007154/*
William Lallemand4a4e6632021-09-24 19:13:04 +02007155 * Sends and receive an HTTP request
7156 *
7157 * httpclient.get(url, headers)
William Lallemand3956c4e2021-09-21 16:25:15 +02007158 */
7159
William Lallemand4a4e6632021-09-24 19:13:04 +02007160__LJMP static int hlua_httpclient_get(lua_State *L)
William Lallemand3956c4e2021-09-21 16:25:15 +02007161{
7162 struct hlua_httpclient *hlua_hc;
William Lallemand746e6f32021-10-06 10:57:44 +02007163 struct http_hdr *hdrs = NULL;
7164 struct http_hdr *hdrs_i = NULL;
William Lallemand3956c4e2021-09-21 16:25:15 +02007165 struct hlua *hlua;
William Lallemand746e6f32021-10-06 10:57:44 +02007166 const char *url_str = NULL;
7167 int ret;
William Lallemand3956c4e2021-09-21 16:25:15 +02007168
7169 hlua = hlua_gethlua(L);
7170
7171 if (!hlua || !hlua->task)
7172 WILL_LJMP(luaL_error(L, "The 'get' function is only allowed in "
7173 "'frontend', 'backend' or 'task'"));
7174
William Lallemand746e6f32021-10-06 10:57:44 +02007175 if (lua_gettop(L) != 2 || lua_type(L, -1) != LUA_TTABLE)
7176 WILL_LJMP(luaL_error(L, "'get' needs a table as argument"));
7177
7178 ret = lua_getfield(L, -1, "url");
7179 if (ret == LUA_TSTRING) {
7180 url_str = lua_tostring(L, -1);
7181 }
7182 lua_pop(L, 1);
William Lallemand3956c4e2021-09-21 16:25:15 +02007183
William Lallemand746e6f32021-10-06 10:57:44 +02007184 ret = lua_getfield(L, -1, "headers");
7185 if (ret == LUA_TTABLE) {
7186 hdrs = hlua_httpclient_table_to_hdrs(L);
7187 }
7188 lua_pop(L, 1);
William Lallemand79416cb2021-09-24 14:51:44 +02007189
William Lallemand746e6f32021-10-06 10:57:44 +02007190 if (!url_str) {
7191 WILL_LJMP(luaL_error(L, "'get' need a 'url' argument"));
7192 return 0;
7193 }
William Lallemand3956c4e2021-09-21 16:25:15 +02007194
7195 hlua_hc = hlua_checkhttpclient(L, 1);
7196
7197 hlua_hc->hc->req.url = istdup(ist(url_str));
7198 hlua_hc->hc->req.meth = HTTP_METH_GET;
7199
7200 /* update the httpclient callbacks */
7201 hlua_hc->hc->ops.res_stline = hlua_httpclient_res_cb;
7202 hlua_hc->hc->ops.res_headers = hlua_httpclient_res_cb;
7203 hlua_hc->hc->ops.res_payload = hlua_httpclient_res_cb;
7204 hlua_hc->hc->ops.res_end = hlua_httpclient_res_cb;
7205
7206
William Lallemand746e6f32021-10-06 10:57:44 +02007207 httpclient_req_gen(hlua_hc->hc, hlua_hc->hc->req.url, HTTP_METH_GET, hdrs);
William Lallemand3956c4e2021-09-21 16:25:15 +02007208 httpclient_start(hlua_hc->hc);
7209
William Lallemand746e6f32021-10-06 10:57:44 +02007210 /* free the temporary headers array */
7211 hdrs_i = hdrs;
7212 while (hdrs_i && isttest(hdrs_i->n)) {
7213 istfree(&hdrs_i->n);
7214 istfree(&hdrs_i->v);
7215 hdrs_i++;
7216 }
7217 ha_free(&hdrs);
7218
7219
7220
William Lallemand3956c4e2021-09-21 16:25:15 +02007221 /* we return a "res" object */
7222 lua_newtable(L);
7223
7224 luaL_buffinit(L, &hlua_hc->b);
7225 lua_pushstring(L, "body");
7226
7227 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_httpclient_get_yield, TICK_ETERNITY, 0));
7228 return 0;
7229}
7230
7231/*
7232 *
7233 *
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01007234 * Class TXN
7235 *
7236 *
7237 */
7238
7239/* Returns a struct hlua_session if the stack entry "ud" is
Willy Tarreau87b09662015-04-03 00:22:06 +02007240 * a class stream, otherwise it throws an error.
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01007241 */
7242__LJMP static struct hlua_txn *hlua_checktxn(lua_State *L, int ud)
7243{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02007244 return MAY_LJMP(hlua_checkudata(L, ud, class_txn_ref));
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01007245}
7246
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02007247__LJMP static int hlua_set_var(lua_State *L)
7248{
7249 struct hlua_txn *htxn;
7250 const char *name;
7251 size_t len;
7252 struct sample smp;
7253
Tim Duesterhus4e172c92020-05-19 13:49:42 +02007254 if (lua_gettop(L) < 3 || lua_gettop(L) > 4)
7255 WILL_LJMP(luaL_error(L, "'set_var' needs between 3 and 4 arguments"));
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02007256
7257 /* It is useles to retrieve the stream, but this function
7258 * runs only in a stream context.
7259 */
7260 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7261 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
7262
7263 /* Converts the third argument in a sample. */
Amaury Denoyellebc0af6a2020-10-29 17:21:20 +01007264 memset(&smp, 0, sizeof(smp));
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02007265 hlua_lua2smp(L, 3, &smp);
7266
7267 /* Store the sample in a variable. */
Willy Tarreau7560dd42016-03-10 16:28:58 +01007268 smp_set_owner(&smp, htxn->p, htxn->s->sess, htxn->s, htxn->dir & SMP_OPT_DIR);
Tim Duesterhus4e172c92020-05-19 13:49:42 +02007269
7270 if (lua_gettop(L) == 4 && lua_toboolean(L, 4))
7271 lua_pushboolean(L, vars_set_by_name_ifexist(name, len, &smp) != 0);
7272 else
7273 lua_pushboolean(L, vars_set_by_name(name, len, &smp) != 0);
7274
Tim Duesterhus84ebc132020-05-19 13:49:41 +02007275 return 1;
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02007276}
7277
Christopher Faulet85d79c92016-11-09 16:54:56 +01007278__LJMP static int hlua_unset_var(lua_State *L)
7279{
7280 struct hlua_txn *htxn;
7281 const char *name;
7282 size_t len;
7283 struct sample smp;
7284
7285 MAY_LJMP(check_args(L, 2, "unset_var"));
7286
7287 /* It is useles to retrieve the stream, but this function
7288 * runs only in a stream context.
7289 */
7290 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7291 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
7292
7293 /* Unset the variable. */
7294 smp_set_owner(&smp, htxn->p, htxn->s->sess, htxn->s, htxn->dir & SMP_OPT_DIR);
Tim Duesterhus84ebc132020-05-19 13:49:41 +02007295 lua_pushboolean(L, vars_unset_by_name_ifexist(name, len, &smp) != 0);
7296 return 1;
Christopher Faulet85d79c92016-11-09 16:54:56 +01007297}
7298
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02007299__LJMP static int hlua_get_var(lua_State *L)
7300{
7301 struct hlua_txn *htxn;
7302 const char *name;
7303 size_t len;
7304 struct sample smp;
7305
7306 MAY_LJMP(check_args(L, 2, "get_var"));
7307
7308 /* It is useles to retrieve the stream, but this function
7309 * runs only in a stream context.
7310 */
7311 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7312 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
7313
Willy Tarreau7560dd42016-03-10 16:28:58 +01007314 smp_set_owner(&smp, htxn->p, htxn->s->sess, htxn->s, htxn->dir & SMP_OPT_DIR);
Willy Tarreaue352b9d2021-09-03 11:52:38 +02007315 if (!vars_get_by_name(name, len, &smp, NULL)) {
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02007316 lua_pushnil(L);
7317 return 1;
7318 }
7319
7320 return hlua_smp2lua(L, &smp);
7321}
7322
Willy Tarreau59551662015-03-10 14:23:13 +01007323__LJMP static int hlua_set_priv(lua_State *L)
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01007324{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01007325 struct hlua *hlua;
7326
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01007327 MAY_LJMP(check_args(L, 2, "set_priv"));
7328
Willy Tarreau87b09662015-04-03 00:22:06 +02007329 /* It is useles to retrieve the stream, but this function
7330 * runs only in a stream context.
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01007331 */
7332 MAY_LJMP(hlua_checktxn(L, 1));
Thierry Fournier4234dbd2020-11-28 13:18:23 +01007333
7334 /* Get hlua struct, or NULL if we execute from main lua state */
Willy Tarreau80f5fae2015-02-27 16:38:20 +01007335 hlua = hlua_gethlua(L);
Thierry Fournier4234dbd2020-11-28 13:18:23 +01007336 if (!hlua)
7337 return 0;
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01007338
7339 /* Remove previous value. */
Thierry FOURNIERe068b602017-04-26 13:27:05 +02007340 luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref);
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01007341
7342 /* Get and store new value. */
7343 lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */
7344 hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */
7345
7346 return 0;
7347}
7348
Willy Tarreau59551662015-03-10 14:23:13 +01007349__LJMP static int hlua_get_priv(lua_State *L)
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01007350{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01007351 struct hlua *hlua;
7352
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01007353 MAY_LJMP(check_args(L, 1, "get_priv"));
7354
Willy Tarreau87b09662015-04-03 00:22:06 +02007355 /* It is useles to retrieve the stream, but this function
7356 * runs only in a stream context.
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01007357 */
7358 MAY_LJMP(hlua_checktxn(L, 1));
Thierry Fournier4234dbd2020-11-28 13:18:23 +01007359
7360 /* Get hlua struct, or NULL if we execute from main lua state */
Willy Tarreau80f5fae2015-02-27 16:38:20 +01007361 hlua = hlua_gethlua(L);
Thierry Fournier4234dbd2020-11-28 13:18:23 +01007362 if (!hlua) {
7363 lua_pushnil(L);
7364 return 1;
7365 }
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01007366
7367 /* Push configuration index in the stack. */
7368 lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref);
7369
7370 return 1;
7371}
7372
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01007373/* Create stack entry containing a class TXN. This function
7374 * return 0 if the stack does not contains free slots,
7375 * otherwise it returns 1.
7376 */
Thierry FOURNIERab00df62016-07-14 11:42:37 +02007377static int hlua_txn_new(lua_State *L, struct stream *s, struct proxy *p, int dir, int flags)
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01007378{
Willy Tarreaude491382015-04-06 11:04:28 +02007379 struct hlua_txn *htxn;
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01007380
7381 /* Check stack size. */
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01007382 if (!lua_checkstack(L, 3))
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01007383 return 0;
7384
7385 /* NOTE: The allocation never fails. The failure
7386 * throw an error, and the function never returns.
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08007387 * if the throw is not available, the process is aborted.
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01007388 */
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01007389 /* Create the object: obj[0] = userdata. */
7390 lua_newtable(L);
Willy Tarreaude491382015-04-06 11:04:28 +02007391 htxn = lua_newuserdata(L, sizeof(*htxn));
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01007392 lua_rawseti(L, -2, 0);
7393
Willy Tarreaude491382015-04-06 11:04:28 +02007394 htxn->s = s;
7395 htxn->p = p;
Thierry FOURNIERc4eebc82015-11-02 10:01:59 +01007396 htxn->dir = dir;
Thierry FOURNIERab00df62016-07-14 11:42:37 +02007397 htxn->flags = flags;
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01007398
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01007399 /* Create the "f" field that contains a list of fetches. */
7400 lua_pushstring(L, "f");
Thierry FOURNIERca988662015-12-20 18:43:03 +01007401 if (!hlua_fetches_new(L, htxn, HLUA_F_MAY_USE_HTTP))
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01007402 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02007403 lua_rawset(L, -3);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01007404
7405 /* Create the "sf" field that contains a list of stringsafe fetches. */
7406 lua_pushstring(L, "sf");
Thierry FOURNIERca988662015-12-20 18:43:03 +01007407 if (!hlua_fetches_new(L, htxn, HLUA_F_MAY_USE_HTTP | HLUA_F_AS_STRING))
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01007408 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02007409 lua_rawset(L, -3);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01007410
Thierry FOURNIER594afe72015-03-10 23:58:30 +01007411 /* Create the "c" field that contains a list of converters. */
7412 lua_pushstring(L, "c");
Willy Tarreaude491382015-04-06 11:04:28 +02007413 if (!hlua_converters_new(L, htxn, 0))
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01007414 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02007415 lua_rawset(L, -3);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01007416
7417 /* Create the "sc" field that contains a list of stringsafe converters. */
7418 lua_pushstring(L, "sc");
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01007419 if (!hlua_converters_new(L, htxn, HLUA_F_AS_STRING))
Thierry FOURNIER594afe72015-03-10 23:58:30 +01007420 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02007421 lua_rawset(L, -3);
Thierry FOURNIER594afe72015-03-10 23:58:30 +01007422
Thierry FOURNIER397826a2015-03-11 19:39:09 +01007423 /* Create the "req" field that contains the request channel object. */
7424 lua_pushstring(L, "req");
Willy Tarreau2a71af42015-03-10 13:51:50 +01007425 if (!hlua_channel_new(L, &s->req))
Thierry FOURNIER397826a2015-03-11 19:39:09 +01007426 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02007427 lua_rawset(L, -3);
Thierry FOURNIER397826a2015-03-11 19:39:09 +01007428
7429 /* Create the "res" field that contains the response channel object. */
7430 lua_pushstring(L, "res");
Willy Tarreau2a71af42015-03-10 13:51:50 +01007431 if (!hlua_channel_new(L, &s->res))
Thierry FOURNIER397826a2015-03-11 19:39:09 +01007432 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02007433 lua_rawset(L, -3);
Thierry FOURNIER397826a2015-03-11 19:39:09 +01007434
Thierry FOURNIER08504f42015-03-16 14:17:08 +01007435 /* Creates the HTTP object is the current proxy allows http. */
7436 lua_pushstring(L, "http");
Christopher Faulet1bb6afa2021-03-08 17:57:53 +01007437 if (IS_HTX_STRM(s)) {
Willy Tarreaude491382015-04-06 11:04:28 +02007438 if (!hlua_http_new(L, htxn))
Thierry FOURNIER08504f42015-03-16 14:17:08 +01007439 return 0;
7440 }
7441 else
7442 lua_pushnil(L);
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02007443 lua_rawset(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01007444
Christopher Faulet78c35472020-02-26 17:14:08 +01007445 if ((htxn->flags & HLUA_TXN_CTX_MASK) == HLUA_TXN_FLT_CTX) {
7446 /* HTTPMessage object are created when a lua TXN is created from
7447 * a filter context only
7448 */
7449
7450 /* Creates the HTTP-Request object is the current proxy allows http. */
7451 lua_pushstring(L, "http_req");
7452 if (p->mode == PR_MODE_HTTP) {
7453 if (!hlua_http_msg_new(L, &s->txn->req))
7454 return 0;
7455 }
7456 else
7457 lua_pushnil(L);
7458 lua_rawset(L, -3);
7459
7460 /* Creates the HTTP-Response object is the current proxy allows http. */
7461 lua_pushstring(L, "http_res");
7462 if (p->mode == PR_MODE_HTTP) {
7463 if (!hlua_http_msg_new(L, &s->txn->rsp))
7464 return 0;
7465 }
7466 else
7467 lua_pushnil(L);
7468 lua_rawset(L, -3);
7469 }
7470
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01007471 /* Pop a class sesison metatable and affect it to the userdata. */
7472 lua_rawgeti(L, LUA_REGISTRYINDEX, class_txn_ref);
7473 lua_setmetatable(L, -2);
7474
7475 return 1;
7476}
7477
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01007478__LJMP static int hlua_txn_deflog(lua_State *L)
7479{
7480 const char *msg;
7481 struct hlua_txn *htxn;
7482
7483 MAY_LJMP(check_args(L, 2, "deflog"));
7484 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7485 msg = MAY_LJMP(luaL_checkstring(L, 2));
7486
7487 hlua_sendlog(htxn->s->be, htxn->s->logs.level, msg);
7488 return 0;
7489}
7490
7491__LJMP static int hlua_txn_log(lua_State *L)
7492{
7493 int level;
7494 const char *msg;
7495 struct hlua_txn *htxn;
7496
7497 MAY_LJMP(check_args(L, 3, "log"));
7498 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7499 level = MAY_LJMP(luaL_checkinteger(L, 2));
7500 msg = MAY_LJMP(luaL_checkstring(L, 3));
7501
7502 if (level < 0 || level >= NB_LOG_LEVELS)
7503 WILL_LJMP(luaL_argerror(L, 1, "Invalid loglevel."));
7504
7505 hlua_sendlog(htxn->s->be, level, msg);
7506 return 0;
7507}
7508
7509__LJMP static int hlua_txn_log_debug(lua_State *L)
7510{
7511 const char *msg;
7512 struct hlua_txn *htxn;
7513
7514 MAY_LJMP(check_args(L, 2, "Debug"));
7515 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7516 msg = MAY_LJMP(luaL_checkstring(L, 2));
7517 hlua_sendlog(htxn->s->be, LOG_DEBUG, msg);
7518 return 0;
7519}
7520
7521__LJMP static int hlua_txn_log_info(lua_State *L)
7522{
7523 const char *msg;
7524 struct hlua_txn *htxn;
7525
7526 MAY_LJMP(check_args(L, 2, "Info"));
7527 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7528 msg = MAY_LJMP(luaL_checkstring(L, 2));
7529 hlua_sendlog(htxn->s->be, LOG_INFO, msg);
7530 return 0;
7531}
7532
7533__LJMP static int hlua_txn_log_warning(lua_State *L)
7534{
7535 const char *msg;
7536 struct hlua_txn *htxn;
7537
7538 MAY_LJMP(check_args(L, 2, "Warning"));
7539 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7540 msg = MAY_LJMP(luaL_checkstring(L, 2));
7541 hlua_sendlog(htxn->s->be, LOG_WARNING, msg);
7542 return 0;
7543}
7544
7545__LJMP static int hlua_txn_log_alert(lua_State *L)
7546{
7547 const char *msg;
7548 struct hlua_txn *htxn;
7549
7550 MAY_LJMP(check_args(L, 2, "Alert"));
7551 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7552 msg = MAY_LJMP(luaL_checkstring(L, 2));
7553 hlua_sendlog(htxn->s->be, LOG_ALERT, msg);
7554 return 0;
7555}
7556
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01007557__LJMP static int hlua_txn_set_loglevel(lua_State *L)
7558{
7559 struct hlua_txn *htxn;
7560 int ll;
7561
7562 MAY_LJMP(check_args(L, 2, "set_loglevel"));
7563 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7564 ll = MAY_LJMP(luaL_checkinteger(L, 2));
7565
7566 if (ll < 0 || ll > 7)
7567 WILL_LJMP(luaL_argerror(L, 2, "Bad log level. It must be between 0 and 7"));
7568
7569 htxn->s->logs.level = ll;
7570 return 0;
7571}
7572
7573__LJMP static int hlua_txn_set_tos(lua_State *L)
7574{
7575 struct hlua_txn *htxn;
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01007576 int tos;
7577
7578 MAY_LJMP(check_args(L, 2, "set_tos"));
7579 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7580 tos = MAY_LJMP(luaL_checkinteger(L, 2));
7581
Willy Tarreau1a18b542018-12-11 16:37:42 +01007582 conn_set_tos(objt_conn(htxn->s->sess->origin), tos);
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01007583 return 0;
7584}
7585
7586__LJMP static int hlua_txn_set_mark(lua_State *L)
7587{
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01007588 struct hlua_txn *htxn;
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01007589 int mark;
7590
7591 MAY_LJMP(check_args(L, 2, "set_mark"));
7592 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7593 mark = MAY_LJMP(luaL_checkinteger(L, 2));
7594
Lukas Tribus579e3e32019-08-11 18:03:45 +02007595 conn_set_mark(objt_conn(htxn->s->sess->origin), mark);
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01007596 return 0;
7597}
7598
Patrick Hemmer268a7072018-05-11 12:52:31 -04007599__LJMP static int hlua_txn_set_priority_class(lua_State *L)
7600{
7601 struct hlua_txn *htxn;
7602
7603 MAY_LJMP(check_args(L, 2, "set_priority_class"));
7604 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7605 htxn->s->priority_class = queue_limit_class(MAY_LJMP(luaL_checkinteger(L, 2)));
7606 return 0;
7607}
7608
7609__LJMP static int hlua_txn_set_priority_offset(lua_State *L)
7610{
7611 struct hlua_txn *htxn;
7612
7613 MAY_LJMP(check_args(L, 2, "set_priority_offset"));
7614 htxn = MAY_LJMP(hlua_checktxn(L, 1));
7615 htxn->s->priority_offset = queue_limit_offset(MAY_LJMP(luaL_checkinteger(L, 2)));
7616 return 0;
7617}
7618
Christopher Faulet700d9e82020-01-31 12:21:52 +01007619/* Forward the Reply object to the client. This function converts the reply in
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05007620 * HTX an push it to into the response channel. It is response to forward the
Christopher Faulet700d9e82020-01-31 12:21:52 +01007621 * message and terminate the transaction. It returns 1 on success and 0 on
7622 * error. The Reply must be on top of the stack.
7623 */
7624__LJMP static int hlua_txn_forward_reply(lua_State *L, struct stream *s)
7625{
7626 struct htx *htx;
7627 struct htx_sl *sl;
7628 struct h1m h1m;
7629 const char *status, *reason, *body;
7630 size_t status_len, reason_len, body_len;
7631 int ret, code, flags;
7632
7633 code = 200;
7634 status = "200";
7635 status_len = 3;
7636 ret = lua_getfield(L, -1, "status");
7637 if (ret == LUA_TNUMBER) {
7638 code = lua_tointeger(L, -1);
7639 status = lua_tolstring(L, -1, &status_len);
7640 }
7641 lua_pop(L, 1);
7642
7643 reason = http_get_reason(code);
7644 reason_len = strlen(reason);
7645 ret = lua_getfield(L, -1, "reason");
7646 if (ret == LUA_TSTRING)
7647 reason = lua_tolstring(L, -1, &reason_len);
7648 lua_pop(L, 1);
7649
7650 body = NULL;
7651 body_len = 0;
7652 ret = lua_getfield(L, -1, "body");
7653 if (ret == LUA_TSTRING)
7654 body = lua_tolstring(L, -1, &body_len);
7655 lua_pop(L, 1);
7656
7657 /* Prepare the response before inserting the headers */
7658 h1m_init_res(&h1m);
7659 htx = htx_from_buf(&s->res.buf);
7660 channel_htx_truncate(&s->res, htx);
7661 if (s->txn->req.flags & HTTP_MSGF_VER_11) {
7662 flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11);
7663 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"),
7664 ist2(status, status_len), ist2(reason, reason_len));
7665 }
7666 else {
7667 flags = HTX_SL_F_IS_RESP;
7668 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.0"),
7669 ist2(status, status_len), ist2(reason, reason_len));
7670 }
7671 if (!sl)
7672 goto fail;
7673 sl->info.res.status = code;
7674
7675 /* Push in the stack the "headers" entry. */
7676 ret = lua_getfield(L, -1, "headers");
7677 if (ret != LUA_TTABLE)
7678 goto skip_headers;
7679
7680 lua_pushnil(L);
7681 while (lua_next(L, -2) != 0) {
7682 struct ist name, value;
7683 const char *n, *v;
7684 size_t nlen, vlen;
7685
7686 if (!lua_isstring(L, -2) || !lua_istable(L, -1)) {
7687 /* Skip element if the key is not a string or if the value is not a table */
7688 goto next_hdr;
7689 }
7690
7691 n = lua_tolstring(L, -2, &nlen);
7692 name = ist2(n, nlen);
7693 if (isteqi(name, ist("content-length"))) {
7694 /* Always skip content-length header. It will be added
7695 * later with the correct len
7696 */
7697 goto next_hdr;
7698 }
7699
7700 /* Loop on header's values */
7701 lua_pushnil(L);
7702 while (lua_next(L, -2)) {
7703 if (!lua_isstring(L, -1)) {
7704 /* Skip the value if it is not a string */
7705 goto next_value;
7706 }
7707
7708 v = lua_tolstring(L, -1, &vlen);
7709 value = ist2(v, vlen);
7710
7711 if (isteqi(name, ist("transfer-encoding")))
7712 h1_parse_xfer_enc_header(&h1m, value);
7713 if (!htx_add_header(htx, ist2(n, nlen), ist2(v, vlen)))
7714 goto fail;
7715
7716 next_value:
7717 lua_pop(L, 1);
7718 }
7719
7720 next_hdr:
7721 lua_pop(L, 1);
7722 }
7723 skip_headers:
7724 lua_pop(L, 1);
7725
7726 /* Update h1m flags: CLEN is set if CHNK is not present */
7727 if (!(h1m.flags & H1_MF_CHNK)) {
7728 const char *clen = ultoa(body_len);
7729
7730 h1m.flags |= H1_MF_CLEN;
7731 if (!htx_add_header(htx, ist("content-length"), ist(clen)))
7732 goto fail;
7733 }
7734 if (h1m.flags & (H1_MF_CLEN|H1_MF_CHNK))
7735 h1m.flags |= H1_MF_XFER_LEN;
7736
7737 /* Update HTX start-line flags */
7738 if (h1m.flags & H1_MF_XFER_ENC)
7739 flags |= HTX_SL_F_XFER_ENC;
7740 if (h1m.flags & H1_MF_XFER_LEN) {
7741 flags |= HTX_SL_F_XFER_LEN;
7742 if (h1m.flags & H1_MF_CHNK)
7743 flags |= HTX_SL_F_CHNK;
7744 else if (h1m.flags & H1_MF_CLEN)
7745 flags |= HTX_SL_F_CLEN;
7746 if (h1m.body_len == 0)
7747 flags |= HTX_SL_F_BODYLESS;
7748 }
7749 sl->flags |= flags;
7750
7751
7752 if (!htx_add_endof(htx, HTX_BLK_EOH) ||
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01007753 (body_len && !htx_add_data_atonce(htx, ist2(body, body_len))))
Christopher Faulet700d9e82020-01-31 12:21:52 +01007754 goto fail;
7755
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01007756 htx->flags |= HTX_FL_EOM;
7757
Christopher Faulet700d9e82020-01-31 12:21:52 +01007758 /* Now, forward the response and terminate the transaction */
7759 s->txn->status = code;
7760 htx_to_buf(htx, &s->res.buf);
7761 if (!http_forward_proxy_resp(s, 1))
7762 goto fail;
7763
7764 return 1;
7765
7766 fail:
7767 channel_htx_truncate(&s->res, htx);
7768 return 0;
7769}
7770
7771/* Terminate a transaction if called from a lua action. For TCP streams,
7772 * processing is just aborted. Nothing is returned to the client and all
7773 * arguments are ignored. For HTTP streams, if a reply is passed as argument, it
7774 * is forwarded to the client before terminating the transaction. On success,
7775 * the function exits with ACT_RET_DONE code. If an error occurred, it exits
7776 * with ACT_RET_ERR code. If this function is not called from a lua action, it
7777 * just exits without any processing.
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01007778 */
Thierry FOURNIER4bb375c2015-08-26 08:42:21 +02007779__LJMP static int hlua_txn_done(lua_State *L)
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01007780{
Willy Tarreaub2ccb562015-04-06 11:11:15 +02007781 struct hlua_txn *htxn;
Christopher Faulet700d9e82020-01-31 12:21:52 +01007782 struct stream *s;
7783 int finst;
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01007784
Willy Tarreaub2ccb562015-04-06 11:11:15 +02007785 htxn = MAY_LJMP(hlua_checktxn(L, 1));
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01007786
Christopher Faulet700d9e82020-01-31 12:21:52 +01007787 /* If the flags NOTERM is set, we cannot terminate the session, so we
7788 * just end the execution of the current lua code. */
7789 if (htxn->flags & HLUA_TXN_NOTERM)
Thierry FOURNIERab00df62016-07-14 11:42:37 +02007790 WILL_LJMP(hlua_done(L));
Thierry FOURNIERab00df62016-07-14 11:42:37 +02007791
Christopher Faulet700d9e82020-01-31 12:21:52 +01007792 s = htxn->s;
Christopher Fauletd8f0e072020-02-25 09:45:51 +01007793 if (!IS_HTX_STRM(htxn->s)) {
Christopher Faulet700d9e82020-01-31 12:21:52 +01007794 struct channel *req = &s->req;
7795 struct channel *res = &s->res;
Willy Tarreau81389672015-03-10 12:03:52 +01007796
Christopher Faulet700d9e82020-01-31 12:21:52 +01007797 channel_auto_read(req);
7798 channel_abort(req);
7799 channel_auto_close(req);
7800 channel_erase(req);
7801
7802 res->wex = tick_add_ifset(now_ms, res->wto);
7803 channel_auto_read(res);
7804 channel_auto_close(res);
7805 channel_shutr_now(res);
7806
7807 finst = ((htxn->dir == SMP_OPT_DIR_REQ) ? SF_FINST_R : SF_FINST_D);
7808 goto done;
Christopher Fauletfe6a71b2019-07-26 16:40:24 +02007809 }
Thierry FOURNIER10ec2142015-08-24 17:23:45 +02007810
Christopher Faulet700d9e82020-01-31 12:21:52 +01007811 if (lua_gettop(L) == 1 || !lua_istable(L, 2)) {
7812 /* No reply or invalid reply */
7813 s->txn->status = 0;
7814 http_reply_and_close(s, 0, NULL);
7815 }
7816 else {
7817 /* Remove extra args to have the reply on top of the stack */
7818 if (lua_gettop(L) > 2)
7819 lua_pop(L, lua_gettop(L) - 2);
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01007820
Christopher Faulet700d9e82020-01-31 12:21:52 +01007821 if (!hlua_txn_forward_reply(L, s)) {
7822 if (!(s->flags & SF_ERR_MASK))
7823 s->flags |= SF_ERR_PRXCOND;
7824 lua_pushinteger(L, ACT_RET_ERR);
7825 WILL_LJMP(hlua_done(L));
7826 return 0; /* Never reached */
7827 }
Christopher Faulet4d0e2632019-07-16 10:52:40 +02007828 }
Thierry FOURNIER4bb375c2015-08-26 08:42:21 +02007829
Christopher Faulet700d9e82020-01-31 12:21:52 +01007830 finst = ((htxn->dir == SMP_OPT_DIR_REQ) ? SF_FINST_R : SF_FINST_H);
7831 if (htxn->dir == SMP_OPT_DIR_REQ) {
7832 /* let's log the request time */
7833 s->logs.tv_request = now;
7834 if (s->sess->fe == s->be) /* report it if the request was intercepted by the frontend */
Willy Tarreau4781b152021-04-06 13:53:36 +02007835 _HA_ATOMIC_INC(&s->sess->fe->fe_counters.intercepted_req);
Christopher Faulet700d9e82020-01-31 12:21:52 +01007836 }
Christopher Fauletfe6a71b2019-07-26 16:40:24 +02007837
Christopher Faulet700d9e82020-01-31 12:21:52 +01007838 done:
7839 if (!(s->flags & SF_ERR_MASK))
7840 s->flags |= SF_ERR_LOCAL;
7841 if (!(s->flags & SF_FINST_MASK))
7842 s->flags |= finst;
Christopher Fauletfe6a71b2019-07-26 16:40:24 +02007843
Christopher Faulete48d1dc2021-08-13 14:11:17 +02007844 if ((htxn->flags & HLUA_TXN_CTX_MASK) == HLUA_TXN_FLT_CTX)
7845 lua_pushinteger(L, -1);
7846 else
7847 lua_pushinteger(L, ACT_RET_ABRT);
Thierry FOURNIER4bb375c2015-08-26 08:42:21 +02007848 WILL_LJMP(hlua_done(L));
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01007849 return 0;
7850}
7851
Christopher Faulet700d9e82020-01-31 12:21:52 +01007852/*
7853 *
7854 *
7855 * Class REPLY
7856 *
7857 *
7858 */
7859
7860/* Pushes the TXN reply onto the top of the stack. If the stask does not have a
7861 * free slots, the function fails and returns 0;
7862 */
7863static int hlua_txn_reply_new(lua_State *L)
7864{
7865 struct hlua_txn *htxn;
7866 const char *reason, *body = NULL;
7867 int ret, status;
7868
7869 htxn = MAY_LJMP(hlua_checktxn(L, 1));
Christopher Fauletd8f0e072020-02-25 09:45:51 +01007870 if (!IS_HTX_STRM(htxn->s)) {
Christopher Faulet700d9e82020-01-31 12:21:52 +01007871 hlua_pusherror(L, "txn object is not an HTTP transaction.");
7872 WILL_LJMP(lua_error(L));
7873 }
7874
7875 /* Default value */
7876 status = 200;
7877 reason = http_get_reason(status);
7878
7879 if (lua_istable(L, 2)) {
7880 /* load status and reason from the table argument at index 2 */
7881 ret = lua_getfield(L, 2, "status");
7882 if (ret == LUA_TNIL)
7883 goto reason;
7884 else if (ret != LUA_TNUMBER) {
7885 /* invalid status: ignore the reason */
7886 goto body;
7887 }
7888 status = lua_tointeger(L, -1);
7889
7890 reason:
7891 lua_pop(L, 1); /* restore the stack: remove status */
7892 ret = lua_getfield(L, 2, "reason");
7893 if (ret == LUA_TSTRING)
7894 reason = lua_tostring(L, -1);
7895
7896 body:
7897 lua_pop(L, 1); /* restore the stack: remove invalid status or reason */
7898 ret = lua_getfield(L, 2, "body");
7899 if (ret == LUA_TSTRING)
7900 body = lua_tostring(L, -1);
7901 lua_pop(L, 1); /* restore the stack: remove body */
7902 }
7903
7904 /* Create the Reply table */
7905 lua_newtable(L);
7906
7907 /* Add status element */
7908 lua_pushstring(L, "status");
7909 lua_pushinteger(L, status);
7910 lua_settable(L, -3);
7911
7912 /* Add reason element */
7913 reason = http_get_reason(status);
7914 lua_pushstring(L, "reason");
7915 lua_pushstring(L, reason);
7916 lua_settable(L, -3);
7917
7918 /* Add body element, nil if undefined */
7919 lua_pushstring(L, "body");
7920 if (body)
7921 lua_pushstring(L, body);
7922 else
7923 lua_pushnil(L);
7924 lua_settable(L, -3);
7925
7926 /* Add headers element */
7927 lua_pushstring(L, "headers");
7928 lua_newtable(L);
7929
7930 /* stack: [ txn, <Arg:table>, <Reply:table>, "headers", <headers:table> ] */
7931 if (lua_istable(L, 2)) {
7932 /* load headers from the table argument at index 2. If it is a table, copy it. */
7933 ret = lua_getfield(L, 2, "headers");
7934 if (ret == LUA_TTABLE) {
7935 /* stack: [ ... <headers:table>, <table> ] */
7936 lua_pushnil(L);
7937 while (lua_next(L, -2) != 0) {
7938 /* stack: [ ... <headers:table>, <table>, k, v] */
7939 if (!lua_isstring(L, -1) && !lua_istable(L, -1)) {
7940 /* invalid value type, skip it */
7941 lua_pop(L, 1);
7942 continue;
7943 }
7944
7945
7946 /* Duplicate the key and swap it with the value. */
7947 lua_pushvalue(L, -2);
7948 lua_insert(L, -2);
7949 /* stack: [ ... <headers:table>, <table>, k, k, v ] */
7950
7951 lua_newtable(L);
7952 lua_insert(L, -2);
7953 /* stack: [ ... <headers:table>, <table>, k, k, <inner:table>, v ] */
7954
7955 if (lua_isstring(L, -1)) {
7956 /* push the value in the inner table */
7957 lua_rawseti(L, -2, 1);
7958 }
7959 else { /* table */
7960 lua_pushnil(L);
7961 while (lua_next(L, -2) != 0) {
7962 /* stack: [ ... <headers:table>, <table>, k, k, <inner:table>, <v:table>, k2, v2 ] */
7963 if (!lua_isstring(L, -1)) {
7964 /* invalid value type, skip it*/
7965 lua_pop(L, 1);
7966 continue;
7967 }
7968 /* push the value in the inner table */
7969 lua_rawseti(L, -4, lua_rawlen(L, -4) + 1);
7970 /* stack: [ ... <headers:table>, <table>, k, k, <inner:table>, <v:table>, k2 ] */
7971 }
7972 lua_pop(L, 1);
7973 /* stack: [ ... <headers:table>, <table>, k, k, <inner:table> ] */
7974 }
7975
7976 /* push (k,v) on the stack in the headers table:
7977 * stack: [ ... <headers:table>, <table>, k, k, v ]
7978 */
7979 lua_settable(L, -5);
7980 /* stack: [ ... <headers:table>, <table>, k ] */
7981 }
7982 }
7983 lua_pop(L, 1);
7984 }
7985 /* stack: [ txn, <Arg:table>, <Reply:table>, "headers", <headers:table> ] */
7986 lua_settable(L, -3);
7987 /* stack: [ txn, <Arg:table>, <Reply:table> ] */
7988
7989 /* Pop a class sesison metatable and affect it to the userdata. */
7990 lua_rawgeti(L, LUA_REGISTRYINDEX, class_txn_reply_ref);
7991 lua_setmetatable(L, -2);
7992 return 1;
7993}
7994
7995/* Set the reply status code, and optionally the reason. If no reason is
7996 * provided, the default one corresponding to the status code is used.
7997 */
7998__LJMP static int hlua_txn_reply_set_status(lua_State *L)
7999{
8000 int status = MAY_LJMP(luaL_checkinteger(L, 2));
8001 const char *reason = MAY_LJMP(luaL_optlstring(L, 3, NULL, NULL));
8002
8003 /* First argument (self) must be a table */
8004 luaL_checktype(L, 1, LUA_TTABLE);
8005
8006 if (status < 100 || status > 599) {
8007 lua_pushboolean(L, 0);
8008 return 1;
8009 }
8010 if (!reason)
8011 reason = http_get_reason(status);
8012
8013 lua_pushinteger(L, status);
8014 lua_setfield(L, 1, "status");
8015
8016 lua_pushstring(L, reason);
8017 lua_setfield(L, 1, "reason");
8018
8019 lua_pushboolean(L, 1);
8020 return 1;
8021}
8022
8023/* Add a header into the reply object. Each header name is associated to an
8024 * array of values in the "headers" table. If the header name is not found, a
8025 * new entry is created.
8026 */
8027__LJMP static int hlua_txn_reply_add_header(lua_State *L)
8028{
8029 const char *name = MAY_LJMP(luaL_checkstring(L, 2));
8030 const char *value = MAY_LJMP(luaL_checkstring(L, 3));
8031 int ret;
8032
8033 /* First argument (self) must be a table */
8034 luaL_checktype(L, 1, LUA_TTABLE);
8035
8036 /* Push in the stack the "headers" entry. */
8037 ret = lua_getfield(L, 1, "headers");
8038 if (ret != LUA_TTABLE) {
8039 hlua_pusherror(L, "Reply['headers'] is expected to a an array. %s found", lua_typename(L, ret));
8040 WILL_LJMP(lua_error(L));
8041 }
8042
8043 /* check if the header is already registered. If not, register it. */
8044 ret = lua_getfield(L, -1, name);
8045 if (ret == LUA_TNIL) {
8046 /* Entry not found. */
8047 lua_pop(L, 1); /* remove the nil. The "headers" table is the top of the stack. */
8048
8049 /* Insert the new header name in the array in the top of the stack.
8050 * It left the new array in the top of the stack.
8051 */
8052 lua_newtable(L);
8053 lua_pushstring(L, name);
8054 lua_pushvalue(L, -2);
8055 lua_settable(L, -4);
8056 }
8057 else if (ret != LUA_TTABLE) {
8058 hlua_pusherror(L, "Reply['headers']['%s'] is expected to be an array. %s found", name, lua_typename(L, ret));
8059 WILL_LJMP(lua_error(L));
8060 }
8061
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07008062 /* Now the top of thestack is an array of values. We push
Christopher Faulet700d9e82020-01-31 12:21:52 +01008063 * the header value as new entry.
8064 */
8065 lua_pushstring(L, value);
8066 ret = lua_rawlen(L, -2);
8067 lua_rawseti(L, -2, ret + 1);
8068
8069 lua_pushboolean(L, 1);
8070 return 1;
8071}
8072
8073/* Remove all occurrences of a given header name. */
8074__LJMP static int hlua_txn_reply_del_header(lua_State *L)
8075{
8076 const char *name = MAY_LJMP(luaL_checkstring(L, 2));
8077 int ret;
8078
8079 /* First argument (self) must be a table */
8080 luaL_checktype(L, 1, LUA_TTABLE);
8081
8082 /* Push in the stack the "headers" entry. */
8083 ret = lua_getfield(L, 1, "headers");
8084 if (ret != LUA_TTABLE) {
8085 hlua_pusherror(L, "Reply['headers'] is expected to be an array. %s found", lua_typename(L, ret));
8086 WILL_LJMP(lua_error(L));
8087 }
8088
8089 lua_pushstring(L, name);
8090 lua_pushnil(L);
8091 lua_settable(L, -3);
8092
8093 lua_pushboolean(L, 1);
8094 return 1;
8095}
8096
8097/* Set the reply's body. Overwrite any existing entry. */
8098__LJMP static int hlua_txn_reply_set_body(lua_State *L)
8099{
8100 const char *payload = MAY_LJMP(luaL_checkstring(L, 2));
8101
8102 /* First argument (self) must be a table */
8103 luaL_checktype(L, 1, LUA_TTABLE);
8104
8105 lua_pushstring(L, payload);
8106 lua_setfield(L, 1, "body");
8107
8108 lua_pushboolean(L, 1);
8109 return 1;
8110}
8111
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01008112__LJMP static int hlua_log(lua_State *L)
8113{
8114 int level;
8115 const char *msg;
8116
8117 MAY_LJMP(check_args(L, 2, "log"));
8118 level = MAY_LJMP(luaL_checkinteger(L, 1));
8119 msg = MAY_LJMP(luaL_checkstring(L, 2));
8120
8121 if (level < 0 || level >= NB_LOG_LEVELS)
8122 WILL_LJMP(luaL_argerror(L, 1, "Invalid loglevel."));
8123
8124 hlua_sendlog(NULL, level, msg);
8125 return 0;
8126}
8127
8128__LJMP static int hlua_log_debug(lua_State *L)
8129{
8130 const char *msg;
8131
8132 MAY_LJMP(check_args(L, 1, "debug"));
8133 msg = MAY_LJMP(luaL_checkstring(L, 1));
8134 hlua_sendlog(NULL, LOG_DEBUG, msg);
8135 return 0;
8136}
8137
8138__LJMP static int hlua_log_info(lua_State *L)
8139{
8140 const char *msg;
8141
8142 MAY_LJMP(check_args(L, 1, "info"));
8143 msg = MAY_LJMP(luaL_checkstring(L, 1));
8144 hlua_sendlog(NULL, LOG_INFO, msg);
8145 return 0;
8146}
8147
8148__LJMP static int hlua_log_warning(lua_State *L)
8149{
8150 const char *msg;
8151
8152 MAY_LJMP(check_args(L, 1, "warning"));
8153 msg = MAY_LJMP(luaL_checkstring(L, 1));
8154 hlua_sendlog(NULL, LOG_WARNING, msg);
8155 return 0;
8156}
8157
8158__LJMP static int hlua_log_alert(lua_State *L)
8159{
8160 const char *msg;
8161
8162 MAY_LJMP(check_args(L, 1, "alert"));
8163 msg = MAY_LJMP(luaL_checkstring(L, 1));
8164 hlua_sendlog(NULL, LOG_ALERT, msg);
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01008165 return 0;
8166}
8167
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01008168__LJMP static int hlua_sleep_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008169{
8170 int wakeup_ms = lua_tointeger(L, -1);
Willy Tarreau12c02702021-09-30 16:12:31 +02008171 if (!tick_is_expired(wakeup_ms, now_ms))
Willy Tarreau9635e032018-10-16 17:52:55 +02008172 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_sleep_yield, wakeup_ms, 0));
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008173 return 0;
8174}
8175
8176__LJMP static int hlua_sleep(lua_State *L)
8177{
8178 unsigned int delay;
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01008179 unsigned int wakeup_ms;
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008180
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01008181 MAY_LJMP(check_args(L, 1, "sleep"));
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008182
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01008183 delay = MAY_LJMP(luaL_checkinteger(L, 1)) * 1000;
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01008184 wakeup_ms = tick_add(now_ms, delay);
8185 lua_pushinteger(L, wakeup_ms);
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008186
Willy Tarreau9635e032018-10-16 17:52:55 +02008187 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_sleep_yield, wakeup_ms, 0));
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01008188 return 0;
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008189}
8190
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01008191__LJMP static int hlua_msleep(lua_State *L)
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008192{
8193 unsigned int delay;
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01008194 unsigned int wakeup_ms;
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008195
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01008196 MAY_LJMP(check_args(L, 1, "msleep"));
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008197
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01008198 delay = MAY_LJMP(luaL_checkinteger(L, 1));
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01008199 wakeup_ms = tick_add(now_ms, delay);
8200 lua_pushinteger(L, wakeup_ms);
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008201
Willy Tarreau9635e032018-10-16 17:52:55 +02008202 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_sleep_yield, wakeup_ms, 0));
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01008203 return 0;
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008204}
8205
Thierry FOURNIER13416fe2015-02-17 15:01:59 +01008206/* This functionis an LUA binding. it permits to give back
8207 * the hand at the HAProxy scheduler. It is used when the
8208 * LUA processing consumes a lot of time.
8209 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01008210__LJMP static int hlua_yield_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01008211{
8212 return 0;
8213}
8214
Thierry FOURNIER13416fe2015-02-17 15:01:59 +01008215__LJMP static int hlua_yield(lua_State *L)
8216{
Willy Tarreau9635e032018-10-16 17:52:55 +02008217 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_yield_yield, TICK_ETERNITY, HLUA_CTRLYIELD));
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01008218 return 0;
Thierry FOURNIER13416fe2015-02-17 15:01:59 +01008219}
8220
Thierry FOURNIER37196f42015-02-16 19:34:56 +01008221/* This function change the nice of the currently executed
8222 * task. It is used set low or high priority at the current
8223 * task.
8224 */
Willy Tarreau59551662015-03-10 14:23:13 +01008225__LJMP static int hlua_set_nice(lua_State *L)
Thierry FOURNIER37196f42015-02-16 19:34:56 +01008226{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01008227 struct hlua *hlua;
8228 int nice;
Thierry FOURNIER37196f42015-02-16 19:34:56 +01008229
Willy Tarreau80f5fae2015-02-27 16:38:20 +01008230 MAY_LJMP(check_args(L, 1, "set_nice"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01008231 nice = MAY_LJMP(luaL_checkinteger(L, 1));
Thierry FOURNIER37196f42015-02-16 19:34:56 +01008232
Thierry Fournier4234dbd2020-11-28 13:18:23 +01008233 /* Get hlua struct, or NULL if we execute from main lua state */
8234 hlua = hlua_gethlua(L);
8235
8236 /* If the task is not set, I'm in a start mode. */
Thierry FOURNIER37196f42015-02-16 19:34:56 +01008237 if (!hlua || !hlua->task)
8238 return 0;
8239
8240 if (nice < -1024)
8241 nice = -1024;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01008242 else if (nice > 1024)
Thierry FOURNIER37196f42015-02-16 19:34:56 +01008243 nice = 1024;
8244
8245 hlua->task->nice = nice;
8246 return 0;
8247}
8248
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08008249/* This function is used as a callback of a task. It is called by the
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008250 * HAProxy task subsystem when the task is awaked. The LUA runtime can
8251 * return an E_AGAIN signal, the emmiter of this signal must set a
8252 * signal to wake the task.
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008253 *
8254 * Task wrapper are longjmp safe because the only one Lua code
8255 * executed is the safe hlua_ctx_resume();
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008256 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01008257struct task *hlua_process_task(struct task *task, void *context, unsigned int state)
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008258{
Olivier Houchard9f6af332018-05-25 14:04:04 +02008259 struct hlua *hlua = context;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008260 enum hlua_exec status;
8261
Christopher Faulet5bc99722018-04-25 10:34:45 +02008262 if (task->thread_mask == MAX_THREADS_MASK)
8263 task_set_affinity(task, tid_bit);
8264
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008265 /* If it is the first call to the task, we must initialize the
8266 * execution timeouts.
8267 */
8268 if (!HLUA_IS_RUNNING(hlua))
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02008269 hlua->max_time = hlua_timeout_task;
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008270
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008271 /* Execute the Lua code. */
8272 status = hlua_ctx_resume(hlua, 1);
8273
8274 switch (status) {
8275 /* finished or yield */
8276 case HLUA_E_OK:
8277 hlua_ctx_destroy(hlua);
Olivier Houchard3f795f72019-04-17 22:51:06 +02008278 task_destroy(task);
Tim Duesterhuscd235c62018-04-24 13:56:01 +02008279 task = NULL;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008280 break;
8281
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01008282 case HLUA_E_AGAIN: /* co process or timeout wake me later. */
Thierry FOURNIERcb146882017-12-10 17:10:57 +01008283 notification_gc(&hlua->com);
PiBa-NLfe971b32018-05-02 22:27:14 +02008284 task->expire = hlua->wake_time;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008285 break;
8286
8287 /* finished with error. */
8288 case HLUA_E_ERRMSG:
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008289 SEND_ERR(NULL, "Lua task: %s.\n", lua_tostring(hlua->T, -1));
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008290 hlua_ctx_destroy(hlua);
Olivier Houchard3f795f72019-04-17 22:51:06 +02008291 task_destroy(task);
Emeric Brun253e53e2017-10-17 18:58:40 +02008292 task = NULL;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008293 break;
8294
8295 case HLUA_E_ERR:
8296 default:
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008297 SEND_ERR(NULL, "Lua task: unknown error.\n");
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008298 hlua_ctx_destroy(hlua);
Olivier Houchard3f795f72019-04-17 22:51:06 +02008299 task_destroy(task);
Emeric Brun253e53e2017-10-17 18:58:40 +02008300 task = NULL;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008301 break;
8302 }
Emeric Brun253e53e2017-10-17 18:58:40 +02008303 return task;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008304}
8305
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008306/* This function is an LUA binding that register LUA function to be
8307 * executed after the HAProxy configuration parsing and before the
8308 * HAProxy scheduler starts. This function expect only one LUA
8309 * argument that is a function. This function returns nothing, but
8310 * throws if an error is encountered.
8311 */
8312__LJMP static int hlua_register_init(lua_State *L)
8313{
8314 struct hlua_init_function *init;
8315 int ref;
8316
8317 MAY_LJMP(check_args(L, 1, "register_init"));
8318
8319 ref = MAY_LJMP(hlua_checkfunction(L, 1));
8320
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02008321 init = calloc(1, sizeof(*init));
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008322 if (!init)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01008323 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008324
8325 init->function_ref = ref;
Willy Tarreau2b718102021-04-21 07:32:39 +02008326 LIST_APPEND(&hlua_init_functions[hlua_state_id], &init->l);
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008327 return 0;
8328}
8329
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008330/* This functio is an LUA binding. It permits to register a task
8331 * executed in parallel of the main HAroxy activity. The task is
8332 * created and it is set in the HAProxy scheduler. It can be called
8333 * from the "init" section, "post init" or during the runtime.
8334 *
8335 * Lua prototype:
8336 *
8337 * <none> core.register_task(<function>)
8338 */
8339static int hlua_register_task(lua_State *L)
8340{
Christopher Faulet5294ec02021-04-12 12:24:47 +02008341 struct hlua *hlua = NULL;
8342 struct task *task = NULL;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008343 int ref;
Thierry Fournier021d9862020-11-28 23:42:03 +01008344 int state_id;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008345
8346 MAY_LJMP(check_args(L, 1, "register_task"));
8347
8348 ref = MAY_LJMP(hlua_checkfunction(L, 1));
8349
Thierry Fournier75fc0292020-11-28 13:18:56 +01008350 /* Get the reference state. If the reference is NULL, L is the master
8351 * state, otherwise hlua->T is.
8352 */
8353 hlua = hlua_gethlua(L);
8354 if (hlua)
Thierry Fournier021d9862020-11-28 23:42:03 +01008355 /* we are in runtime processing */
8356 state_id = hlua->state_id;
Thierry Fournier75fc0292020-11-28 13:18:56 +01008357 else
Thierry Fournier021d9862020-11-28 23:42:03 +01008358 /* we are in initialization mode */
Thierry Fournierc7492592020-11-28 23:57:24 +01008359 state_id = hlua_state_id;
Thierry Fournier75fc0292020-11-28 13:18:56 +01008360
Willy Tarreaubafbe012017-11-24 17:34:44 +01008361 hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008362 if (!hlua)
Christopher Faulet5294ec02021-04-12 12:24:47 +02008363 goto alloc_error;
Christopher Faulet1e8433f2021-03-24 15:03:01 +01008364 HLUA_INIT(hlua);
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008365
Thierry Fournier59f11be2020-11-29 00:37:41 +01008366 /* We are in the common lua state, execute the task anywhere,
8367 * otherwise, inherit the current thread identifier
8368 */
8369 if (state_id == 0)
Willy Tarreaubeeabf52021-10-01 18:23:30 +02008370 task = task_new_anywhere();
Thierry Fournier59f11be2020-11-29 00:37:41 +01008371 else
Willy Tarreaubeeabf52021-10-01 18:23:30 +02008372 task = task_new_here();
Willy Tarreaue09101e2018-10-16 17:37:12 +02008373 if (!task)
Christopher Faulet5294ec02021-04-12 12:24:47 +02008374 goto alloc_error;
Willy Tarreaue09101e2018-10-16 17:37:12 +02008375
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008376 task->context = hlua;
8377 task->process = hlua_process_task;
8378
Thierry Fournier021d9862020-11-28 23:42:03 +01008379 if (!hlua_ctx_init(hlua, state_id, task, 1))
Christopher Faulet5294ec02021-04-12 12:24:47 +02008380 goto alloc_error;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008381
8382 /* Restore the function in the stack. */
8383 lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, ref);
8384 hlua->nargs = 0;
8385
8386 /* Schedule task. */
Willy Tarreaue3957f82021-09-30 16:17:37 +02008387 task_wakeup(task, TASK_WOKEN_INIT);
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008388
8389 return 0;
Christopher Faulet5294ec02021-04-12 12:24:47 +02008390
8391 alloc_error:
8392 task_destroy(task);
8393 hlua_ctx_destroy(hlua);
8394 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
8395 return 0; /* Never reached */
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008396}
8397
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008398/* Wrapper called by HAProxy to execute an LUA converter. This wrapper
8399 * doesn't allow "yield" functions because the HAProxy engine cannot
8400 * resume converters.
8401 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02008402static int hlua_sample_conv_wrapper(const struct arg *arg_p, struct sample *smp, void *private)
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008403{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02008404 struct hlua_function *fcn = private;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02008405 struct stream *stream = smp->strm;
Thierry Fournierfd107a22016-02-19 19:57:23 +01008406 const char *error;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008407
Willy Tarreaube508f12016-03-10 11:47:01 +01008408 if (!stream)
8409 return 0;
8410
Willy Tarreau87b09662015-04-03 00:22:06 +02008411 /* In the execution wrappers linked with a stream, the
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01008412 * Lua context can be not initialized. This behavior
8413 * permits to save performances because a systematic
8414 * Lua initialization cause 5% performances loss.
8415 */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008416 if (!stream->hlua) {
Christopher Faulet1e8433f2021-03-24 15:03:01 +01008417 struct hlua *hlua;
8418
8419 hlua = pool_alloc(pool_head_hlua);
8420 if (!hlua) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008421 SEND_ERR(stream->be, "Lua converter '%s': can't initialize Lua context.\n", fcn->name);
8422 return 0;
8423 }
Christopher Faulet1e8433f2021-03-24 15:03:01 +01008424 HLUA_INIT(hlua);
8425 stream->hlua = hlua;
Thierry Fournierc7492592020-11-28 23:57:24 +01008426 if (!hlua_ctx_init(stream->hlua, fcn_ref_to_stack_id(fcn), stream->task, 0)) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008427 SEND_ERR(stream->be, "Lua converter '%s': can't initialize Lua context.\n", fcn->name);
8428 return 0;
8429 }
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01008430 }
8431
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008432 /* If it is the first run, initialize the data for the call. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008433 if (!HLUA_IS_RUNNING(stream->hlua)) {
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008434
8435 /* The following Lua calls can fail. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008436 if (!SET_SAFE_LJMP(stream->hlua)) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008437 if (lua_type(stream->hlua->T, -1) == LUA_TSTRING)
8438 error = lua_tostring(stream->hlua->T, -1);
Thierry Fournierfd107a22016-02-19 19:57:23 +01008439 else
8440 error = "critical error";
8441 SEND_ERR(stream->be, "Lua converter '%s': %s.\n", fcn->name, error);
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008442 return 0;
8443 }
8444
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008445 /* Check stack available size. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008446 if (!lua_checkstack(stream->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008447 SEND_ERR(stream->be, "Lua converter '%s': full stack.\n", fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008448 RESET_SAFE_LJMP(stream->hlua);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008449 return 0;
8450 }
8451
8452 /* Restore the function in the stack. */
Thierry Fournierc7492592020-11-28 23:57:24 +01008453 lua_rawgeti(stream->hlua->T, LUA_REGISTRYINDEX, fcn->function_ref[stream->hlua->state_id]);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008454
8455 /* convert input sample and pust-it in the stack. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008456 if (!lua_checkstack(stream->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008457 SEND_ERR(stream->be, "Lua converter '%s': full stack.\n", fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008458 RESET_SAFE_LJMP(stream->hlua);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008459 return 0;
8460 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008461 hlua_smp2lua(stream->hlua->T, smp);
8462 stream->hlua->nargs = 1;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008463
8464 /* push keywords in the stack. */
8465 if (arg_p) {
8466 for (; arg_p->type != ARGT_STOP; arg_p++) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008467 if (!lua_checkstack(stream->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008468 SEND_ERR(stream->be, "Lua converter '%s': full stack.\n", fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008469 RESET_SAFE_LJMP(stream->hlua);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008470 return 0;
8471 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008472 hlua_arg2lua(stream->hlua->T, arg_p);
8473 stream->hlua->nargs++;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008474 }
8475 }
8476
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008477 /* We must initialize the execution timeouts. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008478 stream->hlua->max_time = hlua_timeout_session;
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008479
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008480 /* At this point the execution is safe. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008481 RESET_SAFE_LJMP(stream->hlua);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008482 }
8483
8484 /* Execute the function. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008485 switch (hlua_ctx_resume(stream->hlua, 0)) {
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008486 /* finished. */
8487 case HLUA_E_OK:
Thierry FOURNIERfd80df12017-05-12 16:32:20 +02008488 /* If the stack is empty, the function fails. */
8489 if (lua_gettop(stream->hlua->T) <= 0)
8490 return 0;
8491
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008492 /* Convert the returned value in sample. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008493 hlua_lua2smp(stream->hlua->T, -1, smp);
8494 lua_pop(stream->hlua->T, 1);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008495 return 1;
8496
8497 /* yield. */
8498 case HLUA_E_AGAIN:
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008499 SEND_ERR(stream->be, "Lua converter '%s': cannot use yielded functions.\n", fcn->name);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008500 return 0;
8501
8502 /* finished with error. */
8503 case HLUA_E_ERRMSG:
8504 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008505 SEND_ERR(stream->be, "Lua converter '%s': %s.\n",
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008506 fcn->name, lua_tostring(stream->hlua->T, -1));
8507 lua_pop(stream->hlua->T, 1);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008508 return 0;
8509
Thierry Fournierd5b073c2018-05-21 19:42:47 +02008510 case HLUA_E_ETMOUT:
8511 SEND_ERR(stream->be, "Lua converter '%s': execution timeout.\n", fcn->name);
8512 return 0;
8513
8514 case HLUA_E_NOMEM:
8515 SEND_ERR(stream->be, "Lua converter '%s': out of memory error.\n", fcn->name);
8516 return 0;
8517
8518 case HLUA_E_YIELD:
8519 SEND_ERR(stream->be, "Lua converter '%s': yield functions like core.tcp() or core.sleep() are not allowed.\n", fcn->name);
8520 return 0;
8521
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008522 case HLUA_E_ERR:
8523 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008524 SEND_ERR(stream->be, "Lua converter '%s' returns an unknown error.\n", fcn->name);
Tim Duesterhus588b3142020-05-29 14:35:51 +02008525 /* fall through */
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008526
8527 default:
8528 return 0;
8529 }
8530}
8531
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008532/* Wrapper called by HAProxy to execute a sample-fetch. this wrapper
8533 * doesn't allow "yield" functions because the HAProxy engine cannot
Willy Tarreaube508f12016-03-10 11:47:01 +01008534 * resume sample-fetches. This function will be called by the sample
8535 * fetch engine to call lua-based fetch operations.
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008536 */
Thierry FOURNIER0786d052015-05-11 15:42:45 +02008537static int hlua_sample_fetch_wrapper(const struct arg *arg_p, struct sample *smp,
8538 const char *kw, void *private)
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008539{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02008540 struct hlua_function *fcn = private;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02008541 struct stream *stream = smp->strm;
Thierry Fournierfd107a22016-02-19 19:57:23 +01008542 const char *error;
Christopher Faulet8c9e6bb2021-08-06 16:29:41 +02008543 unsigned int hflags = HLUA_TXN_NOTERM | HLUA_TXN_SMP_CTX;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008544
Willy Tarreaube508f12016-03-10 11:47:01 +01008545 if (!stream)
8546 return 0;
Christopher Fauletafd8f102018-11-08 11:34:21 +01008547
Willy Tarreau87b09662015-04-03 00:22:06 +02008548 /* In the execution wrappers linked with a stream, the
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01008549 * Lua context can be not initialized. This behavior
8550 * permits to save performances because a systematic
8551 * Lua initialization cause 5% performances loss.
8552 */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008553 if (!stream->hlua) {
Christopher Faulet1e8433f2021-03-24 15:03:01 +01008554 struct hlua *hlua;
8555
8556 hlua = pool_alloc(pool_head_hlua);
8557 if (!hlua) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008558 SEND_ERR(stream->be, "Lua sample-fetch '%s': can't initialize Lua context.\n", fcn->name);
8559 return 0;
8560 }
Christopher Faulet1e8433f2021-03-24 15:03:01 +01008561 hlua->T = NULL;
8562 stream->hlua = hlua;
Thierry Fournierc7492592020-11-28 23:57:24 +01008563 if (!hlua_ctx_init(stream->hlua, fcn_ref_to_stack_id(fcn), stream->task, 0)) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008564 SEND_ERR(stream->be, "Lua sample-fetch '%s': can't initialize Lua context.\n", fcn->name);
8565 return 0;
8566 }
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01008567 }
8568
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008569 /* If it is the first run, initialize the data for the call. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008570 if (!HLUA_IS_RUNNING(stream->hlua)) {
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008571
8572 /* The following Lua calls can fail. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008573 if (!SET_SAFE_LJMP(stream->hlua)) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008574 if (lua_type(stream->hlua->T, -1) == LUA_TSTRING)
8575 error = lua_tostring(stream->hlua->T, -1);
Thierry Fournierfd107a22016-02-19 19:57:23 +01008576 else
8577 error = "critical error";
8578 SEND_ERR(smp->px, "Lua sample-fetch '%s': %s.\n", fcn->name, error);
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008579 return 0;
8580 }
8581
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008582 /* Check stack available size. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008583 if (!lua_checkstack(stream->hlua->T, 2)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008584 SEND_ERR(smp->px, "Lua sample-fetch '%s': full stack.\n", fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008585 RESET_SAFE_LJMP(stream->hlua);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008586 return 0;
8587 }
8588
8589 /* Restore the function in the stack. */
Thierry Fournierc7492592020-11-28 23:57:24 +01008590 lua_rawgeti(stream->hlua->T, LUA_REGISTRYINDEX, fcn->function_ref[stream->hlua->state_id]);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008591
8592 /* push arguments in the stack. */
Christopher Fauletbfab2dd2019-07-26 15:09:53 +02008593 if (!hlua_txn_new(stream->hlua->T, stream, smp->px, smp->opt & SMP_OPT_DIR, hflags)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008594 SEND_ERR(smp->px, "Lua sample-fetch '%s': full stack.\n", fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008595 RESET_SAFE_LJMP(stream->hlua);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008596 return 0;
8597 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008598 stream->hlua->nargs = 1;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008599
8600 /* push keywords in the stack. */
8601 for (; arg_p && arg_p->type != ARGT_STOP; arg_p++) {
8602 /* Check stack available size. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008603 if (!lua_checkstack(stream->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008604 SEND_ERR(smp->px, "Lua sample-fetch '%s': full stack.\n", fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008605 RESET_SAFE_LJMP(stream->hlua);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008606 return 0;
8607 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008608 hlua_arg2lua(stream->hlua->T, arg_p);
8609 stream->hlua->nargs++;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008610 }
8611
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008612 /* We must initialize the execution timeouts. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008613 stream->hlua->max_time = hlua_timeout_session;
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008614
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008615 /* At this point the execution is safe. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008616 RESET_SAFE_LJMP(stream->hlua);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008617 }
8618
8619 /* Execute the function. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008620 switch (hlua_ctx_resume(stream->hlua, 0)) {
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008621 /* finished. */
8622 case HLUA_E_OK:
Thierry FOURNIERfd80df12017-05-12 16:32:20 +02008623 /* If the stack is empty, the function fails. */
8624 if (lua_gettop(stream->hlua->T) <= 0)
8625 return 0;
8626
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008627 /* Convert the returned value in sample. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008628 hlua_lua2smp(stream->hlua->T, -1, smp);
8629 lua_pop(stream->hlua->T, 1);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008630
8631 /* Set the end of execution flag. */
8632 smp->flags &= ~SMP_F_MAY_CHANGE;
8633 return 1;
8634
8635 /* yield. */
8636 case HLUA_E_AGAIN:
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008637 SEND_ERR(smp->px, "Lua sample-fetch '%s': cannot use yielded functions.\n", fcn->name);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008638 return 0;
8639
8640 /* finished with error. */
8641 case HLUA_E_ERRMSG:
8642 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008643 SEND_ERR(smp->px, "Lua sample-fetch '%s': %s.\n",
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008644 fcn->name, lua_tostring(stream->hlua->T, -1));
8645 lua_pop(stream->hlua->T, 1);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008646 return 0;
8647
Thierry Fournierd5b073c2018-05-21 19:42:47 +02008648 case HLUA_E_ETMOUT:
Thierry Fournierd5b073c2018-05-21 19:42:47 +02008649 SEND_ERR(smp->px, "Lua sample-fetch '%s': execution timeout.\n", fcn->name);
8650 return 0;
8651
8652 case HLUA_E_NOMEM:
Thierry Fournierd5b073c2018-05-21 19:42:47 +02008653 SEND_ERR(smp->px, "Lua sample-fetch '%s': out of memory error.\n", fcn->name);
8654 return 0;
8655
8656 case HLUA_E_YIELD:
Thierry Fournierd5b073c2018-05-21 19:42:47 +02008657 SEND_ERR(smp->px, "Lua sample-fetch '%s': yield not allowed.\n", fcn->name);
8658 return 0;
8659
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008660 case HLUA_E_ERR:
8661 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008662 SEND_ERR(smp->px, "Lua sample-fetch '%s' returns an unknown error.\n", fcn->name);
Tim Duesterhus588b3142020-05-29 14:35:51 +02008663 /* fall through */
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008664
8665 default:
8666 return 0;
8667 }
8668}
8669
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008670/* This function is an LUA binding used for registering
8671 * "sample-conv" functions. It expects a converter name used
8672 * in the haproxy configuration file, and an LUA function.
8673 */
8674__LJMP static int hlua_register_converters(lua_State *L)
8675{
8676 struct sample_conv_kw_list *sck;
8677 const char *name;
8678 int ref;
8679 int len;
Christopher Fauletaa224302021-04-12 14:08:21 +02008680 struct hlua_function *fcn = NULL;
Thierry Fournierf67442e2020-11-28 20:41:07 +01008681 struct sample_conv *sc;
8682 struct buffer *trash;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008683
8684 MAY_LJMP(check_args(L, 2, "register_converters"));
8685
8686 /* First argument : converter name. */
8687 name = MAY_LJMP(luaL_checkstring(L, 1));
8688
8689 /* Second argument : lua function. */
8690 ref = MAY_LJMP(hlua_checkfunction(L, 2));
8691
Thierry Fournierf67442e2020-11-28 20:41:07 +01008692 /* Check if the converter is already registered */
8693 trash = get_trash_chunk();
8694 chunk_printf(trash, "lua.%s", name);
8695 sc = find_sample_conv(trash->area, trash->data);
8696 if (sc != NULL) {
Thierry Fournier59f11be2020-11-29 00:37:41 +01008697 fcn = sc->private;
8698 if (fcn->function_ref[hlua_state_id] != -1) {
8699 ha_warning("Trying to register converter 'lua.%s' more than once. "
8700 "This will become a hard error in version 2.5.\n", name);
8701 }
8702 fcn->function_ref[hlua_state_id] = ref;
8703 return 0;
Thierry Fournierf67442e2020-11-28 20:41:07 +01008704 }
8705
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008706 /* Allocate and fill the sample fetch keyword struct. */
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02008707 sck = calloc(1, sizeof(*sck) + sizeof(struct sample_conv) * 2);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008708 if (!sck)
Christopher Fauletaa224302021-04-12 14:08:21 +02008709 goto alloc_error;
Thierry Fournier62a22aa2020-11-28 21:06:35 +01008710 fcn = new_hlua_function();
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008711 if (!fcn)
Christopher Fauletaa224302021-04-12 14:08:21 +02008712 goto alloc_error;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008713
8714 /* Fill fcn. */
8715 fcn->name = strdup(name);
8716 if (!fcn->name)
Christopher Fauletaa224302021-04-12 14:08:21 +02008717 goto alloc_error;
Thierry Fournierc7492592020-11-28 23:57:24 +01008718 fcn->function_ref[hlua_state_id] = ref;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008719
8720 /* List head */
8721 sck->list.n = sck->list.p = NULL;
8722
8723 /* converter keyword. */
8724 len = strlen("lua.") + strlen(name) + 1;
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02008725 sck->kw[0].kw = calloc(1, len);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008726 if (!sck->kw[0].kw)
Christopher Fauletaa224302021-04-12 14:08:21 +02008727 goto alloc_error;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008728
8729 snprintf((char *)sck->kw[0].kw, len, "lua.%s", name);
8730 sck->kw[0].process = hlua_sample_conv_wrapper;
David Carlier0c437f42016-04-27 16:21:56 +01008731 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 +01008732 sck->kw[0].val_args = NULL;
8733 sck->kw[0].in_type = SMP_T_STR;
8734 sck->kw[0].out_type = SMP_T_STR;
8735 sck->kw[0].private = fcn;
8736
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008737 /* Register this new converter */
8738 sample_register_convs(sck);
8739
8740 return 0;
Christopher Fauletaa224302021-04-12 14:08:21 +02008741
8742 alloc_error:
8743 release_hlua_function(fcn);
8744 ha_free(&sck);
8745 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
8746 return 0; /* Never reached */
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008747}
8748
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08008749/* This function is an LUA binding used for registering
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008750 * "sample-fetch" functions. It expects a converter name used
8751 * in the haproxy configuration file, and an LUA function.
8752 */
8753__LJMP static int hlua_register_fetches(lua_State *L)
8754{
8755 const char *name;
8756 int ref;
8757 int len;
8758 struct sample_fetch_kw_list *sfk;
Christopher Faulet2567f182021-04-12 14:11:50 +02008759 struct hlua_function *fcn = NULL;
Thierry Fournierf67442e2020-11-28 20:41:07 +01008760 struct sample_fetch *sf;
8761 struct buffer *trash;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008762
8763 MAY_LJMP(check_args(L, 2, "register_fetches"));
8764
8765 /* First argument : sample-fetch name. */
8766 name = MAY_LJMP(luaL_checkstring(L, 1));
8767
8768 /* Second argument : lua function. */
8769 ref = MAY_LJMP(hlua_checkfunction(L, 2));
8770
Thierry Fournierf67442e2020-11-28 20:41:07 +01008771 /* Check if the sample-fetch is already registered */
8772 trash = get_trash_chunk();
8773 chunk_printf(trash, "lua.%s", name);
8774 sf = find_sample_fetch(trash->area, trash->data);
8775 if (sf != NULL) {
Thierry Fournier59f11be2020-11-29 00:37:41 +01008776 fcn = sf->private;
8777 if (fcn->function_ref[hlua_state_id] != -1) {
8778 ha_warning("Trying to register sample-fetch 'lua.%s' more than once. "
8779 "This will become a hard error in version 2.5.\n", name);
8780 }
8781 fcn->function_ref[hlua_state_id] = ref;
8782 return 0;
Thierry Fournierf67442e2020-11-28 20:41:07 +01008783 }
8784
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008785 /* Allocate and fill the sample fetch keyword struct. */
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02008786 sfk = calloc(1, sizeof(*sfk) + sizeof(struct sample_fetch) * 2);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008787 if (!sfk)
Christopher Faulet2567f182021-04-12 14:11:50 +02008788 goto alloc_error;
Thierry Fournier62a22aa2020-11-28 21:06:35 +01008789 fcn = new_hlua_function();
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008790 if (!fcn)
Christopher Faulet2567f182021-04-12 14:11:50 +02008791 goto alloc_error;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008792
8793 /* Fill fcn. */
8794 fcn->name = strdup(name);
8795 if (!fcn->name)
Christopher Faulet2567f182021-04-12 14:11:50 +02008796 goto alloc_error;
Thierry Fournierc7492592020-11-28 23:57:24 +01008797 fcn->function_ref[hlua_state_id] = ref;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008798
8799 /* List head */
8800 sfk->list.n = sfk->list.p = NULL;
8801
8802 /* sample-fetch keyword. */
8803 len = strlen("lua.") + strlen(name) + 1;
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02008804 sfk->kw[0].kw = calloc(1, len);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008805 if (!sfk->kw[0].kw)
Christopher Faulet2567f182021-04-12 14:11:50 +02008806 goto alloc_error;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008807
8808 snprintf((char *)sfk->kw[0].kw, len, "lua.%s", name);
8809 sfk->kw[0].process = hlua_sample_fetch_wrapper;
David Carlier0c437f42016-04-27 16:21:56 +01008810 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 +01008811 sfk->kw[0].val_args = NULL;
8812 sfk->kw[0].out_type = SMP_T_STR;
8813 sfk->kw[0].use = SMP_USE_HTTP_ANY;
8814 sfk->kw[0].val = 0;
8815 sfk->kw[0].private = fcn;
8816
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008817 /* Register this new fetch. */
8818 sample_register_fetches(sfk);
8819
8820 return 0;
Christopher Faulet2567f182021-04-12 14:11:50 +02008821
8822 alloc_error:
8823 release_hlua_function(fcn);
8824 ha_free(&sfk);
8825 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
8826 return 0; /* Never reached */
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008827}
8828
Christopher Faulet501465d2020-02-26 14:54:16 +01008829/* This function is a lua binding to set the wake_time.
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01008830 */
Christopher Faulet501465d2020-02-26 14:54:16 +01008831__LJMP static int hlua_set_wake_time(lua_State *L)
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01008832{
Thierry Fournier4234dbd2020-11-28 13:18:23 +01008833 struct hlua *hlua;
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01008834 unsigned int delay;
8835 unsigned int wakeup_ms;
8836
Thierry Fournier4234dbd2020-11-28 13:18:23 +01008837 /* Get hlua struct, or NULL if we execute from main lua state */
8838 hlua = hlua_gethlua(L);
8839 if (!hlua) {
8840 return 0;
8841 }
8842
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01008843 MAY_LJMP(check_args(L, 1, "wake_time"));
8844
8845 delay = MAY_LJMP(luaL_checkinteger(L, 1));
8846 wakeup_ms = tick_add(now_ms, delay);
8847 hlua->wake_time = wakeup_ms;
8848 return 0;
8849}
8850
Christopher Faulet7716cdf2020-01-29 11:53:30 +01008851/* This function is a wrapper to execute each LUA function declared as an action
8852 * wrapper during the initialisation period. This function may return any
8853 * ACT_RET_* value. On error ACT_RET_CONT is returned and the action is
8854 * ignored. If the lua action yields, ACT_RET_YIELD is returned. On success, the
8855 * return value is the first element on the stack.
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01008856 */
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02008857static enum act_return hlua_action(struct act_rule *rule, struct proxy *px,
Willy Tarreau658b85b2015-09-27 10:00:49 +02008858 struct session *sess, struct stream *s, int flags)
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01008859{
8860 char **arg;
Christopher Faulet8c9e6bb2021-08-06 16:29:41 +02008861 unsigned int hflags = HLUA_TXN_ACT_CTX;
Christopher Faulet7716cdf2020-01-29 11:53:30 +01008862 int dir, act_ret = ACT_RET_CONT;
Thierry Fournierfd107a22016-02-19 19:57:23 +01008863 const char *error;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02008864
8865 switch (rule->from) {
Christopher Fauletd8f0e072020-02-25 09:45:51 +01008866 case ACT_F_TCP_REQ_CNT: dir = SMP_OPT_DIR_REQ; break;
8867 case ACT_F_TCP_RES_CNT: dir = SMP_OPT_DIR_RES; break;
8868 case ACT_F_HTTP_REQ: dir = SMP_OPT_DIR_REQ; break;
8869 case ACT_F_HTTP_RES: dir = SMP_OPT_DIR_RES; break;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02008870 default:
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008871 SEND_ERR(px, "Lua: internal error while execute action.\n");
Christopher Faulet7716cdf2020-01-29 11:53:30 +01008872 goto end;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02008873 }
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01008874
Willy Tarreau87b09662015-04-03 00:22:06 +02008875 /* In the execution wrappers linked with a stream, the
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01008876 * Lua context can be not initialized. This behavior
8877 * permits to save performances because a systematic
8878 * Lua initialization cause 5% performances loss.
8879 */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008880 if (!s->hlua) {
Christopher Faulet1e8433f2021-03-24 15:03:01 +01008881 struct hlua *hlua;
8882
8883 hlua = pool_alloc(pool_head_hlua);
8884 if (!hlua) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008885 SEND_ERR(px, "Lua action '%s': can't initialize Lua context.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01008886 rule->arg.hlua_rule->fcn->name);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01008887 goto end;
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008888 }
Christopher Faulet1e8433f2021-03-24 15:03:01 +01008889 HLUA_INIT(hlua);
8890 s->hlua = hlua;
Thierry Fournierc7492592020-11-28 23:57:24 +01008891 if (!hlua_ctx_init(s->hlua, fcn_ref_to_stack_id(rule->arg.hlua_rule->fcn), s->task, 0)) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008892 SEND_ERR(px, "Lua action '%s': can't initialize Lua context.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01008893 rule->arg.hlua_rule->fcn->name);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01008894 goto end;
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008895 }
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01008896 }
8897
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01008898 /* If it is the first run, initialize the data for the call. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008899 if (!HLUA_IS_RUNNING(s->hlua)) {
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008900
8901 /* The following Lua calls can fail. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008902 if (!SET_SAFE_LJMP(s->hlua)) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008903 if (lua_type(s->hlua->T, -1) == LUA_TSTRING)
8904 error = lua_tostring(s->hlua->T, -1);
Thierry Fournierfd107a22016-02-19 19:57:23 +01008905 else
8906 error = "critical error";
8907 SEND_ERR(px, "Lua function '%s': %s.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01008908 rule->arg.hlua_rule->fcn->name, error);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01008909 goto end;
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008910 }
8911
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01008912 /* Check stack available size. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008913 if (!lua_checkstack(s->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008914 SEND_ERR(px, "Lua function '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01008915 rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008916 RESET_SAFE_LJMP(s->hlua);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01008917 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01008918 }
8919
8920 /* Restore the function in the stack. */
Thierry Fournierc7492592020-11-28 23:57:24 +01008921 lua_rawgeti(s->hlua->T, LUA_REGISTRYINDEX, rule->arg.hlua_rule->fcn->function_ref[s->hlua->state_id]);
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01008922
Willy Tarreau87b09662015-04-03 00:22:06 +02008923 /* Create and and push object stream in the stack. */
Christopher Fauletbfab2dd2019-07-26 15:09:53 +02008924 if (!hlua_txn_new(s->hlua->T, s, px, dir, hflags)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008925 SEND_ERR(px, "Lua function '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01008926 rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008927 RESET_SAFE_LJMP(s->hlua);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01008928 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01008929 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008930 s->hlua->nargs = 1;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01008931
8932 /* push keywords in the stack. */
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02008933 for (arg = rule->arg.hlua_rule->args; arg && *arg; arg++) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008934 if (!lua_checkstack(s->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008935 SEND_ERR(px, "Lua function '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01008936 rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008937 RESET_SAFE_LJMP(s->hlua);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01008938 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01008939 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008940 lua_pushstring(s->hlua->T, *arg);
8941 s->hlua->nargs++;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01008942 }
8943
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008944 /* Now the execution is safe. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01008945 RESET_SAFE_LJMP(s->hlua);
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008946
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008947 /* We must initialize the execution timeouts. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008948 s->hlua->max_time = hlua_timeout_session;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01008949 }
8950
8951 /* Execute the function. */
Christopher Faulet105ba6c2019-12-18 14:41:51 +01008952 switch (hlua_ctx_resume(s->hlua, !(flags & ACT_OPT_FINAL))) {
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01008953 /* finished. */
8954 case HLUA_E_OK:
Christopher Faulet7716cdf2020-01-29 11:53:30 +01008955 /* Catch the return value */
8956 if (lua_gettop(s->hlua->T) > 0)
8957 act_ret = lua_tointeger(s->hlua->T, -1);
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01008958
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01008959 /* Set timeout in the required channel. */
Christopher Faulet498c4832020-07-28 11:59:58 +02008960 if (act_ret == ACT_RET_YIELD) {
8961 if (flags & ACT_OPT_FINAL)
8962 goto err_yield;
8963
Christopher Faulet8f587ea2020-07-28 12:01:55 +02008964 if (dir == SMP_OPT_DIR_REQ)
8965 s->req.analyse_exp = tick_first((tick_is_expired(s->req.analyse_exp, now_ms) ? 0 : s->req.analyse_exp),
8966 s->hlua->wake_time);
8967 else
8968 s->res.analyse_exp = tick_first((tick_is_expired(s->res.analyse_exp, now_ms) ? 0 : s->res.analyse_exp),
8969 s->hlua->wake_time);
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01008970 }
8971 goto end;
8972
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01008973 /* yield. */
8974 case HLUA_E_AGAIN:
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01008975 /* Set timeout in the required channel. */
Christopher Faulet8f587ea2020-07-28 12:01:55 +02008976 if (dir == SMP_OPT_DIR_REQ)
8977 s->req.analyse_exp = tick_first((tick_is_expired(s->req.analyse_exp, now_ms) ? 0 : s->req.analyse_exp),
8978 s->hlua->wake_time);
8979 else
8980 s->res.analyse_exp = tick_first((tick_is_expired(s->res.analyse_exp, now_ms) ? 0 : s->res.analyse_exp),
8981 s->hlua->wake_time);
8982
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01008983 /* Some actions can be wake up when a "write" event
8984 * is detected on a response channel. This is useful
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08008985 * only for actions targeted on the requests.
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01008986 */
Christopher Faulet51fa3582019-07-26 14:54:52 +02008987 if (HLUA_IS_WAKERESWR(s->hlua))
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01008988 s->res.flags |= CF_WAKE_WRITE;
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008989 if (HLUA_IS_WAKEREQWR(s->hlua))
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01008990 s->req.flags |= CF_WAKE_WRITE;
Christopher Faulet7716cdf2020-01-29 11:53:30 +01008991 act_ret = ACT_RET_YIELD;
8992 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01008993
8994 /* finished with error. */
8995 case HLUA_E_ERRMSG:
8996 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02008997 SEND_ERR(px, "Lua function '%s': %s.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01008998 rule->arg.hlua_rule->fcn->name, lua_tostring(s->hlua->T, -1));
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01008999 lua_pop(s->hlua->T, 1);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009000 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009001
Thierry Fournierd5b073c2018-05-21 19:42:47 +02009002 case HLUA_E_ETMOUT:
Thierry Fournierad5345f2020-11-29 02:05:57 +01009003 SEND_ERR(px, "Lua function '%s': execution timeout.\n", rule->arg.hlua_rule->fcn->name);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009004 goto end;
Thierry Fournierd5b073c2018-05-21 19:42:47 +02009005
9006 case HLUA_E_NOMEM:
Thierry Fournierad5345f2020-11-29 02:05:57 +01009007 SEND_ERR(px, "Lua function '%s': out of memory error.\n", rule->arg.hlua_rule->fcn->name);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009008 goto end;
Thierry Fournierd5b073c2018-05-21 19:42:47 +02009009
9010 case HLUA_E_YIELD:
Christopher Faulet498c4832020-07-28 11:59:58 +02009011 err_yield:
9012 act_ret = ACT_RET_CONT;
Thierry Fournierd5b073c2018-05-21 19:42:47 +02009013 SEND_ERR(px, "Lua function '%s': aborting Lua processing on expired timeout.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009014 rule->arg.hlua_rule->fcn->name);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009015 goto end;
Thierry Fournierd5b073c2018-05-21 19:42:47 +02009016
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009017 case HLUA_E_ERR:
9018 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02009019 SEND_ERR(px, "Lua function '%s' return an unknown error.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009020 rule->arg.hlua_rule->fcn->name);
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009021
9022 default:
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009023 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009024 }
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009025
9026 end:
Christopher Faulet2361fd92020-07-30 10:40:58 +02009027 if (act_ret != ACT_RET_YIELD && s->hlua)
Christopher Faulet8f587ea2020-07-28 12:01:55 +02009028 s->hlua->wake_time = TICK_ETERNITY;
Christopher Faulet7716cdf2020-01-29 11:53:30 +01009029 return act_ret;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009030}
9031
Willy Tarreau144f84a2021-03-02 16:09:26 +01009032struct task *hlua_applet_wakeup(struct task *t, void *context, unsigned int state)
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009033{
Olivier Houchard9f6af332018-05-25 14:04:04 +02009034 struct appctx *ctx = context;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009035
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009036 appctx_wakeup(ctx);
Willy Tarreaud9587412017-08-23 16:07:33 +02009037 t->expire = TICK_ETERNITY;
Willy Tarreaud1aa41f2017-07-21 16:41:56 +02009038 return t;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009039}
9040
9041static int hlua_applet_tcp_init(struct appctx *ctx, struct proxy *px, struct stream *strm)
9042{
9043 struct stream_interface *si = ctx->owner;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009044 struct hlua *hlua;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009045 struct task *task;
9046 char **arg;
Thierry Fournierfd107a22016-02-19 19:57:23 +01009047 const char *error;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009048
Willy Tarreaubafbe012017-11-24 17:34:44 +01009049 hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009050 if (!hlua) {
9051 SEND_ERR(px, "Lua applet tcp '%s': out of memory.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009052 ctx->rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009053 return 0;
9054 }
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009055 HLUA_INIT(hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009056 ctx->ctx.hlua_apptcp.hlua = hlua;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009057 ctx->ctx.hlua_apptcp.flags = 0;
9058
9059 /* Create task used by signal to wakeup applets. */
Willy Tarreaubeeabf52021-10-01 18:23:30 +02009060 task = task_new_here();
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009061 if (!task) {
9062 SEND_ERR(px, "Lua applet tcp '%s': out of memory.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009063 ctx->rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009064 return 0;
9065 }
9066 task->nice = 0;
9067 task->context = ctx;
9068 task->process = hlua_applet_wakeup;
9069 ctx->ctx.hlua_apptcp.task = task;
9070
9071 /* In the execution wrappers linked with a stream, the
9072 * Lua context can be not initialized. This behavior
9073 * permits to save performances because a systematic
9074 * Lua initialization cause 5% performances loss.
9075 */
Thierry Fournierc7492592020-11-28 23:57:24 +01009076 if (!hlua_ctx_init(hlua, fcn_ref_to_stack_id(ctx->rule->arg.hlua_rule->fcn), task, 0)) {
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009077 SEND_ERR(px, "Lua applet tcp '%s': can't initialize Lua context.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009078 ctx->rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009079 return 0;
9080 }
9081
9082 /* Set timeout according with the applet configuration. */
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02009083 hlua->max_time = ctx->applet->timeout;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009084
9085 /* The following Lua calls can fail. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009086 if (!SET_SAFE_LJMP(hlua)) {
Thierry Fournierfd107a22016-02-19 19:57:23 +01009087 if (lua_type(hlua->T, -1) == LUA_TSTRING)
9088 error = lua_tostring(hlua->T, -1);
9089 else
9090 error = "critical error";
9091 SEND_ERR(px, "Lua applet tcp '%s': %s.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009092 ctx->rule->arg.hlua_rule->fcn->name, error);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009093 return 0;
9094 }
9095
9096 /* Check stack available size. */
9097 if (!lua_checkstack(hlua->T, 1)) {
9098 SEND_ERR(px, "Lua applet tcp '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009099 ctx->rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009100 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009101 return 0;
9102 }
9103
9104 /* Restore the function in the stack. */
Thierry Fournierc7492592020-11-28 23:57:24 +01009105 lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, ctx->rule->arg.hlua_rule->fcn->function_ref[hlua->state_id]);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009106
9107 /* Create and and push object stream in the stack. */
9108 if (!hlua_applet_tcp_new(hlua->T, ctx)) {
9109 SEND_ERR(px, "Lua applet tcp '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009110 ctx->rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009111 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009112 return 0;
9113 }
9114 hlua->nargs = 1;
9115
9116 /* push keywords in the stack. */
9117 for (arg = ctx->rule->arg.hlua_rule->args; arg && *arg; arg++) {
9118 if (!lua_checkstack(hlua->T, 1)) {
9119 SEND_ERR(px, "Lua applet tcp '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009120 ctx->rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009121 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009122 return 0;
9123 }
9124 lua_pushstring(hlua->T, *arg);
9125 hlua->nargs++;
9126 }
9127
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009128 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009129
9130 /* Wakeup the applet ASAP. */
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01009131 si_cant_get(si);
Willy Tarreau3367d412018-11-15 10:57:41 +01009132 si_rx_endp_more(si);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009133
9134 return 1;
9135}
9136
Willy Tarreau60409db2019-08-21 14:14:50 +02009137void hlua_applet_tcp_fct(struct appctx *ctx)
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009138{
9139 struct stream_interface *si = ctx->owner;
9140 struct stream *strm = si_strm(si);
9141 struct channel *res = si_ic(si);
9142 struct act_rule *rule = ctx->rule;
9143 struct proxy *px = strm->be;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009144 struct hlua *hlua = ctx->ctx.hlua_apptcp.hlua;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009145
9146 /* The applet execution is already done. */
Olivier Houchard594c8c52018-08-28 14:41:31 +02009147 if (ctx->ctx.hlua_apptcp.flags & APPLET_DONE) {
9148 /* eat the whole request */
9149 co_skip(si_oc(si), co_data(si_oc(si)));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009150 return;
Olivier Houchard594c8c52018-08-28 14:41:31 +02009151 }
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009152
9153 /* If the stream is disconnect or closed, ldo nothing. */
9154 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
9155 return;
9156
9157 /* Execute the function. */
9158 switch (hlua_ctx_resume(hlua, 1)) {
9159 /* finished. */
9160 case HLUA_E_OK:
9161 ctx->ctx.hlua_apptcp.flags |= APPLET_DONE;
9162
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009163 /* eat the whole request */
Willy Tarreaua79021a2018-06-15 18:07:57 +02009164 co_skip(si_oc(si), co_data(si_oc(si)));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009165 res->flags |= CF_READ_NULL;
9166 si_shutr(si);
9167 return;
9168
9169 /* yield. */
9170 case HLUA_E_AGAIN:
Thierry Fournier0164f202016-02-20 17:47:43 +01009171 if (hlua->wake_time != TICK_ETERNITY)
9172 task_schedule(ctx->ctx.hlua_apptcp.task, hlua->wake_time);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009173 return;
9174
9175 /* finished with error. */
9176 case HLUA_E_ERRMSG:
9177 /* Display log. */
9178 SEND_ERR(px, "Lua applet tcp '%s': %s.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009179 rule->arg.hlua_rule->fcn->name, lua_tostring(hlua->T, -1));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009180 lua_pop(hlua->T, 1);
9181 goto error;
9182
Thierry Fournierd5b073c2018-05-21 19:42:47 +02009183 case HLUA_E_ETMOUT:
9184 SEND_ERR(px, "Lua applet tcp '%s': execution timeout.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009185 rule->arg.hlua_rule->fcn->name);
Thierry Fournierd5b073c2018-05-21 19:42:47 +02009186 goto error;
9187
9188 case HLUA_E_NOMEM:
9189 SEND_ERR(px, "Lua applet tcp '%s': out of memory error.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009190 rule->arg.hlua_rule->fcn->name);
Thierry Fournierd5b073c2018-05-21 19:42:47 +02009191 goto error;
9192
9193 case HLUA_E_YIELD: /* unexpected */
9194 SEND_ERR(px, "Lua applet tcp '%s': yield not allowed.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009195 rule->arg.hlua_rule->fcn->name);
Thierry Fournierd5b073c2018-05-21 19:42:47 +02009196 goto error;
9197
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009198 case HLUA_E_ERR:
9199 /* Display log. */
9200 SEND_ERR(px, "Lua applet tcp '%s' return an unknown error.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009201 rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009202 goto error;
9203
9204 default:
9205 goto error;
9206 }
9207
9208error:
9209
9210 /* For all other cases, just close the stream. */
9211 si_shutw(si);
9212 si_shutr(si);
9213 ctx->ctx.hlua_apptcp.flags |= APPLET_DONE;
9214}
9215
9216static void hlua_applet_tcp_release(struct appctx *ctx)
9217{
Olivier Houchard3f795f72019-04-17 22:51:06 +02009218 task_destroy(ctx->ctx.hlua_apptcp.task);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009219 ctx->ctx.hlua_apptcp.task = NULL;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009220 hlua_ctx_destroy(ctx->ctx.hlua_apptcp.hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009221 ctx->ctx.hlua_apptcp.hlua = NULL;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009222}
9223
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009224/* The function returns 1 if the initialisation is complete, 0 if
9225 * an errors occurs and -1 if more data are required for initializing
9226 * the applet.
9227 */
9228static int hlua_applet_http_init(struct appctx *ctx, struct proxy *px, struct stream *strm)
9229{
9230 struct stream_interface *si = ctx->owner;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009231 struct http_txn *txn;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009232 struct hlua *hlua;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009233 char **arg;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009234 struct task *task;
Thierry Fournierfd107a22016-02-19 19:57:23 +01009235 const char *error;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009236
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009237 txn = strm->txn;
Willy Tarreaubafbe012017-11-24 17:34:44 +01009238 hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009239 if (!hlua) {
9240 SEND_ERR(px, "Lua applet http '%s': out of memory.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009241 ctx->rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009242 return 0;
9243 }
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009244 HLUA_INIT(hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009245 ctx->ctx.hlua_apphttp.hlua = hlua;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009246 ctx->ctx.hlua_apphttp.left_bytes = -1;
9247 ctx->ctx.hlua_apphttp.flags = 0;
9248
Thierry FOURNIERd93ea2b2015-12-20 19:14:52 +01009249 if (txn->req.flags & HTTP_MSGF_VER_11)
9250 ctx->ctx.hlua_apphttp.flags |= APPLET_HTTP11;
9251
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009252 /* Create task used by signal to wakeup applets. */
Willy Tarreaubeeabf52021-10-01 18:23:30 +02009253 task = task_new_here();
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009254 if (!task) {
9255 SEND_ERR(px, "Lua applet http '%s': out of memory.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009256 ctx->rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009257 return 0;
9258 }
9259 task->nice = 0;
9260 task->context = ctx;
9261 task->process = hlua_applet_wakeup;
9262 ctx->ctx.hlua_apphttp.task = task;
9263
9264 /* In the execution wrappers linked with a stream, the
9265 * Lua context can be not initialized. This behavior
9266 * permits to save performances because a systematic
9267 * Lua initialization cause 5% performances loss.
9268 */
Thierry Fournierc7492592020-11-28 23:57:24 +01009269 if (!hlua_ctx_init(hlua, fcn_ref_to_stack_id(ctx->rule->arg.hlua_rule->fcn), task, 0)) {
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009270 SEND_ERR(px, "Lua applet http '%s': can't initialize Lua context.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009271 ctx->rule->arg.hlua_rule->fcn->name);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009272 return 0;
9273 }
9274
9275 /* Set timeout according with the applet configuration. */
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02009276 hlua->max_time = ctx->applet->timeout;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009277
9278 /* The following Lua calls can fail. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009279 if (!SET_SAFE_LJMP(hlua)) {
Thierry Fournierfd107a22016-02-19 19:57:23 +01009280 if (lua_type(hlua->T, -1) == LUA_TSTRING)
9281 error = lua_tostring(hlua->T, -1);
9282 else
9283 error = "critical error";
9284 SEND_ERR(px, "Lua applet http '%s': %s.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009285 ctx->rule->arg.hlua_rule->fcn->name, error);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009286 return 0;
9287 }
9288
9289 /* Check stack available size. */
9290 if (!lua_checkstack(hlua->T, 1)) {
9291 SEND_ERR(px, "Lua applet http '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009292 ctx->rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009293 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009294 return 0;
9295 }
9296
9297 /* Restore the function in the stack. */
Thierry Fournierc7492592020-11-28 23:57:24 +01009298 lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, ctx->rule->arg.hlua_rule->fcn->function_ref[hlua->state_id]);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009299
9300 /* Create and and push object stream in the stack. */
9301 if (!hlua_applet_http_new(hlua->T, ctx)) {
9302 SEND_ERR(px, "Lua applet http '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009303 ctx->rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009304 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009305 return 0;
9306 }
9307 hlua->nargs = 1;
9308
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009309 /* push keywords in the stack. */
9310 for (arg = ctx->rule->arg.hlua_rule->args; arg && *arg; arg++) {
9311 if (!lua_checkstack(hlua->T, 1)) {
9312 SEND_ERR(px, "Lua applet http '%s': full stack.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009313 ctx->rule->arg.hlua_rule->fcn->name);
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009314 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009315 return 0;
9316 }
9317 lua_pushstring(hlua->T, *arg);
9318 hlua->nargs++;
9319 }
9320
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009321 RESET_SAFE_LJMP(hlua);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009322
9323 /* Wakeup the applet when data is ready for read. */
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01009324 si_cant_get(si);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009325
9326 return 1;
9327}
9328
Willy Tarreau60409db2019-08-21 14:14:50 +02009329void hlua_applet_http_fct(struct appctx *ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009330{
9331 struct stream_interface *si = ctx->owner;
9332 struct stream *strm = si_strm(si);
9333 struct channel *req = si_oc(si);
9334 struct channel *res = si_ic(si);
9335 struct act_rule *rule = ctx->rule;
9336 struct proxy *px = strm->be;
9337 struct hlua *hlua = ctx->ctx.hlua_apphttp.hlua;
9338 struct htx *req_htx, *res_htx;
9339
9340 res_htx = htx_from_buf(&res->buf);
9341
9342 /* If the stream is disconnect or closed, ldo nothing. */
9343 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
9344 goto out;
9345
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05009346 /* Check if the input buffer is available. */
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009347 if (!b_size(&res->buf)) {
9348 si_rx_room_blk(si);
9349 goto out;
9350 }
9351 /* check that the output is not closed */
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01009352 if (res->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_SHUTR))
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009353 ctx->ctx.hlua_apphttp.flags |= APPLET_DONE;
9354
9355 /* Set the currently running flag. */
9356 if (!HLUA_IS_RUNNING(hlua) &&
9357 !(ctx->ctx.hlua_apphttp.flags & APPLET_DONE)) {
Christopher Fauletbd878d22021-04-28 10:50:21 +02009358 if (!co_data(req)) {
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009359 si_cant_get(si);
9360 goto out;
9361 }
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009362 }
9363
9364 /* Executes The applet if it is not done. */
9365 if (!(ctx->ctx.hlua_apphttp.flags & APPLET_DONE)) {
9366
9367 /* Execute the function. */
9368 switch (hlua_ctx_resume(hlua, 1)) {
9369 /* finished. */
9370 case HLUA_E_OK:
9371 ctx->ctx.hlua_apphttp.flags |= APPLET_DONE;
9372 break;
9373
9374 /* yield. */
9375 case HLUA_E_AGAIN:
9376 if (hlua->wake_time != TICK_ETERNITY)
9377 task_schedule(ctx->ctx.hlua_apphttp.task, hlua->wake_time);
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01009378 goto out;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009379
9380 /* finished with error. */
9381 case HLUA_E_ERRMSG:
9382 /* Display log. */
9383 SEND_ERR(px, "Lua applet http '%s': %s.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009384 rule->arg.hlua_rule->fcn->name, lua_tostring(hlua->T, -1));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009385 lua_pop(hlua->T, 1);
9386 goto error;
9387
9388 case HLUA_E_ETMOUT:
9389 SEND_ERR(px, "Lua applet http '%s': execution timeout.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009390 rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009391 goto error;
9392
9393 case HLUA_E_NOMEM:
9394 SEND_ERR(px, "Lua applet http '%s': out of memory error.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009395 rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009396 goto error;
9397
9398 case HLUA_E_YIELD: /* unexpected */
9399 SEND_ERR(px, "Lua applet http '%s': yield not allowed.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009400 rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009401 goto error;
9402
9403 case HLUA_E_ERR:
9404 /* Display log. */
9405 SEND_ERR(px, "Lua applet http '%s' return an unknown error.\n",
Thierry Fournierad5345f2020-11-29 02:05:57 +01009406 rule->arg.hlua_rule->fcn->name);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009407 goto error;
9408
9409 default:
9410 goto error;
9411 }
9412 }
9413
9414 if (ctx->ctx.hlua_apphttp.flags & APPLET_DONE) {
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01009415 if (ctx->ctx.hlua_apphttp.flags & APPLET_RSP_SENT)
9416 goto done;
9417
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009418 if (!(ctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT))
9419 goto error;
9420
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01009421 /* no more data are expected. Don't add TLR because mux-h1 will take care of it */
9422 res_htx->flags |= HTX_FL_EOM;
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01009423 strm->txn->status = ctx->ctx.hlua_apphttp.status;
9424 ctx->ctx.hlua_apphttp.flags |= APPLET_RSP_SENT;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009425 }
9426
9427 done:
9428 if (ctx->ctx.hlua_apphttp.flags & APPLET_DONE) {
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01009429 if (!(res->flags & CF_SHUTR)) {
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009430 res->flags |= CF_READ_NULL;
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01009431 si_shutr(si);
9432 }
9433
9434 /* eat the whole request */
9435 if (co_data(req)) {
9436 req_htx = htx_from_buf(&req->buf);
9437 co_htx_skip(req, req_htx, co_data(req));
9438 htx_to_buf(req_htx, &req->buf);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009439 }
9440 }
9441
9442 out:
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009443 htx_to_buf(res_htx, &res->buf);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009444 return;
9445
9446 error:
9447
9448 /* If we are in HTTP mode, and we are not send any
9449 * data, return a 500 server error in best effort:
9450 * if there is no room available in the buffer,
9451 * just close the connection.
9452 */
9453 if (!(ctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT)) {
Christopher Fauletf7346382019-07-17 22:02:08 +02009454 struct buffer *err = &http_err_chunks[HTTP_ERR_500];
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009455
9456 channel_erase(res);
9457 res->buf.data = b_data(err);
9458 memcpy(res->buf.area, b_head(err), b_data(err));
9459 res_htx = htx_from_buf(&res->buf);
Christopher Fauletf6cce3f2019-02-27 21:20:09 +01009460 channel_add_input(res, res_htx->data);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01009461 }
9462 if (!(strm->flags & SF_ERR_MASK))
9463 strm->flags |= SF_ERR_RESOURCE;
9464 ctx->ctx.hlua_apphttp.flags |= APPLET_DONE;
9465 goto done;
9466}
9467
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009468static void hlua_applet_http_release(struct appctx *ctx)
9469{
Olivier Houchard3f795f72019-04-17 22:51:06 +02009470 task_destroy(ctx->ctx.hlua_apphttp.task);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009471 ctx->ctx.hlua_apphttp.task = NULL;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009472 hlua_ctx_destroy(ctx->ctx.hlua_apphttp.hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009473 ctx->ctx.hlua_apphttp.hlua = NULL;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009474}
9475
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02009476/* global {tcp|http}-request parser. Return ACT_RET_PRS_OK in
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05009477 * success case, else return ACT_RET_PRS_ERR.
Thierry FOURNIERbabae282015-09-17 11:36:37 +02009478 *
9479 * This function can fail with an abort() due to an Lua critical error.
9480 * We are in the configuration parsing process of HAProxy, this abort() is
9481 * tolerated.
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009482 */
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02009483static enum act_parse_ret action_register_lua(const char **args, int *cur_arg, struct proxy *px,
9484 struct act_rule *rule, char **err)
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009485{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02009486 struct hlua_function *fcn = rule->kw->private;
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009487 int i;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009488
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02009489 /* Memory for the rule. */
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02009490 rule->arg.hlua_rule = calloc(1, sizeof(*rule->arg.hlua_rule));
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02009491 if (!rule->arg.hlua_rule) {
9492 memprintf(err, "out of memory error");
Christopher Faulet528526f2021-04-12 14:37:32 +02009493 goto error;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02009494 }
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009495
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009496 /* Memory for arguments. */
Tim Duesterhuse52b6e52020-09-12 20:26:43 +02009497 rule->arg.hlua_rule->args = calloc(fcn->nargs + 1,
9498 sizeof(*rule->arg.hlua_rule->args));
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009499 if (!rule->arg.hlua_rule->args) {
9500 memprintf(err, "out of memory error");
Christopher Faulet528526f2021-04-12 14:37:32 +02009501 goto error;
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009502 }
9503
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02009504 /* Reference the Lua function and store the reference. */
Thierry Fournierad5345f2020-11-29 02:05:57 +01009505 rule->arg.hlua_rule->fcn = fcn;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02009506
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009507 /* Expect some arguments */
9508 for (i = 0; i < fcn->nargs; i++) {
Thierry FOURNIER1725c2e2019-01-06 19:38:49 +01009509 if (*args[*cur_arg] == '\0') {
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009510 memprintf(err, "expect %d arguments", fcn->nargs);
Christopher Faulet528526f2021-04-12 14:37:32 +02009511 goto error;
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009512 }
Thierry FOURNIER1725c2e2019-01-06 19:38:49 +01009513 rule->arg.hlua_rule->args[i] = strdup(args[*cur_arg]);
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009514 if (!rule->arg.hlua_rule->args[i]) {
9515 memprintf(err, "out of memory error");
Christopher Faulet528526f2021-04-12 14:37:32 +02009516 goto error;
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009517 }
9518 (*cur_arg)++;
9519 }
9520 rule->arg.hlua_rule->args[i] = NULL;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02009521
Thierry FOURNIER42148732015-09-02 17:17:33 +02009522 rule->action = ACT_CUSTOM;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02009523 rule->action_ptr = hlua_action;
Thierry FOURNIERafa80492015-08-19 09:04:15 +02009524 return ACT_RET_PRS_OK;
Christopher Faulet528526f2021-04-12 14:37:32 +02009525
9526 error:
9527 if (rule->arg.hlua_rule) {
9528 if (rule->arg.hlua_rule->args) {
9529 for (i = 0; i < fcn->nargs; i++)
9530 ha_free(&rule->arg.hlua_rule->args[i]);
9531 ha_free(&rule->arg.hlua_rule->args);
9532 }
9533 ha_free(&rule->arg.hlua_rule);
9534 }
9535 return ACT_RET_PRS_ERR;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01009536}
9537
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009538static enum act_parse_ret action_register_service_http(const char **args, int *cur_arg, struct proxy *px,
9539 struct act_rule *rule, char **err)
9540{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02009541 struct hlua_function *fcn = rule->kw->private;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009542
Thierry FOURNIER718e2a72015-12-20 20:13:14 +01009543 /* HTTP applets are forbidden in tcp-request rules.
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05009544 * HTTP applet request requires everything initialized by
Thierry FOURNIER718e2a72015-12-20 20:13:14 +01009545 * "http_process_request" (analyzer flag AN_REQ_HTTP_INNER).
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05009546 * The applet will be immediately initialized, but its before
Thierry FOURNIER718e2a72015-12-20 20:13:14 +01009547 * the call of this analyzer.
9548 */
9549 if (rule->from != ACT_F_HTTP_REQ) {
9550 memprintf(err, "HTTP applets are forbidden from 'tcp-request' rulesets");
9551 return ACT_RET_PRS_ERR;
9552 }
9553
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009554 /* Memory for the rule. */
9555 rule->arg.hlua_rule = calloc(1, sizeof(*rule->arg.hlua_rule));
9556 if (!rule->arg.hlua_rule) {
9557 memprintf(err, "out of memory error");
9558 return ACT_RET_PRS_ERR;
9559 }
9560
9561 /* Reference the Lua function and store the reference. */
Thierry Fournierad5345f2020-11-29 02:05:57 +01009562 rule->arg.hlua_rule->fcn = fcn;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009563
9564 /* TODO: later accept arguments. */
9565 rule->arg.hlua_rule->args = NULL;
9566
9567 /* Add applet pointer in the rule. */
9568 rule->applet.obj_type = OBJ_TYPE_APPLET;
9569 rule->applet.name = fcn->name;
9570 rule->applet.init = hlua_applet_http_init;
9571 rule->applet.fct = hlua_applet_http_fct;
9572 rule->applet.release = hlua_applet_http_release;
9573 rule->applet.timeout = hlua_timeout_applet;
9574
9575 return ACT_RET_PRS_OK;
9576}
9577
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009578/* This function is an LUA binding used for registering
9579 * "sample-conv" functions. It expects a converter name used
9580 * in the haproxy configuration file, and an LUA function.
9581 */
9582__LJMP static int hlua_register_action(lua_State *L)
9583{
Christopher Faulet4fc9da02021-04-12 15:08:12 +02009584 struct action_kw_list *akl = NULL;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009585 const char *name;
9586 int ref;
9587 int len;
Christopher Faulet4fc9da02021-04-12 15:08:12 +02009588 struct hlua_function *fcn = NULL;
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009589 int nargs;
Thierry Fournierf67442e2020-11-28 20:41:07 +01009590 struct buffer *trash;
9591 struct action_kw *akw;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009592
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009593 /* Initialise the number of expected arguments at 0. */
9594 nargs = 0;
9595
9596 if (lua_gettop(L) < 3 || lua_gettop(L) > 4)
9597 WILL_LJMP(luaL_error(L, "'register_action' needs between 3 and 4 arguments"));
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009598
9599 /* First argument : converter name. */
9600 name = MAY_LJMP(luaL_checkstring(L, 1));
9601
9602 /* Second argument : environment. */
9603 if (lua_type(L, 2) != LUA_TTABLE)
9604 WILL_LJMP(luaL_error(L, "register_action: second argument must be a table of strings"));
9605
9606 /* Third argument : lua function. */
9607 ref = MAY_LJMP(hlua_checkfunction(L, 3));
9608
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08009609 /* Fourth argument : number of mandatory arguments expected on the configuration line. */
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009610 if (lua_gettop(L) >= 4)
9611 nargs = MAY_LJMP(luaL_checkinteger(L, 4));
9612
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08009613 /* browse the second argument as an array. */
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009614 lua_pushnil(L);
9615 while (lua_next(L, 2) != 0) {
9616 if (lua_type(L, -1) != LUA_TSTRING)
9617 WILL_LJMP(luaL_error(L, "register_action: second argument must be a table of strings"));
9618
Thierry Fournierf67442e2020-11-28 20:41:07 +01009619 /* Check if action exists */
9620 trash = get_trash_chunk();
9621 chunk_printf(trash, "lua.%s", name);
9622 if (strcmp(lua_tostring(L, -1), "tcp-req") == 0) {
9623 akw = tcp_req_cont_action(trash->area);
9624 } else if (strcmp(lua_tostring(L, -1), "tcp-res") == 0) {
9625 akw = tcp_res_cont_action(trash->area);
9626 } else if (strcmp(lua_tostring(L, -1), "http-req") == 0) {
9627 akw = action_http_req_custom(trash->area);
9628 } else if (strcmp(lua_tostring(L, -1), "http-res") == 0) {
9629 akw = action_http_res_custom(trash->area);
9630 } else {
9631 akw = NULL;
9632 }
9633 if (akw != NULL) {
Thierry Fournier59f11be2020-11-29 00:37:41 +01009634 fcn = akw->private;
9635 if (fcn->function_ref[hlua_state_id] != -1) {
9636 ha_warning("Trying to register action 'lua.%s' more than once. "
9637 "This will become a hard error in version 2.5.\n", name);
9638 }
9639 fcn->function_ref[hlua_state_id] = ref;
9640
9641 /* pop the environment string. */
9642 lua_pop(L, 1);
9643 continue;
Thierry Fournierf67442e2020-11-28 20:41:07 +01009644 }
9645
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009646 /* Check required environment. Only accepted "http" or "tcp". */
9647 /* Allocate and fill the sample fetch keyword struct. */
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02009648 akl = calloc(1, sizeof(*akl) + sizeof(struct action_kw) * 2);
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009649 if (!akl)
Christopher Faulet4fc9da02021-04-12 15:08:12 +02009650 goto alloc_error;;
Thierry Fournier62a22aa2020-11-28 21:06:35 +01009651 fcn = new_hlua_function();
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009652 if (!fcn)
Christopher Faulet4fc9da02021-04-12 15:08:12 +02009653 goto alloc_error;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009654
9655 /* Fill fcn. */
9656 fcn->name = strdup(name);
9657 if (!fcn->name)
Christopher Faulet4fc9da02021-04-12 15:08:12 +02009658 goto alloc_error;
Thierry Fournierc7492592020-11-28 23:57:24 +01009659 fcn->function_ref[hlua_state_id] = ref;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009660
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07009661 /* Set the expected number of arguments. */
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01009662 fcn->nargs = nargs;
9663
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009664 /* List head */
9665 akl->list.n = akl->list.p = NULL;
9666
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009667 /* action keyword. */
9668 len = strlen("lua.") + strlen(name) + 1;
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02009669 akl->kw[0].kw = calloc(1, len);
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009670 if (!akl->kw[0].kw)
Christopher Faulet4fc9da02021-04-12 15:08:12 +02009671 goto alloc_error;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009672
9673 snprintf((char *)akl->kw[0].kw, len, "lua.%s", name);
9674
Amaury Denoyellee4a617c2021-05-06 15:33:09 +02009675 akl->kw[0].flags = 0;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009676 akl->kw[0].private = fcn;
9677 akl->kw[0].parse = action_register_lua;
9678
9679 /* select the action registering point. */
9680 if (strcmp(lua_tostring(L, -1), "tcp-req") == 0)
9681 tcp_req_cont_keywords_register(akl);
9682 else if (strcmp(lua_tostring(L, -1), "tcp-res") == 0)
9683 tcp_res_cont_keywords_register(akl);
9684 else if (strcmp(lua_tostring(L, -1), "http-req") == 0)
9685 http_req_keywords_register(akl);
9686 else if (strcmp(lua_tostring(L, -1), "http-res") == 0)
9687 http_res_keywords_register(akl);
Christopher Faulet4fc9da02021-04-12 15:08:12 +02009688 else {
9689 release_hlua_function(fcn);
9690 if (akl)
9691 ha_free((char **)&(akl->kw[0].kw));
9692 ha_free(&akl);
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01009693 WILL_LJMP(luaL_error(L, "Lua action environment '%s' is unknown. "
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009694 "'tcp-req', 'tcp-res', 'http-req' or 'http-res' "
9695 "are expected.", lua_tostring(L, -1)));
Christopher Faulet4fc9da02021-04-12 15:08:12 +02009696 }
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009697
9698 /* pop the environment string. */
9699 lua_pop(L, 1);
Christopher Faulet4fc9da02021-04-12 15:08:12 +02009700
9701 /* reset for next loop */
9702 akl = NULL;
9703 fcn = NULL;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009704 }
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009705 return ACT_RET_PRS_OK;
Christopher Faulet4fc9da02021-04-12 15:08:12 +02009706
9707 alloc_error:
9708 release_hlua_function(fcn);
9709 ha_free(&akl);
9710 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
9711 return 0; /* Never reached */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009712}
9713
9714static enum act_parse_ret action_register_service_tcp(const char **args, int *cur_arg, struct proxy *px,
9715 struct act_rule *rule, char **err)
9716{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02009717 struct hlua_function *fcn = rule->kw->private;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009718
Christopher Faulet280f85b2019-07-15 15:02:04 +02009719 if (px->mode == PR_MODE_HTTP) {
9720 memprintf(err, "Lua TCP services cannot be used on HTTP proxies");
Christopher Fauletafd8f102018-11-08 11:34:21 +01009721 return ACT_RET_PRS_ERR;
9722 }
9723
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009724 /* Memory for the rule. */
9725 rule->arg.hlua_rule = calloc(1, sizeof(*rule->arg.hlua_rule));
9726 if (!rule->arg.hlua_rule) {
9727 memprintf(err, "out of memory error");
9728 return ACT_RET_PRS_ERR;
9729 }
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009730
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009731 /* Reference the Lua function and store the reference. */
Thierry Fournierad5345f2020-11-29 02:05:57 +01009732 rule->arg.hlua_rule->fcn = fcn;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009733
9734 /* TODO: later accept arguments. */
9735 rule->arg.hlua_rule->args = NULL;
9736
9737 /* Add applet pointer in the rule. */
9738 rule->applet.obj_type = OBJ_TYPE_APPLET;
9739 rule->applet.name = fcn->name;
9740 rule->applet.init = hlua_applet_tcp_init;
9741 rule->applet.fct = hlua_applet_tcp_fct;
9742 rule->applet.release = hlua_applet_tcp_release;
9743 rule->applet.timeout = hlua_timeout_applet;
9744
9745 return 0;
9746}
9747
9748/* This function is an LUA binding used for registering
9749 * "sample-conv" functions. It expects a converter name used
9750 * in the haproxy configuration file, and an LUA function.
9751 */
9752__LJMP static int hlua_register_service(lua_State *L)
9753{
9754 struct action_kw_list *akl;
9755 const char *name;
9756 const char *env;
9757 int ref;
9758 int len;
Christopher Faulet5c028d72021-04-12 15:11:44 +02009759 struct hlua_function *fcn = NULL;
Thierry Fournierf67442e2020-11-28 20:41:07 +01009760 struct buffer *trash;
9761 struct action_kw *akw;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009762
9763 MAY_LJMP(check_args(L, 3, "register_service"));
9764
9765 /* First argument : converter name. */
9766 name = MAY_LJMP(luaL_checkstring(L, 1));
9767
9768 /* Second argument : environment. */
9769 env = MAY_LJMP(luaL_checkstring(L, 2));
9770
9771 /* Third argument : lua function. */
9772 ref = MAY_LJMP(hlua_checkfunction(L, 3));
9773
Thierry Fournierf67442e2020-11-28 20:41:07 +01009774 /* Check for service already registered */
9775 trash = get_trash_chunk();
9776 chunk_printf(trash, "lua.%s", name);
9777 akw = service_find(trash->area);
9778 if (akw != NULL) {
Thierry Fournier59f11be2020-11-29 00:37:41 +01009779 fcn = akw->private;
9780 if (fcn->function_ref[hlua_state_id] != -1) {
9781 ha_warning("Trying to register service 'lua.%s' more than once. "
9782 "This will become a hard error in version 2.5.\n", name);
9783 }
9784 fcn->function_ref[hlua_state_id] = ref;
9785 return 0;
Thierry Fournierf67442e2020-11-28 20:41:07 +01009786 }
9787
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009788 /* Allocate and fill the sample fetch keyword struct. */
9789 akl = calloc(1, sizeof(*akl) + sizeof(struct action_kw) * 2);
9790 if (!akl)
Christopher Faulet5c028d72021-04-12 15:11:44 +02009791 goto alloc_error;
Thierry Fournier62a22aa2020-11-28 21:06:35 +01009792 fcn = new_hlua_function();
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009793 if (!fcn)
Christopher Faulet5c028d72021-04-12 15:11:44 +02009794 goto alloc_error;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009795
9796 /* Fill fcn. */
9797 len = strlen("<lua.>") + strlen(name) + 1;
9798 fcn->name = calloc(1, len);
9799 if (!fcn->name)
Christopher Faulet5c028d72021-04-12 15:11:44 +02009800 goto alloc_error;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009801 snprintf((char *)fcn->name, len, "<lua.%s>", name);
Thierry Fournierc7492592020-11-28 23:57:24 +01009802 fcn->function_ref[hlua_state_id] = ref;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009803
9804 /* List head */
9805 akl->list.n = akl->list.p = NULL;
9806
9807 /* converter keyword. */
9808 len = strlen("lua.") + strlen(name) + 1;
9809 akl->kw[0].kw = calloc(1, len);
9810 if (!akl->kw[0].kw)
Christopher Faulet5c028d72021-04-12 15:11:44 +02009811 goto alloc_error;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009812
9813 snprintf((char *)akl->kw[0].kw, len, "lua.%s", name);
9814
Thierry FOURNIER / OZON.IO02564fd2016-11-12 11:07:05 +01009815 /* Check required environment. Only accepted "http" or "tcp". */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009816 if (strcmp(env, "tcp") == 0)
9817 akl->kw[0].parse = action_register_service_tcp;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02009818 else if (strcmp(env, "http") == 0)
9819 akl->kw[0].parse = action_register_service_http;
Christopher Faulet5c028d72021-04-12 15:11:44 +02009820 else {
9821 release_hlua_function(fcn);
9822 if (akl)
9823 ha_free((char **)&(akl->kw[0].kw));
9824 ha_free(&akl);
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01009825 WILL_LJMP(luaL_error(L, "Lua service environment '%s' is unknown. "
Eric Salamafe7456f2017-12-21 14:30:07 +01009826 "'tcp' or 'http' are expected.", env));
Christopher Faulet5c028d72021-04-12 15:11:44 +02009827 }
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009828
Amaury Denoyellee4a617c2021-05-06 15:33:09 +02009829 akl->kw[0].flags = 0;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02009830 akl->kw[0].private = fcn;
9831
9832 /* End of array. */
9833 memset(&akl->kw[1], 0, sizeof(*akl->kw));
9834
9835 /* Register this new converter */
9836 service_keywords_register(akl);
9837
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009838 return 0;
Christopher Faulet5c028d72021-04-12 15:11:44 +02009839
9840 alloc_error:
9841 release_hlua_function(fcn);
9842 ha_free(&akl);
9843 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
9844 return 0; /* Never reached */
Thierry FOURNIER8255a752015-09-23 21:03:35 +02009845}
9846
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01009847/* This function initialises Lua cli handler. It copies the
9848 * arguments in the Lua stack and create channel IO objects.
9849 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02009850static int hlua_cli_parse_fct(char **args, char *payload, struct appctx *appctx, void *private)
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01009851{
9852 struct hlua *hlua;
9853 struct hlua_function *fcn;
9854 int i;
9855 const char *error;
9856
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01009857 fcn = private;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009858 appctx->ctx.hlua_cli.fcn = private;
9859
Willy Tarreaubafbe012017-11-24 17:34:44 +01009860 hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009861 if (!hlua) {
9862 SEND_ERR(NULL, "Lua cli '%s': out of memory.\n", fcn->name);
Thierry FOURNIER1be34152016-12-17 12:09:51 +01009863 return 1;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009864 }
9865 HLUA_INIT(hlua);
9866 appctx->ctx.hlua_cli.hlua = hlua;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01009867
9868 /* Create task used by signal to wakeup applets.
Ilya Shipitsind4259502020-04-08 01:07:56 +05009869 * We use the same wakeup function than the Lua applet_tcp and
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01009870 * applet_http. It is absolutely compatible.
9871 */
Willy Tarreaubeeabf52021-10-01 18:23:30 +02009872 appctx->ctx.hlua_cli.task = task_new_here();
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01009873 if (!appctx->ctx.hlua_cli.task) {
Thierry FOURNIERffbf5692016-12-16 11:14:06 +01009874 SEND_ERR(NULL, "Lua cli '%s': out of memory.\n", fcn->name);
Thierry FOURNIER1be34152016-12-17 12:09:51 +01009875 goto error;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01009876 }
9877 appctx->ctx.hlua_cli.task->nice = 0;
9878 appctx->ctx.hlua_cli.task->context = appctx;
9879 appctx->ctx.hlua_cli.task->process = hlua_applet_wakeup;
9880
9881 /* Initialises the Lua context */
Thierry Fournierc7492592020-11-28 23:57:24 +01009882 if (!hlua_ctx_init(hlua, fcn_ref_to_stack_id(fcn), appctx->ctx.hlua_cli.task, 0)) {
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01009883 SEND_ERR(NULL, "Lua cli '%s': can't initialize Lua context.\n", fcn->name);
Thierry FOURNIER1be34152016-12-17 12:09:51 +01009884 goto error;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01009885 }
9886
9887 /* The following Lua calls can fail. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009888 if (!SET_SAFE_LJMP(hlua)) {
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01009889 if (lua_type(hlua->T, -1) == LUA_TSTRING)
9890 error = lua_tostring(hlua->T, -1);
9891 else
9892 error = "critical error";
9893 SEND_ERR(NULL, "Lua cli '%s': %s.\n", fcn->name, error);
9894 goto error;
9895 }
9896
9897 /* Check stack available size. */
9898 if (!lua_checkstack(hlua->T, 2)) {
9899 SEND_ERR(NULL, "Lua cli '%s': full stack.\n", fcn->name);
9900 goto error;
9901 }
9902
9903 /* Restore the function in the stack. */
Thierry Fournierc7492592020-11-28 23:57:24 +01009904 lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, fcn->function_ref[hlua->state_id]);
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01009905
9906 /* Once the arguments parsed, the CLI is like an AppletTCP,
9907 * so push AppletTCP in the stack.
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01009908 */
9909 if (!hlua_applet_tcp_new(hlua->T, appctx)) {
9910 SEND_ERR(NULL, "Lua cli '%s': full stack.\n", fcn->name);
9911 goto error;
9912 }
9913 hlua->nargs = 1;
9914
9915 /* push keywords in the stack. */
9916 for (i = 0; *args[i]; i++) {
9917 /* Check stack available size. */
9918 if (!lua_checkstack(hlua->T, 1)) {
9919 SEND_ERR(NULL, "Lua cli '%s': full stack.\n", fcn->name);
9920 goto error;
9921 }
9922 lua_pushstring(hlua->T, args[i]);
9923 hlua->nargs++;
9924 }
9925
9926 /* We must initialize the execution timeouts. */
9927 hlua->max_time = hlua_timeout_session;
9928
9929 /* At this point the execution is safe. */
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009930 RESET_SAFE_LJMP(hlua);
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01009931
9932 /* It's ok */
9933 return 0;
9934
9935 /* It's not ok. */
9936error:
Thierry Fournier7cbe5042020-11-28 17:02:21 +01009937 RESET_SAFE_LJMP(hlua);
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01009938 hlua_ctx_destroy(hlua);
Thierry FOURNIER1be34152016-12-17 12:09:51 +01009939 appctx->ctx.hlua_cli.hlua = NULL;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01009940 return 1;
9941}
9942
9943static int hlua_cli_io_handler_fct(struct appctx *appctx)
9944{
9945 struct hlua *hlua;
9946 struct stream_interface *si;
9947 struct hlua_function *fcn;
9948
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01009949 hlua = appctx->ctx.hlua_cli.hlua;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01009950 si = appctx->owner;
Willy Tarreau8ae4f752016-12-14 15:41:45 +01009951 fcn = appctx->ctx.hlua_cli.fcn;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01009952
9953 /* If the stream is disconnect or closed, ldo nothing. */
9954 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
9955 return 1;
9956
9957 /* Execute the function. */
9958 switch (hlua_ctx_resume(hlua, 1)) {
9959
9960 /* finished. */
9961 case HLUA_E_OK:
9962 return 1;
9963
9964 /* yield. */
9965 case HLUA_E_AGAIN:
9966 /* We want write. */
9967 if (HLUA_IS_WAKERESWR(hlua))
Willy Tarreaudb398432018-11-15 11:08:52 +01009968 si_rx_room_blk(si);
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01009969 /* Set the timeout. */
9970 if (hlua->wake_time != TICK_ETERNITY)
9971 task_schedule(hlua->task, hlua->wake_time);
9972 return 0;
9973
9974 /* finished with error. */
9975 case HLUA_E_ERRMSG:
9976 /* Display log. */
9977 SEND_ERR(NULL, "Lua cli '%s': %s.\n",
9978 fcn->name, lua_tostring(hlua->T, -1));
9979 lua_pop(hlua->T, 1);
9980 return 1;
9981
Thierry Fournierd5b073c2018-05-21 19:42:47 +02009982 case HLUA_E_ETMOUT:
9983 SEND_ERR(NULL, "Lua converter '%s': execution timeout.\n",
9984 fcn->name);
9985 return 1;
9986
9987 case HLUA_E_NOMEM:
9988 SEND_ERR(NULL, "Lua converter '%s': out of memory error.\n",
9989 fcn->name);
9990 return 1;
9991
9992 case HLUA_E_YIELD: /* unexpected */
9993 SEND_ERR(NULL, "Lua converter '%s': yield not allowed.\n",
9994 fcn->name);
9995 return 1;
9996
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01009997 case HLUA_E_ERR:
9998 /* Display log. */
9999 SEND_ERR(NULL, "Lua cli '%s' return an unknown error.\n",
10000 fcn->name);
10001 return 1;
10002
10003 default:
10004 return 1;
10005 }
10006
10007 return 1;
10008}
10009
10010static void hlua_cli_io_release_fct(struct appctx *appctx)
10011{
Thierry FOURNIERebed6e92016-12-16 11:54:07 +010010012 hlua_ctx_destroy(appctx->ctx.hlua_cli.hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +010010013 appctx->ctx.hlua_cli.hlua = NULL;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010014}
10015
10016/* This function is an LUA binding used for registering
10017 * new keywords in the cli. It expects a list of keywords
10018 * which are the "path". It is limited to 5 keywords. A
10019 * description of the command, a function to be executed
10020 * for the parsing and a function for io handlers.
10021 */
10022__LJMP static int hlua_register_cli(lua_State *L)
10023{
10024 struct cli_kw_list *cli_kws;
10025 const char *message;
10026 int ref_io;
10027 int len;
Christopher Faulet3a9a12b2021-04-12 15:31:29 +020010028 struct hlua_function *fcn = NULL;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010029 int index;
10030 int i;
Thierry Fournierf67442e2020-11-28 20:41:07 +010010031 struct buffer *trash;
10032 const char *kw[5];
10033 struct cli_kw *cli_kw;
Christopher Faulet3a9a12b2021-04-12 15:31:29 +020010034 const char *errmsg;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010035
10036 MAY_LJMP(check_args(L, 3, "register_cli"));
10037
10038 /* First argument : an array of maximum 5 keywords. */
10039 if (!lua_istable(L, 1))
10040 WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table"));
10041
10042 /* Second argument : string with contextual message. */
10043 message = MAY_LJMP(luaL_checkstring(L, 2));
10044
10045 /* Third and fourth argument : lua function. */
10046 ref_io = MAY_LJMP(hlua_checkfunction(L, 3));
10047
Thierry Fournierf67442e2020-11-28 20:41:07 +010010048 /* Check for CLI service already registered */
10049 trash = get_trash_chunk();
10050 index = 0;
10051 lua_pushnil(L);
10052 memset(kw, 0, sizeof(kw));
10053 while (lua_next(L, 1) != 0) {
10054 if (index >= CLI_PREFIX_KW_NB)
10055 WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table with a maximum of 5 entries"));
10056 if (lua_type(L, -1) != LUA_TSTRING)
10057 WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table filled with strings"));
10058 kw[index] = lua_tostring(L, -1);
10059 if (index == 0)
10060 chunk_printf(trash, "%s", kw[index]);
10061 else
10062 chunk_appendf(trash, " %s", kw[index]);
10063 index++;
10064 lua_pop(L, 1);
10065 }
10066 cli_kw = cli_find_kw_exact((char **)kw);
10067 if (cli_kw != NULL) {
Thierry Fournier59f11be2020-11-29 00:37:41 +010010068 fcn = cli_kw->private;
10069 if (fcn->function_ref[hlua_state_id] != -1) {
10070 ha_warning("Trying to register CLI keyword 'lua.%s' more than once. "
10071 "This will become a hard error in version 2.5.\n", trash->area);
10072 }
10073 fcn->function_ref[hlua_state_id] = ref_io;
10074 return 0;
Thierry Fournierf67442e2020-11-28 20:41:07 +010010075 }
10076
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010077 /* Allocate and fill the sample fetch keyword struct. */
10078 cli_kws = calloc(1, sizeof(*cli_kws) + sizeof(struct cli_kw) * 2);
Christopher Faulet3a9a12b2021-04-12 15:31:29 +020010079 if (!cli_kws) {
10080 errmsg = "Lua out of memory error.";
10081 goto error;
10082 }
Thierry Fournier62a22aa2020-11-28 21:06:35 +010010083 fcn = new_hlua_function();
Christopher Faulet3a9a12b2021-04-12 15:31:29 +020010084 if (!fcn) {
10085 errmsg = "Lua out of memory error.";
10086 goto error;
10087 }
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010088
10089 /* Fill path. */
10090 index = 0;
10091 lua_pushnil(L);
10092 while(lua_next(L, 1) != 0) {
Christopher Faulet3a9a12b2021-04-12 15:31:29 +020010093 if (index >= 5) {
10094 errmsg = "1st argument must be a table with a maximum of 5 entries";
10095 goto error;
10096 }
10097 if (lua_type(L, -1) != LUA_TSTRING) {
10098 errmsg = "1st argument must be a table filled with strings";
10099 goto error;
10100 }
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010101 cli_kws->kw[0].str_kw[index] = strdup(lua_tostring(L, -1));
Christopher Faulet3a9a12b2021-04-12 15:31:29 +020010102 if (!cli_kws->kw[0].str_kw[index]) {
10103 errmsg = "Lua out of memory error.";
10104 goto error;
10105 }
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010106 index++;
10107 lua_pop(L, 1);
10108 }
10109
10110 /* Copy help message. */
10111 cli_kws->kw[0].usage = strdup(message);
Christopher Faulet3a9a12b2021-04-12 15:31:29 +020010112 if (!cli_kws->kw[0].usage) {
10113 errmsg = "Lua out of memory error.";
10114 goto error;
10115 }
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010116
10117 /* Fill fcn io handler. */
10118 len = strlen("<lua.cli>") + 1;
10119 for (i = 0; i < index; i++)
10120 len += strlen(cli_kws->kw[0].str_kw[i]) + 1;
10121 fcn->name = calloc(1, len);
Christopher Faulet3a9a12b2021-04-12 15:31:29 +020010122 if (!fcn->name) {
10123 errmsg = "Lua out of memory error.";
10124 goto error;
10125 }
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010126 strncat((char *)fcn->name, "<lua.cli", len);
10127 for (i = 0; i < index; i++) {
10128 strncat((char *)fcn->name, ".", len);
10129 strncat((char *)fcn->name, cli_kws->kw[0].str_kw[i], len);
10130 }
10131 strncat((char *)fcn->name, ">", len);
Thierry Fournierc7492592020-11-28 23:57:24 +010010132 fcn->function_ref[hlua_state_id] = ref_io;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010133
10134 /* Fill last entries. */
10135 cli_kws->kw[0].private = fcn;
10136 cli_kws->kw[0].parse = hlua_cli_parse_fct;
10137 cli_kws->kw[0].io_handler = hlua_cli_io_handler_fct;
10138 cli_kws->kw[0].io_release = hlua_cli_io_release_fct;
10139
10140 /* Register this new converter */
10141 cli_register_kw(cli_kws);
10142
10143 return 0;
Christopher Faulet3a9a12b2021-04-12 15:31:29 +020010144
10145 error:
10146 release_hlua_function(fcn);
10147 if (cli_kws) {
10148 for (i = 0; i < index; i++)
10149 ha_free((char **)&(cli_kws->kw[0].str_kw[i]));
10150 ha_free((char **)&(cli_kws->kw[0].usage));
10151 }
10152 ha_free(&cli_kws);
10153 WILL_LJMP(luaL_error(L, errmsg));
10154 return 0; /* Never reached */
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +010010155}
10156
Christopher Faulet69c581a2021-05-31 08:54:04 +020010157static int hlua_filter_init_per_thread(struct proxy *px, struct flt_conf *fconf)
10158{
10159 struct hlua_flt_config *conf = fconf->conf;
10160 lua_State *L;
10161 int error, pos, state_id, flt_ref;
10162
10163 state_id = reg_flt_to_stack_id(conf->reg);
10164 L = hlua_states[state_id];
10165 pos = lua_gettop(L);
10166
10167 /* The filter parsing function */
10168 lua_rawgeti(L, LUA_REGISTRYINDEX, conf->reg->fun_ref[state_id]);
10169
10170 /* Push the filter class on the stack and resolve all callbacks */
10171 lua_rawgeti(L, LUA_REGISTRYINDEX, conf->reg->flt_ref[state_id]);
10172
10173 /* Duplicate the filter class so each filter will have its own copy */
10174 lua_newtable(L);
10175 lua_pushnil(L);
10176
10177 while (lua_next(L, pos+2)) {
10178 lua_pushvalue(L, -2);
10179 lua_insert(L, -2);
10180 lua_settable(L, -4);
10181 }
10182 flt_ref = luaL_ref(L, LUA_REGISTRYINDEX);
10183
10184 /* Remove the original lua filter class from the stack */
10185 lua_pop(L, 1);
10186
10187 /* Push the copy on the stack */
10188 lua_rawgeti(L, LUA_REGISTRYINDEX, flt_ref);
10189
10190 /* extra args are pushed in a table */
10191 lua_newtable(L);
10192 for (pos = 0; conf->args[pos]; pos++) {
10193 /* Check stack available size. */
10194 if (!lua_checkstack(L, 1)) {
10195 ha_alert("Lua filter '%s' : Lua error : full stack.", conf->reg->name);
10196 goto error;
10197 }
10198 lua_pushstring(L, conf->args[pos]);
10199 lua_rawseti(L, -2, lua_rawlen(L, -2) + 1);
10200 }
10201
10202 error = lua_pcall(L, 2, LUA_MULTRET, 0);
10203 switch (error) {
10204 case LUA_OK:
10205 /* replace the filter ref */
10206 conf->ref[state_id] = flt_ref;
10207 break;
10208 case LUA_ERRRUN:
10209 ha_alert("Lua filter '%s' : runtime error : %s", conf->reg->name, lua_tostring(L, -1));
10210 goto error;
10211 case LUA_ERRMEM:
10212 ha_alert("Lua filter '%s' : out of memory error", conf->reg->name);
10213 goto error;
10214 case LUA_ERRERR:
10215 ha_alert("Lua filter '%s' : message handler error : %s", conf->reg->name, lua_tostring(L, -1));
10216 goto error;
10217#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM <= 503
10218 case LUA_ERRGCMM:
10219 ha_alert("Lua filter '%s' : garbage collector error : %s", conf->reg->name, lua_tostring(L, -1));
10220 goto error;
10221#endif
10222 default:
Ilya Shipitsinff0f2782021-08-22 22:18:07 +050010223 ha_alert("Lua filter '%s' : unknown error : %s", conf->reg->name, lua_tostring(L, -1));
Christopher Faulet69c581a2021-05-31 08:54:04 +020010224 goto error;
10225 }
10226
10227 lua_settop(L, 0);
10228 return 0;
10229
10230 error:
10231 lua_settop(L, 0);
10232 return -1;
10233}
10234
10235static void hlua_filter_deinit_per_thread(struct proxy *px, struct flt_conf *fconf)
10236{
10237 struct hlua_flt_config *conf = fconf->conf;
10238 lua_State *L;
10239 int state_id;
10240
10241 if (!conf)
10242 return;
10243
10244 state_id = reg_flt_to_stack_id(conf->reg);
10245 L = hlua_states[state_id];
10246 luaL_unref(L, LUA_REGISTRYINDEX, conf->ref[state_id]);
10247}
10248
10249static int hlua_filter_init(struct proxy *px, struct flt_conf *fconf)
10250{
10251 struct hlua_flt_config *conf = fconf->conf;
10252 int state_id = reg_flt_to_stack_id(conf->reg);
10253
10254 /* Rely on per-thread init for global scripts */
10255 if (!state_id)
10256 return hlua_filter_init_per_thread(px, fconf);
10257 return 0;
10258}
10259
10260static void hlua_filter_deinit(struct proxy *px, struct flt_conf *fconf)
10261{
10262
10263 if (fconf->conf) {
10264 struct hlua_flt_config *conf = fconf->conf;
10265 int state_id = reg_flt_to_stack_id(conf->reg);
10266 int pos;
10267
10268 /* Rely on per-thread deinit for global scripts */
10269 if (!state_id)
10270 hlua_filter_deinit_per_thread(px, fconf);
10271
10272 for (pos = 0; conf->args[pos]; pos++)
10273 free(conf->args[pos]);
10274 free(conf->args);
10275 }
10276 ha_free(&fconf->conf);
10277 ha_free((char **)&fconf->id);
10278 ha_free(&fconf->ops);
10279}
10280
10281static int hlua_filter_new(struct stream *s, struct filter *filter)
10282{
10283 struct hlua_flt_config *conf = FLT_CONF(filter);
10284 struct hlua_flt_ctx *flt_ctx = NULL;
10285 int ret = 1;
10286
10287 /* In the execution wrappers linked with a stream, the
10288 * Lua context can be not initialized. This behavior
10289 * permits to save performances because a systematic
10290 * Lua initialization cause 5% performances loss.
10291 */
10292 if (!s->hlua) {
10293 struct hlua *hlua;
10294
10295 hlua = pool_alloc(pool_head_hlua);
10296 if (!hlua) {
10297 SEND_ERR(s->be, "Lua filter '%s': can't initialize Lua context.\n",
10298 conf->reg->name);
10299 ret = 0;
10300 goto end;
10301 }
10302 HLUA_INIT(hlua);
10303 s->hlua = hlua;
10304 if (!hlua_ctx_init(s->hlua, reg_flt_to_stack_id(conf->reg), s->task, 0)) {
10305 SEND_ERR(s->be, "Lua filter '%s': can't initialize Lua context.\n",
10306 conf->reg->name);
10307 ret = 0;
10308 goto end;
10309 }
10310 }
10311
10312 flt_ctx = pool_zalloc(pool_head_hlua_flt_ctx);
10313 if (!flt_ctx) {
10314 SEND_ERR(s->be, "Lua filter '%s': can't initialize filter Lua context.\n",
10315 conf->reg->name);
10316 ret = 0;
10317 goto end;
10318 }
10319 flt_ctx->hlua[0] = pool_alloc(pool_head_hlua);
10320 flt_ctx->hlua[1] = pool_alloc(pool_head_hlua);
10321 if (!flt_ctx->hlua[0] || !flt_ctx->hlua[1]) {
10322 SEND_ERR(s->be, "Lua filter '%s': can't initialize filter Lua context.\n",
10323 conf->reg->name);
10324 ret = 0;
10325 goto end;
10326 }
10327 HLUA_INIT(flt_ctx->hlua[0]);
10328 HLUA_INIT(flt_ctx->hlua[1]);
10329 if (!hlua_ctx_init(flt_ctx->hlua[0], reg_flt_to_stack_id(conf->reg), s->task, 0) ||
10330 !hlua_ctx_init(flt_ctx->hlua[1], reg_flt_to_stack_id(conf->reg), s->task, 0)) {
10331 SEND_ERR(s->be, "Lua filter '%s': can't initialize filter Lua context.\n",
10332 conf->reg->name);
10333 ret = 0;
10334 goto end;
10335 }
10336
10337 if (!HLUA_IS_RUNNING(s->hlua)) {
10338 /* The following Lua calls can fail. */
10339 if (!SET_SAFE_LJMP(s->hlua)) {
10340 const char *error;
10341
10342 if (lua_type(s->hlua->T, -1) == LUA_TSTRING)
10343 error = lua_tostring(s->hlua->T, -1);
10344 else
10345 error = "critical error";
10346 SEND_ERR(s->be, "Lua filter '%s': %s.\n", conf->reg->name, error);
10347 ret = 0;
10348 goto end;
10349 }
10350
10351 /* Check stack size. */
10352 if (!lua_checkstack(s->hlua->T, 1)) {
10353 SEND_ERR(s->be, "Lua filter '%s': full stack.\n", conf->reg->name);
Tim Duesterhus22817382021-09-11 23:17:25 +020010354 RESET_SAFE_LJMP(s->hlua);
Christopher Faulet69c581a2021-05-31 08:54:04 +020010355 ret = 0;
10356 goto end;
10357 }
10358
10359 lua_rawgeti(s->hlua->T, LUA_REGISTRYINDEX, conf->ref[s->hlua->state_id]);
10360 if (lua_getfield(s->hlua->T, -1, "new") != LUA_TFUNCTION) {
10361 SEND_ERR(s->be, "Lua filter '%s': 'new' field is not a function.\n",
10362 conf->reg->name);
10363 RESET_SAFE_LJMP(s->hlua);
10364 ret = 0;
10365 goto end;
10366 }
10367 lua_insert(s->hlua->T, -2);
10368
10369 /* Push the copy on the stack */
10370 s->hlua->nargs = 1;
10371
10372 /* We must initialize the execution timeouts. */
10373 s->hlua->max_time = hlua_timeout_session;
10374
10375 /* At this point the execution is safe. */
10376 RESET_SAFE_LJMP(s->hlua);
10377 }
10378
10379 switch (hlua_ctx_resume(s->hlua, 0)) {
10380 case HLUA_E_OK:
10381 /* Nothing returned or not a table, ignore the filter for current stream */
10382 if (!lua_gettop(s->hlua->T) || !lua_istable(s->hlua->T, 1)) {
10383 ret = 0;
10384 goto end;
10385 }
10386
10387 /* Attached the filter pointer to the ctx */
10388 lua_pushstring(s->hlua->T, "__filter");
10389 lua_pushlightuserdata(s->hlua->T, filter);
10390 lua_settable(s->hlua->T, -3);
10391
10392 /* Save a ref on the filter ctx */
10393 lua_pushvalue(s->hlua->T, 1);
10394 flt_ctx->ref = luaL_ref(s->hlua->T, LUA_REGISTRYINDEX);
10395 filter->ctx = flt_ctx;
10396 break;
10397 case HLUA_E_ERRMSG:
10398 SEND_ERR(s->be, "Lua filter '%s' : %s.\n", conf->reg->name, lua_tostring(s->hlua->T, -1));
10399 ret = -1;
10400 goto end;
10401 case HLUA_E_ETMOUT:
10402 SEND_ERR(s->be, "Lua filter '%s' : 'new' execution timeout.\n", conf->reg->name);
10403 ret = 0;
10404 goto end;
10405 case HLUA_E_NOMEM:
10406 SEND_ERR(s->be, "Lua filter '%s' : out of memory error.\n", conf->reg->name);
10407 ret = 0;
10408 goto end;
10409 case HLUA_E_AGAIN:
10410 case HLUA_E_YIELD:
10411 SEND_ERR(s->be, "Lua filter '%s': yield functions like core.tcp() or core.sleep()"
10412 " are not allowed from 'new' function.\n", conf->reg->name);
10413 ret = 0;
10414 goto end;
10415 case HLUA_E_ERR:
10416 SEND_ERR(s->be, "Lua filter '%s': 'new' returns an unknown error.\n", conf->reg->name);
10417 ret = 0;
10418 goto end;
10419 default:
10420 ret = 0;
10421 goto end;
10422 }
10423
10424 end:
10425 if (s->hlua)
10426 lua_settop(s->hlua->T, 0);
10427 if (ret <= 0) {
10428 if (flt_ctx) {
10429 hlua_ctx_destroy(flt_ctx->hlua[0]);
10430 hlua_ctx_destroy(flt_ctx->hlua[1]);
10431 pool_free(pool_head_hlua_flt_ctx, flt_ctx);
10432 }
10433 }
10434 return ret;
10435}
10436
10437static void hlua_filter_delete(struct stream *s, struct filter *filter)
10438{
10439 struct hlua_flt_ctx *flt_ctx = filter->ctx;
10440
10441 luaL_unref(s->hlua->T, LUA_REGISTRYINDEX, flt_ctx->ref);
10442 hlua_ctx_destroy(flt_ctx->hlua[0]);
10443 hlua_ctx_destroy(flt_ctx->hlua[1]);
10444 pool_free(pool_head_hlua_flt_ctx, flt_ctx);
10445 filter->ctx = NULL;
10446}
10447
Christopher Faulet9f55a502020-02-25 15:21:02 +010010448static int hlua_filter_from_payload(struct filter *filter)
10449{
10450 struct hlua_flt_ctx *flt_ctx = filter->ctx;
10451
10452 return (flt_ctx && !!(flt_ctx->flags & HLUA_FLT_CTX_FL_PAYLOAD));
10453}
10454
Christopher Fauletc404f112020-02-26 15:03:09 +010010455static int hlua_filter_callback(struct stream *s, struct filter *filter, const char *fun,
10456 int dir, unsigned int flags)
10457{
10458 struct hlua *flt_hlua;
10459 struct hlua_flt_config *conf = FLT_CONF(filter);
10460 struct hlua_flt_ctx *flt_ctx = filter->ctx;
10461 unsigned int hflags = HLUA_TXN_FLT_CTX;
10462 int ret = 1;
10463
10464 flt_hlua = flt_ctx->hlua[(dir == SMP_OPT_DIR_REQ ? 0 : 1)];
10465 if (!flt_hlua)
10466 goto end;
10467
10468 if (!HLUA_IS_RUNNING(flt_hlua)) {
10469 int extra_idx = lua_gettop(flt_hlua->T);
10470
10471 /* The following Lua calls can fail. */
10472 if (!SET_SAFE_LJMP(flt_hlua)) {
10473 const char *error;
10474
10475 if (lua_type(flt_hlua->T, -1) == LUA_TSTRING)
10476 error = lua_tostring(flt_hlua->T, -1);
10477 else
10478 error = "critical error";
10479 SEND_ERR(s->be, "Lua filter '%s': %s.\n", conf->reg->name, error);
10480 goto end;
10481 }
10482
10483 /* Check stack size. */
10484 if (!lua_checkstack(flt_hlua->T, 3)) {
10485 SEND_ERR(s->be, "Lua filter '%s': full stack.\n", conf->reg->name);
10486 RESET_SAFE_LJMP(flt_hlua);
10487 goto end;
10488 }
10489
10490 lua_rawgeti(flt_hlua->T, LUA_REGISTRYINDEX, flt_ctx->ref);
10491 if (lua_getfield(flt_hlua->T, -1, fun) != LUA_TFUNCTION) {
10492 RESET_SAFE_LJMP(flt_hlua);
10493 goto end;
10494 }
10495 lua_insert(flt_hlua->T, -2);
10496
10497 if (!hlua_txn_new(flt_hlua->T, s, s->be, dir, hflags)) {
10498 SEND_ERR(s->be, "Lua filter '%s': full stack.\n", conf->reg->name);
10499 RESET_SAFE_LJMP(flt_hlua);
10500 goto end;
10501 }
10502 flt_hlua->nargs = 2;
10503
10504 if (flags & HLUA_FLT_CB_ARG_CHN) {
10505 if (dir == SMP_OPT_DIR_REQ)
10506 lua_getfield(flt_hlua->T, -1, "req");
10507 else
10508 lua_getfield(flt_hlua->T, -1, "res");
10509 if (lua_type(flt_hlua->T, -1) == LUA_TTABLE) {
10510 lua_pushstring(flt_hlua->T, "__filter");
10511 lua_pushlightuserdata(flt_hlua->T, filter);
10512 lua_settable(flt_hlua->T, -3);
10513 }
10514 flt_hlua->nargs++;
10515 }
10516 else if (flags & HLUA_FLT_CB_ARG_HTTP_MSG) {
Christopher Fauleteae8afa2020-02-26 17:15:48 +010010517 if (dir == SMP_OPT_DIR_REQ)
10518 lua_getfield(flt_hlua->T, -1, "http_req");
10519 else
10520 lua_getfield(flt_hlua->T, -1, "http_res");
10521 if (lua_type(flt_hlua->T, -1) == LUA_TTABLE) {
10522 lua_pushstring(flt_hlua->T, "__filter");
10523 lua_pushlightuserdata(flt_hlua->T, filter);
10524 lua_settable(flt_hlua->T, -3);
10525 }
10526 flt_hlua->nargs++;
Christopher Fauletc404f112020-02-26 15:03:09 +010010527 }
10528
10529 /* Check stack size. */
10530 if (!lua_checkstack(flt_hlua->T, 1)) {
10531 SEND_ERR(s->be, "Lua filter '%s': full stack.\n", conf->reg->name);
10532 RESET_SAFE_LJMP(flt_hlua);
10533 goto end;
10534 }
10535
10536 while (extra_idx--) {
10537 lua_pushvalue(flt_hlua->T, 1);
10538 lua_remove(flt_hlua->T, 1);
10539 flt_hlua->nargs++;
10540 }
10541
10542 /* We must initialize the execution timeouts. */
10543 flt_hlua->max_time = hlua_timeout_session;
10544
10545 /* At this point the execution is safe. */
10546 RESET_SAFE_LJMP(flt_hlua);
10547 }
10548
10549 switch (hlua_ctx_resume(flt_hlua, !(flags & HLUA_FLT_CB_FINAL))) {
10550 case HLUA_E_OK:
10551 /* Catch the return value if it required */
10552 if ((flags & HLUA_FLT_CB_RETVAL) && lua_gettop(flt_hlua->T) > 0) {
10553 ret = lua_tointeger(flt_hlua->T, -1);
10554 lua_settop(flt_hlua->T, 0); /* Empty the stack. */
10555 }
10556
10557 /* Set timeout in the required channel. */
10558 if (flt_hlua->wake_time != TICK_ETERNITY) {
10559 if (dir == SMP_OPT_DIR_REQ)
10560 s->req.analyse_exp = flt_hlua->wake_time;
10561 else
10562 s->res.analyse_exp = flt_hlua->wake_time;
10563 }
10564 break;
10565 case HLUA_E_AGAIN:
10566 /* Set timeout in the required channel. */
10567 if (flt_hlua->wake_time != TICK_ETERNITY) {
10568 if (dir == SMP_OPT_DIR_REQ)
10569 s->req.analyse_exp = flt_hlua->wake_time;
10570 else
10571 s->res.analyse_exp = flt_hlua->wake_time;
10572 }
10573 /* Some actions can be wake up when a "write" event
10574 * is detected on a response channel. This is useful
10575 * only for actions targeted on the requests.
10576 */
10577 if (HLUA_IS_WAKERESWR(flt_hlua))
10578 s->res.flags |= CF_WAKE_WRITE;
10579 if (HLUA_IS_WAKEREQWR(flt_hlua))
10580 s->req.flags |= CF_WAKE_WRITE;
10581 ret = 0;
10582 goto end;
10583 case HLUA_E_ERRMSG:
10584 SEND_ERR(s->be, "Lua filter '%s' : %s.\n", conf->reg->name, lua_tostring(flt_hlua->T, -1));
10585 ret = -1;
10586 goto end;
10587 case HLUA_E_ETMOUT:
10588 SEND_ERR(s->be, "Lua filter '%s' : '%s' callback execution timeout.\n", conf->reg->name, fun);
10589 goto end;
10590 case HLUA_E_NOMEM:
10591 SEND_ERR(s->be, "Lua filter '%s' : out of memory error.\n", conf->reg->name);
10592 goto end;
10593 case HLUA_E_YIELD:
10594 SEND_ERR(s->be, "Lua filter '%s': yield functions like core.tcp() or core.sleep()"
10595 " are not allowed from '%s' callback.\n", conf->reg->name, fun);
10596 goto end;
10597 case HLUA_E_ERR:
10598 SEND_ERR(s->be, "Lua filter '%s': '%s' returns an unknown error.\n", conf->reg->name, fun);
10599 goto end;
10600 default:
10601 goto end;
10602 }
10603
10604
10605 end:
10606 return ret;
10607}
10608
10609static int hlua_filter_start_analyze(struct stream *s, struct filter *filter, struct channel *chn)
10610{
10611 struct hlua_flt_ctx *flt_ctx = filter->ctx;
10612
10613 flt_ctx->flags = 0;
10614 return hlua_filter_callback(s, filter, "start_analyze",
10615 (!(chn->flags & CF_ISRESP) ? SMP_OPT_DIR_REQ : SMP_OPT_DIR_RES),
10616 (HLUA_FLT_CB_FINAL | HLUA_FLT_CB_RETVAL | HLUA_FLT_CB_ARG_CHN));
10617}
10618
10619static int hlua_filter_end_analyze(struct stream *s, struct filter *filter, struct channel *chn)
10620{
10621 struct hlua_flt_ctx *flt_ctx = filter->ctx;
10622
10623 flt_ctx->flags &= ~HLUA_FLT_CTX_FL_PAYLOAD;
10624 return hlua_filter_callback(s, filter, "end_analyze",
10625 (!(chn->flags & CF_ISRESP) ? SMP_OPT_DIR_REQ : SMP_OPT_DIR_RES),
10626 (HLUA_FLT_CB_FINAL | HLUA_FLT_CB_RETVAL | HLUA_FLT_CB_ARG_CHN));
10627}
10628
Christopher Fauleteae8afa2020-02-26 17:15:48 +010010629static int hlua_filter_http_headers(struct stream *s, struct filter *filter, struct http_msg *msg)
10630{
10631 struct hlua_flt_ctx *flt_ctx = filter->ctx;
10632
10633 flt_ctx->flags &= ~HLUA_FLT_CTX_FL_PAYLOAD;
10634 return hlua_filter_callback(s, filter, "http_headers",
10635 (!(msg->chn->flags & CF_ISRESP) ? SMP_OPT_DIR_REQ : SMP_OPT_DIR_RES),
10636 (HLUA_FLT_CB_FINAL | HLUA_FLT_CB_RETVAL | HLUA_FLT_CB_ARG_HTTP_MSG));
10637}
10638
10639static int hlua_filter_http_payload(struct stream *s, struct filter *filter, struct http_msg *msg,
10640 unsigned int offset, unsigned int len)
10641{
10642 struct hlua_flt_ctx *flt_ctx = filter->ctx;
10643 struct hlua *flt_hlua;
10644 int dir = (!(msg->chn->flags & CF_ISRESP) ? SMP_OPT_DIR_REQ : SMP_OPT_DIR_RES);
10645 int idx = (dir == SMP_OPT_DIR_REQ ? 0 : 1);
10646 int ret;
10647
10648 flt_hlua = flt_ctx->hlua[idx];
10649 flt_ctx->cur_off[idx] = offset;
10650 flt_ctx->cur_len[idx] = len;
10651 flt_ctx->flags |= HLUA_FLT_CTX_FL_PAYLOAD;
10652 ret = hlua_filter_callback(s, filter, "http_payload", dir, (HLUA_FLT_CB_FINAL | HLUA_FLT_CB_ARG_HTTP_MSG));
10653 if (ret != -1) {
10654 ret = flt_ctx->cur_len[idx];
10655 if (lua_gettop(flt_hlua->T) > 0) {
10656 ret = lua_tointeger(flt_hlua->T, -1);
10657 if (ret > flt_ctx->cur_len[idx])
10658 ret = flt_ctx->cur_len[idx];
10659 lua_settop(flt_hlua->T, 0); /* Empty the stack. */
10660 }
10661 }
10662 return ret;
10663}
10664
10665static int hlua_filter_http_end(struct stream *s, struct filter *filter, struct http_msg *msg)
10666{
10667 struct hlua_flt_ctx *flt_ctx = filter->ctx;
10668
10669 flt_ctx->flags &= ~HLUA_FLT_CTX_FL_PAYLOAD;
10670 return hlua_filter_callback(s, filter, "http_end",
10671 (!(msg->chn->flags & CF_ISRESP) ? SMP_OPT_DIR_REQ : SMP_OPT_DIR_RES),
10672 (HLUA_FLT_CB_FINAL | HLUA_FLT_CB_RETVAL | HLUA_FLT_CB_ARG_HTTP_MSG));
10673}
10674
Christopher Fauletc404f112020-02-26 15:03:09 +010010675static int hlua_filter_tcp_payload(struct stream *s, struct filter *filter, struct channel *chn,
10676 unsigned int offset, unsigned int len)
10677{
10678 struct hlua_flt_ctx *flt_ctx = filter->ctx;
10679 struct hlua *flt_hlua;
10680 int dir = (!(chn->flags & CF_ISRESP) ? SMP_OPT_DIR_REQ : SMP_OPT_DIR_RES);
10681 int idx = (dir == SMP_OPT_DIR_REQ ? 0 : 1);
10682 int ret;
10683
10684 flt_hlua = flt_ctx->hlua[idx];
10685 flt_ctx->cur_off[idx] = offset;
10686 flt_ctx->cur_len[idx] = len;
10687 flt_ctx->flags |= HLUA_FLT_CTX_FL_PAYLOAD;
10688 ret = hlua_filter_callback(s, filter, "tcp_payload", dir, (HLUA_FLT_CB_FINAL | HLUA_FLT_CB_ARG_CHN));
10689 if (ret != -1) {
10690 ret = flt_ctx->cur_len[idx];
10691 if (lua_gettop(flt_hlua->T) > 0) {
10692 ret = lua_tointeger(flt_hlua->T, -1);
10693 if (ret > flt_ctx->cur_len[idx])
10694 ret = flt_ctx->cur_len[idx];
10695 lua_settop(flt_hlua->T, 0); /* Empty the stack. */
10696 }
10697 }
10698 return ret;
10699}
10700
Christopher Faulet69c581a2021-05-31 08:54:04 +020010701static int hlua_filter_parse_fct(char **args, int *cur_arg, struct proxy *px,
10702 struct flt_conf *fconf, char **err, void *private)
10703{
10704 struct hlua_reg_filter *reg_flt = private;
10705 lua_State *L;
10706 struct hlua_flt_config *conf = NULL;
10707 const char *flt_id = NULL;
10708 int state_id, pos, flt_flags = 0;
10709 struct flt_ops *hlua_flt_ops = NULL;
10710
10711 state_id = reg_flt_to_stack_id(reg_flt);
10712 L = hlua_states[state_id];
10713
10714 /* Initialize the filter ops with default callbacks */
10715 hlua_flt_ops = calloc(1, sizeof(*hlua_flt_ops));
Christopher Fauletc86bb872021-08-13 08:33:57 +020010716 if (!hlua_flt_ops)
10717 goto error;
Christopher Faulet69c581a2021-05-31 08:54:04 +020010718 hlua_flt_ops->init = hlua_filter_init;
10719 hlua_flt_ops->deinit = hlua_filter_deinit;
10720 if (state_id) {
10721 /* Set per-thread callback if script is loaded per-thread */
10722 hlua_flt_ops->init_per_thread = hlua_filter_init_per_thread;
10723 hlua_flt_ops->deinit_per_thread = hlua_filter_deinit_per_thread;
10724 }
10725 hlua_flt_ops->attach = hlua_filter_new;
10726 hlua_flt_ops->detach = hlua_filter_delete;
10727
10728 /* Push the filter class on the stack and resolve all callbacks */
10729 lua_rawgeti(L, LUA_REGISTRYINDEX, reg_flt->flt_ref[state_id]);
10730
Christopher Fauletc404f112020-02-26 15:03:09 +010010731 if (lua_getfield(L, -1, "start_analyze") == LUA_TFUNCTION)
10732 hlua_flt_ops->channel_start_analyze = hlua_filter_start_analyze;
10733 lua_pop(L, 1);
10734 if (lua_getfield(L, -1, "end_analyze") == LUA_TFUNCTION)
10735 hlua_flt_ops->channel_end_analyze = hlua_filter_end_analyze;
10736 lua_pop(L, 1);
Christopher Fauleteae8afa2020-02-26 17:15:48 +010010737 if (lua_getfield(L, -1, "http_headers") == LUA_TFUNCTION)
10738 hlua_flt_ops->http_headers = hlua_filter_http_headers;
10739 lua_pop(L, 1);
10740 if (lua_getfield(L, -1, "http_payload") == LUA_TFUNCTION)
10741 hlua_flt_ops->http_payload = hlua_filter_http_payload;
10742 lua_pop(L, 1);
10743 if (lua_getfield(L, -1, "http_end") == LUA_TFUNCTION)
10744 hlua_flt_ops->http_end = hlua_filter_http_end;
10745 lua_pop(L, 1);
Christopher Fauletc404f112020-02-26 15:03:09 +010010746 if (lua_getfield(L, -1, "tcp_payload") == LUA_TFUNCTION)
10747 hlua_flt_ops->tcp_payload = hlua_filter_tcp_payload;
10748 lua_pop(L, 1);
Christopher Faulet69c581a2021-05-31 08:54:04 +020010749
10750 /* Get id and flags of the filter class */
10751 if (lua_getfield(L, -1, "id") == LUA_TSTRING)
10752 flt_id = lua_tostring(L, -1);
10753 lua_pop(L, 1);
10754 if (lua_getfield(L, -1, "flags") == LUA_TNUMBER)
10755 flt_flags = lua_tointeger(L, -1);
10756 lua_pop(L, 1);
10757
10758 /* Create the filter config */
10759 conf = calloc(1, sizeof(*conf));
Christopher Fauletc86bb872021-08-13 08:33:57 +020010760 if (!conf)
Christopher Faulet69c581a2021-05-31 08:54:04 +020010761 goto error;
Christopher Faulet69c581a2021-05-31 08:54:04 +020010762 conf->reg = reg_flt;
10763
10764 /* duplicate args */
10765 for (pos = 0; *args[*cur_arg + 1 + pos]; pos++);
10766 conf->args = calloc(pos + 1, sizeof(*conf->args));
Christopher Fauletc86bb872021-08-13 08:33:57 +020010767 if (!conf->args)
10768 goto error;
10769 for (pos = 0; *args[*cur_arg + 1 + pos]; pos++) {
Christopher Faulet69c581a2021-05-31 08:54:04 +020010770 conf->args[pos] = strdup(args[*cur_arg + 1 + pos]);
Christopher Fauletc86bb872021-08-13 08:33:57 +020010771 if (!conf->args[pos])
10772 goto error;
10773 }
Christopher Faulet69c581a2021-05-31 08:54:04 +020010774 conf->args[pos] = NULL;
10775 *cur_arg += pos + 1;
10776
Christopher Fauletc86bb872021-08-13 08:33:57 +020010777 if (flt_id) {
10778 fconf->id = strdup(flt_id);
10779 if (!fconf->id)
10780 goto error;
10781 }
Christopher Faulet69c581a2021-05-31 08:54:04 +020010782 fconf->flags = flt_flags;
10783 fconf->conf = conf;
10784 fconf->ops = hlua_flt_ops;
10785
10786 lua_settop(L, 0);
10787 return 0;
10788
10789 error:
Christopher Fauletc86bb872021-08-13 08:33:57 +020010790 memprintf(err, "Lua filter '%s' : Lua out of memory error", reg_flt->name);
Christopher Faulet69c581a2021-05-31 08:54:04 +020010791 free(hlua_flt_ops);
Christopher Fauletc86bb872021-08-13 08:33:57 +020010792 if (conf && conf->args) {
10793 for (pos = 0; conf->args[pos]; pos++)
10794 free(conf->args[pos]);
10795 free(conf->args);
10796 }
Christopher Faulet69c581a2021-05-31 08:54:04 +020010797 free(conf);
Christopher Fauletc86bb872021-08-13 08:33:57 +020010798 free((char *)fconf->id);
Christopher Faulet69c581a2021-05-31 08:54:04 +020010799 lua_settop(L, 0);
10800 return -1;
10801}
10802
Christopher Fauletc404f112020-02-26 15:03:09 +010010803__LJMP static int hlua_register_data_filter(lua_State *L)
10804{
10805 struct filter *filter;
10806 struct channel *chn;
10807
10808 MAY_LJMP(check_args(L, 2, "register_data_filter"));
10809 MAY_LJMP(luaL_checktype(L, 1, LUA_TTABLE));
10810 chn = MAY_LJMP(hlua_checkchannel(L, 2));
10811
10812 lua_getfield(L, 1, "__filter");
10813 MAY_LJMP(luaL_checktype(L, -1, LUA_TLIGHTUSERDATA));
10814 filter = lua_touserdata (L, -1);
10815 lua_pop(L, 1);
10816
10817 register_data_filter(chn_strm(chn), chn, filter);
10818 return 1;
10819}
10820
10821__LJMP static int hlua_unregister_data_filter(lua_State *L)
10822{
10823 struct filter *filter;
10824 struct channel *chn;
10825
10826 MAY_LJMP(check_args(L, 2, "unregister_data_filter"));
10827 MAY_LJMP(luaL_checktype(L, 1, LUA_TTABLE));
10828 chn = MAY_LJMP(hlua_checkchannel(L, 2));
10829
10830 lua_getfield(L, 1, "__filter");
10831 MAY_LJMP(luaL_checktype(L, -1, LUA_TLIGHTUSERDATA));
10832 filter = lua_touserdata (L, -1);
10833 lua_pop(L, 1);
10834
10835 unregister_data_filter(chn_strm(chn), chn, filter);
10836 return 1;
10837}
10838
Christopher Faulet69c581a2021-05-31 08:54:04 +020010839/* This function is an LUA binding used for registering a filter. It expects a
Ilya Shipitsinff0f2782021-08-22 22:18:07 +050010840 * filter name used in the haproxy configuration file and a LUA function to
Christopher Faulet69c581a2021-05-31 08:54:04 +020010841 * parse configuration arguments.
10842 */
10843__LJMP static int hlua_register_filter(lua_State *L)
10844{
10845 struct buffer *trash;
10846 struct flt_kw_list *fkl;
10847 struct flt_kw *fkw;
10848 const char *name;
10849 struct hlua_reg_filter *reg_flt= NULL;
10850 int flt_ref, fun_ref;
10851 int len;
10852
10853 MAY_LJMP(check_args(L, 3, "register_filter"));
10854
10855 /* First argument : filter name. */
10856 name = MAY_LJMP(luaL_checkstring(L, 1));
10857
10858 /* Second argument : The filter class */
10859 flt_ref = MAY_LJMP(hlua_checktable(L, 2));
10860
10861 /* Third argument : lua function. */
10862 fun_ref = MAY_LJMP(hlua_checkfunction(L, 3));
10863
10864 trash = get_trash_chunk();
10865 chunk_printf(trash, "lua.%s", name);
10866 fkw = flt_find_kw(trash->area);
10867 if (fkw != NULL) {
10868 reg_flt = fkw->private;
10869 if (reg_flt->flt_ref[hlua_state_id] != -1 || reg_flt->fun_ref[hlua_state_id] != -1) {
10870 ha_warning("Trying to register filter 'lua.%s' more than once. "
10871 "This will become a hard error in version 2.5.\n", name);
10872 }
10873 reg_flt->flt_ref[hlua_state_id] = flt_ref;
10874 reg_flt->fun_ref[hlua_state_id] = fun_ref;
10875 return 0;
10876 }
10877
10878 fkl = calloc(1, sizeof(*fkl) + sizeof(struct flt_kw) * 2);
10879 if (!fkl)
10880 goto alloc_error;
10881 fkl->scope = "HLUA";
10882
10883 reg_flt = new_hlua_reg_filter(name);
10884 if (!reg_flt)
10885 goto alloc_error;
10886
10887 reg_flt->flt_ref[hlua_state_id] = flt_ref;
10888 reg_flt->fun_ref[hlua_state_id] = fun_ref;
10889
10890 /* The filter keyword */
10891 len = strlen("lua.") + strlen(name) + 1;
10892 fkl->kw[0].kw = calloc(1, len);
10893 if (!fkl->kw[0].kw)
10894 goto alloc_error;
10895
10896 snprintf((char *)fkl->kw[0].kw, len, "lua.%s", name);
10897
10898 fkl->kw[0].parse = hlua_filter_parse_fct;
10899 fkl->kw[0].private = reg_flt;
10900 memset(&fkl->kw[1], 0, sizeof(*fkl->kw));
10901
10902 /* Register this new filter */
10903 flt_register_keywords(fkl);
10904
10905 return 0;
10906
10907 alloc_error:
10908 release_hlua_reg_filter(reg_flt);
10909 ha_free(&fkl);
10910 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
10911 return 0; /* Never reached */
10912}
10913
Thierry FOURNIERbd413492015-03-03 16:52:26 +010010914static int hlua_read_timeout(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +010010915 const struct proxy *defpx, const char *file, int line,
Thierry FOURNIERbd413492015-03-03 16:52:26 +010010916 char **err, unsigned int *timeout)
10917{
10918 const char *error;
10919
10920 error = parse_time_err(args[1], timeout, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +020010921 if (error == PARSE_TIME_OVER) {
10922 memprintf(err, "timer overflow in argument <%s> to <%s> (maximum value is 2147483647 ms or ~24.8 days)",
10923 args[1], args[0]);
10924 return -1;
10925 }
10926 else if (error == PARSE_TIME_UNDER) {
10927 memprintf(err, "timer underflow in argument <%s> to <%s> (minimum non-null value is 1 ms)",
10928 args[1], args[0]);
10929 return -1;
10930 }
10931 else if (error) {
Thierry FOURNIERbd413492015-03-03 16:52:26 +010010932 memprintf(err, "%s: invalid timeout", args[0]);
10933 return -1;
10934 }
10935 return 0;
10936}
10937
10938static int hlua_session_timeout(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +010010939 const struct proxy *defpx, const char *file, int line,
Thierry FOURNIERbd413492015-03-03 16:52:26 +010010940 char **err)
10941{
10942 return hlua_read_timeout(args, section_type, curpx, defpx,
10943 file, line, err, &hlua_timeout_session);
10944}
10945
10946static int hlua_task_timeout(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +010010947 const struct proxy *defpx, const char *file, int line,
Thierry FOURNIERbd413492015-03-03 16:52:26 +010010948 char **err)
10949{
10950 return hlua_read_timeout(args, section_type, curpx, defpx,
10951 file, line, err, &hlua_timeout_task);
10952}
10953
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +020010954static int hlua_applet_timeout(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +010010955 const struct proxy *defpx, const char *file, int line,
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +020010956 char **err)
10957{
10958 return hlua_read_timeout(args, section_type, curpx, defpx,
10959 file, line, err, &hlua_timeout_applet);
10960}
10961
Thierry FOURNIERee9f8022015-03-03 17:37:37 +010010962static int hlua_forced_yield(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +010010963 const struct proxy *defpx, const char *file, int line,
Thierry FOURNIERee9f8022015-03-03 17:37:37 +010010964 char **err)
10965{
10966 char *error;
10967
10968 hlua_nb_instruction = strtoll(args[1], &error, 10);
10969 if (*error != '\0') {
10970 memprintf(err, "%s: invalid number", args[0]);
10971 return -1;
10972 }
10973 return 0;
10974}
10975
Willy Tarreau32f61e22015-03-18 17:54:59 +010010976static int hlua_parse_maxmem(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +010010977 const struct proxy *defpx, const char *file, int line,
Willy Tarreau32f61e22015-03-18 17:54:59 +010010978 char **err)
10979{
10980 char *error;
10981
10982 if (*(args[1]) == 0) {
10983 memprintf(err, "'%s' expects an integer argument (Lua memory size in MB).\n", args[0]);
10984 return -1;
10985 }
10986 hlua_global_allocator.limit = strtoll(args[1], &error, 10) * 1024L * 1024L;
10987 if (*error != '\0') {
10988 memprintf(err, "%s: invalid number %s (error at '%c')", args[0], args[1], *error);
10989 return -1;
10990 }
10991 return 0;
10992}
10993
10994
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010010995/* This function is called by the main configuration key "lua-load". It loads and
10996 * execute an lua file during the parsing of the HAProxy configuration file. It is
10997 * the main lua entry point.
10998 *
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -080010999 * This function runs with the HAProxy keywords API. It returns -1 if an error
11000 * occurs, otherwise it returns 0.
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011001 *
11002 * In some error case, LUA set an error message in top of the stack. This function
11003 * returns this error message in the HAProxy logs and pop it from the stack.
Thierry FOURNIERbabae282015-09-17 11:36:37 +020011004 *
11005 * This function can fail with an abort() due to an Lua critical error.
11006 * We are in the configuration parsing process of HAProxy, this abort() is
11007 * tolerated.
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011008 */
Thierry Fournierc93c15c2020-11-28 15:02:13 +010011009static int hlua_load_state(char *filename, lua_State *L, char **err)
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011010{
11011 int error;
11012
11013 /* Just load and compile the file. */
Thierry Fournierc93c15c2020-11-28 15:02:13 +010011014 error = luaL_loadfile(L, filename);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011015 if (error) {
Thierry Fournierc93c15c2020-11-28 15:02:13 +010011016 memprintf(err, "error in Lua file '%s': %s", filename, lua_tostring(L, -1));
11017 lua_pop(L, 1);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011018 return -1;
11019 }
11020
11021 /* If no syntax error where detected, execute the code. */
Thierry Fournierc93c15c2020-11-28 15:02:13 +010011022 error = lua_pcall(L, 0, LUA_MULTRET, 0);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011023 switch (error) {
11024 case LUA_OK:
11025 break;
11026 case LUA_ERRRUN:
Thierry Fournierc93c15c2020-11-28 15:02:13 +010011027 memprintf(err, "Lua runtime error: %s\n", lua_tostring(L, -1));
11028 lua_pop(L, 1);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011029 return -1;
11030 case LUA_ERRMEM:
Thierry Fournierde6145f2020-11-29 00:55:53 +010011031 memprintf(err, "Lua out of memory error\n");
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011032 return -1;
11033 case LUA_ERRERR:
Thierry Fournierc93c15c2020-11-28 15:02:13 +010011034 memprintf(err, "Lua message handler error: %s\n", lua_tostring(L, -1));
11035 lua_pop(L, 1);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011036 return -1;
Christopher Faulet08ed98f2020-07-28 10:33:25 +020011037#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM <= 503
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011038 case LUA_ERRGCMM:
Thierry Fournierc93c15c2020-11-28 15:02:13 +010011039 memprintf(err, "Lua garbage collector error: %s\n", lua_tostring(L, -1));
11040 lua_pop(L, 1);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011041 return -1;
Christopher Faulet08ed98f2020-07-28 10:33:25 +020011042#endif
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011043 default:
Thierry Fournierc93c15c2020-11-28 15:02:13 +010011044 memprintf(err, "Lua unknown error: %s\n", lua_tostring(L, -1));
11045 lua_pop(L, 1);
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011046 return -1;
11047 }
11048
11049 return 0;
11050}
11051
Thierry Fournierc93c15c2020-11-28 15:02:13 +010011052static int hlua_load(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +010011053 const struct proxy *defpx, const char *file, int line,
Thierry Fournierc93c15c2020-11-28 15:02:13 +010011054 char **err)
11055{
11056 if (*(args[1]) == 0) {
11057 memprintf(err, "'%s' expects a file name as parameter.\n", args[0]);
11058 return -1;
11059 }
11060
Thierry Fournier59f11be2020-11-29 00:37:41 +010011061 /* loading for global state */
Thierry Fournierc7492592020-11-28 23:57:24 +010011062 hlua_state_id = 0;
Willy Tarreau43ab05b2021-09-28 09:43:11 +020011063 ha_set_thread(NULL);
Thierry Fournierafc63e22020-11-28 17:06:51 +010011064 return hlua_load_state(args[1], hlua_states[0], err);
Thierry Fournierc93c15c2020-11-28 15:02:13 +010011065}
11066
Thierry Fournier59f11be2020-11-29 00:37:41 +010011067static int hlua_load_per_thread(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +010011068 const struct proxy *defpx, const char *file, int line,
Thierry Fournier59f11be2020-11-29 00:37:41 +010011069 char **err)
11070{
11071 int len;
11072
11073 if (*(args[1]) == 0) {
11074 memprintf(err, "'%s' expects a file as parameter.\n", args[0]);
11075 return -1;
11076 }
11077
11078 if (per_thread_load == NULL) {
11079 /* allocate the first entry large enough to store the final NULL */
11080 per_thread_load = calloc(1, sizeof(*per_thread_load));
11081 if (per_thread_load == NULL) {
11082 memprintf(err, "out of memory error");
11083 return -1;
11084 }
11085 }
11086
11087 /* count used entries */
11088 for (len = 0; per_thread_load[len] != NULL; len++)
11089 ;
11090
11091 per_thread_load = realloc(per_thread_load, (len + 2) * sizeof(*per_thread_load));
11092 if (per_thread_load == NULL) {
11093 memprintf(err, "out of memory error");
11094 return -1;
11095 }
11096
11097 per_thread_load[len] = strdup(args[1]);
11098 per_thread_load[len + 1] = NULL;
11099
11100 if (per_thread_load[len] == NULL) {
11101 memprintf(err, "out of memory error");
11102 return -1;
11103 }
11104
11105 /* loading for thread 1 only */
11106 hlua_state_id = 1;
Willy Tarreau43ab05b2021-09-28 09:43:11 +020011107 ha_set_thread(NULL);
Thierry Fournier59f11be2020-11-29 00:37:41 +010011108 return hlua_load_state(args[1], hlua_states[1], err);
11109}
11110
Tim Duesterhusc9fc9f22020-01-12 13:55:39 +010011111/* Prepend the given <path> followed by a semicolon to the `package.<type>` variable
11112 * in the given <ctx>.
11113 */
Thierry Fournier3fb9e512020-11-28 10:13:12 +010011114static int hlua_prepend_path(lua_State *L, char *type, char *path)
Tim Duesterhusc9fc9f22020-01-12 13:55:39 +010011115{
Thierry Fournier3fb9e512020-11-28 10:13:12 +010011116 lua_getglobal(L, "package"); /* push package variable */
11117 lua_pushstring(L, path); /* push given path */
11118 lua_pushstring(L, ";"); /* push semicolon */
11119 lua_getfield(L, -3, type); /* push old path */
11120 lua_concat(L, 3); /* concatenate to new path */
11121 lua_setfield(L, -2, type); /* store new path */
11122 lua_pop(L, 1); /* pop package variable */
Tim Duesterhusc9fc9f22020-01-12 13:55:39 +010011123
11124 return 0;
11125}
11126
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +010011127static int hlua_config_prepend_path(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +010011128 const struct proxy *defpx, const char *file, int line,
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +010011129 char **err)
11130{
11131 char *path;
11132 char *type = "path";
Tim Duesterhus621e74a2021-01-03 20:04:36 +010011133 struct prepend_path *p = NULL;
Thierry Fournier59f11be2020-11-29 00:37:41 +010011134
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +010011135 if (too_many_args(2, args, err, NULL)) {
Tim Duesterhus621e74a2021-01-03 20:04:36 +010011136 goto err;
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +010011137 }
11138
11139 if (!(*args[1])) {
11140 memprintf(err, "'%s' expects to receive a <path> as argument", args[0]);
Tim Duesterhus621e74a2021-01-03 20:04:36 +010011141 goto err;
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +010011142 }
11143 path = args[1];
11144
11145 if (*args[2]) {
11146 if (strcmp(args[2], "path") != 0 && strcmp(args[2], "cpath") != 0) {
11147 memprintf(err, "'%s' expects <type> to either be 'path' or 'cpath'", args[0]);
Tim Duesterhus621e74a2021-01-03 20:04:36 +010011148 goto err;
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +010011149 }
11150 type = args[2];
11151 }
11152
Thierry Fournier59f11be2020-11-29 00:37:41 +010011153 p = calloc(1, sizeof(*p));
11154 if (p == NULL) {
Tim Duesterhusf89d43a2021-01-03 20:04:37 +010011155 memprintf(err, "memory allocation failed");
Tim Duesterhus621e74a2021-01-03 20:04:36 +010011156 goto err;
Thierry Fournier59f11be2020-11-29 00:37:41 +010011157 }
11158 p->path = strdup(path);
11159 if (p->path == NULL) {
Tim Duesterhusf89d43a2021-01-03 20:04:37 +010011160 memprintf(err, "memory allocation failed");
Tim Duesterhus621e74a2021-01-03 20:04:36 +010011161 goto err2;
Thierry Fournier59f11be2020-11-29 00:37:41 +010011162 }
11163 p->type = strdup(type);
11164 if (p->type == NULL) {
Tim Duesterhusf89d43a2021-01-03 20:04:37 +010011165 memprintf(err, "memory allocation failed");
Tim Duesterhus621e74a2021-01-03 20:04:36 +010011166 goto err2;
Thierry Fournier59f11be2020-11-29 00:37:41 +010011167 }
Willy Tarreau2b718102021-04-21 07:32:39 +020011168 LIST_APPEND(&prepend_path_list, &p->l);
Thierry Fournier59f11be2020-11-29 00:37:41 +010011169
11170 hlua_prepend_path(hlua_states[0], type, path);
11171 hlua_prepend_path(hlua_states[1], type, path);
11172 return 0;
Tim Duesterhus621e74a2021-01-03 20:04:36 +010011173
11174err2:
11175 free(p->type);
11176 free(p->path);
11177err:
11178 free(p);
11179 return -1;
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +010011180}
11181
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011182/* configuration keywords declaration */
11183static struct cfg_kw_list cfg_kws = {{ },{
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +010011184 { CFG_GLOBAL, "lua-prepend-path", hlua_config_prepend_path },
Thierry FOURNIERbd413492015-03-03 16:52:26 +010011185 { CFG_GLOBAL, "lua-load", hlua_load },
Thierry Fournier59f11be2020-11-29 00:37:41 +010011186 { CFG_GLOBAL, "lua-load-per-thread", hlua_load_per_thread },
Thierry FOURNIERbd413492015-03-03 16:52:26 +010011187 { CFG_GLOBAL, "tune.lua.session-timeout", hlua_session_timeout },
11188 { CFG_GLOBAL, "tune.lua.task-timeout", hlua_task_timeout },
Thierry FOURNIER56da1012015-10-01 08:42:31 +020011189 { CFG_GLOBAL, "tune.lua.service-timeout", hlua_applet_timeout },
Thierry FOURNIERee9f8022015-03-03 17:37:37 +010011190 { CFG_GLOBAL, "tune.lua.forced-yield", hlua_forced_yield },
Willy Tarreau32f61e22015-03-18 17:54:59 +010011191 { CFG_GLOBAL, "tune.lua.maxmem", hlua_parse_maxmem },
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +010011192 { 0, NULL, NULL },
11193}};
11194
Willy Tarreau0108d902018-11-25 19:14:37 +010011195INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
11196
Christopher Fauletafd8f102018-11-08 11:34:21 +010011197
Thierry FOURNIERbabae282015-09-17 11:36:37 +020011198/* This function can fail with an abort() due to an Lua critical error.
11199 * We are in the initialisation process of HAProxy, this abort() is
11200 * tolerated.
11201 */
Thierry Fournierb8cef172020-11-28 15:37:17 +010011202int hlua_post_init_state(lua_State *L)
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +010011203{
11204 struct hlua_init_function *init;
11205 const char *msg;
11206 enum hlua_exec ret;
Thierry Fournierfd107a22016-02-19 19:57:23 +010011207 const char *error;
Thierry Fournier670db242020-11-28 10:49:59 +010011208 const char *kind;
11209 const char *trace;
11210 int return_status = 1;
11211#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504
11212 int nres;
11213#endif
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +010011214
Willy Tarreaucdb53462020-12-02 12:12:00 +010011215 /* disable memory limit checks if limit is not set */
11216 if (!hlua_global_allocator.limit)
11217 hlua_global_allocator.limit = ~hlua_global_allocator.limit;
11218
Ilya Shipitsin856aabc2020-04-16 23:51:34 +050011219 /* Call post initialisation function in safe environment. */
Thierry Fournier3c539322020-11-28 16:05:05 +010011220 if (setjmp(safe_ljmp_env) != 0) {
11221 lua_atpanic(L, hlua_panic_safe);
Thierry Fournierb8cef172020-11-28 15:37:17 +010011222 if (lua_type(L, -1) == LUA_TSTRING)
11223 error = lua_tostring(L, -1);
Thierry Fournier3d4a6752016-02-19 20:53:30 +010011224 else
11225 error = "critical error";
11226 fprintf(stderr, "Lua post-init: %s.\n", error);
11227 exit(1);
Thierry Fournier3c539322020-11-28 16:05:05 +010011228 } else {
11229 lua_atpanic(L, hlua_panic_ljmp);
Thierry Fournier3d4a6752016-02-19 20:53:30 +010011230 }
Frédéric Lécaille54f2bcf2018-08-29 13:46:24 +020011231
Thierry Fournierb8cef172020-11-28 15:37:17 +010011232 hlua_fcn_post_init(L);
Thierry Fournier3d4a6752016-02-19 20:53:30 +010011233
Thierry Fournierc7492592020-11-28 23:57:24 +010011234 list_for_each_entry(init, &hlua_init_functions[hlua_state_id], l) {
Thierry Fournierb8cef172020-11-28 15:37:17 +010011235 lua_rawgeti(L, LUA_REGISTRYINDEX, init->function_ref);
Thierry Fournier670db242020-11-28 10:49:59 +010011236
11237#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504
Thierry Fournierb8cef172020-11-28 15:37:17 +010011238 ret = lua_resume(L, L, 0, &nres);
Thierry Fournier670db242020-11-28 10:49:59 +010011239#else
Thierry Fournierb8cef172020-11-28 15:37:17 +010011240 ret = lua_resume(L, L, 0);
Thierry Fournier670db242020-11-28 10:49:59 +010011241#endif
11242 kind = NULL;
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +010011243 switch (ret) {
Thierry Fournier670db242020-11-28 10:49:59 +010011244
11245 case LUA_OK:
Thierry Fournierb8cef172020-11-28 15:37:17 +010011246 lua_pop(L, -1);
Thierry Fournier13d08b72020-11-28 11:02:58 +010011247 break;
Thierry Fournier670db242020-11-28 10:49:59 +010011248
11249 case LUA_ERRERR:
11250 kind = "message handler error";
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -070011251 /* Fall through */
Thierry Fournier670db242020-11-28 10:49:59 +010011252 case LUA_ERRRUN:
11253 if (!kind)
11254 kind = "runtime error";
Thierry Fournierb8cef172020-11-28 15:37:17 +010011255 msg = lua_tostring(L, -1);
11256 lua_settop(L, 0); /* Empty the stack. */
11257 lua_pop(L, 1);
Christopher Fauletd09cc512021-03-24 14:48:45 +010011258 trace = hlua_traceback(L, ", ");
Thierry Fournier670db242020-11-28 10:49:59 +010011259 if (msg)
11260 ha_alert("Lua init: %s: '%s' from %s\n", kind, msg, trace);
11261 else
11262 ha_alert("Lua init: unknown %s from %s\n", kind, trace);
11263 return_status = 0;
11264 break;
11265
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +010011266 default:
Thierry Fournier670db242020-11-28 10:49:59 +010011267 /* Unknown error */
11268 kind = "Unknown error";
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -070011269 /* Fall through */
Thierry Fournier670db242020-11-28 10:49:59 +010011270 case LUA_YIELD:
11271 /* yield is not configured at this step, this state doesn't happen */
11272 if (!kind)
11273 kind = "yield not allowed";
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -070011274 /* Fall through */
Thierry Fournier670db242020-11-28 10:49:59 +010011275 case LUA_ERRMEM:
11276 if (!kind)
11277 kind = "out of memory error";
Thierry Fournierb8cef172020-11-28 15:37:17 +010011278 lua_settop(L, 0);
11279 lua_pop(L, 1);
Christopher Fauletd09cc512021-03-24 14:48:45 +010011280 trace = hlua_traceback(L, ", ");
Thierry Fournier670db242020-11-28 10:49:59 +010011281 ha_alert("Lua init: %s: %s\n", kind, trace);
11282 return_status = 0;
11283 break;
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +010011284 }
Thierry Fournier670db242020-11-28 10:49:59 +010011285 if (!return_status)
11286 break;
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +010011287 }
Thierry Fournier3c539322020-11-28 16:05:05 +010011288
11289 lua_atpanic(L, hlua_panic_safe);
Thierry Fournier670db242020-11-28 10:49:59 +010011290 return return_status;
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +010011291}
11292
Thierry Fournierb8cef172020-11-28 15:37:17 +010011293int hlua_post_init()
11294{
Thierry Fournier59f11be2020-11-29 00:37:41 +010011295 int ret;
11296 int i;
11297 int errors;
11298 char *err = NULL;
11299 struct hlua_function *fcn;
Christopher Faulet69c581a2021-05-31 08:54:04 +020011300 struct hlua_reg_filter *reg_flt;
Thierry Fournier59f11be2020-11-29 00:37:41 +010011301
Willy Tarreaub1310492021-08-30 09:35:18 +020011302#if defined(USE_OPENSSL)
Thierry Fournierb8cef172020-11-28 15:37:17 +010011303 /* Initialize SSL server. */
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +010011304 if (socket_ssl->xprt->prepare_srv) {
Thierry Fournierb8cef172020-11-28 15:37:17 +010011305 int saved_used_backed = global.ssl_used_backend;
11306 // don't affect maxconn automatic computation
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +010011307 socket_ssl->xprt->prepare_srv(socket_ssl);
Thierry Fournierb8cef172020-11-28 15:37:17 +010011308 global.ssl_used_backend = saved_used_backed;
11309 }
11310#endif
11311
Thierry Fournierc7492592020-11-28 23:57:24 +010011312 /* Perform post init of common thread */
11313 hlua_state_id = 0;
Willy Tarreau43ab05b2021-09-28 09:43:11 +020011314 ha_set_thread(&ha_thread_info[0]);
Thierry Fournier59f11be2020-11-29 00:37:41 +010011315 ret = hlua_post_init_state(hlua_states[hlua_state_id]);
11316 if (ret == 0)
11317 return 0;
11318
11319 /* init remaining lua states and load files */
11320 for (hlua_state_id = 2; hlua_state_id < global.nbthread + 1; hlua_state_id++) {
11321
11322 /* set thread context */
Willy Tarreau43ab05b2021-09-28 09:43:11 +020011323 ha_set_thread(&ha_thread_info[hlua_state_id - 1]);
Thierry Fournier59f11be2020-11-29 00:37:41 +010011324
11325 /* Init lua state */
11326 hlua_states[hlua_state_id] = hlua_init_state(hlua_state_id);
11327
11328 /* Load lua files */
11329 for (i = 0; per_thread_load && per_thread_load[i]; i++) {
11330 ret = hlua_load_state(per_thread_load[i], hlua_states[hlua_state_id], &err);
11331 if (ret != 0) {
11332 ha_alert("Lua init: %s\n", err);
11333 return 0;
11334 }
11335 }
11336 }
11337
11338 /* Reset thread context */
Willy Tarreau43ab05b2021-09-28 09:43:11 +020011339 ha_set_thread(NULL);
Thierry Fournier59f11be2020-11-29 00:37:41 +010011340
11341 /* Execute post init for all states */
11342 for (hlua_state_id = 1; hlua_state_id < global.nbthread + 1; hlua_state_id++) {
11343
11344 /* set thread context */
Willy Tarreau43ab05b2021-09-28 09:43:11 +020011345 ha_set_thread(&ha_thread_info[hlua_state_id - 1]);
Thierry Fournier59f11be2020-11-29 00:37:41 +010011346
11347 /* run post init */
11348 ret = hlua_post_init_state(hlua_states[hlua_state_id]);
11349 if (ret == 0)
11350 return 0;
11351 }
11352
11353 /* Reset thread context */
Willy Tarreau43ab05b2021-09-28 09:43:11 +020011354 ha_set_thread(NULL);
Thierry Fournier59f11be2020-11-29 00:37:41 +010011355
11356 /* control functions registering. Each function must have:
11357 * - only the function_ref[0] set positive and all other to -1
11358 * - only the function_ref[0] set to -1 and all other positive
11359 * This ensure a same reference is not used both in shared
11360 * lua state and thread dedicated lua state. Note: is the case
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +050011361 * reach, the shared state is priority, but the bug will be
Thierry Fournier59f11be2020-11-29 00:37:41 +010011362 * complicated to found for the end user.
11363 */
11364 errors = 0;
11365 list_for_each_entry(fcn, &referenced_functions, l) {
11366 ret = 0;
11367 for (i = 1; i < global.nbthread + 1; i++) {
11368 if (fcn->function_ref[i] == -1)
11369 ret--;
11370 else
11371 ret++;
11372 }
11373 if (abs(ret) != global.nbthread) {
11374 ha_alert("Lua function '%s' is not referenced in all thread. "
11375 "Expect function in all thread or in none thread.\n", fcn->name);
11376 errors++;
11377 continue;
11378 }
11379
11380 if ((fcn->function_ref[0] == -1) == (ret < 0)) {
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +050011381 ha_alert("Lua function '%s' is referenced both ins shared Lua context (through lua-load) "
11382 "and per-thread Lua context (through lua-load-per-thread). these two context "
Thierry Fournier59f11be2020-11-29 00:37:41 +010011383 "exclusive.\n", fcn->name);
11384 errors++;
11385 }
11386 }
11387
Christopher Faulet69c581a2021-05-31 08:54:04 +020011388 /* Do the same with registered filters */
11389 list_for_each_entry(reg_flt, &referenced_filters, l) {
11390 ret = 0;
11391 for (i = 1; i < global.nbthread + 1; i++) {
11392 if (reg_flt->flt_ref[i] == -1)
11393 ret--;
11394 else
11395 ret++;
11396 }
11397 if (abs(ret) != global.nbthread) {
11398 ha_alert("Lua filter '%s' is not referenced in all thread. "
11399 "Expect function in all thread or in none thread.\n", reg_flt->name);
11400 errors++;
11401 continue;
11402 }
11403
11404 if ((reg_flt->flt_ref[0] == -1) == (ret < 0)) {
11405 ha_alert("Lua filter '%s' is referenced both ins shared Lua context (through lua-load) "
11406 "and per-thread Lua context (through lua-load-per-thread). these two context "
11407 "exclusive.\n", fcn->name);
11408 errors++;
11409 }
11410 }
11411
11412
Thierry Fournier59f11be2020-11-29 00:37:41 +010011413 if (errors > 0)
11414 return 0;
11415
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +050011416 /* after this point, this global will no longer be used, so set to
Thierry Fournier59f11be2020-11-29 00:37:41 +010011417 * -1 in order to have probably a segfault if someone use it
11418 */
11419 hlua_state_id = -1;
11420
11421 return 1;
Thierry Fournierb8cef172020-11-28 15:37:17 +010011422}
11423
Willy Tarreau32f61e22015-03-18 17:54:59 +010011424/* The memory allocator used by the Lua stack. <ud> is a pointer to the
11425 * allocator's context. <ptr> is the pointer to alloc/free/realloc. <osize>
11426 * is the previously allocated size or the kind of object in case of a new
Willy Tarreaud36c7fa2020-12-02 12:26:29 +010011427 * allocation. <nsize> is the requested new size. A new allocation is
11428 * indicated by <ptr> being NULL. A free is indicated by <nsize> being
Willy Tarreaucdb53462020-12-02 12:12:00 +010011429 * zero. This one verifies that the limits are respected but is optimized
11430 * for the fast case where limits are not used, hence stats are not updated.
Willy Tarreau32f61e22015-03-18 17:54:59 +010011431 */
11432static void *hlua_alloc(void *ud, void *ptr, size_t osize, size_t nsize)
11433{
11434 struct hlua_mem_allocator *zone = ud;
Willy Tarreaucdb53462020-12-02 12:12:00 +010011435 size_t limit, old, new;
11436
Tim Duesterhus22586522021-01-08 10:35:33 +010011437 if (unlikely(!ptr && !nsize))
11438 return NULL;
11439
Willy Tarreaucdb53462020-12-02 12:12:00 +010011440 /* a limit of ~0 means unlimited and boot complete, so there's no need
11441 * for accounting anymore.
11442 */
Christopher Fauletcc2c4f82021-03-24 14:52:24 +010011443 if (likely(~zone->limit == 0))
11444 return realloc(ptr, nsize);
Willy Tarreau32f61e22015-03-18 17:54:59 +010011445
Willy Tarreaud36c7fa2020-12-02 12:26:29 +010011446 if (!ptr)
11447 osize = 0;
Willy Tarreau32f61e22015-03-18 17:54:59 +010011448
Willy Tarreaucdb53462020-12-02 12:12:00 +010011449 /* enforce strict limits across all threads */
11450 limit = zone->limit;
11451 old = _HA_ATOMIC_LOAD(&zone->allocated);
11452 do {
11453 new = old + nsize - osize;
11454 if (unlikely(nsize && limit && new > limit))
11455 return NULL;
11456 } while (!_HA_ATOMIC_CAS(&zone->allocated, &old, new));
Willy Tarreau32f61e22015-03-18 17:54:59 +010011457
11458 ptr = realloc(ptr, nsize);
Willy Tarreaucdb53462020-12-02 12:12:00 +010011459
11460 if (unlikely(!ptr && nsize)) // failed
11461 _HA_ATOMIC_SUB(&zone->allocated, nsize - osize);
11462
11463 __ha_barrier_atomic_store();
Willy Tarreau32f61e22015-03-18 17:54:59 +010011464 return ptr;
11465}
11466
Thierry Fournierecb83c22020-11-28 15:49:44 +010011467/* This function can fail with an abort() due to a Lua critical error.
Thierry FOURNIERbabae282015-09-17 11:36:37 +020011468 * We are in the initialisation process of HAProxy, this abort() is
11469 * tolerated.
11470 */
Thierry Fournierecb83c22020-11-28 15:49:44 +010011471lua_State *hlua_init_state(int thread_num)
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +010011472{
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +010011473 int i;
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +010011474 int idx;
11475 struct sample_fetch *sf;
Thierry FOURNIER594afe72015-03-10 23:58:30 +010011476 struct sample_conv *sc;
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +010011477 char *p;
Thierry Fournierfd107a22016-02-19 19:57:23 +010011478 const char *error_msg;
Thierry Fournier4234dbd2020-11-28 13:18:23 +010011479 void **context;
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011480 lua_State *L;
Thierry Fournier59f11be2020-11-29 00:37:41 +010011481 struct prepend_path *pp;
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +010011482
Thierry FOURNIER380d0932015-01-23 14:27:52 +010011483 /* Init main lua stack. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011484 L = lua_newstate(hlua_alloc, &hlua_global_allocator);
Thierry FOURNIER380d0932015-01-23 14:27:52 +010011485
Thierry Fournier4234dbd2020-11-28 13:18:23 +010011486 /* Initialise Lua context to NULL */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011487 context = lua_getextraspace(L);
Thierry Fournier4234dbd2020-11-28 13:18:23 +010011488 *context = NULL;
11489
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -080011490 /* From this point, until the end of the initialisation function,
Thierry FOURNIERbabae282015-09-17 11:36:37 +020011491 * the Lua function can fail with an abort. We are in the initialisation
11492 * process of HAProxy, this abort() is tolerated.
11493 */
11494
Thierry Fournier3c539322020-11-28 16:05:05 +010011495 /* Call post initialisation function in safe environment. */
11496 if (setjmp(safe_ljmp_env) != 0) {
11497 lua_atpanic(L, hlua_panic_safe);
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011498 if (lua_type(L, -1) == LUA_TSTRING)
11499 error_msg = lua_tostring(L, -1);
Thierry Fournier2f05cc62020-11-28 16:08:02 +010011500 else
11501 error_msg = "critical error";
11502 fprintf(stderr, "Lua init: %s.\n", error_msg);
11503 exit(1);
Thierry Fournier3c539322020-11-28 16:05:05 +010011504 } else {
11505 lua_atpanic(L, hlua_panic_ljmp);
Thierry Fournier2f05cc62020-11-28 16:08:02 +010011506 }
11507
Thierry FOURNIER380d0932015-01-23 14:27:52 +010011508 /* Initialise lua. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011509 luaL_openlibs(L);
Tim Duesterhus541fe1e2020-01-12 13:55:41 +010011510#define HLUA_PREPEND_PATH_TOSTRING1(x) #x
11511#define HLUA_PREPEND_PATH_TOSTRING(x) HLUA_PREPEND_PATH_TOSTRING1(x)
11512#ifdef HLUA_PREPEND_PATH
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011513 hlua_prepend_path(L, "path", HLUA_PREPEND_PATH_TOSTRING(HLUA_PREPEND_PATH));
Tim Duesterhus541fe1e2020-01-12 13:55:41 +010011514#endif
11515#ifdef HLUA_PREPEND_CPATH
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011516 hlua_prepend_path(L, "cpath", HLUA_PREPEND_PATH_TOSTRING(HLUA_PREPEND_CPATH));
Tim Duesterhus541fe1e2020-01-12 13:55:41 +010011517#endif
11518#undef HLUA_PREPEND_PATH_TOSTRING
11519#undef HLUA_PREPEND_PATH_TOSTRING1
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +010011520
Thierry Fournier59f11be2020-11-29 00:37:41 +010011521 /* Apply configured prepend path */
11522 list_for_each_entry(pp, &prepend_path_list, l)
11523 hlua_prepend_path(L, pp->type, pp->path);
11524
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +010011525 /*
11526 *
11527 * Create "core" object.
11528 *
11529 */
11530
Thierry FOURNIERa2d8c652015-03-11 17:29:39 +010011531 /* This table entry is the object "core" base. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011532 lua_newtable(L);
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +010011533
Thierry Fournierecb83c22020-11-28 15:49:44 +010011534 /* set the thread id */
11535 hlua_class_const_int(L, "thread", thread_num);
11536
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +010011537 /* Push the loglevel constants. */
Willy Tarreau80f5fae2015-02-27 16:38:20 +010011538 for (i = 0; i < NB_LOG_LEVELS; i++)
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011539 hlua_class_const_int(L, log_levels[i], i);
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +010011540
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +010011541 /* Register special functions. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011542 hlua_class_function(L, "register_init", hlua_register_init);
11543 hlua_class_function(L, "register_task", hlua_register_task);
11544 hlua_class_function(L, "register_fetches", hlua_register_fetches);
11545 hlua_class_function(L, "register_converters", hlua_register_converters);
11546 hlua_class_function(L, "register_action", hlua_register_action);
11547 hlua_class_function(L, "register_service", hlua_register_service);
11548 hlua_class_function(L, "register_cli", hlua_register_cli);
Christopher Faulet69c581a2021-05-31 08:54:04 +020011549 hlua_class_function(L, "register_filter", hlua_register_filter);
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011550 hlua_class_function(L, "yield", hlua_yield);
11551 hlua_class_function(L, "set_nice", hlua_set_nice);
11552 hlua_class_function(L, "sleep", hlua_sleep);
11553 hlua_class_function(L, "msleep", hlua_msleep);
11554 hlua_class_function(L, "add_acl", hlua_add_acl);
11555 hlua_class_function(L, "del_acl", hlua_del_acl);
11556 hlua_class_function(L, "set_map", hlua_set_map);
11557 hlua_class_function(L, "del_map", hlua_del_map);
11558 hlua_class_function(L, "tcp", hlua_socket_new);
William Lallemand3956c4e2021-09-21 16:25:15 +020011559 hlua_class_function(L, "httpclient", hlua_httpclient_new);
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011560 hlua_class_function(L, "log", hlua_log);
11561 hlua_class_function(L, "Debug", hlua_log_debug);
11562 hlua_class_function(L, "Info", hlua_log_info);
11563 hlua_class_function(L, "Warning", hlua_log_warning);
11564 hlua_class_function(L, "Alert", hlua_log_alert);
11565 hlua_class_function(L, "done", hlua_done);
11566 hlua_fcn_reg_core_fcn(L);
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +010011567
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011568 lua_setglobal(L, "core");
Thierry FOURNIER65f34c62015-02-16 20:11:43 +010011569
11570 /*
11571 *
Christopher Faulet0f3c8902020-01-31 18:57:12 +010011572 * Create "act" object.
11573 *
11574 */
11575
11576 /* This table entry is the object "act" base. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011577 lua_newtable(L);
Christopher Faulet0f3c8902020-01-31 18:57:12 +010011578
11579 /* push action return constants */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011580 hlua_class_const_int(L, "CONTINUE", ACT_RET_CONT);
11581 hlua_class_const_int(L, "STOP", ACT_RET_STOP);
11582 hlua_class_const_int(L, "YIELD", ACT_RET_YIELD);
11583 hlua_class_const_int(L, "ERROR", ACT_RET_ERR);
11584 hlua_class_const_int(L, "DONE", ACT_RET_DONE);
11585 hlua_class_const_int(L, "DENY", ACT_RET_DENY);
11586 hlua_class_const_int(L, "ABORT", ACT_RET_ABRT);
11587 hlua_class_const_int(L, "INVALID", ACT_RET_INV);
Christopher Faulet0f3c8902020-01-31 18:57:12 +010011588
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011589 hlua_class_function(L, "wake_time", hlua_set_wake_time);
Christopher Faulet2c2c2e32020-01-31 19:07:52 +010011590
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011591 lua_setglobal(L, "act");
Christopher Faulet0f3c8902020-01-31 18:57:12 +010011592
11593 /*
11594 *
Christopher Faulet69c581a2021-05-31 08:54:04 +020011595 * Create "Filter" object.
11596 *
11597 */
11598
11599 /* This table entry is the object "filter" base. */
11600 lua_newtable(L);
11601
11602 /* push flags and constants */
11603 hlua_class_const_int(L, "CONTINUE", 1);
11604 hlua_class_const_int(L, "WAIT", 0);
11605 hlua_class_const_int(L, "ERROR", -1);
11606
11607 hlua_class_const_int(L, "FLT_CFG_FL_HTX", FLT_CFG_FL_HTX);
11608
Christopher Fauletc404f112020-02-26 15:03:09 +010011609 hlua_class_function(L, "wake_time", hlua_set_wake_time);
11610 hlua_class_function(L, "register_data_filter", hlua_register_data_filter);
11611 hlua_class_function(L, "unregister_data_filter", hlua_unregister_data_filter);
11612
Christopher Faulet69c581a2021-05-31 08:54:04 +020011613 lua_setglobal(L, "filter");
11614
11615 /*
11616 *
Thierry FOURNIER3def3932015-04-07 11:27:54 +020011617 * Register class Map
11618 *
11619 */
11620
11621 /* This table entry is the object "Map" base. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011622 lua_newtable(L);
Thierry FOURNIER3def3932015-04-07 11:27:54 +020011623
11624 /* register pattern types. */
11625 for (i=0; i<PAT_MATCH_NUM; i++)
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011626 hlua_class_const_int(L, pat_match_names[i], i);
Thierry FOURNIER4dc71972017-01-28 08:33:08 +010011627 for (i=0; i<PAT_MATCH_NUM; i++) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +020011628 snprintf(trash.area, trash.size, "_%s", pat_match_names[i]);
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011629 hlua_class_const_int(L, trash.area, i);
Thierry FOURNIER4dc71972017-01-28 08:33:08 +010011630 }
Thierry FOURNIER3def3932015-04-07 11:27:54 +020011631
11632 /* register constructor. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011633 hlua_class_function(L, "new", hlua_map_new);
Thierry FOURNIER3def3932015-04-07 11:27:54 +020011634
11635 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011636 lua_newtable(L);
Thierry FOURNIER3def3932015-04-07 11:27:54 +020011637
Ilya Shipitsind4259502020-04-08 01:07:56 +050011638 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011639 lua_pushstring(L, "__index");
11640 lua_newtable(L);
Thierry FOURNIER3def3932015-04-07 11:27:54 +020011641
11642 /* Register . */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011643 hlua_class_function(L, "lookup", hlua_map_lookup);
11644 hlua_class_function(L, "slookup", hlua_map_slookup);
Thierry FOURNIER3def3932015-04-07 11:27:54 +020011645
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011646 lua_rawset(L, -3);
Thierry FOURNIER3def3932015-04-07 11:27:54 +020011647
Thierry Fournier45e78d72016-02-19 18:34:46 +010011648 /* Register previous table in the registry with reference and named entry.
11649 * The function hlua_register_metatable() pops the stack, so we
11650 * previously create a copy of the table.
11651 */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011652 lua_pushvalue(L, -1); /* Copy the -1 entry and push it on the stack. */
11653 class_map_ref = hlua_register_metatable(L, CLASS_MAP);
Thierry FOURNIER3def3932015-04-07 11:27:54 +020011654
11655 /* Assign the metatable to the mai Map object. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011656 lua_setmetatable(L, -2);
Thierry FOURNIER3def3932015-04-07 11:27:54 +020011657
11658 /* Set a name to the table. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011659 lua_setglobal(L, "Map");
Thierry FOURNIER3def3932015-04-07 11:27:54 +020011660
11661 /*
11662 *
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +010011663 * Register class Channel
11664 *
11665 */
11666
11667 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011668 lua_newtable(L);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +010011669
Ilya Shipitsind4259502020-04-08 01:07:56 +050011670 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011671 lua_pushstring(L, "__index");
11672 lua_newtable(L);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +010011673
11674 /* Register . */
Christopher Faulet6a79fc12021-08-06 16:02:36 +020011675 hlua_class_function(L, "data", hlua_channel_get_data);
11676 hlua_class_function(L, "line", hlua_channel_get_line);
11677 hlua_class_function(L, "set", hlua_channel_set_data);
11678 hlua_class_function(L, "remove", hlua_channel_del_data);
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011679 hlua_class_function(L, "append", hlua_channel_append);
Christopher Faulet6a79fc12021-08-06 16:02:36 +020011680 hlua_class_function(L, "prepend", hlua_channel_prepend);
11681 hlua_class_function(L, "insert", hlua_channel_insert_data);
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011682 hlua_class_function(L, "send", hlua_channel_send);
11683 hlua_class_function(L, "forward", hlua_channel_forward);
Christopher Faulet6a79fc12021-08-06 16:02:36 +020011684 hlua_class_function(L, "input", hlua_channel_get_in_len);
11685 hlua_class_function(L, "output", hlua_channel_get_out_len);
11686 hlua_class_function(L, "may_recv", hlua_channel_may_recv);
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011687 hlua_class_function(L, "is_full", hlua_channel_is_full);
11688 hlua_class_function(L, "is_resp", hlua_channel_is_resp);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +010011689
Christopher Faulet6a79fc12021-08-06 16:02:36 +020011690 /* Deprecated API */
11691 hlua_class_function(L, "get", hlua_channel_get);
11692 hlua_class_function(L, "dup", hlua_channel_dup);
11693 hlua_class_function(L, "getline", hlua_channel_getline);
11694 hlua_class_function(L, "get_in_len", hlua_channel_get_in_len);
11695 hlua_class_function(L, "get_out_len", hlua_channel_get_out_len);
11696
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011697 lua_rawset(L, -3);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +010011698
11699 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011700 class_channel_ref = hlua_register_metatable(L, CLASS_CHANNEL);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +010011701
11702 /*
11703 *
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +010011704 * Register class Fetches
Thierry FOURNIER65f34c62015-02-16 20:11:43 +010011705 *
11706 */
11707
11708 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011709 lua_newtable(L);
Thierry FOURNIER65f34c62015-02-16 20:11:43 +010011710
Ilya Shipitsind4259502020-04-08 01:07:56 +050011711 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011712 lua_pushstring(L, "__index");
11713 lua_newtable(L);
Thierry FOURNIER65f34c62015-02-16 20:11:43 +010011714
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +010011715 /* Browse existing fetches and create the associated
11716 * object method.
11717 */
11718 sf = NULL;
11719 while ((sf = sample_fetch_getnext(sf, &idx)) != NULL) {
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +010011720 /* gL.Tua doesn't support '.' and '-' in the function names, replace it
11721 * by an underscore.
11722 */
Willy Tarreau5ef96562021-08-26 16:48:53 +020011723 strlcpy2(trash.area, sf->kw, trash.size);
Willy Tarreau843b7cb2018-07-13 10:54:26 +020011724 for (p = trash.area; *p; p++)
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +010011725 if (*p == '.' || *p == '-' || *p == '+')
11726 *p = '_';
11727
11728 /* Register the function. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011729 lua_pushstring(L, trash.area);
11730 lua_pushlightuserdata(L, sf);
11731 lua_pushcclosure(L, hlua_run_sample_fetch, 1);
11732 lua_rawset(L, -3);
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +010011733 }
11734
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011735 lua_rawset(L, -3);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +010011736
11737 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011738 class_fetches_ref = hlua_register_metatable(L, CLASS_FETCHES);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +010011739
11740 /*
11741 *
Thierry FOURNIER594afe72015-03-10 23:58:30 +010011742 * Register class Converters
11743 *
11744 */
11745
11746 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011747 lua_newtable(L);
Thierry FOURNIER594afe72015-03-10 23:58:30 +010011748
11749 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011750 lua_pushstring(L, "__index");
11751 lua_newtable(L);
Thierry FOURNIER594afe72015-03-10 23:58:30 +010011752
11753 /* Browse existing converters and create the associated
11754 * object method.
11755 */
11756 sc = NULL;
11757 while ((sc = sample_conv_getnext(sc, &idx)) != NULL) {
Thierry FOURNIER594afe72015-03-10 23:58:30 +010011758 /* gL.Tua doesn't support '.' and '-' in the function names, replace it
11759 * by an underscore.
11760 */
Willy Tarreau5ef96562021-08-26 16:48:53 +020011761 strlcpy2(trash.area, sc->kw, trash.size);
Willy Tarreau843b7cb2018-07-13 10:54:26 +020011762 for (p = trash.area; *p; p++)
Thierry FOURNIER594afe72015-03-10 23:58:30 +010011763 if (*p == '.' || *p == '-' || *p == '+')
11764 *p = '_';
11765
11766 /* Register the function. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011767 lua_pushstring(L, trash.area);
11768 lua_pushlightuserdata(L, sc);
11769 lua_pushcclosure(L, hlua_run_sample_conv, 1);
11770 lua_rawset(L, -3);
Thierry FOURNIER594afe72015-03-10 23:58:30 +010011771 }
11772
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011773 lua_rawset(L, -3);
Thierry FOURNIER594afe72015-03-10 23:58:30 +010011774
11775 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011776 class_converters_ref = hlua_register_metatable(L, CLASS_CONVERTERS);
Thierry FOURNIER594afe72015-03-10 23:58:30 +010011777
11778 /*
11779 *
Thierry FOURNIER08504f42015-03-16 14:17:08 +010011780 * Register class HTTP
11781 *
11782 */
11783
11784 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011785 lua_newtable(L);
Thierry FOURNIER08504f42015-03-16 14:17:08 +010011786
Ilya Shipitsind4259502020-04-08 01:07:56 +050011787 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011788 lua_pushstring(L, "__index");
11789 lua_newtable(L);
Thierry FOURNIER08504f42015-03-16 14:17:08 +010011790
11791 /* Register Lua functions. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011792 hlua_class_function(L, "req_get_headers",hlua_http_req_get_headers);
11793 hlua_class_function(L, "req_del_header", hlua_http_req_del_hdr);
11794 hlua_class_function(L, "req_rep_header", hlua_http_req_rep_hdr);
11795 hlua_class_function(L, "req_rep_value", hlua_http_req_rep_val);
11796 hlua_class_function(L, "req_add_header", hlua_http_req_add_hdr);
11797 hlua_class_function(L, "req_set_header", hlua_http_req_set_hdr);
11798 hlua_class_function(L, "req_set_method", hlua_http_req_set_meth);
11799 hlua_class_function(L, "req_set_path", hlua_http_req_set_path);
11800 hlua_class_function(L, "req_set_query", hlua_http_req_set_query);
11801 hlua_class_function(L, "req_set_uri", hlua_http_req_set_uri);
Thierry FOURNIER08504f42015-03-16 14:17:08 +010011802
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011803 hlua_class_function(L, "res_get_headers",hlua_http_res_get_headers);
11804 hlua_class_function(L, "res_del_header", hlua_http_res_del_hdr);
11805 hlua_class_function(L, "res_rep_header", hlua_http_res_rep_hdr);
11806 hlua_class_function(L, "res_rep_value", hlua_http_res_rep_val);
11807 hlua_class_function(L, "res_add_header", hlua_http_res_add_hdr);
11808 hlua_class_function(L, "res_set_header", hlua_http_res_set_hdr);
11809 hlua_class_function(L, "res_set_status", hlua_http_res_set_status);
Thierry FOURNIER08504f42015-03-16 14:17:08 +010011810
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011811 lua_rawset(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +010011812
11813 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011814 class_http_ref = hlua_register_metatable(L, CLASS_HTTP);
Thierry FOURNIER08504f42015-03-16 14:17:08 +010011815
Christopher Fauletdf97ac42020-02-26 16:57:19 +010011816 /*
11817 *
11818 * Register class HTTPMessage
11819 *
11820 */
11821
11822 /* Create and fill the metatable. */
11823 lua_newtable(L);
11824
Ilya Shipitsinff0f2782021-08-22 22:18:07 +050011825 /* Create and fill the __index entry. */
Christopher Fauletdf97ac42020-02-26 16:57:19 +010011826 lua_pushstring(L, "__index");
11827 lua_newtable(L);
11828
11829 /* Register Lua functions. */
11830 hlua_class_function(L, "is_resp", hlua_http_msg_is_resp);
11831 hlua_class_function(L, "get_stline", hlua_http_msg_get_stline);
11832 hlua_class_function(L, "get_headers", hlua_http_msg_get_headers);
11833 hlua_class_function(L, "del_header", hlua_http_msg_del_hdr);
11834 hlua_class_function(L, "rep_header", hlua_http_msg_rep_hdr);
11835 hlua_class_function(L, "rep_value", hlua_http_msg_rep_val);
11836 hlua_class_function(L, "add_header", hlua_http_msg_add_hdr);
11837 hlua_class_function(L, "set_header", hlua_http_msg_set_hdr);
11838 hlua_class_function(L, "set_method", hlua_http_msg_set_meth);
11839 hlua_class_function(L, "set_path", hlua_http_msg_set_path);
11840 hlua_class_function(L, "set_query", hlua_http_msg_set_query);
11841 hlua_class_function(L, "set_uri", hlua_http_msg_set_uri);
11842 hlua_class_function(L, "set_status", hlua_http_msg_set_status);
11843 hlua_class_function(L, "is_full", hlua_http_msg_is_full);
11844 hlua_class_function(L, "may_recv", hlua_http_msg_may_recv);
11845 hlua_class_function(L, "eom", hlua_http_msg_is_eom);
11846 hlua_class_function(L, "input", hlua_http_msg_get_in_len);
11847 hlua_class_function(L, "output", hlua_http_msg_get_out_len);
11848
11849 hlua_class_function(L, "body", hlua_http_msg_get_body);
11850 hlua_class_function(L, "set", hlua_http_msg_set_data);
11851 hlua_class_function(L, "remove", hlua_http_msg_del_data);
11852 hlua_class_function(L, "append", hlua_http_msg_append);
11853 hlua_class_function(L, "prepend", hlua_http_msg_prepend);
11854 hlua_class_function(L, "insert", hlua_http_msg_insert_data);
11855 hlua_class_function(L, "set_eom", hlua_http_msg_set_eom);
11856 hlua_class_function(L, "unset_eom", hlua_http_msg_unset_eom);
11857
11858 hlua_class_function(L, "send", hlua_http_msg_send);
11859 hlua_class_function(L, "forward", hlua_http_msg_forward);
11860
11861 lua_rawset(L, -3);
11862
11863 /* Register previous table in the registry with reference and named entry. */
11864 class_http_msg_ref = hlua_register_metatable(L, CLASS_HTTP_MSG);
William Lallemand3956c4e2021-09-21 16:25:15 +020011865
11866 /*
11867 *
11868 * Register class HTTPClient
11869 *
11870 */
11871
11872 /* Create and fill the metatable. */
11873 lua_newtable(L);
11874 lua_pushstring(L, "__index");
11875 lua_newtable(L);
11876 hlua_class_function(L, "get", hlua_httpclient_get);
11877 lua_settable(L, -3); /* Sets the __index entry. */
William Lallemandf77f1de2021-09-28 19:10:38 +020011878 /* Register the garbage collector entry. */
11879 lua_pushstring(L, "__gc");
11880 lua_pushcclosure(L, hlua_httpclient_gc, 0);
11881 lua_settable(L, -3); /* Push the last 2 entries in the table at index -3 */
11882
William Lallemand3956c4e2021-09-21 16:25:15 +020011883
11884
11885 class_httpclient_ref = hlua_register_metatable(L, CLASS_HTTPCLIENT);
Thierry FOURNIER08504f42015-03-16 14:17:08 +010011886 /*
11887 *
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +020011888 * Register class AppletTCP
11889 *
11890 */
11891
11892 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011893 lua_newtable(L);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +020011894
Ilya Shipitsind4259502020-04-08 01:07:56 +050011895 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011896 lua_pushstring(L, "__index");
11897 lua_newtable(L);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +020011898
11899 /* Register Lua functions. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011900 hlua_class_function(L, "getline", hlua_applet_tcp_getline);
11901 hlua_class_function(L, "receive", hlua_applet_tcp_recv);
11902 hlua_class_function(L, "send", hlua_applet_tcp_send);
11903 hlua_class_function(L, "set_priv", hlua_applet_tcp_set_priv);
11904 hlua_class_function(L, "get_priv", hlua_applet_tcp_get_priv);
11905 hlua_class_function(L, "set_var", hlua_applet_tcp_set_var);
11906 hlua_class_function(L, "unset_var", hlua_applet_tcp_unset_var);
11907 hlua_class_function(L, "get_var", hlua_applet_tcp_get_var);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +020011908
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011909 lua_settable(L, -3);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +020011910
11911 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011912 class_applet_tcp_ref = hlua_register_metatable(L, CLASS_APPLET_TCP);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +020011913
11914 /*
11915 *
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +020011916 * Register class AppletHTTP
11917 *
11918 */
11919
11920 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011921 lua_newtable(L);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +020011922
Ilya Shipitsind4259502020-04-08 01:07:56 +050011923 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011924 lua_pushstring(L, "__index");
11925 lua_newtable(L);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +020011926
11927 /* Register Lua functions. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011928 hlua_class_function(L, "set_priv", hlua_applet_http_set_priv);
11929 hlua_class_function(L, "get_priv", hlua_applet_http_get_priv);
11930 hlua_class_function(L, "set_var", hlua_applet_http_set_var);
11931 hlua_class_function(L, "unset_var", hlua_applet_http_unset_var);
11932 hlua_class_function(L, "get_var", hlua_applet_http_get_var);
11933 hlua_class_function(L, "getline", hlua_applet_http_getline);
11934 hlua_class_function(L, "receive", hlua_applet_http_recv);
11935 hlua_class_function(L, "send", hlua_applet_http_send);
11936 hlua_class_function(L, "add_header", hlua_applet_http_addheader);
11937 hlua_class_function(L, "set_status", hlua_applet_http_status);
11938 hlua_class_function(L, "start_response", hlua_applet_http_start_response);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +020011939
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011940 lua_settable(L, -3);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +020011941
11942 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011943 class_applet_http_ref = hlua_register_metatable(L, CLASS_APPLET_HTTP);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +020011944
11945 /*
11946 *
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +010011947 * Register class TXN
11948 *
11949 */
11950
11951 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011952 lua_newtable(L);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +010011953
Ilya Shipitsind4259502020-04-08 01:07:56 +050011954 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011955 lua_pushstring(L, "__index");
11956 lua_newtable(L);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +010011957
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +010011958 /* Register Lua functions. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011959 hlua_class_function(L, "set_priv", hlua_set_priv);
11960 hlua_class_function(L, "get_priv", hlua_get_priv);
11961 hlua_class_function(L, "set_var", hlua_set_var);
11962 hlua_class_function(L, "unset_var", hlua_unset_var);
11963 hlua_class_function(L, "get_var", hlua_get_var);
11964 hlua_class_function(L, "done", hlua_txn_done);
11965 hlua_class_function(L, "reply", hlua_txn_reply_new);
11966 hlua_class_function(L, "set_loglevel", hlua_txn_set_loglevel);
11967 hlua_class_function(L, "set_tos", hlua_txn_set_tos);
11968 hlua_class_function(L, "set_mark", hlua_txn_set_mark);
11969 hlua_class_function(L, "set_priority_class", hlua_txn_set_priority_class);
11970 hlua_class_function(L, "set_priority_offset", hlua_txn_set_priority_offset);
11971 hlua_class_function(L, "deflog", hlua_txn_deflog);
11972 hlua_class_function(L, "log", hlua_txn_log);
11973 hlua_class_function(L, "Debug", hlua_txn_log_debug);
11974 hlua_class_function(L, "Info", hlua_txn_log_info);
11975 hlua_class_function(L, "Warning", hlua_txn_log_warning);
11976 hlua_class_function(L, "Alert", hlua_txn_log_alert);
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +010011977
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011978 lua_rawset(L, -3);
Thierry FOURNIER65f34c62015-02-16 20:11:43 +010011979
11980 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011981 class_txn_ref = hlua_register_metatable(L, CLASS_TXN);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010011982
11983 /*
11984 *
Christopher Faulet700d9e82020-01-31 12:21:52 +010011985 * Register class reply
11986 *
11987 */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010011988 lua_newtable(L);
11989 lua_pushstring(L, "__index");
11990 lua_newtable(L);
11991 hlua_class_function(L, "set_status", hlua_txn_reply_set_status);
11992 hlua_class_function(L, "add_header", hlua_txn_reply_add_header);
11993 hlua_class_function(L, "del_header", hlua_txn_reply_del_header);
11994 hlua_class_function(L, "set_body", hlua_txn_reply_set_body);
11995 lua_settable(L, -3); /* Sets the __index entry. */
11996 class_txn_reply_ref = luaL_ref(L, LUA_REGISTRYINDEX);
Christopher Faulet700d9e82020-01-31 12:21:52 +010011997
11998
11999 /*
12000 *
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012001 * Register class Socket
12002 *
12003 */
12004
12005 /* Create and fill the metatable. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012006 lua_newtable(L);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012007
Ilya Shipitsind4259502020-04-08 01:07:56 +050012008 /* Create and fill the __index entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012009 lua_pushstring(L, "__index");
12010 lua_newtable(L);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012011
Baptiste Assmann84bb4932015-03-02 21:40:06 +010012012#ifdef USE_OPENSSL
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012013 hlua_class_function(L, "connect_ssl", hlua_socket_connect_ssl);
Baptiste Assmann84bb4932015-03-02 21:40:06 +010012014#endif
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012015 hlua_class_function(L, "connect", hlua_socket_connect);
12016 hlua_class_function(L, "send", hlua_socket_send);
12017 hlua_class_function(L, "receive", hlua_socket_receive);
12018 hlua_class_function(L, "close", hlua_socket_close);
12019 hlua_class_function(L, "getpeername", hlua_socket_getpeername);
12020 hlua_class_function(L, "getsockname", hlua_socket_getsockname);
12021 hlua_class_function(L, "setoption", hlua_socket_setoption);
12022 hlua_class_function(L, "settimeout", hlua_socket_settimeout);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012023
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012024 lua_rawset(L, -3); /* Push the last 2 entries in the table at index -3 */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012025
12026 /* Register the garbage collector entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012027 lua_pushstring(L, "__gc");
12028 lua_pushcclosure(L, hlua_socket_gc, 0);
12029 lua_rawset(L, -3); /* Push the last 2 entries in the table at index -3 */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012030
12031 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier1eac28f2020-11-28 12:26:24 +010012032 class_socket_ref = hlua_register_metatable(L, CLASS_SOCKET);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012033
Thierry Fournieraafc7772020-12-04 11:47:47 +010012034 lua_atpanic(L, hlua_panic_safe);
12035
12036 return L;
12037}
12038
12039void hlua_init(void) {
12040 int i;
Amaury Denoyelle239fdbf2021-03-24 10:22:03 +010012041 char *errmsg;
Thierry Fournieraafc7772020-12-04 11:47:47 +010012042#ifdef USE_OPENSSL
12043 struct srv_kw *kw;
12044 int tmp_error;
12045 char *error;
12046 char *args[] = { /* SSL client configuration. */
12047 "ssl",
12048 "verify",
12049 "none",
12050 NULL
12051 };
12052#endif
12053
12054 /* Init post init function list head */
12055 for (i = 0; i < MAX_THREADS + 1; i++)
12056 LIST_INIT(&hlua_init_functions[i]);
12057
12058 /* Init state for common/shared lua parts */
12059 hlua_state_id = 0;
Willy Tarreau43ab05b2021-09-28 09:43:11 +020012060 ha_set_thread(NULL);
Thierry Fournieraafc7772020-12-04 11:47:47 +010012061 hlua_states[0] = hlua_init_state(0);
12062
12063 /* Init state 1 for thread 0. We have at least one thread. */
12064 hlua_state_id = 1;
Willy Tarreau43ab05b2021-09-28 09:43:11 +020012065 ha_set_thread(NULL);
Thierry Fournieraafc7772020-12-04 11:47:47 +010012066 hlua_states[1] = hlua_init_state(1);
12067
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012068 /* Proxy and server configuration initialisation. */
William Lallemand6bb77b92021-07-28 15:48:16 +020012069 socket_proxy = alloc_new_proxy("LUA-SOCKET", PR_CAP_FE|PR_CAP_BE|PR_CAP_INT, &errmsg);
Amaury Denoyelle239fdbf2021-03-24 10:22:03 +010012070 if (!socket_proxy) {
12071 fprintf(stderr, "Lua init: %s\n", errmsg);
12072 exit(1);
12073 }
12074 proxy_preset_defaults(socket_proxy);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012075
12076 /* Init TCP server: unchanged parameters */
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +010012077 socket_tcp = new_server(socket_proxy);
12078 if (!socket_tcp) {
12079 fprintf(stderr, "Lua init: failed to allocate tcp server socket\n");
12080 exit(1);
12081 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012082
12083#ifdef USE_OPENSSL
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012084 /* Init TCP server: unchanged parameters */
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +010012085 socket_ssl = new_server(socket_proxy);
12086 if (!socket_ssl) {
12087 fprintf(stderr, "Lua init: failed to allocate ssl server socket\n");
12088 exit(1);
12089 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012090
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +010012091 socket_ssl->use_ssl = 1;
12092 socket_ssl->xprt = xprt_get(XPRT_SSL);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012093
Bertrand Jacquin80839ff2021-01-21 19:14:46 +000012094 for (i = 0; args[i] != NULL; i++) {
12095 if ((kw = srv_find_kw(args[i])) != NULL) { /* Maybe it's registered server keyword */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012096 /*
12097 *
12098 * If the keyword is not known, we can search in the registered
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -080012099 * server keywords. This is useful to configure special SSL
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012100 * features like client certificates and ssl_verify.
12101 *
12102 */
Amaury Denoyelle704ba1d2021-03-24 17:57:47 +010012103 tmp_error = kw->parse(args, &i, socket_proxy, socket_ssl, &error);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012104 if (tmp_error != 0) {
12105 fprintf(stderr, "INTERNAL ERROR: %s\n", error);
12106 abort(); /* This must be never arrives because the command line
12107 not editable by the user. */
12108 }
Bertrand Jacquin80839ff2021-01-21 19:14:46 +000012109 i += kw->skip;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012110 }
12111 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010012112#endif
Thierry Fournier75933d42016-01-21 09:30:18 +010012113
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +010012114}
Willy Tarreaubb57d942016-12-21 19:04:56 +010012115
Tim Duesterhusd0c0ca22020-07-04 11:53:26 +020012116static void hlua_deinit()
12117{
Willy Tarreau186f3762020-12-04 11:48:12 +010012118 int thr;
Christopher Faulet69c581a2021-05-31 08:54:04 +020012119 struct hlua_reg_filter *reg_flt, *reg_flt_bck;
12120
12121 list_for_each_entry_safe(reg_flt, reg_flt_bck, &referenced_filters, l)
12122 release_hlua_reg_filter(reg_flt);
Willy Tarreau186f3762020-12-04 11:48:12 +010012123
12124 for (thr = 0; thr < MAX_THREADS+1; thr++) {
12125 if (hlua_states[thr])
12126 lua_close(hlua_states[thr]);
12127 }
Willy Tarreau430bf4a2021-03-04 09:45:32 +010012128
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +020012129 srv_drop(socket_tcp);
Willy Tarreau430bf4a2021-03-04 09:45:32 +010012130
Willy Tarreau0f143af2021-03-05 10:41:48 +010012131#ifdef USE_OPENSSL
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +020012132 srv_drop(socket_ssl);
Willy Tarreau0f143af2021-03-05 10:41:48 +010012133#endif
Amaury Denoyelle239fdbf2021-03-24 10:22:03 +010012134
12135 free_proxy(socket_proxy);
Tim Duesterhusd0c0ca22020-07-04 11:53:26 +020012136}
12137
12138REGISTER_POST_DEINIT(hlua_deinit);
12139
Willy Tarreau80713382018-11-26 10:19:54 +010012140static void hlua_register_build_options(void)
12141{
Willy Tarreaubb57d942016-12-21 19:04:56 +010012142 char *ptr = NULL;
Willy Tarreau80713382018-11-26 10:19:54 +010012143
Willy Tarreaubb57d942016-12-21 19:04:56 +010012144 memprintf(&ptr, "Built with Lua version : %s", LUA_RELEASE);
12145 hap_register_build_opts(ptr, 1);
12146}
Willy Tarreau80713382018-11-26 10:19:54 +010012147
12148INITCALL0(STG_REGISTER, hlua_register_build_options);