blob: 49db0f36ec7fc8aa834970bd871b6e1fdb5379d4 [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
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +010013#include <ctype.h>
Thierry FOURNIERbabae282015-09-17 11:36:37 +020014#include <setjmp.h>
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +010015
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +010016#include <lauxlib.h>
17#include <lua.h>
18#include <lualib.h>
19
Thierry FOURNIER463119c2015-03-10 00:35:36 +010020#if !defined(LUA_VERSION_NUM) || LUA_VERSION_NUM < 503
21#error "Requires Lua 5.3 or later."
Cyril Bontédc0306e2015-03-02 00:08:40 +010022#endif
23
Willy Tarreau8d2b7772020-05-27 10:58:19 +020024#include <import/ebpttree.h>
Thierry FOURNIER380d0932015-01-23 14:27:52 +010025
Willy Tarreaub2551052020-06-09 09:07:15 +020026#include <haproxy/api.h>
27#include <haproxy/applet.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020028#include <haproxy/arg.h>
Christopher Fauletd25d9262020-08-06 11:04:46 +020029#include <haproxy/auth.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020030#include <haproxy/cfgparse.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020031#include <haproxy/channel.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020032#include <haproxy/cli.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020033#include <haproxy/connection.h>
Willy Tarreau5413a872020-06-02 19:33:08 +020034#include <haproxy/h1.h>
Willy Tarreau86416052020-06-04 09:20:54 +020035#include <haproxy/hlua.h>
Willy Tarreau8c794002020-06-04 10:05:25 +020036#include <haproxy/hlua_fcn.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020037#include <haproxy/http_ana.h>
Willy Tarreau126ba3a2020-06-04 18:26:43 +020038#include <haproxy/http_fetch.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020039#include <haproxy/http_htx.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020040#include <haproxy/http_rules.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020041#include <haproxy/log.h>
Willy Tarreau2cd58092020-06-04 15:10:43 +020042#include <haproxy/map.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020043#include <haproxy/obj_type.h>
Willy Tarreau225a90a2020-06-04 15:06:28 +020044#include <haproxy/pattern.h>
Willy Tarreau469509b2020-06-04 15:13:30 +020045#include <haproxy/payload.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020046#include <haproxy/proxy-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020047#include <haproxy/regex.h>
Willy Tarreaue6ce10b2020-06-04 15:33:47 +020048#include <haproxy/sample.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020049#include <haproxy/server-t.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020050#include <haproxy/session.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020051#include <haproxy/stats-t.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020052#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020053#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020054#include <haproxy/task.h>
Willy Tarreau8b550af2020-06-04 17:42:48 +020055#include <haproxy/tcp_rules.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020056#include <haproxy/thread.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +020057#include <haproxy/tools.h>
Willy Tarreaua1718922020-06-04 16:25:31 +020058#include <haproxy/vars.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020059#include <haproxy/xref.h>
60
Thierry FOURNIER380d0932015-01-23 14:27:52 +010061
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +010062/* Lua uses longjmp to perform yield or throwing errors. This
63 * macro is used only for identifying the function that can
64 * not return because a longjmp is executed.
65 * __LJMP marks a prototype of hlua file that can use longjmp.
66 * WILL_LJMP() marks an lua function that will use longjmp.
67 * MAY_LJMP() marks an lua function that may use longjmp.
68 */
69#define __LJMP
Willy Tarreau4e7cc332018-10-20 17:45:48 +020070#define WILL_LJMP(func) do { func; my_unreachable(); } while(0)
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +010071#define MAY_LJMP(func) func
72
Thierry FOURNIERbabae282015-09-17 11:36:37 +020073/* This couple of function executes securely some Lua calls outside of
74 * the lua runtime environment. Each Lua call can return a longjmp
75 * if it encounter a memory error.
76 *
77 * Lua documentation extract:
78 *
79 * If an error happens outside any protected environment, Lua calls
80 * a panic function (see lua_atpanic) and then calls abort, thus
81 * exiting the host application. Your panic function can avoid this
82 * exit by never returning (e.g., doing a long jump to your own
83 * recovery point outside Lua).
84 *
85 * The panic function runs as if it were a message handler (see
86 * §2.3); in particular, the error message is at the top of the
87 * stack. However, there is no guarantee about stack space. To push
88 * anything on the stack, the panic function must first check the
89 * available space (see §4.2).
90 *
91 * We must check all the Lua entry point. This includes:
92 * - The include/proto/hlua.h exported functions
93 * - the task wrapper function
94 * - The action wrapper function
95 * - The converters wrapper function
96 * - The sample-fetch wrapper functions
97 *
Ilya Shipitsin46a030c2020-07-05 16:36:08 +050098 * It is tolerated that the initialisation function returns an abort.
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -080099 * Before each Lua abort, an error message is written on stderr.
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200100 *
101 * The macro SET_SAFE_LJMP initialise the longjmp. The Macro
102 * RESET_SAFE_LJMP reset the longjmp. These function must be macro
103 * because they must be exists in the program stack when the longjmp
104 * is called.
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +0200105 *
106 * Note that the Lua processing is not really thread safe. It provides
107 * heavy system which consists to add our own lock function in the Lua
108 * code and recompile the library. This system will probably not accepted
109 * by maintainers of various distribs.
110 *
Ilya Shipitsin856aabc2020-04-16 23:51:34 +0500111 * Our main execution point of the Lua is the function lua_resume(). A
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +0200112 * quick looking on the Lua sources displays a lua_lock() a the start
113 * of function and a lua_unlock() at the end of the function. So I
114 * conclude that the Lua thread safe mode just perform a mutex around
115 * all execution. So I prefer to do this in the HAProxy code, it will be
116 * easier for distro maintainers.
117 *
118 * Note that the HAProxy lua functions rounded by the macro SET_SAFE_LJMP
119 * and RESET_SAFE_LJMP manipulates the Lua stack, so it will be careful
120 * to set mutex around these functions.
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200121 */
Willy Tarreau86abe442018-11-25 20:12:18 +0100122__decl_spinlock(hlua_global_lock);
Thierry FOURNIERffbad792017-07-12 11:39:04 +0200123THREAD_LOCAL jmp_buf safe_ljmp_env;
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200124static int hlua_panic_safe(lua_State *L) { return 0; }
Willy Tarreau9d6bb5a2020-02-06 15:55:41 +0100125static int hlua_panic_ljmp(lua_State *L) { WILL_LJMP(longjmp(safe_ljmp_env, 1)); }
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200126
127#define SET_SAFE_LJMP(__L) \
128 ({ \
129 int ret; \
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100130 HA_SPIN_LOCK(LUA_LOCK, &hlua_global_lock); \
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200131 if (setjmp(safe_ljmp_env) != 0) { \
132 lua_atpanic(__L, hlua_panic_safe); \
133 ret = 0; \
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100134 HA_SPIN_UNLOCK(LUA_LOCK, &hlua_global_lock); \
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200135 } else { \
136 lua_atpanic(__L, hlua_panic_ljmp); \
137 ret = 1; \
138 } \
139 ret; \
140 })
141
142/* If we are the last function catching Lua errors, we
143 * must reset the panic function.
144 */
145#define RESET_SAFE_LJMP(__L) \
146 do { \
147 lua_atpanic(__L, hlua_panic_safe); \
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100148 HA_SPIN_UNLOCK(LUA_LOCK, &hlua_global_lock); \
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200149 } while(0)
150
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +0200151/* Applet status flags */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200152#define APPLET_DONE 0x01 /* applet processing is done. */
Christopher Faulet18c2e8d2019-03-01 12:02:08 +0100153/* unused: 0x02 */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200154#define APPLET_HDR_SENT 0x04 /* Response header sent. */
Christopher Fauleta2097962019-07-15 16:25:33 +0200155/* unused: 0x08, 0x10 */
Thierry FOURNIERd93ea2b2015-12-20 19:14:52 +0100156#define APPLET_HTTP11 0x20 /* Last chunk sent. */
Christopher Faulet56a3d6e2019-02-27 22:06:23 +0100157#define APPLET_RSP_SENT 0x40 /* The response was fully sent */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200158
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100159/* The main Lua execution context. */
160struct hlua gL;
161
Thierry FOURNIERebed6e92016-12-16 11:54:07 +0100162/* This is the memory pool containing struct lua for applets
163 * (including cli).
164 */
Willy Tarreau8ceae722018-11-26 11:58:30 +0100165DECLARE_STATIC_POOL(pool_head_hlua, "hlua", sizeof(struct hlua));
Thierry FOURNIERebed6e92016-12-16 11:54:07 +0100166
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +0100167/* Used for Socket connection. */
168static struct proxy socket_proxy;
169static struct server socket_tcp;
170#ifdef USE_OPENSSL
171static struct server socket_ssl;
172#endif
173
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +0100174/* List head of the function called at the initialisation time. */
175struct list hlua_init_functions = LIST_HEAD_INIT(hlua_init_functions);
176
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +0100177/* The following variables contains the reference of the different
178 * Lua classes. These references are useful for identify metadata
179 * associated with an object.
180 */
Thierry FOURNIER65f34c62015-02-16 20:11:43 +0100181static int class_txn_ref;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +0100182static int class_socket_ref;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +0100183static int class_channel_ref;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +0100184static int class_fetches_ref;
Thierry FOURNIER594afe72015-03-10 23:58:30 +0100185static int class_converters_ref;
Thierry FOURNIER08504f42015-03-16 14:17:08 +0100186static int class_http_ref;
Thierry FOURNIER3def3932015-04-07 11:27:54 +0200187static int class_map_ref;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +0200188static int class_applet_tcp_ref;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200189static int class_applet_http_ref;
Christopher Faulet700d9e82020-01-31 12:21:52 +0100190static int class_txn_reply_ref;
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +0100191
Thierry FOURNIERbd413492015-03-03 16:52:26 +0100192/* Global Lua execution timeout. By default Lua, execution linked
Willy Tarreau87b09662015-04-03 00:22:06 +0200193 * with stream (actions, sample-fetches and converters) have a
Thierry FOURNIERbd413492015-03-03 16:52:26 +0100194 * short timeout. Lua linked with tasks doesn't have a timeout
195 * because a task may remain alive during all the haproxy execution.
196 */
197static unsigned int hlua_timeout_session = 4000; /* session timeout. */
198static unsigned int hlua_timeout_task = TICK_ETERNITY; /* task timeout. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +0200199static unsigned int hlua_timeout_applet = 4000; /* applet timeout. */
Thierry FOURNIERbd413492015-03-03 16:52:26 +0100200
Thierry FOURNIERee9f8022015-03-03 17:37:37 +0100201/* Interrupts the Lua processing each "hlua_nb_instruction" instructions.
202 * it is used for preventing infinite loops.
203 *
204 * I test the scheer with an infinite loop containing one incrementation
205 * and one test. I run this loop between 10 seconds, I raise a ceil of
206 * 710M loops from one interrupt each 9000 instructions, so I fix the value
207 * to one interrupt each 10 000 instructions.
208 *
209 * configured | Number of
210 * instructions | loops executed
211 * between two | in milions
212 * forced yields |
213 * ---------------+---------------
214 * 10 | 160
215 * 500 | 670
216 * 1000 | 680
217 * 5000 | 700
218 * 7000 | 700
219 * 8000 | 700
220 * 9000 | 710 <- ceil
221 * 10000 | 710
222 * 100000 | 710
223 * 1000000 | 710
224 *
225 */
226static unsigned int hlua_nb_instruction = 10000;
227
Willy Tarreau32f61e22015-03-18 17:54:59 +0100228/* Descriptor for the memory allocation state. If limit is not null, it will
229 * be enforced on any memory allocation.
230 */
231struct hlua_mem_allocator {
232 size_t allocated;
233 size_t limit;
234};
235
236static struct hlua_mem_allocator hlua_global_allocator;
237
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100238/* These functions converts types between HAProxy internal args or
239 * sample and LUA types. Another function permits to check if the
240 * LUA stack contains arguments according with an required ARG_T
241 * format.
242 */
243static int hlua_arg2lua(lua_State *L, const struct arg *arg);
244static int hlua_lua2arg(lua_State *L, int ud, struct arg *arg);
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100245__LJMP static int hlua_lua2arg_check(lua_State *L, int first, struct arg *argp,
David Carlier0c437f42016-04-27 16:21:56 +0100246 uint64_t mask, struct proxy *p);
Willy Tarreau5eadada2015-03-10 17:28:54 +0100247static int hlua_smp2lua(lua_State *L, struct sample *smp);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100248static int hlua_smp2lua_str(lua_State *L, struct sample *smp);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100249static int hlua_lua2smp(lua_State *L, int ud, struct sample *smp);
250
Christopher Faulet9d1332b2020-02-24 16:46:16 +0100251__LJMP static int hlua_http_get_headers(lua_State *L, struct http_msg *msg);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200252
Thierry FOURNIER23bc3752015-09-11 19:15:43 +0200253#define SEND_ERR(__be, __fmt, __args...) \
254 do { \
255 send_log(__be, LOG_ERR, __fmt, ## __args); \
256 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) \
Christopher Faulet767a84b2017-11-24 16:50:31 +0100257 ha_alert(__fmt, ## __args); \
Thierry FOURNIER23bc3752015-09-11 19:15:43 +0200258 } while (0)
259
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100260/* Used to check an Lua function type in the stack. It creates and
261 * returns a reference of the function. This function throws an
262 * error if the rgument is not a "function".
263 */
264__LJMP unsigned int hlua_checkfunction(lua_State *L, int argno)
265{
266 if (!lua_isfunction(L, argno)) {
Thierry FOURNIERfd1e9552018-02-23 18:41:18 +0100267 const char *msg = lua_pushfstring(L, "function expected, got %s", luaL_typename(L, argno));
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100268 WILL_LJMP(luaL_argerror(L, argno, msg));
269 }
270 lua_pushvalue(L, argno);
271 return luaL_ref(L, LUA_REGISTRYINDEX);
272}
273
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200274/* Return the string that is of the top of the stack. */
275const char *hlua_get_top_error_string(lua_State *L)
276{
277 if (lua_gettop(L) < 1)
278 return "unknown error";
279 if (lua_type(L, -1) != LUA_TSTRING)
280 return "unknown error";
281 return lua_tostring(L, -1);
282}
283
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200284__LJMP static const char *hlua_traceback(lua_State *L)
285{
286 lua_Debug ar;
287 int level = 0;
Willy Tarreau83061a82018-07-13 11:56:34 +0200288 struct buffer *msg = get_trash_chunk();
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200289 int filled = 0;
290
291 while (lua_getstack(L, level++, &ar)) {
292
293 /* Add separator */
294 if (filled)
295 chunk_appendf(msg, ", ");
296 filled = 1;
297
298 /* Fill fields:
299 * 'S': fills in the fields source, short_src, linedefined, lastlinedefined, and what;
300 * 'l': fills in the field currentline;
301 * 'n': fills in the field name and namewhat;
302 * 't': fills in the field istailcall;
303 */
304 lua_getinfo(L, "Slnt", &ar);
305
306 /* Append code localisation */
307 if (ar.currentline > 0)
308 chunk_appendf(msg, "%s:%d ", ar.short_src, ar.currentline);
309 else
310 chunk_appendf(msg, "%s ", ar.short_src);
311
312 /*
313 * Get function name
314 *
315 * if namewhat is no empty, name is defined.
316 * what contains "Lua" for Lua function, "C" for C function,
317 * or "main" for main code.
318 */
319 if (*ar.namewhat != '\0' && ar.name != NULL) /* is there a name from code? */
320 chunk_appendf(msg, "%s '%s'", ar.namewhat, ar.name); /* use it */
321
322 else if (*ar.what == 'm') /* "main", the code is not executed in a function */
323 chunk_appendf(msg, "main chunk");
324
325 else if (*ar.what != 'C') /* for Lua functions, use <file:line> */
326 chunk_appendf(msg, "C function line %d", ar.linedefined);
327
328 else /* nothing left... */
329 chunk_appendf(msg, "?");
330
331
332 /* Display tailed call */
333 if (ar.istailcall)
334 chunk_appendf(msg, " ...");
335 }
336
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200337 return msg->area;
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200338}
339
340
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100341/* This function check the number of arguments available in the
342 * stack. If the number of arguments available is not the same
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +0500343 * then <nb> an error is thrown.
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100344 */
345__LJMP static inline void check_args(lua_State *L, int nb, char *fcn)
346{
347 if (lua_gettop(L) == nb)
348 return;
349 WILL_LJMP(luaL_error(L, "'%s' needs %d arguments", fcn, nb));
350}
351
Mark Lakes22154b42018-01-29 14:38:40 -0800352/* This function pushes an error string prefixed by the file name
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100353 * and the line number where the error is encountered.
354 */
355static int hlua_pusherror(lua_State *L, const char *fmt, ...)
356{
357 va_list argp;
358 va_start(argp, fmt);
359 luaL_where(L, 1);
360 lua_pushvfstring(L, fmt, argp);
361 va_end(argp);
362 lua_concat(L, 2);
363 return 1;
364}
365
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100366/* This functions is used with sample fetch and converters. It
367 * converts the HAProxy configuration argument in a lua stack
368 * values.
369 *
370 * It takes an array of "arg", and each entry of the array is
371 * converted and pushed in the LUA stack.
372 */
373static int hlua_arg2lua(lua_State *L, const struct arg *arg)
374{
375 switch (arg->type) {
376 case ARGT_SINT:
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100377 case ARGT_TIME:
378 case ARGT_SIZE:
Thierry FOURNIERf90838b2015-03-06 13:48:32 +0100379 lua_pushinteger(L, arg->data.sint);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100380 break;
381
382 case ARGT_STR:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200383 lua_pushlstring(L, arg->data.str.area, arg->data.str.data);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100384 break;
385
386 case ARGT_IPV4:
387 case ARGT_IPV6:
388 case ARGT_MSK4:
389 case ARGT_MSK6:
390 case ARGT_FE:
391 case ARGT_BE:
392 case ARGT_TAB:
393 case ARGT_SRV:
394 case ARGT_USR:
395 case ARGT_MAP:
396 default:
397 lua_pushnil(L);
398 break;
399 }
400 return 1;
401}
402
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +0500403/* This function take one entry in an LUA stack at the index "ud",
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100404 * and try to convert it in an HAProxy argument entry. This is useful
Ilya Shipitsind4259502020-04-08 01:07:56 +0500405 * with sample fetch wrappers. The input arguments are given to the
406 * lua wrapper and converted as arg list by the function.
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100407 */
408static int hlua_lua2arg(lua_State *L, int ud, struct arg *arg)
409{
410 switch (lua_type(L, ud)) {
411
412 case LUA_TNUMBER:
413 case LUA_TBOOLEAN:
414 arg->type = ARGT_SINT;
415 arg->data.sint = lua_tointeger(L, ud);
416 break;
417
418 case LUA_TSTRING:
419 arg->type = ARGT_STR;
Tim Duesterhus2e89dec2019-09-29 23:03:08 +0200420 arg->data.str.area = (char *)lua_tolstring(L, ud, &arg->data.str.data);
Tim Duesterhus29d2e8a2019-09-29 23:03:07 +0200421 /* We don't know the actual size of the underlying allocation, so be conservative. */
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200422 arg->data.str.size = arg->data.str.data+1; /* count the terminating null byte */
Tim Duesterhus29d2e8a2019-09-29 23:03:07 +0200423 arg->data.str.head = 0;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100424 break;
425
426 case LUA_TUSERDATA:
427 case LUA_TNIL:
428 case LUA_TTABLE:
429 case LUA_TFUNCTION:
430 case LUA_TTHREAD:
431 case LUA_TLIGHTUSERDATA:
432 arg->type = ARGT_SINT;
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +0200433 arg->data.sint = 0;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100434 break;
435 }
436 return 1;
437}
438
439/* the following functions are used to convert a struct sample
440 * in Lua type. This useful to convert the return of the
Ilya Shipitsind4259502020-04-08 01:07:56 +0500441 * fetches or converters.
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100442 */
Willy Tarreau5eadada2015-03-10 17:28:54 +0100443static int hlua_smp2lua(lua_State *L, struct sample *smp)
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100444{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200445 switch (smp->data.type) {
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100446 case SMP_T_SINT:
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100447 case SMP_T_BOOL:
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200448 lua_pushinteger(L, smp->data.u.sint);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100449 break;
450
451 case SMP_T_BIN:
452 case SMP_T_STR:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200453 lua_pushlstring(L, smp->data.u.str.area, smp->data.u.str.data);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100454 break;
455
456 case SMP_T_METH:
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200457 switch (smp->data.u.meth.meth) {
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100458 case HTTP_METH_OPTIONS: lua_pushstring(L, "OPTIONS"); break;
459 case HTTP_METH_GET: lua_pushstring(L, "GET"); break;
460 case HTTP_METH_HEAD: lua_pushstring(L, "HEAD"); break;
461 case HTTP_METH_POST: lua_pushstring(L, "POST"); break;
462 case HTTP_METH_PUT: lua_pushstring(L, "PUT"); break;
463 case HTTP_METH_DELETE: lua_pushstring(L, "DELETE"); break;
464 case HTTP_METH_TRACE: lua_pushstring(L, "TRACE"); break;
465 case HTTP_METH_CONNECT: lua_pushstring(L, "CONNECT"); break;
466 case HTTP_METH_OTHER:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200467 lua_pushlstring(L, smp->data.u.meth.str.area, smp->data.u.meth.str.data);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100468 break;
469 default:
470 lua_pushnil(L);
471 break;
472 }
473 break;
474
475 case SMP_T_IPV4:
476 case SMP_T_IPV6:
477 case SMP_T_ADDR: /* This type is never used to qualify a sample. */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200478 if (sample_casts[smp->data.type][SMP_T_STR] &&
479 sample_casts[smp->data.type][SMP_T_STR](smp))
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200480 lua_pushlstring(L, smp->data.u.str.area, smp->data.u.str.data);
Willy Tarreau5eadada2015-03-10 17:28:54 +0100481 else
482 lua_pushnil(L);
483 break;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100484 default:
485 lua_pushnil(L);
486 break;
487 }
488 return 1;
489}
490
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100491/* the following functions are used to convert a struct sample
492 * in Lua strings. This is useful to convert the return of the
Ilya Shipitsind4259502020-04-08 01:07:56 +0500493 * fetches or converters.
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100494 */
495static int hlua_smp2lua_str(lua_State *L, struct sample *smp)
496{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200497 switch (smp->data.type) {
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100498
499 case SMP_T_BIN:
500 case SMP_T_STR:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200501 lua_pushlstring(L, smp->data.u.str.area, smp->data.u.str.data);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100502 break;
503
504 case SMP_T_METH:
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200505 switch (smp->data.u.meth.meth) {
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100506 case HTTP_METH_OPTIONS: lua_pushstring(L, "OPTIONS"); break;
507 case HTTP_METH_GET: lua_pushstring(L, "GET"); break;
508 case HTTP_METH_HEAD: lua_pushstring(L, "HEAD"); break;
509 case HTTP_METH_POST: lua_pushstring(L, "POST"); break;
510 case HTTP_METH_PUT: lua_pushstring(L, "PUT"); break;
511 case HTTP_METH_DELETE: lua_pushstring(L, "DELETE"); break;
512 case HTTP_METH_TRACE: lua_pushstring(L, "TRACE"); break;
513 case HTTP_METH_CONNECT: lua_pushstring(L, "CONNECT"); break;
514 case HTTP_METH_OTHER:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200515 lua_pushlstring(L, smp->data.u.meth.str.area, smp->data.u.meth.str.data);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100516 break;
517 default:
518 lua_pushstring(L, "");
519 break;
520 }
521 break;
522
523 case SMP_T_SINT:
524 case SMP_T_BOOL:
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100525 case SMP_T_IPV4:
526 case SMP_T_IPV6:
527 case SMP_T_ADDR: /* This type is never used to qualify a sample. */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200528 if (sample_casts[smp->data.type][SMP_T_STR] &&
529 sample_casts[smp->data.type][SMP_T_STR](smp))
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200530 lua_pushlstring(L, smp->data.u.str.area, smp->data.u.str.data);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100531 else
532 lua_pushstring(L, "");
533 break;
534 default:
535 lua_pushstring(L, "");
536 break;
537 }
538 return 1;
539}
540
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100541/* the following functions are used to convert an Lua type in a
542 * struct sample. This is useful to provide data from a converter
543 * to the LUA code.
544 */
545static int hlua_lua2smp(lua_State *L, int ud, struct sample *smp)
546{
547 switch (lua_type(L, ud)) {
548
549 case LUA_TNUMBER:
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200550 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200551 smp->data.u.sint = lua_tointeger(L, ud);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100552 break;
553
554
555 case LUA_TBOOLEAN:
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200556 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200557 smp->data.u.sint = lua_toboolean(L, ud);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100558 break;
559
560 case LUA_TSTRING:
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200561 smp->data.type = SMP_T_STR;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100562 smp->flags |= SMP_F_CONST;
Tim Duesterhus2e89dec2019-09-29 23:03:08 +0200563 smp->data.u.str.area = (char *)lua_tolstring(L, ud, &smp->data.u.str.data);
Tim Duesterhus29d2e8a2019-09-29 23:03:07 +0200564 /* We don't know the actual size of the underlying allocation, so be conservative. */
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200565 smp->data.u.str.size = smp->data.u.str.data+1; /* count the terminating null byte */
Tim Duesterhus29d2e8a2019-09-29 23:03:07 +0200566 smp->data.u.str.head = 0;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100567 break;
568
569 case LUA_TUSERDATA:
570 case LUA_TNIL:
571 case LUA_TTABLE:
572 case LUA_TFUNCTION:
573 case LUA_TTHREAD:
574 case LUA_TLIGHTUSERDATA:
Thierry FOURNIER93405e12015-08-26 14:19:03 +0200575 case LUA_TNONE:
576 default:
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200577 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200578 smp->data.u.sint = 0;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100579 break;
580 }
581 return 1;
582}
583
Ilya Shipitsind4259502020-04-08 01:07:56 +0500584/* This function check the "argp" built by another conversion function
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -0800585 * is in accord with the expected argp defined by the "mask". The function
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100586 * returns true or false. It can be adjust the types if there compatibles.
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100587 *
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +0500588 * This function assumes that the argp argument contains ARGM_NBARGS + 1
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100589 * entries.
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100590 */
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100591__LJMP int hlua_lua2arg_check(lua_State *L, int first, struct arg *argp,
David Carlier0c437f42016-04-27 16:21:56 +0100592 uint64_t mask, struct proxy *p)
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100593{
594 int min_arg;
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200595 int i, idx;
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100596 struct proxy *px;
Christopher Fauletd25d9262020-08-06 11:04:46 +0200597 struct userlist *ul;
Christopher Fauletfd2e9062020-08-06 11:10:57 +0200598 struct my_regex *reg;
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200599 const char *msg = NULL;
Christopher Fauletfd2e9062020-08-06 11:10:57 +0200600 char *sname, *pname, *err = NULL;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100601
602 idx = 0;
603 min_arg = ARGM(mask);
604 mask >>= ARGM_BITS;
605
606 while (1) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200607 struct buffer tmp = BUF_NULL;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100608
609 /* Check oversize. */
610 if (idx >= ARGM_NBARGS && argp[idx].type != ARGT_STOP) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200611 msg = "Malformed argument mask";
612 goto error;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100613 }
614
615 /* Check for mandatory arguments. */
616 if (argp[idx].type == ARGT_STOP) {
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100617 if (idx < min_arg) {
618
619 /* If miss other argument than the first one, we return an error. */
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200620 if (idx > 0) {
621 msg = "Mandatory argument expected";
622 goto error;
623 }
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100624
625 /* If first argument have a certain type, some default values
626 * may be used. See the function smp_resolve_args().
627 */
628 switch (mask & ARGT_MASK) {
629
630 case ARGT_FE:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200631 if (!(p->cap & PR_CAP_FE)) {
632 msg = "Mandatory argument expected";
633 goto error;
634 }
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100635 argp[idx].data.prx = p;
636 argp[idx].type = ARGT_FE;
637 argp[idx+1].type = ARGT_STOP;
638 break;
639
640 case ARGT_BE:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200641 if (!(p->cap & PR_CAP_BE)) {
642 msg = "Mandatory argument expected";
643 goto error;
644 }
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100645 argp[idx].data.prx = p;
646 argp[idx].type = ARGT_BE;
647 argp[idx+1].type = ARGT_STOP;
648 break;
649
650 case ARGT_TAB:
651 argp[idx].data.prx = p;
652 argp[idx].type = ARGT_TAB;
653 argp[idx+1].type = ARGT_STOP;
654 break;
655
656 default:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200657 msg = "Mandatory argument expected";
658 goto error;
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100659 break;
660 }
661 }
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200662 break;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100663 }
664
Ilya Shipitsin856aabc2020-04-16 23:51:34 +0500665 /* Check for exceed the number of required argument. */
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100666 if ((mask & ARGT_MASK) == ARGT_STOP &&
667 argp[idx].type != ARGT_STOP) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200668 msg = "Last argument expected";
669 goto error;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100670 }
671
672 if ((mask & ARGT_MASK) == ARGT_STOP &&
673 argp[idx].type == ARGT_STOP) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200674 break;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100675 }
676
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200677 /* Convert some argument types. All string in argp[] are for not
678 * duplicated yet.
679 */
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100680 switch (mask & ARGT_MASK) {
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100681 case ARGT_SINT:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200682 if (argp[idx].type != ARGT_SINT) {
683 msg = "integer expected";
684 goto error;
685 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100686 argp[idx].type = ARGT_SINT;
687 break;
688
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100689 case ARGT_TIME:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200690 if (argp[idx].type != ARGT_SINT) {
691 msg = "integer expected";
692 goto error;
693 }
Thierry FOURNIER29176f32015-07-07 00:41:29 +0200694 argp[idx].type = ARGT_TIME;
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100695 break;
696
697 case ARGT_SIZE:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200698 if (argp[idx].type != ARGT_SINT) {
699 msg = "integer expected";
700 goto error;
701 }
Thierry FOURNIER29176f32015-07-07 00:41:29 +0200702 argp[idx].type = ARGT_SIZE;
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100703 break;
704
705 case ARGT_FE:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200706 if (argp[idx].type != ARGT_STR) {
707 msg = "string expected";
708 goto error;
709 }
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200710 argp[idx].data.prx = proxy_fe_by_name(argp[idx].data.str.area);
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200711 if (!argp[idx].data.prx) {
712 msg = "frontend doesn't exist";
713 goto error;
714 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100715 argp[idx].type = ARGT_FE;
716 break;
717
718 case ARGT_BE:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200719 if (argp[idx].type != ARGT_STR) {
720 msg = "string expected";
721 goto error;
722 }
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200723 argp[idx].data.prx = proxy_be_by_name(argp[idx].data.str.area);
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200724 if (!argp[idx].data.prx) {
725 msg = "backend doesn't exist";
726 goto error;
727 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100728 argp[idx].type = ARGT_BE;
729 break;
730
731 case ARGT_TAB:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200732 if (argp[idx].type != ARGT_STR) {
733 msg = "string expected";
734 goto error;
735 }
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200736 argp[idx].data.t = stktable_find_by_name(argp[idx].data.str.area);
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200737 if (!argp[idx].data.t) {
738 msg = "table doesn't exist";
739 goto error;
740 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100741 argp[idx].type = ARGT_TAB;
742 break;
743
744 case ARGT_SRV:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200745 if (argp[idx].type != ARGT_STR) {
746 msg = "string expected";
747 goto error;
748 }
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200749 sname = strrchr(argp[idx].data.str.area, '/');
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100750 if (sname) {
751 *sname++ = '\0';
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200752 pname = argp[idx].data.str.area;
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200753 px = proxy_be_by_name(pname);
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200754 if (!px) {
755 msg = "backend doesn't exist";
756 goto error;
757 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100758 }
759 else {
Christopher Fauletfdea1b62020-08-06 08:29:18 +0200760 sname = argp[idx].data.str.area;
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100761 px = p;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100762 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100763 argp[idx].data.srv = findserver(px, sname);
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200764 if (!argp[idx].data.srv) {
765 msg = "server doesn't exist";
766 goto error;
767 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100768 argp[idx].type = ARGT_SRV;
769 break;
770
771 case ARGT_IPV4:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200772 if (argp[idx].type != ARGT_STR) {
773 msg = "string expected";
774 goto error;
775 }
776 if (inet_pton(AF_INET, argp[idx].data.str.area, &argp[idx].data.ipv4)) {
777 msg = "invalid IPv4 address";
778 goto error;
779 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100780 argp[idx].type = ARGT_IPV4;
781 break;
782
783 case ARGT_MSK4:
Christopher Faulete663a6e2020-08-07 09:11:22 +0200784 if (argp[idx].type == ARGT_SINT)
785 len2mask4(argp[idx].data.sint, &argp[idx].data.ipv4);
786 else if (argp[idx].type == ARGT_STR) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200787 if (!str2mask(argp[idx].data.str.area, &argp[idx].data.ipv4)) {
788 msg = "invalid IPv4 mask";
789 goto error;
790 }
791 }
792 else {
793 msg = "integer or string expected";
794 goto error;
Christopher Faulete663a6e2020-08-07 09:11:22 +0200795 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100796 argp[idx].type = ARGT_MSK4;
797 break;
798
799 case ARGT_IPV6:
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200800 if (argp[idx].type != ARGT_STR) {
801 msg = "string expected";
802 goto error;
803 }
804 if (inet_pton(AF_INET6, argp[idx].data.str.area, &argp[idx].data.ipv6)) {
805 msg = "invalid IPv6 address";
806 goto error;
807 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100808 argp[idx].type = ARGT_IPV6;
809 break;
810
811 case ARGT_MSK6:
Christopher Faulete663a6e2020-08-07 09:11:22 +0200812 if (argp[idx].type == ARGT_SINT)
813 len2mask6(argp[idx].data.sint, &argp[idx].data.ipv6);
814 else if (argp[idx].type == ARGT_STR) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200815 if (!str2mask6(argp[idx].data.str.area, &argp[idx].data.ipv6)) {
816 msg = "invalid IPv6 mask";
817 goto error;
818 }
819 }
820 else {
821 msg = "integer or string expected";
822 goto error;
Christopher Faulete663a6e2020-08-07 09:11:22 +0200823 }
Tim Duesterhusb814da62018-01-25 16:24:50 +0100824 argp[idx].type = ARGT_MSK6;
825 break;
826
Christopher Fauletfd2e9062020-08-06 11:10:57 +0200827 case ARGT_REG:
828 if (argp[idx].type != ARGT_STR) {
829 msg = "string expected";
830 goto error;
831 }
832 reg = regex_comp(argp[idx].data.str.area, !(argp[idx].type_flags & ARGF_REG_ICASE), 1, &err);
833 if (!reg) {
834 msg = lua_pushfstring(L, "error compiling regex '%s' : '%s'",
835 argp[idx].data.str.area, err);
836 free(err);
837 goto error;
838 }
839 argp[idx].type = ARGT_REG;
840 argp[idx].data.reg = reg;
841 break;
842
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100843 case ARGT_USR:
Christopher Fauletd25d9262020-08-06 11:04:46 +0200844 if (argp[idx].type != ARGT_STR) {
845 msg = "string expected";
846 goto error;
847 }
848 if (p->uri_auth && p->uri_auth->userlist &&
849 !strcmp(p->uri_auth->userlist->name, argp[idx].data.str.area))
850 ul = p->uri_auth->userlist;
851 else
852 ul = auth_find_userlist(argp[idx].data.str.area);
853
854 if (!ul) {
855 msg = lua_pushfstring(L, "unable to find userlist '%s'", argp[idx].data.str.area);
856 goto error;
857 }
858 argp[idx].type = ARGT_USR;
859 argp[idx].data.usr = ul;
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200860 break;
861
862 case ARGT_STR:
863 if (!chunk_dup(&tmp, &argp[idx].data.str)) {
864 msg = "unable to duplicate string arg";
865 goto error;
866 }
867 argp[idx].data.str = tmp;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100868 break;
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200869
Christopher Fauletd25d9262020-08-06 11:04:46 +0200870 case ARGT_MAP:
Christopher Fauletd25d9262020-08-06 11:04:46 +0200871 msg = "type not yet supported";
872 goto error;
873 break;
874
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100875 }
876
877 /* Check for type of argument. */
878 if ((mask & ARGT_MASK) != argp[idx].type) {
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200879 msg = lua_pushfstring(L, "'%s' expected, got '%s'",
880 arg_type_names[(mask & ARGT_MASK)],
881 arg_type_names[argp[idx].type & ARGT_MASK]);
882 goto error;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100883 }
884
885 /* Next argument. */
886 mask >>= ARGT_BITS;
887 idx++;
888 }
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200889 return 0;
890
891 error:
892 for (i = 0; i < idx; i++) {
893 if (argp[i].type == ARGT_STR)
894 chunk_destroy(&argp[i].data.str);
Christopher Fauletfd2e9062020-08-06 11:10:57 +0200895 else if (argp[i].type == ARGT_REG)
896 regex_free(argp[i].data.reg);
Christopher Fauletaec27ef2020-08-06 08:54:25 +0200897 }
898 WILL_LJMP(luaL_argerror(L, first + idx, msg));
899 return 0; /* Never reached */
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100900}
901
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100902/*
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +0500903 * The following functions are used to make correspondence between the the
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100904 * executed lua pointer and the "struct hlua *" that contain the context.
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100905 *
906 * - hlua_gethlua : return the hlua context associated with an lua_State.
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100907 * - hlua_sethlua : create the association between hlua context and lua_state.
908 */
909static inline struct hlua *hlua_gethlua(lua_State *L)
910{
Thierry FOURNIER38c5fd62015-03-10 02:40:29 +0100911 struct hlua **hlua = lua_getextraspace(L);
912 return *hlua;
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100913}
914static inline void hlua_sethlua(struct hlua *hlua)
915{
Thierry FOURNIER38c5fd62015-03-10 02:40:29 +0100916 struct hlua **hlua_store = lua_getextraspace(hlua->T);
917 *hlua_store = hlua;
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100918}
919
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +0100920/* This function is used to send logs. It try to send on screen (stderr)
921 * and on the default syslog server.
922 */
923static inline void hlua_sendlog(struct proxy *px, int level, const char *msg)
924{
925 struct tm tm;
926 char *p;
927
928 /* Cleanup the log message. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200929 p = trash.area;
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +0100930 for (; *msg != '\0'; msg++, p++) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200931 if (p >= trash.area + trash.size - 1) {
Thierry FOURNIERccf00632015-09-16 12:47:03 +0200932 /* Break the message if exceed the buffer size. */
933 *(p-4) = ' ';
934 *(p-3) = '.';
935 *(p-2) = '.';
936 *(p-1) = '.';
937 break;
938 }
Willy Tarreau90807112020-02-25 08:16:33 +0100939 if (isprint((unsigned char)*msg))
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +0100940 *p = *msg;
941 else
942 *p = '.';
943 }
944 *p = '\0';
945
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200946 send_log(px, level, "%s\n", trash.area);
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +0100947 if (!(global.mode & MODE_QUIET) || (global.mode & (MODE_VERBOSE | MODE_STARTING))) {
Christopher Fauletf98d8212020-10-02 18:13:52 +0200948 if (level == LOG_DEBUG && !(global.mode & MODE_DEBUG))
949 return;
950
Willy Tarreaua678b432015-08-28 10:14:59 +0200951 get_localtime(date.tv_sec, &tm);
952 fprintf(stderr, "[%s] %03d/%02d%02d%02d (%d) : %s\n",
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +0100953 log_levels[level], tm.tm_yday, tm.tm_hour, tm.tm_min, tm.tm_sec,
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200954 (int)getpid(), trash.area);
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +0100955 fflush(stderr);
956 }
957}
958
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +0100959/* This function just ensure that the yield will be always
960 * returned with a timeout and permit to set some flags
961 */
962__LJMP void hlua_yieldk(lua_State *L, int nresults, int ctx,
Thierry FOURNIERf90838b2015-03-06 13:48:32 +0100963 lua_KFunction k, int timeout, unsigned int flags)
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +0100964{
965 struct hlua *hlua = hlua_gethlua(L);
966
967 /* Set the wake timeout. If timeout is required, we set
968 * the expiration time.
969 */
Thierry FOURNIER10770fa2015-09-29 01:59:42 +0200970 hlua->wake_time = timeout;
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +0100971
Thierry FOURNIER4abd3ae2015-03-03 17:29:06 +0100972 hlua->flags |= flags;
973
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +0100974 /* Process the yield. */
Willy Tarreau9635e032018-10-16 17:52:55 +0200975 MAY_LJMP(lua_yieldk(L, nresults, ctx, k));
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +0100976}
977
Willy Tarreau87b09662015-04-03 00:22:06 +0200978/* This function initialises the Lua environment stored in the stream.
979 * It must be called at the start of the stream. This function creates
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100980 * an LUA coroutine. It can not be use to crete the main LUA context.
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200981 *
982 * This function is particular. it initialises a new Lua thread. If the
983 * initialisation fails (example: out of memory error), the lua function
984 * throws an error (longjmp).
985 *
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +0100986 * In some case (at least one), this function can be called from safe
Ilya Shipitsin856aabc2020-04-16 23:51:34 +0500987 * environment, so we must not initialise it. While the support of
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +0100988 * threads appear, the safe environment set a lock to ensure only one
989 * Lua execution at a time. If we initialize safe environment in another
Ilya Shipitsin856aabc2020-04-16 23:51:34 +0500990 * safe environment, we have a dead lock.
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +0100991 *
992 * set "already_safe" true if the context is initialized form safe
Ilya Shipitsin856aabc2020-04-16 23:51:34 +0500993 * Lua function.
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +0100994 *
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -0800995 * This function manipulates two Lua stacks: the main and the thread. Only
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200996 * the main stack can fail. The thread is not manipulated. This function
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -0800997 * MUST NOT manipulate the created thread stack state, because it is not
Ilya Shipitsin856aabc2020-04-16 23:51:34 +0500998 * protected against errors thrown by the thread stack.
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100999 */
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01001000int hlua_ctx_init(struct hlua *lua, struct task *task, int already_safe)
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001001{
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01001002 if (!already_safe) {
1003 if (!SET_SAFE_LJMP(gL.T)) {
1004 lua->Tref = LUA_REFNIL;
1005 return 0;
1006 }
Thierry FOURNIERbabae282015-09-17 11:36:37 +02001007 }
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001008 lua->Mref = LUA_REFNIL;
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01001009 lua->flags = 0;
Willy Tarreauf31af932020-01-14 09:59:38 +01001010 lua->gc_count = 0;
Christopher Fauletbc275a92020-02-26 14:55:16 +01001011 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +01001012 LIST_INIT(&lua->com);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001013 lua->T = lua_newthread(gL.T);
1014 if (!lua->T) {
1015 lua->Tref = LUA_REFNIL;
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01001016 if (!already_safe)
1017 RESET_SAFE_LJMP(gL.T);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001018 return 0;
1019 }
1020 hlua_sethlua(lua);
1021 lua->Tref = luaL_ref(gL.T, LUA_REGISTRYINDEX);
1022 lua->task = task;
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01001023 if (!already_safe)
1024 RESET_SAFE_LJMP(gL.T);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001025 return 1;
1026}
1027
Willy Tarreau87b09662015-04-03 00:22:06 +02001028/* Used to destroy the Lua coroutine when the attached stream or task
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001029 * is destroyed. The destroy also the memory context. The struct "lua"
1030 * is not freed.
1031 */
1032void hlua_ctx_destroy(struct hlua *lua)
1033{
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01001034 if (!lua)
Thierry FOURNIERa718b292015-03-04 16:48:34 +01001035 return;
1036
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01001037 if (!lua->T)
1038 goto end;
1039
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +01001040 /* Purge all the pending signals. */
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001041 notification_purge(&lua->com);
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +01001042
Thierry FOURNIER75d02082017-07-12 13:41:33 +02001043 if (!SET_SAFE_LJMP(lua->T))
1044 return;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001045 luaL_unref(lua->T, LUA_REGISTRYINDEX, lua->Mref);
Thierry FOURNIER75d02082017-07-12 13:41:33 +02001046 RESET_SAFE_LJMP(lua->T);
Thierry FOURNIER5a50a852015-09-23 16:59:28 +02001047
Thierry FOURNIER75d02082017-07-12 13:41:33 +02001048 if (!SET_SAFE_LJMP(gL.T))
1049 return;
1050 luaL_unref(gL.T, LUA_REGISTRYINDEX, lua->Tref);
1051 RESET_SAFE_LJMP(gL.T);
Thierry FOURNIER5a50a852015-09-23 16:59:28 +02001052 /* Forces a garbage collecting process. If the Lua program is finished
1053 * without error, we run the GC on the thread pointer. Its freed all
1054 * the unused memory.
1055 * If the thread is finnish with an error or is currently yielded,
1056 * it seems that the GC applied on the thread doesn't clean anything,
1057 * so e run the GC on the main thread.
1058 * NOTE: maybe this action locks all the Lua threads untiml the en of
1059 * the garbage collection.
1060 */
Willy Tarreauf31af932020-01-14 09:59:38 +01001061 if (lua->gc_count) {
Thierry FOURNIER7bd10d52017-07-17 00:44:40 +02001062 if (!SET_SAFE_LJMP(gL.T))
Thierry FOURNIER75d02082017-07-12 13:41:33 +02001063 return;
Thierry FOURNIER7bd10d52017-07-17 00:44:40 +02001064 lua_gc(gL.T, LUA_GCCOLLECT, 0);
1065 RESET_SAFE_LJMP(gL.T);
Thierry FOURNIER7c39ab42015-09-27 22:53:33 +02001066 }
Thierry FOURNIER5a50a852015-09-23 16:59:28 +02001067
Thierry FOURNIERa7b536b2015-09-21 22:50:24 +02001068 lua->T = NULL;
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01001069
1070end:
Willy Tarreaubafbe012017-11-24 17:34:44 +01001071 pool_free(pool_head_hlua, lua);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001072}
1073
1074/* This function is used to restore the Lua context when a coroutine
1075 * fails. This function copy the common memory between old coroutine
1076 * and the new coroutine. The old coroutine is destroyed, and its
1077 * replaced by the new coroutine.
1078 * If the flag "keep_msg" is set, the last entry of the old is assumed
1079 * as string error message and it is copied in the new stack.
1080 */
1081static int hlua_ctx_renew(struct hlua *lua, int keep_msg)
1082{
1083 lua_State *T;
1084 int new_ref;
1085
1086 /* Renew the main LUA stack doesn't have sense. */
1087 if (lua == &gL)
1088 return 0;
1089
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001090 /* New Lua coroutine. */
1091 T = lua_newthread(gL.T);
1092 if (!T)
1093 return 0;
1094
1095 /* Copy last error message. */
1096 if (keep_msg)
1097 lua_xmove(lua->T, T, 1);
1098
1099 /* Copy data between the coroutines. */
1100 lua_rawgeti(lua->T, LUA_REGISTRYINDEX, lua->Mref);
1101 lua_xmove(lua->T, T, 1);
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05001102 new_ref = luaL_ref(T, LUA_REGISTRYINDEX); /* Value popped. */
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001103
1104 /* Destroy old data. */
1105 luaL_unref(lua->T, LUA_REGISTRYINDEX, lua->Mref);
1106
1107 /* The thread is garbage collected by Lua. */
1108 luaL_unref(gL.T, LUA_REGISTRYINDEX, lua->Tref);
1109
1110 /* Fill the struct with the new coroutine values. */
1111 lua->Mref = new_ref;
1112 lua->T = T;
1113 lua->Tref = luaL_ref(gL.T, LUA_REGISTRYINDEX);
1114
1115 /* Set context. */
1116 hlua_sethlua(lua);
1117
1118 return 1;
1119}
1120
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001121void hlua_hook(lua_State *L, lua_Debug *ar)
1122{
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001123 struct hlua *hlua = hlua_gethlua(L);
1124
1125 /* Lua cannot yield when its returning from a function,
1126 * so, we can fix the interrupt hook to 1 instruction,
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05001127 * expecting that the function is finished.
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001128 */
1129 if (lua_gethookmask(L) & LUA_MASKRET) {
1130 lua_sethook(hlua->T, hlua_hook, LUA_MASKCOUNT, 1);
1131 return;
1132 }
1133
1134 /* restore the interrupt condition. */
1135 lua_sethook(hlua->T, hlua_hook, LUA_MASKCOUNT, hlua_nb_instruction);
1136
1137 /* If we interrupt the Lua processing in yieldable state, we yield.
1138 * If the state is not yieldable, trying yield causes an error.
1139 */
1140 if (lua_isyieldable(L))
Willy Tarreau9635e032018-10-16 17:52:55 +02001141 MAY_LJMP(hlua_yieldk(L, 0, 0, NULL, TICK_ETERNITY, HLUA_CTRLYIELD));
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001142
Thierry FOURNIERa85cfb12015-03-13 14:50:06 +01001143 /* If we cannot yield, update the clock and check the timeout. */
1144 tv_update_date(0, 1);
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001145 hlua->run_time += now_ms - hlua->start_time;
1146 if (hlua->max_time && hlua->run_time >= hlua->max_time) {
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001147 lua_pushfstring(L, "execution timeout");
1148 WILL_LJMP(lua_error(L));
1149 }
1150
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001151 /* Update the start time. */
1152 hlua->start_time = now_ms;
1153
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001154 /* Try to interrupt the process at the end of the current
1155 * unyieldable function.
1156 */
1157 lua_sethook(hlua->T, hlua_hook, LUA_MASKRET|LUA_MASKCOUNT, hlua_nb_instruction);
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001158}
1159
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001160/* This function start or resumes the Lua stack execution. If the flag
1161 * "yield_allowed" if no set and the LUA stack execution returns a yield
1162 * The function return an error.
1163 *
1164 * The function can returns 4 values:
1165 * - HLUA_E_OK : The execution is terminated without any errors.
1166 * - HLUA_E_AGAIN : The execution must continue at the next associated
1167 * task wakeup.
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001168 * - HLUA_E_ERRMSG : An error has occurred, an error message is set in
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001169 * the top of the stack.
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001170 * - HLUA_E_ERR : An error has occurred without error message.
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001171 *
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001172 * If an error occurred, the stack is renewed and it is ready to run new
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001173 * LUA code.
1174 */
1175static enum hlua_exec hlua_ctx_resume(struct hlua *lua, int yield_allowed)
1176{
Christopher Faulet08ed98f2020-07-28 10:33:25 +02001177#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504
1178 int nres;
1179#endif
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001180 int ret;
1181 const char *msg;
Thierry FOURNIERfc044c92018-06-07 14:40:48 +02001182 const char *trace;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001183
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001184 /* Initialise run time counter. */
1185 if (!HLUA_IS_RUNNING(lua))
1186 lua->run_time = 0;
Thierry FOURNIERdc9ca962015-03-05 11:16:52 +01001187
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +02001188 /* Lock the whole Lua execution. This lock must be before the
1189 * label "resume_execution".
1190 */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001191 HA_SPIN_LOCK(LUA_LOCK, &hlua_global_lock);
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +02001192
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001193resume_execution:
1194
1195 /* This hook interrupts the Lua processing each 'hlua_nb_instruction'
1196 * instructions. it is used for preventing infinite loops.
1197 */
1198 lua_sethook(lua->T, hlua_hook, LUA_MASKCOUNT, hlua_nb_instruction);
1199
Thierry FOURNIER1bfc09b2015-03-05 17:10:14 +01001200 /* Remove all flags except the running flags. */
Thierry FOURNIER2f3867f2015-09-28 01:02:01 +02001201 HLUA_SET_RUN(lua);
1202 HLUA_CLR_CTRLYIELD(lua);
1203 HLUA_CLR_WAKERESWR(lua);
1204 HLUA_CLR_WAKEREQWR(lua);
Thierry FOURNIER1bfc09b2015-03-05 17:10:14 +01001205
Christopher Fauletbc275a92020-02-26 14:55:16 +01001206 /* Update the start time and reset wake_time. */
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001207 lua->start_time = now_ms;
Christopher Fauletbc275a92020-02-26 14:55:16 +01001208 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001209
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001210 /* Call the function. */
Christopher Faulet08ed98f2020-07-28 10:33:25 +02001211#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504
1212 ret = lua_resume(lua->T, gL.T, lua->nargs, &nres);
1213#else
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001214 ret = lua_resume(lua->T, gL.T, lua->nargs);
Christopher Faulet08ed98f2020-07-28 10:33:25 +02001215#endif
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001216 switch (ret) {
1217
1218 case LUA_OK:
1219 ret = HLUA_E_OK;
1220 break;
1221
1222 case LUA_YIELD:
Thierry FOURNIERdc9ca962015-03-05 11:16:52 +01001223 /* Check if the execution timeout is expired. It it is the case, we
1224 * break the Lua execution.
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001225 */
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001226 tv_update_date(0, 1);
1227 lua->run_time += now_ms - lua->start_time;
1228 if (lua->max_time && lua->run_time > lua->max_time) {
Thierry FOURNIERdc9ca962015-03-05 11:16:52 +01001229 lua_settop(lua->T, 0); /* Empty the stack. */
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001230 ret = HLUA_E_ETMOUT;
Thierry FOURNIERdc9ca962015-03-05 11:16:52 +01001231 break;
1232 }
1233 /* Process the forced yield. if the general yield is not allowed or
1234 * if no task were associated this the current Lua execution
1235 * coroutine, we resume the execution. Else we want to return in the
1236 * scheduler and we want to be waked up again, to continue the
1237 * current Lua execution. So we schedule our own task.
1238 */
1239 if (HLUA_IS_CTRLYIELDING(lua)) {
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001240 if (!yield_allowed || !lua->task)
1241 goto resume_execution;
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001242 task_wakeup(lua->task, TASK_WOKEN_MSG);
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001243 }
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001244 if (!yield_allowed) {
1245 lua_settop(lua->T, 0); /* Empty the stack. */
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001246 ret = HLUA_E_YIELD;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001247 break;
1248 }
1249 ret = HLUA_E_AGAIN;
1250 break;
1251
1252 case LUA_ERRRUN:
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02001253
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001254 /* Special exit case. The traditional exit is returned as an error
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02001255 * because the errors ares the only one mean to return immediately
1256 * from and lua execution.
1257 */
1258 if (lua->flags & HLUA_EXIT) {
1259 ret = HLUA_E_OK;
Christopher Faulet7716cdf2020-01-29 11:53:30 +01001260 hlua_ctx_renew(lua, 1);
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02001261 break;
1262 }
1263
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001264 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001265 if (!lua_checkstack(lua->T, 1)) {
1266 ret = HLUA_E_ERR;
1267 break;
1268 }
1269 msg = lua_tostring(lua->T, -1);
1270 lua_settop(lua->T, 0); /* Empty the stack. */
1271 lua_pop(lua->T, 1);
Thierry FOURNIERfc044c92018-06-07 14:40:48 +02001272 trace = hlua_traceback(lua->T);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001273 if (msg)
Thierry FOURNIERfc044c92018-06-07 14:40:48 +02001274 lua_pushfstring(lua->T, "runtime error: %s from %s", msg, trace);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001275 else
Thierry FOURNIERfc044c92018-06-07 14:40:48 +02001276 lua_pushfstring(lua->T, "unknown runtime error from %s", trace);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001277 ret = HLUA_E_ERRMSG;
1278 break;
1279
1280 case LUA_ERRMEM:
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001281 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001282 lua_settop(lua->T, 0); /* Empty the stack. */
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001283 ret = HLUA_E_NOMEM;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001284 break;
1285
1286 case LUA_ERRERR:
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001287 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001288 if (!lua_checkstack(lua->T, 1)) {
1289 ret = HLUA_E_ERR;
1290 break;
1291 }
1292 msg = lua_tostring(lua->T, -1);
1293 lua_settop(lua->T, 0); /* Empty the stack. */
1294 lua_pop(lua->T, 1);
1295 if (msg)
1296 lua_pushfstring(lua->T, "message handler error: %s", msg);
1297 else
1298 lua_pushfstring(lua->T, "message handler error");
1299 ret = HLUA_E_ERRMSG;
1300 break;
1301
1302 default:
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001303 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001304 lua_settop(lua->T, 0); /* Empty the stack. */
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001305 ret = HLUA_E_ERR;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001306 break;
1307 }
1308
1309 switch (ret) {
1310 case HLUA_E_AGAIN:
1311 break;
1312
1313 case HLUA_E_ERRMSG:
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001314 notification_purge(&lua->com);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001315 hlua_ctx_renew(lua, 1);
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01001316 HLUA_CLR_RUN(lua);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001317 break;
1318
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001319 case HLUA_E_ETMOUT:
1320 case HLUA_E_NOMEM:
1321 case HLUA_E_YIELD:
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001322 case HLUA_E_ERR:
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01001323 HLUA_CLR_RUN(lua);
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001324 notification_purge(&lua->com);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001325 hlua_ctx_renew(lua, 0);
1326 break;
1327
1328 case HLUA_E_OK:
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01001329 HLUA_CLR_RUN(lua);
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001330 notification_purge(&lua->com);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001331 break;
1332 }
1333
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +02001334 /* This is the main exit point, remove the Lua lock. */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001335 HA_SPIN_UNLOCK(LUA_LOCK, &hlua_global_lock);
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +02001336
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001337 return ret;
1338}
1339
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02001340/* This function exit the current code. */
1341__LJMP static int hlua_done(lua_State *L)
1342{
1343 struct hlua *hlua = hlua_gethlua(L);
1344
1345 hlua->flags |= HLUA_EXIT;
1346 WILL_LJMP(lua_error(L));
1347
1348 return 0;
1349}
1350
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001351/* This function is an LUA binding. It provides a function
1352 * for deleting ACL from a referenced ACL file.
1353 */
1354__LJMP static int hlua_del_acl(lua_State *L)
1355{
1356 const char *name;
1357 const char *key;
1358 struct pat_ref *ref;
1359
1360 MAY_LJMP(check_args(L, 2, "del_acl"));
1361
1362 name = MAY_LJMP(luaL_checkstring(L, 1));
1363 key = MAY_LJMP(luaL_checkstring(L, 2));
1364
1365 ref = pat_ref_lookup(name);
1366 if (!ref)
Vincent Bernata72db182015-10-06 16:05:59 +02001367 WILL_LJMP(luaL_error(L, "'del_acl': unknown acl file '%s'", name));
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001368
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001369 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001370 pat_ref_delete(ref, key);
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001371 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001372 return 0;
1373}
1374
1375/* This function is an LUA binding. It provides a function
1376 * for deleting map entry from a referenced map file.
1377 */
1378static int hlua_del_map(lua_State *L)
1379{
1380 const char *name;
1381 const char *key;
1382 struct pat_ref *ref;
1383
1384 MAY_LJMP(check_args(L, 2, "del_map"));
1385
1386 name = MAY_LJMP(luaL_checkstring(L, 1));
1387 key = MAY_LJMP(luaL_checkstring(L, 2));
1388
1389 ref = pat_ref_lookup(name);
1390 if (!ref)
Vincent Bernata72db182015-10-06 16:05:59 +02001391 WILL_LJMP(luaL_error(L, "'del_map': unknown acl file '%s'", name));
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001392
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001393 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001394 pat_ref_delete(ref, key);
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001395 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001396 return 0;
1397}
1398
1399/* This function is an LUA binding. It provides a function
1400 * for adding ACL pattern from a referenced ACL file.
1401 */
1402static int hlua_add_acl(lua_State *L)
1403{
1404 const char *name;
1405 const char *key;
1406 struct pat_ref *ref;
1407
1408 MAY_LJMP(check_args(L, 2, "add_acl"));
1409
1410 name = MAY_LJMP(luaL_checkstring(L, 1));
1411 key = MAY_LJMP(luaL_checkstring(L, 2));
1412
1413 ref = pat_ref_lookup(name);
1414 if (!ref)
Vincent Bernata72db182015-10-06 16:05:59 +02001415 WILL_LJMP(luaL_error(L, "'add_acl': unknown acl file '%s'", name));
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001416
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001417 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001418 if (pat_ref_find_elt(ref, key) == NULL)
1419 pat_ref_add(ref, key, NULL, NULL);
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001420 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001421 return 0;
1422}
1423
1424/* This function is an LUA binding. It provides a function
1425 * for setting map pattern and sample from a referenced map
1426 * file.
1427 */
1428static int hlua_set_map(lua_State *L)
1429{
1430 const char *name;
1431 const char *key;
1432 const char *value;
1433 struct pat_ref *ref;
1434
1435 MAY_LJMP(check_args(L, 3, "set_map"));
1436
1437 name = MAY_LJMP(luaL_checkstring(L, 1));
1438 key = MAY_LJMP(luaL_checkstring(L, 2));
1439 value = MAY_LJMP(luaL_checkstring(L, 3));
1440
1441 ref = pat_ref_lookup(name);
1442 if (!ref)
Vincent Bernata72db182015-10-06 16:05:59 +02001443 WILL_LJMP(luaL_error(L, "'set_map': unknown map file '%s'", name));
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001444
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001445 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001446 if (pat_ref_find_elt(ref, key) != NULL)
1447 pat_ref_set(ref, key, value, NULL);
1448 else
1449 pat_ref_add(ref, key, value, NULL);
Christopher Faulet5cf2dfc2020-06-03 18:39:16 +02001450 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001451 return 0;
1452}
1453
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01001454/* A class is a lot of memory that contain data. This data can be a table,
1455 * an integer or user data. This data is associated with a metatable. This
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001456 * metatable have an original version registered in the global context with
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01001457 * the name of the object (_G[<name>] = <metable> ).
1458 *
1459 * A metable is a table that modify the standard behavior of a standard
1460 * access to the associated data. The entries of this new metatable are
1461 * defined as is:
1462 *
1463 * http://lua-users.org/wiki/MetatableEvents
1464 *
1465 * __index
1466 *
1467 * we access an absent field in a table, the result is nil. This is
1468 * true, but it is not the whole truth. Actually, such access triggers
1469 * the interpreter to look for an __index metamethod: If there is no
1470 * such method, as usually happens, then the access results in nil;
1471 * otherwise, the metamethod will provide the result.
1472 *
1473 * Control 'prototype' inheritance. When accessing "myTable[key]" and
1474 * the key does not appear in the table, but the metatable has an __index
1475 * property:
1476 *
1477 * - if the value is a function, the function is called, passing in the
1478 * table and the key; the return value of that function is returned as
1479 * the result.
1480 *
1481 * - if the value is another table, the value of the key in that table is
1482 * asked for and returned (and if it doesn't exist in that table, but that
1483 * table's metatable has an __index property, then it continues on up)
1484 *
1485 * - Use "rawget(myTable,key)" to skip this metamethod.
1486 *
1487 * http://www.lua.org/pil/13.4.1.html
1488 *
1489 * __newindex
1490 *
1491 * Like __index, but control property assignment.
1492 *
1493 * __mode - Control weak references. A string value with one or both
1494 * of the characters 'k' and 'v' which specifies that the the
1495 * keys and/or values in the table are weak references.
1496 *
1497 * __call - Treat a table like a function. When a table is followed by
1498 * parenthesis such as "myTable( 'foo' )" and the metatable has
1499 * a __call key pointing to a function, that function is invoked
1500 * (passing any specified arguments) and the return value is
1501 * returned.
1502 *
1503 * __metatable - Hide the metatable. When "getmetatable( myTable )" is
1504 * called, if the metatable for myTable has a __metatable
1505 * key, the value of that key is returned instead of the
1506 * actual metatable.
1507 *
1508 * __tostring - Control string representation. When the builtin
1509 * "tostring( myTable )" function is called, if the metatable
1510 * for myTable has a __tostring property set to a function,
1511 * that function is invoked (passing myTable to it) and the
1512 * return value is used as the string representation.
1513 *
1514 * __len - Control table length. When the table length is requested using
1515 * the length operator ( '#' ), if the metatable for myTable has
1516 * a __len key pointing to a function, that function is invoked
1517 * (passing myTable to it) and the return value used as the value
1518 * of "#myTable".
1519 *
1520 * __gc - Userdata finalizer code. When userdata is set to be garbage
1521 * collected, if the metatable has a __gc field pointing to a
1522 * function, that function is first invoked, passing the userdata
1523 * to it. The __gc metamethod is not called for tables.
1524 * (See http://lua-users.org/lists/lua-l/2006-11/msg00508.html)
1525 *
1526 * Special metamethods for redefining standard operators:
1527 * http://www.lua.org/pil/13.1.html
1528 *
1529 * __add "+"
1530 * __sub "-"
1531 * __mul "*"
1532 * __div "/"
1533 * __unm "!"
1534 * __pow "^"
1535 * __concat ".."
1536 *
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05001537 * Special methods for redefining standard relations
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01001538 * http://www.lua.org/pil/13.2.html
1539 *
1540 * __eq "=="
1541 * __lt "<"
1542 * __le "<="
1543 */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001544
1545/*
1546 *
1547 *
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001548 * Class Map
1549 *
1550 *
1551 */
1552
1553/* Returns a struct hlua_map if the stack entry "ud" is
1554 * a class session, otherwise it throws an error.
1555 */
1556__LJMP static struct map_descriptor *hlua_checkmap(lua_State *L, int ud)
1557{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02001558 return MAY_LJMP(hlua_checkudata(L, ud, class_map_ref));
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001559}
1560
1561/* This function is the map constructor. It don't need
1562 * the class Map object. It creates and return a new Map
1563 * object. It must be called only during "body" or "init"
1564 * context because it process some filesystem accesses.
1565 */
1566__LJMP static int hlua_map_new(struct lua_State *L)
1567{
1568 const char *fn;
1569 int match = PAT_MATCH_STR;
1570 struct sample_conv conv;
1571 const char *file = "";
1572 int line = 0;
1573 lua_Debug ar;
1574 char *err = NULL;
1575 struct arg args[2];
1576
1577 if (lua_gettop(L) < 1 || lua_gettop(L) > 2)
1578 WILL_LJMP(luaL_error(L, "'new' needs at least 1 argument."));
1579
1580 fn = MAY_LJMP(luaL_checkstring(L, 1));
1581
1582 if (lua_gettop(L) >= 2) {
1583 match = MAY_LJMP(luaL_checkinteger(L, 2));
1584 if (match < 0 || match >= PAT_MATCH_NUM)
1585 WILL_LJMP(luaL_error(L, "'new' needs a valid match method."));
1586 }
1587
1588 /* Get Lua filename and line number. */
1589 if (lua_getstack(L, 1, &ar)) { /* check function at level */
1590 lua_getinfo(L, "Sl", &ar); /* get info about it */
1591 if (ar.currentline > 0) { /* is there info? */
1592 file = ar.short_src;
1593 line = ar.currentline;
1594 }
1595 }
1596
1597 /* fill fake sample_conv struct. */
1598 conv.kw = ""; /* unused. */
1599 conv.process = NULL; /* unused. */
1600 conv.arg_mask = 0; /* unused. */
1601 conv.val_args = NULL; /* unused. */
1602 conv.out_type = SMP_T_STR;
1603 conv.private = (void *)(long)match;
1604 switch (match) {
1605 case PAT_MATCH_STR: conv.in_type = SMP_T_STR; break;
1606 case PAT_MATCH_BEG: conv.in_type = SMP_T_STR; break;
1607 case PAT_MATCH_SUB: conv.in_type = SMP_T_STR; break;
1608 case PAT_MATCH_DIR: conv.in_type = SMP_T_STR; break;
1609 case PAT_MATCH_DOM: conv.in_type = SMP_T_STR; break;
1610 case PAT_MATCH_END: conv.in_type = SMP_T_STR; break;
1611 case PAT_MATCH_REG: conv.in_type = SMP_T_STR; break;
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001612 case PAT_MATCH_INT: conv.in_type = SMP_T_SINT; break;
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001613 case PAT_MATCH_IP: conv.in_type = SMP_T_ADDR; break;
1614 default:
1615 WILL_LJMP(luaL_error(L, "'new' doesn't support this match mode."));
1616 }
1617
1618 /* fill fake args. */
1619 args[0].type = ARGT_STR;
Christopher Faulet73292e92020-08-06 08:40:09 +02001620 args[0].data.str.area = strdup(fn);
1621 args[0].data.str.data = strlen(fn);
1622 args[0].data.str.size = args[0].data.str.data+1;
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001623 args[1].type = ARGT_STOP;
1624
1625 /* load the map. */
1626 if (!sample_load_map(args, &conv, file, line, &err)) {
1627 /* error case: we cant use luaL_error because we must
1628 * free the err variable.
1629 */
1630 luaL_where(L, 1);
1631 lua_pushfstring(L, "'new': %s.", err);
1632 lua_concat(L, 2);
1633 free(err);
Christopher Faulet6ad7df42020-08-07 11:45:18 +02001634 chunk_destroy(&args[0].data.str);
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001635 WILL_LJMP(lua_error(L));
1636 }
1637
1638 /* create the lua object. */
1639 lua_newtable(L);
1640 lua_pushlightuserdata(L, args[0].data.map);
1641 lua_rawseti(L, -2, 0);
1642
1643 /* Pop a class Map metatable and affect it to the userdata. */
1644 lua_rawgeti(L, LUA_REGISTRYINDEX, class_map_ref);
1645 lua_setmetatable(L, -2);
1646
1647
1648 return 1;
1649}
1650
1651__LJMP static inline int _hlua_map_lookup(struct lua_State *L, int str)
1652{
1653 struct map_descriptor *desc;
1654 struct pattern *pat;
1655 struct sample smp;
1656
1657 MAY_LJMP(check_args(L, 2, "lookup"));
1658 desc = MAY_LJMP(hlua_checkmap(L, 1));
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001659 if (desc->pat.expect_type == SMP_T_SINT) {
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001660 smp.data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001661 smp.data.u.sint = MAY_LJMP(luaL_checkinteger(L, 2));
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001662 }
1663 else {
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001664 smp.data.type = SMP_T_STR;
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001665 smp.flags = SMP_F_CONST;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001666 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 +01001667 smp.data.u.str.size = smp.data.u.str.data + 1;
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001668 }
1669
1670 pat = pattern_exec_match(&desc->pat, &smp, 1);
Thierry FOURNIER503bb092015-08-19 08:35:43 +02001671 if (!pat || !pat->data) {
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001672 if (str)
1673 lua_pushstring(L, "");
1674 else
1675 lua_pushnil(L);
1676 return 1;
1677 }
1678
1679 /* The Lua pattern must return a string, so we can't check the returned type */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001680 lua_pushlstring(L, pat->data->u.str.area, pat->data->u.str.data);
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001681 return 1;
1682}
1683
1684__LJMP static int hlua_map_lookup(struct lua_State *L)
1685{
1686 return _hlua_map_lookup(L, 0);
1687}
1688
1689__LJMP static int hlua_map_slookup(struct lua_State *L)
1690{
1691 return _hlua_map_lookup(L, 1);
1692}
1693
1694/*
1695 *
1696 *
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001697 * Class Socket
1698 *
1699 *
1700 */
1701
1702__LJMP static struct hlua_socket *hlua_checksocket(lua_State *L, int ud)
1703{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02001704 return MAY_LJMP(hlua_checkudata(L, ud, class_socket_ref));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001705}
1706
1707/* This function is the handler called for each I/O on the established
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001708 * connection. It is used for notify space available to send or data
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001709 * received.
1710 */
Willy Tarreau00a37f02015-04-13 12:05:19 +02001711static void hlua_socket_handler(struct appctx *appctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001712{
Willy Tarreau00a37f02015-04-13 12:05:19 +02001713 struct stream_interface *si = appctx->owner;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001714
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02001715 if (appctx->ctx.hlua_cosocket.die) {
1716 si_shutw(si);
1717 si_shutr(si);
1718 si_ic(si)->flags |= CF_READ_NULL;
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001719 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read);
1720 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write);
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02001721 stream_shutdown(si_strm(si), SF_ERR_KILLED);
1722 }
1723
Thierry FOURNIER6d695e62015-09-27 19:29:38 +02001724 /* If we cant write, wakeup the pending write signals. */
1725 if (channel_output_closed(si_ic(si)))
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001726 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write);
Thierry FOURNIER6d695e62015-09-27 19:29:38 +02001727
1728 /* If we cant read, wakeup the pending read signals. */
1729 if (channel_input_closed(si_oc(si)))
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001730 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read);
Thierry FOURNIER6d695e62015-09-27 19:29:38 +02001731
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02001732 /* if the connection is not established, inform the stream that we want
Thierry FOURNIER316e3192015-09-04 18:25:53 +02001733 * to be notified whenever the connection completes.
1734 */
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02001735 if (si_opposite(si)->state < SI_ST_EST) {
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01001736 si_cant_get(si);
Willy Tarreau12c24232018-12-06 15:29:50 +01001737 si_rx_conn_blk(si);
Willy Tarreau3367d412018-11-15 10:57:41 +01001738 si_rx_endp_more(si);
Willy Tarreaud4da1962015-04-20 01:31:23 +02001739 return;
Thierry FOURNIER316e3192015-09-04 18:25:53 +02001740 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001741
1742 /* This function is called after the connect. */
Thierry FOURNIER18d09902016-12-16 09:25:38 +01001743 appctx->ctx.hlua_cosocket.connected = 1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001744
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001745 /* Wake the tasks which wants to write if the buffer have available space. */
Thierry FOURNIEReba6f642015-09-26 22:01:07 +02001746 if (channel_may_recv(si_ic(si)))
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001747 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001748
1749 /* Wake the tasks which wants to read if the buffer contains data. */
Thierry FOURNIEReba6f642015-09-26 22:01:07 +02001750 if (!channel_is_empty(si_oc(si)))
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001751 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read);
Thierry FOURNIER101b9762018-05-27 01:27:40 +02001752
1753 /* Some data were injected in the buffer, notify the stream
1754 * interface.
1755 */
1756 if (!channel_is_empty(si_ic(si)))
Willy Tarreau14bfe9a2018-12-19 15:19:27 +01001757 si_update(si);
Thierry FOURNIER101b9762018-05-27 01:27:40 +02001758
1759 /* If write notifications are registered, we considers we want
Willy Tarreau3367d412018-11-15 10:57:41 +01001760 * to write, so we clear the blocking flag.
Thierry FOURNIER101b9762018-05-27 01:27:40 +02001761 */
1762 if (notification_registered(&appctx->ctx.hlua_cosocket.wake_on_write))
Willy Tarreau3367d412018-11-15 10:57:41 +01001763 si_rx_endp_more(si);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001764}
1765
Willy Tarreau87b09662015-04-03 00:22:06 +02001766/* This function is called when the "struct stream" is destroyed.
1767 * Remove the link from the object to this stream.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001768 * Wake all the pending signals.
1769 */
Willy Tarreau00a37f02015-04-13 12:05:19 +02001770static void hlua_socket_release(struct appctx *appctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001771{
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001772 struct xref *peer;
1773
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001774 /* Remove my link in the original object. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001775 peer = xref_get_peer_and_lock(&appctx->ctx.hlua_cosocket.xref);
1776 if (peer)
1777 xref_disconnect(&appctx->ctx.hlua_cosocket.xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001778
1779 /* Wake all the task waiting for me. */
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001780 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read);
1781 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001782}
1783
1784/* If the garbage collectio of the object is launch, nobody
Willy Tarreau87b09662015-04-03 00:22:06 +02001785 * uses this object. If the stream does not exists, just quit.
1786 * Send the shutdown signal to the stream. In some cases,
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001787 * pending signal can rest in the read and write lists. destroy
1788 * it.
1789 */
1790__LJMP static int hlua_socket_gc(lua_State *L)
1791{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001792 struct hlua_socket *socket;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001793 struct appctx *appctx;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001794 struct xref *peer;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001795
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001796 MAY_LJMP(check_args(L, 1, "__gc"));
1797
1798 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001799 peer = xref_get_peer_and_lock(&socket->xref);
1800 if (!peer)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001801 return 0;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001802 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001803
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001804 /* Set the flag which destroy the session. */
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02001805 appctx->ctx.hlua_cosocket.die = 1;
1806 appctx_wakeup(appctx);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001807
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001808 /* Remove all reference between the Lua stack and the coroutine stream. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001809 xref_disconnect(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001810 return 0;
1811}
1812
1813/* The close function send shutdown signal and break the
Willy Tarreau87b09662015-04-03 00:22:06 +02001814 * links between the stream and the object.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001815 */
sada05ed3302018-05-11 11:48:18 -07001816__LJMP static int hlua_socket_close_helper(lua_State *L)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001817{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001818 struct hlua_socket *socket;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001819 struct appctx *appctx;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001820 struct xref *peer;
Willy Tarreauf31af932020-01-14 09:59:38 +01001821 struct hlua *hlua = hlua_gethlua(L);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001822
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001823 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02001824
1825 /* Check if we run on the same thread than the xreator thread.
1826 * We cannot access to the socket if the thread is different.
1827 */
1828 if (socket->tid != tid)
1829 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
1830
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001831 peer = xref_get_peer_and_lock(&socket->xref);
1832 if (!peer)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001833 return 0;
Willy Tarreauf31af932020-01-14 09:59:38 +01001834
1835 hlua->gc_count--;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001836 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001837
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001838 /* Set the flag which destroy the session. */
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02001839 appctx->ctx.hlua_cosocket.die = 1;
1840 appctx_wakeup(appctx);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001841
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001842 /* Remove all reference between the Lua stack and the coroutine stream. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001843 xref_disconnect(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001844 return 0;
1845}
1846
sada05ed3302018-05-11 11:48:18 -07001847/* The close function calls close_helper.
1848 */
1849__LJMP static int hlua_socket_close(lua_State *L)
1850{
1851 MAY_LJMP(check_args(L, 1, "close"));
1852 return hlua_socket_close_helper(L);
1853}
1854
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001855/* This Lua function assumes that the stack contain three parameters.
1856 * 1 - USERDATA containing a struct socket
1857 * 2 - INTEGER with values of the macro defined below
1858 * If the integer is -1, we must read at most one line.
1859 * If the integer is -2, we ust read all the data until the
1860 * end of the stream.
1861 * If the integer is positive value, we must read a number of
1862 * bytes corresponding to this value.
1863 */
1864#define HLSR_READ_LINE (-1)
1865#define HLSR_READ_ALL (-2)
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01001866__LJMP static int hlua_socket_receive_yield(struct lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001867{
1868 struct hlua_socket *socket = MAY_LJMP(hlua_checksocket(L, 1));
1869 int wanted = lua_tointeger(L, 2);
1870 struct hlua *hlua = hlua_gethlua(L);
1871 struct appctx *appctx;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02001872 size_t len;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001873 int nblk;
Willy Tarreau206ba832018-06-14 15:27:31 +02001874 const char *blk1;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02001875 size_t len1;
Willy Tarreau206ba832018-06-14 15:27:31 +02001876 const char *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02001877 size_t len2;
Thierry FOURNIER00543922015-03-09 18:35:06 +01001878 int skip_at_end = 0;
Willy Tarreau81389672015-03-10 12:03:52 +01001879 struct channel *oc;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001880 struct stream_interface *si;
1881 struct stream *s;
1882 struct xref *peer;
Thierry FOURNIER8c126c72018-05-25 16:27:44 +02001883 int missing_bytes;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001884
1885 /* Check if this lua stack is schedulable. */
1886 if (!hlua || !hlua->task)
1887 WILL_LJMP(luaL_error(L, "The 'receive' function is only allowed in "
1888 "'frontend', 'backend' or 'task'"));
1889
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02001890 /* Check if we run on the same thread than the xreator thread.
1891 * We cannot access to the socket if the thread is different.
1892 */
1893 if (socket->tid != tid)
1894 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
1895
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001896 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001897 peer = xref_get_peer_and_lock(&socket->xref);
1898 if (!peer)
1899 goto no_peer;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001900 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
1901 si = appctx->owner;
1902 s = si_strm(si);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001903
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001904 oc = &s->res;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001905 if (wanted == HLSR_READ_LINE) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001906 /* Read line. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02001907 nblk = co_getline_nc(oc, &blk1, &len1, &blk2, &len2);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001908 if (nblk < 0) /* Connection close. */
1909 goto connection_closed;
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001910 if (nblk == 0) /* No data available. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001911 goto connection_empty;
Thierry FOURNIER00543922015-03-09 18:35:06 +01001912
1913 /* remove final \r\n. */
1914 if (nblk == 1) {
1915 if (blk1[len1-1] == '\n') {
1916 len1--;
1917 skip_at_end++;
1918 if (blk1[len1-1] == '\r') {
1919 len1--;
1920 skip_at_end++;
1921 }
1922 }
1923 }
1924 else {
1925 if (blk2[len2-1] == '\n') {
1926 len2--;
1927 skip_at_end++;
1928 if (blk2[len2-1] == '\r') {
1929 len2--;
1930 skip_at_end++;
1931 }
1932 }
1933 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001934 }
1935
1936 else if (wanted == HLSR_READ_ALL) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001937 /* Read all the available data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02001938 nblk = co_getblk_nc(oc, &blk1, &len1, &blk2, &len2);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001939 if (nblk < 0) /* Connection close. */
1940 goto connection_closed;
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001941 if (nblk == 0) /* No data available. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001942 goto connection_empty;
1943 }
1944
1945 else {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001946 /* Read a block of data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02001947 nblk = co_getblk_nc(oc, &blk1, &len1, &blk2, &len2);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001948 if (nblk < 0) /* Connection close. */
1949 goto connection_closed;
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001950 if (nblk == 0) /* No data available. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001951 goto connection_empty;
1952
Thierry FOURNIER8c126c72018-05-25 16:27:44 +02001953 missing_bytes = wanted - socket->b.n;
1954 if (len1 > missing_bytes) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001955 nblk = 1;
Thierry FOURNIER8c126c72018-05-25 16:27:44 +02001956 len1 = missing_bytes;
1957 } if (nblk == 2 && len1 + len2 > missing_bytes)
1958 len2 = missing_bytes - len1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001959 }
1960
1961 len = len1;
1962
1963 luaL_addlstring(&socket->b, blk1, len1);
1964 if (nblk == 2) {
1965 len += len2;
1966 luaL_addlstring(&socket->b, blk2, len2);
1967 }
1968
1969 /* Consume data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02001970 co_skip(oc, len + skip_at_end);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001971
1972 /* Don't wait anything. */
Thierry FOURNIER7e4ee472018-05-25 15:03:50 +02001973 appctx_wakeup(appctx);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001974
1975 /* If the pattern reclaim to read all the data
1976 * in the connection, got out.
1977 */
1978 if (wanted == HLSR_READ_ALL)
1979 goto connection_empty;
Thierry FOURNIER8c126c72018-05-25 16:27:44 +02001980 else if (wanted >= 0 && socket->b.n < wanted)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001981 goto connection_empty;
1982
1983 /* Return result. */
1984 luaL_pushresult(&socket->b);
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001985 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001986 return 1;
1987
1988connection_closed:
1989
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001990 xref_unlock(&socket->xref, peer);
1991
1992no_peer:
1993
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001994 /* If the buffer containds data. */
1995 if (socket->b.n > 0) {
1996 luaL_pushresult(&socket->b);
1997 return 1;
1998 }
1999 lua_pushnil(L);
2000 lua_pushstring(L, "connection closed.");
2001 return 2;
2002
2003connection_empty:
2004
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002005 if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_read, hlua->task)) {
2006 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002007 WILL_LJMP(luaL_error(L, "out of memory"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002008 }
2009 xref_unlock(&socket->xref, peer);
Willy Tarreau9635e032018-10-16 17:52:55 +02002010 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_receive_yield, TICK_ETERNITY, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002011 return 0;
2012}
2013
Tim Duesterhusb33754c2018-01-04 19:32:14 +01002014/* This Lua function gets two parameters. The first one can be string
2015 * or a number. If the string is "*l", the user requires one line. If
2016 * the string is "*a", the user requires all the contents of the stream.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002017 * If the value is a number, the user require a number of bytes equal
2018 * to the value. The default value is "*l" (a line).
2019 *
Tim Duesterhusb33754c2018-01-04 19:32:14 +01002020 * This parameter with a variable type is converted in integer. This
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002021 * integer takes this values:
2022 * -1 : read a line
2023 * -2 : read all the stream
Tim Duesterhusb33754c2018-01-04 19:32:14 +01002024 * >0 : amount of bytes.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002025 *
Tim Duesterhusb33754c2018-01-04 19:32:14 +01002026 * The second parameter is optional. It contains a string that must be
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002027 * concatenated with the read data.
2028 */
2029__LJMP static int hlua_socket_receive(struct lua_State *L)
2030{
2031 int wanted = HLSR_READ_LINE;
2032 const char *pattern;
2033 int type;
2034 char *error;
2035 size_t len;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002036 struct hlua_socket *socket;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002037
2038 if (lua_gettop(L) < 1 || lua_gettop(L) > 3)
2039 WILL_LJMP(luaL_error(L, "The 'receive' function requires between 1 and 3 arguments."));
2040
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002041 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002042
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002043 /* Check if we run on the same thread than the xreator thread.
2044 * We cannot access to the socket if the thread is different.
2045 */
2046 if (socket->tid != tid)
2047 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2048
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002049 /* check for pattern. */
2050 if (lua_gettop(L) >= 2) {
2051 type = lua_type(L, 2);
2052 if (type == LUA_TSTRING) {
2053 pattern = lua_tostring(L, 2);
2054 if (strcmp(pattern, "*a") == 0)
2055 wanted = HLSR_READ_ALL;
2056 else if (strcmp(pattern, "*l") == 0)
2057 wanted = HLSR_READ_LINE;
2058 else {
2059 wanted = strtoll(pattern, &error, 10);
2060 if (*error != '\0')
2061 WILL_LJMP(luaL_error(L, "Unsupported pattern."));
2062 }
2063 }
2064 else if (type == LUA_TNUMBER) {
2065 wanted = lua_tointeger(L, 2);
2066 if (wanted < 0)
2067 WILL_LJMP(luaL_error(L, "Unsupported size."));
2068 }
2069 }
2070
2071 /* Set pattern. */
2072 lua_pushinteger(L, wanted);
Tim Duesterhusc6e377e2018-01-04 19:32:13 +01002073
2074 /* Check if we would replace the top by itself. */
2075 if (lua_gettop(L) != 2)
2076 lua_replace(L, 2);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002077
Tim Duesterhusb33754c2018-01-04 19:32:14 +01002078 /* init buffer, and fill it with prefix. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002079 luaL_buffinit(L, &socket->b);
2080
2081 /* Check prefix. */
2082 if (lua_gettop(L) >= 3) {
2083 if (lua_type(L, 3) != LUA_TSTRING)
2084 WILL_LJMP(luaL_error(L, "Expect a 'string' for the prefix"));
2085 pattern = lua_tolstring(L, 3, &len);
2086 luaL_addlstring(&socket->b, pattern, len);
2087 }
2088
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002089 return __LJMP(hlua_socket_receive_yield(L, 0, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002090}
2091
2092/* Write the Lua input string in the output buffer.
Mark Lakes22154b42018-01-29 14:38:40 -08002093 * This function returns a yield if no space is available.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002094 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002095static int hlua_socket_write_yield(struct lua_State *L,int status, lua_KContext ctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002096{
2097 struct hlua_socket *socket;
2098 struct hlua *hlua = hlua_gethlua(L);
2099 struct appctx *appctx;
2100 size_t buf_len;
2101 const char *buf;
2102 int len;
2103 int send_len;
2104 int sent;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002105 struct xref *peer;
2106 struct stream_interface *si;
2107 struct stream *s;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002108
2109 /* Check if this lua stack is schedulable. */
2110 if (!hlua || !hlua->task)
2111 WILL_LJMP(luaL_error(L, "The 'write' function is only allowed in "
2112 "'frontend', 'backend' or 'task'"));
2113
2114 /* Get object */
2115 socket = MAY_LJMP(hlua_checksocket(L, 1));
2116 buf = MAY_LJMP(luaL_checklstring(L, 2, &buf_len));
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002117 sent = MAY_LJMP(luaL_checkinteger(L, 3));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002118
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002119 /* Check if we run on the same thread than the xreator thread.
2120 * We cannot access to the socket if the thread is different.
2121 */
2122 if (socket->tid != tid)
2123 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2124
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002125 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002126 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002127 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002128 lua_pushinteger(L, -1);
2129 return 1;
2130 }
2131 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2132 si = appctx->owner;
2133 s = si_strm(si);
2134
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002135 /* Check for connection close. */
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002136 if (channel_output_closed(&s->req)) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002137 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002138 lua_pushinteger(L, -1);
2139 return 1;
2140 }
2141
2142 /* Update the input buffer data. */
2143 buf += sent;
2144 send_len = buf_len - sent;
2145
2146 /* All the data are sent. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002147 if (sent >= buf_len) {
2148 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002149 return 1; /* Implicitly return the length sent. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002150 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002151
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002152 /* Check if the buffer is available because HAProxy doesn't allocate
Thierry FOURNIER486d52a2015-03-09 17:51:43 +01002153 * the request buffer if its not required.
2154 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002155 if (s->req.buf.size == 0) {
Willy Tarreau581abd32018-10-25 10:21:41 +02002156 if (!si_alloc_ibuf(si, &appctx->buffer_wait))
Christopher Faulet33834b12016-12-19 09:29:06 +01002157 goto hlua_socket_write_yield_return;
Thierry FOURNIER486d52a2015-03-09 17:51:43 +01002158 }
2159
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002160 /* Check for available space. */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002161 len = b_room(&s->req.buf);
Christopher Faulet33834b12016-12-19 09:29:06 +01002162 if (len <= 0) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002163 goto hlua_socket_write_yield_return;
Christopher Faulet33834b12016-12-19 09:29:06 +01002164 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002165
2166 /* send data */
2167 if (len < send_len)
2168 send_len = len;
Thierry FOURNIER66b89192018-05-27 01:14:47 +02002169 len = ci_putblk(&s->req, buf, send_len);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002170
2171 /* "Not enough space" (-1), "Buffer too little to contain
2172 * the data" (-2) are not expected because the available length
2173 * is tested.
2174 * Other unknown error are also not expected.
2175 */
2176 if (len <= 0) {
Willy Tarreaubc18da12015-03-13 14:00:47 +01002177 if (len == -1)
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002178 s->req.flags |= CF_WAKE_WRITE;
Willy Tarreaubc18da12015-03-13 14:00:47 +01002179
sada05ed3302018-05-11 11:48:18 -07002180 MAY_LJMP(hlua_socket_close_helper(L));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002181 lua_pop(L, 1);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002182 lua_pushinteger(L, -1);
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002183 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002184 return 1;
2185 }
2186
2187 /* update buffers. */
Thierry FOURNIER101b9762018-05-27 01:27:40 +02002188 appctx_wakeup(appctx);
Willy Tarreaude70fa12015-09-26 11:25:05 +02002189
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002190 s->req.rex = TICK_ETERNITY;
2191 s->res.wex = TICK_ETERNITY;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002192
2193 /* Update length sent. */
2194 lua_pop(L, 1);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002195 lua_pushinteger(L, sent + len);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002196
2197 /* All the data buffer is sent ? */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002198 if (sent + len >= buf_len) {
2199 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002200 return 1;
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002201 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002202
2203hlua_socket_write_yield_return:
Thierry FOURNIERba42fcd2018-05-27 00:59:48 +02002204 if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_write, hlua->task)) {
2205 xref_unlock(&socket->xref, peer);
2206 WILL_LJMP(luaL_error(L, "out of memory"));
2207 }
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002208 xref_unlock(&socket->xref, peer);
Willy Tarreau9635e032018-10-16 17:52:55 +02002209 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_write_yield, TICK_ETERNITY, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002210 return 0;
2211}
2212
2213/* This function initiate the send of data. It just check the input
2214 * parameters and push an integer in the Lua stack that contain the
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002215 * amount of data written to the buffer. This is used by the function
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002216 * "hlua_socket_write_yield" that can yield.
2217 *
2218 * The Lua function gets between 3 and 4 parameters. The first one is
2219 * the associated object. The second is a string buffer. The third is
2220 * a facultative integer that represents where is the buffer position
2221 * of the start of the data that can send. The first byte is the
2222 * position "1". The default value is "1". The fourth argument is a
2223 * facultative integer that represents where is the buffer position
2224 * of the end of the data that can send. The default is the last byte.
2225 */
2226static int hlua_socket_send(struct lua_State *L)
2227{
2228 int i;
2229 int j;
2230 const char *buf;
2231 size_t buf_len;
2232
2233 /* Check number of arguments. */
2234 if (lua_gettop(L) < 2 || lua_gettop(L) > 4)
2235 WILL_LJMP(luaL_error(L, "'send' needs between 2 and 4 arguments"));
2236
2237 /* Get the string. */
2238 buf = MAY_LJMP(luaL_checklstring(L, 2, &buf_len));
2239
2240 /* Get and check j. */
2241 if (lua_gettop(L) == 4) {
2242 j = MAY_LJMP(luaL_checkinteger(L, 4));
2243 if (j < 0)
2244 j = buf_len + j + 1;
2245 if (j > buf_len)
2246 j = buf_len + 1;
2247 lua_pop(L, 1);
2248 }
2249 else
2250 j = buf_len;
2251
2252 /* Get and check i. */
2253 if (lua_gettop(L) == 3) {
2254 i = MAY_LJMP(luaL_checkinteger(L, 3));
2255 if (i < 0)
2256 i = buf_len + i + 1;
2257 if (i > buf_len)
2258 i = buf_len + 1;
2259 lua_pop(L, 1);
2260 } else
2261 i = 1;
2262
2263 /* Check bth i and j. */
2264 if (i > j) {
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002265 lua_pushinteger(L, 0);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002266 return 1;
2267 }
2268 if (i == 0 && j == 0) {
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002269 lua_pushinteger(L, 0);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002270 return 1;
2271 }
2272 if (i == 0)
2273 i = 1;
2274 if (j == 0)
2275 j = 1;
2276
2277 /* Pop the string. */
2278 lua_pop(L, 1);
2279
2280 /* Update the buffer length. */
2281 buf += i - 1;
2282 buf_len = j - i + 1;
2283 lua_pushlstring(L, buf, buf_len);
2284
2285 /* This unsigned is used to remember the amount of sent data. */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002286 lua_pushinteger(L, 0);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002287
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002288 return MAY_LJMP(hlua_socket_write_yield(L, 0, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002289}
2290
Willy Tarreau22b0a682015-06-17 19:43:49 +02002291#define SOCKET_INFO_MAX_LEN sizeof("[0000:0000:0000:0000:0000:0000:0000:0000]:12345")
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002292__LJMP static inline int hlua_socket_info(struct lua_State *L, struct sockaddr_storage *addr)
2293{
2294 static char buffer[SOCKET_INFO_MAX_LEN];
2295 int ret;
2296 int len;
2297 char *p;
2298
2299 ret = addr_to_str(addr, buffer+1, SOCKET_INFO_MAX_LEN-1);
2300 if (ret <= 0) {
2301 lua_pushnil(L);
2302 return 1;
2303 }
2304
2305 if (ret == AF_UNIX) {
2306 lua_pushstring(L, buffer+1);
2307 return 1;
2308 }
2309 else if (ret == AF_INET6) {
2310 buffer[0] = '[';
2311 len = strlen(buffer);
2312 buffer[len] = ']';
2313 len++;
2314 buffer[len] = ':';
2315 len++;
2316 p = buffer;
2317 }
2318 else if (ret == AF_INET) {
2319 p = buffer + 1;
2320 len = strlen(p);
2321 p[len] = ':';
2322 len++;
2323 }
2324 else {
2325 lua_pushnil(L);
2326 return 1;
2327 }
2328
2329 if (port_to_str(addr, p + len, SOCKET_INFO_MAX_LEN-1 - len) <= 0) {
2330 lua_pushnil(L);
2331 return 1;
2332 }
2333
2334 lua_pushstring(L, p);
2335 return 1;
2336}
2337
2338/* Returns information about the peer of the connection. */
2339__LJMP static int hlua_socket_getpeername(struct lua_State *L)
2340{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002341 struct hlua_socket *socket;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002342 struct xref *peer;
2343 struct appctx *appctx;
2344 struct stream_interface *si;
2345 struct stream *s;
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002346 int ret;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002347
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002348 MAY_LJMP(check_args(L, 1, "getpeername"));
2349
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002350 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002351
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002352 /* Check if we run on the same thread than the xreator thread.
2353 * We cannot access to the socket if the thread is different.
2354 */
2355 if (socket->tid != tid)
2356 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2357
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002358 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002359 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002360 if (!peer) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002361 lua_pushnil(L);
2362 return 1;
2363 }
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002364 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2365 si = appctx->owner;
2366 s = si_strm(si);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002367
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002368 if (!s->target_addr) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002369 xref_unlock(&socket->xref, peer);
Willy Tarreaua71f6422016-11-16 17:00:14 +01002370 lua_pushnil(L);
2371 return 1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002372 }
2373
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002374 ret = MAY_LJMP(hlua_socket_info(L, s->target_addr));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002375 xref_unlock(&socket->xref, peer);
2376 return ret;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002377}
2378
2379/* Returns information about my connection side. */
2380static int hlua_socket_getsockname(struct lua_State *L)
2381{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002382 struct hlua_socket *socket;
2383 struct connection *conn;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002384 struct appctx *appctx;
2385 struct xref *peer;
2386 struct stream_interface *si;
2387 struct stream *s;
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002388 int ret;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002389
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002390 MAY_LJMP(check_args(L, 1, "getsockname"));
2391
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002392 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002393
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002394 /* Check if we run on the same thread than the xreator thread.
2395 * We cannot access to the socket if the thread is different.
2396 */
2397 if (socket->tid != tid)
2398 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2399
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002400 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002401 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002402 if (!peer) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002403 lua_pushnil(L);
2404 return 1;
2405 }
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002406 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2407 si = appctx->owner;
2408 s = si_strm(si);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002409
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002410 conn = cs_conn(objt_cs(s->si[1].end));
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002411 if (!conn || !conn_get_src(conn)) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002412 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002413 lua_pushnil(L);
2414 return 1;
2415 }
2416
Willy Tarreau9da9a6f2019-07-17 14:49:44 +02002417 ret = hlua_socket_info(L, conn->src);
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002418 xref_unlock(&socket->xref, peer);
2419 return ret;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002420}
2421
2422/* This struct define the applet. */
Willy Tarreau30576452015-04-13 13:50:30 +02002423static struct applet update_applet = {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002424 .obj_type = OBJ_TYPE_APPLET,
2425 .name = "<LUA_TCP>",
2426 .fct = hlua_socket_handler,
2427 .release = hlua_socket_release,
2428};
2429
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002430__LJMP static int hlua_socket_connect_yield(struct lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002431{
2432 struct hlua_socket *socket = MAY_LJMP(hlua_checksocket(L, 1));
2433 struct hlua *hlua = hlua_gethlua(L);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002434 struct xref *peer;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002435 struct appctx *appctx;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002436 struct stream_interface *si;
2437 struct stream *s;
2438
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002439 /* Check if we run on the same thread than the xreator thread.
2440 * We cannot access to the socket if the thread is different.
2441 */
2442 if (socket->tid != tid)
2443 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2444
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002445 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002446 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002447 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002448 lua_pushnil(L);
2449 lua_pushstring(L, "Can't connect");
2450 return 2;
2451 }
2452 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2453 si = appctx->owner;
2454 s = si_strm(si);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002455
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002456 /* Check if we run on the same thread than the xreator thread.
2457 * We cannot access to the socket if the thread is different.
2458 */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002459 if (socket->tid != tid) {
2460 xref_unlock(&socket->xref, peer);
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002461 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002462 }
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002463
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002464 /* Check for connection close. */
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002465 if (!hlua || channel_output_closed(&s->req)) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002466 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002467 lua_pushnil(L);
2468 lua_pushstring(L, "Can't connect");
2469 return 2;
2470 }
2471
Willy Tarreaue09101e2018-10-16 17:37:12 +02002472 appctx = __objt_appctx(s->si[0].end);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002473
2474 /* Check for connection established. */
Thierry FOURNIER18d09902016-12-16 09:25:38 +01002475 if (appctx->ctx.hlua_cosocket.connected) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002476 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002477 lua_pushinteger(L, 1);
2478 return 1;
2479 }
2480
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002481 if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_write, hlua->task)) {
2482 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002483 WILL_LJMP(luaL_error(L, "out of memory error"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002484 }
2485 xref_unlock(&socket->xref, peer);
Willy Tarreau9635e032018-10-16 17:52:55 +02002486 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_connect_yield, TICK_ETERNITY, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002487 return 0;
2488}
2489
2490/* This function fail or initite the connection. */
2491__LJMP static int hlua_socket_connect(struct lua_State *L)
2492{
2493 struct hlua_socket *socket;
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002494 int port = -1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002495 const char *ip;
Thierry FOURNIER95ad96a2015-03-09 18:12:40 +01002496 struct hlua *hlua;
2497 struct appctx *appctx;
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002498 int low, high;
2499 struct sockaddr_storage *addr;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002500 struct xref *peer;
2501 struct stream_interface *si;
2502 struct stream *s;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002503
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002504 if (lua_gettop(L) < 2)
2505 WILL_LJMP(luaL_error(L, "connect: need at least 2 arguments"));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002506
2507 /* Get args. */
2508 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002509
2510 /* Check if we run on the same thread than the xreator thread.
2511 * We cannot access to the socket if the thread is different.
2512 */
2513 if (socket->tid != tid)
2514 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2515
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002516 ip = MAY_LJMP(luaL_checkstring(L, 2));
Tim Duesterhus6edab862018-01-06 19:04:45 +01002517 if (lua_gettop(L) >= 3) {
2518 luaL_Buffer b;
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002519 port = MAY_LJMP(luaL_checkinteger(L, 3));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002520
Tim Duesterhus6edab862018-01-06 19:04:45 +01002521 /* Force the ip to end with a colon, to support IPv6 addresses
2522 * that are not enclosed within square brackets.
2523 */
2524 if (port > 0) {
2525 luaL_buffinit(L, &b);
2526 luaL_addstring(&b, ip);
2527 luaL_addchar(&b, ':');
2528 luaL_pushresult(&b);
2529 ip = lua_tolstring(L, lua_gettop(L), NULL);
2530 }
2531 }
2532
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002533 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002534 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002535 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002536 lua_pushnil(L);
2537 return 1;
2538 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002539
2540 /* Parse ip address. */
Willy Tarreau5fc93282020-09-16 18:25:03 +02002541 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 +02002542 if (!addr) {
2543 xref_unlock(&socket->xref, peer);
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002544 WILL_LJMP(luaL_error(L, "connect: cannot parse destination address '%s'", ip));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002545 }
Willy Tarreau9da9a6f2019-07-17 14:49:44 +02002546
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002547 /* Set port. */
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002548 if (low == 0) {
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002549 if (addr->ss_family == AF_INET) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002550 if (port == -1) {
2551 xref_unlock(&socket->xref, peer);
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002552 WILL_LJMP(luaL_error(L, "connect: port missing"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002553 }
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002554 ((struct sockaddr_in *)addr)->sin_port = htons(port);
2555 } else if (addr->ss_family == AF_INET6) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002556 if (port == -1) {
2557 xref_unlock(&socket->xref, peer);
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002558 WILL_LJMP(luaL_error(L, "connect: port missing"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002559 }
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002560 ((struct sockaddr_in6 *)addr)->sin6_port = htons(port);
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002561 }
2562 }
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002563
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002564 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2565 si = appctx->owner;
2566 s = si_strm(si);
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002567
Willy Tarreau9b7587a2020-10-15 07:32:10 +02002568 if (!sockaddr_alloc(&s->target_addr, addr, sizeof(*addr))) {
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002569 xref_unlock(&socket->xref, peer);
2570 WILL_LJMP(luaL_error(L, "connect: internal error"));
2571 }
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002572 s->flags |= SF_ADDR_SET;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002573
Thierry FOURNIER95ad96a2015-03-09 18:12:40 +01002574 hlua = hlua_gethlua(L);
Willy Tarreaubdc97a82015-08-24 15:42:28 +02002575
2576 /* inform the stream that we want to be notified whenever the
2577 * connection completes.
2578 */
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01002579 si_cant_get(&s->si[0]);
Willy Tarreau3367d412018-11-15 10:57:41 +01002580 si_rx_endp_more(&s->si[0]);
Thierry FOURNIER8c8fbbe2015-09-26 17:02:35 +02002581 appctx_wakeup(appctx);
Willy Tarreaubdc97a82015-08-24 15:42:28 +02002582
Willy Tarreauf31af932020-01-14 09:59:38 +01002583 hlua->gc_count++;
Thierry FOURNIER7c39ab42015-09-27 22:53:33 +02002584
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002585 if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_write, hlua->task)) {
2586 xref_unlock(&socket->xref, peer);
Thierry FOURNIER95ad96a2015-03-09 18:12:40 +01002587 WILL_LJMP(luaL_error(L, "out of memory"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002588 }
2589 xref_unlock(&socket->xref, peer);
PiBa-NL706d5ee2018-05-05 23:51:42 +02002590
2591 task_wakeup(s->task, TASK_WOKEN_INIT);
2592 /* Return yield waiting for connection. */
2593
Willy Tarreau9635e032018-10-16 17:52:55 +02002594 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_connect_yield, TICK_ETERNITY, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002595
2596 return 0;
2597}
2598
Baptiste Assmann84bb4932015-03-02 21:40:06 +01002599#ifdef USE_OPENSSL
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002600__LJMP static int hlua_socket_connect_ssl(struct lua_State *L)
2601{
2602 struct hlua_socket *socket;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002603 struct xref *peer;
2604 struct appctx *appctx;
2605 struct stream_interface *si;
2606 struct stream *s;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002607
2608 MAY_LJMP(check_args(L, 3, "connect_ssl"));
2609 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002610
2611 /* 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 FOURNIER2da788e2017-09-11 18:37:23 +02002614 lua_pushnil(L);
2615 return 1;
2616 }
2617 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2618 si = appctx->owner;
2619 s = si_strm(si);
2620
2621 s->target = &socket_ssl.obj_type;
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002622 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002623 return MAY_LJMP(hlua_socket_connect(L));
2624}
Baptiste Assmann84bb4932015-03-02 21:40:06 +01002625#endif
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002626
2627__LJMP static int hlua_socket_setoption(struct lua_State *L)
2628{
2629 return 0;
2630}
2631
2632__LJMP static int hlua_socket_settimeout(struct lua_State *L)
2633{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002634 struct hlua_socket *socket;
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002635 int tmout;
Mark Lakes56cc1252018-03-27 09:48:06 +02002636 double dtmout;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002637 struct xref *peer;
2638 struct appctx *appctx;
2639 struct stream_interface *si;
2640 struct stream *s;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002641
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002642 MAY_LJMP(check_args(L, 2, "settimeout"));
2643
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002644 socket = MAY_LJMP(hlua_checksocket(L, 1));
Mark Lakes56cc1252018-03-27 09:48:06 +02002645
Cyril Bonté7ee465f2018-08-19 22:08:50 +02002646 /* convert the timeout to millis */
2647 dtmout = MAY_LJMP(luaL_checknumber(L, 2)) * 1000;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002648
Thierry Fournier17a921b2018-03-08 09:59:02 +01002649 /* Check for negative values */
Mark Lakes56cc1252018-03-27 09:48:06 +02002650 if (dtmout < 0)
Thierry Fournier17a921b2018-03-08 09:59:02 +01002651 WILL_LJMP(luaL_error(L, "settimeout: cannot set negatives values"));
2652
Mark Lakes56cc1252018-03-27 09:48:06 +02002653 if (dtmout > INT_MAX) /* overflow check */
Cyril Bonté7ee465f2018-08-19 22:08:50 +02002654 WILL_LJMP(luaL_error(L, "settimeout: cannot set values larger than %d ms", INT_MAX));
Mark Lakes56cc1252018-03-27 09:48:06 +02002655
2656 tmout = MS_TO_TICKS((int)dtmout);
Cyril Bonté7ee465f2018-08-19 22:08:50 +02002657 if (tmout == 0)
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05002658 tmout++; /* very small timeouts are adjusted to a minimum of 1ms */
Mark Lakes56cc1252018-03-27 09:48:06 +02002659
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002660 /* Check if we run on the same thread than the xreator thread.
2661 * We cannot access to the socket if the thread is different.
2662 */
2663 if (socket->tid != tid)
2664 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2665
Mark Lakes56cc1252018-03-27 09:48:06 +02002666 /* check for connection break. If some data were read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002667 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002668 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002669 hlua_pusherror(L, "socket: not yet initialised, you can't set timeouts.");
2670 WILL_LJMP(lua_error(L));
2671 return 0;
2672 }
2673 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2674 si = appctx->owner;
2675 s = si_strm(si);
2676
Cyril Bonté7bb63452018-08-17 23:51:02 +02002677 s->sess->fe->timeout.connect = tmout;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002678 s->req.rto = tmout;
2679 s->req.wto = tmout;
2680 s->res.rto = tmout;
2681 s->res.wto = tmout;
Cyril Bonté7bb63452018-08-17 23:51:02 +02002682 s->req.rex = tick_add_ifset(now_ms, tmout);
2683 s->req.wex = tick_add_ifset(now_ms, tmout);
2684 s->res.rex = tick_add_ifset(now_ms, tmout);
2685 s->res.wex = tick_add_ifset(now_ms, tmout);
2686
2687 s->task->expire = tick_add_ifset(now_ms, tmout);
2688 task_queue(s->task);
2689
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002690 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002691
Thierry Fourniere9636f12018-03-08 09:54:32 +01002692 lua_pushinteger(L, 1);
Tim Duesterhus119a5f12018-01-06 19:16:25 +01002693 return 1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002694}
2695
2696__LJMP static int hlua_socket_new(lua_State *L)
2697{
2698 struct hlua_socket *socket;
2699 struct appctx *appctx;
Willy Tarreau15b5e142015-04-04 14:38:25 +02002700 struct session *sess;
Willy Tarreau61cf7c82015-04-06 00:48:33 +02002701 struct stream *strm;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002702
2703 /* Check stack size. */
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01002704 if (!lua_checkstack(L, 3)) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002705 hlua_pusherror(L, "socket: full stack");
2706 goto out_fail_conf;
2707 }
2708
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01002709 /* Create the object: obj[0] = userdata. */
2710 lua_newtable(L);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002711 socket = MAY_LJMP(lua_newuserdata(L, sizeof(*socket)));
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01002712 lua_rawseti(L, -2, 0);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002713 memset(socket, 0, sizeof(*socket));
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002714 socket->tid = tid;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002715
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05002716 /* Check if the various memory pools are initialized. */
Willy Tarreaubafbe012017-11-24 17:34:44 +01002717 if (!pool_head_stream || !pool_head_buffer) {
Thierry FOURNIER4a6170c2015-03-09 17:07:10 +01002718 hlua_pusherror(L, "socket: uninitialized pools.");
2719 goto out_fail_conf;
2720 }
2721
Willy Tarreau87b09662015-04-03 00:22:06 +02002722 /* Pop a class stream metatable and affect it to the userdata. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002723 lua_rawgeti(L, LUA_REGISTRYINDEX, class_socket_ref);
2724 lua_setmetatable(L, -2);
2725
Willy Tarreaud420a972015-04-06 00:39:18 +02002726 /* Create the applet context */
Willy Tarreau5f4a47b2017-10-31 15:59:32 +01002727 appctx = appctx_new(&update_applet, tid_bit);
Willy Tarreau61cf7c82015-04-06 00:48:33 +02002728 if (!appctx) {
2729 hlua_pusherror(L, "socket: out of memory");
Willy Tarreaufeb76402015-04-03 14:10:06 +02002730 goto out_fail_conf;
Willy Tarreau61cf7c82015-04-06 00:48:33 +02002731 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002732
Thierry FOURNIER18d09902016-12-16 09:25:38 +01002733 appctx->ctx.hlua_cosocket.connected = 0;
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02002734 appctx->ctx.hlua_cosocket.die = 0;
Thierry FOURNIER18d09902016-12-16 09:25:38 +01002735 LIST_INIT(&appctx->ctx.hlua_cosocket.wake_on_write);
2736 LIST_INIT(&appctx->ctx.hlua_cosocket.wake_on_read);
Willy Tarreaub2bf8332015-04-04 15:58:58 +02002737
Willy Tarreaud420a972015-04-06 00:39:18 +02002738 /* Now create a session, task and stream for this applet */
2739 sess = session_new(&socket_proxy, NULL, &appctx->obj_type);
2740 if (!sess) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002741 hlua_pusherror(L, "socket: out of memory");
Willy Tarreaud420a972015-04-06 00:39:18 +02002742 goto out_fail_sess;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002743 }
2744
Willy Tarreau87787ac2017-08-28 16:22:54 +02002745 strm = stream_new(sess, &appctx->obj_type);
Willy Tarreau61cf7c82015-04-06 00:48:33 +02002746 if (!strm) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002747 hlua_pusherror(L, "socket: out of memory");
Willy Tarreaud420a972015-04-06 00:39:18 +02002748 goto out_fail_stream;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002749 }
2750
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002751 /* Initialise cross reference between stream and Lua socket object. */
2752 xref_create(&socket->xref, &appctx->ctx.hlua_cosocket.xref);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002753
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002754 /* Configure "right" stream interface. this "si" is used to connect
2755 * and retrieve data from the server. The connection is initialized
2756 * with the "struct server".
2757 */
Willy Tarreau61cf7c82015-04-06 00:48:33 +02002758 si_set_state(&strm->si[1], SI_ST_ASS);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002759
2760 /* Force destination server. */
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002761 strm->flags |= SF_DIRECT | SF_ASSIGNED | SF_BE_ASSIGNED;
Willy Tarreau61cf7c82015-04-06 00:48:33 +02002762 strm->target = &socket_tcp.obj_type;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002763
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002764 return 1;
2765
Willy Tarreaud420a972015-04-06 00:39:18 +02002766 out_fail_stream:
Willy Tarreau11c36242015-04-04 15:54:03 +02002767 session_free(sess);
Willy Tarreaud420a972015-04-06 00:39:18 +02002768 out_fail_sess:
2769 appctx_free(appctx);
2770 out_fail_conf:
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002771 WILL_LJMP(lua_error(L));
2772 return 0;
2773}
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01002774
2775/*
2776 *
2777 *
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002778 * Class Channel
2779 *
2780 *
2781 */
2782
2783/* Returns the struct hlua_channel join to the class channel in the
2784 * stack entry "ud" or throws an argument error.
2785 */
Willy Tarreau47860ed2015-03-10 14:07:50 +01002786__LJMP static struct channel *hlua_checkchannel(lua_State *L, int ud)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002787{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02002788 return MAY_LJMP(hlua_checkudata(L, ud, class_channel_ref));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002789}
2790
Willy Tarreau47860ed2015-03-10 14:07:50 +01002791/* Pushes the channel onto the top of the stack. If the stask does not have a
2792 * free slots, the function fails and returns 0;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002793 */
Willy Tarreau2a71af42015-03-10 13:51:50 +01002794static int hlua_channel_new(lua_State *L, struct channel *channel)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002795{
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002796 /* Check stack size. */
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01002797 if (!lua_checkstack(L, 3))
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002798 return 0;
2799
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01002800 lua_newtable(L);
Willy Tarreau47860ed2015-03-10 14:07:50 +01002801 lua_pushlightuserdata(L, channel);
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01002802 lua_rawseti(L, -2, 0);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002803
2804 /* Pop a class sesison metatable and affect it to the userdata. */
2805 lua_rawgeti(L, LUA_REGISTRYINDEX, class_channel_ref);
2806 lua_setmetatable(L, -2);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002807 return 1;
2808}
2809
2810/* Duplicate all the data present in the input channel and put it
2811 * in a string LUA variables. Returns -1 and push a nil value in
2812 * the stack if the channel is closed and all the data are consumed,
2813 * returns 0 if no data are available, otherwise it returns the length
Ilya Shipitsind4259502020-04-08 01:07:56 +05002814 * of the built string.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002815 */
Willy Tarreau47860ed2015-03-10 14:07:50 +01002816static inline int _hlua_channel_dup(struct channel *chn, lua_State *L)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002817{
2818 char *blk1;
2819 char *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02002820 size_t len1;
2821 size_t len2;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002822 int ret;
2823 luaL_Buffer b;
2824
Willy Tarreau06d80a92017-10-19 14:32:15 +02002825 ret = ci_getblk_nc(chn, &blk1, &len1, &blk2, &len2);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002826 if (unlikely(ret == 0))
2827 return 0;
2828
2829 if (unlikely(ret < 0)) {
2830 lua_pushnil(L);
2831 return -1;
2832 }
2833
2834 luaL_buffinit(L, &b);
2835 luaL_addlstring(&b, blk1, len1);
2836 if (unlikely(ret == 2))
2837 luaL_addlstring(&b, blk2, len2);
2838 luaL_pushresult(&b);
2839
2840 if (unlikely(ret == 2))
2841 return len1 + len2;
2842 return len1;
2843}
2844
2845/* "_hlua_channel_dup" wrapper. If no data are available, it returns
2846 * a yield. This function keep the data in the buffer.
2847 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002848__LJMP static int hlua_channel_dup_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002849{
Willy Tarreau47860ed2015-03-10 14:07:50 +01002850 struct channel *chn;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002851
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002852 chn = MAY_LJMP(hlua_checkchannel(L, 1));
2853
Thierry Fournier77016da2020-08-15 14:35:51 +02002854 if (chn_strm(chn)->be->mode == PR_MODE_HTTP) {
2855 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
Christopher Faulet3f829a42018-12-13 21:56:45 +01002856 WILL_LJMP(lua_error(L));
Thierry Fournier77016da2020-08-15 14:35:51 +02002857 }
Christopher Faulet3f829a42018-12-13 21:56:45 +01002858
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002859 if (_hlua_channel_dup(chn, L) == 0)
Willy Tarreau9635e032018-10-16 17:52:55 +02002860 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_dup_yield, TICK_ETERNITY, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002861 return 1;
2862}
2863
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002864/* Check arguments for the function "hlua_channel_dup_yield". */
2865__LJMP static int hlua_channel_dup(lua_State *L)
2866{
2867 MAY_LJMP(check_args(L, 1, "dup"));
2868 MAY_LJMP(hlua_checkchannel(L, 1));
2869 return MAY_LJMP(hlua_channel_dup_yield(L, 0, 0));
2870}
2871
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002872/* "_hlua_channel_dup" wrapper. If no data are available, it returns
2873 * a yield. This function consumes the data in the buffer. It returns
2874 * a string containing the data or a nil pointer if no data are available
2875 * and the channel is closed.
2876 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002877__LJMP static int hlua_channel_get_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002878{
Willy Tarreau47860ed2015-03-10 14:07:50 +01002879 struct channel *chn;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002880 int ret;
2881
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002882 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002883
Thierry Fournier77016da2020-08-15 14:35:51 +02002884 if (chn_strm(chn)->be->mode == PR_MODE_HTTP) {
2885 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
Christopher Faulet3f829a42018-12-13 21:56:45 +01002886 WILL_LJMP(lua_error(L));
Thierry Fournier77016da2020-08-15 14:35:51 +02002887 }
Christopher Faulet3f829a42018-12-13 21:56:45 +01002888
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002889 ret = _hlua_channel_dup(chn, L);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002890 if (unlikely(ret == 0))
Willy Tarreau9635e032018-10-16 17:52:55 +02002891 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_get_yield, TICK_ETERNITY, 0));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002892
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002893 if (unlikely(ret == -1))
2894 return 1;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002895
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002896 b_sub(&chn->buf, ret);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002897 return 1;
2898}
2899
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002900/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002901__LJMP static int hlua_channel_get(lua_State *L)
2902{
2903 MAY_LJMP(check_args(L, 1, "get"));
2904 MAY_LJMP(hlua_checkchannel(L, 1));
2905 return MAY_LJMP(hlua_channel_get_yield(L, 0, 0));
2906}
2907
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002908/* This functions consumes and returns one line. If the channel is closed,
2909 * and the last data does not contains a final '\n', the data are returned
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002910 * without the final '\n'. When no more data are available, it returns nil
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002911 * value.
2912 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002913__LJMP static int hlua_channel_getline_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002914{
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002915 char *blk1;
2916 char *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02002917 size_t len1;
2918 size_t len2;
2919 size_t len;
Willy Tarreau47860ed2015-03-10 14:07:50 +01002920 struct channel *chn;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002921 int ret;
2922 luaL_Buffer b;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002923
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002924 chn = MAY_LJMP(hlua_checkchannel(L, 1));
2925
Thierry Fournier77016da2020-08-15 14:35:51 +02002926 if (chn_strm(chn)->be->mode == PR_MODE_HTTP) {
2927 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
Christopher Faulet3f829a42018-12-13 21:56:45 +01002928 WILL_LJMP(lua_error(L));
Thierry Fournier77016da2020-08-15 14:35:51 +02002929 }
Christopher Faulet3f829a42018-12-13 21:56:45 +01002930
Willy Tarreau06d80a92017-10-19 14:32:15 +02002931 ret = ci_getline_nc(chn, &blk1, &len1, &blk2, &len2);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002932 if (ret == 0)
Willy Tarreau9635e032018-10-16 17:52:55 +02002933 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_getline_yield, TICK_ETERNITY, 0));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002934
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002935 if (ret == -1) {
2936 lua_pushnil(L);
2937 return 1;
2938 }
2939
2940 luaL_buffinit(L, &b);
2941 luaL_addlstring(&b, blk1, len1);
2942 len = len1;
2943 if (unlikely(ret == 2)) {
2944 luaL_addlstring(&b, blk2, len2);
2945 len += len2;
2946 }
2947 luaL_pushresult(&b);
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002948 b_rep_blk(&chn->buf, ci_head(chn), ci_head(chn) + len, NULL, 0);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002949 return 1;
2950}
2951
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002952/* Check arguments for the function "hlua_channel_getline_yield". */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002953__LJMP static int hlua_channel_getline(lua_State *L)
2954{
2955 MAY_LJMP(check_args(L, 1, "getline"));
2956 MAY_LJMP(hlua_checkchannel(L, 1));
2957 return MAY_LJMP(hlua_channel_getline_yield(L, 0, 0));
2958}
2959
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002960/* This function takes a string as input, and append it at the
2961 * input side of channel. If the data is too big, but a space
2962 * is probably available after sending some data, the function
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002963 * yields. If the data is bigger than the buffer, or if the
2964 * channel is closed, it returns -1. Otherwise, it returns the
2965 * amount of data written.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002966 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002967__LJMP static int hlua_channel_append_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002968{
Willy Tarreau47860ed2015-03-10 14:07:50 +01002969 struct channel *chn = MAY_LJMP(hlua_checkchannel(L, 1));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002970 size_t len;
2971 const char *str = MAY_LJMP(luaL_checklstring(L, 2, &len));
2972 int l = MAY_LJMP(luaL_checkinteger(L, 3));
2973 int ret;
2974 int max;
2975
Thierry Fournier77016da2020-08-15 14:35:51 +02002976 if (chn_strm(chn)->be->mode == PR_MODE_HTTP) {
2977 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
Christopher Faulet3f829a42018-12-13 21:56:45 +01002978 WILL_LJMP(lua_error(L));
Thierry Fournier77016da2020-08-15 14:35:51 +02002979 }
Christopher Faulet3f829a42018-12-13 21:56:45 +01002980
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002981 /* Check if the buffer is available because HAProxy doesn't allocate
Christopher Fauleta73e59b2016-12-09 17:30:18 +01002982 * the request buffer if its not required.
2983 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002984 if (chn->buf.size == 0) {
Willy Tarreau4b962a42018-11-15 11:03:21 +01002985 si_rx_buff_blk(chn_prod(chn));
Willy Tarreau9635e032018-10-16 17:52:55 +02002986 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_append_yield, TICK_ETERNITY, 0));
Christopher Fauleta73e59b2016-12-09 17:30:18 +01002987 }
2988
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002989 max = channel_recv_limit(chn) - b_data(&chn->buf);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002990 if (max > len - l)
2991 max = len - l;
2992
Willy Tarreau06d80a92017-10-19 14:32:15 +02002993 ret = ci_putblk(chn, str + l, max);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002994 if (ret == -2 || ret == -3) {
2995 lua_pushinteger(L, -1);
2996 return 1;
2997 }
Willy Tarreaubc18da12015-03-13 14:00:47 +01002998 if (ret == -1) {
2999 chn->flags |= CF_WAKE_WRITE;
Willy Tarreau9635e032018-10-16 17:52:55 +02003000 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_append_yield, TICK_ETERNITY, 0));
Willy Tarreaubc18da12015-03-13 14:00:47 +01003001 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003002 l += ret;
3003 lua_pop(L, 1);
3004 lua_pushinteger(L, l);
3005
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003006 max = channel_recv_limit(chn) - b_data(&chn->buf);
Willy Tarreaua79021a2018-06-15 18:07:57 +02003007 if (max == 0 && co_data(chn) == 0) {
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003008 /* There are no space available, and the output buffer is empty.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003009 * in this case, we cannot add more data, so we cannot yield,
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05003010 * we return the amount of copied data.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003011 */
3012 return 1;
3013 }
3014 if (l < len)
Willy Tarreau9635e032018-10-16 17:52:55 +02003015 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_append_yield, TICK_ETERNITY, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003016 return 1;
3017}
3018
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003019/* Just a wrapper of "hlua_channel_append_yield". It returns the length
3020 * of the written string, or -1 if the channel is closed or if the
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003021 * buffer size is too little for the data.
3022 */
3023__LJMP static int hlua_channel_append(lua_State *L)
3024{
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003025 size_t len;
3026
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003027 MAY_LJMP(check_args(L, 2, "append"));
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003028 MAY_LJMP(hlua_checkchannel(L, 1));
3029 MAY_LJMP(luaL_checklstring(L, 2, &len));
3030 MAY_LJMP(luaL_checkinteger(L, 3));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003031 lua_pushinteger(L, 0);
3032
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003033 return MAY_LJMP(hlua_channel_append_yield(L, 0, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003034}
3035
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003036/* Just a wrapper of "hlua_channel_append_yield". This wrapper starts
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003037 * his process by cleaning the buffer. The result is a replacement
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003038 * of the current data. It returns the length of the written string,
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003039 * or -1 if the channel is closed or if the buffer size is too
3040 * little for the data.
3041 */
3042__LJMP static int hlua_channel_set(lua_State *L)
3043{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003044 struct channel *chn;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003045
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003046 MAY_LJMP(check_args(L, 2, "set"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003047 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003048 lua_pushinteger(L, 0);
3049
Thierry Fournier77016da2020-08-15 14:35:51 +02003050 if (chn_strm(chn)->be->mode == PR_MODE_HTTP) {
3051 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
Christopher Faulet3f829a42018-12-13 21:56:45 +01003052 WILL_LJMP(lua_error(L));
Thierry Fournier77016da2020-08-15 14:35:51 +02003053 }
Christopher Faulet3f829a42018-12-13 21:56:45 +01003054
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003055 b_set_data(&chn->buf, co_data(chn));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003056
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003057 return MAY_LJMP(hlua_channel_append_yield(L, 0, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003058}
3059
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003060/* Append data in the output side of the buffer. This data is immediately
3061 * sent. The function returns the amount of data written. If the buffer
3062 * cannot contain the data, the function yields. The function returns -1
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003063 * if the channel is closed.
3064 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003065__LJMP static int hlua_channel_send_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003066{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003067 struct channel *chn = MAY_LJMP(hlua_checkchannel(L, 1));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003068 size_t len;
3069 const char *str = MAY_LJMP(luaL_checklstring(L, 2, &len));
3070 int l = MAY_LJMP(luaL_checkinteger(L, 3));
3071 int max;
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003072 struct hlua *hlua = hlua_gethlua(L);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003073
Thierry Fournier77016da2020-08-15 14:35:51 +02003074 if (chn_strm(chn)->be->mode == PR_MODE_HTTP) {
3075 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
Christopher Faulet3f829a42018-12-13 21:56:45 +01003076 WILL_LJMP(lua_error(L));
Thierry Fournier77016da2020-08-15 14:35:51 +02003077 }
Christopher Faulet3f829a42018-12-13 21:56:45 +01003078
Willy Tarreau47860ed2015-03-10 14:07:50 +01003079 if (unlikely(channel_output_closed(chn))) {
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003080 lua_pushinteger(L, -1);
3081 return 1;
3082 }
3083
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003084 /* Check if the buffer is available because HAProxy doesn't allocate
Thierry FOURNIER3e3a6082015-03-05 17:06:12 +01003085 * the request buffer if its not required.
3086 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003087 if (chn->buf.size == 0) {
Willy Tarreau4b962a42018-11-15 11:03:21 +01003088 si_rx_buff_blk(chn_prod(chn));
Willy Tarreau9635e032018-10-16 17:52:55 +02003089 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_send_yield, TICK_ETERNITY, 0));
Thierry FOURNIER3e3a6082015-03-05 17:06:12 +01003090 }
3091
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003092 /* The written data will be immediately sent, so we can check
3093 * the available space without taking in account the reserve.
3094 * The reserve is guaranteed for the processing of incoming
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003095 * data, because the buffer will be flushed.
3096 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003097 max = b_room(&chn->buf);
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003098
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003099 /* If there is no space available, and the output buffer is empty.
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003100 * in this case, we cannot add more data, so we cannot yield,
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05003101 * we return the amount of copied data.
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003102 */
Willy Tarreaua79021a2018-06-15 18:07:57 +02003103 if (max == 0 && co_data(chn) == 0)
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003104 return 1;
3105
3106 /* Adjust the real required length. */
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003107 if (max > len - l)
3108 max = len - l;
3109
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003110 /* The buffer available size may be not contiguous. This test
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003111 * detects a non contiguous buffer and realign it.
3112 */
Willy Tarreau3f679992018-06-15 15:06:42 +02003113 if (ci_space_for_replace(chn) < max)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003114 channel_slow_realign(chn, trash.area);
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003115
3116 /* Copy input data in the buffer. */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003117 max = b_rep_blk(&chn->buf, ci_head(chn), ci_head(chn), str + l, max);
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003118
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003119 /* buffer replace considers that the input part is filled.
3120 * so, I must forward these new data in the output part.
3121 */
Willy Tarreaubcbd3932018-06-06 07:13:22 +02003122 c_adv(chn, max);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003123
3124 l += max;
3125 lua_pop(L, 1);
3126 lua_pushinteger(L, l);
3127
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003128 /* If there is no space available, and the output buffer is empty.
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003129 * in this case, we cannot add more data, so we cannot yield,
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05003130 * we return the amount of copied data.
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003131 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003132 max = b_room(&chn->buf);
Willy Tarreaua79021a2018-06-15 18:07:57 +02003133 if (max == 0 && co_data(chn) == 0)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003134 return 1;
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003135
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003136 if (l < len) {
3137 /* If we are waiting for space in the response buffer, we
3138 * must set the flag WAKERESWR. This flag required the task
3139 * wake up if any activity is detected on the response buffer.
3140 */
Willy Tarreau47860ed2015-03-10 14:07:50 +01003141 if (chn->flags & CF_ISRESP)
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003142 HLUA_SET_WAKERESWR(hlua);
Thierry FOURNIER53e08ec2015-03-06 00:35:53 +01003143 else
3144 HLUA_SET_WAKEREQWR(hlua);
Willy Tarreau9635e032018-10-16 17:52:55 +02003145 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_send_yield, TICK_ETERNITY, 0));
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003146 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003147
3148 return 1;
3149}
3150
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05003151/* Just a wrapper of "_hlua_channel_send". This wrapper permits
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003152 * yield the LUA process, and resume it without checking the
3153 * input arguments.
3154 */
3155__LJMP static int hlua_channel_send(lua_State *L)
3156{
3157 MAY_LJMP(check_args(L, 2, "send"));
3158 lua_pushinteger(L, 0);
3159
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003160 return MAY_LJMP(hlua_channel_send_yield(L, 0, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003161}
3162
3163/* This function forward and amount of butes. The data pass from
3164 * the input side of the buffer to the output side, and can be
3165 * forwarded. This function never fails.
3166 *
3167 * The Lua function takes an amount of bytes to be forwarded in
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05003168 * input. It returns the number of bytes forwarded.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003169 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003170__LJMP static int hlua_channel_forward_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003171{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003172 struct channel *chn;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003173 int len;
3174 int l;
3175 int max;
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003176 struct hlua *hlua = hlua_gethlua(L);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003177
3178 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Faulet3f829a42018-12-13 21:56:45 +01003179
Thierry Fournier77016da2020-08-15 14:35:51 +02003180 if (chn_strm(chn)->be->mode == PR_MODE_HTTP) {
3181 lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode.");
Christopher Faulet3f829a42018-12-13 21:56:45 +01003182 WILL_LJMP(lua_error(L));
Thierry Fournier77016da2020-08-15 14:35:51 +02003183 }
Christopher Faulet3f829a42018-12-13 21:56:45 +01003184
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003185 len = MAY_LJMP(luaL_checkinteger(L, 2));
3186 l = MAY_LJMP(luaL_checkinteger(L, -1));
3187
3188 max = len - l;
Willy Tarreaua79021a2018-06-15 18:07:57 +02003189 if (max > ci_data(chn))
3190 max = ci_data(chn);
Willy Tarreau47860ed2015-03-10 14:07:50 +01003191 channel_forward(chn, max);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003192 l += max;
3193
3194 lua_pop(L, 1);
3195 lua_pushinteger(L, l);
3196
3197 /* Check if it miss bytes to forward. */
3198 if (l < len) {
3199 /* The the input channel or the output channel are closed, we
3200 * must return the amount of data forwarded.
3201 */
Willy Tarreau47860ed2015-03-10 14:07:50 +01003202 if (channel_input_closed(chn) || channel_output_closed(chn))
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003203 return 1;
3204
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003205 /* If we are waiting for space data in the response buffer, we
3206 * must set the flag WAKERESWR. This flag required the task
3207 * wake up if any activity is detected on the response buffer.
3208 */
Willy Tarreau47860ed2015-03-10 14:07:50 +01003209 if (chn->flags & CF_ISRESP)
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003210 HLUA_SET_WAKERESWR(hlua);
Thierry FOURNIER53e08ec2015-03-06 00:35:53 +01003211 else
3212 HLUA_SET_WAKEREQWR(hlua);
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003213
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003214 /* Otherwise, we can yield waiting for new data in the inpout side. */
Willy Tarreau9635e032018-10-16 17:52:55 +02003215 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_forward_yield, TICK_ETERNITY, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003216 }
3217
3218 return 1;
3219}
3220
3221/* Just check the input and prepare the stack for the previous
3222 * function "hlua_channel_forward_yield"
3223 */
3224__LJMP static int hlua_channel_forward(lua_State *L)
3225{
3226 MAY_LJMP(check_args(L, 2, "forward"));
3227 MAY_LJMP(hlua_checkchannel(L, 1));
3228 MAY_LJMP(luaL_checkinteger(L, 2));
3229
3230 lua_pushinteger(L, 0);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003231 return MAY_LJMP(hlua_channel_forward_yield(L, 0, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003232}
3233
3234/* Just returns the number of bytes available in the input
3235 * side of the buffer. This function never fails.
3236 */
3237__LJMP static int hlua_channel_get_in_len(lua_State *L)
3238{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003239 struct channel *chn;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003240
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003241 MAY_LJMP(check_args(L, 1, "get_in_len"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003242 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Fauleta3ceac12018-12-14 13:39:09 +01003243 if (IS_HTX_STRM(chn_strm(chn))) {
3244 struct htx *htx = htxbuf(&chn->buf);
3245 lua_pushinteger(L, htx->data - co_data(chn));
3246 }
3247 else
3248 lua_pushinteger(L, ci_data(chn));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003249 return 1;
3250}
3251
Thierry FOURNIER / OZON.IO65192f32016-11-07 15:28:40 +01003252/* Returns true if the channel is full. */
3253__LJMP static int hlua_channel_is_full(lua_State *L)
3254{
3255 struct channel *chn;
Thierry FOURNIER / OZON.IO65192f32016-11-07 15:28:40 +01003256
3257 MAY_LJMP(check_args(L, 1, "is_full"));
3258 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Faulet0ec740e2020-02-26 11:59:19 +01003259 /* ignore the reserve, we are not on a producer side (ie in an
3260 * applet).
3261 */
3262 lua_pushboolean(L, channel_full(chn, 0));
Thierry FOURNIER / OZON.IO65192f32016-11-07 15:28:40 +01003263 return 1;
3264}
3265
Christopher Faulet2ac9ba22020-02-25 10:15:50 +01003266/* Returns true if the channel is the response channel. */
3267__LJMP static int hlua_channel_is_resp(lua_State *L)
3268{
3269 struct channel *chn;
3270
3271 MAY_LJMP(check_args(L, 1, "is_resp"));
3272 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3273
3274 lua_pushboolean(L, !!(chn->flags & CF_ISRESP));
3275 return 1;
3276}
3277
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003278/* Just returns the number of bytes available in the output
3279 * side of the buffer. This function never fails.
3280 */
3281__LJMP static int hlua_channel_get_out_len(lua_State *L)
3282{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003283 struct channel *chn;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003284
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003285 MAY_LJMP(check_args(L, 1, "get_out_len"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003286 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Willy Tarreaua79021a2018-06-15 18:07:57 +02003287 lua_pushinteger(L, co_data(chn));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003288 return 1;
3289}
3290
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003291/*
3292 *
3293 *
3294 * Class Fetches
3295 *
3296 *
3297 */
3298
3299/* Returns a struct hlua_session if the stack entry "ud" is
Willy Tarreau87b09662015-04-03 00:22:06 +02003300 * a class stream, otherwise it throws an error.
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003301 */
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01003302__LJMP static struct hlua_smp *hlua_checkfetches(lua_State *L, int ud)
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003303{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02003304 return MAY_LJMP(hlua_checkudata(L, ud, class_fetches_ref));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003305}
3306
3307/* This function creates and push in the stack a fetch object according
3308 * with a current TXN.
3309 */
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003310static int hlua_fetches_new(lua_State *L, struct hlua_txn *txn, unsigned int flags)
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003311{
Willy Tarreau7073c472015-04-06 11:15:40 +02003312 struct hlua_smp *hsmp;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003313
3314 /* Check stack size. */
3315 if (!lua_checkstack(L, 3))
3316 return 0;
3317
3318 /* Create the object: obj[0] = userdata.
3319 * Note that the base of the Fetches object is the
3320 * transaction object.
3321 */
3322 lua_newtable(L);
Willy Tarreau7073c472015-04-06 11:15:40 +02003323 hsmp = lua_newuserdata(L, sizeof(*hsmp));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003324 lua_rawseti(L, -2, 0);
3325
Willy Tarreau7073c472015-04-06 11:15:40 +02003326 hsmp->s = txn->s;
3327 hsmp->p = txn->p;
Thierry FOURNIERc4eebc82015-11-02 10:01:59 +01003328 hsmp->dir = txn->dir;
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003329 hsmp->flags = flags;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003330
3331 /* Pop a class sesison metatable and affect it to the userdata. */
3332 lua_rawgeti(L, LUA_REGISTRYINDEX, class_fetches_ref);
3333 lua_setmetatable(L, -2);
3334
3335 return 1;
3336}
3337
3338/* This function is an LUA binding. It is called with each sample-fetch.
3339 * It uses closure argument to store the associated sample-fetch. It
3340 * returns only one argument or throws an error. An error is thrown
3341 * only if an error is encountered during the argument parsing. If
3342 * the "sample-fetch" function fails, nil is returned.
3343 */
3344__LJMP static int hlua_run_sample_fetch(lua_State *L)
3345{
Willy Tarreaub2ccb562015-04-06 11:11:15 +02003346 struct hlua_smp *hsmp;
Willy Tarreau2ec22742015-03-10 14:27:20 +01003347 struct sample_fetch *f;
Frédéric Lécaillef874a832018-06-15 13:56:04 +02003348 struct arg args[ARGM_NBARGS + 1] = {{0}};
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003349 int i;
3350 struct sample smp;
3351
3352 /* Get closure arguments. */
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02003353 f = lua_touserdata(L, lua_upvalueindex(1));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003354
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003355 /* Get traditional arguments. */
Willy Tarreaub2ccb562015-04-06 11:11:15 +02003356 hsmp = MAY_LJMP(hlua_checkfetches(L, 1));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003357
Thierry FOURNIERca988662015-12-20 18:43:03 +01003358 /* Check execution authorization. */
3359 if (f->use & SMP_USE_HTTP_ANY &&
3360 !(hsmp->flags & HLUA_F_MAY_USE_HTTP)) {
3361 lua_pushfstring(L, "the sample-fetch '%s' needs an HTTP parser which "
3362 "is not available in Lua services", f->kw);
3363 WILL_LJMP(lua_error(L));
3364 }
3365
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003366 /* Get extra arguments. */
3367 for (i = 0; i < lua_gettop(L) - 1; i++) {
3368 if (i >= ARGM_NBARGS)
3369 break;
3370 hlua_lua2arg(L, i + 2, &args[i]);
3371 }
3372 args[i].type = ARGT_STOP;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003373 args[i].data.str.area = NULL;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003374
3375 /* Check arguments. */
Willy Tarreaub2ccb562015-04-06 11:11:15 +02003376 MAY_LJMP(hlua_lua2arg_check(L, 2, args, f->arg_mask, hsmp->p));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003377
3378 /* Run the special args checker. */
Willy Tarreau2ec22742015-03-10 14:27:20 +01003379 if (f->val_args && !f->val_args(args, NULL)) {
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003380 lua_pushfstring(L, "error in arguments");
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003381 goto error;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003382 }
3383
3384 /* Initialise the sample. */
3385 memset(&smp, 0, sizeof(smp));
3386
3387 /* Run the sample fetch process. */
Willy Tarreau1777ea62016-03-10 16:15:46 +01003388 smp_set_owner(&smp, hsmp->p, hsmp->s->sess, hsmp->s, hsmp->dir & SMP_OPT_DIR);
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003389 if (!f->process(args, &smp, f->kw, f->private)) {
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003390 if (hsmp->flags & HLUA_F_AS_STRING)
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01003391 lua_pushstring(L, "");
3392 else
3393 lua_pushnil(L);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003394 goto end;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003395 }
3396
3397 /* Convert the returned sample in lua value. */
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003398 if (hsmp->flags & HLUA_F_AS_STRING)
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01003399 hlua_smp2lua_str(L, &smp);
3400 else
3401 hlua_smp2lua(L, &smp);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003402
3403 end:
3404 for (i = 0; args[i].type != ARGT_STOP; i++) {
3405 if (args[i].type == ARGT_STR)
3406 chunk_destroy(&args[i].data.str);
Christopher Fauletfd2e9062020-08-06 11:10:57 +02003407 else if (args[i].type == ARGT_REG)
3408 regex_free(args[i].data.reg);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003409 }
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003410 return 1;
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003411
3412 error:
3413 for (i = 0; args[i].type != ARGT_STOP; i++) {
3414 if (args[i].type == ARGT_STR)
3415 chunk_destroy(&args[i].data.str);
Christopher Fauletfd2e9062020-08-06 11:10:57 +02003416 else if (args[i].type == ARGT_REG)
3417 regex_free(args[i].data.reg);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003418 }
3419 WILL_LJMP(lua_error(L));
3420 return 0; /* Never reached */
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003421}
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003422
3423/*
3424 *
3425 *
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003426 * Class Converters
3427 *
3428 *
3429 */
3430
3431/* Returns a struct hlua_session if the stack entry "ud" is
Willy Tarreau87b09662015-04-03 00:22:06 +02003432 * a class stream, otherwise it throws an error.
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003433 */
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01003434__LJMP static struct hlua_smp *hlua_checkconverters(lua_State *L, int ud)
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003435{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02003436 return MAY_LJMP(hlua_checkudata(L, ud, class_converters_ref));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003437}
3438
3439/* This function creates and push in the stack a Converters object
3440 * according with a current TXN.
3441 */
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003442static int hlua_converters_new(lua_State *L, struct hlua_txn *txn, unsigned int flags)
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003443{
Willy Tarreau7073c472015-04-06 11:15:40 +02003444 struct hlua_smp *hsmp;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003445
3446 /* Check stack size. */
3447 if (!lua_checkstack(L, 3))
3448 return 0;
3449
3450 /* Create the object: obj[0] = userdata.
3451 * Note that the base of the Converters object is the
3452 * same than the TXN object.
3453 */
3454 lua_newtable(L);
Willy Tarreau7073c472015-04-06 11:15:40 +02003455 hsmp = lua_newuserdata(L, sizeof(*hsmp));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003456 lua_rawseti(L, -2, 0);
3457
Willy Tarreau7073c472015-04-06 11:15:40 +02003458 hsmp->s = txn->s;
3459 hsmp->p = txn->p;
Thierry FOURNIERc4eebc82015-11-02 10:01:59 +01003460 hsmp->dir = txn->dir;
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003461 hsmp->flags = flags;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003462
Willy Tarreau87b09662015-04-03 00:22:06 +02003463 /* Pop a class stream metatable and affect it to the table. */
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003464 lua_rawgeti(L, LUA_REGISTRYINDEX, class_converters_ref);
3465 lua_setmetatable(L, -2);
3466
3467 return 1;
3468}
3469
3470/* This function is an LUA binding. It is called with each converter.
3471 * It uses closure argument to store the associated converter. It
3472 * returns only one argument or throws an error. An error is thrown
3473 * only if an error is encountered during the argument parsing. If
3474 * the converter function function fails, nil is returned.
3475 */
3476__LJMP static int hlua_run_sample_conv(lua_State *L)
3477{
Willy Tarreauda5f1082015-04-06 11:17:13 +02003478 struct hlua_smp *hsmp;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003479 struct sample_conv *conv;
Frédéric Lécaillef874a832018-06-15 13:56:04 +02003480 struct arg args[ARGM_NBARGS + 1] = {{0}};
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003481 int i;
3482 struct sample smp;
3483
3484 /* Get closure arguments. */
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02003485 conv = lua_touserdata(L, lua_upvalueindex(1));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003486
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003487 /* Get traditional arguments. */
Willy Tarreauda5f1082015-04-06 11:17:13 +02003488 hsmp = MAY_LJMP(hlua_checkconverters(L, 1));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003489
3490 /* Get extra arguments. */
3491 for (i = 0; i < lua_gettop(L) - 2; i++) {
3492 if (i >= ARGM_NBARGS)
3493 break;
3494 hlua_lua2arg(L, i + 3, &args[i]);
3495 }
3496 args[i].type = ARGT_STOP;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003497 args[i].data.str.area = NULL;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003498
3499 /* Check arguments. */
Willy Tarreauda5f1082015-04-06 11:17:13 +02003500 MAY_LJMP(hlua_lua2arg_check(L, 3, args, conv->arg_mask, hsmp->p));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003501
3502 /* Run the special args checker. */
3503 if (conv->val_args && !conv->val_args(args, conv, "", 0, NULL)) {
3504 hlua_pusherror(L, "error in arguments");
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003505 goto error;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003506 }
3507
3508 /* Initialise the sample. */
Amaury Denoyellebc0af6a2020-10-29 17:21:20 +01003509 memset(&smp, 0, sizeof(smp));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003510 if (!hlua_lua2smp(L, 2, &smp)) {
3511 hlua_pusherror(L, "error in the input argument");
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003512 goto error;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003513 }
3514
Willy Tarreau1777ea62016-03-10 16:15:46 +01003515 smp_set_owner(&smp, hsmp->p, hsmp->s->sess, hsmp->s, hsmp->dir & SMP_OPT_DIR);
3516
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003517 /* Apply expected cast. */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003518 if (!sample_casts[smp.data.type][conv->in_type]) {
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003519 hlua_pusherror(L, "invalid input argument: cannot cast '%s' to '%s'",
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003520 smp_to_type[smp.data.type], smp_to_type[conv->in_type]);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003521 goto error;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003522 }
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003523 if (sample_casts[smp.data.type][conv->in_type] != c_none &&
3524 !sample_casts[smp.data.type][conv->in_type](&smp)) {
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003525 hlua_pusherror(L, "error during the input argument casting");
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003526 goto error;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003527 }
3528
3529 /* Run the sample conversion process. */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02003530 if (!conv->process(args, &smp, conv->private)) {
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003531 if (hsmp->flags & HLUA_F_AS_STRING)
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01003532 lua_pushstring(L, "");
3533 else
Willy Tarreaua678b432015-08-28 10:14:59 +02003534 lua_pushnil(L);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003535 goto end;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003536 }
3537
3538 /* Convert the returned sample in lua value. */
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003539 if (hsmp->flags & HLUA_F_AS_STRING)
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01003540 hlua_smp2lua_str(L, &smp);
3541 else
3542 hlua_smp2lua(L, &smp);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003543 end:
3544 for (i = 0; args[i].type != ARGT_STOP; i++) {
3545 if (args[i].type == ARGT_STR)
3546 chunk_destroy(&args[i].data.str);
Christopher Fauletfd2e9062020-08-06 11:10:57 +02003547 else if (args[i].type == ARGT_REG)
3548 regex_free(args[i].data.reg);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003549 }
Willy Tarreaua678b432015-08-28 10:14:59 +02003550 return 1;
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003551
3552 error:
3553 for (i = 0; args[i].type != ARGT_STOP; i++) {
3554 if (args[i].type == ARGT_STR)
3555 chunk_destroy(&args[i].data.str);
Christopher Fauletfd2e9062020-08-06 11:10:57 +02003556 else if (args[i].type == ARGT_REG)
3557 regex_free(args[i].data.reg);
Christopher Fauletaec27ef2020-08-06 08:54:25 +02003558 }
3559 WILL_LJMP(lua_error(L));
3560 return 0; /* Never reached */
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003561}
3562
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003563/*
3564 *
3565 *
3566 * Class AppletTCP
3567 *
3568 *
3569 */
3570
3571/* Returns a struct hlua_txn if the stack entry "ud" is
3572 * a class stream, otherwise it throws an error.
3573 */
3574__LJMP static struct hlua_appctx *hlua_checkapplet_tcp(lua_State *L, int ud)
3575{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02003576 return MAY_LJMP(hlua_checkudata(L, ud, class_applet_tcp_ref));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003577}
3578
3579/* This function creates and push in the stack an Applet object
3580 * according with a current TXN.
3581 */
3582static int hlua_applet_tcp_new(lua_State *L, struct appctx *ctx)
3583{
3584 struct hlua_appctx *appctx;
3585 struct stream_interface *si = ctx->owner;
3586 struct stream *s = si_strm(si);
3587 struct proxy *p = s->be;
3588
3589 /* Check stack size. */
3590 if (!lua_checkstack(L, 3))
3591 return 0;
3592
3593 /* Create the object: obj[0] = userdata.
3594 * Note that the base of the Converters object is the
3595 * same than the TXN object.
3596 */
3597 lua_newtable(L);
3598 appctx = lua_newuserdata(L, sizeof(*appctx));
3599 lua_rawseti(L, -2, 0);
3600 appctx->appctx = ctx;
3601 appctx->htxn.s = s;
3602 appctx->htxn.p = p;
3603
3604 /* Create the "f" field that contains a list of fetches. */
3605 lua_pushstring(L, "f");
3606 if (!hlua_fetches_new(L, &appctx->htxn, 0))
3607 return 0;
3608 lua_settable(L, -3);
3609
3610 /* Create the "sf" field that contains a list of stringsafe fetches. */
3611 lua_pushstring(L, "sf");
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003612 if (!hlua_fetches_new(L, &appctx->htxn, HLUA_F_AS_STRING))
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003613 return 0;
3614 lua_settable(L, -3);
3615
3616 /* Create the "c" field that contains a list of converters. */
3617 lua_pushstring(L, "c");
3618 if (!hlua_converters_new(L, &appctx->htxn, 0))
3619 return 0;
3620 lua_settable(L, -3);
3621
3622 /* Create the "sc" field that contains a list of stringsafe converters. */
3623 lua_pushstring(L, "sc");
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003624 if (!hlua_converters_new(L, &appctx->htxn, HLUA_F_AS_STRING))
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003625 return 0;
3626 lua_settable(L, -3);
3627
3628 /* Pop a class stream metatable and affect it to the table. */
3629 lua_rawgeti(L, LUA_REGISTRYINDEX, class_applet_tcp_ref);
3630 lua_setmetatable(L, -2);
3631
3632 return 1;
3633}
3634
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003635__LJMP static int hlua_applet_tcp_set_var(lua_State *L)
3636{
3637 struct hlua_appctx *appctx;
3638 struct stream *s;
3639 const char *name;
3640 size_t len;
3641 struct sample smp;
3642
Tim Duesterhus4e172c92020-05-19 13:49:42 +02003643 if (lua_gettop(L) < 3 || lua_gettop(L) > 4)
3644 WILL_LJMP(luaL_error(L, "'set_var' needs between 3 and 4 arguments"));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003645
3646 /* It is useles to retrieve the stream, but this function
3647 * runs only in a stream context.
3648 */
3649 appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
3650 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
3651 s = appctx->htxn.s;
3652
3653 /* Converts the third argument in a sample. */
Amaury Denoyellebc0af6a2020-10-29 17:21:20 +01003654 memset(&smp, 0, sizeof(smp));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003655 hlua_lua2smp(L, 3, &smp);
3656
3657 /* Store the sample in a variable. */
3658 smp_set_owner(&smp, s->be, s->sess, s, 0);
Tim Duesterhus4e172c92020-05-19 13:49:42 +02003659
3660 if (lua_gettop(L) == 4 && lua_toboolean(L, 4))
3661 lua_pushboolean(L, vars_set_by_name_ifexist(name, len, &smp) != 0);
3662 else
3663 lua_pushboolean(L, vars_set_by_name(name, len, &smp) != 0);
3664
Tim Duesterhus84ebc132020-05-19 13:49:41 +02003665 return 1;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003666}
3667
3668__LJMP static int hlua_applet_tcp_unset_var(lua_State *L)
3669{
3670 struct hlua_appctx *appctx;
3671 struct stream *s;
3672 const char *name;
3673 size_t len;
3674 struct sample smp;
3675
3676 MAY_LJMP(check_args(L, 2, "unset_var"));
3677
3678 /* It is useles to retrieve the stream, but this function
3679 * runs only in a stream context.
3680 */
3681 appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
3682 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
3683 s = appctx->htxn.s;
3684
3685 /* Unset the variable. */
3686 smp_set_owner(&smp, s->be, s->sess, s, 0);
Tim Duesterhus84ebc132020-05-19 13:49:41 +02003687 lua_pushboolean(L, vars_unset_by_name_ifexist(name, len, &smp) != 0);
3688 return 1;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003689}
3690
3691__LJMP static int hlua_applet_tcp_get_var(lua_State *L)
3692{
3693 struct hlua_appctx *appctx;
3694 struct stream *s;
3695 const char *name;
3696 size_t len;
3697 struct sample smp;
3698
3699 MAY_LJMP(check_args(L, 2, "get_var"));
3700
3701 /* It is useles to retrieve the stream, but this function
3702 * runs only in a stream context.
3703 */
3704 appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
3705 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
3706 s = appctx->htxn.s;
3707
3708 smp_set_owner(&smp, s->be, s->sess, s, 0);
3709 if (!vars_get_by_name(name, len, &smp)) {
3710 lua_pushnil(L);
3711 return 1;
3712 }
3713
3714 return hlua_smp2lua(L, &smp);
3715}
3716
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01003717__LJMP static int hlua_applet_tcp_set_priv(lua_State *L)
3718{
3719 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
3720 struct stream *s = appctx->htxn.s;
Thierry FOURNIER3b0a6d42016-12-16 08:48:32 +01003721 struct hlua *hlua;
3722
3723 /* Note that this hlua struct is from the session and not from the applet. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01003724 if (!s->hlua)
3725 return 0;
3726 hlua = s->hlua;
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01003727
3728 MAY_LJMP(check_args(L, 2, "set_priv"));
3729
3730 /* Remove previous value. */
Thierry FOURNIERe068b602017-04-26 13:27:05 +02003731 luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref);
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01003732
3733 /* Get and store new value. */
3734 lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */
3735 hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */
3736
3737 return 0;
3738}
3739
3740__LJMP static int hlua_applet_tcp_get_priv(lua_State *L)
3741{
3742 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
3743 struct stream *s = appctx->htxn.s;
Thierry FOURNIER3b0a6d42016-12-16 08:48:32 +01003744 struct hlua *hlua;
3745
3746 /* Note that this hlua struct is from the session and not from the applet. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01003747 if (!s->hlua) {
3748 lua_pushnil(L);
3749 return 1;
3750 }
3751 hlua = s->hlua;
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01003752
3753 /* Push configuration index in the stack. */
3754 lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref);
3755
3756 return 1;
3757}
3758
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003759/* If expected data not yet available, it returns a yield. This function
3760 * consumes the data in the buffer. It returns a string containing the
3761 * data. This string can be empty.
3762 */
3763__LJMP static int hlua_applet_tcp_getline_yield(lua_State *L, int status, lua_KContext ctx)
3764{
3765 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
3766 struct stream_interface *si = appctx->appctx->owner;
3767 int ret;
Willy Tarreau206ba832018-06-14 15:27:31 +02003768 const char *blk1;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02003769 size_t len1;
Willy Tarreau206ba832018-06-14 15:27:31 +02003770 const char *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02003771 size_t len2;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003772
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003773 /* Read the maximum amount of data available. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02003774 ret = co_getline_nc(si_oc(si), &blk1, &len1, &blk2, &len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003775
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003776 /* Data not yet available. return yield. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003777 if (ret == 0) {
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01003778 si_cant_get(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02003779 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_getline_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003780 }
3781
3782 /* End of data: commit the total strings and return. */
3783 if (ret < 0) {
3784 luaL_pushresult(&appctx->b);
3785 return 1;
3786 }
3787
3788 /* Ensure that the block 2 length is usable. */
3789 if (ret == 1)
3790 len2 = 0;
3791
3792 /* dont check the max length read and dont check. */
3793 luaL_addlstring(&appctx->b, blk1, len1);
3794 luaL_addlstring(&appctx->b, blk2, len2);
3795
3796 /* Consume input channel output buffer data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02003797 co_skip(si_oc(si), len1 + len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003798 luaL_pushresult(&appctx->b);
3799 return 1;
3800}
3801
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003802/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003803__LJMP static int hlua_applet_tcp_getline(lua_State *L)
3804{
3805 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
3806
3807 /* Initialise the string catenation. */
3808 luaL_buffinit(L, &appctx->b);
3809
3810 return MAY_LJMP(hlua_applet_tcp_getline_yield(L, 0, 0));
3811}
3812
3813/* If expected data not yet available, it returns a yield. This function
3814 * consumes the data in the buffer. It returns a string containing the
3815 * data. This string can be empty.
3816 */
3817__LJMP static int hlua_applet_tcp_recv_yield(lua_State *L, int status, lua_KContext ctx)
3818{
3819 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
3820 struct stream_interface *si = appctx->appctx->owner;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02003821 size_t len = MAY_LJMP(luaL_checkinteger(L, 2));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003822 int ret;
Willy Tarreau206ba832018-06-14 15:27:31 +02003823 const char *blk1;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02003824 size_t len1;
Willy Tarreau206ba832018-06-14 15:27:31 +02003825 const char *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02003826 size_t len2;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003827
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003828 /* Read the maximum amount of data available. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02003829 ret = co_getblk_nc(si_oc(si), &blk1, &len1, &blk2, &len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003830
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003831 /* Data not yet available. return yield. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003832 if (ret == 0) {
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01003833 si_cant_get(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02003834 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_recv_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003835 }
3836
3837 /* End of data: commit the total strings and return. */
3838 if (ret < 0) {
3839 luaL_pushresult(&appctx->b);
3840 return 1;
3841 }
3842
3843 /* Ensure that the block 2 length is usable. */
3844 if (ret == 1)
3845 len2 = 0;
3846
3847 if (len == -1) {
3848
3849 /* If len == -1, catenate all the data avalaile and
3850 * yield because we want to get all the data until
3851 * the end of data stream.
3852 */
3853 luaL_addlstring(&appctx->b, blk1, len1);
3854 luaL_addlstring(&appctx->b, blk2, len2);
Willy Tarreau06d80a92017-10-19 14:32:15 +02003855 co_skip(si_oc(si), len1 + len2);
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01003856 si_cant_get(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02003857 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_recv_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003858
3859 } else {
3860
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05003861 /* Copy the first block caping to the length required. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003862 if (len1 > len)
3863 len1 = len;
3864 luaL_addlstring(&appctx->b, blk1, len1);
3865 len -= len1;
3866
3867 /* Copy the second block. */
3868 if (len2 > len)
3869 len2 = len;
3870 luaL_addlstring(&appctx->b, blk2, len2);
3871 len -= len2;
3872
3873 /* Consume input channel output buffer data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02003874 co_skip(si_oc(si), len1 + len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003875
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003876 /* If there is no other data available, yield waiting for new data. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003877 if (len > 0) {
3878 lua_pushinteger(L, len);
3879 lua_replace(L, 2);
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01003880 si_cant_get(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02003881 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_recv_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003882 }
3883
3884 /* return the result. */
3885 luaL_pushresult(&appctx->b);
3886 return 1;
3887 }
3888
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003889 /* we never execute this */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003890 hlua_pusherror(L, "Lua: internal error");
3891 WILL_LJMP(lua_error(L));
3892 return 0;
3893}
3894
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003895/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003896__LJMP static int hlua_applet_tcp_recv(lua_State *L)
3897{
3898 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
3899 int len = -1;
3900
3901 if (lua_gettop(L) > 2)
3902 WILL_LJMP(luaL_error(L, "The 'recv' function requires between 1 and 2 arguments."));
3903 if (lua_gettop(L) >= 2) {
3904 len = MAY_LJMP(luaL_checkinteger(L, 2));
3905 lua_pop(L, 1);
3906 }
3907
3908 /* Confirm or set the required length */
3909 lua_pushinteger(L, len);
3910
3911 /* Initialise the string catenation. */
3912 luaL_buffinit(L, &appctx->b);
3913
3914 return MAY_LJMP(hlua_applet_tcp_recv_yield(L, 0, 0));
3915}
3916
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003917/* Append data in the output side of the buffer. This data is immediately
3918 * sent. The function returns the amount of data written. If the buffer
3919 * cannot contain the data, the function yields. The function returns -1
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003920 * if the channel is closed.
3921 */
3922__LJMP static int hlua_applet_tcp_send_yield(lua_State *L, int status, lua_KContext ctx)
3923{
3924 size_t len;
3925 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
3926 const char *str = MAY_LJMP(luaL_checklstring(L, 2, &len));
3927 int l = MAY_LJMP(luaL_checkinteger(L, 3));
3928 struct stream_interface *si = appctx->appctx->owner;
3929 struct channel *chn = si_ic(si);
3930 int max;
3931
3932 /* Get the max amount of data which can write as input in the channel. */
3933 max = channel_recv_max(chn);
3934 if (max > (len - l))
3935 max = len - l;
3936
3937 /* Copy data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02003938 ci_putblk(chn, str + l, max);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003939
3940 /* update counters. */
3941 l += max;
3942 lua_pop(L, 1);
3943 lua_pushinteger(L, l);
3944
3945 /* If some data is not send, declares the situation to the
3946 * applet, and returns a yield.
3947 */
3948 if (l < len) {
Willy Tarreaudb398432018-11-15 11:08:52 +01003949 si_rx_room_blk(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02003950 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_send_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003951 }
3952
3953 return 1;
3954}
3955
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05003956/* Just a wrapper of "hlua_applet_tcp_send_yield". This wrapper permits
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003957 * yield the LUA process, and resume it without checking the
3958 * input arguments.
3959 */
3960__LJMP static int hlua_applet_tcp_send(lua_State *L)
3961{
3962 MAY_LJMP(check_args(L, 2, "send"));
3963 lua_pushinteger(L, 0);
3964
3965 return MAY_LJMP(hlua_applet_tcp_send_yield(L, 0, 0));
3966}
3967
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003968/*
3969 *
3970 *
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02003971 * Class AppletHTTP
Thierry FOURNIER08504f42015-03-16 14:17:08 +01003972 *
3973 *
3974 */
3975
3976/* Returns a struct hlua_txn if the stack entry "ud" is
Willy Tarreau87b09662015-04-03 00:22:06 +02003977 * a class stream, otherwise it throws an error.
Thierry FOURNIER08504f42015-03-16 14:17:08 +01003978 */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02003979__LJMP static struct hlua_appctx *hlua_checkapplet_http(lua_State *L, int ud)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01003980{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02003981 return MAY_LJMP(hlua_checkudata(L, ud, class_applet_http_ref));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01003982}
3983
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02003984/* This function creates and push in the stack an Applet object
Thierry FOURNIER08504f42015-03-16 14:17:08 +01003985 * according with a current TXN.
3986 */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02003987static int hlua_applet_http_new(lua_State *L, struct appctx *ctx)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01003988{
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02003989 struct hlua_appctx *appctx;
Thierry FOURNIER841475e2015-12-11 17:10:09 +01003990 struct hlua_txn htxn;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02003991 struct stream_interface *si = ctx->owner;
3992 struct stream *s = si_strm(si);
3993 struct proxy *px = s->be;
Christopher Fauleta2097962019-07-15 16:25:33 +02003994 struct htx *htx;
3995 struct htx_blk *blk;
3996 struct htx_sl *sl;
3997 struct ist path;
3998 unsigned long long len = 0;
3999 int32_t pos;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004000
4001 /* Check stack size. */
4002 if (!lua_checkstack(L, 3))
4003 return 0;
4004
4005 /* Create the object: obj[0] = userdata.
4006 * Note that the base of the Converters object is the
4007 * same than the TXN object.
4008 */
4009 lua_newtable(L);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004010 appctx = lua_newuserdata(L, sizeof(*appctx));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004011 lua_rawseti(L, -2, 0);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004012 appctx->appctx = ctx;
4013 appctx->appctx->ctx.hlua_apphttp.status = 200; /* Default status code returned. */
Robin H. Johnson52f5db22017-01-01 13:10:52 -08004014 appctx->appctx->ctx.hlua_apphttp.reason = NULL; /* Use default reason based on status */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004015 appctx->htxn.s = s;
4016 appctx->htxn.p = px;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004017
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004018 /* Create the "f" field that contains a list of fetches. */
4019 lua_pushstring(L, "f");
4020 if (!hlua_fetches_new(L, &appctx->htxn, 0))
4021 return 0;
4022 lua_settable(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004023
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004024 /* Create the "sf" field that contains a list of stringsafe fetches. */
4025 lua_pushstring(L, "sf");
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004026 if (!hlua_fetches_new(L, &appctx->htxn, HLUA_F_AS_STRING))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004027 return 0;
4028 lua_settable(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004029
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004030 /* Create the "c" field that contains a list of converters. */
4031 lua_pushstring(L, "c");
4032 if (!hlua_converters_new(L, &appctx->htxn, 0))
4033 return 0;
4034 lua_settable(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004035
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004036 /* Create the "sc" field that contains a list of stringsafe converters. */
4037 lua_pushstring(L, "sc");
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01004038 if (!hlua_converters_new(L, &appctx->htxn, HLUA_F_AS_STRING))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004039 return 0;
4040 lua_settable(L, -3);
Willy Tarreaueee5b512015-04-03 23:46:31 +02004041
Christopher Fauleta2097962019-07-15 16:25:33 +02004042 htx = htxbuf(&s->req.buf);
4043 blk = htx_get_first_blk(htx);
Christopher Fauletea009732019-11-18 15:50:25 +01004044 BUG_ON(!blk || htx_get_blk_type(blk) != HTX_BLK_REQ_SL);
Christopher Fauleta2097962019-07-15 16:25:33 +02004045 sl = htx_get_blk_ptr(htx, blk);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004046
Christopher Fauleta2097962019-07-15 16:25:33 +02004047 /* Stores the request method. */
4048 lua_pushstring(L, "method");
4049 lua_pushlstring(L, HTX_SL_REQ_MPTR(sl), HTX_SL_REQ_MLEN(sl));
4050 lua_settable(L, -3);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004051
Christopher Fauleta2097962019-07-15 16:25:33 +02004052 /* Stores the http version. */
4053 lua_pushstring(L, "version");
4054 lua_pushlstring(L, HTX_SL_REQ_VPTR(sl), HTX_SL_REQ_VLEN(sl));
4055 lua_settable(L, -3);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004056
Christopher Fauleta2097962019-07-15 16:25:33 +02004057 /* creates an array of headers. hlua_http_get_headers() crates and push
4058 * the array on the top of the stack.
4059 */
4060 lua_pushstring(L, "headers");
4061 htxn.s = s;
4062 htxn.p = px;
4063 htxn.dir = SMP_OPT_DIR_REQ;
Christopher Faulet9d1332b2020-02-24 16:46:16 +01004064 if (!hlua_http_get_headers(L, &htxn.s->txn->req))
Christopher Fauleta2097962019-07-15 16:25:33 +02004065 return 0;
4066 lua_settable(L, -3);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004067
Christopher Fauleta2097962019-07-15 16:25:33 +02004068 path = http_get_path(htx_sl_req_uri(sl));
Tim Duesterhused526372020-03-05 17:56:33 +01004069 if (isttest(path)) {
Christopher Fauleta2097962019-07-15 16:25:33 +02004070 char *p, *q, *end;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004071
Christopher Fauleta2097962019-07-15 16:25:33 +02004072 p = path.ptr;
4073 end = path.ptr + path.len;
4074 q = p;
4075 while (q < end && *q != '?')
4076 q++;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004077
Thierry FOURNIER7d388632017-02-22 02:06:16 +01004078 /* Stores the request path. */
Christopher Fauleta2097962019-07-15 16:25:33 +02004079 lua_pushstring(L, "path");
4080 lua_pushlstring(L, p, q - p);
Thierry FOURNIER7d388632017-02-22 02:06:16 +01004081 lua_settable(L, -3);
Thierry FOURNIER04c57b32015-03-18 13:43:10 +01004082
Christopher Fauleta2097962019-07-15 16:25:33 +02004083 /* Stores the query string. */
4084 lua_pushstring(L, "qs");
4085 if (*q == '?')
4086 q++;
4087 lua_pushlstring(L, q, end - q);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004088 lua_settable(L, -3);
Christopher Fauleta2097962019-07-15 16:25:33 +02004089 }
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004090
Christopher Fauleta2097962019-07-15 16:25:33 +02004091 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
4092 struct htx_blk *blk = htx_get_blk(htx, pos);
4093 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004094
Christopher Fauleta2097962019-07-15 16:25:33 +02004095 if (type == HTX_BLK_EOM || type == HTX_BLK_TLR || type == HTX_BLK_EOT)
4096 break;
4097 if (type == HTX_BLK_DATA)
4098 len += htx_get_blksz(blk);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004099 }
Christopher Fauleta2097962019-07-15 16:25:33 +02004100 if (htx->extra != ULLONG_MAX)
4101 len += htx->extra;
4102
4103 /* Stores the request path. */
4104 lua_pushstring(L, "length");
4105 lua_pushinteger(L, len);
4106 lua_settable(L, -3);
Thierry FOURNIER04c57b32015-03-18 13:43:10 +01004107
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004108 /* Create an empty array of HTTP request headers. */
4109 lua_pushstring(L, "response");
4110 lua_newtable(L);
4111 lua_settable(L, -3);
Thierry FOURNIER04c57b32015-03-18 13:43:10 +01004112
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004113 /* Pop a class stream metatable and affect it to the table. */
4114 lua_rawgeti(L, LUA_REGISTRYINDEX, class_applet_http_ref);
4115 lua_setmetatable(L, -2);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004116
4117 return 1;
4118}
4119
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004120__LJMP static int hlua_applet_http_set_var(lua_State *L)
4121{
4122 struct hlua_appctx *appctx;
4123 struct stream *s;
4124 const char *name;
4125 size_t len;
4126 struct sample smp;
4127
Tim Duesterhus4e172c92020-05-19 13:49:42 +02004128 if (lua_gettop(L) < 3 || lua_gettop(L) > 4)
4129 WILL_LJMP(luaL_error(L, "'set_var' needs between 3 and 4 arguments"));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004130
4131 /* It is useles to retrieve the stream, but this function
4132 * runs only in a stream context.
4133 */
4134 appctx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4135 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
4136 s = appctx->htxn.s;
4137
4138 /* Converts the third argument in a sample. */
Amaury Denoyellebc0af6a2020-10-29 17:21:20 +01004139 memset(&smp, 0, sizeof(smp));
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004140 hlua_lua2smp(L, 3, &smp);
4141
4142 /* Store the sample in a variable. */
4143 smp_set_owner(&smp, s->be, s->sess, s, 0);
Tim Duesterhus4e172c92020-05-19 13:49:42 +02004144
4145 if (lua_gettop(L) == 4 && lua_toboolean(L, 4))
4146 lua_pushboolean(L, vars_set_by_name_ifexist(name, len, &smp) != 0);
4147 else
4148 lua_pushboolean(L, vars_set_by_name(name, len, &smp) != 0);
4149
Tim Duesterhus84ebc132020-05-19 13:49:41 +02004150 return 1;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004151}
4152
4153__LJMP static int hlua_applet_http_unset_var(lua_State *L)
4154{
4155 struct hlua_appctx *appctx;
4156 struct stream *s;
4157 const char *name;
4158 size_t len;
4159 struct sample smp;
4160
4161 MAY_LJMP(check_args(L, 2, "unset_var"));
4162
4163 /* It is useles to retrieve the stream, but this function
4164 * runs only in a stream context.
4165 */
4166 appctx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4167 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
4168 s = appctx->htxn.s;
4169
4170 /* Unset the variable. */
4171 smp_set_owner(&smp, s->be, s->sess, s, 0);
Tim Duesterhus84ebc132020-05-19 13:49:41 +02004172 lua_pushboolean(L, vars_unset_by_name_ifexist(name, len, &smp) != 0);
4173 return 1;
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01004174}
4175
4176__LJMP static int hlua_applet_http_get_var(lua_State *L)
4177{
4178 struct hlua_appctx *appctx;
4179 struct stream *s;
4180 const char *name;
4181 size_t len;
4182 struct sample smp;
4183
4184 MAY_LJMP(check_args(L, 2, "get_var"));
4185
4186 /* It is useles to retrieve the stream, but this function
4187 * runs only in a stream context.
4188 */
4189 appctx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4190 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
4191 s = appctx->htxn.s;
4192
4193 smp_set_owner(&smp, s->be, s->sess, s, 0);
4194 if (!vars_get_by_name(name, len, &smp)) {
4195 lua_pushnil(L);
4196 return 1;
4197 }
4198
4199 return hlua_smp2lua(L, &smp);
4200}
4201
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004202__LJMP static int hlua_applet_http_set_priv(lua_State *L)
4203{
4204 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4205 struct stream *s = appctx->htxn.s;
Thierry FOURNIER3b0a6d42016-12-16 08:48:32 +01004206 struct hlua *hlua;
4207
4208 /* Note that this hlua struct is from the session and not from the applet. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01004209 if (!s->hlua)
4210 return 0;
4211 hlua = s->hlua;
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004212
4213 MAY_LJMP(check_args(L, 2, "set_priv"));
4214
4215 /* Remove previous value. */
Thierry FOURNIERe068b602017-04-26 13:27:05 +02004216 luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref);
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004217
4218 /* Get and store new value. */
4219 lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */
4220 hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */
4221
4222 return 0;
4223}
4224
4225__LJMP static int hlua_applet_http_get_priv(lua_State *L)
4226{
4227 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4228 struct stream *s = appctx->htxn.s;
Thierry FOURNIER3b0a6d42016-12-16 08:48:32 +01004229 struct hlua *hlua;
4230
4231 /* Note that this hlua struct is from the session and not from the applet. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01004232 if (!s->hlua) {
4233 lua_pushnil(L);
4234 return 1;
4235 }
4236 hlua = s->hlua;
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004237
4238 /* Push configuration index in the stack. */
4239 lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref);
4240
4241 return 1;
4242}
4243
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004244/* If expected data not yet available, it returns a yield. This function
4245 * consumes the data in the buffer. It returns a string containing the
4246 * data. This string can be empty.
4247 */
Christopher Fauleta2097962019-07-15 16:25:33 +02004248__LJMP static int hlua_applet_http_getline_yield(lua_State *L, int status, lua_KContext ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004249{
4250 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4251 struct stream_interface *si = appctx->appctx->owner;
4252 struct channel *req = si_oc(si);
4253 struct htx *htx;
4254 struct htx_blk *blk;
4255 size_t count;
4256 int stop = 0;
4257
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004258 htx = htx_from_buf(&req->buf);
4259 count = co_data(req);
Christopher Fauleta3f15502019-05-13 15:27:23 +02004260 blk = htx_get_first_blk(htx);
Christopher Fauletcc26b132018-12-18 21:20:57 +01004261
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004262 while (count && !stop && blk) {
4263 enum htx_blk_type type = htx_get_blk_type(blk);
4264 uint32_t sz = htx_get_blksz(blk);
4265 struct ist v;
4266 uint32_t vlen;
4267 char *nl;
4268
Christopher Faulete461e342018-12-18 16:43:35 +01004269 if (type == HTX_BLK_EOM) {
4270 stop = 1;
4271 break;
4272 }
4273
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004274 vlen = sz;
4275 if (vlen > count) {
4276 if (type != HTX_BLK_DATA)
4277 break;
4278 vlen = count;
4279 }
4280
4281 switch (type) {
4282 case HTX_BLK_UNUSED:
4283 break;
4284
4285 case HTX_BLK_DATA:
4286 v = htx_get_blk_value(htx, blk);
4287 v.len = vlen;
4288 nl = istchr(v, '\n');
4289 if (nl != NULL) {
4290 stop = 1;
4291 vlen = nl - v.ptr + 1;
4292 }
4293 luaL_addlstring(&appctx->b, v.ptr, vlen);
4294 break;
4295
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004296 case HTX_BLK_TLR:
4297 case HTX_BLK_EOM:
4298 stop = 1;
4299 break;
4300
4301 default:
4302 break;
4303 }
4304
4305 co_set_data(req, co_data(req) - vlen);
4306 count -= vlen;
4307 if (sz == vlen)
4308 blk = htx_remove_blk(htx, blk);
4309 else {
4310 htx_cut_data_blk(htx, blk, vlen);
4311 break;
4312 }
4313 }
4314
Christopher Faulet0ae79d02019-02-27 21:36:59 +01004315 htx_to_buf(htx, &req->buf);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004316 if (!stop) {
4317 si_cant_get(si);
Christopher Fauleta2097962019-07-15 16:25:33 +02004318 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_getline_yield, TICK_ETERNITY, 0));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004319 }
4320
4321 /* return the result. */
4322 luaL_pushresult(&appctx->b);
4323 return 1;
4324}
4325
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004326
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004327/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004328__LJMP static int hlua_applet_http_getline(lua_State *L)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004329{
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004330 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004331
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004332 /* Initialise the string catenation. */
4333 luaL_buffinit(L, &appctx->b);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004334
Christopher Fauleta2097962019-07-15 16:25:33 +02004335 return MAY_LJMP(hlua_applet_http_getline_yield(L, 0, 0));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004336}
4337
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004338/* If expected data not yet available, it returns a yield. This function
4339 * consumes the data in the buffer. It returns a string containing the
4340 * data. This string can be empty.
4341 */
Christopher Fauleta2097962019-07-15 16:25:33 +02004342__LJMP static int hlua_applet_http_recv_yield(lua_State *L, int status, lua_KContext ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004343{
4344 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4345 struct stream_interface *si = appctx->appctx->owner;
4346 struct channel *req = si_oc(si);
4347 struct htx *htx;
4348 struct htx_blk *blk;
4349 size_t count;
4350 int len;
4351
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004352 htx = htx_from_buf(&req->buf);
4353 len = MAY_LJMP(luaL_checkinteger(L, 2));
4354 count = co_data(req);
Christopher Faulet29f17582019-05-23 11:03:26 +02004355 blk = htx_get_head_blk(htx);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004356 while (count && len && blk) {
4357 enum htx_blk_type type = htx_get_blk_type(blk);
4358 uint32_t sz = htx_get_blksz(blk);
4359 struct ist v;
4360 uint32_t vlen;
4361
Christopher Faulete461e342018-12-18 16:43:35 +01004362 if (type == HTX_BLK_EOM) {
4363 len = 0;
4364 break;
4365 }
4366
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004367 vlen = sz;
4368 if (len > 0 && vlen > len)
4369 vlen = len;
4370 if (vlen > count) {
4371 if (type != HTX_BLK_DATA)
4372 break;
4373 vlen = count;
4374 }
4375
4376 switch (type) {
4377 case HTX_BLK_UNUSED:
4378 break;
4379
4380 case HTX_BLK_DATA:
4381 v = htx_get_blk_value(htx, blk);
4382 luaL_addlstring(&appctx->b, v.ptr, vlen);
4383 break;
4384
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004385 case HTX_BLK_TLR:
4386 case HTX_BLK_EOM:
4387 len = 0;
4388 break;
4389
4390 default:
4391 break;
4392 }
4393
4394 co_set_data(req, co_data(req) - vlen);
4395 count -= vlen;
4396 if (len > 0)
4397 len -= vlen;
4398 if (sz == vlen)
4399 blk = htx_remove_blk(htx, blk);
4400 else {
4401 htx_cut_data_blk(htx, blk, vlen);
4402 break;
4403 }
4404 }
4405
Christopher Faulet0ae79d02019-02-27 21:36:59 +01004406 htx_to_buf(htx, &req->buf);
4407
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004408 /* If we are no other data available, yield waiting for new data. */
4409 if (len) {
4410 if (len > 0) {
4411 lua_pushinteger(L, len);
4412 lua_replace(L, 2);
4413 }
4414 si_cant_get(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02004415 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_recv_yield, TICK_ETERNITY, 0));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004416 }
4417
4418 /* return the result. */
4419 luaL_pushresult(&appctx->b);
4420 return 1;
4421}
4422
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004423/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004424__LJMP static int hlua_applet_http_recv(lua_State *L)
4425{
4426 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4427 int len = -1;
4428
4429 /* Check arguments. */
4430 if (lua_gettop(L) > 2)
4431 WILL_LJMP(luaL_error(L, "The 'recv' function requires between 1 and 2 arguments."));
4432 if (lua_gettop(L) >= 2) {
4433 len = MAY_LJMP(luaL_checkinteger(L, 2));
4434 lua_pop(L, 1);
4435 }
4436
Christopher Fauleta2097962019-07-15 16:25:33 +02004437 lua_pushinteger(L, len);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004438
Christopher Fauleta2097962019-07-15 16:25:33 +02004439 /* Initialise the string catenation. */
4440 luaL_buffinit(L, &appctx->b);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004441
Christopher Fauleta2097962019-07-15 16:25:33 +02004442 return MAY_LJMP(hlua_applet_http_recv_yield(L, 0, 0));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004443}
4444
4445/* Append data in the output side of the buffer. This data is immediately
4446 * sent. The function returns the amount of data written. If the buffer
4447 * cannot contain the data, the function yields. The function returns -1
4448 * if the channel is closed.
4449 */
Christopher Fauleta2097962019-07-15 16:25:33 +02004450__LJMP static int hlua_applet_http_send_yield(lua_State *L, int status, lua_KContext ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004451{
4452 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4453 struct stream_interface *si = appctx->appctx->owner;
4454 struct channel *res = si_ic(si);
4455 struct htx *htx = htx_from_buf(&res->buf);
4456 const char *data;
4457 size_t len;
4458 int l = MAY_LJMP(luaL_checkinteger(L, 3));
4459 int max;
4460
Christopher Faulet9060fc02019-07-03 11:39:30 +02004461 max = htx_get_max_blksz(htx, channel_htx_recv_max(res, htx));
Christopher Faulet4b0e9b22019-01-09 12:16:58 +01004462 if (!max)
4463 goto snd_yield;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004464
4465 data = MAY_LJMP(luaL_checklstring(L, 2, &len));
4466
4467 /* Get the max amount of data which can write as input in the channel. */
4468 if (max > (len - l))
4469 max = len - l;
4470
4471 /* Copy data. */
Willy Tarreau0a7ef022019-05-28 10:30:11 +02004472 max = htx_add_data(htx, ist2(data + l, max));
Christopher Fauletf6cce3f2019-02-27 21:20:09 +01004473 channel_add_input(res, max);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004474
4475 /* update counters. */
4476 l += max;
4477 lua_pop(L, 1);
4478 lua_pushinteger(L, l);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004479
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004480 /* If some data is not send, declares the situation to the
4481 * applet, and returns a yield.
4482 */
4483 if (l < len) {
Christopher Faulet4b0e9b22019-01-09 12:16:58 +01004484 snd_yield:
Christopher Faulet0ae79d02019-02-27 21:36:59 +01004485 htx_to_buf(htx, &res->buf);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004486 si_rx_room_blk(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02004487 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_send_yield, TICK_ETERNITY, 0));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004488 }
4489
Christopher Fauleta2097962019-07-15 16:25:33 +02004490 htx_to_buf(htx, &res->buf);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004491 return 1;
4492}
4493
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05004494/* Just a wrapper of "hlua_applet_send_yield". This wrapper permits
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004495 * yield the LUA process, and resume it without checking the
4496 * input arguments.
4497 */
4498__LJMP static int hlua_applet_http_send(lua_State *L)
4499{
4500 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004501
4502 /* We want to send some data. Headers must be sent. */
4503 if (!(appctx->appctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT)) {
4504 hlua_pusherror(L, "Lua: 'send' you must call start_response() before sending data.");
4505 WILL_LJMP(lua_error(L));
4506 }
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004507
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05004508 /* This integer is used for followinf the amount of data sent. */
Christopher Fauleta2097962019-07-15 16:25:33 +02004509 lua_pushinteger(L, 0);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004510
Christopher Fauleta2097962019-07-15 16:25:33 +02004511 return MAY_LJMP(hlua_applet_http_send_yield(L, 0, 0));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004512}
4513
4514__LJMP static int hlua_applet_http_addheader(lua_State *L)
4515{
4516 const char *name;
4517 int ret;
4518
4519 MAY_LJMP(hlua_checkapplet_http(L, 1));
4520 name = MAY_LJMP(luaL_checkstring(L, 2));
4521 MAY_LJMP(luaL_checkstring(L, 3));
4522
4523 /* Push in the stack the "response" entry. */
4524 ret = lua_getfield(L, 1, "response");
4525 if (ret != LUA_TTABLE) {
4526 hlua_pusherror(L, "Lua: 'add_header' internal error: AppletHTTP['response'] "
4527 "is expected as an array. %s found", lua_typename(L, ret));
4528 WILL_LJMP(lua_error(L));
4529 }
4530
4531 /* check if the header is already registered if it is not
4532 * the case, register it.
4533 */
4534 ret = lua_getfield(L, -1, name);
4535 if (ret == LUA_TNIL) {
4536
4537 /* Entry not found. */
4538 lua_pop(L, 1); /* remove the nil. The "response" table is the top of the stack. */
4539
4540 /* Insert the new header name in the array in the top of the stack.
4541 * It left the new array in the top of the stack.
4542 */
4543 lua_newtable(L);
4544 lua_pushvalue(L, 2);
4545 lua_pushvalue(L, -2);
4546 lua_settable(L, -4);
4547
4548 } else if (ret != LUA_TTABLE) {
4549
4550 /* corruption error. */
4551 hlua_pusherror(L, "Lua: 'add_header' internal error: AppletHTTP['response']['%s'] "
4552 "is expected as an array. %s found", name, lua_typename(L, ret));
4553 WILL_LJMP(lua_error(L));
4554 }
4555
4556 /* Now the top od thestack is an array of values. We push
4557 * the header value as new entry.
4558 */
4559 lua_pushvalue(L, 3);
4560 ret = lua_rawlen(L, -2);
4561 lua_rawseti(L, -2, ret + 1);
4562 lua_pushboolean(L, 1);
4563 return 1;
4564}
4565
4566__LJMP static int hlua_applet_http_status(lua_State *L)
4567{
4568 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4569 int status = MAY_LJMP(luaL_checkinteger(L, 2));
Robin H. Johnson52f5db22017-01-01 13:10:52 -08004570 const char *reason = MAY_LJMP(luaL_optlstring(L, 3, NULL, NULL));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004571
4572 if (status < 100 || status > 599) {
4573 lua_pushboolean(L, 0);
4574 return 1;
4575 }
4576
4577 appctx->appctx->ctx.hlua_apphttp.status = status;
Robin H. Johnson52f5db22017-01-01 13:10:52 -08004578 appctx->appctx->ctx.hlua_apphttp.reason = reason;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004579 lua_pushboolean(L, 1);
4580 return 1;
4581}
4582
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004583
Christopher Fauleta2097962019-07-15 16:25:33 +02004584__LJMP static int hlua_applet_http_send_response(lua_State *L)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004585{
4586 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4587 struct stream_interface *si = appctx->appctx->owner;
4588 struct channel *res = si_ic(si);
4589 struct htx *htx;
4590 struct htx_sl *sl;
4591 struct h1m h1m;
4592 const char *status, *reason;
4593 const char *name, *value;
4594 size_t nlen, vlen;
4595 unsigned int flags;
4596
4597 /* Send the message at once. */
4598 htx = htx_from_buf(&res->buf);
4599 h1m_init_res(&h1m);
4600
4601 /* Use the same http version than the request. */
4602 status = ultoa_r(appctx->appctx->ctx.hlua_apphttp.status, trash.area, trash.size);
4603 reason = appctx->appctx->ctx.hlua_apphttp.reason;
4604 if (reason == NULL)
4605 reason = http_get_reason(appctx->appctx->ctx.hlua_apphttp.status);
4606 if (appctx->appctx->ctx.hlua_apphttp.flags & APPLET_HTTP11) {
4607 flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11);
4608 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"), ist(status), ist(reason));
4609 }
4610 else {
4611 flags = HTX_SL_F_IS_RESP;
4612 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.0"), ist(status), ist(reason));
4613 }
4614 if (!sl) {
4615 hlua_pusherror(L, "Lua applet http '%s': Failed to create response.\n",
4616 appctx->appctx->rule->arg.hlua_rule->fcn.name);
4617 WILL_LJMP(lua_error(L));
4618 }
4619 sl->info.res.status = appctx->appctx->ctx.hlua_apphttp.status;
4620
4621 /* Get the array associated to the field "response" in the object AppletHTTP. */
4622 lua_pushvalue(L, 0);
4623 if (lua_getfield(L, 1, "response") != LUA_TTABLE) {
4624 hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response'] missing.\n",
4625 appctx->appctx->rule->arg.hlua_rule->fcn.name);
4626 WILL_LJMP(lua_error(L));
4627 }
4628
4629 /* Browse the list of headers. */
4630 lua_pushnil(L);
4631 while(lua_next(L, -2) != 0) {
4632 /* We expect a string as -2. */
4633 if (lua_type(L, -2) != LUA_TSTRING) {
4634 hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response'][] element must be a string. got %s.\n",
4635 appctx->appctx->rule->arg.hlua_rule->fcn.name,
4636 lua_typename(L, lua_type(L, -2)));
4637 WILL_LJMP(lua_error(L));
4638 }
4639 name = lua_tolstring(L, -2, &nlen);
4640
4641 /* We expect an array as -1. */
4642 if (lua_type(L, -1) != LUA_TTABLE) {
4643 hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response']['%s'] element must be an table. got %s.\n",
4644 appctx->appctx->rule->arg.hlua_rule->fcn.name,
4645 name,
4646 lua_typename(L, lua_type(L, -1)));
4647 WILL_LJMP(lua_error(L));
4648 }
4649
4650 /* Browse the table who is on the top of the stack. */
4651 lua_pushnil(L);
4652 while(lua_next(L, -2) != 0) {
4653 int id;
4654
4655 /* We expect a number as -2. */
4656 if (lua_type(L, -2) != LUA_TNUMBER) {
4657 hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response']['%s'][] element must be a number. got %s.\n",
4658 appctx->appctx->rule->arg.hlua_rule->fcn.name,
4659 name,
4660 lua_typename(L, lua_type(L, -2)));
4661 WILL_LJMP(lua_error(L));
4662 }
4663 id = lua_tointeger(L, -2);
4664
4665 /* We expect a string as -2. */
4666 if (lua_type(L, -1) != LUA_TSTRING) {
4667 hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response']['%s'][%d] element must be a string. got %s.\n",
4668 appctx->appctx->rule->arg.hlua_rule->fcn.name,
4669 name, id,
4670 lua_typename(L, lua_type(L, -1)));
4671 WILL_LJMP(lua_error(L));
4672 }
4673 value = lua_tolstring(L, -1, &vlen);
4674
4675 /* Simple Protocol checks. */
4676 if (isteqi(ist2(name, nlen), ist("transfer-encoding")))
Christopher Faulet700d9e82020-01-31 12:21:52 +01004677 h1_parse_xfer_enc_header(&h1m, ist2(value, vlen));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004678 else if (isteqi(ist2(name, nlen), ist("content-length"))) {
4679 struct ist v = ist2(value, vlen);
4680 int ret;
4681
4682 ret = h1_parse_cont_len_header(&h1m, &v);
4683 if (ret < 0) {
4684 hlua_pusherror(L, "Lua applet http '%s': Invalid '%s' header.\n",
4685 appctx->appctx->rule->arg.hlua_rule->fcn.name,
4686 name);
4687 WILL_LJMP(lua_error(L));
4688 }
4689 else if (ret == 0)
4690 goto next; /* Skip it */
4691 }
4692
4693 /* Add a new header */
4694 if (!htx_add_header(htx, ist2(name, nlen), ist2(value, vlen))) {
4695 hlua_pusherror(L, "Lua applet http '%s': Failed to add header '%s' in the response.\n",
4696 appctx->appctx->rule->arg.hlua_rule->fcn.name,
4697 name);
4698 WILL_LJMP(lua_error(L));
4699 }
4700 next:
4701 /* Remove the array from the stack, and get next element with a remaining string. */
4702 lua_pop(L, 1);
4703 }
4704
4705 /* Remove the array from the stack, and get next element with a remaining string. */
4706 lua_pop(L, 1);
4707 }
4708
4709 if (h1m.flags & H1_MF_CHNK)
4710 h1m.flags &= ~H1_MF_CLEN;
4711 if (h1m.flags & (H1_MF_CLEN|H1_MF_CHNK))
4712 h1m.flags |= H1_MF_XFER_LEN;
4713
4714 /* Uset HTX start-line flags */
4715 if (h1m.flags & H1_MF_XFER_ENC)
4716 flags |= HTX_SL_F_XFER_ENC;
4717 if (h1m.flags & H1_MF_XFER_LEN) {
4718 flags |= HTX_SL_F_XFER_LEN;
4719 if (h1m.flags & H1_MF_CHNK)
4720 flags |= HTX_SL_F_CHNK;
4721 else if (h1m.flags & H1_MF_CLEN)
4722 flags |= HTX_SL_F_CLEN;
4723 if (h1m.body_len == 0)
4724 flags |= HTX_SL_F_BODYLESS;
4725 }
4726 sl->flags |= flags;
4727
4728 /* If we dont have a content-length set, and the HTTP version is 1.1
4729 * and the status code implies the presence of a message body, we must
4730 * announce a transfer encoding chunked. This is required by haproxy
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05004731 * for the keepalive compliance. If the applet announces a transfer-encoding
4732 * chunked itself, don't do anything.
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004733 */
4734 if ((flags & (HTX_SL_F_VER_11|HTX_SL_F_XFER_LEN)) == HTX_SL_F_VER_11 &&
4735 appctx->appctx->ctx.hlua_apphttp.status >= 200 &&
4736 appctx->appctx->ctx.hlua_apphttp.status != 204 &&
4737 appctx->appctx->ctx.hlua_apphttp.status != 304) {
4738 /* Add a new header */
4739 sl->flags |= (HTX_SL_F_XFER_ENC|H1_MF_CHNK|H1_MF_XFER_LEN);
4740 if (!htx_add_header(htx, ist("transfer-encoding"), ist("chunked"))) {
4741 hlua_pusherror(L, "Lua applet http '%s': Failed to add header 'transfer-encoding' in the response.\n",
4742 appctx->appctx->rule->arg.hlua_rule->fcn.name);
4743 WILL_LJMP(lua_error(L));
4744 }
4745 }
4746
4747 /* Finalize headers. */
4748 if (!htx_add_endof(htx, HTX_BLK_EOH)) {
4749 hlua_pusherror(L, "Lua applet http '%s': Failed create the response.\n",
4750 appctx->appctx->rule->arg.hlua_rule->fcn.name);
4751 WILL_LJMP(lua_error(L));
4752 }
4753
4754 if (htx_used_space(htx) > b_size(&res->buf) - global.tune.maxrewrite) {
4755 b_reset(&res->buf);
4756 hlua_pusherror(L, "Lua: 'start_response': response header block too big");
4757 WILL_LJMP(lua_error(L));
4758 }
4759
4760 htx_to_buf(htx, &res->buf);
Christopher Fauletf6cce3f2019-02-27 21:20:09 +01004761 channel_add_input(res, htx->data);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004762
4763 /* Headers sent, set the flag. */
4764 appctx->appctx->ctx.hlua_apphttp.flags |= APPLET_HDR_SENT;
4765 return 0;
4766
4767}
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004768/* We will build the status line and the headers of the HTTP response.
4769 * We will try send at once if its not possible, we give back the hand
4770 * waiting for more room.
4771 */
Christopher Fauleta2097962019-07-15 16:25:33 +02004772__LJMP static int hlua_applet_http_start_response_yield(lua_State *L, int status, lua_KContext ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004773{
4774 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4775 struct stream_interface *si = appctx->appctx->owner;
4776 struct channel *res = si_ic(si);
4777
4778 if (co_data(res)) {
4779 si_rx_room_blk(si);
Christopher Fauleta2097962019-07-15 16:25:33 +02004780 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_start_response_yield, TICK_ETERNITY, 0));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004781 }
Christopher Fauleta2097962019-07-15 16:25:33 +02004782 return MAY_LJMP(hlua_applet_http_send_response(L));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004783}
4784
4785
Christopher Fauleta2097962019-07-15 16:25:33 +02004786__LJMP static int hlua_applet_http_start_response(lua_State *L)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004787{
Christopher Fauleta2097962019-07-15 16:25:33 +02004788 return MAY_LJMP(hlua_applet_http_start_response_yield(L, 0, 0));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004789}
4790
Christopher Fauleta2097962019-07-15 16:25:33 +02004791/*
4792 *
4793 *
4794 * Class HTTP
4795 *
4796 *
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004797 */
Christopher Fauleta2097962019-07-15 16:25:33 +02004798
4799/* Returns a struct hlua_txn if the stack entry "ud" is
4800 * a class stream, otherwise it throws an error.
4801 */
4802__LJMP static struct hlua_txn *hlua_checkhttp(lua_State *L, int ud)
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004803{
Christopher Fauleta2097962019-07-15 16:25:33 +02004804 return MAY_LJMP(hlua_checkudata(L, ud, class_http_ref));
4805}
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004806
Christopher Fauleta2097962019-07-15 16:25:33 +02004807/* This function creates and push in the stack a HTTP object
4808 * according with a current TXN.
4809 */
4810static int hlua_http_new(lua_State *L, struct hlua_txn *txn)
4811{
4812 struct hlua_txn *htxn;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004813
Christopher Fauleta2097962019-07-15 16:25:33 +02004814 /* Check stack size. */
4815 if (!lua_checkstack(L, 3))
4816 return 0;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004817
Christopher Fauleta2097962019-07-15 16:25:33 +02004818 /* Create the object: obj[0] = userdata.
4819 * Note that the base of the Converters object is the
4820 * same than the TXN object.
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004821 */
Christopher Fauleta2097962019-07-15 16:25:33 +02004822 lua_newtable(L);
4823 htxn = lua_newuserdata(L, sizeof(*htxn));
4824 lua_rawseti(L, -2, 0);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004825
4826 htxn->s = txn->s;
4827 htxn->p = txn->p;
Christopher Faulet256b69a2019-05-23 11:14:21 +02004828 htxn->dir = txn->dir;
4829 htxn->flags = txn->flags;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004830
4831 /* Pop a class stream metatable and affect it to the table. */
4832 lua_rawgeti(L, LUA_REGISTRYINDEX, class_http_ref);
4833 lua_setmetatable(L, -2);
4834
4835 return 1;
4836}
4837
4838/* This function creates ans returns an array of HTTP headers.
4839 * This function does not fails. It is used as wrapper with the
4840 * 2 following functions.
4841 */
Christopher Faulet9d1332b2020-02-24 16:46:16 +01004842__LJMP static int hlua_http_get_headers(lua_State *L, struct http_msg *msg)
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004843{
Christopher Fauleta2097962019-07-15 16:25:33 +02004844 struct htx *htx;
4845 int32_t pos;
4846
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004847 /* Create the table. */
4848 lua_newtable(L);
4849
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004850
Christopher Fauleta2097962019-07-15 16:25:33 +02004851 htx = htxbuf(&msg->chn->buf);
4852 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
4853 struct htx_blk *blk = htx_get_blk(htx, pos);
4854 enum htx_blk_type type = htx_get_blk_type(blk);
4855 struct ist n, v;
4856 int len;
Christopher Faulet724a12c2018-12-13 22:12:15 +01004857
Christopher Fauleta2097962019-07-15 16:25:33 +02004858 if (type == HTX_BLK_HDR) {
4859 n = htx_get_blk_name(htx,blk);
4860 v = htx_get_blk_value(htx, blk);
Christopher Faulet724a12c2018-12-13 22:12:15 +01004861 }
Christopher Fauleta2097962019-07-15 16:25:33 +02004862 else if (type == HTX_BLK_EOH)
4863 break;
4864 else
4865 continue;
Christopher Faulet724a12c2018-12-13 22:12:15 +01004866
Christopher Fauleta2097962019-07-15 16:25:33 +02004867 /* Check for existing entry:
4868 * assume that the table is on the top of the stack, and
4869 * push the key in the stack, the function lua_gettable()
4870 * perform the lookup.
4871 */
4872 lua_pushlstring(L, n.ptr, n.len);
4873 lua_gettable(L, -2);
Christopher Faulet724a12c2018-12-13 22:12:15 +01004874
Christopher Fauleta2097962019-07-15 16:25:33 +02004875 switch (lua_type(L, -1)) {
4876 case LUA_TNIL:
4877 /* Table not found, create it. */
4878 lua_pop(L, 1); /* remove the nil value. */
4879 lua_pushlstring(L, n.ptr, n.len); /* push the header name as key. */
4880 lua_newtable(L); /* create and push empty table. */
4881 lua_pushlstring(L, v.ptr, v.len); /* push header value. */
4882 lua_rawseti(L, -2, 0); /* index header value (pop it). */
4883 lua_rawset(L, -3); /* index new table with header name (pop the values). */
Christopher Faulet724a12c2018-12-13 22:12:15 +01004884 break;
Christopher Faulet724a12c2018-12-13 22:12:15 +01004885
Christopher Fauleta2097962019-07-15 16:25:33 +02004886 case LUA_TTABLE:
4887 /* Entry found: push the value in the table. */
4888 len = lua_rawlen(L, -1);
4889 lua_pushlstring(L, v.ptr, v.len); /* push header value. */
4890 lua_rawseti(L, -2, len+1); /* index header value (pop it). */
4891 lua_pop(L, 1); /* remove the table (it is stored in the main table). */
4892 break;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004893
Christopher Fauleta2097962019-07-15 16:25:33 +02004894 default:
4895 /* Other cases are errors. */
4896 hlua_pusherror(L, "internal error during the parsing of headers.");
4897 WILL_LJMP(lua_error(L));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004898 }
4899 }
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004900 return 1;
4901}
4902
4903__LJMP static int hlua_http_req_get_headers(lua_State *L)
4904{
4905 struct hlua_txn *htxn;
4906
4907 MAY_LJMP(check_args(L, 1, "req_get_headers"));
4908 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
4909
Christopher Fauletd8f0e072020-02-25 09:45:51 +01004910 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02004911 WILL_LJMP(lua_error(L));
4912
Christopher Faulet9d1332b2020-02-24 16:46:16 +01004913 return hlua_http_get_headers(L, &htxn->s->txn->req);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004914}
4915
4916__LJMP static int hlua_http_res_get_headers(lua_State *L)
4917{
4918 struct hlua_txn *htxn;
4919
4920 MAY_LJMP(check_args(L, 1, "res_get_headers"));
4921 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
4922
Christopher Fauletd8f0e072020-02-25 09:45:51 +01004923 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02004924 WILL_LJMP(lua_error(L));
4925
Christopher Faulet9d1332b2020-02-24 16:46:16 +01004926 return hlua_http_get_headers(L, &htxn->s->txn->rsp);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004927}
4928
4929/* This function replace full header, or just a value in
4930 * the request or in the response. It is a wrapper fir the
4931 * 4 following functions.
4932 */
Christopher Fauletd1914aa2020-02-24 16:52:46 +01004933__LJMP static inline int hlua_http_rep_hdr(lua_State *L, struct http_msg *msg, int full)
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004934{
4935 size_t name_len;
4936 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
4937 const char *reg = MAY_LJMP(luaL_checkstring(L, 3));
4938 const char *value = MAY_LJMP(luaL_checkstring(L, 4));
Christopher Fauleta2097962019-07-15 16:25:33 +02004939 struct htx *htx;
Dragan Dosen26743032019-04-30 15:54:36 +02004940 struct my_regex *re;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004941
Dragan Dosen26743032019-04-30 15:54:36 +02004942 if (!(re = regex_comp(reg, 1, 1, NULL)))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004943 WILL_LJMP(luaL_argerror(L, 3, "invalid regex"));
4944
Christopher Fauleta2097962019-07-15 16:25:33 +02004945 htx = htxbuf(&msg->chn->buf);
Christopher Fauletd1914aa2020-02-24 16:52:46 +01004946 http_replace_hdrs(chn_strm(msg->chn), htx, ist2(name, name_len), value, re, full);
Dragan Dosen26743032019-04-30 15:54:36 +02004947 regex_free(re);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004948 return 0;
4949}
4950
4951__LJMP static int hlua_http_req_rep_hdr(lua_State *L)
4952{
4953 struct hlua_txn *htxn;
4954
4955 MAY_LJMP(check_args(L, 4, "req_rep_hdr"));
4956 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
4957
Christopher Fauletd8f0e072020-02-25 09:45:51 +01004958 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02004959 WILL_LJMP(lua_error(L));
4960
Christopher Fauletd1914aa2020-02-24 16:52:46 +01004961 return MAY_LJMP(hlua_http_rep_hdr(L, &htxn->s->txn->req, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004962}
4963
4964__LJMP static int hlua_http_res_rep_hdr(lua_State *L)
4965{
4966 struct hlua_txn *htxn;
4967
4968 MAY_LJMP(check_args(L, 4, "res_rep_hdr"));
4969 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
4970
Christopher Fauletd8f0e072020-02-25 09:45:51 +01004971 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02004972 WILL_LJMP(lua_error(L));
4973
Christopher Fauletd1914aa2020-02-24 16:52:46 +01004974 return MAY_LJMP(hlua_http_rep_hdr(L, &htxn->s->txn->rsp, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004975}
4976
4977__LJMP static int hlua_http_req_rep_val(lua_State *L)
4978{
4979 struct hlua_txn *htxn;
4980
4981 MAY_LJMP(check_args(L, 4, "req_rep_hdr"));
4982 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
4983
Christopher Fauletd8f0e072020-02-25 09:45:51 +01004984 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02004985 WILL_LJMP(lua_error(L));
4986
Christopher Fauletd1914aa2020-02-24 16:52:46 +01004987 return MAY_LJMP(hlua_http_rep_hdr(L, &htxn->s->txn->req, 0));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004988}
4989
4990__LJMP static int hlua_http_res_rep_val(lua_State *L)
4991{
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004992 struct hlua_txn *htxn;
4993
4994 MAY_LJMP(check_args(L, 4, "res_rep_val"));
4995 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
4996
Christopher Fauletd8f0e072020-02-25 09:45:51 +01004997 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02004998 WILL_LJMP(lua_error(L));
4999
Christopher Fauletd1914aa2020-02-24 16:52:46 +01005000 return MAY_LJMP(hlua_http_rep_hdr(L, &htxn->s->txn->rsp, 0));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005001}
5002
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08005003/* This function deletes all the occurrences of an header.
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005004 * It is a wrapper for the 2 following functions.
5005 */
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005006__LJMP static inline int hlua_http_del_hdr(lua_State *L, struct http_msg *msg)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005007{
5008 size_t len;
5009 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Christopher Fauleta2097962019-07-15 16:25:33 +02005010 struct htx *htx = htxbuf(&msg->chn->buf);
5011 struct http_hdr_ctx ctx;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005012
Christopher Fauleta2097962019-07-15 16:25:33 +02005013 ctx.blk = NULL;
5014 while (http_find_header(htx, ist2(name, len), &ctx, 1))
5015 http_remove_header(htx, &ctx);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005016 return 0;
5017}
5018
5019__LJMP static int hlua_http_req_del_hdr(lua_State *L)
5020{
5021 struct hlua_txn *htxn;
5022
5023 MAY_LJMP(check_args(L, 2, "req_del_hdr"));
5024 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5025
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005026 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005027 WILL_LJMP(lua_error(L));
5028
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005029 return hlua_http_del_hdr(L, &htxn->s->txn->req);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005030}
5031
5032__LJMP static int hlua_http_res_del_hdr(lua_State *L)
5033{
5034 struct hlua_txn *htxn;
5035
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005036 MAY_LJMP(check_args(L, 2, "res_del_hdr"));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005037 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5038
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005039 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005040 WILL_LJMP(lua_error(L));
5041
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005042 return hlua_http_del_hdr(L, &htxn->s->txn->rsp);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005043}
5044
5045/* This function adds an header. It is a wrapper used by
5046 * the 2 following functions.
5047 */
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005048__LJMP static inline int hlua_http_add_hdr(lua_State *L, struct http_msg *msg)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005049{
5050 size_t name_len;
5051 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
5052 size_t value_len;
5053 const char *value = MAY_LJMP(luaL_checklstring(L, 3, &value_len));
Christopher Fauleta2097962019-07-15 16:25:33 +02005054 struct htx *htx = htxbuf(&msg->chn->buf);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005055
Christopher Fauleta2097962019-07-15 16:25:33 +02005056 lua_pushboolean(L, http_add_header(htx, ist2(name, name_len),
5057 ist2(value, value_len)));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005058 return 0;
5059}
5060
5061__LJMP static int hlua_http_req_add_hdr(lua_State *L)
5062{
5063 struct hlua_txn *htxn;
5064
5065 MAY_LJMP(check_args(L, 3, "req_add_hdr"));
5066 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5067
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005068 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005069 WILL_LJMP(lua_error(L));
5070
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005071 return hlua_http_add_hdr(L, &htxn->s->txn->req);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005072}
5073
5074__LJMP static int hlua_http_res_add_hdr(lua_State *L)
5075{
5076 struct hlua_txn *htxn;
5077
5078 MAY_LJMP(check_args(L, 3, "res_add_hdr"));
5079 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5080
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005081 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005082 WILL_LJMP(lua_error(L));
5083
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005084 return hlua_http_add_hdr(L, &htxn->s->txn->rsp);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005085}
5086
5087static int hlua_http_req_set_hdr(lua_State *L)
5088{
5089 struct hlua_txn *htxn;
5090
5091 MAY_LJMP(check_args(L, 3, "req_set_hdr"));
5092 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5093
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005094 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005095 WILL_LJMP(lua_error(L));
5096
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005097 hlua_http_del_hdr(L, &htxn->s->txn->req);
5098 return hlua_http_add_hdr(L, &htxn->s->txn->req);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005099}
5100
5101static int hlua_http_res_set_hdr(lua_State *L)
5102{
5103 struct hlua_txn *htxn;
5104
5105 MAY_LJMP(check_args(L, 3, "res_set_hdr"));
5106 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5107
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005108 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005109 WILL_LJMP(lua_error(L));
5110
Christopher Fauletd31c7b32020-02-25 09:37:57 +01005111 hlua_http_del_hdr(L, &htxn->s->txn->rsp);
5112 return hlua_http_add_hdr(L, &htxn->s->txn->rsp);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005113}
5114
5115/* This function set the method. */
5116static int hlua_http_req_set_meth(lua_State *L)
5117{
Willy Tarreaubcb39cc2015-04-06 11:21:44 +02005118 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005119 size_t name_len;
5120 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005121
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005122 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005123 WILL_LJMP(lua_error(L));
5124
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02005125 lua_pushboolean(L, http_req_replace_stline(0, name, name_len, htxn->p, htxn->s) != -1);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005126 return 1;
5127}
5128
5129/* This function set the method. */
5130static int hlua_http_req_set_path(lua_State *L)
5131{
Willy Tarreaubcb39cc2015-04-06 11:21:44 +02005132 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005133 size_t name_len;
5134 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
Thierry FOURNIER / OZON.IOb84ae922016-08-02 23:44:58 +02005135
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005136 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005137 WILL_LJMP(lua_error(L));
5138
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02005139 lua_pushboolean(L, http_req_replace_stline(1, name, name_len, htxn->p, htxn->s) != -1);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005140 return 1;
5141}
5142
5143/* This function set the query-string. */
5144static int hlua_http_req_set_query(lua_State *L)
5145{
Willy Tarreaubcb39cc2015-04-06 11:21:44 +02005146 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005147 size_t name_len;
5148 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005149
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005150 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005151 WILL_LJMP(lua_error(L));
5152
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005153 /* Check length. */
5154 if (name_len > trash.size - 1) {
5155 lua_pushboolean(L, 0);
5156 return 1;
5157 }
5158
5159 /* Add the mark question as prefix. */
5160 chunk_reset(&trash);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005161 trash.area[trash.data++] = '?';
5162 memcpy(trash.area + trash.data, name, name_len);
5163 trash.data += name_len;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005164
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005165 lua_pushboolean(L,
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02005166 http_req_replace_stline(2, trash.area, trash.data, htxn->p, htxn->s) != -1);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005167 return 1;
5168}
5169
5170/* This function set the uri. */
5171static int hlua_http_req_set_uri(lua_State *L)
5172{
Willy Tarreaubcb39cc2015-04-06 11:21:44 +02005173 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005174 size_t name_len;
5175 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005176
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005177 if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005178 WILL_LJMP(lua_error(L));
5179
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02005180 lua_pushboolean(L, http_req_replace_stline(3, name, name_len, htxn->p, htxn->s) != -1);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005181 return 1;
5182}
5183
Robin H. Johnson52f5db22017-01-01 13:10:52 -08005184/* This function set the response code & optionally reason. */
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +02005185static int hlua_http_res_set_status(lua_State *L)
5186{
5187 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5188 unsigned int code = MAY_LJMP(luaL_checkinteger(L, 2));
Christopher Faulet96bff762019-12-17 13:46:18 +01005189 const char *str = MAY_LJMP(luaL_optlstring(L, 3, NULL, NULL));
5190 const struct ist reason = ist2(str, (str ? strlen(str) : 0));
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +02005191
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005192 if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s))
Christopher Faulet84a6d5b2019-07-26 16:17:01 +02005193 WILL_LJMP(lua_error(L));
5194
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02005195 http_res_set_status(code, reason, htxn->s);
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +02005196 return 0;
5197}
5198
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005199/*
5200 *
5201 *
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005202 * Class TXN
5203 *
5204 *
5205 */
5206
5207/* Returns a struct hlua_session if the stack entry "ud" is
Willy Tarreau87b09662015-04-03 00:22:06 +02005208 * a class stream, otherwise it throws an error.
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005209 */
5210__LJMP static struct hlua_txn *hlua_checktxn(lua_State *L, int ud)
5211{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02005212 return MAY_LJMP(hlua_checkudata(L, ud, class_txn_ref));
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005213}
5214
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02005215__LJMP static int hlua_set_var(lua_State *L)
5216{
5217 struct hlua_txn *htxn;
5218 const char *name;
5219 size_t len;
5220 struct sample smp;
5221
Tim Duesterhus4e172c92020-05-19 13:49:42 +02005222 if (lua_gettop(L) < 3 || lua_gettop(L) > 4)
5223 WILL_LJMP(luaL_error(L, "'set_var' needs between 3 and 4 arguments"));
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02005224
5225 /* It is useles to retrieve the stream, but this function
5226 * runs only in a stream context.
5227 */
5228 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5229 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
5230
5231 /* Converts the third argument in a sample. */
Amaury Denoyellebc0af6a2020-10-29 17:21:20 +01005232 memset(&smp, 0, sizeof(smp));
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02005233 hlua_lua2smp(L, 3, &smp);
5234
5235 /* Store the sample in a variable. */
Willy Tarreau7560dd42016-03-10 16:28:58 +01005236 smp_set_owner(&smp, htxn->p, htxn->s->sess, htxn->s, htxn->dir & SMP_OPT_DIR);
Tim Duesterhus4e172c92020-05-19 13:49:42 +02005237
5238 if (lua_gettop(L) == 4 && lua_toboolean(L, 4))
5239 lua_pushboolean(L, vars_set_by_name_ifexist(name, len, &smp) != 0);
5240 else
5241 lua_pushboolean(L, vars_set_by_name(name, len, &smp) != 0);
5242
Tim Duesterhus84ebc132020-05-19 13:49:41 +02005243 return 1;
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02005244}
5245
Christopher Faulet85d79c92016-11-09 16:54:56 +01005246__LJMP static int hlua_unset_var(lua_State *L)
5247{
5248 struct hlua_txn *htxn;
5249 const char *name;
5250 size_t len;
5251 struct sample smp;
5252
5253 MAY_LJMP(check_args(L, 2, "unset_var"));
5254
5255 /* It is useles to retrieve the stream, but this function
5256 * runs only in a stream context.
5257 */
5258 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5259 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
5260
5261 /* Unset the variable. */
5262 smp_set_owner(&smp, htxn->p, htxn->s->sess, htxn->s, htxn->dir & SMP_OPT_DIR);
Tim Duesterhus84ebc132020-05-19 13:49:41 +02005263 lua_pushboolean(L, vars_unset_by_name_ifexist(name, len, &smp) != 0);
5264 return 1;
Christopher Faulet85d79c92016-11-09 16:54:56 +01005265}
5266
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02005267__LJMP static int hlua_get_var(lua_State *L)
5268{
5269 struct hlua_txn *htxn;
5270 const char *name;
5271 size_t len;
5272 struct sample smp;
5273
5274 MAY_LJMP(check_args(L, 2, "get_var"));
5275
5276 /* It is useles to retrieve the stream, but this function
5277 * runs only in a stream context.
5278 */
5279 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5280 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
5281
Willy Tarreau7560dd42016-03-10 16:28:58 +01005282 smp_set_owner(&smp, htxn->p, htxn->s->sess, htxn->s, htxn->dir & SMP_OPT_DIR);
Willy Tarreau6204cd92016-03-10 16:33:04 +01005283 if (!vars_get_by_name(name, len, &smp)) {
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02005284 lua_pushnil(L);
5285 return 1;
5286 }
5287
5288 return hlua_smp2lua(L, &smp);
5289}
5290
Willy Tarreau59551662015-03-10 14:23:13 +01005291__LJMP static int hlua_set_priv(lua_State *L)
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005292{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01005293 struct hlua *hlua;
5294
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005295 MAY_LJMP(check_args(L, 2, "set_priv"));
5296
Willy Tarreau87b09662015-04-03 00:22:06 +02005297 /* It is useles to retrieve the stream, but this function
5298 * runs only in a stream context.
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005299 */
5300 MAY_LJMP(hlua_checktxn(L, 1));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01005301 hlua = hlua_gethlua(L);
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005302
5303 /* Remove previous value. */
Thierry FOURNIERe068b602017-04-26 13:27:05 +02005304 luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref);
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005305
5306 /* Get and store new value. */
5307 lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */
5308 hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */
5309
5310 return 0;
5311}
5312
Willy Tarreau59551662015-03-10 14:23:13 +01005313__LJMP static int hlua_get_priv(lua_State *L)
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005314{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01005315 struct hlua *hlua;
5316
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005317 MAY_LJMP(check_args(L, 1, "get_priv"));
5318
Willy Tarreau87b09662015-04-03 00:22:06 +02005319 /* It is useles to retrieve the stream, but this function
5320 * runs only in a stream context.
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005321 */
5322 MAY_LJMP(hlua_checktxn(L, 1));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01005323 hlua = hlua_gethlua(L);
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005324
5325 /* Push configuration index in the stack. */
5326 lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref);
5327
5328 return 1;
5329}
5330
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005331/* Create stack entry containing a class TXN. This function
5332 * return 0 if the stack does not contains free slots,
5333 * otherwise it returns 1.
5334 */
Thierry FOURNIERab00df62016-07-14 11:42:37 +02005335static int hlua_txn_new(lua_State *L, struct stream *s, struct proxy *p, int dir, int flags)
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005336{
Willy Tarreaude491382015-04-06 11:04:28 +02005337 struct hlua_txn *htxn;
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005338
5339 /* Check stack size. */
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01005340 if (!lua_checkstack(L, 3))
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005341 return 0;
5342
5343 /* NOTE: The allocation never fails. The failure
5344 * throw an error, and the function never returns.
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08005345 * if the throw is not available, the process is aborted.
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005346 */
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01005347 /* Create the object: obj[0] = userdata. */
5348 lua_newtable(L);
Willy Tarreaude491382015-04-06 11:04:28 +02005349 htxn = lua_newuserdata(L, sizeof(*htxn));
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01005350 lua_rawseti(L, -2, 0);
5351
Willy Tarreaude491382015-04-06 11:04:28 +02005352 htxn->s = s;
5353 htxn->p = p;
Thierry FOURNIERc4eebc82015-11-02 10:01:59 +01005354 htxn->dir = dir;
Thierry FOURNIERab00df62016-07-14 11:42:37 +02005355 htxn->flags = flags;
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005356
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01005357 /* Create the "f" field that contains a list of fetches. */
5358 lua_pushstring(L, "f");
Thierry FOURNIERca988662015-12-20 18:43:03 +01005359 if (!hlua_fetches_new(L, htxn, HLUA_F_MAY_USE_HTTP))
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01005360 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02005361 lua_rawset(L, -3);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01005362
5363 /* Create the "sf" field that contains a list of stringsafe fetches. */
5364 lua_pushstring(L, "sf");
Thierry FOURNIERca988662015-12-20 18:43:03 +01005365 if (!hlua_fetches_new(L, htxn, HLUA_F_MAY_USE_HTTP | HLUA_F_AS_STRING))
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01005366 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02005367 lua_rawset(L, -3);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01005368
Thierry FOURNIER594afe72015-03-10 23:58:30 +01005369 /* Create the "c" field that contains a list of converters. */
5370 lua_pushstring(L, "c");
Willy Tarreaude491382015-04-06 11:04:28 +02005371 if (!hlua_converters_new(L, htxn, 0))
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01005372 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02005373 lua_rawset(L, -3);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01005374
5375 /* Create the "sc" field that contains a list of stringsafe converters. */
5376 lua_pushstring(L, "sc");
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01005377 if (!hlua_converters_new(L, htxn, HLUA_F_AS_STRING))
Thierry FOURNIER594afe72015-03-10 23:58:30 +01005378 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02005379 lua_rawset(L, -3);
Thierry FOURNIER594afe72015-03-10 23:58:30 +01005380
Thierry FOURNIER397826a2015-03-11 19:39:09 +01005381 /* Create the "req" field that contains the request channel object. */
5382 lua_pushstring(L, "req");
Willy Tarreau2a71af42015-03-10 13:51:50 +01005383 if (!hlua_channel_new(L, &s->req))
Thierry FOURNIER397826a2015-03-11 19:39:09 +01005384 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02005385 lua_rawset(L, -3);
Thierry FOURNIER397826a2015-03-11 19:39:09 +01005386
5387 /* Create the "res" field that contains the response channel object. */
5388 lua_pushstring(L, "res");
Willy Tarreau2a71af42015-03-10 13:51:50 +01005389 if (!hlua_channel_new(L, &s->res))
Thierry FOURNIER397826a2015-03-11 19:39:09 +01005390 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02005391 lua_rawset(L, -3);
Thierry FOURNIER397826a2015-03-11 19:39:09 +01005392
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005393 /* Creates the HTTP object is the current proxy allows http. */
5394 lua_pushstring(L, "http");
5395 if (p->mode == PR_MODE_HTTP) {
Willy Tarreaude491382015-04-06 11:04:28 +02005396 if (!hlua_http_new(L, htxn))
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005397 return 0;
5398 }
5399 else
5400 lua_pushnil(L);
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02005401 lua_rawset(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005402
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005403 /* Pop a class sesison metatable and affect it to the userdata. */
5404 lua_rawgeti(L, LUA_REGISTRYINDEX, class_txn_ref);
5405 lua_setmetatable(L, -2);
5406
5407 return 1;
5408}
5409
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01005410__LJMP static int hlua_txn_deflog(lua_State *L)
5411{
5412 const char *msg;
5413 struct hlua_txn *htxn;
5414
5415 MAY_LJMP(check_args(L, 2, "deflog"));
5416 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5417 msg = MAY_LJMP(luaL_checkstring(L, 2));
5418
5419 hlua_sendlog(htxn->s->be, htxn->s->logs.level, msg);
5420 return 0;
5421}
5422
5423__LJMP static int hlua_txn_log(lua_State *L)
5424{
5425 int level;
5426 const char *msg;
5427 struct hlua_txn *htxn;
5428
5429 MAY_LJMP(check_args(L, 3, "log"));
5430 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5431 level = MAY_LJMP(luaL_checkinteger(L, 2));
5432 msg = MAY_LJMP(luaL_checkstring(L, 3));
5433
5434 if (level < 0 || level >= NB_LOG_LEVELS)
5435 WILL_LJMP(luaL_argerror(L, 1, "Invalid loglevel."));
5436
5437 hlua_sendlog(htxn->s->be, level, msg);
5438 return 0;
5439}
5440
5441__LJMP static int hlua_txn_log_debug(lua_State *L)
5442{
5443 const char *msg;
5444 struct hlua_txn *htxn;
5445
5446 MAY_LJMP(check_args(L, 2, "Debug"));
5447 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5448 msg = MAY_LJMP(luaL_checkstring(L, 2));
5449 hlua_sendlog(htxn->s->be, LOG_DEBUG, msg);
5450 return 0;
5451}
5452
5453__LJMP static int hlua_txn_log_info(lua_State *L)
5454{
5455 const char *msg;
5456 struct hlua_txn *htxn;
5457
5458 MAY_LJMP(check_args(L, 2, "Info"));
5459 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5460 msg = MAY_LJMP(luaL_checkstring(L, 2));
5461 hlua_sendlog(htxn->s->be, LOG_INFO, msg);
5462 return 0;
5463}
5464
5465__LJMP static int hlua_txn_log_warning(lua_State *L)
5466{
5467 const char *msg;
5468 struct hlua_txn *htxn;
5469
5470 MAY_LJMP(check_args(L, 2, "Warning"));
5471 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5472 msg = MAY_LJMP(luaL_checkstring(L, 2));
5473 hlua_sendlog(htxn->s->be, LOG_WARNING, msg);
5474 return 0;
5475}
5476
5477__LJMP static int hlua_txn_log_alert(lua_State *L)
5478{
5479 const char *msg;
5480 struct hlua_txn *htxn;
5481
5482 MAY_LJMP(check_args(L, 2, "Alert"));
5483 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5484 msg = MAY_LJMP(luaL_checkstring(L, 2));
5485 hlua_sendlog(htxn->s->be, LOG_ALERT, msg);
5486 return 0;
5487}
5488
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01005489__LJMP static int hlua_txn_set_loglevel(lua_State *L)
5490{
5491 struct hlua_txn *htxn;
5492 int ll;
5493
5494 MAY_LJMP(check_args(L, 2, "set_loglevel"));
5495 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5496 ll = MAY_LJMP(luaL_checkinteger(L, 2));
5497
5498 if (ll < 0 || ll > 7)
5499 WILL_LJMP(luaL_argerror(L, 2, "Bad log level. It must be between 0 and 7"));
5500
5501 htxn->s->logs.level = ll;
5502 return 0;
5503}
5504
5505__LJMP static int hlua_txn_set_tos(lua_State *L)
5506{
5507 struct hlua_txn *htxn;
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01005508 int tos;
5509
5510 MAY_LJMP(check_args(L, 2, "set_tos"));
5511 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5512 tos = MAY_LJMP(luaL_checkinteger(L, 2));
5513
Willy Tarreau1a18b542018-12-11 16:37:42 +01005514 conn_set_tos(objt_conn(htxn->s->sess->origin), tos);
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01005515 return 0;
5516}
5517
5518__LJMP static int hlua_txn_set_mark(lua_State *L)
5519{
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01005520 struct hlua_txn *htxn;
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01005521 int mark;
5522
5523 MAY_LJMP(check_args(L, 2, "set_mark"));
5524 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5525 mark = MAY_LJMP(luaL_checkinteger(L, 2));
5526
Lukas Tribus579e3e32019-08-11 18:03:45 +02005527 conn_set_mark(objt_conn(htxn->s->sess->origin), mark);
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01005528 return 0;
5529}
5530
Patrick Hemmer268a7072018-05-11 12:52:31 -04005531__LJMP static int hlua_txn_set_priority_class(lua_State *L)
5532{
5533 struct hlua_txn *htxn;
5534
5535 MAY_LJMP(check_args(L, 2, "set_priority_class"));
5536 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5537 htxn->s->priority_class = queue_limit_class(MAY_LJMP(luaL_checkinteger(L, 2)));
5538 return 0;
5539}
5540
5541__LJMP static int hlua_txn_set_priority_offset(lua_State *L)
5542{
5543 struct hlua_txn *htxn;
5544
5545 MAY_LJMP(check_args(L, 2, "set_priority_offset"));
5546 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5547 htxn->s->priority_offset = queue_limit_offset(MAY_LJMP(luaL_checkinteger(L, 2)));
5548 return 0;
5549}
5550
Christopher Faulet700d9e82020-01-31 12:21:52 +01005551/* Forward the Reply object to the client. This function converts the reply in
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05005552 * HTX an push it to into the response channel. It is response to forward the
Christopher Faulet700d9e82020-01-31 12:21:52 +01005553 * message and terminate the transaction. It returns 1 on success and 0 on
5554 * error. The Reply must be on top of the stack.
5555 */
5556__LJMP static int hlua_txn_forward_reply(lua_State *L, struct stream *s)
5557{
5558 struct htx *htx;
5559 struct htx_sl *sl;
5560 struct h1m h1m;
5561 const char *status, *reason, *body;
5562 size_t status_len, reason_len, body_len;
5563 int ret, code, flags;
5564
5565 code = 200;
5566 status = "200";
5567 status_len = 3;
5568 ret = lua_getfield(L, -1, "status");
5569 if (ret == LUA_TNUMBER) {
5570 code = lua_tointeger(L, -1);
5571 status = lua_tolstring(L, -1, &status_len);
5572 }
5573 lua_pop(L, 1);
5574
5575 reason = http_get_reason(code);
5576 reason_len = strlen(reason);
5577 ret = lua_getfield(L, -1, "reason");
5578 if (ret == LUA_TSTRING)
5579 reason = lua_tolstring(L, -1, &reason_len);
5580 lua_pop(L, 1);
5581
5582 body = NULL;
5583 body_len = 0;
5584 ret = lua_getfield(L, -1, "body");
5585 if (ret == LUA_TSTRING)
5586 body = lua_tolstring(L, -1, &body_len);
5587 lua_pop(L, 1);
5588
5589 /* Prepare the response before inserting the headers */
5590 h1m_init_res(&h1m);
5591 htx = htx_from_buf(&s->res.buf);
5592 channel_htx_truncate(&s->res, htx);
5593 if (s->txn->req.flags & HTTP_MSGF_VER_11) {
5594 flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11);
5595 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"),
5596 ist2(status, status_len), ist2(reason, reason_len));
5597 }
5598 else {
5599 flags = HTX_SL_F_IS_RESP;
5600 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.0"),
5601 ist2(status, status_len), ist2(reason, reason_len));
5602 }
5603 if (!sl)
5604 goto fail;
5605 sl->info.res.status = code;
5606
5607 /* Push in the stack the "headers" entry. */
5608 ret = lua_getfield(L, -1, "headers");
5609 if (ret != LUA_TTABLE)
5610 goto skip_headers;
5611
5612 lua_pushnil(L);
5613 while (lua_next(L, -2) != 0) {
5614 struct ist name, value;
5615 const char *n, *v;
5616 size_t nlen, vlen;
5617
5618 if (!lua_isstring(L, -2) || !lua_istable(L, -1)) {
5619 /* Skip element if the key is not a string or if the value is not a table */
5620 goto next_hdr;
5621 }
5622
5623 n = lua_tolstring(L, -2, &nlen);
5624 name = ist2(n, nlen);
5625 if (isteqi(name, ist("content-length"))) {
5626 /* Always skip content-length header. It will be added
5627 * later with the correct len
5628 */
5629 goto next_hdr;
5630 }
5631
5632 /* Loop on header's values */
5633 lua_pushnil(L);
5634 while (lua_next(L, -2)) {
5635 if (!lua_isstring(L, -1)) {
5636 /* Skip the value if it is not a string */
5637 goto next_value;
5638 }
5639
5640 v = lua_tolstring(L, -1, &vlen);
5641 value = ist2(v, vlen);
5642
5643 if (isteqi(name, ist("transfer-encoding")))
5644 h1_parse_xfer_enc_header(&h1m, value);
5645 if (!htx_add_header(htx, ist2(n, nlen), ist2(v, vlen)))
5646 goto fail;
5647
5648 next_value:
5649 lua_pop(L, 1);
5650 }
5651
5652 next_hdr:
5653 lua_pop(L, 1);
5654 }
5655 skip_headers:
5656 lua_pop(L, 1);
5657
5658 /* Update h1m flags: CLEN is set if CHNK is not present */
5659 if (!(h1m.flags & H1_MF_CHNK)) {
5660 const char *clen = ultoa(body_len);
5661
5662 h1m.flags |= H1_MF_CLEN;
5663 if (!htx_add_header(htx, ist("content-length"), ist(clen)))
5664 goto fail;
5665 }
5666 if (h1m.flags & (H1_MF_CLEN|H1_MF_CHNK))
5667 h1m.flags |= H1_MF_XFER_LEN;
5668
5669 /* Update HTX start-line flags */
5670 if (h1m.flags & H1_MF_XFER_ENC)
5671 flags |= HTX_SL_F_XFER_ENC;
5672 if (h1m.flags & H1_MF_XFER_LEN) {
5673 flags |= HTX_SL_F_XFER_LEN;
5674 if (h1m.flags & H1_MF_CHNK)
5675 flags |= HTX_SL_F_CHNK;
5676 else if (h1m.flags & H1_MF_CLEN)
5677 flags |= HTX_SL_F_CLEN;
5678 if (h1m.body_len == 0)
5679 flags |= HTX_SL_F_BODYLESS;
5680 }
5681 sl->flags |= flags;
5682
5683
5684 if (!htx_add_endof(htx, HTX_BLK_EOH) ||
5685 (body_len && !htx_add_data_atonce(htx, ist2(body, body_len))) ||
5686 !htx_add_endof(htx, HTX_BLK_EOM))
5687 goto fail;
5688
5689 /* Now, forward the response and terminate the transaction */
5690 s->txn->status = code;
5691 htx_to_buf(htx, &s->res.buf);
5692 if (!http_forward_proxy_resp(s, 1))
5693 goto fail;
5694
5695 return 1;
5696
5697 fail:
5698 channel_htx_truncate(&s->res, htx);
5699 return 0;
5700}
5701
5702/* Terminate a transaction if called from a lua action. For TCP streams,
5703 * processing is just aborted. Nothing is returned to the client and all
5704 * arguments are ignored. For HTTP streams, if a reply is passed as argument, it
5705 * is forwarded to the client before terminating the transaction. On success,
5706 * the function exits with ACT_RET_DONE code. If an error occurred, it exits
5707 * with ACT_RET_ERR code. If this function is not called from a lua action, it
5708 * just exits without any processing.
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01005709 */
Thierry FOURNIER4bb375c2015-08-26 08:42:21 +02005710__LJMP static int hlua_txn_done(lua_State *L)
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01005711{
Willy Tarreaub2ccb562015-04-06 11:11:15 +02005712 struct hlua_txn *htxn;
Christopher Faulet700d9e82020-01-31 12:21:52 +01005713 struct stream *s;
5714 int finst;
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01005715
Willy Tarreaub2ccb562015-04-06 11:11:15 +02005716 htxn = MAY_LJMP(hlua_checktxn(L, 1));
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01005717
Christopher Faulet700d9e82020-01-31 12:21:52 +01005718 /* If the flags NOTERM is set, we cannot terminate the session, so we
5719 * just end the execution of the current lua code. */
5720 if (htxn->flags & HLUA_TXN_NOTERM)
Thierry FOURNIERab00df62016-07-14 11:42:37 +02005721 WILL_LJMP(hlua_done(L));
Thierry FOURNIERab00df62016-07-14 11:42:37 +02005722
Christopher Faulet700d9e82020-01-31 12:21:52 +01005723 s = htxn->s;
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005724 if (!IS_HTX_STRM(htxn->s)) {
Christopher Faulet700d9e82020-01-31 12:21:52 +01005725 struct channel *req = &s->req;
5726 struct channel *res = &s->res;
Willy Tarreau81389672015-03-10 12:03:52 +01005727
Christopher Faulet700d9e82020-01-31 12:21:52 +01005728 channel_auto_read(req);
5729 channel_abort(req);
5730 channel_auto_close(req);
5731 channel_erase(req);
5732
5733 res->wex = tick_add_ifset(now_ms, res->wto);
5734 channel_auto_read(res);
5735 channel_auto_close(res);
5736 channel_shutr_now(res);
5737
5738 finst = ((htxn->dir == SMP_OPT_DIR_REQ) ? SF_FINST_R : SF_FINST_D);
5739 goto done;
Christopher Fauletfe6a71b2019-07-26 16:40:24 +02005740 }
Thierry FOURNIER10ec2142015-08-24 17:23:45 +02005741
Christopher Faulet700d9e82020-01-31 12:21:52 +01005742 if (lua_gettop(L) == 1 || !lua_istable(L, 2)) {
5743 /* No reply or invalid reply */
5744 s->txn->status = 0;
5745 http_reply_and_close(s, 0, NULL);
5746 }
5747 else {
5748 /* Remove extra args to have the reply on top of the stack */
5749 if (lua_gettop(L) > 2)
5750 lua_pop(L, lua_gettop(L) - 2);
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01005751
Christopher Faulet700d9e82020-01-31 12:21:52 +01005752 if (!hlua_txn_forward_reply(L, s)) {
5753 if (!(s->flags & SF_ERR_MASK))
5754 s->flags |= SF_ERR_PRXCOND;
5755 lua_pushinteger(L, ACT_RET_ERR);
5756 WILL_LJMP(hlua_done(L));
5757 return 0; /* Never reached */
5758 }
Christopher Faulet4d0e2632019-07-16 10:52:40 +02005759 }
Thierry FOURNIER4bb375c2015-08-26 08:42:21 +02005760
Christopher Faulet700d9e82020-01-31 12:21:52 +01005761 finst = ((htxn->dir == SMP_OPT_DIR_REQ) ? SF_FINST_R : SF_FINST_H);
5762 if (htxn->dir == SMP_OPT_DIR_REQ) {
5763 /* let's log the request time */
5764 s->logs.tv_request = now;
5765 if (s->sess->fe == s->be) /* report it if the request was intercepted by the frontend */
5766 _HA_ATOMIC_ADD(&s->sess->fe->fe_counters.intercepted_req, 1);
5767 }
Christopher Fauletfe6a71b2019-07-26 16:40:24 +02005768
Christopher Faulet700d9e82020-01-31 12:21:52 +01005769 done:
5770 if (!(s->flags & SF_ERR_MASK))
5771 s->flags |= SF_ERR_LOCAL;
5772 if (!(s->flags & SF_FINST_MASK))
5773 s->flags |= finst;
Christopher Fauletfe6a71b2019-07-26 16:40:24 +02005774
Christopher Faulet4ad73102020-03-05 11:07:31 +01005775 lua_pushinteger(L, ACT_RET_ABRT);
Thierry FOURNIER4bb375c2015-08-26 08:42:21 +02005776 WILL_LJMP(hlua_done(L));
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01005777 return 0;
5778}
5779
Christopher Faulet700d9e82020-01-31 12:21:52 +01005780/*
5781 *
5782 *
5783 * Class REPLY
5784 *
5785 *
5786 */
5787
5788/* Pushes the TXN reply onto the top of the stack. If the stask does not have a
5789 * free slots, the function fails and returns 0;
5790 */
5791static int hlua_txn_reply_new(lua_State *L)
5792{
5793 struct hlua_txn *htxn;
5794 const char *reason, *body = NULL;
5795 int ret, status;
5796
5797 htxn = MAY_LJMP(hlua_checktxn(L, 1));
Christopher Fauletd8f0e072020-02-25 09:45:51 +01005798 if (!IS_HTX_STRM(htxn->s)) {
Christopher Faulet700d9e82020-01-31 12:21:52 +01005799 hlua_pusherror(L, "txn object is not an HTTP transaction.");
5800 WILL_LJMP(lua_error(L));
5801 }
5802
5803 /* Default value */
5804 status = 200;
5805 reason = http_get_reason(status);
5806
5807 if (lua_istable(L, 2)) {
5808 /* load status and reason from the table argument at index 2 */
5809 ret = lua_getfield(L, 2, "status");
5810 if (ret == LUA_TNIL)
5811 goto reason;
5812 else if (ret != LUA_TNUMBER) {
5813 /* invalid status: ignore the reason */
5814 goto body;
5815 }
5816 status = lua_tointeger(L, -1);
5817
5818 reason:
5819 lua_pop(L, 1); /* restore the stack: remove status */
5820 ret = lua_getfield(L, 2, "reason");
5821 if (ret == LUA_TSTRING)
5822 reason = lua_tostring(L, -1);
5823
5824 body:
5825 lua_pop(L, 1); /* restore the stack: remove invalid status or reason */
5826 ret = lua_getfield(L, 2, "body");
5827 if (ret == LUA_TSTRING)
5828 body = lua_tostring(L, -1);
5829 lua_pop(L, 1); /* restore the stack: remove body */
5830 }
5831
5832 /* Create the Reply table */
5833 lua_newtable(L);
5834
5835 /* Add status element */
5836 lua_pushstring(L, "status");
5837 lua_pushinteger(L, status);
5838 lua_settable(L, -3);
5839
5840 /* Add reason element */
5841 reason = http_get_reason(status);
5842 lua_pushstring(L, "reason");
5843 lua_pushstring(L, reason);
5844 lua_settable(L, -3);
5845
5846 /* Add body element, nil if undefined */
5847 lua_pushstring(L, "body");
5848 if (body)
5849 lua_pushstring(L, body);
5850 else
5851 lua_pushnil(L);
5852 lua_settable(L, -3);
5853
5854 /* Add headers element */
5855 lua_pushstring(L, "headers");
5856 lua_newtable(L);
5857
5858 /* stack: [ txn, <Arg:table>, <Reply:table>, "headers", <headers:table> ] */
5859 if (lua_istable(L, 2)) {
5860 /* load headers from the table argument at index 2. If it is a table, copy it. */
5861 ret = lua_getfield(L, 2, "headers");
5862 if (ret == LUA_TTABLE) {
5863 /* stack: [ ... <headers:table>, <table> ] */
5864 lua_pushnil(L);
5865 while (lua_next(L, -2) != 0) {
5866 /* stack: [ ... <headers:table>, <table>, k, v] */
5867 if (!lua_isstring(L, -1) && !lua_istable(L, -1)) {
5868 /* invalid value type, skip it */
5869 lua_pop(L, 1);
5870 continue;
5871 }
5872
5873
5874 /* Duplicate the key and swap it with the value. */
5875 lua_pushvalue(L, -2);
5876 lua_insert(L, -2);
5877 /* stack: [ ... <headers:table>, <table>, k, k, v ] */
5878
5879 lua_newtable(L);
5880 lua_insert(L, -2);
5881 /* stack: [ ... <headers:table>, <table>, k, k, <inner:table>, v ] */
5882
5883 if (lua_isstring(L, -1)) {
5884 /* push the value in the inner table */
5885 lua_rawseti(L, -2, 1);
5886 }
5887 else { /* table */
5888 lua_pushnil(L);
5889 while (lua_next(L, -2) != 0) {
5890 /* stack: [ ... <headers:table>, <table>, k, k, <inner:table>, <v:table>, k2, v2 ] */
5891 if (!lua_isstring(L, -1)) {
5892 /* invalid value type, skip it*/
5893 lua_pop(L, 1);
5894 continue;
5895 }
5896 /* push the value in the inner table */
5897 lua_rawseti(L, -4, lua_rawlen(L, -4) + 1);
5898 /* stack: [ ... <headers:table>, <table>, k, k, <inner:table>, <v:table>, k2 ] */
5899 }
5900 lua_pop(L, 1);
5901 /* stack: [ ... <headers:table>, <table>, k, k, <inner:table> ] */
5902 }
5903
5904 /* push (k,v) on the stack in the headers table:
5905 * stack: [ ... <headers:table>, <table>, k, k, v ]
5906 */
5907 lua_settable(L, -5);
5908 /* stack: [ ... <headers:table>, <table>, k ] */
5909 }
5910 }
5911 lua_pop(L, 1);
5912 }
5913 /* stack: [ txn, <Arg:table>, <Reply:table>, "headers", <headers:table> ] */
5914 lua_settable(L, -3);
5915 /* stack: [ txn, <Arg:table>, <Reply:table> ] */
5916
5917 /* Pop a class sesison metatable and affect it to the userdata. */
5918 lua_rawgeti(L, LUA_REGISTRYINDEX, class_txn_reply_ref);
5919 lua_setmetatable(L, -2);
5920 return 1;
5921}
5922
5923/* Set the reply status code, and optionally the reason. If no reason is
5924 * provided, the default one corresponding to the status code is used.
5925 */
5926__LJMP static int hlua_txn_reply_set_status(lua_State *L)
5927{
5928 int status = MAY_LJMP(luaL_checkinteger(L, 2));
5929 const char *reason = MAY_LJMP(luaL_optlstring(L, 3, NULL, NULL));
5930
5931 /* First argument (self) must be a table */
5932 luaL_checktype(L, 1, LUA_TTABLE);
5933
5934 if (status < 100 || status > 599) {
5935 lua_pushboolean(L, 0);
5936 return 1;
5937 }
5938 if (!reason)
5939 reason = http_get_reason(status);
5940
5941 lua_pushinteger(L, status);
5942 lua_setfield(L, 1, "status");
5943
5944 lua_pushstring(L, reason);
5945 lua_setfield(L, 1, "reason");
5946
5947 lua_pushboolean(L, 1);
5948 return 1;
5949}
5950
5951/* Add a header into the reply object. Each header name is associated to an
5952 * array of values in the "headers" table. If the header name is not found, a
5953 * new entry is created.
5954 */
5955__LJMP static int hlua_txn_reply_add_header(lua_State *L)
5956{
5957 const char *name = MAY_LJMP(luaL_checkstring(L, 2));
5958 const char *value = MAY_LJMP(luaL_checkstring(L, 3));
5959 int ret;
5960
5961 /* First argument (self) must be a table */
5962 luaL_checktype(L, 1, LUA_TTABLE);
5963
5964 /* Push in the stack the "headers" entry. */
5965 ret = lua_getfield(L, 1, "headers");
5966 if (ret != LUA_TTABLE) {
5967 hlua_pusherror(L, "Reply['headers'] is expected to a an array. %s found", lua_typename(L, ret));
5968 WILL_LJMP(lua_error(L));
5969 }
5970
5971 /* check if the header is already registered. If not, register it. */
5972 ret = lua_getfield(L, -1, name);
5973 if (ret == LUA_TNIL) {
5974 /* Entry not found. */
5975 lua_pop(L, 1); /* remove the nil. The "headers" table is the top of the stack. */
5976
5977 /* Insert the new header name in the array in the top of the stack.
5978 * It left the new array in the top of the stack.
5979 */
5980 lua_newtable(L);
5981 lua_pushstring(L, name);
5982 lua_pushvalue(L, -2);
5983 lua_settable(L, -4);
5984 }
5985 else if (ret != LUA_TTABLE) {
5986 hlua_pusherror(L, "Reply['headers']['%s'] is expected to be an array. %s found", name, lua_typename(L, ret));
5987 WILL_LJMP(lua_error(L));
5988 }
5989
5990 /* Now the top od thestack is an array of values. We push
5991 * the header value as new entry.
5992 */
5993 lua_pushstring(L, value);
5994 ret = lua_rawlen(L, -2);
5995 lua_rawseti(L, -2, ret + 1);
5996
5997 lua_pushboolean(L, 1);
5998 return 1;
5999}
6000
6001/* Remove all occurrences of a given header name. */
6002__LJMP static int hlua_txn_reply_del_header(lua_State *L)
6003{
6004 const char *name = MAY_LJMP(luaL_checkstring(L, 2));
6005 int ret;
6006
6007 /* First argument (self) must be a table */
6008 luaL_checktype(L, 1, LUA_TTABLE);
6009
6010 /* Push in the stack the "headers" entry. */
6011 ret = lua_getfield(L, 1, "headers");
6012 if (ret != LUA_TTABLE) {
6013 hlua_pusherror(L, "Reply['headers'] is expected to be an array. %s found", lua_typename(L, ret));
6014 WILL_LJMP(lua_error(L));
6015 }
6016
6017 lua_pushstring(L, name);
6018 lua_pushnil(L);
6019 lua_settable(L, -3);
6020
6021 lua_pushboolean(L, 1);
6022 return 1;
6023}
6024
6025/* Set the reply's body. Overwrite any existing entry. */
6026__LJMP static int hlua_txn_reply_set_body(lua_State *L)
6027{
6028 const char *payload = MAY_LJMP(luaL_checkstring(L, 2));
6029
6030 /* First argument (self) must be a table */
6031 luaL_checktype(L, 1, LUA_TTABLE);
6032
6033 lua_pushstring(L, payload);
6034 lua_setfield(L, 1, "body");
6035
6036 lua_pushboolean(L, 1);
6037 return 1;
6038}
6039
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01006040__LJMP static int hlua_log(lua_State *L)
6041{
6042 int level;
6043 const char *msg;
6044
6045 MAY_LJMP(check_args(L, 2, "log"));
6046 level = MAY_LJMP(luaL_checkinteger(L, 1));
6047 msg = MAY_LJMP(luaL_checkstring(L, 2));
6048
6049 if (level < 0 || level >= NB_LOG_LEVELS)
6050 WILL_LJMP(luaL_argerror(L, 1, "Invalid loglevel."));
6051
6052 hlua_sendlog(NULL, level, msg);
6053 return 0;
6054}
6055
6056__LJMP static int hlua_log_debug(lua_State *L)
6057{
6058 const char *msg;
6059
6060 MAY_LJMP(check_args(L, 1, "debug"));
6061 msg = MAY_LJMP(luaL_checkstring(L, 1));
6062 hlua_sendlog(NULL, LOG_DEBUG, msg);
6063 return 0;
6064}
6065
6066__LJMP static int hlua_log_info(lua_State *L)
6067{
6068 const char *msg;
6069
6070 MAY_LJMP(check_args(L, 1, "info"));
6071 msg = MAY_LJMP(luaL_checkstring(L, 1));
6072 hlua_sendlog(NULL, LOG_INFO, msg);
6073 return 0;
6074}
6075
6076__LJMP static int hlua_log_warning(lua_State *L)
6077{
6078 const char *msg;
6079
6080 MAY_LJMP(check_args(L, 1, "warning"));
6081 msg = MAY_LJMP(luaL_checkstring(L, 1));
6082 hlua_sendlog(NULL, LOG_WARNING, msg);
6083 return 0;
6084}
6085
6086__LJMP static int hlua_log_alert(lua_State *L)
6087{
6088 const char *msg;
6089
6090 MAY_LJMP(check_args(L, 1, "alert"));
6091 msg = MAY_LJMP(luaL_checkstring(L, 1));
6092 hlua_sendlog(NULL, LOG_ALERT, msg);
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01006093 return 0;
6094}
6095
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01006096__LJMP static int hlua_sleep_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01006097{
6098 int wakeup_ms = lua_tointeger(L, -1);
6099 if (now_ms < wakeup_ms)
Willy Tarreau9635e032018-10-16 17:52:55 +02006100 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_sleep_yield, wakeup_ms, 0));
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01006101 return 0;
6102}
6103
6104__LJMP static int hlua_sleep(lua_State *L)
6105{
6106 unsigned int delay;
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01006107 unsigned int wakeup_ms;
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01006108
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01006109 MAY_LJMP(check_args(L, 1, "sleep"));
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01006110
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01006111 delay = MAY_LJMP(luaL_checkinteger(L, 1)) * 1000;
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01006112 wakeup_ms = tick_add(now_ms, delay);
6113 lua_pushinteger(L, wakeup_ms);
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01006114
Willy Tarreau9635e032018-10-16 17:52:55 +02006115 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_sleep_yield, wakeup_ms, 0));
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01006116 return 0;
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01006117}
6118
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01006119__LJMP static int hlua_msleep(lua_State *L)
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01006120{
6121 unsigned int delay;
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01006122 unsigned int wakeup_ms;
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01006123
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01006124 MAY_LJMP(check_args(L, 1, "msleep"));
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01006125
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01006126 delay = MAY_LJMP(luaL_checkinteger(L, 1));
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01006127 wakeup_ms = tick_add(now_ms, delay);
6128 lua_pushinteger(L, wakeup_ms);
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01006129
Willy Tarreau9635e032018-10-16 17:52:55 +02006130 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_sleep_yield, wakeup_ms, 0));
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01006131 return 0;
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01006132}
6133
Thierry FOURNIER13416fe2015-02-17 15:01:59 +01006134/* This functionis an LUA binding. it permits to give back
6135 * the hand at the HAProxy scheduler. It is used when the
6136 * LUA processing consumes a lot of time.
6137 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01006138__LJMP static int hlua_yield_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01006139{
6140 return 0;
6141}
6142
Thierry FOURNIER13416fe2015-02-17 15:01:59 +01006143__LJMP static int hlua_yield(lua_State *L)
6144{
Willy Tarreau9635e032018-10-16 17:52:55 +02006145 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_yield_yield, TICK_ETERNITY, HLUA_CTRLYIELD));
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01006146 return 0;
Thierry FOURNIER13416fe2015-02-17 15:01:59 +01006147}
6148
Thierry FOURNIER37196f42015-02-16 19:34:56 +01006149/* This function change the nice of the currently executed
6150 * task. It is used set low or high priority at the current
6151 * task.
6152 */
Willy Tarreau59551662015-03-10 14:23:13 +01006153__LJMP static int hlua_set_nice(lua_State *L)
Thierry FOURNIER37196f42015-02-16 19:34:56 +01006154{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01006155 struct hlua *hlua;
6156 int nice;
Thierry FOURNIER37196f42015-02-16 19:34:56 +01006157
Willy Tarreau80f5fae2015-02-27 16:38:20 +01006158 MAY_LJMP(check_args(L, 1, "set_nice"));
6159 hlua = hlua_gethlua(L);
6160 nice = MAY_LJMP(luaL_checkinteger(L, 1));
Thierry FOURNIER37196f42015-02-16 19:34:56 +01006161
6162 /* If he task is not set, I'm in a start mode. */
6163 if (!hlua || !hlua->task)
6164 return 0;
6165
6166 if (nice < -1024)
6167 nice = -1024;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01006168 else if (nice > 1024)
Thierry FOURNIER37196f42015-02-16 19:34:56 +01006169 nice = 1024;
6170
6171 hlua->task->nice = nice;
6172 return 0;
6173}
6174
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08006175/* This function is used as a callback of a task. It is called by the
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006176 * HAProxy task subsystem when the task is awaked. The LUA runtime can
6177 * return an E_AGAIN signal, the emmiter of this signal must set a
6178 * signal to wake the task.
Thierry FOURNIERbabae282015-09-17 11:36:37 +02006179 *
6180 * Task wrapper are longjmp safe because the only one Lua code
6181 * executed is the safe hlua_ctx_resume();
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006182 */
Willy Tarreau60409db2019-08-21 14:14:50 +02006183struct task *hlua_process_task(struct task *task, void *context, unsigned short state)
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006184{
Olivier Houchard9f6af332018-05-25 14:04:04 +02006185 struct hlua *hlua = context;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006186 enum hlua_exec status;
6187
Christopher Faulet5bc99722018-04-25 10:34:45 +02006188 if (task->thread_mask == MAX_THREADS_MASK)
6189 task_set_affinity(task, tid_bit);
6190
Thierry FOURNIERbd413492015-03-03 16:52:26 +01006191 /* If it is the first call to the task, we must initialize the
6192 * execution timeouts.
6193 */
6194 if (!HLUA_IS_RUNNING(hlua))
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02006195 hlua->max_time = hlua_timeout_task;
Thierry FOURNIERbd413492015-03-03 16:52:26 +01006196
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006197 /* Execute the Lua code. */
6198 status = hlua_ctx_resume(hlua, 1);
6199
6200 switch (status) {
6201 /* finished or yield */
6202 case HLUA_E_OK:
6203 hlua_ctx_destroy(hlua);
Olivier Houchard3f795f72019-04-17 22:51:06 +02006204 task_destroy(task);
Tim Duesterhuscd235c62018-04-24 13:56:01 +02006205 task = NULL;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006206 break;
6207
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01006208 case HLUA_E_AGAIN: /* co process or timeout wake me later. */
Thierry FOURNIERcb146882017-12-10 17:10:57 +01006209 notification_gc(&hlua->com);
PiBa-NLfe971b32018-05-02 22:27:14 +02006210 task->expire = hlua->wake_time;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006211 break;
6212
6213 /* finished with error. */
6214 case HLUA_E_ERRMSG:
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006215 SEND_ERR(NULL, "Lua task: %s.\n", lua_tostring(hlua->T, -1));
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006216 hlua_ctx_destroy(hlua);
Olivier Houchard3f795f72019-04-17 22:51:06 +02006217 task_destroy(task);
Emeric Brun253e53e2017-10-17 18:58:40 +02006218 task = NULL;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006219 break;
6220
6221 case HLUA_E_ERR:
6222 default:
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006223 SEND_ERR(NULL, "Lua task: unknown error.\n");
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006224 hlua_ctx_destroy(hlua);
Olivier Houchard3f795f72019-04-17 22:51:06 +02006225 task_destroy(task);
Emeric Brun253e53e2017-10-17 18:58:40 +02006226 task = NULL;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006227 break;
6228 }
Emeric Brun253e53e2017-10-17 18:58:40 +02006229 return task;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006230}
6231
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01006232/* This function is an LUA binding that register LUA function to be
6233 * executed after the HAProxy configuration parsing and before the
6234 * HAProxy scheduler starts. This function expect only one LUA
6235 * argument that is a function. This function returns nothing, but
6236 * throws if an error is encountered.
6237 */
6238__LJMP static int hlua_register_init(lua_State *L)
6239{
6240 struct hlua_init_function *init;
6241 int ref;
6242
6243 MAY_LJMP(check_args(L, 1, "register_init"));
6244
6245 ref = MAY_LJMP(hlua_checkfunction(L, 1));
6246
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02006247 init = calloc(1, sizeof(*init));
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01006248 if (!init)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01006249 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01006250
6251 init->function_ref = ref;
6252 LIST_ADDQ(&hlua_init_functions, &init->l);
6253 return 0;
6254}
6255
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006256/* This functio is an LUA binding. It permits to register a task
6257 * executed in parallel of the main HAroxy activity. The task is
6258 * created and it is set in the HAProxy scheduler. It can be called
6259 * from the "init" section, "post init" or during the runtime.
6260 *
6261 * Lua prototype:
6262 *
6263 * <none> core.register_task(<function>)
6264 */
6265static int hlua_register_task(lua_State *L)
6266{
6267 struct hlua *hlua;
6268 struct task *task;
6269 int ref;
6270
6271 MAY_LJMP(check_args(L, 1, "register_task"));
6272
6273 ref = MAY_LJMP(hlua_checkfunction(L, 1));
6274
Willy Tarreaubafbe012017-11-24 17:34:44 +01006275 hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006276 if (!hlua)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01006277 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006278
Emeric Brunc60def82017-09-27 14:59:38 +02006279 task = task_new(MAX_THREADS_MASK);
Willy Tarreaue09101e2018-10-16 17:37:12 +02006280 if (!task)
6281 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
6282
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006283 task->context = hlua;
6284 task->process = hlua_process_task;
6285
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01006286 if (!hlua_ctx_init(hlua, task, 1))
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01006287 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIER24f33532015-01-23 12:13:00 +01006288
6289 /* Restore the function in the stack. */
6290 lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, ref);
6291 hlua->nargs = 0;
6292
6293 /* Schedule task. */
6294 task_schedule(task, now_ms);
6295
6296 return 0;
6297}
6298
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006299/* Wrapper called by HAProxy to execute an LUA converter. This wrapper
6300 * doesn't allow "yield" functions because the HAProxy engine cannot
6301 * resume converters.
6302 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02006303static int hlua_sample_conv_wrapper(const struct arg *arg_p, struct sample *smp, void *private)
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006304{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02006305 struct hlua_function *fcn = private;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02006306 struct stream *stream = smp->strm;
Thierry Fournierfd107a22016-02-19 19:57:23 +01006307 const char *error;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006308
Willy Tarreaube508f12016-03-10 11:47:01 +01006309 if (!stream)
6310 return 0;
6311
Willy Tarreau87b09662015-04-03 00:22:06 +02006312 /* In the execution wrappers linked with a stream, the
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01006313 * Lua context can be not initialized. This behavior
6314 * permits to save performances because a systematic
6315 * Lua initialization cause 5% performances loss.
6316 */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006317 if (!stream->hlua) {
Willy Tarreaubafbe012017-11-24 17:34:44 +01006318 stream->hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006319 if (!stream->hlua) {
6320 SEND_ERR(stream->be, "Lua converter '%s': can't initialize Lua context.\n", fcn->name);
6321 return 0;
6322 }
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01006323 if (!hlua_ctx_init(stream->hlua, stream->task, 0)) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006324 SEND_ERR(stream->be, "Lua converter '%s': can't initialize Lua context.\n", fcn->name);
6325 return 0;
6326 }
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01006327 }
6328
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006329 /* If it is the first run, initialize the data for the call. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006330 if (!HLUA_IS_RUNNING(stream->hlua)) {
Thierry FOURNIERbabae282015-09-17 11:36:37 +02006331
6332 /* The following Lua calls can fail. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006333 if (!SET_SAFE_LJMP(stream->hlua->T)) {
6334 if (lua_type(stream->hlua->T, -1) == LUA_TSTRING)
6335 error = lua_tostring(stream->hlua->T, -1);
Thierry Fournierfd107a22016-02-19 19:57:23 +01006336 else
6337 error = "critical error";
6338 SEND_ERR(stream->be, "Lua converter '%s': %s.\n", fcn->name, error);
Thierry FOURNIERbabae282015-09-17 11:36:37 +02006339 return 0;
6340 }
6341
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006342 /* Check stack available size. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006343 if (!lua_checkstack(stream->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006344 SEND_ERR(stream->be, "Lua converter '%s': full stack.\n", fcn->name);
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006345 RESET_SAFE_LJMP(stream->hlua->T);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006346 return 0;
6347 }
6348
6349 /* Restore the function in the stack. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006350 lua_rawgeti(stream->hlua->T, LUA_REGISTRYINDEX, fcn->function_ref);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006351
6352 /* convert input sample and pust-it in the stack. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006353 if (!lua_checkstack(stream->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006354 SEND_ERR(stream->be, "Lua converter '%s': full stack.\n", fcn->name);
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006355 RESET_SAFE_LJMP(stream->hlua->T);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006356 return 0;
6357 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006358 hlua_smp2lua(stream->hlua->T, smp);
6359 stream->hlua->nargs = 1;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006360
6361 /* push keywords in the stack. */
6362 if (arg_p) {
6363 for (; arg_p->type != ARGT_STOP; arg_p++) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006364 if (!lua_checkstack(stream->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006365 SEND_ERR(stream->be, "Lua converter '%s': full stack.\n", fcn->name);
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006366 RESET_SAFE_LJMP(stream->hlua->T);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006367 return 0;
6368 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006369 hlua_arg2lua(stream->hlua->T, arg_p);
6370 stream->hlua->nargs++;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006371 }
6372 }
6373
Thierry FOURNIERbd413492015-03-03 16:52:26 +01006374 /* We must initialize the execution timeouts. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006375 stream->hlua->max_time = hlua_timeout_session;
Thierry FOURNIERbd413492015-03-03 16:52:26 +01006376
Thierry FOURNIERbabae282015-09-17 11:36:37 +02006377 /* At this point the execution is safe. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006378 RESET_SAFE_LJMP(stream->hlua->T);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006379 }
6380
6381 /* Execute the function. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006382 switch (hlua_ctx_resume(stream->hlua, 0)) {
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006383 /* finished. */
6384 case HLUA_E_OK:
Thierry FOURNIERfd80df12017-05-12 16:32:20 +02006385 /* If the stack is empty, the function fails. */
6386 if (lua_gettop(stream->hlua->T) <= 0)
6387 return 0;
6388
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006389 /* Convert the returned value in sample. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006390 hlua_lua2smp(stream->hlua->T, -1, smp);
6391 lua_pop(stream->hlua->T, 1);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006392 return 1;
6393
6394 /* yield. */
6395 case HLUA_E_AGAIN:
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006396 SEND_ERR(stream->be, "Lua converter '%s': cannot use yielded functions.\n", fcn->name);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006397 return 0;
6398
6399 /* finished with error. */
6400 case HLUA_E_ERRMSG:
6401 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006402 SEND_ERR(stream->be, "Lua converter '%s': %s.\n",
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006403 fcn->name, lua_tostring(stream->hlua->T, -1));
6404 lua_pop(stream->hlua->T, 1);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006405 return 0;
6406
Thierry Fournierd5b073c2018-05-21 19:42:47 +02006407 case HLUA_E_ETMOUT:
6408 SEND_ERR(stream->be, "Lua converter '%s': execution timeout.\n", fcn->name);
6409 return 0;
6410
6411 case HLUA_E_NOMEM:
6412 SEND_ERR(stream->be, "Lua converter '%s': out of memory error.\n", fcn->name);
6413 return 0;
6414
6415 case HLUA_E_YIELD:
6416 SEND_ERR(stream->be, "Lua converter '%s': yield functions like core.tcp() or core.sleep() are not allowed.\n", fcn->name);
6417 return 0;
6418
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006419 case HLUA_E_ERR:
6420 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006421 SEND_ERR(stream->be, "Lua converter '%s' returns an unknown error.\n", fcn->name);
Tim Duesterhus588b3142020-05-29 14:35:51 +02006422 /* fall through */
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006423
6424 default:
6425 return 0;
6426 }
6427}
6428
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006429/* Wrapper called by HAProxy to execute a sample-fetch. this wrapper
6430 * doesn't allow "yield" functions because the HAProxy engine cannot
Willy Tarreaube508f12016-03-10 11:47:01 +01006431 * resume sample-fetches. This function will be called by the sample
6432 * fetch engine to call lua-based fetch operations.
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006433 */
Thierry FOURNIER0786d052015-05-11 15:42:45 +02006434static int hlua_sample_fetch_wrapper(const struct arg *arg_p, struct sample *smp,
6435 const char *kw, void *private)
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006436{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02006437 struct hlua_function *fcn = private;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02006438 struct stream *stream = smp->strm;
Thierry Fournierfd107a22016-02-19 19:57:23 +01006439 const char *error;
Christopher Fauletbfab2dd2019-07-26 15:09:53 +02006440 unsigned int hflags = HLUA_TXN_NOTERM;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006441
Willy Tarreaube508f12016-03-10 11:47:01 +01006442 if (!stream)
6443 return 0;
Christopher Fauletafd8f102018-11-08 11:34:21 +01006444
Willy Tarreau87b09662015-04-03 00:22:06 +02006445 /* In the execution wrappers linked with a stream, the
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01006446 * Lua context can be not initialized. This behavior
6447 * permits to save performances because a systematic
6448 * Lua initialization cause 5% performances loss.
6449 */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006450 if (!stream->hlua) {
Willy Tarreaubafbe012017-11-24 17:34:44 +01006451 stream->hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006452 if (!stream->hlua) {
6453 SEND_ERR(stream->be, "Lua sample-fetch '%s': can't initialize Lua context.\n", fcn->name);
6454 return 0;
6455 }
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01006456 if (!hlua_ctx_init(stream->hlua, stream->task, 0)) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006457 SEND_ERR(stream->be, "Lua sample-fetch '%s': can't initialize Lua context.\n", fcn->name);
6458 return 0;
6459 }
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01006460 }
6461
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006462 /* If it is the first run, initialize the data for the call. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006463 if (!HLUA_IS_RUNNING(stream->hlua)) {
Thierry FOURNIERbabae282015-09-17 11:36:37 +02006464
6465 /* The following Lua calls can fail. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006466 if (!SET_SAFE_LJMP(stream->hlua->T)) {
6467 if (lua_type(stream->hlua->T, -1) == LUA_TSTRING)
6468 error = lua_tostring(stream->hlua->T, -1);
Thierry Fournierfd107a22016-02-19 19:57:23 +01006469 else
6470 error = "critical error";
6471 SEND_ERR(smp->px, "Lua sample-fetch '%s': %s.\n", fcn->name, error);
Thierry FOURNIERbabae282015-09-17 11:36:37 +02006472 return 0;
6473 }
6474
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006475 /* Check stack available size. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006476 if (!lua_checkstack(stream->hlua->T, 2)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006477 SEND_ERR(smp->px, "Lua sample-fetch '%s': full stack.\n", fcn->name);
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006478 RESET_SAFE_LJMP(stream->hlua->T);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006479 return 0;
6480 }
6481
6482 /* Restore the function in the stack. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006483 lua_rawgeti(stream->hlua->T, LUA_REGISTRYINDEX, fcn->function_ref);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006484
6485 /* push arguments in the stack. */
Christopher Fauletbfab2dd2019-07-26 15:09:53 +02006486 if (!hlua_txn_new(stream->hlua->T, stream, smp->px, smp->opt & SMP_OPT_DIR, hflags)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006487 SEND_ERR(smp->px, "Lua sample-fetch '%s': full stack.\n", fcn->name);
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006488 RESET_SAFE_LJMP(stream->hlua->T);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006489 return 0;
6490 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006491 stream->hlua->nargs = 1;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006492
6493 /* push keywords in the stack. */
6494 for (; arg_p && arg_p->type != ARGT_STOP; arg_p++) {
6495 /* Check stack available size. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006496 if (!lua_checkstack(stream->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006497 SEND_ERR(smp->px, "Lua sample-fetch '%s': full stack.\n", fcn->name);
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006498 RESET_SAFE_LJMP(stream->hlua->T);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006499 return 0;
6500 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006501 hlua_arg2lua(stream->hlua->T, arg_p);
6502 stream->hlua->nargs++;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006503 }
6504
Thierry FOURNIERbd413492015-03-03 16:52:26 +01006505 /* We must initialize the execution timeouts. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006506 stream->hlua->max_time = hlua_timeout_session;
Thierry FOURNIERbd413492015-03-03 16:52:26 +01006507
Thierry FOURNIERbabae282015-09-17 11:36:37 +02006508 /* At this point the execution is safe. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006509 RESET_SAFE_LJMP(stream->hlua->T);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006510 }
6511
6512 /* Execute the function. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006513 switch (hlua_ctx_resume(stream->hlua, 0)) {
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006514 /* finished. */
6515 case HLUA_E_OK:
Thierry FOURNIERfd80df12017-05-12 16:32:20 +02006516 /* If the stack is empty, the function fails. */
6517 if (lua_gettop(stream->hlua->T) <= 0)
6518 return 0;
6519
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006520 /* Convert the returned value in sample. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006521 hlua_lua2smp(stream->hlua->T, -1, smp);
6522 lua_pop(stream->hlua->T, 1);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006523
6524 /* Set the end of execution flag. */
6525 smp->flags &= ~SMP_F_MAY_CHANGE;
6526 return 1;
6527
6528 /* yield. */
6529 case HLUA_E_AGAIN:
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006530 SEND_ERR(smp->px, "Lua sample-fetch '%s': cannot use yielded functions.\n", fcn->name);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006531 return 0;
6532
6533 /* finished with error. */
6534 case HLUA_E_ERRMSG:
6535 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006536 SEND_ERR(smp->px, "Lua sample-fetch '%s': %s.\n",
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006537 fcn->name, lua_tostring(stream->hlua->T, -1));
6538 lua_pop(stream->hlua->T, 1);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006539 return 0;
6540
Thierry Fournierd5b073c2018-05-21 19:42:47 +02006541 case HLUA_E_ETMOUT:
Thierry Fournierd5b073c2018-05-21 19:42:47 +02006542 SEND_ERR(smp->px, "Lua sample-fetch '%s': execution timeout.\n", fcn->name);
6543 return 0;
6544
6545 case HLUA_E_NOMEM:
Thierry Fournierd5b073c2018-05-21 19:42:47 +02006546 SEND_ERR(smp->px, "Lua sample-fetch '%s': out of memory error.\n", fcn->name);
6547 return 0;
6548
6549 case HLUA_E_YIELD:
Thierry Fournierd5b073c2018-05-21 19:42:47 +02006550 SEND_ERR(smp->px, "Lua sample-fetch '%s': yield not allowed.\n", fcn->name);
6551 return 0;
6552
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006553 case HLUA_E_ERR:
6554 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006555 SEND_ERR(smp->px, "Lua sample-fetch '%s' returns an unknown error.\n", fcn->name);
Tim Duesterhus588b3142020-05-29 14:35:51 +02006556 /* fall through */
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006557
6558 default:
6559 return 0;
6560 }
6561}
6562
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006563/* This function is an LUA binding used for registering
6564 * "sample-conv" functions. It expects a converter name used
6565 * in the haproxy configuration file, and an LUA function.
6566 */
6567__LJMP static int hlua_register_converters(lua_State *L)
6568{
6569 struct sample_conv_kw_list *sck;
6570 const char *name;
6571 int ref;
6572 int len;
6573 struct hlua_function *fcn;
6574
6575 MAY_LJMP(check_args(L, 2, "register_converters"));
6576
6577 /* First argument : converter name. */
6578 name = MAY_LJMP(luaL_checkstring(L, 1));
6579
6580 /* Second argument : lua function. */
6581 ref = MAY_LJMP(hlua_checkfunction(L, 2));
6582
6583 /* Allocate and fill the sample fetch keyword struct. */
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02006584 sck = calloc(1, sizeof(*sck) + sizeof(struct sample_conv) * 2);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006585 if (!sck)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01006586 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02006587 fcn = calloc(1, sizeof(*fcn));
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006588 if (!fcn)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01006589 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006590
6591 /* Fill fcn. */
6592 fcn->name = strdup(name);
6593 if (!fcn->name)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01006594 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006595 fcn->function_ref = ref;
6596
6597 /* List head */
6598 sck->list.n = sck->list.p = NULL;
6599
6600 /* converter keyword. */
6601 len = strlen("lua.") + strlen(name) + 1;
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02006602 sck->kw[0].kw = calloc(1, len);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006603 if (!sck->kw[0].kw)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01006604 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006605
6606 snprintf((char *)sck->kw[0].kw, len, "lua.%s", name);
6607 sck->kw[0].process = hlua_sample_conv_wrapper;
David Carlier0c437f42016-04-27 16:21:56 +01006608 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 +01006609 sck->kw[0].val_args = NULL;
6610 sck->kw[0].in_type = SMP_T_STR;
6611 sck->kw[0].out_type = SMP_T_STR;
6612 sck->kw[0].private = fcn;
6613
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01006614 /* Register this new converter */
6615 sample_register_convs(sck);
6616
6617 return 0;
6618}
6619
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08006620/* This function is an LUA binding used for registering
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006621 * "sample-fetch" functions. It expects a converter name used
6622 * in the haproxy configuration file, and an LUA function.
6623 */
6624__LJMP static int hlua_register_fetches(lua_State *L)
6625{
6626 const char *name;
6627 int ref;
6628 int len;
6629 struct sample_fetch_kw_list *sfk;
6630 struct hlua_function *fcn;
6631
6632 MAY_LJMP(check_args(L, 2, "register_fetches"));
6633
6634 /* First argument : sample-fetch name. */
6635 name = MAY_LJMP(luaL_checkstring(L, 1));
6636
6637 /* Second argument : lua function. */
6638 ref = MAY_LJMP(hlua_checkfunction(L, 2));
6639
6640 /* Allocate and fill the sample fetch keyword struct. */
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02006641 sfk = calloc(1, sizeof(*sfk) + sizeof(struct sample_fetch) * 2);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006642 if (!sfk)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01006643 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02006644 fcn = calloc(1, sizeof(*fcn));
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006645 if (!fcn)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01006646 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006647
6648 /* Fill fcn. */
6649 fcn->name = strdup(name);
6650 if (!fcn->name)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01006651 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006652 fcn->function_ref = ref;
6653
6654 /* List head */
6655 sfk->list.n = sfk->list.p = NULL;
6656
6657 /* sample-fetch keyword. */
6658 len = strlen("lua.") + strlen(name) + 1;
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02006659 sfk->kw[0].kw = calloc(1, len);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006660 if (!sfk->kw[0].kw)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01006661 return luaL_error(L, "Lua out of memory error.");
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006662
6663 snprintf((char *)sfk->kw[0].kw, len, "lua.%s", name);
6664 sfk->kw[0].process = hlua_sample_fetch_wrapper;
David Carlier0c437f42016-04-27 16:21:56 +01006665 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 +01006666 sfk->kw[0].val_args = NULL;
6667 sfk->kw[0].out_type = SMP_T_STR;
6668 sfk->kw[0].use = SMP_USE_HTTP_ANY;
6669 sfk->kw[0].val = 0;
6670 sfk->kw[0].private = fcn;
6671
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006672 /* Register this new fetch. */
6673 sample_register_fetches(sfk);
6674
6675 return 0;
6676}
6677
Christopher Faulet501465d2020-02-26 14:54:16 +01006678/* This function is a lua binding to set the wake_time.
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01006679 */
Christopher Faulet501465d2020-02-26 14:54:16 +01006680__LJMP static int hlua_set_wake_time(lua_State *L)
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01006681{
6682 struct hlua *hlua = hlua_gethlua(L);
6683 unsigned int delay;
6684 unsigned int wakeup_ms;
6685
6686 MAY_LJMP(check_args(L, 1, "wake_time"));
6687
6688 delay = MAY_LJMP(luaL_checkinteger(L, 1));
6689 wakeup_ms = tick_add(now_ms, delay);
6690 hlua->wake_time = wakeup_ms;
6691 return 0;
6692}
6693
Christopher Faulet7716cdf2020-01-29 11:53:30 +01006694/* This function is a wrapper to execute each LUA function declared as an action
6695 * wrapper during the initialisation period. This function may return any
6696 * ACT_RET_* value. On error ACT_RET_CONT is returned and the action is
6697 * ignored. If the lua action yields, ACT_RET_YIELD is returned. On success, the
6698 * return value is the first element on the stack.
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006699 */
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02006700static enum act_return hlua_action(struct act_rule *rule, struct proxy *px,
Willy Tarreau658b85b2015-09-27 10:00:49 +02006701 struct session *sess, struct stream *s, int flags)
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006702{
6703 char **arg;
Christopher Fauletbfab2dd2019-07-26 15:09:53 +02006704 unsigned int hflags = 0;
Christopher Faulet7716cdf2020-01-29 11:53:30 +01006705 int dir, act_ret = ACT_RET_CONT;
Thierry Fournierfd107a22016-02-19 19:57:23 +01006706 const char *error;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02006707
6708 switch (rule->from) {
Christopher Fauletd8f0e072020-02-25 09:45:51 +01006709 case ACT_F_TCP_REQ_CNT: dir = SMP_OPT_DIR_REQ; break;
6710 case ACT_F_TCP_RES_CNT: dir = SMP_OPT_DIR_RES; break;
6711 case ACT_F_HTTP_REQ: dir = SMP_OPT_DIR_REQ; break;
6712 case ACT_F_HTTP_RES: dir = SMP_OPT_DIR_RES; break;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02006713 default:
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006714 SEND_ERR(px, "Lua: internal error while execute action.\n");
Christopher Faulet7716cdf2020-01-29 11:53:30 +01006715 goto end;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02006716 }
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006717
Willy Tarreau87b09662015-04-03 00:22:06 +02006718 /* In the execution wrappers linked with a stream, the
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01006719 * Lua context can be not initialized. This behavior
6720 * permits to save performances because a systematic
6721 * Lua initialization cause 5% performances loss.
6722 */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006723 if (!s->hlua) {
Willy Tarreaubafbe012017-11-24 17:34:44 +01006724 s->hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006725 if (!s->hlua) {
6726 SEND_ERR(px, "Lua action '%s': can't initialize Lua context.\n",
6727 rule->arg.hlua_rule->fcn.name);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01006728 goto end;
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006729 }
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01006730 if (!hlua_ctx_init(s->hlua, s->task, 0)) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006731 SEND_ERR(px, "Lua action '%s': can't initialize Lua context.\n",
6732 rule->arg.hlua_rule->fcn.name);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01006733 goto end;
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006734 }
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01006735 }
6736
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006737 /* If it is the first run, initialize the data for the call. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006738 if (!HLUA_IS_RUNNING(s->hlua)) {
Thierry FOURNIERbabae282015-09-17 11:36:37 +02006739
6740 /* The following Lua calls can fail. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006741 if (!SET_SAFE_LJMP(s->hlua->T)) {
6742 if (lua_type(s->hlua->T, -1) == LUA_TSTRING)
6743 error = lua_tostring(s->hlua->T, -1);
Thierry Fournierfd107a22016-02-19 19:57:23 +01006744 else
6745 error = "critical error";
6746 SEND_ERR(px, "Lua function '%s': %s.\n",
6747 rule->arg.hlua_rule->fcn.name, error);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01006748 goto end;
Thierry FOURNIERbabae282015-09-17 11:36:37 +02006749 }
6750
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006751 /* Check stack available size. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006752 if (!lua_checkstack(s->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006753 SEND_ERR(px, "Lua function '%s': full stack.\n",
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02006754 rule->arg.hlua_rule->fcn.name);
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006755 RESET_SAFE_LJMP(s->hlua->T);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01006756 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006757 }
6758
6759 /* Restore the function in the stack. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006760 lua_rawgeti(s->hlua->T, LUA_REGISTRYINDEX, rule->arg.hlua_rule->fcn.function_ref);
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006761
Willy Tarreau87b09662015-04-03 00:22:06 +02006762 /* Create and and push object stream in the stack. */
Christopher Fauletbfab2dd2019-07-26 15:09:53 +02006763 if (!hlua_txn_new(s->hlua->T, s, px, dir, hflags)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006764 SEND_ERR(px, "Lua function '%s': full stack.\n",
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02006765 rule->arg.hlua_rule->fcn.name);
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006766 RESET_SAFE_LJMP(s->hlua->T);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01006767 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006768 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006769 s->hlua->nargs = 1;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006770
6771 /* push keywords in the stack. */
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02006772 for (arg = rule->arg.hlua_rule->args; arg && *arg; arg++) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006773 if (!lua_checkstack(s->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006774 SEND_ERR(px, "Lua function '%s': full stack.\n",
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02006775 rule->arg.hlua_rule->fcn.name);
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006776 RESET_SAFE_LJMP(s->hlua->T);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01006777 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006778 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006779 lua_pushstring(s->hlua->T, *arg);
6780 s->hlua->nargs++;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006781 }
6782
Thierry FOURNIERbabae282015-09-17 11:36:37 +02006783 /* Now the execution is safe. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006784 RESET_SAFE_LJMP(s->hlua->T);
Thierry FOURNIERbabae282015-09-17 11:36:37 +02006785
Thierry FOURNIERbd413492015-03-03 16:52:26 +01006786 /* We must initialize the execution timeouts. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006787 s->hlua->max_time = hlua_timeout_session;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006788 }
6789
6790 /* Execute the function. */
Christopher Faulet105ba6c2019-12-18 14:41:51 +01006791 switch (hlua_ctx_resume(s->hlua, !(flags & ACT_OPT_FINAL))) {
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006792 /* finished. */
6793 case HLUA_E_OK:
Christopher Faulet7716cdf2020-01-29 11:53:30 +01006794 /* Catch the return value */
6795 if (lua_gettop(s->hlua->T) > 0)
6796 act_ret = lua_tointeger(s->hlua->T, -1);
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006797
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01006798 /* Set timeout in the required channel. */
Christopher Faulet498c4832020-07-28 11:59:58 +02006799 if (act_ret == ACT_RET_YIELD) {
6800 if (flags & ACT_OPT_FINAL)
6801 goto err_yield;
6802
Christopher Faulet8f587ea2020-07-28 12:01:55 +02006803 if (dir == SMP_OPT_DIR_REQ)
6804 s->req.analyse_exp = tick_first((tick_is_expired(s->req.analyse_exp, now_ms) ? 0 : s->req.analyse_exp),
6805 s->hlua->wake_time);
6806 else
6807 s->res.analyse_exp = tick_first((tick_is_expired(s->res.analyse_exp, now_ms) ? 0 : s->res.analyse_exp),
6808 s->hlua->wake_time);
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01006809 }
6810 goto end;
6811
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006812 /* yield. */
6813 case HLUA_E_AGAIN:
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01006814 /* Set timeout in the required channel. */
Christopher Faulet8f587ea2020-07-28 12:01:55 +02006815 if (dir == SMP_OPT_DIR_REQ)
6816 s->req.analyse_exp = tick_first((tick_is_expired(s->req.analyse_exp, now_ms) ? 0 : s->req.analyse_exp),
6817 s->hlua->wake_time);
6818 else
6819 s->res.analyse_exp = tick_first((tick_is_expired(s->res.analyse_exp, now_ms) ? 0 : s->res.analyse_exp),
6820 s->hlua->wake_time);
6821
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006822 /* Some actions can be wake up when a "write" event
6823 * is detected on a response channel. This is useful
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08006824 * only for actions targeted on the requests.
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006825 */
Christopher Faulet51fa3582019-07-26 14:54:52 +02006826 if (HLUA_IS_WAKERESWR(s->hlua))
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01006827 s->res.flags |= CF_WAKE_WRITE;
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006828 if (HLUA_IS_WAKEREQWR(s->hlua))
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01006829 s->req.flags |= CF_WAKE_WRITE;
Christopher Faulet7716cdf2020-01-29 11:53:30 +01006830 act_ret = ACT_RET_YIELD;
6831 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006832
6833 /* finished with error. */
6834 case HLUA_E_ERRMSG:
6835 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006836 SEND_ERR(px, "Lua function '%s': %s.\n",
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006837 rule->arg.hlua_rule->fcn.name, lua_tostring(s->hlua->T, -1));
6838 lua_pop(s->hlua->T, 1);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01006839 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006840
Thierry Fournierd5b073c2018-05-21 19:42:47 +02006841 case HLUA_E_ETMOUT:
Thierry Fournierd5b073c2018-05-21 19:42:47 +02006842 SEND_ERR(px, "Lua function '%s': execution timeout.\n", rule->arg.hlua_rule->fcn.name);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01006843 goto end;
Thierry Fournierd5b073c2018-05-21 19:42:47 +02006844
6845 case HLUA_E_NOMEM:
Thierry Fournierd5b073c2018-05-21 19:42:47 +02006846 SEND_ERR(px, "Lua function '%s': out of memory error.\n", rule->arg.hlua_rule->fcn.name);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01006847 goto end;
Thierry Fournierd5b073c2018-05-21 19:42:47 +02006848
6849 case HLUA_E_YIELD:
Christopher Faulet498c4832020-07-28 11:59:58 +02006850 err_yield:
6851 act_ret = ACT_RET_CONT;
Thierry Fournierd5b073c2018-05-21 19:42:47 +02006852 SEND_ERR(px, "Lua function '%s': aborting Lua processing on expired timeout.\n",
6853 rule->arg.hlua_rule->fcn.name);
Christopher Faulet7716cdf2020-01-29 11:53:30 +01006854 goto end;
Thierry Fournierd5b073c2018-05-21 19:42:47 +02006855
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006856 case HLUA_E_ERR:
6857 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006858 SEND_ERR(px, "Lua function '%s' return an unknown error.\n",
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02006859 rule->arg.hlua_rule->fcn.name);
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006860
6861 default:
Christopher Faulet7716cdf2020-01-29 11:53:30 +01006862 goto end;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006863 }
Christopher Faulet7716cdf2020-01-29 11:53:30 +01006864
6865 end:
Christopher Faulet2361fd92020-07-30 10:40:58 +02006866 if (act_ret != ACT_RET_YIELD && s->hlua)
Christopher Faulet8f587ea2020-07-28 12:01:55 +02006867 s->hlua->wake_time = TICK_ETERNITY;
Christopher Faulet7716cdf2020-01-29 11:53:30 +01006868 return act_ret;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006869}
6870
Olivier Houchard9f6af332018-05-25 14:04:04 +02006871struct task *hlua_applet_wakeup(struct task *t, void *context, unsigned short state)
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006872{
Olivier Houchard9f6af332018-05-25 14:04:04 +02006873 struct appctx *ctx = context;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006874
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006875 appctx_wakeup(ctx);
Willy Tarreaud9587412017-08-23 16:07:33 +02006876 t->expire = TICK_ETERNITY;
Willy Tarreaud1aa41f2017-07-21 16:41:56 +02006877 return t;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006878}
6879
6880static int hlua_applet_tcp_init(struct appctx *ctx, struct proxy *px, struct stream *strm)
6881{
6882 struct stream_interface *si = ctx->owner;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01006883 struct hlua *hlua;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006884 struct task *task;
6885 char **arg;
Thierry Fournierfd107a22016-02-19 19:57:23 +01006886 const char *error;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006887
Willy Tarreaubafbe012017-11-24 17:34:44 +01006888 hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01006889 if (!hlua) {
6890 SEND_ERR(px, "Lua applet tcp '%s': out of memory.\n",
6891 ctx->rule->arg.hlua_rule->fcn.name);
6892 return 0;
6893 }
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006894 HLUA_INIT(hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01006895 ctx->ctx.hlua_apptcp.hlua = hlua;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006896 ctx->ctx.hlua_apptcp.flags = 0;
6897
6898 /* Create task used by signal to wakeup applets. */
Willy Tarreau5f4a47b2017-10-31 15:59:32 +01006899 task = task_new(tid_bit);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006900 if (!task) {
6901 SEND_ERR(px, "Lua applet tcp '%s': out of memory.\n",
6902 ctx->rule->arg.hlua_rule->fcn.name);
6903 return 0;
6904 }
6905 task->nice = 0;
6906 task->context = ctx;
6907 task->process = hlua_applet_wakeup;
6908 ctx->ctx.hlua_apptcp.task = task;
6909
6910 /* In the execution wrappers linked with a stream, the
6911 * Lua context can be not initialized. This behavior
6912 * permits to save performances because a systematic
6913 * Lua initialization cause 5% performances loss.
6914 */
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01006915 if (!hlua_ctx_init(hlua, task, 0)) {
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006916 SEND_ERR(px, "Lua applet tcp '%s': can't initialize Lua context.\n",
6917 ctx->rule->arg.hlua_rule->fcn.name);
6918 return 0;
6919 }
6920
6921 /* Set timeout according with the applet configuration. */
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02006922 hlua->max_time = ctx->applet->timeout;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006923
6924 /* The following Lua calls can fail. */
6925 if (!SET_SAFE_LJMP(hlua->T)) {
Thierry Fournierfd107a22016-02-19 19:57:23 +01006926 if (lua_type(hlua->T, -1) == LUA_TSTRING)
6927 error = lua_tostring(hlua->T, -1);
6928 else
6929 error = "critical error";
6930 SEND_ERR(px, "Lua applet tcp '%s': %s.\n",
6931 ctx->rule->arg.hlua_rule->fcn.name, error);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006932 return 0;
6933 }
6934
6935 /* Check stack available size. */
6936 if (!lua_checkstack(hlua->T, 1)) {
6937 SEND_ERR(px, "Lua applet tcp '%s': full stack.\n",
6938 ctx->rule->arg.hlua_rule->fcn.name);
6939 RESET_SAFE_LJMP(hlua->T);
6940 return 0;
6941 }
6942
6943 /* Restore the function in the stack. */
6944 lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, ctx->rule->arg.hlua_rule->fcn.function_ref);
6945
6946 /* Create and and push object stream in the stack. */
6947 if (!hlua_applet_tcp_new(hlua->T, ctx)) {
6948 SEND_ERR(px, "Lua applet tcp '%s': full stack.\n",
6949 ctx->rule->arg.hlua_rule->fcn.name);
6950 RESET_SAFE_LJMP(hlua->T);
6951 return 0;
6952 }
6953 hlua->nargs = 1;
6954
6955 /* push keywords in the stack. */
6956 for (arg = ctx->rule->arg.hlua_rule->args; arg && *arg; arg++) {
6957 if (!lua_checkstack(hlua->T, 1)) {
6958 SEND_ERR(px, "Lua applet tcp '%s': full stack.\n",
6959 ctx->rule->arg.hlua_rule->fcn.name);
6960 RESET_SAFE_LJMP(hlua->T);
6961 return 0;
6962 }
6963 lua_pushstring(hlua->T, *arg);
6964 hlua->nargs++;
6965 }
6966
6967 RESET_SAFE_LJMP(hlua->T);
6968
6969 /* Wakeup the applet ASAP. */
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01006970 si_cant_get(si);
Willy Tarreau3367d412018-11-15 10:57:41 +01006971 si_rx_endp_more(si);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006972
6973 return 1;
6974}
6975
Willy Tarreau60409db2019-08-21 14:14:50 +02006976void hlua_applet_tcp_fct(struct appctx *ctx)
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006977{
6978 struct stream_interface *si = ctx->owner;
6979 struct stream *strm = si_strm(si);
6980 struct channel *res = si_ic(si);
6981 struct act_rule *rule = ctx->rule;
6982 struct proxy *px = strm->be;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01006983 struct hlua *hlua = ctx->ctx.hlua_apptcp.hlua;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006984
6985 /* The applet execution is already done. */
Olivier Houchard594c8c52018-08-28 14:41:31 +02006986 if (ctx->ctx.hlua_apptcp.flags & APPLET_DONE) {
6987 /* eat the whole request */
6988 co_skip(si_oc(si), co_data(si_oc(si)));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006989 return;
Olivier Houchard594c8c52018-08-28 14:41:31 +02006990 }
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006991
6992 /* If the stream is disconnect or closed, ldo nothing. */
6993 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
6994 return;
6995
6996 /* Execute the function. */
6997 switch (hlua_ctx_resume(hlua, 1)) {
6998 /* finished. */
6999 case HLUA_E_OK:
7000 ctx->ctx.hlua_apptcp.flags |= APPLET_DONE;
7001
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007002 /* eat the whole request */
Willy Tarreaua79021a2018-06-15 18:07:57 +02007003 co_skip(si_oc(si), co_data(si_oc(si)));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007004 res->flags |= CF_READ_NULL;
7005 si_shutr(si);
7006 return;
7007
7008 /* yield. */
7009 case HLUA_E_AGAIN:
Thierry Fournier0164f202016-02-20 17:47:43 +01007010 if (hlua->wake_time != TICK_ETERNITY)
7011 task_schedule(ctx->ctx.hlua_apptcp.task, hlua->wake_time);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007012 return;
7013
7014 /* finished with error. */
7015 case HLUA_E_ERRMSG:
7016 /* Display log. */
7017 SEND_ERR(px, "Lua applet tcp '%s': %s.\n",
7018 rule->arg.hlua_rule->fcn.name, lua_tostring(hlua->T, -1));
7019 lua_pop(hlua->T, 1);
7020 goto error;
7021
Thierry Fournierd5b073c2018-05-21 19:42:47 +02007022 case HLUA_E_ETMOUT:
7023 SEND_ERR(px, "Lua applet tcp '%s': execution timeout.\n",
7024 rule->arg.hlua_rule->fcn.name);
7025 goto error;
7026
7027 case HLUA_E_NOMEM:
7028 SEND_ERR(px, "Lua applet tcp '%s': out of memory error.\n",
7029 rule->arg.hlua_rule->fcn.name);
7030 goto error;
7031
7032 case HLUA_E_YIELD: /* unexpected */
7033 SEND_ERR(px, "Lua applet tcp '%s': yield not allowed.\n",
7034 rule->arg.hlua_rule->fcn.name);
7035 goto error;
7036
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007037 case HLUA_E_ERR:
7038 /* Display log. */
7039 SEND_ERR(px, "Lua applet tcp '%s' return an unknown error.\n",
7040 rule->arg.hlua_rule->fcn.name);
7041 goto error;
7042
7043 default:
7044 goto error;
7045 }
7046
7047error:
7048
7049 /* For all other cases, just close the stream. */
7050 si_shutw(si);
7051 si_shutr(si);
7052 ctx->ctx.hlua_apptcp.flags |= APPLET_DONE;
7053}
7054
7055static void hlua_applet_tcp_release(struct appctx *ctx)
7056{
Olivier Houchard3f795f72019-04-17 22:51:06 +02007057 task_destroy(ctx->ctx.hlua_apptcp.task);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007058 ctx->ctx.hlua_apptcp.task = NULL;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007059 hlua_ctx_destroy(ctx->ctx.hlua_apptcp.hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007060 ctx->ctx.hlua_apptcp.hlua = NULL;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007061}
7062
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007063/* The function returns 1 if the initialisation is complete, 0 if
7064 * an errors occurs and -1 if more data are required for initializing
7065 * the applet.
7066 */
7067static int hlua_applet_http_init(struct appctx *ctx, struct proxy *px, struct stream *strm)
7068{
7069 struct stream_interface *si = ctx->owner;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007070 struct http_txn *txn;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007071 struct hlua *hlua;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007072 char **arg;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007073 struct task *task;
Thierry Fournierfd107a22016-02-19 19:57:23 +01007074 const char *error;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007075
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007076 txn = strm->txn;
Willy Tarreaubafbe012017-11-24 17:34:44 +01007077 hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007078 if (!hlua) {
7079 SEND_ERR(px, "Lua applet http '%s': out of memory.\n",
7080 ctx->rule->arg.hlua_rule->fcn.name);
7081 return 0;
7082 }
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007083 HLUA_INIT(hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007084 ctx->ctx.hlua_apphttp.hlua = hlua;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007085 ctx->ctx.hlua_apphttp.left_bytes = -1;
7086 ctx->ctx.hlua_apphttp.flags = 0;
7087
Thierry FOURNIERd93ea2b2015-12-20 19:14:52 +01007088 if (txn->req.flags & HTTP_MSGF_VER_11)
7089 ctx->ctx.hlua_apphttp.flags |= APPLET_HTTP11;
7090
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007091 /* Create task used by signal to wakeup applets. */
Willy Tarreau5f4a47b2017-10-31 15:59:32 +01007092 task = task_new(tid_bit);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007093 if (!task) {
7094 SEND_ERR(px, "Lua applet http '%s': out of memory.\n",
7095 ctx->rule->arg.hlua_rule->fcn.name);
7096 return 0;
7097 }
7098 task->nice = 0;
7099 task->context = ctx;
7100 task->process = hlua_applet_wakeup;
7101 ctx->ctx.hlua_apphttp.task = task;
7102
7103 /* In the execution wrappers linked with a stream, the
7104 * Lua context can be not initialized. This behavior
7105 * permits to save performances because a systematic
7106 * Lua initialization cause 5% performances loss.
7107 */
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01007108 if (!hlua_ctx_init(hlua, task, 0)) {
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007109 SEND_ERR(px, "Lua applet http '%s': can't initialize Lua context.\n",
7110 ctx->rule->arg.hlua_rule->fcn.name);
7111 return 0;
7112 }
7113
7114 /* Set timeout according with the applet configuration. */
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02007115 hlua->max_time = ctx->applet->timeout;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007116
7117 /* The following Lua calls can fail. */
7118 if (!SET_SAFE_LJMP(hlua->T)) {
Thierry Fournierfd107a22016-02-19 19:57:23 +01007119 if (lua_type(hlua->T, -1) == LUA_TSTRING)
7120 error = lua_tostring(hlua->T, -1);
7121 else
7122 error = "critical error";
7123 SEND_ERR(px, "Lua applet http '%s': %s.\n",
7124 ctx->rule->arg.hlua_rule->fcn.name, error);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007125 return 0;
7126 }
7127
7128 /* Check stack available size. */
7129 if (!lua_checkstack(hlua->T, 1)) {
7130 SEND_ERR(px, "Lua applet http '%s': full stack.\n",
7131 ctx->rule->arg.hlua_rule->fcn.name);
7132 RESET_SAFE_LJMP(hlua->T);
7133 return 0;
7134 }
7135
7136 /* Restore the function in the stack. */
7137 lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, ctx->rule->arg.hlua_rule->fcn.function_ref);
7138
7139 /* Create and and push object stream in the stack. */
7140 if (!hlua_applet_http_new(hlua->T, ctx)) {
7141 SEND_ERR(px, "Lua applet http '%s': full stack.\n",
7142 ctx->rule->arg.hlua_rule->fcn.name);
7143 RESET_SAFE_LJMP(hlua->T);
7144 return 0;
7145 }
7146 hlua->nargs = 1;
7147
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007148 /* push keywords in the stack. */
7149 for (arg = ctx->rule->arg.hlua_rule->args; arg && *arg; arg++) {
7150 if (!lua_checkstack(hlua->T, 1)) {
7151 SEND_ERR(px, "Lua applet http '%s': full stack.\n",
7152 ctx->rule->arg.hlua_rule->fcn.name);
7153 RESET_SAFE_LJMP(hlua->T);
7154 return 0;
7155 }
7156 lua_pushstring(hlua->T, *arg);
7157 hlua->nargs++;
7158 }
7159
7160 RESET_SAFE_LJMP(hlua->T);
7161
7162 /* Wakeup the applet when data is ready for read. */
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01007163 si_cant_get(si);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007164
7165 return 1;
7166}
7167
Willy Tarreau60409db2019-08-21 14:14:50 +02007168void hlua_applet_http_fct(struct appctx *ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007169{
7170 struct stream_interface *si = ctx->owner;
7171 struct stream *strm = si_strm(si);
7172 struct channel *req = si_oc(si);
7173 struct channel *res = si_ic(si);
7174 struct act_rule *rule = ctx->rule;
7175 struct proxy *px = strm->be;
7176 struct hlua *hlua = ctx->ctx.hlua_apphttp.hlua;
7177 struct htx *req_htx, *res_htx;
7178
7179 res_htx = htx_from_buf(&res->buf);
7180
7181 /* If the stream is disconnect or closed, ldo nothing. */
7182 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
7183 goto out;
7184
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05007185 /* Check if the input buffer is available. */
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007186 if (!b_size(&res->buf)) {
7187 si_rx_room_blk(si);
7188 goto out;
7189 }
7190 /* check that the output is not closed */
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01007191 if (res->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_SHUTR))
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007192 ctx->ctx.hlua_apphttp.flags |= APPLET_DONE;
7193
7194 /* Set the currently running flag. */
7195 if (!HLUA_IS_RUNNING(hlua) &&
7196 !(ctx->ctx.hlua_apphttp.flags & APPLET_DONE)) {
7197 struct htx_blk *blk;
7198 size_t count = co_data(req);
7199
7200 if (!count) {
7201 si_cant_get(si);
7202 goto out;
7203 }
7204
7205 /* We need to flush the request header. This left the body for
7206 * the Lua.
7207 */
7208 req_htx = htx_from_buf(&req->buf);
Christopher Fauleta3f15502019-05-13 15:27:23 +02007209 blk = htx_get_first_blk(req_htx);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007210 while (count && blk) {
7211 enum htx_blk_type type = htx_get_blk_type(blk);
7212 uint32_t sz = htx_get_blksz(blk);
7213
7214 if (sz > count) {
7215 si_cant_get(si);
Christopher Faulet0ae79d02019-02-27 21:36:59 +01007216 htx_to_buf(req_htx, &req->buf);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007217 goto out;
7218 }
7219
7220 count -= sz;
7221 co_set_data(req, co_data(req) - sz);
7222 blk = htx_remove_blk(req_htx, blk);
7223
7224 if (type == HTX_BLK_EOH)
7225 break;
7226 }
Christopher Faulet0ae79d02019-02-27 21:36:59 +01007227 htx_to_buf(req_htx, &req->buf);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007228 }
7229
7230 /* Executes The applet if it is not done. */
7231 if (!(ctx->ctx.hlua_apphttp.flags & APPLET_DONE)) {
7232
7233 /* Execute the function. */
7234 switch (hlua_ctx_resume(hlua, 1)) {
7235 /* finished. */
7236 case HLUA_E_OK:
7237 ctx->ctx.hlua_apphttp.flags |= APPLET_DONE;
7238 break;
7239
7240 /* yield. */
7241 case HLUA_E_AGAIN:
7242 if (hlua->wake_time != TICK_ETERNITY)
7243 task_schedule(ctx->ctx.hlua_apphttp.task, hlua->wake_time);
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01007244 goto out;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007245
7246 /* finished with error. */
7247 case HLUA_E_ERRMSG:
7248 /* Display log. */
7249 SEND_ERR(px, "Lua applet http '%s': %s.\n",
7250 rule->arg.hlua_rule->fcn.name, lua_tostring(hlua->T, -1));
7251 lua_pop(hlua->T, 1);
7252 goto error;
7253
7254 case HLUA_E_ETMOUT:
7255 SEND_ERR(px, "Lua applet http '%s': execution timeout.\n",
7256 rule->arg.hlua_rule->fcn.name);
7257 goto error;
7258
7259 case HLUA_E_NOMEM:
7260 SEND_ERR(px, "Lua applet http '%s': out of memory error.\n",
7261 rule->arg.hlua_rule->fcn.name);
7262 goto error;
7263
7264 case HLUA_E_YIELD: /* unexpected */
7265 SEND_ERR(px, "Lua applet http '%s': yield not allowed.\n",
7266 rule->arg.hlua_rule->fcn.name);
7267 goto error;
7268
7269 case HLUA_E_ERR:
7270 /* Display log. */
7271 SEND_ERR(px, "Lua applet http '%s' return an unknown error.\n",
7272 rule->arg.hlua_rule->fcn.name);
7273 goto error;
7274
7275 default:
7276 goto error;
7277 }
7278 }
7279
7280 if (ctx->ctx.hlua_apphttp.flags & APPLET_DONE) {
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01007281 if (ctx->ctx.hlua_apphttp.flags & APPLET_RSP_SENT)
7282 goto done;
7283
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007284 if (!(ctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT))
7285 goto error;
7286
Christopher Faulet54b5e212019-06-04 10:08:28 +02007287 /* Don't add TLR because mux-h1 will take care of it */
Willy Tarreauf1ea47d2020-07-23 06:53:27 +02007288 res_htx->flags |= HTX_FL_EOI; /* no more data are expected. Only EOM remains to add now */
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007289 if (!htx_add_endof(res_htx, HTX_BLK_EOM)) {
7290 si_rx_room_blk(si);
7291 goto out;
7292 }
Christopher Fauletf6cce3f2019-02-27 21:20:09 +01007293 channel_add_input(res, 1);
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01007294 strm->txn->status = ctx->ctx.hlua_apphttp.status;
7295 ctx->ctx.hlua_apphttp.flags |= APPLET_RSP_SENT;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007296 }
7297
7298 done:
7299 if (ctx->ctx.hlua_apphttp.flags & APPLET_DONE) {
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01007300 if (!(res->flags & CF_SHUTR)) {
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007301 res->flags |= CF_READ_NULL;
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01007302 si_shutr(si);
7303 }
7304
7305 /* eat the whole request */
7306 if (co_data(req)) {
7307 req_htx = htx_from_buf(&req->buf);
7308 co_htx_skip(req, req_htx, co_data(req));
7309 htx_to_buf(req_htx, &req->buf);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007310 }
7311 }
7312
7313 out:
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007314 htx_to_buf(res_htx, &res->buf);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007315 return;
7316
7317 error:
7318
7319 /* If we are in HTTP mode, and we are not send any
7320 * data, return a 500 server error in best effort:
7321 * if there is no room available in the buffer,
7322 * just close the connection.
7323 */
7324 if (!(ctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT)) {
Christopher Fauletf7346382019-07-17 22:02:08 +02007325 struct buffer *err = &http_err_chunks[HTTP_ERR_500];
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007326
7327 channel_erase(res);
7328 res->buf.data = b_data(err);
7329 memcpy(res->buf.area, b_head(err), b_data(err));
7330 res_htx = htx_from_buf(&res->buf);
Christopher Fauletf6cce3f2019-02-27 21:20:09 +01007331 channel_add_input(res, res_htx->data);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01007332 }
7333 if (!(strm->flags & SF_ERR_MASK))
7334 strm->flags |= SF_ERR_RESOURCE;
7335 ctx->ctx.hlua_apphttp.flags |= APPLET_DONE;
7336 goto done;
7337}
7338
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007339static void hlua_applet_http_release(struct appctx *ctx)
7340{
Olivier Houchard3f795f72019-04-17 22:51:06 +02007341 task_destroy(ctx->ctx.hlua_apphttp.task);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007342 ctx->ctx.hlua_apphttp.task = NULL;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007343 hlua_ctx_destroy(ctx->ctx.hlua_apphttp.hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007344 ctx->ctx.hlua_apphttp.hlua = NULL;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007345}
7346
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007347/* global {tcp|http}-request parser. Return ACT_RET_PRS_OK in
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05007348 * success case, else return ACT_RET_PRS_ERR.
Thierry FOURNIERbabae282015-09-17 11:36:37 +02007349 *
7350 * This function can fail with an abort() due to an Lua critical error.
7351 * We are in the configuration parsing process of HAProxy, this abort() is
7352 * tolerated.
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007353 */
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007354static enum act_parse_ret action_register_lua(const char **args, int *cur_arg, struct proxy *px,
7355 struct act_rule *rule, char **err)
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007356{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02007357 struct hlua_function *fcn = rule->kw->private;
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007358 int i;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007359
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007360 /* Memory for the rule. */
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02007361 rule->arg.hlua_rule = calloc(1, sizeof(*rule->arg.hlua_rule));
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007362 if (!rule->arg.hlua_rule) {
7363 memprintf(err, "out of memory error");
Thierry FOURNIERafa80492015-08-19 09:04:15 +02007364 return ACT_RET_PRS_ERR;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007365 }
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007366
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007367 /* Memory for arguments. */
Tim Duesterhuse52b6e52020-09-12 20:26:43 +02007368 rule->arg.hlua_rule->args = calloc(fcn->nargs + 1,
7369 sizeof(*rule->arg.hlua_rule->args));
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007370 if (!rule->arg.hlua_rule->args) {
7371 memprintf(err, "out of memory error");
7372 return ACT_RET_PRS_ERR;
7373 }
7374
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007375 /* Reference the Lua function and store the reference. */
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007376 rule->arg.hlua_rule->fcn = *fcn;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007377
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007378 /* Expect some arguments */
7379 for (i = 0; i < fcn->nargs; i++) {
Thierry FOURNIER1725c2e2019-01-06 19:38:49 +01007380 if (*args[*cur_arg] == '\0') {
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007381 memprintf(err, "expect %d arguments", fcn->nargs);
7382 return ACT_RET_PRS_ERR;
7383 }
Thierry FOURNIER1725c2e2019-01-06 19:38:49 +01007384 rule->arg.hlua_rule->args[i] = strdup(args[*cur_arg]);
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007385 if (!rule->arg.hlua_rule->args[i]) {
7386 memprintf(err, "out of memory error");
7387 return ACT_RET_PRS_ERR;
7388 }
7389 (*cur_arg)++;
7390 }
7391 rule->arg.hlua_rule->args[i] = NULL;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007392
Thierry FOURNIER42148732015-09-02 17:17:33 +02007393 rule->action = ACT_CUSTOM;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02007394 rule->action_ptr = hlua_action;
Thierry FOURNIERafa80492015-08-19 09:04:15 +02007395 return ACT_RET_PRS_OK;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01007396}
7397
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007398static enum act_parse_ret action_register_service_http(const char **args, int *cur_arg, struct proxy *px,
7399 struct act_rule *rule, char **err)
7400{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02007401 struct hlua_function *fcn = rule->kw->private;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007402
Thierry FOURNIER718e2a72015-12-20 20:13:14 +01007403 /* HTTP applets are forbidden in tcp-request rules.
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05007404 * HTTP applet request requires everything initialized by
Thierry FOURNIER718e2a72015-12-20 20:13:14 +01007405 * "http_process_request" (analyzer flag AN_REQ_HTTP_INNER).
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05007406 * The applet will be immediately initialized, but its before
Thierry FOURNIER718e2a72015-12-20 20:13:14 +01007407 * the call of this analyzer.
7408 */
7409 if (rule->from != ACT_F_HTTP_REQ) {
7410 memprintf(err, "HTTP applets are forbidden from 'tcp-request' rulesets");
7411 return ACT_RET_PRS_ERR;
7412 }
7413
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007414 /* Memory for the rule. */
7415 rule->arg.hlua_rule = calloc(1, sizeof(*rule->arg.hlua_rule));
7416 if (!rule->arg.hlua_rule) {
7417 memprintf(err, "out of memory error");
7418 return ACT_RET_PRS_ERR;
7419 }
7420
7421 /* Reference the Lua function and store the reference. */
7422 rule->arg.hlua_rule->fcn = *fcn;
7423
7424 /* TODO: later accept arguments. */
7425 rule->arg.hlua_rule->args = NULL;
7426
7427 /* Add applet pointer in the rule. */
7428 rule->applet.obj_type = OBJ_TYPE_APPLET;
7429 rule->applet.name = fcn->name;
7430 rule->applet.init = hlua_applet_http_init;
7431 rule->applet.fct = hlua_applet_http_fct;
7432 rule->applet.release = hlua_applet_http_release;
7433 rule->applet.timeout = hlua_timeout_applet;
7434
7435 return ACT_RET_PRS_OK;
7436}
7437
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007438/* This function is an LUA binding used for registering
7439 * "sample-conv" functions. It expects a converter name used
7440 * in the haproxy configuration file, and an LUA function.
7441 */
7442__LJMP static int hlua_register_action(lua_State *L)
7443{
7444 struct action_kw_list *akl;
7445 const char *name;
7446 int ref;
7447 int len;
7448 struct hlua_function *fcn;
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007449 int nargs;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007450
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007451 /* Initialise the number of expected arguments at 0. */
7452 nargs = 0;
7453
7454 if (lua_gettop(L) < 3 || lua_gettop(L) > 4)
7455 WILL_LJMP(luaL_error(L, "'register_action' needs between 3 and 4 arguments"));
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007456
7457 /* First argument : converter name. */
7458 name = MAY_LJMP(luaL_checkstring(L, 1));
7459
7460 /* Second argument : environment. */
7461 if (lua_type(L, 2) != LUA_TTABLE)
7462 WILL_LJMP(luaL_error(L, "register_action: second argument must be a table of strings"));
7463
7464 /* Third argument : lua function. */
7465 ref = MAY_LJMP(hlua_checkfunction(L, 3));
7466
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08007467 /* Fourth argument : number of mandatory arguments expected on the configuration line. */
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007468 if (lua_gettop(L) >= 4)
7469 nargs = MAY_LJMP(luaL_checkinteger(L, 4));
7470
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08007471 /* browse the second argument as an array. */
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007472 lua_pushnil(L);
7473 while (lua_next(L, 2) != 0) {
7474 if (lua_type(L, -1) != LUA_TSTRING)
7475 WILL_LJMP(luaL_error(L, "register_action: second argument must be a table of strings"));
7476
7477 /* Check required environment. Only accepted "http" or "tcp". */
7478 /* Allocate and fill the sample fetch keyword struct. */
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02007479 akl = calloc(1, sizeof(*akl) + sizeof(struct action_kw) * 2);
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007480 if (!akl)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01007481 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02007482 fcn = calloc(1, sizeof(*fcn));
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007483 if (!fcn)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01007484 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007485
7486 /* Fill fcn. */
7487 fcn->name = strdup(name);
7488 if (!fcn->name)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01007489 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007490 fcn->function_ref = ref;
7491
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01007492 /* Set the expected number od arguments. */
7493 fcn->nargs = nargs;
7494
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007495 /* List head */
7496 akl->list.n = akl->list.p = NULL;
7497
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007498 /* action keyword. */
7499 len = strlen("lua.") + strlen(name) + 1;
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02007500 akl->kw[0].kw = calloc(1, len);
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007501 if (!akl->kw[0].kw)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01007502 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007503
7504 snprintf((char *)akl->kw[0].kw, len, "lua.%s", name);
7505
7506 akl->kw[0].match_pfx = 0;
7507 akl->kw[0].private = fcn;
7508 akl->kw[0].parse = action_register_lua;
7509
7510 /* select the action registering point. */
7511 if (strcmp(lua_tostring(L, -1), "tcp-req") == 0)
7512 tcp_req_cont_keywords_register(akl);
7513 else if (strcmp(lua_tostring(L, -1), "tcp-res") == 0)
7514 tcp_res_cont_keywords_register(akl);
7515 else if (strcmp(lua_tostring(L, -1), "http-req") == 0)
7516 http_req_keywords_register(akl);
7517 else if (strcmp(lua_tostring(L, -1), "http-res") == 0)
7518 http_res_keywords_register(akl);
7519 else
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01007520 WILL_LJMP(luaL_error(L, "Lua action environment '%s' is unknown. "
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007521 "'tcp-req', 'tcp-res', 'http-req' or 'http-res' "
7522 "are expected.", lua_tostring(L, -1)));
7523
7524 /* pop the environment string. */
7525 lua_pop(L, 1);
7526 }
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007527 return ACT_RET_PRS_OK;
7528}
7529
7530static enum act_parse_ret action_register_service_tcp(const char **args, int *cur_arg, struct proxy *px,
7531 struct act_rule *rule, char **err)
7532{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02007533 struct hlua_function *fcn = rule->kw->private;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007534
Christopher Faulet280f85b2019-07-15 15:02:04 +02007535 if (px->mode == PR_MODE_HTTP) {
7536 memprintf(err, "Lua TCP services cannot be used on HTTP proxies");
Christopher Fauletafd8f102018-11-08 11:34:21 +01007537 return ACT_RET_PRS_ERR;
7538 }
7539
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007540 /* Memory for the rule. */
7541 rule->arg.hlua_rule = calloc(1, sizeof(*rule->arg.hlua_rule));
7542 if (!rule->arg.hlua_rule) {
7543 memprintf(err, "out of memory error");
7544 return ACT_RET_PRS_ERR;
7545 }
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007546
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007547 /* Reference the Lua function and store the reference. */
7548 rule->arg.hlua_rule->fcn = *fcn;
7549
7550 /* TODO: later accept arguments. */
7551 rule->arg.hlua_rule->args = NULL;
7552
7553 /* Add applet pointer in the rule. */
7554 rule->applet.obj_type = OBJ_TYPE_APPLET;
7555 rule->applet.name = fcn->name;
7556 rule->applet.init = hlua_applet_tcp_init;
7557 rule->applet.fct = hlua_applet_tcp_fct;
7558 rule->applet.release = hlua_applet_tcp_release;
7559 rule->applet.timeout = hlua_timeout_applet;
7560
7561 return 0;
7562}
7563
7564/* This function is an LUA binding used for registering
7565 * "sample-conv" functions. It expects a converter name used
7566 * in the haproxy configuration file, and an LUA function.
7567 */
7568__LJMP static int hlua_register_service(lua_State *L)
7569{
7570 struct action_kw_list *akl;
7571 const char *name;
7572 const char *env;
7573 int ref;
7574 int len;
7575 struct hlua_function *fcn;
7576
7577 MAY_LJMP(check_args(L, 3, "register_service"));
7578
7579 /* First argument : converter name. */
7580 name = MAY_LJMP(luaL_checkstring(L, 1));
7581
7582 /* Second argument : environment. */
7583 env = MAY_LJMP(luaL_checkstring(L, 2));
7584
7585 /* Third argument : lua function. */
7586 ref = MAY_LJMP(hlua_checkfunction(L, 3));
7587
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007588 /* Allocate and fill the sample fetch keyword struct. */
7589 akl = calloc(1, sizeof(*akl) + sizeof(struct action_kw) * 2);
7590 if (!akl)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01007591 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007592 fcn = calloc(1, sizeof(*fcn));
7593 if (!fcn)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01007594 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007595
7596 /* Fill fcn. */
7597 len = strlen("<lua.>") + strlen(name) + 1;
7598 fcn->name = calloc(1, len);
7599 if (!fcn->name)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01007600 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007601 snprintf((char *)fcn->name, len, "<lua.%s>", name);
7602 fcn->function_ref = ref;
7603
7604 /* List head */
7605 akl->list.n = akl->list.p = NULL;
7606
7607 /* converter keyword. */
7608 len = strlen("lua.") + strlen(name) + 1;
7609 akl->kw[0].kw = calloc(1, len);
7610 if (!akl->kw[0].kw)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01007611 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007612
7613 snprintf((char *)akl->kw[0].kw, len, "lua.%s", name);
7614
Thierry FOURNIER / OZON.IO02564fd2016-11-12 11:07:05 +01007615 /* Check required environment. Only accepted "http" or "tcp". */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007616 if (strcmp(env, "tcp") == 0)
7617 akl->kw[0].parse = action_register_service_tcp;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007618 else if (strcmp(env, "http") == 0)
7619 akl->kw[0].parse = action_register_service_http;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007620 else
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01007621 WILL_LJMP(luaL_error(L, "Lua service environment '%s' is unknown. "
Eric Salamafe7456f2017-12-21 14:30:07 +01007622 "'tcp' or 'http' are expected.", env));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007623
7624 akl->kw[0].match_pfx = 0;
7625 akl->kw[0].private = fcn;
7626
7627 /* End of array. */
7628 memset(&akl->kw[1], 0, sizeof(*akl->kw));
7629
7630 /* Register this new converter */
7631 service_keywords_register(akl);
7632
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007633 return 0;
7634}
7635
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007636/* This function initialises Lua cli handler. It copies the
7637 * arguments in the Lua stack and create channel IO objects.
7638 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02007639static int hlua_cli_parse_fct(char **args, char *payload, struct appctx *appctx, void *private)
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007640{
7641 struct hlua *hlua;
7642 struct hlua_function *fcn;
7643 int i;
7644 const char *error;
7645
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007646 fcn = private;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007647 appctx->ctx.hlua_cli.fcn = private;
7648
Willy Tarreaubafbe012017-11-24 17:34:44 +01007649 hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007650 if (!hlua) {
7651 SEND_ERR(NULL, "Lua cli '%s': out of memory.\n", fcn->name);
Thierry FOURNIER1be34152016-12-17 12:09:51 +01007652 return 1;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007653 }
7654 HLUA_INIT(hlua);
7655 appctx->ctx.hlua_cli.hlua = hlua;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007656
7657 /* Create task used by signal to wakeup applets.
Ilya Shipitsind4259502020-04-08 01:07:56 +05007658 * We use the same wakeup function than the Lua applet_tcp and
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007659 * applet_http. It is absolutely compatible.
7660 */
Willy Tarreau5f4a47b2017-10-31 15:59:32 +01007661 appctx->ctx.hlua_cli.task = task_new(tid_bit);
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007662 if (!appctx->ctx.hlua_cli.task) {
Thierry FOURNIERffbf5692016-12-16 11:14:06 +01007663 SEND_ERR(NULL, "Lua cli '%s': out of memory.\n", fcn->name);
Thierry FOURNIER1be34152016-12-17 12:09:51 +01007664 goto error;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007665 }
7666 appctx->ctx.hlua_cli.task->nice = 0;
7667 appctx->ctx.hlua_cli.task->context = appctx;
7668 appctx->ctx.hlua_cli.task->process = hlua_applet_wakeup;
7669
7670 /* Initialises the Lua context */
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01007671 if (!hlua_ctx_init(hlua, appctx->ctx.hlua_cli.task, 0)) {
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007672 SEND_ERR(NULL, "Lua cli '%s': can't initialize Lua context.\n", fcn->name);
Thierry FOURNIER1be34152016-12-17 12:09:51 +01007673 goto error;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007674 }
7675
7676 /* The following Lua calls can fail. */
7677 if (!SET_SAFE_LJMP(hlua->T)) {
7678 if (lua_type(hlua->T, -1) == LUA_TSTRING)
7679 error = lua_tostring(hlua->T, -1);
7680 else
7681 error = "critical error";
7682 SEND_ERR(NULL, "Lua cli '%s': %s.\n", fcn->name, error);
7683 goto error;
7684 }
7685
7686 /* Check stack available size. */
7687 if (!lua_checkstack(hlua->T, 2)) {
7688 SEND_ERR(NULL, "Lua cli '%s': full stack.\n", fcn->name);
7689 goto error;
7690 }
7691
7692 /* Restore the function in the stack. */
7693 lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, fcn->function_ref);
7694
7695 /* Once the arguments parsed, the CLI is like an AppletTCP,
7696 * so push AppletTCP in the stack.
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007697 */
7698 if (!hlua_applet_tcp_new(hlua->T, appctx)) {
7699 SEND_ERR(NULL, "Lua cli '%s': full stack.\n", fcn->name);
7700 goto error;
7701 }
7702 hlua->nargs = 1;
7703
7704 /* push keywords in the stack. */
7705 for (i = 0; *args[i]; i++) {
7706 /* Check stack available size. */
7707 if (!lua_checkstack(hlua->T, 1)) {
7708 SEND_ERR(NULL, "Lua cli '%s': full stack.\n", fcn->name);
7709 goto error;
7710 }
7711 lua_pushstring(hlua->T, args[i]);
7712 hlua->nargs++;
7713 }
7714
7715 /* We must initialize the execution timeouts. */
7716 hlua->max_time = hlua_timeout_session;
7717
7718 /* At this point the execution is safe. */
7719 RESET_SAFE_LJMP(hlua->T);
7720
7721 /* It's ok */
7722 return 0;
7723
7724 /* It's not ok. */
7725error:
7726 RESET_SAFE_LJMP(hlua->T);
7727 hlua_ctx_destroy(hlua);
Thierry FOURNIER1be34152016-12-17 12:09:51 +01007728 appctx->ctx.hlua_cli.hlua = NULL;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007729 return 1;
7730}
7731
7732static int hlua_cli_io_handler_fct(struct appctx *appctx)
7733{
7734 struct hlua *hlua;
7735 struct stream_interface *si;
7736 struct hlua_function *fcn;
7737
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007738 hlua = appctx->ctx.hlua_cli.hlua;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007739 si = appctx->owner;
Willy Tarreau8ae4f752016-12-14 15:41:45 +01007740 fcn = appctx->ctx.hlua_cli.fcn;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007741
7742 /* If the stream is disconnect or closed, ldo nothing. */
7743 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
7744 return 1;
7745
7746 /* Execute the function. */
7747 switch (hlua_ctx_resume(hlua, 1)) {
7748
7749 /* finished. */
7750 case HLUA_E_OK:
7751 return 1;
7752
7753 /* yield. */
7754 case HLUA_E_AGAIN:
7755 /* We want write. */
7756 if (HLUA_IS_WAKERESWR(hlua))
Willy Tarreaudb398432018-11-15 11:08:52 +01007757 si_rx_room_blk(si);
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007758 /* Set the timeout. */
7759 if (hlua->wake_time != TICK_ETERNITY)
7760 task_schedule(hlua->task, hlua->wake_time);
7761 return 0;
7762
7763 /* finished with error. */
7764 case HLUA_E_ERRMSG:
7765 /* Display log. */
7766 SEND_ERR(NULL, "Lua cli '%s': %s.\n",
7767 fcn->name, lua_tostring(hlua->T, -1));
7768 lua_pop(hlua->T, 1);
7769 return 1;
7770
Thierry Fournierd5b073c2018-05-21 19:42:47 +02007771 case HLUA_E_ETMOUT:
7772 SEND_ERR(NULL, "Lua converter '%s': execution timeout.\n",
7773 fcn->name);
7774 return 1;
7775
7776 case HLUA_E_NOMEM:
7777 SEND_ERR(NULL, "Lua converter '%s': out of memory error.\n",
7778 fcn->name);
7779 return 1;
7780
7781 case HLUA_E_YIELD: /* unexpected */
7782 SEND_ERR(NULL, "Lua converter '%s': yield not allowed.\n",
7783 fcn->name);
7784 return 1;
7785
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007786 case HLUA_E_ERR:
7787 /* Display log. */
7788 SEND_ERR(NULL, "Lua cli '%s' return an unknown error.\n",
7789 fcn->name);
7790 return 1;
7791
7792 default:
7793 return 1;
7794 }
7795
7796 return 1;
7797}
7798
7799static void hlua_cli_io_release_fct(struct appctx *appctx)
7800{
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007801 hlua_ctx_destroy(appctx->ctx.hlua_cli.hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007802 appctx->ctx.hlua_cli.hlua = NULL;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007803}
7804
7805/* This function is an LUA binding used for registering
7806 * new keywords in the cli. It expects a list of keywords
7807 * which are the "path". It is limited to 5 keywords. A
7808 * description of the command, a function to be executed
7809 * for the parsing and a function for io handlers.
7810 */
7811__LJMP static int hlua_register_cli(lua_State *L)
7812{
7813 struct cli_kw_list *cli_kws;
7814 const char *message;
7815 int ref_io;
7816 int len;
7817 struct hlua_function *fcn;
7818 int index;
7819 int i;
7820
7821 MAY_LJMP(check_args(L, 3, "register_cli"));
7822
7823 /* First argument : an array of maximum 5 keywords. */
7824 if (!lua_istable(L, 1))
7825 WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table"));
7826
7827 /* Second argument : string with contextual message. */
7828 message = MAY_LJMP(luaL_checkstring(L, 2));
7829
7830 /* Third and fourth argument : lua function. */
7831 ref_io = MAY_LJMP(hlua_checkfunction(L, 3));
7832
7833 /* Allocate and fill the sample fetch keyword struct. */
7834 cli_kws = calloc(1, sizeof(*cli_kws) + sizeof(struct cli_kw) * 2);
7835 if (!cli_kws)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01007836 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007837 fcn = calloc(1, sizeof(*fcn));
7838 if (!fcn)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01007839 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007840
7841 /* Fill path. */
7842 index = 0;
7843 lua_pushnil(L);
7844 while(lua_next(L, 1) != 0) {
7845 if (index >= 5)
7846 WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table with a maximum of 5 entries"));
7847 if (lua_type(L, -1) != LUA_TSTRING)
7848 WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table filled with strings"));
7849 cli_kws->kw[0].str_kw[index] = strdup(lua_tostring(L, -1));
7850 if (!cli_kws->kw[0].str_kw[index])
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01007851 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007852 index++;
7853 lua_pop(L, 1);
7854 }
7855
7856 /* Copy help message. */
7857 cli_kws->kw[0].usage = strdup(message);
7858 if (!cli_kws->kw[0].usage)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01007859 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007860
7861 /* Fill fcn io handler. */
7862 len = strlen("<lua.cli>") + 1;
7863 for (i = 0; i < index; i++)
7864 len += strlen(cli_kws->kw[0].str_kw[i]) + 1;
7865 fcn->name = calloc(1, len);
7866 if (!fcn->name)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01007867 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007868 strncat((char *)fcn->name, "<lua.cli", len);
7869 for (i = 0; i < index; i++) {
7870 strncat((char *)fcn->name, ".", len);
7871 strncat((char *)fcn->name, cli_kws->kw[0].str_kw[i], len);
7872 }
7873 strncat((char *)fcn->name, ">", len);
7874 fcn->function_ref = ref_io;
7875
7876 /* Fill last entries. */
7877 cli_kws->kw[0].private = fcn;
7878 cli_kws->kw[0].parse = hlua_cli_parse_fct;
7879 cli_kws->kw[0].io_handler = hlua_cli_io_handler_fct;
7880 cli_kws->kw[0].io_release = hlua_cli_io_release_fct;
7881
7882 /* Register this new converter */
7883 cli_register_kw(cli_kws);
7884
7885 return 0;
7886}
7887
Thierry FOURNIERbd413492015-03-03 16:52:26 +01007888static int hlua_read_timeout(char **args, int section_type, struct proxy *curpx,
7889 struct proxy *defpx, const char *file, int line,
7890 char **err, unsigned int *timeout)
7891{
7892 const char *error;
7893
7894 error = parse_time_err(args[1], timeout, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02007895 if (error == PARSE_TIME_OVER) {
7896 memprintf(err, "timer overflow in argument <%s> to <%s> (maximum value is 2147483647 ms or ~24.8 days)",
7897 args[1], args[0]);
7898 return -1;
7899 }
7900 else if (error == PARSE_TIME_UNDER) {
7901 memprintf(err, "timer underflow in argument <%s> to <%s> (minimum non-null value is 1 ms)",
7902 args[1], args[0]);
7903 return -1;
7904 }
7905 else if (error) {
Thierry FOURNIERbd413492015-03-03 16:52:26 +01007906 memprintf(err, "%s: invalid timeout", args[0]);
7907 return -1;
7908 }
7909 return 0;
7910}
7911
7912static int hlua_session_timeout(char **args, int section_type, struct proxy *curpx,
7913 struct proxy *defpx, const char *file, int line,
7914 char **err)
7915{
7916 return hlua_read_timeout(args, section_type, curpx, defpx,
7917 file, line, err, &hlua_timeout_session);
7918}
7919
7920static int hlua_task_timeout(char **args, int section_type, struct proxy *curpx,
7921 struct proxy *defpx, const char *file, int line,
7922 char **err)
7923{
7924 return hlua_read_timeout(args, section_type, curpx, defpx,
7925 file, line, err, &hlua_timeout_task);
7926}
7927
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007928static int hlua_applet_timeout(char **args, int section_type, struct proxy *curpx,
7929 struct proxy *defpx, const char *file, int line,
7930 char **err)
7931{
7932 return hlua_read_timeout(args, section_type, curpx, defpx,
7933 file, line, err, &hlua_timeout_applet);
7934}
7935
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01007936static int hlua_forced_yield(char **args, int section_type, struct proxy *curpx,
7937 struct proxy *defpx, const char *file, int line,
7938 char **err)
7939{
7940 char *error;
7941
7942 hlua_nb_instruction = strtoll(args[1], &error, 10);
7943 if (*error != '\0') {
7944 memprintf(err, "%s: invalid number", args[0]);
7945 return -1;
7946 }
7947 return 0;
7948}
7949
Willy Tarreau32f61e22015-03-18 17:54:59 +01007950static int hlua_parse_maxmem(char **args, int section_type, struct proxy *curpx,
7951 struct proxy *defpx, const char *file, int line,
7952 char **err)
7953{
7954 char *error;
7955
7956 if (*(args[1]) == 0) {
7957 memprintf(err, "'%s' expects an integer argument (Lua memory size in MB).\n", args[0]);
7958 return -1;
7959 }
7960 hlua_global_allocator.limit = strtoll(args[1], &error, 10) * 1024L * 1024L;
7961 if (*error != '\0') {
7962 memprintf(err, "%s: invalid number %s (error at '%c')", args[0], args[1], *error);
7963 return -1;
7964 }
7965 return 0;
7966}
7967
7968
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01007969/* This function is called by the main configuration key "lua-load". It loads and
7970 * execute an lua file during the parsing of the HAProxy configuration file. It is
7971 * the main lua entry point.
7972 *
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08007973 * This function runs with the HAProxy keywords API. It returns -1 if an error
7974 * occurs, otherwise it returns 0.
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01007975 *
7976 * In some error case, LUA set an error message in top of the stack. This function
7977 * returns this error message in the HAProxy logs and pop it from the stack.
Thierry FOURNIERbabae282015-09-17 11:36:37 +02007978 *
7979 * This function can fail with an abort() due to an Lua critical error.
7980 * We are in the configuration parsing process of HAProxy, this abort() is
7981 * tolerated.
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01007982 */
7983static int hlua_load(char **args, int section_type, struct proxy *curpx,
7984 struct proxy *defpx, const char *file, int line,
7985 char **err)
7986{
7987 int error;
7988
Thierry Fournier77a88942020-11-29 01:06:24 +01007989 if (*(args[1]) == 0) {
7990 memprintf(err, "'%s' expects a file name as parameter.\n", args[0]);
7991 return -1;
7992 }
7993
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01007994 /* Just load and compile the file. */
7995 error = luaL_loadfile(gL.T, args[1]);
7996 if (error) {
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01007997 memprintf(err, "error in Lua file '%s': %s", args[1], lua_tostring(gL.T, -1));
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01007998 lua_pop(gL.T, 1);
7999 return -1;
8000 }
8001
8002 /* If no syntax error where detected, execute the code. */
8003 error = lua_pcall(gL.T, 0, LUA_MULTRET, 0);
8004 switch (error) {
8005 case LUA_OK:
8006 break;
8007 case LUA_ERRRUN:
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01008008 memprintf(err, "Lua runtime error: %s\n", lua_tostring(gL.T, -1));
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008009 lua_pop(gL.T, 1);
8010 return -1;
8011 case LUA_ERRMEM:
Thierry Fournierde6145f2020-11-29 00:55:53 +01008012 memprintf(err, "Lua out of memory error\n");
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008013 return -1;
8014 case LUA_ERRERR:
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01008015 memprintf(err, "Lua message handler error: %s\n", lua_tostring(gL.T, -1));
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008016 lua_pop(gL.T, 1);
8017 return -1;
Christopher Faulet08ed98f2020-07-28 10:33:25 +02008018#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM <= 503
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008019 case LUA_ERRGCMM:
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01008020 memprintf(err, "Lua garbage collector error: %s\n", lua_tostring(gL.T, -1));
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008021 lua_pop(gL.T, 1);
8022 return -1;
Christopher Faulet08ed98f2020-07-28 10:33:25 +02008023#endif
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008024 default:
Ilya Shipitsind4259502020-04-08 01:07:56 +05008025 memprintf(err, "Lua unknown error: %s\n", lua_tostring(gL.T, -1));
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008026 lua_pop(gL.T, 1);
8027 return -1;
8028 }
8029
8030 return 0;
8031}
8032
Tim Duesterhusc9fc9f22020-01-12 13:55:39 +01008033/* Prepend the given <path> followed by a semicolon to the `package.<type>` variable
8034 * in the given <ctx>.
8035 */
8036static int hlua_prepend_path(struct hlua ctx, char *type, char *path)
8037{
8038 lua_getglobal(ctx.T, "package"); /* push package variable */
8039 lua_pushstring(ctx.T, path); /* push given path */
8040 lua_pushstring(ctx.T, ";"); /* push semicolon */
8041 lua_getfield(ctx.T, -3, type); /* push old path */
8042 lua_concat(ctx.T, 3); /* concatenate to new path */
8043 lua_setfield(ctx.T, -2, type); /* store new path */
8044 lua_pop(ctx.T, 1); /* pop package variable */
8045
8046 return 0;
8047}
8048
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +01008049static int hlua_config_prepend_path(char **args, int section_type, struct proxy *curpx,
8050 struct proxy *defpx, const char *file, int line,
8051 char **err)
8052{
8053 char *path;
8054 char *type = "path";
8055 if (too_many_args(2, args, err, NULL)) {
8056 return -1;
8057 }
8058
8059 if (!(*args[1])) {
8060 memprintf(err, "'%s' expects to receive a <path> as argument", args[0]);
8061 return -1;
8062 }
8063 path = args[1];
8064
8065 if (*args[2]) {
8066 if (strcmp(args[2], "path") != 0 && strcmp(args[2], "cpath") != 0) {
8067 memprintf(err, "'%s' expects <type> to either be 'path' or 'cpath'", args[0]);
8068 return -1;
8069 }
8070 type = args[2];
8071 }
8072
8073 return hlua_prepend_path(gL, type, path);
8074}
8075
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008076/* configuration keywords declaration */
8077static struct cfg_kw_list cfg_kws = {{ },{
Tim Duesterhusdd74b5f2020-01-12 13:55:40 +01008078 { CFG_GLOBAL, "lua-prepend-path", hlua_config_prepend_path },
Thierry FOURNIERbd413492015-03-03 16:52:26 +01008079 { CFG_GLOBAL, "lua-load", hlua_load },
8080 { CFG_GLOBAL, "tune.lua.session-timeout", hlua_session_timeout },
8081 { CFG_GLOBAL, "tune.lua.task-timeout", hlua_task_timeout },
Thierry FOURNIER56da1012015-10-01 08:42:31 +02008082 { CFG_GLOBAL, "tune.lua.service-timeout", hlua_applet_timeout },
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01008083 { CFG_GLOBAL, "tune.lua.forced-yield", hlua_forced_yield },
Willy Tarreau32f61e22015-03-18 17:54:59 +01008084 { CFG_GLOBAL, "tune.lua.maxmem", hlua_parse_maxmem },
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01008085 { 0, NULL, NULL },
8086}};
8087
Willy Tarreau0108d902018-11-25 19:14:37 +01008088INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
8089
Christopher Fauletafd8f102018-11-08 11:34:21 +01008090
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008091/* This function can fail with an abort() due to an Lua critical error.
8092 * We are in the initialisation process of HAProxy, this abort() is
8093 * tolerated.
8094 */
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008095int hlua_post_init()
8096{
8097 struct hlua_init_function *init;
8098 const char *msg;
8099 enum hlua_exec ret;
Thierry Fournierfd107a22016-02-19 19:57:23 +01008100 const char *error;
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008101
Ilya Shipitsin856aabc2020-04-16 23:51:34 +05008102 /* Call post initialisation function in safe environment. */
Thierry Fournier3d4a6752016-02-19 20:53:30 +01008103 if (!SET_SAFE_LJMP(gL.T)) {
8104 if (lua_type(gL.T, -1) == LUA_TSTRING)
8105 error = lua_tostring(gL.T, -1);
8106 else
8107 error = "critical error";
8108 fprintf(stderr, "Lua post-init: %s.\n", error);
8109 exit(1);
8110 }
Frédéric Lécaille54f2bcf2018-08-29 13:46:24 +02008111
8112#if USE_OPENSSL
8113 /* Initialize SSL server. */
8114 if (socket_ssl.xprt->prepare_srv) {
8115 int saved_used_backed = global.ssl_used_backend;
8116 // don't affect maxconn automatic computation
8117 socket_ssl.xprt->prepare_srv(&socket_ssl);
8118 global.ssl_used_backend = saved_used_backed;
8119 }
8120#endif
8121
Thierry Fournier3d4a6752016-02-19 20:53:30 +01008122 hlua_fcn_post_init(gL.T);
8123 RESET_SAFE_LJMP(gL.T);
8124
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008125 list_for_each_entry(init, &hlua_init_functions, l) {
8126 lua_rawgeti(gL.T, LUA_REGISTRYINDEX, init->function_ref);
8127 ret = hlua_ctx_resume(&gL, 0);
8128 switch (ret) {
8129 case HLUA_E_OK:
8130 lua_pop(gL.T, -1);
8131 return 1;
8132 case HLUA_E_AGAIN:
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01008133 ha_alert("Lua init: yield not allowed.\n");
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008134 return 0;
8135 case HLUA_E_ERRMSG:
8136 msg = lua_tostring(gL.T, -1);
Christopher Faulet767a84b2017-11-24 16:50:31 +01008137 ha_alert("lua init: %s.\n", msg);
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008138 return 0;
8139 case HLUA_E_ERR:
8140 default:
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01008141 ha_alert("Lua init: unknown runtime error.\n");
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008142 return 0;
8143 }
8144 }
8145 return 1;
8146}
8147
Willy Tarreau32f61e22015-03-18 17:54:59 +01008148/* The memory allocator used by the Lua stack. <ud> is a pointer to the
8149 * allocator's context. <ptr> is the pointer to alloc/free/realloc. <osize>
8150 * is the previously allocated size or the kind of object in case of a new
8151 * allocation. <nsize> is the requested new size.
8152 */
8153static void *hlua_alloc(void *ud, void *ptr, size_t osize, size_t nsize)
8154{
8155 struct hlua_mem_allocator *zone = ud;
8156
8157 if (nsize == 0) {
8158 /* it's a free */
8159 if (ptr)
8160 zone->allocated -= osize;
8161 free(ptr);
8162 return NULL;
8163 }
8164
8165 if (!ptr) {
8166 /* it's a new allocation */
8167 if (zone->limit && zone->allocated + nsize > zone->limit)
8168 return NULL;
8169
8170 ptr = malloc(nsize);
8171 if (ptr)
8172 zone->allocated += nsize;
8173 return ptr;
8174 }
8175
8176 /* it's a realloc */
8177 if (zone->limit && zone->allocated + nsize - osize > zone->limit)
8178 return NULL;
8179
8180 ptr = realloc(ptr, nsize);
8181 if (ptr)
8182 zone->allocated += nsize - osize;
8183 return ptr;
8184}
8185
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008186/* Ithis function can fail with an abort() due to an Lua critical error.
8187 * We are in the initialisation process of HAProxy, this abort() is
8188 * tolerated.
8189 */
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01008190void hlua_init(void)
8191{
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +01008192 int i;
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +01008193 int idx;
8194 struct sample_fetch *sf;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01008195 struct sample_conv *sc;
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +01008196 char *p;
Thierry Fournierfd107a22016-02-19 19:57:23 +01008197 const char *error_msg;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01008198#ifdef USE_OPENSSL
Willy Tarreau80f5fae2015-02-27 16:38:20 +01008199 struct srv_kw *kw;
8200 int tmp_error;
8201 char *error;
Thierry FOURNIER36d13742015-03-17 16:48:53 +01008202 char *args[] = { /* SSL client configuration. */
8203 "ssl",
8204 "verify",
8205 "none",
Thierry FOURNIER36d13742015-03-17 16:48:53 +01008206 NULL
8207 };
Willy Tarreau80f5fae2015-02-27 16:38:20 +01008208#endif
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +01008209
Thierry FOURNIER380d0932015-01-23 14:27:52 +01008210 /* Init main lua stack. */
8211 gL.Mref = LUA_REFNIL;
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01008212 gL.flags = 0;
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +01008213 LIST_INIT(&gL.com);
Willy Tarreau42ef75f2017-04-12 21:40:29 +02008214 gL.T = lua_newstate(hlua_alloc, &hlua_global_allocator);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01008215 hlua_sethlua(&gL);
8216 gL.Tref = LUA_REFNIL;
8217 gL.task = NULL;
8218
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08008219 /* From this point, until the end of the initialisation function,
Thierry FOURNIERbabae282015-09-17 11:36:37 +02008220 * the Lua function can fail with an abort. We are in the initialisation
8221 * process of HAProxy, this abort() is tolerated.
8222 */
8223
Thierry FOURNIER380d0932015-01-23 14:27:52 +01008224 /* Initialise lua. */
8225 luaL_openlibs(gL.T);
Tim Duesterhus541fe1e2020-01-12 13:55:41 +01008226#define HLUA_PREPEND_PATH_TOSTRING1(x) #x
8227#define HLUA_PREPEND_PATH_TOSTRING(x) HLUA_PREPEND_PATH_TOSTRING1(x)
8228#ifdef HLUA_PREPEND_PATH
8229 hlua_prepend_path(gL, "path", HLUA_PREPEND_PATH_TOSTRING(HLUA_PREPEND_PATH));
8230#endif
8231#ifdef HLUA_PREPEND_CPATH
8232 hlua_prepend_path(gL, "cpath", HLUA_PREPEND_PATH_TOSTRING(HLUA_PREPEND_CPATH));
8233#endif
8234#undef HLUA_PREPEND_PATH_TOSTRING
8235#undef HLUA_PREPEND_PATH_TOSTRING1
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +01008236
Thierry Fournier75933d42016-01-21 09:30:18 +01008237 /* Set safe environment for the initialisation. */
8238 if (!SET_SAFE_LJMP(gL.T)) {
Thierry Fournierfd107a22016-02-19 19:57:23 +01008239 if (lua_type(gL.T, -1) == LUA_TSTRING)
8240 error_msg = lua_tostring(gL.T, -1);
8241 else
8242 error_msg = "critical error";
8243 fprintf(stderr, "Lua init: %s.\n", error_msg);
Thierry Fournier75933d42016-01-21 09:30:18 +01008244 exit(1);
8245 }
8246
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +01008247 /*
8248 *
8249 * Create "core" object.
8250 *
8251 */
8252
Thierry FOURNIERa2d8c652015-03-11 17:29:39 +01008253 /* This table entry is the object "core" base. */
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +01008254 lua_newtable(gL.T);
8255
8256 /* Push the loglevel constants. */
Willy Tarreau80f5fae2015-02-27 16:38:20 +01008257 for (i = 0; i < NB_LOG_LEVELS; i++)
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +01008258 hlua_class_const_int(gL.T, log_levels[i], i);
8259
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008260 /* Register special functions. */
8261 hlua_class_function(gL.T, "register_init", hlua_register_init);
Thierry FOURNIER24f33532015-01-23 12:13:00 +01008262 hlua_class_function(gL.T, "register_task", hlua_register_task);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01008263 hlua_class_function(gL.T, "register_fetches", hlua_register_fetches);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01008264 hlua_class_function(gL.T, "register_converters", hlua_register_converters);
Thierry FOURNIER8255a752015-09-23 21:03:35 +02008265 hlua_class_function(gL.T, "register_action", hlua_register_action);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02008266 hlua_class_function(gL.T, "register_service", hlua_register_service);
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01008267 hlua_class_function(gL.T, "register_cli", hlua_register_cli);
Thierry FOURNIER13416fe2015-02-17 15:01:59 +01008268 hlua_class_function(gL.T, "yield", hlua_yield);
Willy Tarreau59551662015-03-10 14:23:13 +01008269 hlua_class_function(gL.T, "set_nice", hlua_set_nice);
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01008270 hlua_class_function(gL.T, "sleep", hlua_sleep);
8271 hlua_class_function(gL.T, "msleep", hlua_msleep);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01008272 hlua_class_function(gL.T, "add_acl", hlua_add_acl);
8273 hlua_class_function(gL.T, "del_acl", hlua_del_acl);
8274 hlua_class_function(gL.T, "set_map", hlua_set_map);
8275 hlua_class_function(gL.T, "del_map", hlua_del_map);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01008276 hlua_class_function(gL.T, "tcp", hlua_socket_new);
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01008277 hlua_class_function(gL.T, "log", hlua_log);
8278 hlua_class_function(gL.T, "Debug", hlua_log_debug);
8279 hlua_class_function(gL.T, "Info", hlua_log_info);
8280 hlua_class_function(gL.T, "Warning", hlua_log_warning);
8281 hlua_class_function(gL.T, "Alert", hlua_log_alert);
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02008282 hlua_class_function(gL.T, "done", hlua_done);
Thierry Fournierfb0b5462016-01-21 09:28:58 +01008283 hlua_fcn_reg_core_fcn(gL.T);
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01008284
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +01008285 lua_setglobal(gL.T, "core");
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01008286
8287 /*
8288 *
Christopher Faulet0f3c8902020-01-31 18:57:12 +01008289 * Create "act" object.
8290 *
8291 */
8292
8293 /* This table entry is the object "act" base. */
8294 lua_newtable(gL.T);
8295
8296 /* push action return constants */
8297 hlua_class_const_int(gL.T, "CONTINUE", ACT_RET_CONT);
8298 hlua_class_const_int(gL.T, "STOP", ACT_RET_STOP);
8299 hlua_class_const_int(gL.T, "YIELD", ACT_RET_YIELD);
8300 hlua_class_const_int(gL.T, "ERROR", ACT_RET_ERR);
8301 hlua_class_const_int(gL.T, "DONE", ACT_RET_DONE);
8302 hlua_class_const_int(gL.T, "DENY", ACT_RET_DENY);
8303 hlua_class_const_int(gL.T, "ABORT", ACT_RET_ABRT);
8304 hlua_class_const_int(gL.T, "INVALID", ACT_RET_INV);
8305
Christopher Faulet501465d2020-02-26 14:54:16 +01008306 hlua_class_function(gL.T, "wake_time", hlua_set_wake_time);
Christopher Faulet2c2c2e32020-01-31 19:07:52 +01008307
Christopher Faulet0f3c8902020-01-31 18:57:12 +01008308 lua_setglobal(gL.T, "act");
8309
8310 /*
8311 *
Thierry FOURNIER3def3932015-04-07 11:27:54 +02008312 * Register class Map
8313 *
8314 */
8315
8316 /* This table entry is the object "Map" base. */
8317 lua_newtable(gL.T);
8318
8319 /* register pattern types. */
8320 for (i=0; i<PAT_MATCH_NUM; i++)
8321 hlua_class_const_int(gL.T, pat_match_names[i], i);
Thierry FOURNIER4dc71972017-01-28 08:33:08 +01008322 for (i=0; i<PAT_MATCH_NUM; i++) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02008323 snprintf(trash.area, trash.size, "_%s", pat_match_names[i]);
8324 hlua_class_const_int(gL.T, trash.area, i);
Thierry FOURNIER4dc71972017-01-28 08:33:08 +01008325 }
Thierry FOURNIER3def3932015-04-07 11:27:54 +02008326
8327 /* register constructor. */
8328 hlua_class_function(gL.T, "new", hlua_map_new);
8329
8330 /* Create and fill the metatable. */
8331 lua_newtable(gL.T);
8332
Ilya Shipitsind4259502020-04-08 01:07:56 +05008333 /* Create and fill the __index entry. */
Thierry FOURNIER3def3932015-04-07 11:27:54 +02008334 lua_pushstring(gL.T, "__index");
8335 lua_newtable(gL.T);
8336
8337 /* Register . */
8338 hlua_class_function(gL.T, "lookup", hlua_map_lookup);
8339 hlua_class_function(gL.T, "slookup", hlua_map_slookup);
8340
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02008341 lua_rawset(gL.T, -3);
Thierry FOURNIER3def3932015-04-07 11:27:54 +02008342
Thierry Fournier45e78d72016-02-19 18:34:46 +01008343 /* Register previous table in the registry with reference and named entry.
8344 * The function hlua_register_metatable() pops the stack, so we
8345 * previously create a copy of the table.
8346 */
Thierry FOURNIER3def3932015-04-07 11:27:54 +02008347 lua_pushvalue(gL.T, -1); /* Copy the -1 entry and push it on the stack. */
Thierry Fournier45e78d72016-02-19 18:34:46 +01008348 class_map_ref = hlua_register_metatable(gL.T, CLASS_MAP);
Thierry FOURNIER3def3932015-04-07 11:27:54 +02008349
8350 /* Assign the metatable to the mai Map object. */
8351 lua_setmetatable(gL.T, -2);
8352
8353 /* Set a name to the table. */
8354 lua_setglobal(gL.T, "Map");
8355
8356 /*
8357 *
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01008358 * Register class Channel
8359 *
8360 */
8361
8362 /* Create and fill the metatable. */
8363 lua_newtable(gL.T);
8364
Ilya Shipitsind4259502020-04-08 01:07:56 +05008365 /* Create and fill the __index entry. */
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01008366 lua_pushstring(gL.T, "__index");
8367 lua_newtable(gL.T);
8368
8369 /* Register . */
8370 hlua_class_function(gL.T, "get", hlua_channel_get);
8371 hlua_class_function(gL.T, "dup", hlua_channel_dup);
8372 hlua_class_function(gL.T, "getline", hlua_channel_getline);
8373 hlua_class_function(gL.T, "set", hlua_channel_set);
8374 hlua_class_function(gL.T, "append", hlua_channel_append);
8375 hlua_class_function(gL.T, "send", hlua_channel_send);
8376 hlua_class_function(gL.T, "forward", hlua_channel_forward);
8377 hlua_class_function(gL.T, "get_in_len", hlua_channel_get_in_len);
8378 hlua_class_function(gL.T, "get_out_len", hlua_channel_get_out_len);
Thierry FOURNIER / OZON.IO65192f32016-11-07 15:28:40 +01008379 hlua_class_function(gL.T, "is_full", hlua_channel_is_full);
Christopher Faulet2ac9ba22020-02-25 10:15:50 +01008380 hlua_class_function(gL.T, "is_resp", hlua_channel_is_resp);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01008381
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02008382 lua_rawset(gL.T, -3);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01008383
8384 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier45e78d72016-02-19 18:34:46 +01008385 class_channel_ref = hlua_register_metatable(gL.T, CLASS_CHANNEL);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01008386
8387 /*
8388 *
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01008389 * Register class Fetches
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01008390 *
8391 */
8392
8393 /* Create and fill the metatable. */
8394 lua_newtable(gL.T);
8395
Ilya Shipitsind4259502020-04-08 01:07:56 +05008396 /* Create and fill the __index entry. */
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01008397 lua_pushstring(gL.T, "__index");
8398 lua_newtable(gL.T);
8399
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +01008400 /* Browse existing fetches and create the associated
8401 * object method.
8402 */
8403 sf = NULL;
8404 while ((sf = sample_fetch_getnext(sf, &idx)) != NULL) {
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +01008405 /* gL.Tua doesn't support '.' and '-' in the function names, replace it
8406 * by an underscore.
8407 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02008408 strncpy(trash.area, sf->kw, trash.size);
8409 trash.area[trash.size - 1] = '\0';
8410 for (p = trash.area; *p; p++)
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +01008411 if (*p == '.' || *p == '-' || *p == '+')
8412 *p = '_';
8413
8414 /* Register the function. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02008415 lua_pushstring(gL.T, trash.area);
Willy Tarreau2ec22742015-03-10 14:27:20 +01008416 lua_pushlightuserdata(gL.T, sf);
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +01008417 lua_pushcclosure(gL.T, hlua_run_sample_fetch, 1);
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02008418 lua_rawset(gL.T, -3);
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +01008419 }
8420
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02008421 lua_rawset(gL.T, -3);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01008422
8423 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier45e78d72016-02-19 18:34:46 +01008424 class_fetches_ref = hlua_register_metatable(gL.T, CLASS_FETCHES);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01008425
8426 /*
8427 *
Thierry FOURNIER594afe72015-03-10 23:58:30 +01008428 * Register class Converters
8429 *
8430 */
8431
8432 /* Create and fill the metatable. */
8433 lua_newtable(gL.T);
8434
8435 /* Create and fill the __index entry. */
8436 lua_pushstring(gL.T, "__index");
8437 lua_newtable(gL.T);
8438
8439 /* Browse existing converters and create the associated
8440 * object method.
8441 */
8442 sc = NULL;
8443 while ((sc = sample_conv_getnext(sc, &idx)) != NULL) {
Thierry FOURNIER594afe72015-03-10 23:58:30 +01008444 /* gL.Tua doesn't support '.' and '-' in the function names, replace it
8445 * by an underscore.
8446 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02008447 strncpy(trash.area, sc->kw, trash.size);
8448 trash.area[trash.size - 1] = '\0';
8449 for (p = trash.area; *p; p++)
Thierry FOURNIER594afe72015-03-10 23:58:30 +01008450 if (*p == '.' || *p == '-' || *p == '+')
8451 *p = '_';
8452
8453 /* Register the function. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02008454 lua_pushstring(gL.T, trash.area);
Thierry FOURNIER594afe72015-03-10 23:58:30 +01008455 lua_pushlightuserdata(gL.T, sc);
8456 lua_pushcclosure(gL.T, hlua_run_sample_conv, 1);
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02008457 lua_rawset(gL.T, -3);
Thierry FOURNIER594afe72015-03-10 23:58:30 +01008458 }
8459
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02008460 lua_rawset(gL.T, -3);
Thierry FOURNIER594afe72015-03-10 23:58:30 +01008461
8462 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier45e78d72016-02-19 18:34:46 +01008463 class_converters_ref = hlua_register_metatable(gL.T, CLASS_CONVERTERS);
Thierry FOURNIER594afe72015-03-10 23:58:30 +01008464
8465 /*
8466 *
Thierry FOURNIER08504f42015-03-16 14:17:08 +01008467 * Register class HTTP
8468 *
8469 */
8470
8471 /* Create and fill the metatable. */
8472 lua_newtable(gL.T);
8473
Ilya Shipitsind4259502020-04-08 01:07:56 +05008474 /* Create and fill the __index entry. */
Thierry FOURNIER08504f42015-03-16 14:17:08 +01008475 lua_pushstring(gL.T, "__index");
8476 lua_newtable(gL.T);
8477
8478 /* Register Lua functions. */
8479 hlua_class_function(gL.T, "req_get_headers",hlua_http_req_get_headers);
8480 hlua_class_function(gL.T, "req_del_header", hlua_http_req_del_hdr);
8481 hlua_class_function(gL.T, "req_rep_header", hlua_http_req_rep_hdr);
8482 hlua_class_function(gL.T, "req_rep_value", hlua_http_req_rep_val);
8483 hlua_class_function(gL.T, "req_add_header", hlua_http_req_add_hdr);
8484 hlua_class_function(gL.T, "req_set_header", hlua_http_req_set_hdr);
8485 hlua_class_function(gL.T, "req_set_method", hlua_http_req_set_meth);
8486 hlua_class_function(gL.T, "req_set_path", hlua_http_req_set_path);
8487 hlua_class_function(gL.T, "req_set_query", hlua_http_req_set_query);
8488 hlua_class_function(gL.T, "req_set_uri", hlua_http_req_set_uri);
8489
8490 hlua_class_function(gL.T, "res_get_headers",hlua_http_res_get_headers);
8491 hlua_class_function(gL.T, "res_del_header", hlua_http_res_del_hdr);
8492 hlua_class_function(gL.T, "res_rep_header", hlua_http_res_rep_hdr);
8493 hlua_class_function(gL.T, "res_rep_value", hlua_http_res_rep_val);
8494 hlua_class_function(gL.T, "res_add_header", hlua_http_res_add_hdr);
8495 hlua_class_function(gL.T, "res_set_header", hlua_http_res_set_hdr);
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +02008496 hlua_class_function(gL.T, "res_set_status", hlua_http_res_set_status);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01008497
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02008498 lua_rawset(gL.T, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01008499
8500 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier45e78d72016-02-19 18:34:46 +01008501 class_http_ref = hlua_register_metatable(gL.T, CLASS_HTTP);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01008502
8503 /*
8504 *
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02008505 * Register class AppletTCP
8506 *
8507 */
8508
8509 /* Create and fill the metatable. */
8510 lua_newtable(gL.T);
8511
Ilya Shipitsind4259502020-04-08 01:07:56 +05008512 /* Create and fill the __index entry. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02008513 lua_pushstring(gL.T, "__index");
8514 lua_newtable(gL.T);
8515
8516 /* Register Lua functions. */
Thierry FOURNIER / OZON.IO3e1d7912016-12-12 12:29:34 +01008517 hlua_class_function(gL.T, "getline", hlua_applet_tcp_getline);
8518 hlua_class_function(gL.T, "receive", hlua_applet_tcp_recv);
8519 hlua_class_function(gL.T, "send", hlua_applet_tcp_send);
8520 hlua_class_function(gL.T, "set_priv", hlua_applet_tcp_set_priv);
8521 hlua_class_function(gL.T, "get_priv", hlua_applet_tcp_get_priv);
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01008522 hlua_class_function(gL.T, "set_var", hlua_applet_tcp_set_var);
8523 hlua_class_function(gL.T, "unset_var", hlua_applet_tcp_unset_var);
8524 hlua_class_function(gL.T, "get_var", hlua_applet_tcp_get_var);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02008525
8526 lua_settable(gL.T, -3);
8527
8528 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier45e78d72016-02-19 18:34:46 +01008529 class_applet_tcp_ref = hlua_register_metatable(gL.T, CLASS_APPLET_TCP);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02008530
8531 /*
8532 *
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02008533 * Register class AppletHTTP
8534 *
8535 */
8536
8537 /* Create and fill the metatable. */
8538 lua_newtable(gL.T);
8539
Ilya Shipitsind4259502020-04-08 01:07:56 +05008540 /* Create and fill the __index entry. */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02008541 lua_pushstring(gL.T, "__index");
8542 lua_newtable(gL.T);
8543
8544 /* Register Lua functions. */
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01008545 hlua_class_function(gL.T, "set_priv", hlua_applet_http_set_priv);
8546 hlua_class_function(gL.T, "get_priv", hlua_applet_http_get_priv);
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01008547 hlua_class_function(gL.T, "set_var", hlua_applet_http_set_var);
8548 hlua_class_function(gL.T, "unset_var", hlua_applet_http_unset_var);
8549 hlua_class_function(gL.T, "get_var", hlua_applet_http_get_var);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02008550 hlua_class_function(gL.T, "getline", hlua_applet_http_getline);
8551 hlua_class_function(gL.T, "receive", hlua_applet_http_recv);
8552 hlua_class_function(gL.T, "send", hlua_applet_http_send);
8553 hlua_class_function(gL.T, "add_header", hlua_applet_http_addheader);
8554 hlua_class_function(gL.T, "set_status", hlua_applet_http_status);
8555 hlua_class_function(gL.T, "start_response", hlua_applet_http_start_response);
8556
8557 lua_settable(gL.T, -3);
8558
8559 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier45e78d72016-02-19 18:34:46 +01008560 class_applet_http_ref = hlua_register_metatable(gL.T, CLASS_APPLET_HTTP);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02008561
8562 /*
8563 *
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01008564 * Register class TXN
8565 *
8566 */
8567
8568 /* Create and fill the metatable. */
8569 lua_newtable(gL.T);
8570
Ilya Shipitsind4259502020-04-08 01:07:56 +05008571 /* Create and fill the __index entry. */
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01008572 lua_pushstring(gL.T, "__index");
8573 lua_newtable(gL.T);
8574
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01008575 /* Register Lua functions. */
Patrick Hemmer268a7072018-05-11 12:52:31 -04008576 hlua_class_function(gL.T, "set_priv", hlua_set_priv);
8577 hlua_class_function(gL.T, "get_priv", hlua_get_priv);
8578 hlua_class_function(gL.T, "set_var", hlua_set_var);
8579 hlua_class_function(gL.T, "unset_var", hlua_unset_var);
8580 hlua_class_function(gL.T, "get_var", hlua_get_var);
8581 hlua_class_function(gL.T, "done", hlua_txn_done);
Christopher Faulet700d9e82020-01-31 12:21:52 +01008582 hlua_class_function(gL.T, "reply", hlua_txn_reply_new);
Patrick Hemmer268a7072018-05-11 12:52:31 -04008583 hlua_class_function(gL.T, "set_loglevel", hlua_txn_set_loglevel);
8584 hlua_class_function(gL.T, "set_tos", hlua_txn_set_tos);
8585 hlua_class_function(gL.T, "set_mark", hlua_txn_set_mark);
8586 hlua_class_function(gL.T, "set_priority_class", hlua_txn_set_priority_class);
8587 hlua_class_function(gL.T, "set_priority_offset", hlua_txn_set_priority_offset);
8588 hlua_class_function(gL.T, "deflog", hlua_txn_deflog);
8589 hlua_class_function(gL.T, "log", hlua_txn_log);
8590 hlua_class_function(gL.T, "Debug", hlua_txn_log_debug);
8591 hlua_class_function(gL.T, "Info", hlua_txn_log_info);
8592 hlua_class_function(gL.T, "Warning", hlua_txn_log_warning);
8593 hlua_class_function(gL.T, "Alert", hlua_txn_log_alert);
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01008594
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02008595 lua_rawset(gL.T, -3);
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01008596
8597 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier45e78d72016-02-19 18:34:46 +01008598 class_txn_ref = hlua_register_metatable(gL.T, CLASS_TXN);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01008599
8600 /*
8601 *
Christopher Faulet700d9e82020-01-31 12:21:52 +01008602 * Register class reply
8603 *
8604 */
8605 lua_newtable(gL.T);
8606 lua_pushstring(gL.T, "__index");
8607 lua_newtable(gL.T);
8608 hlua_class_function(gL.T, "set_status", hlua_txn_reply_set_status);
8609 hlua_class_function(gL.T, "add_header", hlua_txn_reply_add_header);
8610 hlua_class_function(gL.T, "del_header", hlua_txn_reply_del_header);
8611 hlua_class_function(gL.T, "set_body", hlua_txn_reply_set_body);
8612 lua_settable(gL.T, -3); /* Sets the __index entry. */
8613 class_txn_reply_ref = luaL_ref(gL.T, LUA_REGISTRYINDEX);
8614
8615
8616 /*
8617 *
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01008618 * Register class Socket
8619 *
8620 */
8621
8622 /* Create and fill the metatable. */
8623 lua_newtable(gL.T);
8624
Ilya Shipitsind4259502020-04-08 01:07:56 +05008625 /* Create and fill the __index entry. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01008626 lua_pushstring(gL.T, "__index");
8627 lua_newtable(gL.T);
8628
Baptiste Assmann84bb4932015-03-02 21:40:06 +01008629#ifdef USE_OPENSSL
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01008630 hlua_class_function(gL.T, "connect_ssl", hlua_socket_connect_ssl);
Baptiste Assmann84bb4932015-03-02 21:40:06 +01008631#endif
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01008632 hlua_class_function(gL.T, "connect", hlua_socket_connect);
8633 hlua_class_function(gL.T, "send", hlua_socket_send);
8634 hlua_class_function(gL.T, "receive", hlua_socket_receive);
8635 hlua_class_function(gL.T, "close", hlua_socket_close);
8636 hlua_class_function(gL.T, "getpeername", hlua_socket_getpeername);
8637 hlua_class_function(gL.T, "getsockname", hlua_socket_getsockname);
8638 hlua_class_function(gL.T, "setoption", hlua_socket_setoption);
8639 hlua_class_function(gL.T, "settimeout", hlua_socket_settimeout);
8640
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02008641 lua_rawset(gL.T, -3); /* Push the last 2 entries in the table at index -3 */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01008642
8643 /* Register the garbage collector entry. */
8644 lua_pushstring(gL.T, "__gc");
8645 lua_pushcclosure(gL.T, hlua_socket_gc, 0);
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02008646 lua_rawset(gL.T, -3); /* Push the last 2 entries in the table at index -3 */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01008647
8648 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier45e78d72016-02-19 18:34:46 +01008649 class_socket_ref = hlua_register_metatable(gL.T, CLASS_SOCKET);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01008650
8651 /* Proxy and server configuration initialisation. */
8652 memset(&socket_proxy, 0, sizeof(socket_proxy));
8653 init_new_proxy(&socket_proxy);
8654 socket_proxy.parent = NULL;
8655 socket_proxy.last_change = now.tv_sec;
8656 socket_proxy.id = "LUA-SOCKET";
8657 socket_proxy.cap = PR_CAP_FE | PR_CAP_BE;
8658 socket_proxy.maxconn = 0;
8659 socket_proxy.accept = NULL;
8660 socket_proxy.options2 |= PR_O2_INDEPSTR;
8661 socket_proxy.srv = NULL;
8662 socket_proxy.conn_retries = 0;
8663 socket_proxy.timeout.connect = 5000; /* By default the timeout connection is 5s. */
8664
8665 /* Init TCP server: unchanged parameters */
8666 memset(&socket_tcp, 0, sizeof(socket_tcp));
8667 socket_tcp.next = NULL;
8668 socket_tcp.proxy = &socket_proxy;
8669 socket_tcp.obj_type = OBJ_TYPE_SERVER;
8670 LIST_INIT(&socket_tcp.actconns);
Patrick Hemmer0355dab2018-05-11 12:52:31 -04008671 socket_tcp.pendconns = EB_ROOT;
Christopher Faulet40a007c2017-07-03 15:41:01 +02008672 socket_tcp.idle_conns = NULL;
8673 socket_tcp.safe_conns = NULL;
Emeric Brun52a91d32017-08-31 14:41:55 +02008674 socket_tcp.next_state = SRV_ST_RUNNING; /* early server setup */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01008675 socket_tcp.last_change = 0;
8676 socket_tcp.id = "LUA-TCP-CONN";
8677 socket_tcp.check.state &= ~CHK_ST_ENABLED; /* Disable health checks. */
8678 socket_tcp.agent.state &= ~CHK_ST_ENABLED; /* Disable health checks. */
8679 socket_tcp.pp_opts = 0; /* Remove proxy protocol. */
8680
8681 /* XXX: Copy default parameter from default server,
8682 * but the default server is not initialized.
8683 */
8684 socket_tcp.maxqueue = socket_proxy.defsrv.maxqueue;
8685 socket_tcp.minconn = socket_proxy.defsrv.minconn;
8686 socket_tcp.maxconn = socket_proxy.defsrv.maxconn;
8687 socket_tcp.slowstart = socket_proxy.defsrv.slowstart;
8688 socket_tcp.onerror = socket_proxy.defsrv.onerror;
8689 socket_tcp.onmarkeddown = socket_proxy.defsrv.onmarkeddown;
8690 socket_tcp.onmarkedup = socket_proxy.defsrv.onmarkedup;
8691 socket_tcp.consecutive_errors_limit = socket_proxy.defsrv.consecutive_errors_limit;
8692 socket_tcp.uweight = socket_proxy.defsrv.iweight;
8693 socket_tcp.iweight = socket_proxy.defsrv.iweight;
8694
8695 socket_tcp.check.status = HCHK_STATUS_INI;
8696 socket_tcp.check.rise = socket_proxy.defsrv.check.rise;
8697 socket_tcp.check.fall = socket_proxy.defsrv.check.fall;
8698 socket_tcp.check.health = socket_tcp.check.rise; /* socket, but will fall down at first failure */
8699 socket_tcp.check.server = &socket_tcp;
8700
8701 socket_tcp.agent.status = HCHK_STATUS_INI;
8702 socket_tcp.agent.rise = socket_proxy.defsrv.agent.rise;
8703 socket_tcp.agent.fall = socket_proxy.defsrv.agent.fall;
8704 socket_tcp.agent.health = socket_tcp.agent.rise; /* socket, but will fall down at first failure */
8705 socket_tcp.agent.server = &socket_tcp;
8706
Willy Tarreaua261e9b2016-12-22 20:44:00 +01008707 socket_tcp.xprt = xprt_get(XPRT_RAW);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01008708
8709#ifdef USE_OPENSSL
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01008710 /* Init TCP server: unchanged parameters */
8711 memset(&socket_ssl, 0, sizeof(socket_ssl));
8712 socket_ssl.next = NULL;
8713 socket_ssl.proxy = &socket_proxy;
8714 socket_ssl.obj_type = OBJ_TYPE_SERVER;
8715 LIST_INIT(&socket_ssl.actconns);
Patrick Hemmer0355dab2018-05-11 12:52:31 -04008716 socket_ssl.pendconns = EB_ROOT;
Willy Tarreaub784b352019-02-07 14:48:24 +01008717 socket_ssl.idle_conns = NULL;
8718 socket_ssl.safe_conns = NULL;
Emeric Brun52a91d32017-08-31 14:41:55 +02008719 socket_ssl.next_state = SRV_ST_RUNNING; /* early server setup */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01008720 socket_ssl.last_change = 0;
8721 socket_ssl.id = "LUA-SSL-CONN";
8722 socket_ssl.check.state &= ~CHK_ST_ENABLED; /* Disable health checks. */
8723 socket_ssl.agent.state &= ~CHK_ST_ENABLED; /* Disable health checks. */
8724 socket_ssl.pp_opts = 0; /* Remove proxy protocol. */
8725
8726 /* XXX: Copy default parameter from default server,
8727 * but the default server is not initialized.
8728 */
8729 socket_ssl.maxqueue = socket_proxy.defsrv.maxqueue;
8730 socket_ssl.minconn = socket_proxy.defsrv.minconn;
8731 socket_ssl.maxconn = socket_proxy.defsrv.maxconn;
8732 socket_ssl.slowstart = socket_proxy.defsrv.slowstart;
8733 socket_ssl.onerror = socket_proxy.defsrv.onerror;
8734 socket_ssl.onmarkeddown = socket_proxy.defsrv.onmarkeddown;
8735 socket_ssl.onmarkedup = socket_proxy.defsrv.onmarkedup;
8736 socket_ssl.consecutive_errors_limit = socket_proxy.defsrv.consecutive_errors_limit;
8737 socket_ssl.uweight = socket_proxy.defsrv.iweight;
8738 socket_ssl.iweight = socket_proxy.defsrv.iweight;
8739
8740 socket_ssl.check.status = HCHK_STATUS_INI;
8741 socket_ssl.check.rise = socket_proxy.defsrv.check.rise;
8742 socket_ssl.check.fall = socket_proxy.defsrv.check.fall;
8743 socket_ssl.check.health = socket_ssl.check.rise; /* socket, but will fall down at first failure */
8744 socket_ssl.check.server = &socket_ssl;
8745
8746 socket_ssl.agent.status = HCHK_STATUS_INI;
8747 socket_ssl.agent.rise = socket_proxy.defsrv.agent.rise;
8748 socket_ssl.agent.fall = socket_proxy.defsrv.agent.fall;
8749 socket_ssl.agent.health = socket_ssl.agent.rise; /* socket, but will fall down at first failure */
8750 socket_ssl.agent.server = &socket_ssl;
8751
Thierry FOURNIER36d13742015-03-17 16:48:53 +01008752 socket_ssl.use_ssl = 1;
Willy Tarreaua261e9b2016-12-22 20:44:00 +01008753 socket_ssl.xprt = xprt_get(XPRT_SSL);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01008754
Thierry FOURNIER36d13742015-03-17 16:48:53 +01008755 for (idx = 0; args[idx] != NULL; idx++) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01008756 if ((kw = srv_find_kw(args[idx])) != NULL) { /* Maybe it's registered server keyword */
8757 /*
8758 *
8759 * If the keyword is not known, we can search in the registered
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08008760 * server keywords. This is useful to configure special SSL
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01008761 * features like client certificates and ssl_verify.
8762 *
8763 */
8764 tmp_error = kw->parse(args, &idx, &socket_proxy, &socket_ssl, &error);
8765 if (tmp_error != 0) {
8766 fprintf(stderr, "INTERNAL ERROR: %s\n", error);
8767 abort(); /* This must be never arrives because the command line
8768 not editable by the user. */
8769 }
8770 idx += kw->skip;
8771 }
8772 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01008773#endif
Thierry Fournier75933d42016-01-21 09:30:18 +01008774
8775 RESET_SAFE_LJMP(gL.T);
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01008776}
Willy Tarreaubb57d942016-12-21 19:04:56 +01008777
Tim Duesterhusd0c0ca22020-07-04 11:53:26 +02008778static void hlua_deinit()
8779{
8780 lua_close(gL.T);
8781}
8782
8783REGISTER_POST_DEINIT(hlua_deinit);
8784
Willy Tarreau80713382018-11-26 10:19:54 +01008785static void hlua_register_build_options(void)
8786{
Willy Tarreaubb57d942016-12-21 19:04:56 +01008787 char *ptr = NULL;
Willy Tarreau80713382018-11-26 10:19:54 +01008788
Willy Tarreaubb57d942016-12-21 19:04:56 +01008789 memprintf(&ptr, "Built with Lua version : %s", LUA_RELEASE);
8790 hap_register_build_opts(ptr, 1);
8791}
Willy Tarreau80713382018-11-26 10:19:54 +01008792
8793INITCALL0(STG_REGISTER, hlua_register_build_options);