blob: 58803e2b3bbfd6d99a0052af0b33faef37ff89fc [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>
Mark Lakes56cc1252018-03-27 09:48:06 +020014#include <limits.h>
Thierry FOURNIERbabae282015-09-17 11:36:37 +020015#include <setjmp.h>
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +010016
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +010017#include <lauxlib.h>
18#include <lua.h>
19#include <lualib.h>
20
Thierry FOURNIER463119c2015-03-10 00:35:36 +010021#if !defined(LUA_VERSION_NUM) || LUA_VERSION_NUM < 503
22#error "Requires Lua 5.3 or later."
Cyril Bontédc0306e2015-03-02 00:08:40 +010023#endif
24
Thierry FOURNIER380d0932015-01-23 14:27:52 +010025#include <ebpttree.h>
26
27#include <common/cfgparse.h>
Willy Tarreaub059b892018-10-16 17:57:36 +020028#include <common/compiler.h>
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +020029#include <common/hathreads.h>
Willy Tarreau0108d902018-11-25 19:14:37 +010030#include <common/initcall.h>
31#include <common/xref.h>
Christopher Faulet724a12c2018-12-13 22:12:15 +010032#include <common/h1.h>
Thierry FOURNIER380d0932015-01-23 14:27:52 +010033
William Lallemand9ed62032016-11-21 17:49:11 +010034#include <types/cli.h>
Thierry FOURNIER380d0932015-01-23 14:27:52 +010035#include <types/hlua.h>
36#include <types/proxy.h>
William Lallemand9ed62032016-11-21 17:49:11 +010037#include <types/stats.h>
Thierry FOURNIER380d0932015-01-23 14:27:52 +010038
Thierry FOURNIER55da1652015-01-23 11:36:30 +010039#include <proto/arg.h>
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020040#include <proto/applet.h>
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010041#include <proto/channel.h>
William Lallemand9ed62032016-11-21 17:49:11 +010042#include <proto/cli.h>
Willy Tarreaua71f6422016-11-16 17:00:14 +010043#include <proto/connection.h>
William Lallemand9ed62032016-11-21 17:49:11 +010044#include <proto/stats.h>
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +010045#include <proto/hlua.h>
Thierry Fournierfb0b5462016-01-21 09:28:58 +010046#include <proto/hlua_fcn.h>
Willy Tarreau79e57332018-10-02 16:01:16 +020047#include <proto/http_fetch.h>
Christopher Faulet724a12c2018-12-13 22:12:15 +010048#include <proto/http_htx.h>
Willy Tarreau61c112a2018-10-02 16:43:32 +020049#include <proto/http_rules.h>
Thierry FOURNIER3def3932015-04-07 11:27:54 +020050#include <proto/map.h>
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010051#include <proto/obj_type.h>
Patrick Hemmer268a7072018-05-11 12:52:31 -040052#include <proto/queue.h>
Thierry FOURNIER83758bb2015-02-04 13:21:04 +010053#include <proto/pattern.h>
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +010054#include <proto/payload.h>
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020055#include <proto/http_ana.h>
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +010056#include <proto/sample.h>
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010057#include <proto/server.h>
Willy Tarreaufeb76402015-04-03 14:10:06 +020058#include <proto/session.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020059#include <proto/stream.h>
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010060#include <proto/stream_interface.h>
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +010061#include <proto/task.h>
Willy Tarreau39713102016-11-25 15:49:32 +010062#include <proto/tcp_rules.h>
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +020063#include <proto/vars.h>
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +010064
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +010065/* Lua uses longjmp to perform yield or throwing errors. This
66 * macro is used only for identifying the function that can
67 * not return because a longjmp is executed.
68 * __LJMP marks a prototype of hlua file that can use longjmp.
69 * WILL_LJMP() marks an lua function that will use longjmp.
70 * MAY_LJMP() marks an lua function that may use longjmp.
71 */
72#define __LJMP
Willy Tarreau4e7cc332018-10-20 17:45:48 +020073#define WILL_LJMP(func) do { func; my_unreachable(); } while(0)
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +010074#define MAY_LJMP(func) func
75
Thierry FOURNIERbabae282015-09-17 11:36:37 +020076/* This couple of function executes securely some Lua calls outside of
77 * the lua runtime environment. Each Lua call can return a longjmp
78 * if it encounter a memory error.
79 *
80 * Lua documentation extract:
81 *
82 * If an error happens outside any protected environment, Lua calls
83 * a panic function (see lua_atpanic) and then calls abort, thus
84 * exiting the host application. Your panic function can avoid this
85 * exit by never returning (e.g., doing a long jump to your own
86 * recovery point outside Lua).
87 *
88 * The panic function runs as if it were a message handler (see
89 * §2.3); in particular, the error message is at the top of the
90 * stack. However, there is no guarantee about stack space. To push
91 * anything on the stack, the panic function must first check the
92 * available space (see §4.2).
93 *
94 * We must check all the Lua entry point. This includes:
95 * - The include/proto/hlua.h exported functions
96 * - the task wrapper function
97 * - The action wrapper function
98 * - The converters wrapper function
99 * - The sample-fetch wrapper functions
100 *
101 * It is tolerated that the initilisation function returns an abort.
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -0800102 * Before each Lua abort, an error message is written on stderr.
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200103 *
104 * The macro SET_SAFE_LJMP initialise the longjmp. The Macro
105 * RESET_SAFE_LJMP reset the longjmp. These function must be macro
106 * because they must be exists in the program stack when the longjmp
107 * is called.
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +0200108 *
109 * Note that the Lua processing is not really thread safe. It provides
110 * heavy system which consists to add our own lock function in the Lua
111 * code and recompile the library. This system will probably not accepted
112 * by maintainers of various distribs.
113 *
114 * Our main excution point of the Lua is the function lua_resume(). A
115 * quick looking on the Lua sources displays a lua_lock() a the start
116 * of function and a lua_unlock() at the end of the function. So I
117 * conclude that the Lua thread safe mode just perform a mutex around
118 * all execution. So I prefer to do this in the HAProxy code, it will be
119 * easier for distro maintainers.
120 *
121 * Note that the HAProxy lua functions rounded by the macro SET_SAFE_LJMP
122 * and RESET_SAFE_LJMP manipulates the Lua stack, so it will be careful
123 * to set mutex around these functions.
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200124 */
Willy Tarreau86abe442018-11-25 20:12:18 +0100125__decl_spinlock(hlua_global_lock);
Thierry FOURNIERffbad792017-07-12 11:39:04 +0200126THREAD_LOCAL jmp_buf safe_ljmp_env;
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200127static int hlua_panic_safe(lua_State *L) { return 0; }
128static int hlua_panic_ljmp(lua_State *L) { longjmp(safe_ljmp_env, 1); }
129
130#define SET_SAFE_LJMP(__L) \
131 ({ \
132 int ret; \
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100133 HA_SPIN_LOCK(LUA_LOCK, &hlua_global_lock); \
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200134 if (setjmp(safe_ljmp_env) != 0) { \
135 lua_atpanic(__L, hlua_panic_safe); \
136 ret = 0; \
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100137 HA_SPIN_UNLOCK(LUA_LOCK, &hlua_global_lock); \
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200138 } else { \
139 lua_atpanic(__L, hlua_panic_ljmp); \
140 ret = 1; \
141 } \
142 ret; \
143 })
144
145/* If we are the last function catching Lua errors, we
146 * must reset the panic function.
147 */
148#define RESET_SAFE_LJMP(__L) \
149 do { \
150 lua_atpanic(__L, hlua_panic_safe); \
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100151 HA_SPIN_UNLOCK(LUA_LOCK, &hlua_global_lock); \
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200152 } while(0)
153
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +0200154/* Applet status flags */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200155#define APPLET_DONE 0x01 /* applet processing is done. */
Christopher Faulet18c2e8d2019-03-01 12:02:08 +0100156/* unused: 0x02 */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200157#define APPLET_HDR_SENT 0x04 /* Response header sent. */
Christopher Fauleta2097962019-07-15 16:25:33 +0200158/* unused: 0x08, 0x10 */
Thierry FOURNIERd93ea2b2015-12-20 19:14:52 +0100159#define APPLET_HTTP11 0x20 /* Last chunk sent. */
Christopher Faulet56a3d6e2019-02-27 22:06:23 +0100160#define APPLET_RSP_SENT 0x40 /* The response was fully sent */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200161
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100162/* The main Lua execution context. */
163struct hlua gL;
164
Thierry FOURNIERebed6e92016-12-16 11:54:07 +0100165/* This is the memory pool containing struct lua for applets
166 * (including cli).
167 */
Willy Tarreau8ceae722018-11-26 11:58:30 +0100168DECLARE_STATIC_POOL(pool_head_hlua, "hlua", sizeof(struct hlua));
Thierry FOURNIERebed6e92016-12-16 11:54:07 +0100169
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +0100170/* Used for Socket connection. */
171static struct proxy socket_proxy;
172static struct server socket_tcp;
173#ifdef USE_OPENSSL
174static struct server socket_ssl;
175#endif
176
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +0100177/* List head of the function called at the initialisation time. */
178struct list hlua_init_functions = LIST_HEAD_INIT(hlua_init_functions);
179
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +0100180/* The following variables contains the reference of the different
181 * Lua classes. These references are useful for identify metadata
182 * associated with an object.
183 */
Thierry FOURNIER65f34c62015-02-16 20:11:43 +0100184static int class_txn_ref;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +0100185static int class_socket_ref;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +0100186static int class_channel_ref;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +0100187static int class_fetches_ref;
Thierry FOURNIER594afe72015-03-10 23:58:30 +0100188static int class_converters_ref;
Thierry FOURNIER08504f42015-03-16 14:17:08 +0100189static int class_http_ref;
Thierry FOURNIER3def3932015-04-07 11:27:54 +0200190static int class_map_ref;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +0200191static int class_applet_tcp_ref;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200192static int class_applet_http_ref;
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +0100193
Thierry FOURNIERbd413492015-03-03 16:52:26 +0100194/* Global Lua execution timeout. By default Lua, execution linked
Willy Tarreau87b09662015-04-03 00:22:06 +0200195 * with stream (actions, sample-fetches and converters) have a
Thierry FOURNIERbd413492015-03-03 16:52:26 +0100196 * short timeout. Lua linked with tasks doesn't have a timeout
197 * because a task may remain alive during all the haproxy execution.
198 */
199static unsigned int hlua_timeout_session = 4000; /* session timeout. */
200static unsigned int hlua_timeout_task = TICK_ETERNITY; /* task timeout. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +0200201static unsigned int hlua_timeout_applet = 4000; /* applet timeout. */
Thierry FOURNIERbd413492015-03-03 16:52:26 +0100202
Thierry FOURNIERee9f8022015-03-03 17:37:37 +0100203/* Interrupts the Lua processing each "hlua_nb_instruction" instructions.
204 * it is used for preventing infinite loops.
205 *
206 * I test the scheer with an infinite loop containing one incrementation
207 * and one test. I run this loop between 10 seconds, I raise a ceil of
208 * 710M loops from one interrupt each 9000 instructions, so I fix the value
209 * to one interrupt each 10 000 instructions.
210 *
211 * configured | Number of
212 * instructions | loops executed
213 * between two | in milions
214 * forced yields |
215 * ---------------+---------------
216 * 10 | 160
217 * 500 | 670
218 * 1000 | 680
219 * 5000 | 700
220 * 7000 | 700
221 * 8000 | 700
222 * 9000 | 710 <- ceil
223 * 10000 | 710
224 * 100000 | 710
225 * 1000000 | 710
226 *
227 */
228static unsigned int hlua_nb_instruction = 10000;
229
Willy Tarreau32f61e22015-03-18 17:54:59 +0100230/* Descriptor for the memory allocation state. If limit is not null, it will
231 * be enforced on any memory allocation.
232 */
233struct hlua_mem_allocator {
234 size_t allocated;
235 size_t limit;
236};
237
238static struct hlua_mem_allocator hlua_global_allocator;
239
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100240/* These functions converts types between HAProxy internal args or
241 * sample and LUA types. Another function permits to check if the
242 * LUA stack contains arguments according with an required ARG_T
243 * format.
244 */
245static int hlua_arg2lua(lua_State *L, const struct arg *arg);
246static int hlua_lua2arg(lua_State *L, int ud, struct arg *arg);
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100247__LJMP static int hlua_lua2arg_check(lua_State *L, int first, struct arg *argp,
David Carlier0c437f42016-04-27 16:21:56 +0100248 uint64_t mask, struct proxy *p);
Willy Tarreau5eadada2015-03-10 17:28:54 +0100249static int hlua_smp2lua(lua_State *L, struct sample *smp);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100250static int hlua_smp2lua_str(lua_State *L, struct sample *smp);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100251static int hlua_lua2smp(lua_State *L, int ud, struct sample *smp);
252
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200253__LJMP static int hlua_http_get_headers(lua_State *L, struct hlua_txn *htxn, struct http_msg *msg);
254
Thierry FOURNIER23bc3752015-09-11 19:15:43 +0200255#define SEND_ERR(__be, __fmt, __args...) \
256 do { \
257 send_log(__be, LOG_ERR, __fmt, ## __args); \
258 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) \
Christopher Faulet767a84b2017-11-24 16:50:31 +0100259 ha_alert(__fmt, ## __args); \
Thierry FOURNIER23bc3752015-09-11 19:15:43 +0200260 } while (0)
261
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100262/* Used to check an Lua function type in the stack. It creates and
263 * returns a reference of the function. This function throws an
264 * error if the rgument is not a "function".
265 */
266__LJMP unsigned int hlua_checkfunction(lua_State *L, int argno)
267{
268 if (!lua_isfunction(L, argno)) {
Thierry FOURNIERfd1e9552018-02-23 18:41:18 +0100269 const char *msg = lua_pushfstring(L, "function expected, got %s", luaL_typename(L, argno));
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100270 WILL_LJMP(luaL_argerror(L, argno, msg));
271 }
272 lua_pushvalue(L, argno);
273 return luaL_ref(L, LUA_REGISTRYINDEX);
274}
275
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200276/* Return the string that is of the top of the stack. */
277const char *hlua_get_top_error_string(lua_State *L)
278{
279 if (lua_gettop(L) < 1)
280 return "unknown error";
281 if (lua_type(L, -1) != LUA_TSTRING)
282 return "unknown error";
283 return lua_tostring(L, -1);
284}
285
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200286__LJMP static const char *hlua_traceback(lua_State *L)
287{
288 lua_Debug ar;
289 int level = 0;
Willy Tarreau83061a82018-07-13 11:56:34 +0200290 struct buffer *msg = get_trash_chunk();
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200291 int filled = 0;
292
293 while (lua_getstack(L, level++, &ar)) {
294
295 /* Add separator */
296 if (filled)
297 chunk_appendf(msg, ", ");
298 filled = 1;
299
300 /* Fill fields:
301 * 'S': fills in the fields source, short_src, linedefined, lastlinedefined, and what;
302 * 'l': fills in the field currentline;
303 * 'n': fills in the field name and namewhat;
304 * 't': fills in the field istailcall;
305 */
306 lua_getinfo(L, "Slnt", &ar);
307
308 /* Append code localisation */
309 if (ar.currentline > 0)
310 chunk_appendf(msg, "%s:%d ", ar.short_src, ar.currentline);
311 else
312 chunk_appendf(msg, "%s ", ar.short_src);
313
314 /*
315 * Get function name
316 *
317 * if namewhat is no empty, name is defined.
318 * what contains "Lua" for Lua function, "C" for C function,
319 * or "main" for main code.
320 */
321 if (*ar.namewhat != '\0' && ar.name != NULL) /* is there a name from code? */
322 chunk_appendf(msg, "%s '%s'", ar.namewhat, ar.name); /* use it */
323
324 else if (*ar.what == 'm') /* "main", the code is not executed in a function */
325 chunk_appendf(msg, "main chunk");
326
327 else if (*ar.what != 'C') /* for Lua functions, use <file:line> */
328 chunk_appendf(msg, "C function line %d", ar.linedefined);
329
330 else /* nothing left... */
331 chunk_appendf(msg, "?");
332
333
334 /* Display tailed call */
335 if (ar.istailcall)
336 chunk_appendf(msg, " ...");
337 }
338
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200339 return msg->area;
Thierry FOURNIERfc044c92018-06-07 14:40:48 +0200340}
341
342
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100343/* This function check the number of arguments available in the
344 * stack. If the number of arguments available is not the same
345 * then <nb> an error is throwed.
346 */
347__LJMP static inline void check_args(lua_State *L, int nb, char *fcn)
348{
349 if (lua_gettop(L) == nb)
350 return;
351 WILL_LJMP(luaL_error(L, "'%s' needs %d arguments", fcn, nb));
352}
353
Mark Lakes22154b42018-01-29 14:38:40 -0800354/* This function pushes an error string prefixed by the file name
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100355 * and the line number where the error is encountered.
356 */
357static int hlua_pusherror(lua_State *L, const char *fmt, ...)
358{
359 va_list argp;
360 va_start(argp, fmt);
361 luaL_where(L, 1);
362 lua_pushvfstring(L, fmt, argp);
363 va_end(argp);
364 lua_concat(L, 2);
365 return 1;
366}
367
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100368/* This functions is used with sample fetch and converters. It
369 * converts the HAProxy configuration argument in a lua stack
370 * values.
371 *
372 * It takes an array of "arg", and each entry of the array is
373 * converted and pushed in the LUA stack.
374 */
375static int hlua_arg2lua(lua_State *L, const struct arg *arg)
376{
377 switch (arg->type) {
378 case ARGT_SINT:
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100379 case ARGT_TIME:
380 case ARGT_SIZE:
Thierry FOURNIERf90838b2015-03-06 13:48:32 +0100381 lua_pushinteger(L, arg->data.sint);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100382 break;
383
384 case ARGT_STR:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200385 lua_pushlstring(L, arg->data.str.area, arg->data.str.data);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100386 break;
387
388 case ARGT_IPV4:
389 case ARGT_IPV6:
390 case ARGT_MSK4:
391 case ARGT_MSK6:
392 case ARGT_FE:
393 case ARGT_BE:
394 case ARGT_TAB:
395 case ARGT_SRV:
396 case ARGT_USR:
397 case ARGT_MAP:
398 default:
399 lua_pushnil(L);
400 break;
401 }
402 return 1;
403}
404
405/* This function take one entrie in an LUA stack at the index "ud",
406 * and try to convert it in an HAProxy argument entry. This is useful
407 * with sample fetch wrappers. The input arguments are gived to the
408 * lua wrapper and converted as arg list by thi function.
409 */
410static int hlua_lua2arg(lua_State *L, int ud, struct arg *arg)
411{
412 switch (lua_type(L, ud)) {
413
414 case LUA_TNUMBER:
415 case LUA_TBOOLEAN:
416 arg->type = ARGT_SINT;
417 arg->data.sint = lua_tointeger(L, ud);
418 break;
419
420 case LUA_TSTRING:
421 arg->type = ARGT_STR;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200422 arg->data.str.area = (char *)lua_tolstring(L, ud, (size_t *)&arg->data.str.data);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100423 break;
424
425 case LUA_TUSERDATA:
426 case LUA_TNIL:
427 case LUA_TTABLE:
428 case LUA_TFUNCTION:
429 case LUA_TTHREAD:
430 case LUA_TLIGHTUSERDATA:
431 arg->type = ARGT_SINT;
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +0200432 arg->data.sint = 0;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100433 break;
434 }
435 return 1;
436}
437
438/* the following functions are used to convert a struct sample
439 * in Lua type. This useful to convert the return of the
440 * fetchs or converters.
441 */
Willy Tarreau5eadada2015-03-10 17:28:54 +0100442static int hlua_smp2lua(lua_State *L, struct sample *smp)
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100443{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200444 switch (smp->data.type) {
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100445 case SMP_T_SINT:
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100446 case SMP_T_BOOL:
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200447 lua_pushinteger(L, smp->data.u.sint);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100448 break;
449
450 case SMP_T_BIN:
451 case SMP_T_STR:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200452 lua_pushlstring(L, smp->data.u.str.area, smp->data.u.str.data);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100453 break;
454
455 case SMP_T_METH:
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200456 switch (smp->data.u.meth.meth) {
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100457 case HTTP_METH_OPTIONS: lua_pushstring(L, "OPTIONS"); break;
458 case HTTP_METH_GET: lua_pushstring(L, "GET"); break;
459 case HTTP_METH_HEAD: lua_pushstring(L, "HEAD"); break;
460 case HTTP_METH_POST: lua_pushstring(L, "POST"); break;
461 case HTTP_METH_PUT: lua_pushstring(L, "PUT"); break;
462 case HTTP_METH_DELETE: lua_pushstring(L, "DELETE"); break;
463 case HTTP_METH_TRACE: lua_pushstring(L, "TRACE"); break;
464 case HTTP_METH_CONNECT: lua_pushstring(L, "CONNECT"); break;
465 case HTTP_METH_OTHER:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200466 lua_pushlstring(L, smp->data.u.meth.str.area, smp->data.u.meth.str.data);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100467 break;
468 default:
469 lua_pushnil(L);
470 break;
471 }
472 break;
473
474 case SMP_T_IPV4:
475 case SMP_T_IPV6:
476 case SMP_T_ADDR: /* This type is never used to qualify a sample. */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200477 if (sample_casts[smp->data.type][SMP_T_STR] &&
478 sample_casts[smp->data.type][SMP_T_STR](smp))
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200479 lua_pushlstring(L, smp->data.u.str.area, smp->data.u.str.data);
Willy Tarreau5eadada2015-03-10 17:28:54 +0100480 else
481 lua_pushnil(L);
482 break;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100483 default:
484 lua_pushnil(L);
485 break;
486 }
487 return 1;
488}
489
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100490/* the following functions are used to convert a struct sample
491 * in Lua strings. This is useful to convert the return of the
492 * fetchs or converters.
493 */
494static int hlua_smp2lua_str(lua_State *L, struct sample *smp)
495{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200496 switch (smp->data.type) {
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100497
498 case SMP_T_BIN:
499 case SMP_T_STR:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200500 lua_pushlstring(L, smp->data.u.str.area, smp->data.u.str.data);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100501 break;
502
503 case SMP_T_METH:
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200504 switch (smp->data.u.meth.meth) {
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100505 case HTTP_METH_OPTIONS: lua_pushstring(L, "OPTIONS"); break;
506 case HTTP_METH_GET: lua_pushstring(L, "GET"); break;
507 case HTTP_METH_HEAD: lua_pushstring(L, "HEAD"); break;
508 case HTTP_METH_POST: lua_pushstring(L, "POST"); break;
509 case HTTP_METH_PUT: lua_pushstring(L, "PUT"); break;
510 case HTTP_METH_DELETE: lua_pushstring(L, "DELETE"); break;
511 case HTTP_METH_TRACE: lua_pushstring(L, "TRACE"); break;
512 case HTTP_METH_CONNECT: lua_pushstring(L, "CONNECT"); break;
513 case HTTP_METH_OTHER:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200514 lua_pushlstring(L, smp->data.u.meth.str.area, smp->data.u.meth.str.data);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100515 break;
516 default:
517 lua_pushstring(L, "");
518 break;
519 }
520 break;
521
522 case SMP_T_SINT:
523 case SMP_T_BOOL:
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100524 case SMP_T_IPV4:
525 case SMP_T_IPV6:
526 case SMP_T_ADDR: /* This type is never used to qualify a sample. */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200527 if (sample_casts[smp->data.type][SMP_T_STR] &&
528 sample_casts[smp->data.type][SMP_T_STR](smp))
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200529 lua_pushlstring(L, smp->data.u.str.area, smp->data.u.str.data);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +0100530 else
531 lua_pushstring(L, "");
532 break;
533 default:
534 lua_pushstring(L, "");
535 break;
536 }
537 return 1;
538}
539
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100540/* the following functions are used to convert an Lua type in a
541 * struct sample. This is useful to provide data from a converter
542 * to the LUA code.
543 */
544static int hlua_lua2smp(lua_State *L, int ud, struct sample *smp)
545{
546 switch (lua_type(L, ud)) {
547
548 case LUA_TNUMBER:
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200549 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200550 smp->data.u.sint = lua_tointeger(L, ud);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100551 break;
552
553
554 case LUA_TBOOLEAN:
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200555 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200556 smp->data.u.sint = lua_toboolean(L, ud);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100557 break;
558
559 case LUA_TSTRING:
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200560 smp->data.type = SMP_T_STR;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100561 smp->flags |= SMP_F_CONST;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200562 smp->data.u.str.area = (char *)lua_tolstring(L, ud, (size_t *)&smp->data.u.str.data);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100563 break;
564
565 case LUA_TUSERDATA:
566 case LUA_TNIL:
567 case LUA_TTABLE:
568 case LUA_TFUNCTION:
569 case LUA_TTHREAD:
570 case LUA_TLIGHTUSERDATA:
Thierry FOURNIER93405e12015-08-26 14:19:03 +0200571 case LUA_TNONE:
572 default:
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200573 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200574 smp->data.u.sint = 0;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100575 break;
576 }
577 return 1;
578}
579
580/* This function check the "argp" builded by another conversion function
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -0800581 * is in accord with the expected argp defined by the "mask". The function
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100582 * returns true or false. It can be adjust the types if there compatibles.
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100583 *
584 * This function assumes thant the argp argument contains ARGM_NBARGS + 1
585 * entries.
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100586 */
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100587__LJMP int hlua_lua2arg_check(lua_State *L, int first, struct arg *argp,
David Carlier0c437f42016-04-27 16:21:56 +0100588 uint64_t mask, struct proxy *p)
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100589{
590 int min_arg;
591 int idx;
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100592 struct proxy *px;
593 char *sname, *pname;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100594
595 idx = 0;
596 min_arg = ARGM(mask);
597 mask >>= ARGM_BITS;
598
599 while (1) {
600
601 /* Check oversize. */
602 if (idx >= ARGM_NBARGS && argp[idx].type != ARGT_STOP) {
Cyril Bonté577a36a2015-03-02 00:08:38 +0100603 WILL_LJMP(luaL_argerror(L, first + idx, "Malformed argument mask"));
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100604 }
605
606 /* Check for mandatory arguments. */
607 if (argp[idx].type == ARGT_STOP) {
Thierry FOURNIER3caa0392015-03-13 13:38:17 +0100608 if (idx < min_arg) {
609
610 /* If miss other argument than the first one, we return an error. */
611 if (idx > 0)
612 WILL_LJMP(luaL_argerror(L, first + idx, "Mandatory argument expected"));
613
614 /* If first argument have a certain type, some default values
615 * may be used. See the function smp_resolve_args().
616 */
617 switch (mask & ARGT_MASK) {
618
619 case ARGT_FE:
620 if (!(p->cap & PR_CAP_FE))
621 WILL_LJMP(luaL_argerror(L, first + idx, "Mandatory argument expected"));
622 argp[idx].data.prx = p;
623 argp[idx].type = ARGT_FE;
624 argp[idx+1].type = ARGT_STOP;
625 break;
626
627 case ARGT_BE:
628 if (!(p->cap & PR_CAP_BE))
629 WILL_LJMP(luaL_argerror(L, first + idx, "Mandatory argument expected"));
630 argp[idx].data.prx = p;
631 argp[idx].type = ARGT_BE;
632 argp[idx+1].type = ARGT_STOP;
633 break;
634
635 case ARGT_TAB:
636 argp[idx].data.prx = p;
637 argp[idx].type = ARGT_TAB;
638 argp[idx+1].type = ARGT_STOP;
639 break;
640
641 default:
642 WILL_LJMP(luaL_argerror(L, first + idx, "Mandatory argument expected"));
643 break;
644 }
645 }
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100646 return 0;
647 }
648
649 /* Check for exceed the number of requiered argument. */
650 if ((mask & ARGT_MASK) == ARGT_STOP &&
651 argp[idx].type != ARGT_STOP) {
652 WILL_LJMP(luaL_argerror(L, first + idx, "Last argument expected"));
653 }
654
655 if ((mask & ARGT_MASK) == ARGT_STOP &&
656 argp[idx].type == ARGT_STOP) {
657 return 0;
658 }
659
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100660 /* Convert some argument types. */
661 switch (mask & ARGT_MASK) {
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100662 case ARGT_SINT:
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100663 if (argp[idx].type != ARGT_SINT)
664 WILL_LJMP(luaL_argerror(L, first + idx, "integer expected"));
665 argp[idx].type = ARGT_SINT;
666 break;
667
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100668 case ARGT_TIME:
669 if (argp[idx].type != ARGT_SINT)
670 WILL_LJMP(luaL_argerror(L, first + idx, "integer expected"));
Thierry FOURNIER29176f32015-07-07 00:41:29 +0200671 argp[idx].type = ARGT_TIME;
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100672 break;
673
674 case ARGT_SIZE:
675 if (argp[idx].type != ARGT_SINT)
676 WILL_LJMP(luaL_argerror(L, first + idx, "integer expected"));
Thierry FOURNIER29176f32015-07-07 00:41:29 +0200677 argp[idx].type = ARGT_SIZE;
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100678 break;
679
680 case ARGT_FE:
681 if (argp[idx].type != ARGT_STR)
682 WILL_LJMP(luaL_argerror(L, first + idx, "string expected"));
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200683 memcpy(trash.area, argp[idx].data.str.area,
684 argp[idx].data.str.data);
685 trash.area[argp[idx].data.str.data] = 0;
686 argp[idx].data.prx = proxy_fe_by_name(trash.area);
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100687 if (!argp[idx].data.prx)
688 WILL_LJMP(luaL_argerror(L, first + idx, "frontend doesn't exist"));
689 argp[idx].type = ARGT_FE;
690 break;
691
692 case ARGT_BE:
693 if (argp[idx].type != ARGT_STR)
694 WILL_LJMP(luaL_argerror(L, first + idx, "string expected"));
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200695 memcpy(trash.area, argp[idx].data.str.area,
696 argp[idx].data.str.data);
697 trash.area[argp[idx].data.str.data] = 0;
698 argp[idx].data.prx = proxy_be_by_name(trash.area);
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100699 if (!argp[idx].data.prx)
700 WILL_LJMP(luaL_argerror(L, first + idx, "backend doesn't exist"));
701 argp[idx].type = ARGT_BE;
702 break;
703
704 case ARGT_TAB:
705 if (argp[idx].type != ARGT_STR)
706 WILL_LJMP(luaL_argerror(L, first + idx, "string expected"));
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200707 memcpy(trash.area, argp[idx].data.str.area,
708 argp[idx].data.str.data);
709 trash.area[argp[idx].data.str.data] = 0;
710 argp[idx].data.prx = proxy_tbl_by_name(trash.area);
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100711 if (!argp[idx].data.prx)
712 WILL_LJMP(luaL_argerror(L, first + idx, "table doesn't exist"));
713 argp[idx].type = ARGT_TAB;
714 break;
715
716 case ARGT_SRV:
717 if (argp[idx].type != ARGT_STR)
718 WILL_LJMP(luaL_argerror(L, first + idx, "string expected"));
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200719 memcpy(trash.area, argp[idx].data.str.area,
720 argp[idx].data.str.data);
721 trash.area[argp[idx].data.str.data] = 0;
722 sname = strrchr(trash.area, '/');
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100723 if (sname) {
724 *sname++ = '\0';
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200725 pname = trash.area;
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200726 px = proxy_be_by_name(pname);
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100727 if (!px)
728 WILL_LJMP(luaL_argerror(L, first + idx, "backend doesn't exist"));
729 }
730 else {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200731 sname = trash.area;
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100732 px = p;
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100733 }
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100734 argp[idx].data.srv = findserver(px, sname);
735 if (!argp[idx].data.srv)
736 WILL_LJMP(luaL_argerror(L, first + idx, "server doesn't exist"));
737 argp[idx].type = ARGT_SRV;
738 break;
739
740 case ARGT_IPV4:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200741 memcpy(trash.area, argp[idx].data.str.area,
742 argp[idx].data.str.data);
743 trash.area[argp[idx].data.str.data] = 0;
744 if (inet_pton(AF_INET, trash.area, &argp[idx].data.ipv4))
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100745 WILL_LJMP(luaL_argerror(L, first + idx, "invalid IPv4 address"));
746 argp[idx].type = ARGT_IPV4;
747 break;
748
749 case ARGT_MSK4:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200750 memcpy(trash.area, argp[idx].data.str.area,
751 argp[idx].data.str.data);
752 trash.area[argp[idx].data.str.data] = 0;
753 if (!str2mask(trash.area, &argp[idx].data.ipv4))
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100754 WILL_LJMP(luaL_argerror(L, first + idx, "invalid IPv4 mask"));
755 argp[idx].type = ARGT_MSK4;
756 break;
757
758 case ARGT_IPV6:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200759 memcpy(trash.area, argp[idx].data.str.area,
760 argp[idx].data.str.data);
761 trash.area[argp[idx].data.str.data] = 0;
762 if (inet_pton(AF_INET6, trash.area, &argp[idx].data.ipv6))
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100763 WILL_LJMP(luaL_argerror(L, first + idx, "invalid IPv6 address"));
764 argp[idx].type = ARGT_IPV6;
765 break;
766
767 case ARGT_MSK6:
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200768 memcpy(trash.area, argp[idx].data.str.area,
769 argp[idx].data.str.data);
770 trash.area[argp[idx].data.str.data] = 0;
771 if (!str2mask6(trash.area, &argp[idx].data.ipv6))
Tim Duesterhusb814da62018-01-25 16:24:50 +0100772 WILL_LJMP(luaL_argerror(L, first + idx, "invalid IPv6 mask"));
773 argp[idx].type = ARGT_MSK6;
774 break;
775
Thierry FOURNIER7f4942a2015-03-12 18:28:50 +0100776 case ARGT_MAP:
777 case ARGT_REG:
778 case ARGT_USR:
779 WILL_LJMP(luaL_argerror(L, first + idx, "type not yet supported"));
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100780 break;
781 }
782
783 /* Check for type of argument. */
784 if ((mask & ARGT_MASK) != argp[idx].type) {
785 const char *msg = lua_pushfstring(L, "'%s' expected, got '%s'",
786 arg_type_names[(mask & ARGT_MASK)],
787 arg_type_names[argp[idx].type & ARGT_MASK]);
788 WILL_LJMP(luaL_argerror(L, first + idx, msg));
789 }
790
791 /* Next argument. */
792 mask >>= ARGT_BITS;
793 idx++;
794 }
795}
796
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100797/*
798 * The following functions are used to make correspondance between the the
799 * executed lua pointer and the "struct hlua *" that contain the context.
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100800 *
801 * - hlua_gethlua : return the hlua context associated with an lua_State.
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100802 * - hlua_sethlua : create the association between hlua context and lua_state.
803 */
804static inline struct hlua *hlua_gethlua(lua_State *L)
805{
Thierry FOURNIER38c5fd62015-03-10 02:40:29 +0100806 struct hlua **hlua = lua_getextraspace(L);
807 return *hlua;
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100808}
809static inline void hlua_sethlua(struct hlua *hlua)
810{
Thierry FOURNIER38c5fd62015-03-10 02:40:29 +0100811 struct hlua **hlua_store = lua_getextraspace(hlua->T);
812 *hlua_store = hlua;
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100813}
814
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +0100815/* This function is used to send logs. It try to send on screen (stderr)
816 * and on the default syslog server.
817 */
818static inline void hlua_sendlog(struct proxy *px, int level, const char *msg)
819{
820 struct tm tm;
821 char *p;
822
823 /* Cleanup the log message. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200824 p = trash.area;
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +0100825 for (; *msg != '\0'; msg++, p++) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200826 if (p >= trash.area + trash.size - 1) {
Thierry FOURNIERccf00632015-09-16 12:47:03 +0200827 /* Break the message if exceed the buffer size. */
828 *(p-4) = ' ';
829 *(p-3) = '.';
830 *(p-2) = '.';
831 *(p-1) = '.';
832 break;
833 }
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +0100834 if (isprint(*msg))
835 *p = *msg;
836 else
837 *p = '.';
838 }
839 *p = '\0';
840
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200841 send_log(px, level, "%s\n", trash.area);
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +0100842 if (!(global.mode & MODE_QUIET) || (global.mode & (MODE_VERBOSE | MODE_STARTING))) {
Willy Tarreaua678b432015-08-28 10:14:59 +0200843 get_localtime(date.tv_sec, &tm);
844 fprintf(stderr, "[%s] %03d/%02d%02d%02d (%d) : %s\n",
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +0100845 log_levels[level], tm.tm_yday, tm.tm_hour, tm.tm_min, tm.tm_sec,
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200846 (int)getpid(), trash.area);
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +0100847 fflush(stderr);
848 }
849}
850
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +0100851/* This function just ensure that the yield will be always
852 * returned with a timeout and permit to set some flags
853 */
854__LJMP void hlua_yieldk(lua_State *L, int nresults, int ctx,
Thierry FOURNIERf90838b2015-03-06 13:48:32 +0100855 lua_KFunction k, int timeout, unsigned int flags)
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +0100856{
857 struct hlua *hlua = hlua_gethlua(L);
858
859 /* Set the wake timeout. If timeout is required, we set
860 * the expiration time.
861 */
Thierry FOURNIER10770fa2015-09-29 01:59:42 +0200862 hlua->wake_time = timeout;
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +0100863
Thierry FOURNIER4abd3ae2015-03-03 17:29:06 +0100864 hlua->flags |= flags;
865
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +0100866 /* Process the yield. */
Willy Tarreau9635e032018-10-16 17:52:55 +0200867 MAY_LJMP(lua_yieldk(L, nresults, ctx, k));
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +0100868}
869
Willy Tarreau87b09662015-04-03 00:22:06 +0200870/* This function initialises the Lua environment stored in the stream.
871 * It must be called at the start of the stream. This function creates
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100872 * an LUA coroutine. It can not be use to crete the main LUA context.
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200873 *
874 * This function is particular. it initialises a new Lua thread. If the
875 * initialisation fails (example: out of memory error), the lua function
876 * throws an error (longjmp).
877 *
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +0100878 * In some case (at least one), this function can be called from safe
879 * environement, so we must not initialise it. While the support of
880 * threads appear, the safe environment set a lock to ensure only one
881 * Lua execution at a time. If we initialize safe environment in another
882 * safe environmenet, we have a dead lock.
883 *
884 * set "already_safe" true if the context is initialized form safe
885 * Lua fonction.
886 *
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -0800887 * This function manipulates two Lua stacks: the main and the thread. Only
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200888 * the main stack can fail. The thread is not manipulated. This function
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -0800889 * MUST NOT manipulate the created thread stack state, because it is not
890 * proctected against errors thrown by the thread stack.
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100891 */
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +0100892int hlua_ctx_init(struct hlua *lua, struct task *task, int already_safe)
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100893{
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +0100894 if (!already_safe) {
895 if (!SET_SAFE_LJMP(gL.T)) {
896 lua->Tref = LUA_REFNIL;
897 return 0;
898 }
Thierry FOURNIERbabae282015-09-17 11:36:37 +0200899 }
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100900 lua->Mref = LUA_REFNIL;
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +0100901 lua->flags = 0;
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +0100902 LIST_INIT(&lua->com);
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100903 lua->T = lua_newthread(gL.T);
904 if (!lua->T) {
905 lua->Tref = LUA_REFNIL;
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +0100906 if (!already_safe)
907 RESET_SAFE_LJMP(gL.T);
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100908 return 0;
909 }
910 hlua_sethlua(lua);
911 lua->Tref = luaL_ref(gL.T, LUA_REGISTRYINDEX);
912 lua->task = task;
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +0100913 if (!already_safe)
914 RESET_SAFE_LJMP(gL.T);
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100915 return 1;
916}
917
Willy Tarreau87b09662015-04-03 00:22:06 +0200918/* Used to destroy the Lua coroutine when the attached stream or task
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100919 * is destroyed. The destroy also the memory context. The struct "lua"
920 * is not freed.
921 */
922void hlua_ctx_destroy(struct hlua *lua)
923{
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +0100924 if (!lua)
Thierry FOURNIERa718b292015-03-04 16:48:34 +0100925 return;
926
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +0100927 if (!lua->T)
928 goto end;
929
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +0100930 /* Purge all the pending signals. */
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200931 notification_purge(&lua->com);
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +0100932
Thierry FOURNIER75d02082017-07-12 13:41:33 +0200933 if (!SET_SAFE_LJMP(lua->T))
934 return;
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100935 luaL_unref(lua->T, LUA_REGISTRYINDEX, lua->Mref);
Thierry FOURNIER75d02082017-07-12 13:41:33 +0200936 RESET_SAFE_LJMP(lua->T);
Thierry FOURNIER5a50a852015-09-23 16:59:28 +0200937
Thierry FOURNIER75d02082017-07-12 13:41:33 +0200938 if (!SET_SAFE_LJMP(gL.T))
939 return;
940 luaL_unref(gL.T, LUA_REGISTRYINDEX, lua->Tref);
941 RESET_SAFE_LJMP(gL.T);
Thierry FOURNIER5a50a852015-09-23 16:59:28 +0200942 /* Forces a garbage collecting process. If the Lua program is finished
943 * without error, we run the GC on the thread pointer. Its freed all
944 * the unused memory.
945 * If the thread is finnish with an error or is currently yielded,
946 * it seems that the GC applied on the thread doesn't clean anything,
947 * so e run the GC on the main thread.
948 * NOTE: maybe this action locks all the Lua threads untiml the en of
949 * the garbage collection.
950 */
Thierry FOURNIER7c39ab42015-09-27 22:53:33 +0200951 if (lua->flags & HLUA_MUST_GC) {
Thierry FOURNIER7bd10d52017-07-17 00:44:40 +0200952 if (!SET_SAFE_LJMP(gL.T))
Thierry FOURNIER75d02082017-07-12 13:41:33 +0200953 return;
Thierry FOURNIER7bd10d52017-07-17 00:44:40 +0200954 lua_gc(gL.T, LUA_GCCOLLECT, 0);
955 RESET_SAFE_LJMP(gL.T);
Thierry FOURNIER7c39ab42015-09-27 22:53:33 +0200956 }
Thierry FOURNIER5a50a852015-09-23 16:59:28 +0200957
Thierry FOURNIERa7b536b2015-09-21 22:50:24 +0200958 lua->T = NULL;
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +0100959
960end:
Willy Tarreaubafbe012017-11-24 17:34:44 +0100961 pool_free(pool_head_hlua, lua);
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100962}
963
964/* This function is used to restore the Lua context when a coroutine
965 * fails. This function copy the common memory between old coroutine
966 * and the new coroutine. The old coroutine is destroyed, and its
967 * replaced by the new coroutine.
968 * If the flag "keep_msg" is set, the last entry of the old is assumed
969 * as string error message and it is copied in the new stack.
970 */
971static int hlua_ctx_renew(struct hlua *lua, int keep_msg)
972{
973 lua_State *T;
974 int new_ref;
975
976 /* Renew the main LUA stack doesn't have sense. */
977 if (lua == &gL)
978 return 0;
979
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100980 /* New Lua coroutine. */
981 T = lua_newthread(gL.T);
982 if (!T)
983 return 0;
984
985 /* Copy last error message. */
986 if (keep_msg)
987 lua_xmove(lua->T, T, 1);
988
989 /* Copy data between the coroutines. */
990 lua_rawgeti(lua->T, LUA_REGISTRYINDEX, lua->Mref);
991 lua_xmove(lua->T, T, 1);
992 new_ref = luaL_ref(T, LUA_REGISTRYINDEX); /* Valur poped. */
993
994 /* Destroy old data. */
995 luaL_unref(lua->T, LUA_REGISTRYINDEX, lua->Mref);
996
997 /* The thread is garbage collected by Lua. */
998 luaL_unref(gL.T, LUA_REGISTRYINDEX, lua->Tref);
999
1000 /* Fill the struct with the new coroutine values. */
1001 lua->Mref = new_ref;
1002 lua->T = T;
1003 lua->Tref = luaL_ref(gL.T, LUA_REGISTRYINDEX);
1004
1005 /* Set context. */
1006 hlua_sethlua(lua);
1007
1008 return 1;
1009}
1010
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001011void hlua_hook(lua_State *L, lua_Debug *ar)
1012{
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001013 struct hlua *hlua = hlua_gethlua(L);
1014
1015 /* Lua cannot yield when its returning from a function,
1016 * so, we can fix the interrupt hook to 1 instruction,
1017 * expecting that the function is finnished.
1018 */
1019 if (lua_gethookmask(L) & LUA_MASKRET) {
1020 lua_sethook(hlua->T, hlua_hook, LUA_MASKCOUNT, 1);
1021 return;
1022 }
1023
1024 /* restore the interrupt condition. */
1025 lua_sethook(hlua->T, hlua_hook, LUA_MASKCOUNT, hlua_nb_instruction);
1026
1027 /* If we interrupt the Lua processing in yieldable state, we yield.
1028 * If the state is not yieldable, trying yield causes an error.
1029 */
1030 if (lua_isyieldable(L))
Willy Tarreau9635e032018-10-16 17:52:55 +02001031 MAY_LJMP(hlua_yieldk(L, 0, 0, NULL, TICK_ETERNITY, HLUA_CTRLYIELD));
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001032
Thierry FOURNIERa85cfb12015-03-13 14:50:06 +01001033 /* If we cannot yield, update the clock and check the timeout. */
1034 tv_update_date(0, 1);
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001035 hlua->run_time += now_ms - hlua->start_time;
1036 if (hlua->max_time && hlua->run_time >= hlua->max_time) {
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001037 lua_pushfstring(L, "execution timeout");
1038 WILL_LJMP(lua_error(L));
1039 }
1040
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001041 /* Update the start time. */
1042 hlua->start_time = now_ms;
1043
Thierry FOURNIERcae49c92015-03-06 14:05:24 +01001044 /* Try to interrupt the process at the end of the current
1045 * unyieldable function.
1046 */
1047 lua_sethook(hlua->T, hlua_hook, LUA_MASKRET|LUA_MASKCOUNT, hlua_nb_instruction);
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001048}
1049
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001050/* This function start or resumes the Lua stack execution. If the flag
1051 * "yield_allowed" if no set and the LUA stack execution returns a yield
1052 * The function return an error.
1053 *
1054 * The function can returns 4 values:
1055 * - HLUA_E_OK : The execution is terminated without any errors.
1056 * - HLUA_E_AGAIN : The execution must continue at the next associated
1057 * task wakeup.
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001058 * - HLUA_E_ERRMSG : An error has occurred, an error message is set in
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001059 * the top of the stack.
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001060 * - HLUA_E_ERR : An error has occurred without error message.
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001061 *
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001062 * If an error occurred, the stack is renewed and it is ready to run new
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001063 * LUA code.
1064 */
1065static enum hlua_exec hlua_ctx_resume(struct hlua *lua, int yield_allowed)
1066{
1067 int ret;
1068 const char *msg;
Thierry FOURNIERfc044c92018-06-07 14:40:48 +02001069 const char *trace;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001070
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001071 /* Initialise run time counter. */
1072 if (!HLUA_IS_RUNNING(lua))
1073 lua->run_time = 0;
Thierry FOURNIERdc9ca962015-03-05 11:16:52 +01001074
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +02001075 /* Lock the whole Lua execution. This lock must be before the
1076 * label "resume_execution".
1077 */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001078 HA_SPIN_LOCK(LUA_LOCK, &hlua_global_lock);
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +02001079
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001080resume_execution:
1081
1082 /* This hook interrupts the Lua processing each 'hlua_nb_instruction'
1083 * instructions. it is used for preventing infinite loops.
1084 */
1085 lua_sethook(lua->T, hlua_hook, LUA_MASKCOUNT, hlua_nb_instruction);
1086
Thierry FOURNIER1bfc09b2015-03-05 17:10:14 +01001087 /* Remove all flags except the running flags. */
Thierry FOURNIER2f3867f2015-09-28 01:02:01 +02001088 HLUA_SET_RUN(lua);
1089 HLUA_CLR_CTRLYIELD(lua);
1090 HLUA_CLR_WAKERESWR(lua);
1091 HLUA_CLR_WAKEREQWR(lua);
Thierry FOURNIER1bfc09b2015-03-05 17:10:14 +01001092
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001093 /* Update the start time. */
1094 lua->start_time = now_ms;
1095
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001096 /* Call the function. */
1097 ret = lua_resume(lua->T, gL.T, lua->nargs);
1098 switch (ret) {
1099
1100 case LUA_OK:
1101 ret = HLUA_E_OK;
1102 break;
1103
1104 case LUA_YIELD:
Thierry FOURNIERdc9ca962015-03-05 11:16:52 +01001105 /* Check if the execution timeout is expired. It it is the case, we
1106 * break the Lua execution.
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001107 */
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02001108 tv_update_date(0, 1);
1109 lua->run_time += now_ms - lua->start_time;
1110 if (lua->max_time && lua->run_time > lua->max_time) {
Thierry FOURNIERdc9ca962015-03-05 11:16:52 +01001111 lua_settop(lua->T, 0); /* Empty the stack. */
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001112 ret = HLUA_E_ETMOUT;
Thierry FOURNIERdc9ca962015-03-05 11:16:52 +01001113 break;
1114 }
1115 /* Process the forced yield. if the general yield is not allowed or
1116 * if no task were associated this the current Lua execution
1117 * coroutine, we resume the execution. Else we want to return in the
1118 * scheduler and we want to be waked up again, to continue the
1119 * current Lua execution. So we schedule our own task.
1120 */
1121 if (HLUA_IS_CTRLYIELDING(lua)) {
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001122 if (!yield_allowed || !lua->task)
1123 goto resume_execution;
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001124 task_wakeup(lua->task, TASK_WOKEN_MSG);
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01001125 }
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001126 if (!yield_allowed) {
1127 lua_settop(lua->T, 0); /* Empty the stack. */
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001128 ret = HLUA_E_YIELD;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001129 break;
1130 }
1131 ret = HLUA_E_AGAIN;
1132 break;
1133
1134 case LUA_ERRRUN:
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02001135
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001136 /* Special exit case. The traditional exit is returned as an error
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02001137 * because the errors ares the only one mean to return immediately
1138 * from and lua execution.
1139 */
1140 if (lua->flags & HLUA_EXIT) {
1141 ret = HLUA_E_OK;
Thierry FOURNIERe1587b32015-08-28 09:54:13 +02001142 hlua_ctx_renew(lua, 0);
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02001143 break;
1144 }
1145
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001146 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001147 if (!lua_checkstack(lua->T, 1)) {
1148 ret = HLUA_E_ERR;
1149 break;
1150 }
1151 msg = lua_tostring(lua->T, -1);
1152 lua_settop(lua->T, 0); /* Empty the stack. */
1153 lua_pop(lua->T, 1);
Thierry FOURNIERfc044c92018-06-07 14:40:48 +02001154 trace = hlua_traceback(lua->T);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001155 if (msg)
Thierry FOURNIERfc044c92018-06-07 14:40:48 +02001156 lua_pushfstring(lua->T, "runtime error: %s from %s", msg, trace);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001157 else
Thierry FOURNIERfc044c92018-06-07 14:40:48 +02001158 lua_pushfstring(lua->T, "unknown runtime error from %s", trace);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001159 ret = HLUA_E_ERRMSG;
1160 break;
1161
1162 case LUA_ERRMEM:
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001163 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001164 lua_settop(lua->T, 0); /* Empty the stack. */
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001165 ret = HLUA_E_NOMEM;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001166 break;
1167
1168 case LUA_ERRERR:
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001169 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001170 if (!lua_checkstack(lua->T, 1)) {
1171 ret = HLUA_E_ERR;
1172 break;
1173 }
1174 msg = lua_tostring(lua->T, -1);
1175 lua_settop(lua->T, 0); /* Empty the stack. */
1176 lua_pop(lua->T, 1);
1177 if (msg)
1178 lua_pushfstring(lua->T, "message handler error: %s", msg);
1179 else
1180 lua_pushfstring(lua->T, "message handler error");
1181 ret = HLUA_E_ERRMSG;
1182 break;
1183
1184 default:
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01001185 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001186 lua_settop(lua->T, 0); /* Empty the stack. */
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001187 ret = HLUA_E_ERR;
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001188 break;
1189 }
1190
Thierry FOURNIER6ab4d8e2015-09-27 22:17:19 +02001191 /* This GC permits to destroy some object when a Lua timeout strikes. */
Thierry FOURNIER7c39ab42015-09-27 22:53:33 +02001192 if (lua->flags & HLUA_MUST_GC &&
1193 ret != HLUA_E_AGAIN)
Thierry FOURNIER6ab4d8e2015-09-27 22:17:19 +02001194 lua_gc(lua->T, LUA_GCCOLLECT, 0);
1195
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001196 switch (ret) {
1197 case HLUA_E_AGAIN:
1198 break;
1199
1200 case HLUA_E_ERRMSG:
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001201 notification_purge(&lua->com);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001202 hlua_ctx_renew(lua, 1);
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01001203 HLUA_CLR_RUN(lua);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001204 break;
1205
Thierry Fournierd5b073c2018-05-21 19:42:47 +02001206 case HLUA_E_ETMOUT:
1207 case HLUA_E_NOMEM:
1208 case HLUA_E_YIELD:
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001209 case HLUA_E_ERR:
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01001210 HLUA_CLR_RUN(lua);
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001211 notification_purge(&lua->com);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001212 hlua_ctx_renew(lua, 0);
1213 break;
1214
1215 case HLUA_E_OK:
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01001216 HLUA_CLR_RUN(lua);
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001217 notification_purge(&lua->com);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001218 break;
1219 }
1220
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +02001221 /* This is the main exit point, remove the Lua lock. */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001222 HA_SPIN_UNLOCK(LUA_LOCK, &hlua_global_lock);
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +02001223
Thierry FOURNIER380d0932015-01-23 14:27:52 +01001224 return ret;
1225}
1226
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02001227/* This function exit the current code. */
1228__LJMP static int hlua_done(lua_State *L)
1229{
1230 struct hlua *hlua = hlua_gethlua(L);
1231
1232 hlua->flags |= HLUA_EXIT;
1233 WILL_LJMP(lua_error(L));
1234
1235 return 0;
1236}
1237
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001238/* This function is an LUA binding. It provides a function
1239 * for deleting ACL from a referenced ACL file.
1240 */
1241__LJMP static int hlua_del_acl(lua_State *L)
1242{
1243 const char *name;
1244 const char *key;
1245 struct pat_ref *ref;
1246
1247 MAY_LJMP(check_args(L, 2, "del_acl"));
1248
1249 name = MAY_LJMP(luaL_checkstring(L, 1));
1250 key = MAY_LJMP(luaL_checkstring(L, 2));
1251
1252 ref = pat_ref_lookup(name);
1253 if (!ref)
Vincent Bernata72db182015-10-06 16:05:59 +02001254 WILL_LJMP(luaL_error(L, "'del_acl': unknown acl file '%s'", name));
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001255
1256 pat_ref_delete(ref, key);
1257 return 0;
1258}
1259
1260/* This function is an LUA binding. It provides a function
1261 * for deleting map entry from a referenced map file.
1262 */
1263static int hlua_del_map(lua_State *L)
1264{
1265 const char *name;
1266 const char *key;
1267 struct pat_ref *ref;
1268
1269 MAY_LJMP(check_args(L, 2, "del_map"));
1270
1271 name = MAY_LJMP(luaL_checkstring(L, 1));
1272 key = MAY_LJMP(luaL_checkstring(L, 2));
1273
1274 ref = pat_ref_lookup(name);
1275 if (!ref)
Vincent Bernata72db182015-10-06 16:05:59 +02001276 WILL_LJMP(luaL_error(L, "'del_map': unknown acl file '%s'", name));
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001277
1278 pat_ref_delete(ref, key);
1279 return 0;
1280}
1281
1282/* This function is an LUA binding. It provides a function
1283 * for adding ACL pattern from a referenced ACL file.
1284 */
1285static int hlua_add_acl(lua_State *L)
1286{
1287 const char *name;
1288 const char *key;
1289 struct pat_ref *ref;
1290
1291 MAY_LJMP(check_args(L, 2, "add_acl"));
1292
1293 name = MAY_LJMP(luaL_checkstring(L, 1));
1294 key = MAY_LJMP(luaL_checkstring(L, 2));
1295
1296 ref = pat_ref_lookup(name);
1297 if (!ref)
Vincent Bernata72db182015-10-06 16:05:59 +02001298 WILL_LJMP(luaL_error(L, "'add_acl': unknown acl file '%s'", name));
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001299
1300 if (pat_ref_find_elt(ref, key) == NULL)
1301 pat_ref_add(ref, key, NULL, NULL);
1302 return 0;
1303}
1304
1305/* This function is an LUA binding. It provides a function
1306 * for setting map pattern and sample from a referenced map
1307 * file.
1308 */
1309static int hlua_set_map(lua_State *L)
1310{
1311 const char *name;
1312 const char *key;
1313 const char *value;
1314 struct pat_ref *ref;
1315
1316 MAY_LJMP(check_args(L, 3, "set_map"));
1317
1318 name = MAY_LJMP(luaL_checkstring(L, 1));
1319 key = MAY_LJMP(luaL_checkstring(L, 2));
1320 value = MAY_LJMP(luaL_checkstring(L, 3));
1321
1322 ref = pat_ref_lookup(name);
1323 if (!ref)
Vincent Bernata72db182015-10-06 16:05:59 +02001324 WILL_LJMP(luaL_error(L, "'set_map': unknown map file '%s'", name));
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01001325
1326 if (pat_ref_find_elt(ref, key) != NULL)
1327 pat_ref_set(ref, key, value, NULL);
1328 else
1329 pat_ref_add(ref, key, value, NULL);
1330 return 0;
1331}
1332
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01001333/* A class is a lot of memory that contain data. This data can be a table,
1334 * an integer or user data. This data is associated with a metatable. This
1335 * metatable have an original version registred in the global context with
1336 * the name of the object (_G[<name>] = <metable> ).
1337 *
1338 * A metable is a table that modify the standard behavior of a standard
1339 * access to the associated data. The entries of this new metatable are
1340 * defined as is:
1341 *
1342 * http://lua-users.org/wiki/MetatableEvents
1343 *
1344 * __index
1345 *
1346 * we access an absent field in a table, the result is nil. This is
1347 * true, but it is not the whole truth. Actually, such access triggers
1348 * the interpreter to look for an __index metamethod: If there is no
1349 * such method, as usually happens, then the access results in nil;
1350 * otherwise, the metamethod will provide the result.
1351 *
1352 * Control 'prototype' inheritance. When accessing "myTable[key]" and
1353 * the key does not appear in the table, but the metatable has an __index
1354 * property:
1355 *
1356 * - if the value is a function, the function is called, passing in the
1357 * table and the key; the return value of that function is returned as
1358 * the result.
1359 *
1360 * - if the value is another table, the value of the key in that table is
1361 * asked for and returned (and if it doesn't exist in that table, but that
1362 * table's metatable has an __index property, then it continues on up)
1363 *
1364 * - Use "rawget(myTable,key)" to skip this metamethod.
1365 *
1366 * http://www.lua.org/pil/13.4.1.html
1367 *
1368 * __newindex
1369 *
1370 * Like __index, but control property assignment.
1371 *
1372 * __mode - Control weak references. A string value with one or both
1373 * of the characters 'k' and 'v' which specifies that the the
1374 * keys and/or values in the table are weak references.
1375 *
1376 * __call - Treat a table like a function. When a table is followed by
1377 * parenthesis such as "myTable( 'foo' )" and the metatable has
1378 * a __call key pointing to a function, that function is invoked
1379 * (passing any specified arguments) and the return value is
1380 * returned.
1381 *
1382 * __metatable - Hide the metatable. When "getmetatable( myTable )" is
1383 * called, if the metatable for myTable has a __metatable
1384 * key, the value of that key is returned instead of the
1385 * actual metatable.
1386 *
1387 * __tostring - Control string representation. When the builtin
1388 * "tostring( myTable )" function is called, if the metatable
1389 * for myTable has a __tostring property set to a function,
1390 * that function is invoked (passing myTable to it) and the
1391 * return value is used as the string representation.
1392 *
1393 * __len - Control table length. When the table length is requested using
1394 * the length operator ( '#' ), if the metatable for myTable has
1395 * a __len key pointing to a function, that function is invoked
1396 * (passing myTable to it) and the return value used as the value
1397 * of "#myTable".
1398 *
1399 * __gc - Userdata finalizer code. When userdata is set to be garbage
1400 * collected, if the metatable has a __gc field pointing to a
1401 * function, that function is first invoked, passing the userdata
1402 * to it. The __gc metamethod is not called for tables.
1403 * (See http://lua-users.org/lists/lua-l/2006-11/msg00508.html)
1404 *
1405 * Special metamethods for redefining standard operators:
1406 * http://www.lua.org/pil/13.1.html
1407 *
1408 * __add "+"
1409 * __sub "-"
1410 * __mul "*"
1411 * __div "/"
1412 * __unm "!"
1413 * __pow "^"
1414 * __concat ".."
1415 *
1416 * Special methods for redfining standar relations
1417 * http://www.lua.org/pil/13.2.html
1418 *
1419 * __eq "=="
1420 * __lt "<"
1421 * __le "<="
1422 */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001423
1424/*
1425 *
1426 *
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001427 * Class Map
1428 *
1429 *
1430 */
1431
1432/* Returns a struct hlua_map if the stack entry "ud" is
1433 * a class session, otherwise it throws an error.
1434 */
1435__LJMP static struct map_descriptor *hlua_checkmap(lua_State *L, int ud)
1436{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02001437 return MAY_LJMP(hlua_checkudata(L, ud, class_map_ref));
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001438}
1439
1440/* This function is the map constructor. It don't need
1441 * the class Map object. It creates and return a new Map
1442 * object. It must be called only during "body" or "init"
1443 * context because it process some filesystem accesses.
1444 */
1445__LJMP static int hlua_map_new(struct lua_State *L)
1446{
1447 const char *fn;
1448 int match = PAT_MATCH_STR;
1449 struct sample_conv conv;
1450 const char *file = "";
1451 int line = 0;
1452 lua_Debug ar;
1453 char *err = NULL;
1454 struct arg args[2];
1455
1456 if (lua_gettop(L) < 1 || lua_gettop(L) > 2)
1457 WILL_LJMP(luaL_error(L, "'new' needs at least 1 argument."));
1458
1459 fn = MAY_LJMP(luaL_checkstring(L, 1));
1460
1461 if (lua_gettop(L) >= 2) {
1462 match = MAY_LJMP(luaL_checkinteger(L, 2));
1463 if (match < 0 || match >= PAT_MATCH_NUM)
1464 WILL_LJMP(luaL_error(L, "'new' needs a valid match method."));
1465 }
1466
1467 /* Get Lua filename and line number. */
1468 if (lua_getstack(L, 1, &ar)) { /* check function at level */
1469 lua_getinfo(L, "Sl", &ar); /* get info about it */
1470 if (ar.currentline > 0) { /* is there info? */
1471 file = ar.short_src;
1472 line = ar.currentline;
1473 }
1474 }
1475
1476 /* fill fake sample_conv struct. */
1477 conv.kw = ""; /* unused. */
1478 conv.process = NULL; /* unused. */
1479 conv.arg_mask = 0; /* unused. */
1480 conv.val_args = NULL; /* unused. */
1481 conv.out_type = SMP_T_STR;
1482 conv.private = (void *)(long)match;
1483 switch (match) {
1484 case PAT_MATCH_STR: conv.in_type = SMP_T_STR; break;
1485 case PAT_MATCH_BEG: conv.in_type = SMP_T_STR; break;
1486 case PAT_MATCH_SUB: conv.in_type = SMP_T_STR; break;
1487 case PAT_MATCH_DIR: conv.in_type = SMP_T_STR; break;
1488 case PAT_MATCH_DOM: conv.in_type = SMP_T_STR; break;
1489 case PAT_MATCH_END: conv.in_type = SMP_T_STR; break;
1490 case PAT_MATCH_REG: conv.in_type = SMP_T_STR; break;
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001491 case PAT_MATCH_INT: conv.in_type = SMP_T_SINT; break;
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001492 case PAT_MATCH_IP: conv.in_type = SMP_T_ADDR; break;
1493 default:
1494 WILL_LJMP(luaL_error(L, "'new' doesn't support this match mode."));
1495 }
1496
1497 /* fill fake args. */
1498 args[0].type = ARGT_STR;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001499 args[0].data.str.area = (char *)fn;
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001500 args[1].type = ARGT_STOP;
1501
1502 /* load the map. */
1503 if (!sample_load_map(args, &conv, file, line, &err)) {
1504 /* error case: we cant use luaL_error because we must
1505 * free the err variable.
1506 */
1507 luaL_where(L, 1);
1508 lua_pushfstring(L, "'new': %s.", err);
1509 lua_concat(L, 2);
1510 free(err);
1511 WILL_LJMP(lua_error(L));
1512 }
1513
1514 /* create the lua object. */
1515 lua_newtable(L);
1516 lua_pushlightuserdata(L, args[0].data.map);
1517 lua_rawseti(L, -2, 0);
1518
1519 /* Pop a class Map metatable and affect it to the userdata. */
1520 lua_rawgeti(L, LUA_REGISTRYINDEX, class_map_ref);
1521 lua_setmetatable(L, -2);
1522
1523
1524 return 1;
1525}
1526
1527__LJMP static inline int _hlua_map_lookup(struct lua_State *L, int str)
1528{
1529 struct map_descriptor *desc;
1530 struct pattern *pat;
1531 struct sample smp;
1532
1533 MAY_LJMP(check_args(L, 2, "lookup"));
1534 desc = MAY_LJMP(hlua_checkmap(L, 1));
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001535 if (desc->pat.expect_type == SMP_T_SINT) {
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001536 smp.data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001537 smp.data.u.sint = MAY_LJMP(luaL_checkinteger(L, 2));
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001538 }
1539 else {
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001540 smp.data.type = SMP_T_STR;
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001541 smp.flags = SMP_F_CONST;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001542 smp.data.u.str.area = (char *)MAY_LJMP(luaL_checklstring(L, 2, (size_t *)&smp.data.u.str.data));
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001543 }
1544
1545 pat = pattern_exec_match(&desc->pat, &smp, 1);
Thierry FOURNIER503bb092015-08-19 08:35:43 +02001546 if (!pat || !pat->data) {
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001547 if (str)
1548 lua_pushstring(L, "");
1549 else
1550 lua_pushnil(L);
1551 return 1;
1552 }
1553
1554 /* The Lua pattern must return a string, so we can't check the returned type */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001555 lua_pushlstring(L, pat->data->u.str.area, pat->data->u.str.data);
Thierry FOURNIER3def3932015-04-07 11:27:54 +02001556 return 1;
1557}
1558
1559__LJMP static int hlua_map_lookup(struct lua_State *L)
1560{
1561 return _hlua_map_lookup(L, 0);
1562}
1563
1564__LJMP static int hlua_map_slookup(struct lua_State *L)
1565{
1566 return _hlua_map_lookup(L, 1);
1567}
1568
1569/*
1570 *
1571 *
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001572 * Class Socket
1573 *
1574 *
1575 */
1576
1577__LJMP static struct hlua_socket *hlua_checksocket(lua_State *L, int ud)
1578{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02001579 return MAY_LJMP(hlua_checkudata(L, ud, class_socket_ref));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001580}
1581
1582/* This function is the handler called for each I/O on the established
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001583 * connection. It is used for notify space available to send or data
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001584 * received.
1585 */
Willy Tarreau00a37f02015-04-13 12:05:19 +02001586static void hlua_socket_handler(struct appctx *appctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001587{
Willy Tarreau00a37f02015-04-13 12:05:19 +02001588 struct stream_interface *si = appctx->owner;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001589
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02001590 if (appctx->ctx.hlua_cosocket.die) {
1591 si_shutw(si);
1592 si_shutr(si);
1593 si_ic(si)->flags |= CF_READ_NULL;
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001594 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read);
1595 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write);
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02001596 stream_shutdown(si_strm(si), SF_ERR_KILLED);
1597 }
1598
Thierry FOURNIER6d695e62015-09-27 19:29:38 +02001599 /* If we cant write, wakeup the pending write signals. */
1600 if (channel_output_closed(si_ic(si)))
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001601 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write);
Thierry FOURNIER6d695e62015-09-27 19:29:38 +02001602
1603 /* If we cant read, wakeup the pending read signals. */
1604 if (channel_input_closed(si_oc(si)))
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001605 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read);
Thierry FOURNIER6d695e62015-09-27 19:29:38 +02001606
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02001607 /* if the connection is not established, inform the stream that we want
Thierry FOURNIER316e3192015-09-04 18:25:53 +02001608 * to be notified whenever the connection completes.
1609 */
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02001610 if (si_opposite(si)->state < SI_ST_EST) {
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01001611 si_cant_get(si);
Willy Tarreau12c24232018-12-06 15:29:50 +01001612 si_rx_conn_blk(si);
Willy Tarreau3367d412018-11-15 10:57:41 +01001613 si_rx_endp_more(si);
Willy Tarreaud4da1962015-04-20 01:31:23 +02001614 return;
Thierry FOURNIER316e3192015-09-04 18:25:53 +02001615 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001616
1617 /* This function is called after the connect. */
Thierry FOURNIER18d09902016-12-16 09:25:38 +01001618 appctx->ctx.hlua_cosocket.connected = 1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001619
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001620 /* Wake the tasks which wants to write if the buffer have available space. */
Thierry FOURNIEReba6f642015-09-26 22:01:07 +02001621 if (channel_may_recv(si_ic(si)))
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001622 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001623
1624 /* Wake the tasks which wants to read if the buffer contains data. */
Thierry FOURNIEReba6f642015-09-26 22:01:07 +02001625 if (!channel_is_empty(si_oc(si)))
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001626 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read);
Thierry FOURNIER101b9762018-05-27 01:27:40 +02001627
1628 /* Some data were injected in the buffer, notify the stream
1629 * interface.
1630 */
1631 if (!channel_is_empty(si_ic(si)))
Willy Tarreau14bfe9a2018-12-19 15:19:27 +01001632 si_update(si);
Thierry FOURNIER101b9762018-05-27 01:27:40 +02001633
1634 /* If write notifications are registered, we considers we want
Willy Tarreau3367d412018-11-15 10:57:41 +01001635 * to write, so we clear the blocking flag.
Thierry FOURNIER101b9762018-05-27 01:27:40 +02001636 */
1637 if (notification_registered(&appctx->ctx.hlua_cosocket.wake_on_write))
Willy Tarreau3367d412018-11-15 10:57:41 +01001638 si_rx_endp_more(si);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001639}
1640
Willy Tarreau87b09662015-04-03 00:22:06 +02001641/* This function is called when the "struct stream" is destroyed.
1642 * Remove the link from the object to this stream.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001643 * Wake all the pending signals.
1644 */
Willy Tarreau00a37f02015-04-13 12:05:19 +02001645static void hlua_socket_release(struct appctx *appctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001646{
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001647 struct xref *peer;
1648
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001649 /* Remove my link in the original object. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001650 peer = xref_get_peer_and_lock(&appctx->ctx.hlua_cosocket.xref);
1651 if (peer)
1652 xref_disconnect(&appctx->ctx.hlua_cosocket.xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001653
1654 /* Wake all the task waiting for me. */
Thierry FOURNIERd6975962017-07-12 14:31:10 +02001655 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read);
1656 notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001657}
1658
1659/* If the garbage collectio of the object is launch, nobody
Willy Tarreau87b09662015-04-03 00:22:06 +02001660 * uses this object. If the stream does not exists, just quit.
1661 * Send the shutdown signal to the stream. In some cases,
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001662 * pending signal can rest in the read and write lists. destroy
1663 * it.
1664 */
1665__LJMP static int hlua_socket_gc(lua_State *L)
1666{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001667 struct hlua_socket *socket;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001668 struct appctx *appctx;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001669 struct xref *peer;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001670
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001671 MAY_LJMP(check_args(L, 1, "__gc"));
1672
1673 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001674 peer = xref_get_peer_and_lock(&socket->xref);
1675 if (!peer)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001676 return 0;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001677 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001678
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001679 /* Set the flag which destroy the session. */
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02001680 appctx->ctx.hlua_cosocket.die = 1;
1681 appctx_wakeup(appctx);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001682
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001683 /* Remove all reference between the Lua stack and the coroutine stream. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001684 xref_disconnect(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001685 return 0;
1686}
1687
1688/* The close function send shutdown signal and break the
Willy Tarreau87b09662015-04-03 00:22:06 +02001689 * links between the stream and the object.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001690 */
sada05ed3302018-05-11 11:48:18 -07001691__LJMP static int hlua_socket_close_helper(lua_State *L)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001692{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001693 struct hlua_socket *socket;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001694 struct appctx *appctx;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001695 struct xref *peer;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001696
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001697 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02001698
1699 /* Check if we run on the same thread than the xreator thread.
1700 * We cannot access to the socket if the thread is different.
1701 */
1702 if (socket->tid != tid)
1703 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
1704
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001705 peer = xref_get_peer_and_lock(&socket->xref);
1706 if (!peer)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001707 return 0;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001708 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001709
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001710 /* Set the flag which destroy the session. */
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02001711 appctx->ctx.hlua_cosocket.die = 1;
1712 appctx_wakeup(appctx);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001713
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001714 /* Remove all reference between the Lua stack and the coroutine stream. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001715 xref_disconnect(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001716 return 0;
1717}
1718
sada05ed3302018-05-11 11:48:18 -07001719/* The close function calls close_helper.
1720 */
1721__LJMP static int hlua_socket_close(lua_State *L)
1722{
1723 MAY_LJMP(check_args(L, 1, "close"));
1724 return hlua_socket_close_helper(L);
1725}
1726
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001727/* This Lua function assumes that the stack contain three parameters.
1728 * 1 - USERDATA containing a struct socket
1729 * 2 - INTEGER with values of the macro defined below
1730 * If the integer is -1, we must read at most one line.
1731 * If the integer is -2, we ust read all the data until the
1732 * end of the stream.
1733 * If the integer is positive value, we must read a number of
1734 * bytes corresponding to this value.
1735 */
1736#define HLSR_READ_LINE (-1)
1737#define HLSR_READ_ALL (-2)
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01001738__LJMP static int hlua_socket_receive_yield(struct lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001739{
1740 struct hlua_socket *socket = MAY_LJMP(hlua_checksocket(L, 1));
1741 int wanted = lua_tointeger(L, 2);
1742 struct hlua *hlua = hlua_gethlua(L);
1743 struct appctx *appctx;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02001744 size_t len;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001745 int nblk;
Willy Tarreau206ba832018-06-14 15:27:31 +02001746 const char *blk1;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02001747 size_t len1;
Willy Tarreau206ba832018-06-14 15:27:31 +02001748 const char *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02001749 size_t len2;
Thierry FOURNIER00543922015-03-09 18:35:06 +01001750 int skip_at_end = 0;
Willy Tarreau81389672015-03-10 12:03:52 +01001751 struct channel *oc;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001752 struct stream_interface *si;
1753 struct stream *s;
1754 struct xref *peer;
Thierry FOURNIER8c126c72018-05-25 16:27:44 +02001755 int missing_bytes;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001756
1757 /* Check if this lua stack is schedulable. */
1758 if (!hlua || !hlua->task)
1759 WILL_LJMP(luaL_error(L, "The 'receive' function is only allowed in "
1760 "'frontend', 'backend' or 'task'"));
1761
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02001762 /* Check if we run on the same thread than the xreator thread.
1763 * We cannot access to the socket if the thread is different.
1764 */
1765 if (socket->tid != tid)
1766 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
1767
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001768 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001769 peer = xref_get_peer_and_lock(&socket->xref);
1770 if (!peer)
1771 goto no_peer;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001772 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
1773 si = appctx->owner;
1774 s = si_strm(si);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001775
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001776 oc = &s->res;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001777 if (wanted == HLSR_READ_LINE) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001778 /* Read line. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02001779 nblk = co_getline_nc(oc, &blk1, &len1, &blk2, &len2);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001780 if (nblk < 0) /* Connection close. */
1781 goto connection_closed;
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001782 if (nblk == 0) /* No data available. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001783 goto connection_empty;
Thierry FOURNIER00543922015-03-09 18:35:06 +01001784
1785 /* remove final \r\n. */
1786 if (nblk == 1) {
1787 if (blk1[len1-1] == '\n') {
1788 len1--;
1789 skip_at_end++;
1790 if (blk1[len1-1] == '\r') {
1791 len1--;
1792 skip_at_end++;
1793 }
1794 }
1795 }
1796 else {
1797 if (blk2[len2-1] == '\n') {
1798 len2--;
1799 skip_at_end++;
1800 if (blk2[len2-1] == '\r') {
1801 len2--;
1802 skip_at_end++;
1803 }
1804 }
1805 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001806 }
1807
1808 else if (wanted == HLSR_READ_ALL) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001809 /* Read all the available data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02001810 nblk = co_getblk_nc(oc, &blk1, &len1, &blk2, &len2);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001811 if (nblk < 0) /* Connection close. */
1812 goto connection_closed;
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001813 if (nblk == 0) /* No data available. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001814 goto connection_empty;
1815 }
1816
1817 else {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001818 /* Read a block of data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02001819 nblk = co_getblk_nc(oc, &blk1, &len1, &blk2, &len2);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001820 if (nblk < 0) /* Connection close. */
1821 goto connection_closed;
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08001822 if (nblk == 0) /* No data available. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001823 goto connection_empty;
1824
Thierry FOURNIER8c126c72018-05-25 16:27:44 +02001825 missing_bytes = wanted - socket->b.n;
1826 if (len1 > missing_bytes) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001827 nblk = 1;
Thierry FOURNIER8c126c72018-05-25 16:27:44 +02001828 len1 = missing_bytes;
1829 } if (nblk == 2 && len1 + len2 > missing_bytes)
1830 len2 = missing_bytes - len1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001831 }
1832
1833 len = len1;
1834
1835 luaL_addlstring(&socket->b, blk1, len1);
1836 if (nblk == 2) {
1837 len += len2;
1838 luaL_addlstring(&socket->b, blk2, len2);
1839 }
1840
1841 /* Consume data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02001842 co_skip(oc, len + skip_at_end);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001843
1844 /* Don't wait anything. */
Thierry FOURNIER7e4ee472018-05-25 15:03:50 +02001845 appctx_wakeup(appctx);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001846
1847 /* If the pattern reclaim to read all the data
1848 * in the connection, got out.
1849 */
1850 if (wanted == HLSR_READ_ALL)
1851 goto connection_empty;
Thierry FOURNIER8c126c72018-05-25 16:27:44 +02001852 else if (wanted >= 0 && socket->b.n < wanted)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001853 goto connection_empty;
1854
1855 /* Return result. */
1856 luaL_pushresult(&socket->b);
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001857 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001858 return 1;
1859
1860connection_closed:
1861
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001862 xref_unlock(&socket->xref, peer);
1863
1864no_peer:
1865
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001866 /* If the buffer containds data. */
1867 if (socket->b.n > 0) {
1868 luaL_pushresult(&socket->b);
1869 return 1;
1870 }
1871 lua_pushnil(L);
1872 lua_pushstring(L, "connection closed.");
1873 return 2;
1874
1875connection_empty:
1876
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001877 if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_read, hlua->task)) {
1878 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001879 WILL_LJMP(luaL_error(L, "out of memory"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001880 }
1881 xref_unlock(&socket->xref, peer);
Willy Tarreau9635e032018-10-16 17:52:55 +02001882 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_receive_yield, TICK_ETERNITY, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001883 return 0;
1884}
1885
Tim Duesterhusb33754c2018-01-04 19:32:14 +01001886/* This Lua function gets two parameters. The first one can be string
1887 * or a number. If the string is "*l", the user requires one line. If
1888 * the string is "*a", the user requires all the contents of the stream.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001889 * If the value is a number, the user require a number of bytes equal
1890 * to the value. The default value is "*l" (a line).
1891 *
Tim Duesterhusb33754c2018-01-04 19:32:14 +01001892 * This parameter with a variable type is converted in integer. This
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001893 * integer takes this values:
1894 * -1 : read a line
1895 * -2 : read all the stream
Tim Duesterhusb33754c2018-01-04 19:32:14 +01001896 * >0 : amount of bytes.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001897 *
Tim Duesterhusb33754c2018-01-04 19:32:14 +01001898 * The second parameter is optional. It contains a string that must be
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001899 * concatenated with the read data.
1900 */
1901__LJMP static int hlua_socket_receive(struct lua_State *L)
1902{
1903 int wanted = HLSR_READ_LINE;
1904 const char *pattern;
1905 int type;
1906 char *error;
1907 size_t len;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001908 struct hlua_socket *socket;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001909
1910 if (lua_gettop(L) < 1 || lua_gettop(L) > 3)
1911 WILL_LJMP(luaL_error(L, "The 'receive' function requires between 1 and 3 arguments."));
1912
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001913 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001914
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02001915 /* Check if we run on the same thread than the xreator thread.
1916 * We cannot access to the socket if the thread is different.
1917 */
1918 if (socket->tid != tid)
1919 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
1920
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001921 /* check for pattern. */
1922 if (lua_gettop(L) >= 2) {
1923 type = lua_type(L, 2);
1924 if (type == LUA_TSTRING) {
1925 pattern = lua_tostring(L, 2);
1926 if (strcmp(pattern, "*a") == 0)
1927 wanted = HLSR_READ_ALL;
1928 else if (strcmp(pattern, "*l") == 0)
1929 wanted = HLSR_READ_LINE;
1930 else {
1931 wanted = strtoll(pattern, &error, 10);
1932 if (*error != '\0')
1933 WILL_LJMP(luaL_error(L, "Unsupported pattern."));
1934 }
1935 }
1936 else if (type == LUA_TNUMBER) {
1937 wanted = lua_tointeger(L, 2);
1938 if (wanted < 0)
1939 WILL_LJMP(luaL_error(L, "Unsupported size."));
1940 }
1941 }
1942
1943 /* Set pattern. */
1944 lua_pushinteger(L, wanted);
Tim Duesterhusc6e377e2018-01-04 19:32:13 +01001945
1946 /* Check if we would replace the top by itself. */
1947 if (lua_gettop(L) != 2)
1948 lua_replace(L, 2);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001949
Tim Duesterhusb33754c2018-01-04 19:32:14 +01001950 /* init buffer, and fill it with prefix. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001951 luaL_buffinit(L, &socket->b);
1952
1953 /* Check prefix. */
1954 if (lua_gettop(L) >= 3) {
1955 if (lua_type(L, 3) != LUA_TSTRING)
1956 WILL_LJMP(luaL_error(L, "Expect a 'string' for the prefix"));
1957 pattern = lua_tolstring(L, 3, &len);
1958 luaL_addlstring(&socket->b, pattern, len);
1959 }
1960
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01001961 return __LJMP(hlua_socket_receive_yield(L, 0, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001962}
1963
1964/* Write the Lua input string in the output buffer.
Mark Lakes22154b42018-01-29 14:38:40 -08001965 * This function returns a yield if no space is available.
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001966 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01001967static int hlua_socket_write_yield(struct lua_State *L,int status, lua_KContext ctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001968{
1969 struct hlua_socket *socket;
1970 struct hlua *hlua = hlua_gethlua(L);
1971 struct appctx *appctx;
1972 size_t buf_len;
1973 const char *buf;
1974 int len;
1975 int send_len;
1976 int sent;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001977 struct xref *peer;
1978 struct stream_interface *si;
1979 struct stream *s;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001980
1981 /* Check if this lua stack is schedulable. */
1982 if (!hlua || !hlua->task)
1983 WILL_LJMP(luaL_error(L, "The 'write' function is only allowed in "
1984 "'frontend', 'backend' or 'task'"));
1985
1986 /* Get object */
1987 socket = MAY_LJMP(hlua_checksocket(L, 1));
1988 buf = MAY_LJMP(luaL_checklstring(L, 2, &buf_len));
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01001989 sent = MAY_LJMP(luaL_checkinteger(L, 3));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001990
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02001991 /* Check if we run on the same thread than the xreator thread.
1992 * We cannot access to the socket if the thread is different.
1993 */
1994 if (socket->tid != tid)
1995 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
1996
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001997 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02001998 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02001999 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002000 lua_pushinteger(L, -1);
2001 return 1;
2002 }
2003 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2004 si = appctx->owner;
2005 s = si_strm(si);
2006
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002007 /* Check for connection close. */
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002008 if (channel_output_closed(&s->req)) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002009 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002010 lua_pushinteger(L, -1);
2011 return 1;
2012 }
2013
2014 /* Update the input buffer data. */
2015 buf += sent;
2016 send_len = buf_len - sent;
2017
2018 /* All the data are sent. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002019 if (sent >= buf_len) {
2020 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002021 return 1; /* Implicitly return the length sent. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002022 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002023
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002024 /* Check if the buffer is available because HAProxy doesn't allocate
Thierry FOURNIER486d52a2015-03-09 17:51:43 +01002025 * the request buffer if its not required.
2026 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002027 if (s->req.buf.size == 0) {
Willy Tarreau581abd32018-10-25 10:21:41 +02002028 if (!si_alloc_ibuf(si, &appctx->buffer_wait))
Christopher Faulet33834b12016-12-19 09:29:06 +01002029 goto hlua_socket_write_yield_return;
Thierry FOURNIER486d52a2015-03-09 17:51:43 +01002030 }
2031
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002032 /* Check for available space. */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002033 len = b_room(&s->req.buf);
Christopher Faulet33834b12016-12-19 09:29:06 +01002034 if (len <= 0) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002035 goto hlua_socket_write_yield_return;
Christopher Faulet33834b12016-12-19 09:29:06 +01002036 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002037
2038 /* send data */
2039 if (len < send_len)
2040 send_len = len;
Thierry FOURNIER66b89192018-05-27 01:14:47 +02002041 len = ci_putblk(&s->req, buf, send_len);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002042
2043 /* "Not enough space" (-1), "Buffer too little to contain
2044 * the data" (-2) are not expected because the available length
2045 * is tested.
2046 * Other unknown error are also not expected.
2047 */
2048 if (len <= 0) {
Willy Tarreaubc18da12015-03-13 14:00:47 +01002049 if (len == -1)
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002050 s->req.flags |= CF_WAKE_WRITE;
Willy Tarreaubc18da12015-03-13 14:00:47 +01002051
sada05ed3302018-05-11 11:48:18 -07002052 MAY_LJMP(hlua_socket_close_helper(L));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002053 lua_pop(L, 1);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002054 lua_pushinteger(L, -1);
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002055 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002056 return 1;
2057 }
2058
2059 /* update buffers. */
Thierry FOURNIER101b9762018-05-27 01:27:40 +02002060 appctx_wakeup(appctx);
Willy Tarreaude70fa12015-09-26 11:25:05 +02002061
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002062 s->req.rex = TICK_ETERNITY;
2063 s->res.wex = TICK_ETERNITY;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002064
2065 /* Update length sent. */
2066 lua_pop(L, 1);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002067 lua_pushinteger(L, sent + len);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002068
2069 /* All the data buffer is sent ? */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002070 if (sent + len >= buf_len) {
2071 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002072 return 1;
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002073 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002074
2075hlua_socket_write_yield_return:
Thierry FOURNIERba42fcd2018-05-27 00:59:48 +02002076 if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_write, hlua->task)) {
2077 xref_unlock(&socket->xref, peer);
2078 WILL_LJMP(luaL_error(L, "out of memory"));
2079 }
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002080 xref_unlock(&socket->xref, peer);
Willy Tarreau9635e032018-10-16 17:52:55 +02002081 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_write_yield, TICK_ETERNITY, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002082 return 0;
2083}
2084
2085/* This function initiate the send of data. It just check the input
2086 * parameters and push an integer in the Lua stack that contain the
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002087 * amount of data written to the buffer. This is used by the function
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002088 * "hlua_socket_write_yield" that can yield.
2089 *
2090 * The Lua function gets between 3 and 4 parameters. The first one is
2091 * the associated object. The second is a string buffer. The third is
2092 * a facultative integer that represents where is the buffer position
2093 * of the start of the data that can send. The first byte is the
2094 * position "1". The default value is "1". The fourth argument is a
2095 * facultative integer that represents where is the buffer position
2096 * of the end of the data that can send. The default is the last byte.
2097 */
2098static int hlua_socket_send(struct lua_State *L)
2099{
2100 int i;
2101 int j;
2102 const char *buf;
2103 size_t buf_len;
2104
2105 /* Check number of arguments. */
2106 if (lua_gettop(L) < 2 || lua_gettop(L) > 4)
2107 WILL_LJMP(luaL_error(L, "'send' needs between 2 and 4 arguments"));
2108
2109 /* Get the string. */
2110 buf = MAY_LJMP(luaL_checklstring(L, 2, &buf_len));
2111
2112 /* Get and check j. */
2113 if (lua_gettop(L) == 4) {
2114 j = MAY_LJMP(luaL_checkinteger(L, 4));
2115 if (j < 0)
2116 j = buf_len + j + 1;
2117 if (j > buf_len)
2118 j = buf_len + 1;
2119 lua_pop(L, 1);
2120 }
2121 else
2122 j = buf_len;
2123
2124 /* Get and check i. */
2125 if (lua_gettop(L) == 3) {
2126 i = MAY_LJMP(luaL_checkinteger(L, 3));
2127 if (i < 0)
2128 i = buf_len + i + 1;
2129 if (i > buf_len)
2130 i = buf_len + 1;
2131 lua_pop(L, 1);
2132 } else
2133 i = 1;
2134
2135 /* Check bth i and j. */
2136 if (i > j) {
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002137 lua_pushinteger(L, 0);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002138 return 1;
2139 }
2140 if (i == 0 && j == 0) {
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002141 lua_pushinteger(L, 0);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002142 return 1;
2143 }
2144 if (i == 0)
2145 i = 1;
2146 if (j == 0)
2147 j = 1;
2148
2149 /* Pop the string. */
2150 lua_pop(L, 1);
2151
2152 /* Update the buffer length. */
2153 buf += i - 1;
2154 buf_len = j - i + 1;
2155 lua_pushlstring(L, buf, buf_len);
2156
2157 /* This unsigned is used to remember the amount of sent data. */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002158 lua_pushinteger(L, 0);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002159
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002160 return MAY_LJMP(hlua_socket_write_yield(L, 0, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002161}
2162
Willy Tarreau22b0a682015-06-17 19:43:49 +02002163#define SOCKET_INFO_MAX_LEN sizeof("[0000:0000:0000:0000:0000:0000:0000:0000]:12345")
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002164__LJMP static inline int hlua_socket_info(struct lua_State *L, struct sockaddr_storage *addr)
2165{
2166 static char buffer[SOCKET_INFO_MAX_LEN];
2167 int ret;
2168 int len;
2169 char *p;
2170
2171 ret = addr_to_str(addr, buffer+1, SOCKET_INFO_MAX_LEN-1);
2172 if (ret <= 0) {
2173 lua_pushnil(L);
2174 return 1;
2175 }
2176
2177 if (ret == AF_UNIX) {
2178 lua_pushstring(L, buffer+1);
2179 return 1;
2180 }
2181 else if (ret == AF_INET6) {
2182 buffer[0] = '[';
2183 len = strlen(buffer);
2184 buffer[len] = ']';
2185 len++;
2186 buffer[len] = ':';
2187 len++;
2188 p = buffer;
2189 }
2190 else if (ret == AF_INET) {
2191 p = buffer + 1;
2192 len = strlen(p);
2193 p[len] = ':';
2194 len++;
2195 }
2196 else {
2197 lua_pushnil(L);
2198 return 1;
2199 }
2200
2201 if (port_to_str(addr, p + len, SOCKET_INFO_MAX_LEN-1 - len) <= 0) {
2202 lua_pushnil(L);
2203 return 1;
2204 }
2205
2206 lua_pushstring(L, p);
2207 return 1;
2208}
2209
2210/* Returns information about the peer of the connection. */
2211__LJMP static int hlua_socket_getpeername(struct lua_State *L)
2212{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002213 struct hlua_socket *socket;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002214 struct xref *peer;
2215 struct appctx *appctx;
2216 struct stream_interface *si;
2217 struct stream *s;
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002218 int ret;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002219
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002220 MAY_LJMP(check_args(L, 1, "getpeername"));
2221
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002222 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002223
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002224 /* Check if we run on the same thread than the xreator thread.
2225 * We cannot access to the socket if the thread is different.
2226 */
2227 if (socket->tid != tid)
2228 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2229
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002230 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002231 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002232 if (!peer) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002233 lua_pushnil(L);
2234 return 1;
2235 }
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002236 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2237 si = appctx->owner;
2238 s = si_strm(si);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002239
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002240 if (!s->target_addr) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002241 xref_unlock(&socket->xref, peer);
Willy Tarreaua71f6422016-11-16 17:00:14 +01002242 lua_pushnil(L);
2243 return 1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002244 }
2245
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002246 ret = MAY_LJMP(hlua_socket_info(L, s->target_addr));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002247 xref_unlock(&socket->xref, peer);
2248 return ret;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002249}
2250
2251/* Returns information about my connection side. */
2252static int hlua_socket_getsockname(struct lua_State *L)
2253{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002254 struct hlua_socket *socket;
2255 struct connection *conn;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002256 struct appctx *appctx;
2257 struct xref *peer;
2258 struct stream_interface *si;
2259 struct stream *s;
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002260 int ret;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002261
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002262 MAY_LJMP(check_args(L, 1, "getsockname"));
2263
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002264 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002265
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002266 /* Check if we run on the same thread than the xreator thread.
2267 * We cannot access to the socket if the thread is different.
2268 */
2269 if (socket->tid != tid)
2270 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2271
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002272 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002273 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002274 if (!peer) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002275 lua_pushnil(L);
2276 return 1;
2277 }
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002278 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2279 si = appctx->owner;
2280 s = si_strm(si);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002281
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002282 conn = cs_conn(objt_cs(s->si[1].end));
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002283 if (!conn || !conn_get_src(conn)) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002284 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002285 lua_pushnil(L);
2286 return 1;
2287 }
2288
Willy Tarreau9da9a6f2019-07-17 14:49:44 +02002289 ret = hlua_socket_info(L, conn->src);
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002290 xref_unlock(&socket->xref, peer);
2291 return ret;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002292}
2293
2294/* This struct define the applet. */
Willy Tarreau30576452015-04-13 13:50:30 +02002295static struct applet update_applet = {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002296 .obj_type = OBJ_TYPE_APPLET,
2297 .name = "<LUA_TCP>",
2298 .fct = hlua_socket_handler,
2299 .release = hlua_socket_release,
2300};
2301
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002302__LJMP static int hlua_socket_connect_yield(struct lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002303{
2304 struct hlua_socket *socket = MAY_LJMP(hlua_checksocket(L, 1));
2305 struct hlua *hlua = hlua_gethlua(L);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002306 struct xref *peer;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002307 struct appctx *appctx;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002308 struct stream_interface *si;
2309 struct stream *s;
2310
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002311 /* Check if we run on the same thread than the xreator thread.
2312 * We cannot access to the socket if the thread is different.
2313 */
2314 if (socket->tid != tid)
2315 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2316
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002317 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002318 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002319 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002320 lua_pushnil(L);
2321 lua_pushstring(L, "Can't connect");
2322 return 2;
2323 }
2324 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2325 si = appctx->owner;
2326 s = si_strm(si);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002327
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002328 /* Check if we run on the same thread than the xreator thread.
2329 * We cannot access to the socket if the thread is different.
2330 */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002331 if (socket->tid != tid) {
2332 xref_unlock(&socket->xref, peer);
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002333 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002334 }
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002335
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002336 /* Check for connection close. */
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002337 if (!hlua || channel_output_closed(&s->req)) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002338 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002339 lua_pushnil(L);
2340 lua_pushstring(L, "Can't connect");
2341 return 2;
2342 }
2343
Willy Tarreaue09101e2018-10-16 17:37:12 +02002344 appctx = __objt_appctx(s->si[0].end);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002345
2346 /* Check for connection established. */
Thierry FOURNIER18d09902016-12-16 09:25:38 +01002347 if (appctx->ctx.hlua_cosocket.connected) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002348 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002349 lua_pushinteger(L, 1);
2350 return 1;
2351 }
2352
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002353 if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_write, hlua->task)) {
2354 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002355 WILL_LJMP(luaL_error(L, "out of memory error"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002356 }
2357 xref_unlock(&socket->xref, peer);
Willy Tarreau9635e032018-10-16 17:52:55 +02002358 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_connect_yield, TICK_ETERNITY, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002359 return 0;
2360}
2361
2362/* This function fail or initite the connection. */
2363__LJMP static int hlua_socket_connect(struct lua_State *L)
2364{
2365 struct hlua_socket *socket;
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002366 int port = -1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002367 const char *ip;
Thierry FOURNIER95ad96a2015-03-09 18:12:40 +01002368 struct hlua *hlua;
2369 struct appctx *appctx;
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002370 int low, high;
2371 struct sockaddr_storage *addr;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002372 struct xref *peer;
2373 struct stream_interface *si;
2374 struct stream *s;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002375
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002376 if (lua_gettop(L) < 2)
2377 WILL_LJMP(luaL_error(L, "connect: need at least 2 arguments"));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002378
2379 /* Get args. */
2380 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002381
2382 /* Check if we run on the same thread than the xreator thread.
2383 * We cannot access to the socket if the thread is different.
2384 */
2385 if (socket->tid != tid)
2386 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2387
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002388 ip = MAY_LJMP(luaL_checkstring(L, 2));
Tim Duesterhus6edab862018-01-06 19:04:45 +01002389 if (lua_gettop(L) >= 3) {
2390 luaL_Buffer b;
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002391 port = MAY_LJMP(luaL_checkinteger(L, 3));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002392
Tim Duesterhus6edab862018-01-06 19:04:45 +01002393 /* Force the ip to end with a colon, to support IPv6 addresses
2394 * that are not enclosed within square brackets.
2395 */
2396 if (port > 0) {
2397 luaL_buffinit(L, &b);
2398 luaL_addstring(&b, ip);
2399 luaL_addchar(&b, ':');
2400 luaL_pushresult(&b);
2401 ip = lua_tolstring(L, lua_gettop(L), NULL);
2402 }
2403 }
2404
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002405 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002406 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002407 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002408 lua_pushnil(L);
2409 return 1;
2410 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002411
2412 /* Parse ip address. */
Willy Tarreau48ef4c92017-01-06 18:32:38 +01002413 addr = str2sa_range(ip, NULL, &low, &high, NULL, NULL, NULL, 0);
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002414 if (!addr) {
2415 xref_unlock(&socket->xref, peer);
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002416 WILL_LJMP(luaL_error(L, "connect: cannot parse destination address '%s'", ip));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002417 }
2418 if (low != high) {
2419 xref_unlock(&socket->xref, peer);
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002420 WILL_LJMP(luaL_error(L, "connect: port ranges not supported : address '%s'", ip));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002421 }
Willy Tarreau9da9a6f2019-07-17 14:49:44 +02002422
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002423 /* Set port. */
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002424 if (low == 0) {
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002425 if (addr->ss_family == AF_INET) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002426 if (port == -1) {
2427 xref_unlock(&socket->xref, peer);
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002428 WILL_LJMP(luaL_error(L, "connect: port missing"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002429 }
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002430 ((struct sockaddr_in *)addr)->sin_port = htons(port);
2431 } else if (addr->ss_family == AF_INET6) {
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002432 if (port == -1) {
2433 xref_unlock(&socket->xref, peer);
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002434 WILL_LJMP(luaL_error(L, "connect: port missing"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002435 }
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002436 ((struct sockaddr_in6 *)addr)->sin6_port = htons(port);
Thierry FOURNIERc2f56532015-09-26 20:23:30 +02002437 }
2438 }
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002439
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002440 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2441 si = appctx->owner;
2442 s = si_strm(si);
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002443
2444 if (!sockaddr_alloc(&s->target_addr)) {
2445 xref_unlock(&socket->xref, peer);
2446 WILL_LJMP(luaL_error(L, "connect: internal error"));
2447 }
2448 *s->target_addr = *addr;
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002449 s->flags |= SF_ADDR_SET;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002450
Thierry FOURNIER95ad96a2015-03-09 18:12:40 +01002451 hlua = hlua_gethlua(L);
Willy Tarreaubdc97a82015-08-24 15:42:28 +02002452
2453 /* inform the stream that we want to be notified whenever the
2454 * connection completes.
2455 */
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01002456 si_cant_get(&s->si[0]);
Willy Tarreau3367d412018-11-15 10:57:41 +01002457 si_rx_endp_more(&s->si[0]);
Thierry FOURNIER8c8fbbe2015-09-26 17:02:35 +02002458 appctx_wakeup(appctx);
Willy Tarreaubdc97a82015-08-24 15:42:28 +02002459
Thierry FOURNIER7c39ab42015-09-27 22:53:33 +02002460 hlua->flags |= HLUA_MUST_GC;
2461
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002462 if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_write, hlua->task)) {
2463 xref_unlock(&socket->xref, peer);
Thierry FOURNIER95ad96a2015-03-09 18:12:40 +01002464 WILL_LJMP(luaL_error(L, "out of memory"));
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002465 }
2466 xref_unlock(&socket->xref, peer);
PiBa-NL706d5ee2018-05-05 23:51:42 +02002467
2468 task_wakeup(s->task, TASK_WOKEN_INIT);
2469 /* Return yield waiting for connection. */
2470
Willy Tarreau9635e032018-10-16 17:52:55 +02002471 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_connect_yield, TICK_ETERNITY, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002472
2473 return 0;
2474}
2475
Baptiste Assmann84bb4932015-03-02 21:40:06 +01002476#ifdef USE_OPENSSL
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002477__LJMP static int hlua_socket_connect_ssl(struct lua_State *L)
2478{
2479 struct hlua_socket *socket;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002480 struct xref *peer;
2481 struct appctx *appctx;
2482 struct stream_interface *si;
2483 struct stream *s;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002484
2485 MAY_LJMP(check_args(L, 3, "connect_ssl"));
2486 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002487
2488 /* check for connection break. If some data where read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002489 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002490 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002491 lua_pushnil(L);
2492 return 1;
2493 }
2494 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2495 si = appctx->owner;
2496 s = si_strm(si);
2497
2498 s->target = &socket_ssl.obj_type;
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002499 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002500 return MAY_LJMP(hlua_socket_connect(L));
2501}
Baptiste Assmann84bb4932015-03-02 21:40:06 +01002502#endif
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002503
2504__LJMP static int hlua_socket_setoption(struct lua_State *L)
2505{
2506 return 0;
2507}
2508
2509__LJMP static int hlua_socket_settimeout(struct lua_State *L)
2510{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002511 struct hlua_socket *socket;
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002512 int tmout;
Mark Lakes56cc1252018-03-27 09:48:06 +02002513 double dtmout;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002514 struct xref *peer;
2515 struct appctx *appctx;
2516 struct stream_interface *si;
2517 struct stream *s;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002518
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002519 MAY_LJMP(check_args(L, 2, "settimeout"));
2520
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002521 socket = MAY_LJMP(hlua_checksocket(L, 1));
Mark Lakes56cc1252018-03-27 09:48:06 +02002522
Cyril Bonté7ee465f2018-08-19 22:08:50 +02002523 /* convert the timeout to millis */
2524 dtmout = MAY_LJMP(luaL_checknumber(L, 2)) * 1000;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002525
Thierry Fournier17a921b2018-03-08 09:59:02 +01002526 /* Check for negative values */
Mark Lakes56cc1252018-03-27 09:48:06 +02002527 if (dtmout < 0)
Thierry Fournier17a921b2018-03-08 09:59:02 +01002528 WILL_LJMP(luaL_error(L, "settimeout: cannot set negatives values"));
2529
Mark Lakes56cc1252018-03-27 09:48:06 +02002530 if (dtmout > INT_MAX) /* overflow check */
Cyril Bonté7ee465f2018-08-19 22:08:50 +02002531 WILL_LJMP(luaL_error(L, "settimeout: cannot set values larger than %d ms", INT_MAX));
Mark Lakes56cc1252018-03-27 09:48:06 +02002532
2533 tmout = MS_TO_TICKS((int)dtmout);
Cyril Bonté7ee465f2018-08-19 22:08:50 +02002534 if (tmout == 0)
2535 tmout++; /* very small timeouts are adjusted to a minium of 1ms */
Mark Lakes56cc1252018-03-27 09:48:06 +02002536
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002537 /* Check if we run on the same thread than the xreator thread.
2538 * We cannot access to the socket if the thread is different.
2539 */
2540 if (socket->tid != tid)
2541 WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread"));
2542
Mark Lakes56cc1252018-03-27 09:48:06 +02002543 /* check for connection break. If some data were read, return it. */
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002544 peer = xref_get_peer_and_lock(&socket->xref);
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002545 if (!peer) {
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002546 hlua_pusherror(L, "socket: not yet initialised, you can't set timeouts.");
2547 WILL_LJMP(lua_error(L));
2548 return 0;
2549 }
2550 appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
2551 si = appctx->owner;
2552 s = si_strm(si);
2553
Cyril Bonté7bb63452018-08-17 23:51:02 +02002554 s->sess->fe->timeout.connect = tmout;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002555 s->req.rto = tmout;
2556 s->req.wto = tmout;
2557 s->res.rto = tmout;
2558 s->res.wto = tmout;
Cyril Bonté7bb63452018-08-17 23:51:02 +02002559 s->req.rex = tick_add_ifset(now_ms, tmout);
2560 s->req.wex = tick_add_ifset(now_ms, tmout);
2561 s->res.rex = tick_add_ifset(now_ms, tmout);
2562 s->res.wex = tick_add_ifset(now_ms, tmout);
2563
2564 s->task->expire = tick_add_ifset(now_ms, tmout);
2565 task_queue(s->task);
2566
Thierry FOURNIER952939d2017-09-01 14:17:32 +02002567 xref_unlock(&socket->xref, peer);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002568
Thierry Fourniere9636f12018-03-08 09:54:32 +01002569 lua_pushinteger(L, 1);
Tim Duesterhus119a5f12018-01-06 19:16:25 +01002570 return 1;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002571}
2572
2573__LJMP static int hlua_socket_new(lua_State *L)
2574{
2575 struct hlua_socket *socket;
2576 struct appctx *appctx;
Willy Tarreau15b5e142015-04-04 14:38:25 +02002577 struct session *sess;
Willy Tarreau61cf7c82015-04-06 00:48:33 +02002578 struct stream *strm;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002579
2580 /* Check stack size. */
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01002581 if (!lua_checkstack(L, 3)) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002582 hlua_pusherror(L, "socket: full stack");
2583 goto out_fail_conf;
2584 }
2585
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01002586 /* Create the object: obj[0] = userdata. */
2587 lua_newtable(L);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002588 socket = MAY_LJMP(lua_newuserdata(L, sizeof(*socket)));
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01002589 lua_rawseti(L, -2, 0);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002590 memset(socket, 0, sizeof(*socket));
Thierry FOURNIER94a6bfc2017-07-12 12:10:44 +02002591 socket->tid = tid;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002592
Thierry FOURNIER4a6170c2015-03-09 17:07:10 +01002593 /* Check if the various memory pools are intialized. */
Willy Tarreaubafbe012017-11-24 17:34:44 +01002594 if (!pool_head_stream || !pool_head_buffer) {
Thierry FOURNIER4a6170c2015-03-09 17:07:10 +01002595 hlua_pusherror(L, "socket: uninitialized pools.");
2596 goto out_fail_conf;
2597 }
2598
Willy Tarreau87b09662015-04-03 00:22:06 +02002599 /* Pop a class stream metatable and affect it to the userdata. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002600 lua_rawgeti(L, LUA_REGISTRYINDEX, class_socket_ref);
2601 lua_setmetatable(L, -2);
2602
Willy Tarreaud420a972015-04-06 00:39:18 +02002603 /* Create the applet context */
Willy Tarreau5f4a47b2017-10-31 15:59:32 +01002604 appctx = appctx_new(&update_applet, tid_bit);
Willy Tarreau61cf7c82015-04-06 00:48:33 +02002605 if (!appctx) {
2606 hlua_pusherror(L, "socket: out of memory");
Willy Tarreaufeb76402015-04-03 14:10:06 +02002607 goto out_fail_conf;
Willy Tarreau61cf7c82015-04-06 00:48:33 +02002608 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002609
Thierry FOURNIER18d09902016-12-16 09:25:38 +01002610 appctx->ctx.hlua_cosocket.connected = 0;
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +02002611 appctx->ctx.hlua_cosocket.die = 0;
Thierry FOURNIER18d09902016-12-16 09:25:38 +01002612 LIST_INIT(&appctx->ctx.hlua_cosocket.wake_on_write);
2613 LIST_INIT(&appctx->ctx.hlua_cosocket.wake_on_read);
Willy Tarreaub2bf8332015-04-04 15:58:58 +02002614
Willy Tarreaud420a972015-04-06 00:39:18 +02002615 /* Now create a session, task and stream for this applet */
2616 sess = session_new(&socket_proxy, NULL, &appctx->obj_type);
2617 if (!sess) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002618 hlua_pusherror(L, "socket: out of memory");
Willy Tarreaud420a972015-04-06 00:39:18 +02002619 goto out_fail_sess;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002620 }
2621
Willy Tarreau87787ac2017-08-28 16:22:54 +02002622 strm = stream_new(sess, &appctx->obj_type);
Willy Tarreau61cf7c82015-04-06 00:48:33 +02002623 if (!strm) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002624 hlua_pusherror(L, "socket: out of memory");
Willy Tarreaud420a972015-04-06 00:39:18 +02002625 goto out_fail_stream;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002626 }
2627
Thierry FOURNIER2da788e2017-09-11 18:37:23 +02002628 /* Initialise cross reference between stream and Lua socket object. */
2629 xref_create(&socket->xref, &appctx->ctx.hlua_cosocket.xref);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002630
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002631 /* Configure "right" stream interface. this "si" is used to connect
2632 * and retrieve data from the server. The connection is initialized
2633 * with the "struct server".
2634 */
Willy Tarreau61cf7c82015-04-06 00:48:33 +02002635 si_set_state(&strm->si[1], SI_ST_ASS);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002636
2637 /* Force destination server. */
Willy Tarreau5a0b25d2019-07-18 18:01:14 +02002638 strm->flags |= SF_DIRECT | SF_ASSIGNED | SF_BE_ASSIGNED;
Willy Tarreau61cf7c82015-04-06 00:48:33 +02002639 strm->target = &socket_tcp.obj_type;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002640
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002641 return 1;
2642
Willy Tarreaud420a972015-04-06 00:39:18 +02002643 out_fail_stream:
Willy Tarreau11c36242015-04-04 15:54:03 +02002644 session_free(sess);
Willy Tarreaud420a972015-04-06 00:39:18 +02002645 out_fail_sess:
2646 appctx_free(appctx);
2647 out_fail_conf:
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01002648 WILL_LJMP(lua_error(L));
2649 return 0;
2650}
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01002651
2652/*
2653 *
2654 *
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002655 * Class Channel
2656 *
2657 *
2658 */
2659
Thierry FOURNIER11cfb3d2016-12-13 13:06:23 +01002660/* This function is called before the Lua execution. It stores
2661 * the differents parsers state before executing some Lua code.
Thierry FOURNIERd75cb0f2015-09-25 19:22:44 +02002662 */
Thierry FOURNIER11cfb3d2016-12-13 13:06:23 +01002663static inline void consistency_set(struct stream *stream, int opt, struct hlua_consistency *c)
Thierry FOURNIERd75cb0f2015-09-25 19:22:44 +02002664{
Thierry FOURNIER11cfb3d2016-12-13 13:06:23 +01002665 c->mode = stream->be->mode;
2666 switch (c->mode) {
2667 case PR_MODE_HTTP:
2668 c->data.http.dir = opt & SMP_OPT_DIR;
2669 if (c->data.http.dir == SMP_OPT_DIR_REQ)
2670 c->data.http.state = stream->txn->req.msg_state;
2671 else
2672 c->data.http.state = stream->txn->rsp.msg_state;
2673 break;
2674 default:
2675 break;
2676 }
2677}
Thierry FOURNIERd75cb0f2015-09-25 19:22:44 +02002678
Thierry FOURNIER11cfb3d2016-12-13 13:06:23 +01002679/* This function is called after the Lua execution. it
2680 * returns true if the parser state is consistent, otherwise,
2681 * it return false.
2682 *
2683 * In HTTP mode, the parser state must be in the same state
2684 * or greater when we exit the function. Even if we do a
2685 * control yield. This prevent to break the HTTP message
2686 * from the Lua code.
2687 */
2688static inline int consistency_check(struct stream *stream, int opt, struct hlua_consistency *c)
2689{
2690 if (c->mode != stream->be->mode)
2691 return 0;
2692
2693 switch (c->mode) {
2694 case PR_MODE_HTTP:
2695 if (c->data.http.dir != (opt & SMP_OPT_DIR))
Thierry FOURNIERd75cb0f2015-09-25 19:22:44 +02002696 return 0;
Thierry FOURNIER11cfb3d2016-12-13 13:06:23 +01002697 if (c->data.http.dir == SMP_OPT_DIR_REQ)
2698 return stream->txn->req.msg_state >= c->data.http.state;
2699 else
2700 return stream->txn->rsp.msg_state >= c->data.http.state;
2701 default:
2702 return 1;
Thierry FOURNIERd75cb0f2015-09-25 19:22:44 +02002703 }
2704 return 1;
2705}
2706
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002707/* Returns the struct hlua_channel join to the class channel in the
2708 * stack entry "ud" or throws an argument error.
2709 */
Willy Tarreau47860ed2015-03-10 14:07:50 +01002710__LJMP static struct channel *hlua_checkchannel(lua_State *L, int ud)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002711{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02002712 return MAY_LJMP(hlua_checkudata(L, ud, class_channel_ref));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002713}
2714
Willy Tarreau47860ed2015-03-10 14:07:50 +01002715/* Pushes the channel onto the top of the stack. If the stask does not have a
2716 * free slots, the function fails and returns 0;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002717 */
Willy Tarreau2a71af42015-03-10 13:51:50 +01002718static int hlua_channel_new(lua_State *L, struct channel *channel)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002719{
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002720 /* Check stack size. */
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01002721 if (!lua_checkstack(L, 3))
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002722 return 0;
2723
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01002724 lua_newtable(L);
Willy Tarreau47860ed2015-03-10 14:07:50 +01002725 lua_pushlightuserdata(L, channel);
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01002726 lua_rawseti(L, -2, 0);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002727
2728 /* Pop a class sesison metatable and affect it to the userdata. */
2729 lua_rawgeti(L, LUA_REGISTRYINDEX, class_channel_ref);
2730 lua_setmetatable(L, -2);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002731 return 1;
2732}
2733
2734/* Duplicate all the data present in the input channel and put it
2735 * in a string LUA variables. Returns -1 and push a nil value in
2736 * the stack if the channel is closed and all the data are consumed,
2737 * returns 0 if no data are available, otherwise it returns the length
2738 * of the builded string.
2739 */
Willy Tarreau47860ed2015-03-10 14:07:50 +01002740static inline int _hlua_channel_dup(struct channel *chn, lua_State *L)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002741{
2742 char *blk1;
2743 char *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02002744 size_t len1;
2745 size_t len2;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002746 int ret;
2747 luaL_Buffer b;
2748
Willy Tarreau06d80a92017-10-19 14:32:15 +02002749 ret = ci_getblk_nc(chn, &blk1, &len1, &blk2, &len2);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002750 if (unlikely(ret == 0))
2751 return 0;
2752
2753 if (unlikely(ret < 0)) {
2754 lua_pushnil(L);
2755 return -1;
2756 }
2757
2758 luaL_buffinit(L, &b);
2759 luaL_addlstring(&b, blk1, len1);
2760 if (unlikely(ret == 2))
2761 luaL_addlstring(&b, blk2, len2);
2762 luaL_pushresult(&b);
2763
2764 if (unlikely(ret == 2))
2765 return len1 + len2;
2766 return len1;
2767}
2768
2769/* "_hlua_channel_dup" wrapper. If no data are available, it returns
2770 * a yield. This function keep the data in the buffer.
2771 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002772__LJMP static int hlua_channel_dup_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002773{
Willy Tarreau47860ed2015-03-10 14:07:50 +01002774 struct channel *chn;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002775
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002776 chn = MAY_LJMP(hlua_checkchannel(L, 1));
2777
Christopher Faulet3f829a42018-12-13 21:56:45 +01002778 if (chn_strm(chn)->be->mode == PR_MODE_HTTP)
2779 WILL_LJMP(lua_error(L));
2780
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002781 if (_hlua_channel_dup(chn, L) == 0)
Willy Tarreau9635e032018-10-16 17:52:55 +02002782 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_dup_yield, TICK_ETERNITY, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002783 return 1;
2784}
2785
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002786/* Check arguments for the function "hlua_channel_dup_yield". */
2787__LJMP static int hlua_channel_dup(lua_State *L)
2788{
2789 MAY_LJMP(check_args(L, 1, "dup"));
2790 MAY_LJMP(hlua_checkchannel(L, 1));
2791 return MAY_LJMP(hlua_channel_dup_yield(L, 0, 0));
2792}
2793
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002794/* "_hlua_channel_dup" wrapper. If no data are available, it returns
2795 * a yield. This function consumes the data in the buffer. It returns
2796 * a string containing the data or a nil pointer if no data are available
2797 * and the channel is closed.
2798 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002799__LJMP static int hlua_channel_get_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002800{
Willy Tarreau47860ed2015-03-10 14:07:50 +01002801 struct channel *chn;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002802 int ret;
2803
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002804 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002805
Christopher Faulet3f829a42018-12-13 21:56:45 +01002806 if (chn_strm(chn)->be->mode == PR_MODE_HTTP)
2807 WILL_LJMP(lua_error(L));
2808
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002809 ret = _hlua_channel_dup(chn, L);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002810 if (unlikely(ret == 0))
Willy Tarreau9635e032018-10-16 17:52:55 +02002811 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_get_yield, TICK_ETERNITY, 0));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002812
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002813 if (unlikely(ret == -1))
2814 return 1;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002815
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002816 b_sub(&chn->buf, ret);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002817 return 1;
2818}
2819
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002820/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002821__LJMP static int hlua_channel_get(lua_State *L)
2822{
2823 MAY_LJMP(check_args(L, 1, "get"));
2824 MAY_LJMP(hlua_checkchannel(L, 1));
2825 return MAY_LJMP(hlua_channel_get_yield(L, 0, 0));
2826}
2827
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002828/* This functions consumes and returns one line. If the channel is closed,
2829 * and the last data does not contains a final '\n', the data are returned
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002830 * without the final '\n'. When no more data are available, it returns nil
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002831 * value.
2832 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002833__LJMP static int hlua_channel_getline_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002834{
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002835 char *blk1;
2836 char *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02002837 size_t len1;
2838 size_t len2;
2839 size_t len;
Willy Tarreau47860ed2015-03-10 14:07:50 +01002840 struct channel *chn;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002841 int ret;
2842 luaL_Buffer b;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002843
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002844 chn = MAY_LJMP(hlua_checkchannel(L, 1));
2845
Christopher Faulet3f829a42018-12-13 21:56:45 +01002846 if (chn_strm(chn)->be->mode == PR_MODE_HTTP)
2847 WILL_LJMP(lua_error(L));
2848
Willy Tarreau06d80a92017-10-19 14:32:15 +02002849 ret = ci_getline_nc(chn, &blk1, &len1, &blk2, &len2);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002850 if (ret == 0)
Willy Tarreau9635e032018-10-16 17:52:55 +02002851 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_getline_yield, TICK_ETERNITY, 0));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002852
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002853 if (ret == -1) {
2854 lua_pushnil(L);
2855 return 1;
2856 }
2857
2858 luaL_buffinit(L, &b);
2859 luaL_addlstring(&b, blk1, len1);
2860 len = len1;
2861 if (unlikely(ret == 2)) {
2862 luaL_addlstring(&b, blk2, len2);
2863 len += len2;
2864 }
2865 luaL_pushresult(&b);
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002866 b_rep_blk(&chn->buf, ci_head(chn), ci_head(chn) + len, NULL, 0);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002867 return 1;
2868}
2869
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002870/* Check arguments for the function "hlua_channel_getline_yield". */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002871__LJMP static int hlua_channel_getline(lua_State *L)
2872{
2873 MAY_LJMP(check_args(L, 1, "getline"));
2874 MAY_LJMP(hlua_checkchannel(L, 1));
2875 return MAY_LJMP(hlua_channel_getline_yield(L, 0, 0));
2876}
2877
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002878/* This function takes a string as input, and append it at the
2879 * input side of channel. If the data is too big, but a space
2880 * is probably available after sending some data, the function
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002881 * yields. If the data is bigger than the buffer, or if the
2882 * channel is closed, it returns -1. Otherwise, it returns the
2883 * amount of data written.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002884 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002885__LJMP static int hlua_channel_append_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002886{
Willy Tarreau47860ed2015-03-10 14:07:50 +01002887 struct channel *chn = MAY_LJMP(hlua_checkchannel(L, 1));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002888 size_t len;
2889 const char *str = MAY_LJMP(luaL_checklstring(L, 2, &len));
2890 int l = MAY_LJMP(luaL_checkinteger(L, 3));
2891 int ret;
2892 int max;
2893
Christopher Faulet3f829a42018-12-13 21:56:45 +01002894 if (chn_strm(chn)->be->mode == PR_MODE_HTTP)
2895 WILL_LJMP(lua_error(L));
2896
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002897 /* Check if the buffer is available because HAProxy doesn't allocate
Christopher Fauleta73e59b2016-12-09 17:30:18 +01002898 * the request buffer if its not required.
2899 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002900 if (chn->buf.size == 0) {
Willy Tarreau4b962a42018-11-15 11:03:21 +01002901 si_rx_buff_blk(chn_prod(chn));
Willy Tarreau9635e032018-10-16 17:52:55 +02002902 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_append_yield, TICK_ETERNITY, 0));
Christopher Fauleta73e59b2016-12-09 17:30:18 +01002903 }
2904
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002905 max = channel_recv_limit(chn) - b_data(&chn->buf);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002906 if (max > len - l)
2907 max = len - l;
2908
Willy Tarreau06d80a92017-10-19 14:32:15 +02002909 ret = ci_putblk(chn, str + l, max);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002910 if (ret == -2 || ret == -3) {
2911 lua_pushinteger(L, -1);
2912 return 1;
2913 }
Willy Tarreaubc18da12015-03-13 14:00:47 +01002914 if (ret == -1) {
2915 chn->flags |= CF_WAKE_WRITE;
Willy Tarreau9635e032018-10-16 17:52:55 +02002916 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_append_yield, TICK_ETERNITY, 0));
Willy Tarreaubc18da12015-03-13 14:00:47 +01002917 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002918 l += ret;
2919 lua_pop(L, 1);
2920 lua_pushinteger(L, l);
2921
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002922 max = channel_recv_limit(chn) - b_data(&chn->buf);
Willy Tarreaua79021a2018-06-15 18:07:57 +02002923 if (max == 0 && co_data(chn) == 0) {
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002924 /* There are no space available, and the output buffer is empty.
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002925 * in this case, we cannot add more data, so we cannot yield,
2926 * we return the amount of copyied data.
2927 */
2928 return 1;
2929 }
2930 if (l < len)
Willy Tarreau9635e032018-10-16 17:52:55 +02002931 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_append_yield, TICK_ETERNITY, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002932 return 1;
2933}
2934
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002935/* Just a wrapper of "hlua_channel_append_yield". It returns the length
2936 * of the written string, or -1 if the channel is closed or if the
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002937 * buffer size is too little for the data.
2938 */
2939__LJMP static int hlua_channel_append(lua_State *L)
2940{
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002941 size_t len;
2942
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002943 MAY_LJMP(check_args(L, 2, "append"));
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002944 MAY_LJMP(hlua_checkchannel(L, 1));
2945 MAY_LJMP(luaL_checklstring(L, 2, &len));
2946 MAY_LJMP(luaL_checkinteger(L, 3));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002947 lua_pushinteger(L, 0);
2948
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002949 return MAY_LJMP(hlua_channel_append_yield(L, 0, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002950}
2951
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002952/* Just a wrapper of "hlua_channel_append_yield". This wrapper starts
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002953 * his process by cleaning the buffer. The result is a replacement
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002954 * of the current data. It returns the length of the written string,
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002955 * or -1 if the channel is closed or if the buffer size is too
2956 * little for the data.
2957 */
2958__LJMP static int hlua_channel_set(lua_State *L)
2959{
Willy Tarreau47860ed2015-03-10 14:07:50 +01002960 struct channel *chn;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002961
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002962 MAY_LJMP(check_args(L, 2, "set"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002963 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002964 lua_pushinteger(L, 0);
2965
Christopher Faulet3f829a42018-12-13 21:56:45 +01002966 if (chn_strm(chn)->be->mode == PR_MODE_HTTP)
2967 WILL_LJMP(lua_error(L));
2968
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002969 b_set_data(&chn->buf, co_data(chn));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002970
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002971 return MAY_LJMP(hlua_channel_append_yield(L, 0, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002972}
2973
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002974/* Append data in the output side of the buffer. This data is immediately
2975 * sent. The function returns the amount of data written. If the buffer
2976 * cannot contain the data, the function yields. The function returns -1
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002977 * if the channel is closed.
2978 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002979__LJMP static int hlua_channel_send_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002980{
Willy Tarreau47860ed2015-03-10 14:07:50 +01002981 struct channel *chn = MAY_LJMP(hlua_checkchannel(L, 1));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002982 size_t len;
2983 const char *str = MAY_LJMP(luaL_checklstring(L, 2, &len));
2984 int l = MAY_LJMP(luaL_checkinteger(L, 3));
2985 int max;
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01002986 struct hlua *hlua = hlua_gethlua(L);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002987
Christopher Faulet3f829a42018-12-13 21:56:45 +01002988 if (chn_strm(chn)->be->mode == PR_MODE_HTTP)
2989 WILL_LJMP(lua_error(L));
2990
Willy Tarreau47860ed2015-03-10 14:07:50 +01002991 if (unlikely(channel_output_closed(chn))) {
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002992 lua_pushinteger(L, -1);
2993 return 1;
2994 }
2995
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08002996 /* Check if the buffer is available because HAProxy doesn't allocate
Thierry FOURNIER3e3a6082015-03-05 17:06:12 +01002997 * the request buffer if its not required.
2998 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002999 if (chn->buf.size == 0) {
Willy Tarreau4b962a42018-11-15 11:03:21 +01003000 si_rx_buff_blk(chn_prod(chn));
Willy Tarreau9635e032018-10-16 17:52:55 +02003001 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_send_yield, TICK_ETERNITY, 0));
Thierry FOURNIER3e3a6082015-03-05 17:06:12 +01003002 }
3003
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003004 /* The written data will be immediately sent, so we can check
3005 * the available space without taking in account the reserve.
3006 * The reserve is guaranteed for the processing of incoming
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003007 * data, because the buffer will be flushed.
3008 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003009 max = b_room(&chn->buf);
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003010
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003011 /* If there is no space available, and the output buffer is empty.
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003012 * in this case, we cannot add more data, so we cannot yield,
3013 * we return the amount of copyied data.
3014 */
Willy Tarreaua79021a2018-06-15 18:07:57 +02003015 if (max == 0 && co_data(chn) == 0)
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003016 return 1;
3017
3018 /* Adjust the real required length. */
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003019 if (max > len - l)
3020 max = len - l;
3021
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003022 /* The buffer available size may be not contiguous. This test
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003023 * detects a non contiguous buffer and realign it.
3024 */
Willy Tarreau3f679992018-06-15 15:06:42 +02003025 if (ci_space_for_replace(chn) < max)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003026 channel_slow_realign(chn, trash.area);
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003027
3028 /* Copy input data in the buffer. */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003029 max = b_rep_blk(&chn->buf, ci_head(chn), ci_head(chn), str + l, max);
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003030
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003031 /* buffer replace considers that the input part is filled.
3032 * so, I must forward these new data in the output part.
3033 */
Willy Tarreaubcbd3932018-06-06 07:13:22 +02003034 c_adv(chn, max);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003035
3036 l += max;
3037 lua_pop(L, 1);
3038 lua_pushinteger(L, l);
3039
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003040 /* If there is no space available, and the output buffer is empty.
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003041 * in this case, we cannot add more data, so we cannot yield,
3042 * we return the amount of copyied data.
3043 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003044 max = b_room(&chn->buf);
Willy Tarreaua79021a2018-06-15 18:07:57 +02003045 if (max == 0 && co_data(chn) == 0)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003046 return 1;
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01003047
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003048 if (l < len) {
3049 /* If we are waiting for space in the response buffer, we
3050 * must set the flag WAKERESWR. This flag required the task
3051 * wake up if any activity is detected on the response buffer.
3052 */
Willy Tarreau47860ed2015-03-10 14:07:50 +01003053 if (chn->flags & CF_ISRESP)
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003054 HLUA_SET_WAKERESWR(hlua);
Thierry FOURNIER53e08ec2015-03-06 00:35:53 +01003055 else
3056 HLUA_SET_WAKEREQWR(hlua);
Willy Tarreau9635e032018-10-16 17:52:55 +02003057 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_send_yield, TICK_ETERNITY, 0));
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003058 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003059
3060 return 1;
3061}
3062
3063/* Just a wraper of "_hlua_channel_send". This wrapper permits
3064 * yield the LUA process, and resume it without checking the
3065 * input arguments.
3066 */
3067__LJMP static int hlua_channel_send(lua_State *L)
3068{
3069 MAY_LJMP(check_args(L, 2, "send"));
3070 lua_pushinteger(L, 0);
3071
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003072 return MAY_LJMP(hlua_channel_send_yield(L, 0, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003073}
3074
3075/* This function forward and amount of butes. The data pass from
3076 * the input side of the buffer to the output side, and can be
3077 * forwarded. This function never fails.
3078 *
3079 * The Lua function takes an amount of bytes to be forwarded in
3080 * imput. It returns the number of bytes forwarded.
3081 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003082__LJMP static int hlua_channel_forward_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003083{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003084 struct channel *chn;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003085 int len;
3086 int l;
3087 int max;
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003088 struct hlua *hlua = hlua_gethlua(L);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003089
3090 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Faulet3f829a42018-12-13 21:56:45 +01003091
3092 if (chn_strm(chn)->be->mode == PR_MODE_HTTP)
3093 WILL_LJMP(lua_error(L));
3094
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003095 len = MAY_LJMP(luaL_checkinteger(L, 2));
3096 l = MAY_LJMP(luaL_checkinteger(L, -1));
3097
3098 max = len - l;
Willy Tarreaua79021a2018-06-15 18:07:57 +02003099 if (max > ci_data(chn))
3100 max = ci_data(chn);
Willy Tarreau47860ed2015-03-10 14:07:50 +01003101 channel_forward(chn, max);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003102 l += max;
3103
3104 lua_pop(L, 1);
3105 lua_pushinteger(L, l);
3106
3107 /* Check if it miss bytes to forward. */
3108 if (l < len) {
3109 /* The the input channel or the output channel are closed, we
3110 * must return the amount of data forwarded.
3111 */
Willy Tarreau47860ed2015-03-10 14:07:50 +01003112 if (channel_input_closed(chn) || channel_output_closed(chn))
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003113 return 1;
3114
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003115 /* If we are waiting for space data in the response buffer, we
3116 * must set the flag WAKERESWR. This flag required the task
3117 * wake up if any activity is detected on the response buffer.
3118 */
Willy Tarreau47860ed2015-03-10 14:07:50 +01003119 if (chn->flags & CF_ISRESP)
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003120 HLUA_SET_WAKERESWR(hlua);
Thierry FOURNIER53e08ec2015-03-06 00:35:53 +01003121 else
3122 HLUA_SET_WAKEREQWR(hlua);
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003123
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003124 /* Otherwise, we can yield waiting for new data in the inpout side. */
Willy Tarreau9635e032018-10-16 17:52:55 +02003125 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_forward_yield, TICK_ETERNITY, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003126 }
3127
3128 return 1;
3129}
3130
3131/* Just check the input and prepare the stack for the previous
3132 * function "hlua_channel_forward_yield"
3133 */
3134__LJMP static int hlua_channel_forward(lua_State *L)
3135{
3136 MAY_LJMP(check_args(L, 2, "forward"));
3137 MAY_LJMP(hlua_checkchannel(L, 1));
3138 MAY_LJMP(luaL_checkinteger(L, 2));
3139
3140 lua_pushinteger(L, 0);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01003141 return MAY_LJMP(hlua_channel_forward_yield(L, 0, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003142}
3143
3144/* Just returns the number of bytes available in the input
3145 * side of the buffer. This function never fails.
3146 */
3147__LJMP static int hlua_channel_get_in_len(lua_State *L)
3148{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003149 struct channel *chn;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003150
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003151 MAY_LJMP(check_args(L, 1, "get_in_len"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003152 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Christopher Fauleta3ceac12018-12-14 13:39:09 +01003153 if (IS_HTX_STRM(chn_strm(chn))) {
3154 struct htx *htx = htxbuf(&chn->buf);
3155 lua_pushinteger(L, htx->data - co_data(chn));
3156 }
3157 else
3158 lua_pushinteger(L, ci_data(chn));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003159 return 1;
3160}
3161
Thierry FOURNIER / OZON.IO65192f32016-11-07 15:28:40 +01003162/* Returns true if the channel is full. */
3163__LJMP static int hlua_channel_is_full(lua_State *L)
3164{
3165 struct channel *chn;
3166 int rem;
3167
3168 MAY_LJMP(check_args(L, 1, "is_full"));
3169 chn = MAY_LJMP(hlua_checkchannel(L, 1));
3170
Christopher Fauleta3ceac12018-12-14 13:39:09 +01003171 if (IS_HTX_STRM(chn_strm(chn))) {
3172 struct htx *htx = htxbuf(&chn->buf);
3173
3174 rem = htx_free_data_space(htx);
3175 }
3176 else
3177 rem = b_room(&chn->buf);
3178
Thierry FOURNIER / OZON.IO65192f32016-11-07 15:28:40 +01003179 rem -= global.tune.maxrewrite; /* Rewrite reserved size */
3180
3181 lua_pushboolean(L, rem <= 0);
3182 return 1;
3183}
3184
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003185/* Just returns the number of bytes available in the output
3186 * side of the buffer. This function never fails.
3187 */
3188__LJMP static int hlua_channel_get_out_len(lua_State *L)
3189{
Willy Tarreau47860ed2015-03-10 14:07:50 +01003190 struct channel *chn;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003191
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003192 MAY_LJMP(check_args(L, 1, "get_out_len"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003193 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Willy Tarreaua79021a2018-06-15 18:07:57 +02003194 lua_pushinteger(L, co_data(chn));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003195 return 1;
3196}
3197
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003198/*
3199 *
3200 *
3201 * Class Fetches
3202 *
3203 *
3204 */
3205
3206/* Returns a struct hlua_session if the stack entry "ud" is
Willy Tarreau87b09662015-04-03 00:22:06 +02003207 * a class stream, otherwise it throws an error.
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003208 */
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01003209__LJMP static struct hlua_smp *hlua_checkfetches(lua_State *L, int ud)
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003210{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02003211 return MAY_LJMP(hlua_checkudata(L, ud, class_fetches_ref));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003212}
3213
3214/* This function creates and push in the stack a fetch object according
3215 * with a current TXN.
3216 */
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003217static int hlua_fetches_new(lua_State *L, struct hlua_txn *txn, unsigned int flags)
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003218{
Willy Tarreau7073c472015-04-06 11:15:40 +02003219 struct hlua_smp *hsmp;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003220
3221 /* Check stack size. */
3222 if (!lua_checkstack(L, 3))
3223 return 0;
3224
3225 /* Create the object: obj[0] = userdata.
3226 * Note that the base of the Fetches object is the
3227 * transaction object.
3228 */
3229 lua_newtable(L);
Willy Tarreau7073c472015-04-06 11:15:40 +02003230 hsmp = lua_newuserdata(L, sizeof(*hsmp));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003231 lua_rawseti(L, -2, 0);
3232
Willy Tarreau7073c472015-04-06 11:15:40 +02003233 hsmp->s = txn->s;
3234 hsmp->p = txn->p;
Thierry FOURNIERc4eebc82015-11-02 10:01:59 +01003235 hsmp->dir = txn->dir;
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003236 hsmp->flags = flags;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003237
3238 /* Pop a class sesison metatable and affect it to the userdata. */
3239 lua_rawgeti(L, LUA_REGISTRYINDEX, class_fetches_ref);
3240 lua_setmetatable(L, -2);
3241
3242 return 1;
3243}
3244
3245/* This function is an LUA binding. It is called with each sample-fetch.
3246 * It uses closure argument to store the associated sample-fetch. It
3247 * returns only one argument or throws an error. An error is thrown
3248 * only if an error is encountered during the argument parsing. If
3249 * the "sample-fetch" function fails, nil is returned.
3250 */
3251__LJMP static int hlua_run_sample_fetch(lua_State *L)
3252{
Willy Tarreaub2ccb562015-04-06 11:11:15 +02003253 struct hlua_smp *hsmp;
Willy Tarreau2ec22742015-03-10 14:27:20 +01003254 struct sample_fetch *f;
Frédéric Lécaillef874a832018-06-15 13:56:04 +02003255 struct arg args[ARGM_NBARGS + 1] = {{0}};
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003256 int i;
3257 struct sample smp;
3258
3259 /* Get closure arguments. */
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02003260 f = lua_touserdata(L, lua_upvalueindex(1));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003261
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003262 /* Get traditional arguments. */
Willy Tarreaub2ccb562015-04-06 11:11:15 +02003263 hsmp = MAY_LJMP(hlua_checkfetches(L, 1));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003264
Thierry FOURNIERca988662015-12-20 18:43:03 +01003265 /* Check execution authorization. */
3266 if (f->use & SMP_USE_HTTP_ANY &&
3267 !(hsmp->flags & HLUA_F_MAY_USE_HTTP)) {
3268 lua_pushfstring(L, "the sample-fetch '%s' needs an HTTP parser which "
3269 "is not available in Lua services", f->kw);
3270 WILL_LJMP(lua_error(L));
3271 }
3272
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003273 /* Get extra arguments. */
3274 for (i = 0; i < lua_gettop(L) - 1; i++) {
3275 if (i >= ARGM_NBARGS)
3276 break;
3277 hlua_lua2arg(L, i + 2, &args[i]);
3278 }
3279 args[i].type = ARGT_STOP;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003280 args[i].data.str.area = NULL;
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003281
3282 /* Check arguments. */
Willy Tarreaub2ccb562015-04-06 11:11:15 +02003283 MAY_LJMP(hlua_lua2arg_check(L, 2, args, f->arg_mask, hsmp->p));
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003284
3285 /* Run the special args checker. */
Willy Tarreau2ec22742015-03-10 14:27:20 +01003286 if (f->val_args && !f->val_args(args, NULL)) {
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003287 lua_pushfstring(L, "error in arguments");
3288 WILL_LJMP(lua_error(L));
3289 }
3290
3291 /* Initialise the sample. */
3292 memset(&smp, 0, sizeof(smp));
3293
3294 /* Run the sample fetch process. */
Willy Tarreau1777ea62016-03-10 16:15:46 +01003295 smp_set_owner(&smp, hsmp->p, hsmp->s->sess, hsmp->s, hsmp->dir & SMP_OPT_DIR);
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003296 if (!f->process(args, &smp, f->kw, f->private)) {
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003297 if (hsmp->flags & HLUA_F_AS_STRING)
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01003298 lua_pushstring(L, "");
3299 else
3300 lua_pushnil(L);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003301 return 1;
3302 }
3303
3304 /* Convert the returned sample in lua value. */
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003305 if (hsmp->flags & HLUA_F_AS_STRING)
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01003306 hlua_smp2lua_str(L, &smp);
3307 else
3308 hlua_smp2lua(L, &smp);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01003309 return 1;
3310}
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003311
3312/*
3313 *
3314 *
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003315 * Class Converters
3316 *
3317 *
3318 */
3319
3320/* Returns a struct hlua_session if the stack entry "ud" is
Willy Tarreau87b09662015-04-03 00:22:06 +02003321 * a class stream, otherwise it throws an error.
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003322 */
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01003323__LJMP static struct hlua_smp *hlua_checkconverters(lua_State *L, int ud)
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003324{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02003325 return MAY_LJMP(hlua_checkudata(L, ud, class_converters_ref));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003326}
3327
3328/* This function creates and push in the stack a Converters object
3329 * according with a current TXN.
3330 */
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003331static int hlua_converters_new(lua_State *L, struct hlua_txn *txn, unsigned int flags)
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003332{
Willy Tarreau7073c472015-04-06 11:15:40 +02003333 struct hlua_smp *hsmp;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003334
3335 /* Check stack size. */
3336 if (!lua_checkstack(L, 3))
3337 return 0;
3338
3339 /* Create the object: obj[0] = userdata.
3340 * Note that the base of the Converters object is the
3341 * same than the TXN object.
3342 */
3343 lua_newtable(L);
Willy Tarreau7073c472015-04-06 11:15:40 +02003344 hsmp = lua_newuserdata(L, sizeof(*hsmp));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003345 lua_rawseti(L, -2, 0);
3346
Willy Tarreau7073c472015-04-06 11:15:40 +02003347 hsmp->s = txn->s;
3348 hsmp->p = txn->p;
Thierry FOURNIERc4eebc82015-11-02 10:01:59 +01003349 hsmp->dir = txn->dir;
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003350 hsmp->flags = flags;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003351
Willy Tarreau87b09662015-04-03 00:22:06 +02003352 /* Pop a class stream metatable and affect it to the table. */
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003353 lua_rawgeti(L, LUA_REGISTRYINDEX, class_converters_ref);
3354 lua_setmetatable(L, -2);
3355
3356 return 1;
3357}
3358
3359/* This function is an LUA binding. It is called with each converter.
3360 * It uses closure argument to store the associated converter. It
3361 * returns only one argument or throws an error. An error is thrown
3362 * only if an error is encountered during the argument parsing. If
3363 * the converter function function fails, nil is returned.
3364 */
3365__LJMP static int hlua_run_sample_conv(lua_State *L)
3366{
Willy Tarreauda5f1082015-04-06 11:17:13 +02003367 struct hlua_smp *hsmp;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003368 struct sample_conv *conv;
Frédéric Lécaillef874a832018-06-15 13:56:04 +02003369 struct arg args[ARGM_NBARGS + 1] = {{0}};
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003370 int i;
3371 struct sample smp;
3372
3373 /* Get closure arguments. */
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02003374 conv = lua_touserdata(L, lua_upvalueindex(1));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003375
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003376 /* Get traditional arguments. */
Willy Tarreauda5f1082015-04-06 11:17:13 +02003377 hsmp = MAY_LJMP(hlua_checkconverters(L, 1));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003378
3379 /* Get extra arguments. */
3380 for (i = 0; i < lua_gettop(L) - 2; i++) {
3381 if (i >= ARGM_NBARGS)
3382 break;
3383 hlua_lua2arg(L, i + 3, &args[i]);
3384 }
3385 args[i].type = ARGT_STOP;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003386 args[i].data.str.area = NULL;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003387
3388 /* Check arguments. */
Willy Tarreauda5f1082015-04-06 11:17:13 +02003389 MAY_LJMP(hlua_lua2arg_check(L, 3, args, conv->arg_mask, hsmp->p));
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003390
3391 /* Run the special args checker. */
3392 if (conv->val_args && !conv->val_args(args, conv, "", 0, NULL)) {
3393 hlua_pusherror(L, "error in arguments");
3394 WILL_LJMP(lua_error(L));
3395 }
3396
3397 /* Initialise the sample. */
3398 if (!hlua_lua2smp(L, 2, &smp)) {
3399 hlua_pusherror(L, "error in the input argument");
3400 WILL_LJMP(lua_error(L));
3401 }
3402
Willy Tarreau1777ea62016-03-10 16:15:46 +01003403 smp_set_owner(&smp, hsmp->p, hsmp->s->sess, hsmp->s, hsmp->dir & SMP_OPT_DIR);
3404
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003405 /* Apply expected cast. */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003406 if (!sample_casts[smp.data.type][conv->in_type]) {
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003407 hlua_pusherror(L, "invalid input argument: cannot cast '%s' to '%s'",
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003408 smp_to_type[smp.data.type], smp_to_type[conv->in_type]);
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003409 WILL_LJMP(lua_error(L));
3410 }
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003411 if (sample_casts[smp.data.type][conv->in_type] != c_none &&
3412 !sample_casts[smp.data.type][conv->in_type](&smp)) {
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003413 hlua_pusherror(L, "error during the input argument casting");
3414 WILL_LJMP(lua_error(L));
3415 }
3416
3417 /* Run the sample conversion process. */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02003418 if (!conv->process(args, &smp, conv->private)) {
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003419 if (hsmp->flags & HLUA_F_AS_STRING)
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01003420 lua_pushstring(L, "");
3421 else
Willy Tarreaua678b432015-08-28 10:14:59 +02003422 lua_pushnil(L);
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003423 return 1;
3424 }
3425
3426 /* Convert the returned sample in lua value. */
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003427 if (hsmp->flags & HLUA_F_AS_STRING)
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01003428 hlua_smp2lua_str(L, &smp);
3429 else
3430 hlua_smp2lua(L, &smp);
Willy Tarreaua678b432015-08-28 10:14:59 +02003431 return 1;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003432}
3433
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003434/*
3435 *
3436 *
3437 * Class AppletTCP
3438 *
3439 *
3440 */
3441
3442/* Returns a struct hlua_txn if the stack entry "ud" is
3443 * a class stream, otherwise it throws an error.
3444 */
3445__LJMP static struct hlua_appctx *hlua_checkapplet_tcp(lua_State *L, int ud)
3446{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02003447 return MAY_LJMP(hlua_checkudata(L, ud, class_applet_tcp_ref));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003448}
3449
3450/* This function creates and push in the stack an Applet object
3451 * according with a current TXN.
3452 */
3453static int hlua_applet_tcp_new(lua_State *L, struct appctx *ctx)
3454{
3455 struct hlua_appctx *appctx;
3456 struct stream_interface *si = ctx->owner;
3457 struct stream *s = si_strm(si);
3458 struct proxy *p = s->be;
3459
3460 /* Check stack size. */
3461 if (!lua_checkstack(L, 3))
3462 return 0;
3463
3464 /* Create the object: obj[0] = userdata.
3465 * Note that the base of the Converters object is the
3466 * same than the TXN object.
3467 */
3468 lua_newtable(L);
3469 appctx = lua_newuserdata(L, sizeof(*appctx));
3470 lua_rawseti(L, -2, 0);
3471 appctx->appctx = ctx;
3472 appctx->htxn.s = s;
3473 appctx->htxn.p = p;
3474
3475 /* Create the "f" field that contains a list of fetches. */
3476 lua_pushstring(L, "f");
3477 if (!hlua_fetches_new(L, &appctx->htxn, 0))
3478 return 0;
3479 lua_settable(L, -3);
3480
3481 /* Create the "sf" field that contains a list of stringsafe fetches. */
3482 lua_pushstring(L, "sf");
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003483 if (!hlua_fetches_new(L, &appctx->htxn, HLUA_F_AS_STRING))
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003484 return 0;
3485 lua_settable(L, -3);
3486
3487 /* Create the "c" field that contains a list of converters. */
3488 lua_pushstring(L, "c");
3489 if (!hlua_converters_new(L, &appctx->htxn, 0))
3490 return 0;
3491 lua_settable(L, -3);
3492
3493 /* Create the "sc" field that contains a list of stringsafe converters. */
3494 lua_pushstring(L, "sc");
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003495 if (!hlua_converters_new(L, &appctx->htxn, HLUA_F_AS_STRING))
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003496 return 0;
3497 lua_settable(L, -3);
3498
3499 /* Pop a class stream metatable and affect it to the table. */
3500 lua_rawgeti(L, LUA_REGISTRYINDEX, class_applet_tcp_ref);
3501 lua_setmetatable(L, -2);
3502
3503 return 1;
3504}
3505
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003506__LJMP static int hlua_applet_tcp_set_var(lua_State *L)
3507{
3508 struct hlua_appctx *appctx;
3509 struct stream *s;
3510 const char *name;
3511 size_t len;
3512 struct sample smp;
3513
3514 MAY_LJMP(check_args(L, 3, "set_var"));
3515
3516 /* It is useles to retrieve the stream, but this function
3517 * runs only in a stream context.
3518 */
3519 appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
3520 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
3521 s = appctx->htxn.s;
3522
3523 /* Converts the third argument in a sample. */
3524 hlua_lua2smp(L, 3, &smp);
3525
3526 /* Store the sample in a variable. */
3527 smp_set_owner(&smp, s->be, s->sess, s, 0);
3528 vars_set_by_name(name, len, &smp);
3529 return 0;
3530}
3531
3532__LJMP static int hlua_applet_tcp_unset_var(lua_State *L)
3533{
3534 struct hlua_appctx *appctx;
3535 struct stream *s;
3536 const char *name;
3537 size_t len;
3538 struct sample smp;
3539
3540 MAY_LJMP(check_args(L, 2, "unset_var"));
3541
3542 /* It is useles to retrieve the stream, but this function
3543 * runs only in a stream context.
3544 */
3545 appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
3546 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
3547 s = appctx->htxn.s;
3548
3549 /* Unset the variable. */
3550 smp_set_owner(&smp, s->be, s->sess, s, 0);
3551 vars_unset_by_name(name, len, &smp);
3552 return 0;
3553}
3554
3555__LJMP static int hlua_applet_tcp_get_var(lua_State *L)
3556{
3557 struct hlua_appctx *appctx;
3558 struct stream *s;
3559 const char *name;
3560 size_t len;
3561 struct sample smp;
3562
3563 MAY_LJMP(check_args(L, 2, "get_var"));
3564
3565 /* It is useles to retrieve the stream, but this function
3566 * runs only in a stream context.
3567 */
3568 appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
3569 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
3570 s = appctx->htxn.s;
3571
3572 smp_set_owner(&smp, s->be, s->sess, s, 0);
3573 if (!vars_get_by_name(name, len, &smp)) {
3574 lua_pushnil(L);
3575 return 1;
3576 }
3577
3578 return hlua_smp2lua(L, &smp);
3579}
3580
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01003581__LJMP static int hlua_applet_tcp_set_priv(lua_State *L)
3582{
3583 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
3584 struct stream *s = appctx->htxn.s;
Thierry FOURNIER3b0a6d42016-12-16 08:48:32 +01003585 struct hlua *hlua;
3586
3587 /* Note that this hlua struct is from the session and not from the applet. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01003588 if (!s->hlua)
3589 return 0;
3590 hlua = s->hlua;
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01003591
3592 MAY_LJMP(check_args(L, 2, "set_priv"));
3593
3594 /* Remove previous value. */
Thierry FOURNIERe068b602017-04-26 13:27:05 +02003595 luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref);
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01003596
3597 /* Get and store new value. */
3598 lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */
3599 hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */
3600
3601 return 0;
3602}
3603
3604__LJMP static int hlua_applet_tcp_get_priv(lua_State *L)
3605{
3606 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
3607 struct stream *s = appctx->htxn.s;
Thierry FOURNIER3b0a6d42016-12-16 08:48:32 +01003608 struct hlua *hlua;
3609
3610 /* Note that this hlua struct is from the session and not from the applet. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01003611 if (!s->hlua) {
3612 lua_pushnil(L);
3613 return 1;
3614 }
3615 hlua = s->hlua;
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01003616
3617 /* Push configuration index in the stack. */
3618 lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref);
3619
3620 return 1;
3621}
3622
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003623/* If expected data not yet available, it returns a yield. This function
3624 * consumes the data in the buffer. It returns a string containing the
3625 * data. This string can be empty.
3626 */
3627__LJMP static int hlua_applet_tcp_getline_yield(lua_State *L, int status, lua_KContext ctx)
3628{
3629 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
3630 struct stream_interface *si = appctx->appctx->owner;
3631 int ret;
Willy Tarreau206ba832018-06-14 15:27:31 +02003632 const char *blk1;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02003633 size_t len1;
Willy Tarreau206ba832018-06-14 15:27:31 +02003634 const char *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02003635 size_t len2;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003636
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003637 /* Read the maximum amount of data available. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02003638 ret = co_getline_nc(si_oc(si), &blk1, &len1, &blk2, &len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003639
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003640 /* Data not yet available. return yield. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003641 if (ret == 0) {
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01003642 si_cant_get(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02003643 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_getline_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003644 }
3645
3646 /* End of data: commit the total strings and return. */
3647 if (ret < 0) {
3648 luaL_pushresult(&appctx->b);
3649 return 1;
3650 }
3651
3652 /* Ensure that the block 2 length is usable. */
3653 if (ret == 1)
3654 len2 = 0;
3655
3656 /* dont check the max length read and dont check. */
3657 luaL_addlstring(&appctx->b, blk1, len1);
3658 luaL_addlstring(&appctx->b, blk2, len2);
3659
3660 /* Consume input channel output buffer data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02003661 co_skip(si_oc(si), len1 + len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003662 luaL_pushresult(&appctx->b);
3663 return 1;
3664}
3665
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003666/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003667__LJMP static int hlua_applet_tcp_getline(lua_State *L)
3668{
3669 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
3670
3671 /* Initialise the string catenation. */
3672 luaL_buffinit(L, &appctx->b);
3673
3674 return MAY_LJMP(hlua_applet_tcp_getline_yield(L, 0, 0));
3675}
3676
3677/* If expected data not yet available, it returns a yield. This function
3678 * consumes the data in the buffer. It returns a string containing the
3679 * data. This string can be empty.
3680 */
3681__LJMP static int hlua_applet_tcp_recv_yield(lua_State *L, int status, lua_KContext ctx)
3682{
3683 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
3684 struct stream_interface *si = appctx->appctx->owner;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02003685 size_t len = MAY_LJMP(luaL_checkinteger(L, 2));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003686 int ret;
Willy Tarreau206ba832018-06-14 15:27:31 +02003687 const char *blk1;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02003688 size_t len1;
Willy Tarreau206ba832018-06-14 15:27:31 +02003689 const char *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02003690 size_t len2;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003691
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003692 /* Read the maximum amount of data available. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02003693 ret = co_getblk_nc(si_oc(si), &blk1, &len1, &blk2, &len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003694
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003695 /* Data not yet available. return yield. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003696 if (ret == 0) {
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01003697 si_cant_get(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02003698 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_recv_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003699 }
3700
3701 /* End of data: commit the total strings and return. */
3702 if (ret < 0) {
3703 luaL_pushresult(&appctx->b);
3704 return 1;
3705 }
3706
3707 /* Ensure that the block 2 length is usable. */
3708 if (ret == 1)
3709 len2 = 0;
3710
3711 if (len == -1) {
3712
3713 /* If len == -1, catenate all the data avalaile and
3714 * yield because we want to get all the data until
3715 * the end of data stream.
3716 */
3717 luaL_addlstring(&appctx->b, blk1, len1);
3718 luaL_addlstring(&appctx->b, blk2, len2);
Willy Tarreau06d80a92017-10-19 14:32:15 +02003719 co_skip(si_oc(si), len1 + len2);
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01003720 si_cant_get(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02003721 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_recv_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003722
3723 } else {
3724
3725 /* Copy the fisrt block caping to the length required. */
3726 if (len1 > len)
3727 len1 = len;
3728 luaL_addlstring(&appctx->b, blk1, len1);
3729 len -= len1;
3730
3731 /* Copy the second block. */
3732 if (len2 > len)
3733 len2 = len;
3734 luaL_addlstring(&appctx->b, blk2, len2);
3735 len -= len2;
3736
3737 /* Consume input channel output buffer data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02003738 co_skip(si_oc(si), len1 + len2);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003739
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003740 /* If there is no other data available, yield waiting for new data. */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003741 if (len > 0) {
3742 lua_pushinteger(L, len);
3743 lua_replace(L, 2);
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01003744 si_cant_get(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02003745 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_recv_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003746 }
3747
3748 /* return the result. */
3749 luaL_pushresult(&appctx->b);
3750 return 1;
3751 }
3752
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003753 /* we never execute this */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003754 hlua_pusherror(L, "Lua: internal error");
3755 WILL_LJMP(lua_error(L));
3756 return 0;
3757}
3758
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003759/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003760__LJMP static int hlua_applet_tcp_recv(lua_State *L)
3761{
3762 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
3763 int len = -1;
3764
3765 if (lua_gettop(L) > 2)
3766 WILL_LJMP(luaL_error(L, "The 'recv' function requires between 1 and 2 arguments."));
3767 if (lua_gettop(L) >= 2) {
3768 len = MAY_LJMP(luaL_checkinteger(L, 2));
3769 lua_pop(L, 1);
3770 }
3771
3772 /* Confirm or set the required length */
3773 lua_pushinteger(L, len);
3774
3775 /* Initialise the string catenation. */
3776 luaL_buffinit(L, &appctx->b);
3777
3778 return MAY_LJMP(hlua_applet_tcp_recv_yield(L, 0, 0));
3779}
3780
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08003781/* Append data in the output side of the buffer. This data is immediately
3782 * sent. The function returns the amount of data written. If the buffer
3783 * cannot contain the data, the function yields. The function returns -1
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003784 * if the channel is closed.
3785 */
3786__LJMP static int hlua_applet_tcp_send_yield(lua_State *L, int status, lua_KContext ctx)
3787{
3788 size_t len;
3789 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1));
3790 const char *str = MAY_LJMP(luaL_checklstring(L, 2, &len));
3791 int l = MAY_LJMP(luaL_checkinteger(L, 3));
3792 struct stream_interface *si = appctx->appctx->owner;
3793 struct channel *chn = si_ic(si);
3794 int max;
3795
3796 /* Get the max amount of data which can write as input in the channel. */
3797 max = channel_recv_max(chn);
3798 if (max > (len - l))
3799 max = len - l;
3800
3801 /* Copy data. */
Willy Tarreau06d80a92017-10-19 14:32:15 +02003802 ci_putblk(chn, str + l, max);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003803
3804 /* update counters. */
3805 l += max;
3806 lua_pop(L, 1);
3807 lua_pushinteger(L, l);
3808
3809 /* If some data is not send, declares the situation to the
3810 * applet, and returns a yield.
3811 */
3812 if (l < len) {
Willy Tarreaudb398432018-11-15 11:08:52 +01003813 si_rx_room_blk(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02003814 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_send_yield, TICK_ETERNITY, 0));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02003815 }
3816
3817 return 1;
3818}
3819
3820/* Just a wraper of "hlua_applet_tcp_send_yield". This wrapper permits
3821 * yield the LUA process, and resume it without checking the
3822 * input arguments.
3823 */
3824__LJMP static int hlua_applet_tcp_send(lua_State *L)
3825{
3826 MAY_LJMP(check_args(L, 2, "send"));
3827 lua_pushinteger(L, 0);
3828
3829 return MAY_LJMP(hlua_applet_tcp_send_yield(L, 0, 0));
3830}
3831
Thierry FOURNIER594afe72015-03-10 23:58:30 +01003832/*
3833 *
3834 *
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02003835 * Class AppletHTTP
Thierry FOURNIER08504f42015-03-16 14:17:08 +01003836 *
3837 *
3838 */
3839
3840/* Returns a struct hlua_txn if the stack entry "ud" is
Willy Tarreau87b09662015-04-03 00:22:06 +02003841 * a class stream, otherwise it throws an error.
Thierry FOURNIER08504f42015-03-16 14:17:08 +01003842 */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02003843__LJMP static struct hlua_appctx *hlua_checkapplet_http(lua_State *L, int ud)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01003844{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02003845 return MAY_LJMP(hlua_checkudata(L, ud, class_applet_http_ref));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01003846}
3847
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02003848/* This function creates and push in the stack an Applet object
Thierry FOURNIER08504f42015-03-16 14:17:08 +01003849 * according with a current TXN.
3850 */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02003851static int hlua_applet_http_new(lua_State *L, struct appctx *ctx)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01003852{
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02003853 struct hlua_appctx *appctx;
Thierry FOURNIER841475e2015-12-11 17:10:09 +01003854 struct hlua_txn htxn;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02003855 struct stream_interface *si = ctx->owner;
3856 struct stream *s = si_strm(si);
3857 struct proxy *px = s->be;
Christopher Fauleta2097962019-07-15 16:25:33 +02003858 struct htx *htx;
3859 struct htx_blk *blk;
3860 struct htx_sl *sl;
3861 struct ist path;
3862 unsigned long long len = 0;
3863 int32_t pos;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01003864
3865 /* Check stack size. */
3866 if (!lua_checkstack(L, 3))
3867 return 0;
3868
3869 /* Create the object: obj[0] = userdata.
3870 * Note that the base of the Converters object is the
3871 * same than the TXN object.
3872 */
3873 lua_newtable(L);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02003874 appctx = lua_newuserdata(L, sizeof(*appctx));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01003875 lua_rawseti(L, -2, 0);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02003876 appctx->appctx = ctx;
3877 appctx->appctx->ctx.hlua_apphttp.status = 200; /* Default status code returned. */
Robin H. Johnson52f5db22017-01-01 13:10:52 -08003878 appctx->appctx->ctx.hlua_apphttp.reason = NULL; /* Use default reason based on status */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02003879 appctx->htxn.s = s;
3880 appctx->htxn.p = px;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01003881
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02003882 /* Create the "f" field that contains a list of fetches. */
3883 lua_pushstring(L, "f");
3884 if (!hlua_fetches_new(L, &appctx->htxn, 0))
3885 return 0;
3886 lua_settable(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01003887
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02003888 /* Create the "sf" field that contains a list of stringsafe fetches. */
3889 lua_pushstring(L, "sf");
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003890 if (!hlua_fetches_new(L, &appctx->htxn, HLUA_F_AS_STRING))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02003891 return 0;
3892 lua_settable(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01003893
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02003894 /* Create the "c" field that contains a list of converters. */
3895 lua_pushstring(L, "c");
3896 if (!hlua_converters_new(L, &appctx->htxn, 0))
3897 return 0;
3898 lua_settable(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01003899
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02003900 /* Create the "sc" field that contains a list of stringsafe converters. */
3901 lua_pushstring(L, "sc");
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01003902 if (!hlua_converters_new(L, &appctx->htxn, HLUA_F_AS_STRING))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02003903 return 0;
3904 lua_settable(L, -3);
Willy Tarreaueee5b512015-04-03 23:46:31 +02003905
Christopher Fauleta2097962019-07-15 16:25:33 +02003906 htx = htxbuf(&s->req.buf);
3907 blk = htx_get_first_blk(htx);
3908 BUG_ON(htx_get_blk_type(blk) != HTX_BLK_REQ_SL);
3909 sl = htx_get_blk_ptr(htx, blk);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01003910
Christopher Fauleta2097962019-07-15 16:25:33 +02003911 /* Stores the request method. */
3912 lua_pushstring(L, "method");
3913 lua_pushlstring(L, HTX_SL_REQ_MPTR(sl), HTX_SL_REQ_MLEN(sl));
3914 lua_settable(L, -3);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01003915
Christopher Fauleta2097962019-07-15 16:25:33 +02003916 /* Stores the http version. */
3917 lua_pushstring(L, "version");
3918 lua_pushlstring(L, HTX_SL_REQ_VPTR(sl), HTX_SL_REQ_VLEN(sl));
3919 lua_settable(L, -3);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01003920
Christopher Fauleta2097962019-07-15 16:25:33 +02003921 /* creates an array of headers. hlua_http_get_headers() crates and push
3922 * the array on the top of the stack.
3923 */
3924 lua_pushstring(L, "headers");
3925 htxn.s = s;
3926 htxn.p = px;
3927 htxn.dir = SMP_OPT_DIR_REQ;
3928 if (!hlua_http_get_headers(L, &htxn, &htxn.s->txn->req))
3929 return 0;
3930 lua_settable(L, -3);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01003931
Christopher Fauleta2097962019-07-15 16:25:33 +02003932 path = http_get_path(htx_sl_req_uri(sl));
3933 if (path.ptr) {
3934 char *p, *q, *end;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01003935
Christopher Fauleta2097962019-07-15 16:25:33 +02003936 p = path.ptr;
3937 end = path.ptr + path.len;
3938 q = p;
3939 while (q < end && *q != '?')
3940 q++;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01003941
Thierry FOURNIER7d388632017-02-22 02:06:16 +01003942 /* Stores the request path. */
Christopher Fauleta2097962019-07-15 16:25:33 +02003943 lua_pushstring(L, "path");
3944 lua_pushlstring(L, p, q - p);
Thierry FOURNIER7d388632017-02-22 02:06:16 +01003945 lua_settable(L, -3);
Thierry FOURNIER04c57b32015-03-18 13:43:10 +01003946
Christopher Fauleta2097962019-07-15 16:25:33 +02003947 /* Stores the query string. */
3948 lua_pushstring(L, "qs");
3949 if (*q == '?')
3950 q++;
3951 lua_pushlstring(L, q, end - q);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01003952 lua_settable(L, -3);
Christopher Fauleta2097962019-07-15 16:25:33 +02003953 }
Christopher Faulet9c832fc2018-12-14 13:34:05 +01003954
Christopher Fauleta2097962019-07-15 16:25:33 +02003955 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
3956 struct htx_blk *blk = htx_get_blk(htx, pos);
3957 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01003958
Christopher Fauleta2097962019-07-15 16:25:33 +02003959 if (type == HTX_BLK_EOM || type == HTX_BLK_TLR || type == HTX_BLK_EOT)
3960 break;
3961 if (type == HTX_BLK_DATA)
3962 len += htx_get_blksz(blk);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01003963 }
Christopher Fauleta2097962019-07-15 16:25:33 +02003964 if (htx->extra != ULLONG_MAX)
3965 len += htx->extra;
3966
3967 /* Stores the request path. */
3968 lua_pushstring(L, "length");
3969 lua_pushinteger(L, len);
3970 lua_settable(L, -3);
Thierry FOURNIER04c57b32015-03-18 13:43:10 +01003971
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02003972 /* Create an empty array of HTTP request headers. */
3973 lua_pushstring(L, "response");
3974 lua_newtable(L);
3975 lua_settable(L, -3);
Thierry FOURNIER04c57b32015-03-18 13:43:10 +01003976
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02003977 /* Pop a class stream metatable and affect it to the table. */
3978 lua_rawgeti(L, LUA_REGISTRYINDEX, class_applet_http_ref);
3979 lua_setmetatable(L, -2);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01003980
3981 return 1;
3982}
3983
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01003984__LJMP static int hlua_applet_http_set_var(lua_State *L)
3985{
3986 struct hlua_appctx *appctx;
3987 struct stream *s;
3988 const char *name;
3989 size_t len;
3990 struct sample smp;
3991
3992 MAY_LJMP(check_args(L, 3, "set_var"));
3993
3994 /* It is useles to retrieve the stream, but this function
3995 * runs only in a stream context.
3996 */
3997 appctx = MAY_LJMP(hlua_checkapplet_http(L, 1));
3998 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
3999 s = appctx->htxn.s;
4000
4001 /* Converts the third argument in a sample. */
4002 hlua_lua2smp(L, 3, &smp);
4003
4004 /* Store the sample in a variable. */
4005 smp_set_owner(&smp, s->be, s->sess, s, 0);
4006 vars_set_by_name(name, len, &smp);
4007 return 0;
4008}
4009
4010__LJMP static int hlua_applet_http_unset_var(lua_State *L)
4011{
4012 struct hlua_appctx *appctx;
4013 struct stream *s;
4014 const char *name;
4015 size_t len;
4016 struct sample smp;
4017
4018 MAY_LJMP(check_args(L, 2, "unset_var"));
4019
4020 /* It is useles to retrieve the stream, but this function
4021 * runs only in a stream context.
4022 */
4023 appctx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4024 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
4025 s = appctx->htxn.s;
4026
4027 /* Unset the variable. */
4028 smp_set_owner(&smp, s->be, s->sess, s, 0);
4029 vars_unset_by_name(name, len, &smp);
4030 return 0;
4031}
4032
4033__LJMP static int hlua_applet_http_get_var(lua_State *L)
4034{
4035 struct hlua_appctx *appctx;
4036 struct stream *s;
4037 const char *name;
4038 size_t len;
4039 struct sample smp;
4040
4041 MAY_LJMP(check_args(L, 2, "get_var"));
4042
4043 /* It is useles to retrieve the stream, but this function
4044 * runs only in a stream context.
4045 */
4046 appctx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4047 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
4048 s = appctx->htxn.s;
4049
4050 smp_set_owner(&smp, s->be, s->sess, s, 0);
4051 if (!vars_get_by_name(name, len, &smp)) {
4052 lua_pushnil(L);
4053 return 1;
4054 }
4055
4056 return hlua_smp2lua(L, &smp);
4057}
4058
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004059__LJMP static int hlua_applet_http_set_priv(lua_State *L)
4060{
4061 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4062 struct stream *s = appctx->htxn.s;
Thierry FOURNIER3b0a6d42016-12-16 08:48:32 +01004063 struct hlua *hlua;
4064
4065 /* Note that this hlua struct is from the session and not from the applet. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01004066 if (!s->hlua)
4067 return 0;
4068 hlua = s->hlua;
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004069
4070 MAY_LJMP(check_args(L, 2, "set_priv"));
4071
4072 /* Remove previous value. */
Thierry FOURNIERe068b602017-04-26 13:27:05 +02004073 luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref);
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004074
4075 /* Get and store new value. */
4076 lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */
4077 hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */
4078
4079 return 0;
4080}
4081
4082__LJMP static int hlua_applet_http_get_priv(lua_State *L)
4083{
4084 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4085 struct stream *s = appctx->htxn.s;
Thierry FOURNIER3b0a6d42016-12-16 08:48:32 +01004086 struct hlua *hlua;
4087
4088 /* Note that this hlua struct is from the session and not from the applet. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01004089 if (!s->hlua) {
4090 lua_pushnil(L);
4091 return 1;
4092 }
4093 hlua = s->hlua;
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01004094
4095 /* Push configuration index in the stack. */
4096 lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref);
4097
4098 return 1;
4099}
4100
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004101/* If expected data not yet available, it returns a yield. This function
4102 * consumes the data in the buffer. It returns a string containing the
4103 * data. This string can be empty.
4104 */
Christopher Fauleta2097962019-07-15 16:25:33 +02004105__LJMP static int hlua_applet_http_getline_yield(lua_State *L, int status, lua_KContext ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004106{
4107 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4108 struct stream_interface *si = appctx->appctx->owner;
4109 struct channel *req = si_oc(si);
4110 struct htx *htx;
4111 struct htx_blk *blk;
4112 size_t count;
4113 int stop = 0;
4114
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004115 htx = htx_from_buf(&req->buf);
4116 count = co_data(req);
Christopher Fauleta3f15502019-05-13 15:27:23 +02004117 blk = htx_get_first_blk(htx);
Christopher Fauletcc26b132018-12-18 21:20:57 +01004118
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004119 while (count && !stop && blk) {
4120 enum htx_blk_type type = htx_get_blk_type(blk);
4121 uint32_t sz = htx_get_blksz(blk);
4122 struct ist v;
4123 uint32_t vlen;
4124 char *nl;
4125
Christopher Faulete461e342018-12-18 16:43:35 +01004126 if (type == HTX_BLK_EOM) {
4127 stop = 1;
4128 break;
4129 }
4130
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004131 vlen = sz;
4132 if (vlen > count) {
4133 if (type != HTX_BLK_DATA)
4134 break;
4135 vlen = count;
4136 }
4137
4138 switch (type) {
4139 case HTX_BLK_UNUSED:
4140 break;
4141
4142 case HTX_BLK_DATA:
4143 v = htx_get_blk_value(htx, blk);
4144 v.len = vlen;
4145 nl = istchr(v, '\n');
4146 if (nl != NULL) {
4147 stop = 1;
4148 vlen = nl - v.ptr + 1;
4149 }
4150 luaL_addlstring(&appctx->b, v.ptr, vlen);
4151 break;
4152
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004153 case HTX_BLK_TLR:
4154 case HTX_BLK_EOM:
4155 stop = 1;
4156 break;
4157
4158 default:
4159 break;
4160 }
4161
4162 co_set_data(req, co_data(req) - vlen);
4163 count -= vlen;
4164 if (sz == vlen)
4165 blk = htx_remove_blk(htx, blk);
4166 else {
4167 htx_cut_data_blk(htx, blk, vlen);
4168 break;
4169 }
4170 }
4171
Christopher Faulet0ae79d02019-02-27 21:36:59 +01004172 htx_to_buf(htx, &req->buf);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004173 if (!stop) {
4174 si_cant_get(si);
Christopher Fauleta2097962019-07-15 16:25:33 +02004175 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_getline_yield, TICK_ETERNITY, 0));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004176 }
4177
4178 /* return the result. */
4179 luaL_pushresult(&appctx->b);
4180 return 1;
4181}
4182
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004183
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004184/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004185__LJMP static int hlua_applet_http_getline(lua_State *L)
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004186{
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004187 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004188
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004189 /* Initialise the string catenation. */
4190 luaL_buffinit(L, &appctx->b);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004191
Christopher Fauleta2097962019-07-15 16:25:33 +02004192 return MAY_LJMP(hlua_applet_http_getline_yield(L, 0, 0));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004193}
4194
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004195/* If expected data not yet available, it returns a yield. This function
4196 * consumes the data in the buffer. It returns a string containing the
4197 * data. This string can be empty.
4198 */
Christopher Fauleta2097962019-07-15 16:25:33 +02004199__LJMP static int hlua_applet_http_recv_yield(lua_State *L, int status, lua_KContext ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004200{
4201 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4202 struct stream_interface *si = appctx->appctx->owner;
4203 struct channel *req = si_oc(si);
4204 struct htx *htx;
4205 struct htx_blk *blk;
4206 size_t count;
4207 int len;
4208
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004209 htx = htx_from_buf(&req->buf);
4210 len = MAY_LJMP(luaL_checkinteger(L, 2));
4211 count = co_data(req);
Christopher Faulet29f17582019-05-23 11:03:26 +02004212 blk = htx_get_head_blk(htx);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004213 while (count && len && blk) {
4214 enum htx_blk_type type = htx_get_blk_type(blk);
4215 uint32_t sz = htx_get_blksz(blk);
4216 struct ist v;
4217 uint32_t vlen;
4218
Christopher Faulete461e342018-12-18 16:43:35 +01004219 if (type == HTX_BLK_EOM) {
4220 len = 0;
4221 break;
4222 }
4223
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004224 vlen = sz;
4225 if (len > 0 && vlen > len)
4226 vlen = len;
4227 if (vlen > count) {
4228 if (type != HTX_BLK_DATA)
4229 break;
4230 vlen = count;
4231 }
4232
4233 switch (type) {
4234 case HTX_BLK_UNUSED:
4235 break;
4236
4237 case HTX_BLK_DATA:
4238 v = htx_get_blk_value(htx, blk);
4239 luaL_addlstring(&appctx->b, v.ptr, vlen);
4240 break;
4241
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004242 case HTX_BLK_TLR:
4243 case HTX_BLK_EOM:
4244 len = 0;
4245 break;
4246
4247 default:
4248 break;
4249 }
4250
4251 co_set_data(req, co_data(req) - vlen);
4252 count -= vlen;
4253 if (len > 0)
4254 len -= vlen;
4255 if (sz == vlen)
4256 blk = htx_remove_blk(htx, blk);
4257 else {
4258 htx_cut_data_blk(htx, blk, vlen);
4259 break;
4260 }
4261 }
4262
Christopher Faulet0ae79d02019-02-27 21:36:59 +01004263 htx_to_buf(htx, &req->buf);
4264
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004265 /* If we are no other data available, yield waiting for new data. */
4266 if (len) {
4267 if (len > 0) {
4268 lua_pushinteger(L, len);
4269 lua_replace(L, 2);
4270 }
4271 si_cant_get(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02004272 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_recv_yield, TICK_ETERNITY, 0));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004273 }
4274
4275 /* return the result. */
4276 luaL_pushresult(&appctx->b);
4277 return 1;
4278}
4279
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004280/* Check arguments for the function "hlua_channel_get_yield". */
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004281__LJMP static int hlua_applet_http_recv(lua_State *L)
4282{
4283 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4284 int len = -1;
4285
4286 /* Check arguments. */
4287 if (lua_gettop(L) > 2)
4288 WILL_LJMP(luaL_error(L, "The 'recv' function requires between 1 and 2 arguments."));
4289 if (lua_gettop(L) >= 2) {
4290 len = MAY_LJMP(luaL_checkinteger(L, 2));
4291 lua_pop(L, 1);
4292 }
4293
Christopher Fauleta2097962019-07-15 16:25:33 +02004294 lua_pushinteger(L, len);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004295
Christopher Fauleta2097962019-07-15 16:25:33 +02004296 /* Initialise the string catenation. */
4297 luaL_buffinit(L, &appctx->b);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004298
Christopher Fauleta2097962019-07-15 16:25:33 +02004299 return MAY_LJMP(hlua_applet_http_recv_yield(L, 0, 0));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004300}
4301
4302/* Append data in the output side of the buffer. This data is immediately
4303 * sent. The function returns the amount of data written. If the buffer
4304 * cannot contain the data, the function yields. The function returns -1
4305 * if the channel is closed.
4306 */
Christopher Fauleta2097962019-07-15 16:25:33 +02004307__LJMP static int hlua_applet_http_send_yield(lua_State *L, int status, lua_KContext ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004308{
4309 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4310 struct stream_interface *si = appctx->appctx->owner;
4311 struct channel *res = si_ic(si);
4312 struct htx *htx = htx_from_buf(&res->buf);
4313 const char *data;
4314 size_t len;
4315 int l = MAY_LJMP(luaL_checkinteger(L, 3));
4316 int max;
4317
Christopher Faulet9060fc02019-07-03 11:39:30 +02004318 max = htx_get_max_blksz(htx, channel_htx_recv_max(res, htx));
Christopher Faulet4b0e9b22019-01-09 12:16:58 +01004319 if (!max)
4320 goto snd_yield;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004321
4322 data = MAY_LJMP(luaL_checklstring(L, 2, &len));
4323
4324 /* Get the max amount of data which can write as input in the channel. */
4325 if (max > (len - l))
4326 max = len - l;
4327
4328 /* Copy data. */
Willy Tarreau0a7ef022019-05-28 10:30:11 +02004329 max = htx_add_data(htx, ist2(data + l, max));
Christopher Fauletf6cce3f2019-02-27 21:20:09 +01004330 channel_add_input(res, max);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004331
4332 /* update counters. */
4333 l += max;
4334 lua_pop(L, 1);
4335 lua_pushinteger(L, l);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004336
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004337 /* If some data is not send, declares the situation to the
4338 * applet, and returns a yield.
4339 */
4340 if (l < len) {
Christopher Faulet4b0e9b22019-01-09 12:16:58 +01004341 snd_yield:
Christopher Faulet0ae79d02019-02-27 21:36:59 +01004342 htx_to_buf(htx, &res->buf);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004343 si_rx_room_blk(si);
Willy Tarreau9635e032018-10-16 17:52:55 +02004344 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_send_yield, TICK_ETERNITY, 0));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004345 }
4346
Christopher Fauleta2097962019-07-15 16:25:33 +02004347 htx_to_buf(htx, &res->buf);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004348 return 1;
4349}
4350
4351/* Just a wraper of "hlua_applet_send_yield". This wrapper permits
4352 * yield the LUA process, and resume it without checking the
4353 * input arguments.
4354 */
4355__LJMP static int hlua_applet_http_send(lua_State *L)
4356{
4357 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004358
4359 /* We want to send some data. Headers must be sent. */
4360 if (!(appctx->appctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT)) {
4361 hlua_pusherror(L, "Lua: 'send' you must call start_response() before sending data.");
4362 WILL_LJMP(lua_error(L));
4363 }
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004364
Christopher Fauleta2097962019-07-15 16:25:33 +02004365 /* This interger is used for followinf the amount of data sent. */
4366 lua_pushinteger(L, 0);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004367
Christopher Fauleta2097962019-07-15 16:25:33 +02004368 return MAY_LJMP(hlua_applet_http_send_yield(L, 0, 0));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004369}
4370
4371__LJMP static int hlua_applet_http_addheader(lua_State *L)
4372{
4373 const char *name;
4374 int ret;
4375
4376 MAY_LJMP(hlua_checkapplet_http(L, 1));
4377 name = MAY_LJMP(luaL_checkstring(L, 2));
4378 MAY_LJMP(luaL_checkstring(L, 3));
4379
4380 /* Push in the stack the "response" entry. */
4381 ret = lua_getfield(L, 1, "response");
4382 if (ret != LUA_TTABLE) {
4383 hlua_pusherror(L, "Lua: 'add_header' internal error: AppletHTTP['response'] "
4384 "is expected as an array. %s found", lua_typename(L, ret));
4385 WILL_LJMP(lua_error(L));
4386 }
4387
4388 /* check if the header is already registered if it is not
4389 * the case, register it.
4390 */
4391 ret = lua_getfield(L, -1, name);
4392 if (ret == LUA_TNIL) {
4393
4394 /* Entry not found. */
4395 lua_pop(L, 1); /* remove the nil. The "response" table is the top of the stack. */
4396
4397 /* Insert the new header name in the array in the top of the stack.
4398 * It left the new array in the top of the stack.
4399 */
4400 lua_newtable(L);
4401 lua_pushvalue(L, 2);
4402 lua_pushvalue(L, -2);
4403 lua_settable(L, -4);
4404
4405 } else if (ret != LUA_TTABLE) {
4406
4407 /* corruption error. */
4408 hlua_pusherror(L, "Lua: 'add_header' internal error: AppletHTTP['response']['%s'] "
4409 "is expected as an array. %s found", name, lua_typename(L, ret));
4410 WILL_LJMP(lua_error(L));
4411 }
4412
4413 /* Now the top od thestack is an array of values. We push
4414 * the header value as new entry.
4415 */
4416 lua_pushvalue(L, 3);
4417 ret = lua_rawlen(L, -2);
4418 lua_rawseti(L, -2, ret + 1);
4419 lua_pushboolean(L, 1);
4420 return 1;
4421}
4422
4423__LJMP static int hlua_applet_http_status(lua_State *L)
4424{
4425 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4426 int status = MAY_LJMP(luaL_checkinteger(L, 2));
Robin H. Johnson52f5db22017-01-01 13:10:52 -08004427 const char *reason = MAY_LJMP(luaL_optlstring(L, 3, NULL, NULL));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004428
4429 if (status < 100 || status > 599) {
4430 lua_pushboolean(L, 0);
4431 return 1;
4432 }
4433
4434 appctx->appctx->ctx.hlua_apphttp.status = status;
Robin H. Johnson52f5db22017-01-01 13:10:52 -08004435 appctx->appctx->ctx.hlua_apphttp.reason = reason;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004436 lua_pushboolean(L, 1);
4437 return 1;
4438}
4439
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004440
Christopher Fauleta2097962019-07-15 16:25:33 +02004441__LJMP static int hlua_applet_http_send_response(lua_State *L)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004442{
4443 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4444 struct stream_interface *si = appctx->appctx->owner;
4445 struct channel *res = si_ic(si);
4446 struct htx *htx;
4447 struct htx_sl *sl;
4448 struct h1m h1m;
4449 const char *status, *reason;
4450 const char *name, *value;
4451 size_t nlen, vlen;
4452 unsigned int flags;
4453
4454 /* Send the message at once. */
4455 htx = htx_from_buf(&res->buf);
4456 h1m_init_res(&h1m);
4457
4458 /* Use the same http version than the request. */
4459 status = ultoa_r(appctx->appctx->ctx.hlua_apphttp.status, trash.area, trash.size);
4460 reason = appctx->appctx->ctx.hlua_apphttp.reason;
4461 if (reason == NULL)
4462 reason = http_get_reason(appctx->appctx->ctx.hlua_apphttp.status);
4463 if (appctx->appctx->ctx.hlua_apphttp.flags & APPLET_HTTP11) {
4464 flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11);
4465 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"), ist(status), ist(reason));
4466 }
4467 else {
4468 flags = HTX_SL_F_IS_RESP;
4469 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.0"), ist(status), ist(reason));
4470 }
4471 if (!sl) {
4472 hlua_pusherror(L, "Lua applet http '%s': Failed to create response.\n",
4473 appctx->appctx->rule->arg.hlua_rule->fcn.name);
4474 WILL_LJMP(lua_error(L));
4475 }
4476 sl->info.res.status = appctx->appctx->ctx.hlua_apphttp.status;
4477
4478 /* Get the array associated to the field "response" in the object AppletHTTP. */
4479 lua_pushvalue(L, 0);
4480 if (lua_getfield(L, 1, "response") != LUA_TTABLE) {
4481 hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response'] missing.\n",
4482 appctx->appctx->rule->arg.hlua_rule->fcn.name);
4483 WILL_LJMP(lua_error(L));
4484 }
4485
4486 /* Browse the list of headers. */
4487 lua_pushnil(L);
4488 while(lua_next(L, -2) != 0) {
4489 /* We expect a string as -2. */
4490 if (lua_type(L, -2) != LUA_TSTRING) {
4491 hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response'][] element must be a string. got %s.\n",
4492 appctx->appctx->rule->arg.hlua_rule->fcn.name,
4493 lua_typename(L, lua_type(L, -2)));
4494 WILL_LJMP(lua_error(L));
4495 }
4496 name = lua_tolstring(L, -2, &nlen);
4497
4498 /* We expect an array as -1. */
4499 if (lua_type(L, -1) != LUA_TTABLE) {
4500 hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response']['%s'] element must be an table. got %s.\n",
4501 appctx->appctx->rule->arg.hlua_rule->fcn.name,
4502 name,
4503 lua_typename(L, lua_type(L, -1)));
4504 WILL_LJMP(lua_error(L));
4505 }
4506
4507 /* Browse the table who is on the top of the stack. */
4508 lua_pushnil(L);
4509 while(lua_next(L, -2) != 0) {
4510 int id;
4511
4512 /* We expect a number as -2. */
4513 if (lua_type(L, -2) != LUA_TNUMBER) {
4514 hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response']['%s'][] element must be a number. got %s.\n",
4515 appctx->appctx->rule->arg.hlua_rule->fcn.name,
4516 name,
4517 lua_typename(L, lua_type(L, -2)));
4518 WILL_LJMP(lua_error(L));
4519 }
4520 id = lua_tointeger(L, -2);
4521
4522 /* We expect a string as -2. */
4523 if (lua_type(L, -1) != LUA_TSTRING) {
4524 hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response']['%s'][%d] element must be a string. got %s.\n",
4525 appctx->appctx->rule->arg.hlua_rule->fcn.name,
4526 name, id,
4527 lua_typename(L, lua_type(L, -1)));
4528 WILL_LJMP(lua_error(L));
4529 }
4530 value = lua_tolstring(L, -1, &vlen);
4531
4532 /* Simple Protocol checks. */
4533 if (isteqi(ist2(name, nlen), ist("transfer-encoding")))
4534 h1_parse_xfer_enc_header(&h1m, ist2(name, nlen));
4535 else if (isteqi(ist2(name, nlen), ist("content-length"))) {
4536 struct ist v = ist2(value, vlen);
4537 int ret;
4538
4539 ret = h1_parse_cont_len_header(&h1m, &v);
4540 if (ret < 0) {
4541 hlua_pusherror(L, "Lua applet http '%s': Invalid '%s' header.\n",
4542 appctx->appctx->rule->arg.hlua_rule->fcn.name,
4543 name);
4544 WILL_LJMP(lua_error(L));
4545 }
4546 else if (ret == 0)
4547 goto next; /* Skip it */
4548 }
4549
4550 /* Add a new header */
4551 if (!htx_add_header(htx, ist2(name, nlen), ist2(value, vlen))) {
4552 hlua_pusherror(L, "Lua applet http '%s': Failed to add header '%s' in the response.\n",
4553 appctx->appctx->rule->arg.hlua_rule->fcn.name,
4554 name);
4555 WILL_LJMP(lua_error(L));
4556 }
4557 next:
4558 /* Remove the array from the stack, and get next element with a remaining string. */
4559 lua_pop(L, 1);
4560 }
4561
4562 /* Remove the array from the stack, and get next element with a remaining string. */
4563 lua_pop(L, 1);
4564 }
4565
4566 if (h1m.flags & H1_MF_CHNK)
4567 h1m.flags &= ~H1_MF_CLEN;
4568 if (h1m.flags & (H1_MF_CLEN|H1_MF_CHNK))
4569 h1m.flags |= H1_MF_XFER_LEN;
4570
4571 /* Uset HTX start-line flags */
4572 if (h1m.flags & H1_MF_XFER_ENC)
4573 flags |= HTX_SL_F_XFER_ENC;
4574 if (h1m.flags & H1_MF_XFER_LEN) {
4575 flags |= HTX_SL_F_XFER_LEN;
4576 if (h1m.flags & H1_MF_CHNK)
4577 flags |= HTX_SL_F_CHNK;
4578 else if (h1m.flags & H1_MF_CLEN)
4579 flags |= HTX_SL_F_CLEN;
4580 if (h1m.body_len == 0)
4581 flags |= HTX_SL_F_BODYLESS;
4582 }
4583 sl->flags |= flags;
4584
4585 /* If we dont have a content-length set, and the HTTP version is 1.1
4586 * and the status code implies the presence of a message body, we must
4587 * announce a transfer encoding chunked. This is required by haproxy
4588 * for the keepalive compliance. If the applet annouces a transfer-encoding
4589 * chunked itslef, don't do anything.
4590 */
4591 if ((flags & (HTX_SL_F_VER_11|HTX_SL_F_XFER_LEN)) == HTX_SL_F_VER_11 &&
4592 appctx->appctx->ctx.hlua_apphttp.status >= 200 &&
4593 appctx->appctx->ctx.hlua_apphttp.status != 204 &&
4594 appctx->appctx->ctx.hlua_apphttp.status != 304) {
4595 /* Add a new header */
4596 sl->flags |= (HTX_SL_F_XFER_ENC|H1_MF_CHNK|H1_MF_XFER_LEN);
4597 if (!htx_add_header(htx, ist("transfer-encoding"), ist("chunked"))) {
4598 hlua_pusherror(L, "Lua applet http '%s': Failed to add header 'transfer-encoding' in the response.\n",
4599 appctx->appctx->rule->arg.hlua_rule->fcn.name);
4600 WILL_LJMP(lua_error(L));
4601 }
4602 }
4603
4604 /* Finalize headers. */
4605 if (!htx_add_endof(htx, HTX_BLK_EOH)) {
4606 hlua_pusherror(L, "Lua applet http '%s': Failed create the response.\n",
4607 appctx->appctx->rule->arg.hlua_rule->fcn.name);
4608 WILL_LJMP(lua_error(L));
4609 }
4610
4611 if (htx_used_space(htx) > b_size(&res->buf) - global.tune.maxrewrite) {
4612 b_reset(&res->buf);
4613 hlua_pusherror(L, "Lua: 'start_response': response header block too big");
4614 WILL_LJMP(lua_error(L));
4615 }
4616
4617 htx_to_buf(htx, &res->buf);
Christopher Fauletf6cce3f2019-02-27 21:20:09 +01004618 channel_add_input(res, htx->data);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004619
4620 /* Headers sent, set the flag. */
4621 appctx->appctx->ctx.hlua_apphttp.flags |= APPLET_HDR_SENT;
4622 return 0;
4623
4624}
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004625/* We will build the status line and the headers of the HTTP response.
4626 * We will try send at once if its not possible, we give back the hand
4627 * waiting for more room.
4628 */
Christopher Fauleta2097962019-07-15 16:25:33 +02004629__LJMP static int hlua_applet_http_start_response_yield(lua_State *L, int status, lua_KContext ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004630{
4631 struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1));
4632 struct stream_interface *si = appctx->appctx->owner;
4633 struct channel *res = si_ic(si);
4634
4635 if (co_data(res)) {
4636 si_rx_room_blk(si);
Christopher Fauleta2097962019-07-15 16:25:33 +02004637 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_start_response_yield, TICK_ETERNITY, 0));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004638 }
Christopher Fauleta2097962019-07-15 16:25:33 +02004639 return MAY_LJMP(hlua_applet_http_send_response(L));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004640}
4641
4642
Christopher Fauleta2097962019-07-15 16:25:33 +02004643__LJMP static int hlua_applet_http_start_response(lua_State *L)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004644{
Christopher Fauleta2097962019-07-15 16:25:33 +02004645 return MAY_LJMP(hlua_applet_http_start_response_yield(L, 0, 0));
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004646}
4647
Christopher Fauleta2097962019-07-15 16:25:33 +02004648/*
4649 *
4650 *
4651 * Class HTTP
4652 *
4653 *
Christopher Faulet9c832fc2018-12-14 13:34:05 +01004654 */
Christopher Fauleta2097962019-07-15 16:25:33 +02004655
4656/* Returns a struct hlua_txn if the stack entry "ud" is
4657 * a class stream, otherwise it throws an error.
4658 */
4659__LJMP static struct hlua_txn *hlua_checkhttp(lua_State *L, int ud)
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004660{
Christopher Fauleta2097962019-07-15 16:25:33 +02004661 return MAY_LJMP(hlua_checkudata(L, ud, class_http_ref));
4662}
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004663
Christopher Fauleta2097962019-07-15 16:25:33 +02004664/* This function creates and push in the stack a HTTP object
4665 * according with a current TXN.
4666 */
4667static int hlua_http_new(lua_State *L, struct hlua_txn *txn)
4668{
4669 struct hlua_txn *htxn;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004670
Christopher Fauleta2097962019-07-15 16:25:33 +02004671 /* Check stack size. */
4672 if (!lua_checkstack(L, 3))
4673 return 0;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004674
Christopher Fauleta2097962019-07-15 16:25:33 +02004675 /* Create the object: obj[0] = userdata.
4676 * Note that the base of the Converters object is the
4677 * same than the TXN object.
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004678 */
Christopher Fauleta2097962019-07-15 16:25:33 +02004679 lua_newtable(L);
4680 htxn = lua_newuserdata(L, sizeof(*htxn));
4681 lua_rawseti(L, -2, 0);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004682
4683 htxn->s = txn->s;
4684 htxn->p = txn->p;
Christopher Faulet256b69a2019-05-23 11:14:21 +02004685 htxn->dir = txn->dir;
4686 htxn->flags = txn->flags;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004687
4688 /* Pop a class stream metatable and affect it to the table. */
4689 lua_rawgeti(L, LUA_REGISTRYINDEX, class_http_ref);
4690 lua_setmetatable(L, -2);
4691
4692 return 1;
4693}
4694
4695/* This function creates ans returns an array of HTTP headers.
4696 * This function does not fails. It is used as wrapper with the
4697 * 2 following functions.
4698 */
4699__LJMP static int hlua_http_get_headers(lua_State *L, struct hlua_txn *htxn, struct http_msg *msg)
4700{
Christopher Fauleta2097962019-07-15 16:25:33 +02004701 struct htx *htx;
4702 int32_t pos;
4703
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004704 /* Create the table. */
4705 lua_newtable(L);
4706
4707 if (!htxn->s->txn)
4708 return 1;
4709
Christopher Fauleta2097962019-07-15 16:25:33 +02004710 htx = htxbuf(&msg->chn->buf);
4711 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
4712 struct htx_blk *blk = htx_get_blk(htx, pos);
4713 enum htx_blk_type type = htx_get_blk_type(blk);
4714 struct ist n, v;
4715 int len;
Christopher Faulet724a12c2018-12-13 22:12:15 +01004716
Christopher Fauleta2097962019-07-15 16:25:33 +02004717 if (type == HTX_BLK_HDR) {
4718 n = htx_get_blk_name(htx,blk);
4719 v = htx_get_blk_value(htx, blk);
Christopher Faulet724a12c2018-12-13 22:12:15 +01004720 }
Christopher Fauleta2097962019-07-15 16:25:33 +02004721 else if (type == HTX_BLK_EOH)
4722 break;
4723 else
4724 continue;
Christopher Faulet724a12c2018-12-13 22:12:15 +01004725
Christopher Fauleta2097962019-07-15 16:25:33 +02004726 /* Check for existing entry:
4727 * assume that the table is on the top of the stack, and
4728 * push the key in the stack, the function lua_gettable()
4729 * perform the lookup.
4730 */
4731 lua_pushlstring(L, n.ptr, n.len);
4732 lua_gettable(L, -2);
Christopher Faulet724a12c2018-12-13 22:12:15 +01004733
Christopher Fauleta2097962019-07-15 16:25:33 +02004734 switch (lua_type(L, -1)) {
4735 case LUA_TNIL:
4736 /* Table not found, create it. */
4737 lua_pop(L, 1); /* remove the nil value. */
4738 lua_pushlstring(L, n.ptr, n.len); /* push the header name as key. */
4739 lua_newtable(L); /* create and push empty table. */
4740 lua_pushlstring(L, v.ptr, v.len); /* push header value. */
4741 lua_rawseti(L, -2, 0); /* index header value (pop it). */
4742 lua_rawset(L, -3); /* index new table with header name (pop the values). */
Christopher Faulet724a12c2018-12-13 22:12:15 +01004743 break;
Christopher Faulet724a12c2018-12-13 22:12:15 +01004744
Christopher Fauleta2097962019-07-15 16:25:33 +02004745 case LUA_TTABLE:
4746 /* Entry found: push the value in the table. */
4747 len = lua_rawlen(L, -1);
4748 lua_pushlstring(L, v.ptr, v.len); /* push header value. */
4749 lua_rawseti(L, -2, len+1); /* index header value (pop it). */
4750 lua_pop(L, 1); /* remove the table (it is stored in the main table). */
4751 break;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004752
Christopher Fauleta2097962019-07-15 16:25:33 +02004753 default:
4754 /* Other cases are errors. */
4755 hlua_pusherror(L, "internal error during the parsing of headers.");
4756 WILL_LJMP(lua_error(L));
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004757 }
4758 }
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004759 return 1;
4760}
4761
4762__LJMP static int hlua_http_req_get_headers(lua_State *L)
4763{
4764 struct hlua_txn *htxn;
4765
4766 MAY_LJMP(check_args(L, 1, "req_get_headers"));
4767 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
4768
4769 return hlua_http_get_headers(L, htxn, &htxn->s->txn->req);
4770}
4771
4772__LJMP static int hlua_http_res_get_headers(lua_State *L)
4773{
4774 struct hlua_txn *htxn;
4775
4776 MAY_LJMP(check_args(L, 1, "res_get_headers"));
4777 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
4778
4779 return hlua_http_get_headers(L, htxn, &htxn->s->txn->rsp);
4780}
4781
4782/* This function replace full header, or just a value in
4783 * the request or in the response. It is a wrapper fir the
4784 * 4 following functions.
4785 */
4786__LJMP static inline int hlua_http_rep_hdr(lua_State *L, struct hlua_txn *htxn,
4787 struct http_msg *msg, int action)
4788{
4789 size_t name_len;
4790 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
4791 const char *reg = MAY_LJMP(luaL_checkstring(L, 3));
4792 const char *value = MAY_LJMP(luaL_checkstring(L, 4));
Christopher Fauleta2097962019-07-15 16:25:33 +02004793 struct htx *htx;
Dragan Dosen26743032019-04-30 15:54:36 +02004794 struct my_regex *re;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004795
Dragan Dosen26743032019-04-30 15:54:36 +02004796 if (!(re = regex_comp(reg, 1, 1, NULL)))
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004797 WILL_LJMP(luaL_argerror(L, 3, "invalid regex"));
4798
Christopher Fauleta2097962019-07-15 16:25:33 +02004799 htx = htxbuf(&msg->chn->buf);
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004800 http_transform_header_str(htxn->s, msg->chn, htx, ist2(name, name_len), value, re, action);
Dragan Dosen26743032019-04-30 15:54:36 +02004801 regex_free(re);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02004802 return 0;
4803}
4804
4805__LJMP static int hlua_http_req_rep_hdr(lua_State *L)
4806{
4807 struct hlua_txn *htxn;
4808
4809 MAY_LJMP(check_args(L, 4, "req_rep_hdr"));
4810 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
4811
4812 return MAY_LJMP(hlua_http_rep_hdr(L, htxn, &htxn->s->txn->req, ACT_HTTP_REPLACE_HDR));
4813}
4814
4815__LJMP static int hlua_http_res_rep_hdr(lua_State *L)
4816{
4817 struct hlua_txn *htxn;
4818
4819 MAY_LJMP(check_args(L, 4, "res_rep_hdr"));
4820 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
4821
4822 return MAY_LJMP(hlua_http_rep_hdr(L, htxn, &htxn->s->txn->rsp, ACT_HTTP_REPLACE_HDR));
4823}
4824
4825__LJMP static int hlua_http_req_rep_val(lua_State *L)
4826{
4827 struct hlua_txn *htxn;
4828
4829 MAY_LJMP(check_args(L, 4, "req_rep_hdr"));
4830 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
4831
4832 return MAY_LJMP(hlua_http_rep_hdr(L, htxn, &htxn->s->txn->req, ACT_HTTP_REPLACE_VAL));
4833}
4834
4835__LJMP static int hlua_http_res_rep_val(lua_State *L)
4836{
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004837 struct hlua_txn *htxn;
4838
4839 MAY_LJMP(check_args(L, 4, "res_rep_val"));
4840 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
4841
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02004842 return MAY_LJMP(hlua_http_rep_hdr(L, htxn, &htxn->s->txn->rsp, ACT_HTTP_REPLACE_VAL));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004843}
4844
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08004845/* This function deletes all the occurrences of an header.
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004846 * It is a wrapper for the 2 following functions.
4847 */
4848__LJMP static inline int hlua_http_del_hdr(lua_State *L, struct hlua_txn *htxn, struct http_msg *msg)
4849{
4850 size_t len;
4851 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &len));
Christopher Fauleta2097962019-07-15 16:25:33 +02004852 struct htx *htx = htxbuf(&msg->chn->buf);
4853 struct http_hdr_ctx ctx;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004854
Christopher Fauleta2097962019-07-15 16:25:33 +02004855 ctx.blk = NULL;
4856 while (http_find_header(htx, ist2(name, len), &ctx, 1))
4857 http_remove_header(htx, &ctx);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004858 return 0;
4859}
4860
4861__LJMP static int hlua_http_req_del_hdr(lua_State *L)
4862{
4863 struct hlua_txn *htxn;
4864
4865 MAY_LJMP(check_args(L, 2, "req_del_hdr"));
4866 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
4867
Willy Tarreaueee5b512015-04-03 23:46:31 +02004868 return hlua_http_del_hdr(L, htxn, &htxn->s->txn->req);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004869}
4870
4871__LJMP static int hlua_http_res_del_hdr(lua_State *L)
4872{
4873 struct hlua_txn *htxn;
4874
4875 MAY_LJMP(check_args(L, 2, "req_del_hdr"));
4876 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
4877
Willy Tarreaueee5b512015-04-03 23:46:31 +02004878 return hlua_http_del_hdr(L, htxn, &htxn->s->txn->rsp);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004879}
4880
4881/* This function adds an header. It is a wrapper used by
4882 * the 2 following functions.
4883 */
4884__LJMP static inline int hlua_http_add_hdr(lua_State *L, struct hlua_txn *htxn, struct http_msg *msg)
4885{
4886 size_t name_len;
4887 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
4888 size_t value_len;
4889 const char *value = MAY_LJMP(luaL_checklstring(L, 3, &value_len));
Christopher Fauleta2097962019-07-15 16:25:33 +02004890 struct htx *htx = htxbuf(&msg->chn->buf);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004891
Christopher Fauleta2097962019-07-15 16:25:33 +02004892 lua_pushboolean(L, http_add_header(htx, ist2(name, name_len),
4893 ist2(value, value_len)));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004894 return 0;
4895}
4896
4897__LJMP static int hlua_http_req_add_hdr(lua_State *L)
4898{
4899 struct hlua_txn *htxn;
4900
4901 MAY_LJMP(check_args(L, 3, "req_add_hdr"));
4902 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
4903
Willy Tarreaueee5b512015-04-03 23:46:31 +02004904 return hlua_http_add_hdr(L, htxn, &htxn->s->txn->req);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004905}
4906
4907__LJMP static int hlua_http_res_add_hdr(lua_State *L)
4908{
4909 struct hlua_txn *htxn;
4910
4911 MAY_LJMP(check_args(L, 3, "res_add_hdr"));
4912 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
4913
Willy Tarreaueee5b512015-04-03 23:46:31 +02004914 return hlua_http_add_hdr(L, htxn, &htxn->s->txn->rsp);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004915}
4916
4917static int hlua_http_req_set_hdr(lua_State *L)
4918{
4919 struct hlua_txn *htxn;
4920
4921 MAY_LJMP(check_args(L, 3, "req_set_hdr"));
4922 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
4923
Willy Tarreaueee5b512015-04-03 23:46:31 +02004924 hlua_http_del_hdr(L, htxn, &htxn->s->txn->req);
4925 return hlua_http_add_hdr(L, htxn, &htxn->s->txn->req);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004926}
4927
4928static int hlua_http_res_set_hdr(lua_State *L)
4929{
4930 struct hlua_txn *htxn;
4931
4932 MAY_LJMP(check_args(L, 3, "res_set_hdr"));
4933 htxn = MAY_LJMP(hlua_checkhttp(L, 1));
4934
Willy Tarreaueee5b512015-04-03 23:46:31 +02004935 hlua_http_del_hdr(L, htxn, &htxn->s->txn->rsp);
4936 return hlua_http_add_hdr(L, htxn, &htxn->s->txn->rsp);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004937}
4938
4939/* This function set the method. */
4940static int hlua_http_req_set_meth(lua_State *L)
4941{
Willy Tarreaubcb39cc2015-04-06 11:21:44 +02004942 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004943 size_t name_len;
4944 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004945
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004946 lua_pushboolean(L, http_req_replace_stline(0, name, name_len, htxn->p, htxn->s) != -1);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004947 return 1;
4948}
4949
4950/* This function set the method. */
4951static int hlua_http_req_set_path(lua_State *L)
4952{
Willy Tarreaubcb39cc2015-04-06 11:21:44 +02004953 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004954 size_t name_len;
4955 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
Thierry FOURNIER / OZON.IOb84ae922016-08-02 23:44:58 +02004956
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004957 lua_pushboolean(L, http_req_replace_stline(1, name, name_len, htxn->p, htxn->s) != -1);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004958 return 1;
4959}
4960
4961/* This function set the query-string. */
4962static int hlua_http_req_set_query(lua_State *L)
4963{
Willy Tarreaubcb39cc2015-04-06 11:21:44 +02004964 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004965 size_t name_len;
4966 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004967
4968 /* Check length. */
4969 if (name_len > trash.size - 1) {
4970 lua_pushboolean(L, 0);
4971 return 1;
4972 }
4973
4974 /* Add the mark question as prefix. */
4975 chunk_reset(&trash);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004976 trash.area[trash.data++] = '?';
4977 memcpy(trash.area + trash.data, name, name_len);
4978 trash.data += name_len;
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004979
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004980 lua_pushboolean(L,
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004981 http_req_replace_stline(2, trash.area, trash.data, htxn->p, htxn->s) != -1);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004982 return 1;
4983}
4984
4985/* This function set the uri. */
4986static int hlua_http_req_set_uri(lua_State *L)
4987{
Willy Tarreaubcb39cc2015-04-06 11:21:44 +02004988 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004989 size_t name_len;
4990 const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len));
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004991
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004992 lua_pushboolean(L, http_req_replace_stline(3, name, name_len, htxn->p, htxn->s) != -1);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01004993 return 1;
4994}
4995
Robin H. Johnson52f5db22017-01-01 13:10:52 -08004996/* This function set the response code & optionally reason. */
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +02004997static int hlua_http_res_set_status(lua_State *L)
4998{
4999 struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1));
5000 unsigned int code = MAY_LJMP(luaL_checkinteger(L, 2));
Robin H. Johnson52f5db22017-01-01 13:10:52 -08005001 const char *reason = MAY_LJMP(luaL_optlstring(L, 3, NULL, NULL));
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +02005002
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02005003 http_res_set_status(code, reason, htxn->s);
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +02005004 return 0;
5005}
5006
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005007/*
5008 *
5009 *
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005010 * Class TXN
5011 *
5012 *
5013 */
5014
5015/* Returns a struct hlua_session if the stack entry "ud" is
Willy Tarreau87b09662015-04-03 00:22:06 +02005016 * a class stream, otherwise it throws an error.
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005017 */
5018__LJMP static struct hlua_txn *hlua_checktxn(lua_State *L, int ud)
5019{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02005020 return MAY_LJMP(hlua_checkudata(L, ud, class_txn_ref));
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005021}
5022
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02005023__LJMP static int hlua_set_var(lua_State *L)
5024{
5025 struct hlua_txn *htxn;
5026 const char *name;
5027 size_t len;
5028 struct sample smp;
5029
5030 MAY_LJMP(check_args(L, 3, "set_var"));
5031
5032 /* It is useles to retrieve the stream, but this function
5033 * runs only in a stream context.
5034 */
5035 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5036 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
5037
5038 /* Converts the third argument in a sample. */
5039 hlua_lua2smp(L, 3, &smp);
5040
5041 /* Store the sample in a variable. */
Willy Tarreau7560dd42016-03-10 16:28:58 +01005042 smp_set_owner(&smp, htxn->p, htxn->s->sess, htxn->s, htxn->dir & SMP_OPT_DIR);
Willy Tarreau6204cd92016-03-10 16:33:04 +01005043 vars_set_by_name(name, len, &smp);
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02005044 return 0;
5045}
5046
Christopher Faulet85d79c92016-11-09 16:54:56 +01005047__LJMP static int hlua_unset_var(lua_State *L)
5048{
5049 struct hlua_txn *htxn;
5050 const char *name;
5051 size_t len;
5052 struct sample smp;
5053
5054 MAY_LJMP(check_args(L, 2, "unset_var"));
5055
5056 /* It is useles to retrieve the stream, but this function
5057 * runs only in a stream context.
5058 */
5059 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5060 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
5061
5062 /* Unset the variable. */
5063 smp_set_owner(&smp, htxn->p, htxn->s->sess, htxn->s, htxn->dir & SMP_OPT_DIR);
5064 vars_unset_by_name(name, len, &smp);
5065 return 0;
5066}
5067
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02005068__LJMP static int hlua_get_var(lua_State *L)
5069{
5070 struct hlua_txn *htxn;
5071 const char *name;
5072 size_t len;
5073 struct sample smp;
5074
5075 MAY_LJMP(check_args(L, 2, "get_var"));
5076
5077 /* It is useles to retrieve the stream, but this function
5078 * runs only in a stream context.
5079 */
5080 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5081 name = MAY_LJMP(luaL_checklstring(L, 2, &len));
5082
Willy Tarreau7560dd42016-03-10 16:28:58 +01005083 smp_set_owner(&smp, htxn->p, htxn->s->sess, htxn->s, htxn->dir & SMP_OPT_DIR);
Willy Tarreau6204cd92016-03-10 16:33:04 +01005084 if (!vars_get_by_name(name, len, &smp)) {
Thierry FOURNIER053ba8ad2015-06-08 13:05:33 +02005085 lua_pushnil(L);
5086 return 1;
5087 }
5088
5089 return hlua_smp2lua(L, &smp);
5090}
5091
Willy Tarreau59551662015-03-10 14:23:13 +01005092__LJMP static int hlua_set_priv(lua_State *L)
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005093{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01005094 struct hlua *hlua;
5095
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005096 MAY_LJMP(check_args(L, 2, "set_priv"));
5097
Willy Tarreau87b09662015-04-03 00:22:06 +02005098 /* It is useles to retrieve the stream, but this function
5099 * runs only in a stream context.
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005100 */
5101 MAY_LJMP(hlua_checktxn(L, 1));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01005102 hlua = hlua_gethlua(L);
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005103
5104 /* Remove previous value. */
Thierry FOURNIERe068b602017-04-26 13:27:05 +02005105 luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref);
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005106
5107 /* Get and store new value. */
5108 lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */
5109 hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */
5110
5111 return 0;
5112}
5113
Willy Tarreau59551662015-03-10 14:23:13 +01005114__LJMP static int hlua_get_priv(lua_State *L)
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005115{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01005116 struct hlua *hlua;
5117
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005118 MAY_LJMP(check_args(L, 1, "get_priv"));
5119
Willy Tarreau87b09662015-04-03 00:22:06 +02005120 /* It is useles to retrieve the stream, but this function
5121 * runs only in a stream context.
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005122 */
5123 MAY_LJMP(hlua_checktxn(L, 1));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01005124 hlua = hlua_gethlua(L);
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01005125
5126 /* Push configuration index in the stack. */
5127 lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref);
5128
5129 return 1;
5130}
5131
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005132/* Create stack entry containing a class TXN. This function
5133 * return 0 if the stack does not contains free slots,
5134 * otherwise it returns 1.
5135 */
Thierry FOURNIERab00df62016-07-14 11:42:37 +02005136static int hlua_txn_new(lua_State *L, struct stream *s, struct proxy *p, int dir, int flags)
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005137{
Willy Tarreaude491382015-04-06 11:04:28 +02005138 struct hlua_txn *htxn;
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005139
5140 /* Check stack size. */
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01005141 if (!lua_checkstack(L, 3))
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005142 return 0;
5143
5144 /* NOTE: The allocation never fails. The failure
5145 * throw an error, and the function never returns.
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08005146 * if the throw is not available, the process is aborted.
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005147 */
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01005148 /* Create the object: obj[0] = userdata. */
5149 lua_newtable(L);
Willy Tarreaude491382015-04-06 11:04:28 +02005150 htxn = lua_newuserdata(L, sizeof(*htxn));
Thierry FOURNIER2297bc22015-03-11 17:43:33 +01005151 lua_rawseti(L, -2, 0);
5152
Willy Tarreaude491382015-04-06 11:04:28 +02005153 htxn->s = s;
5154 htxn->p = p;
Thierry FOURNIERc4eebc82015-11-02 10:01:59 +01005155 htxn->dir = dir;
Thierry FOURNIERab00df62016-07-14 11:42:37 +02005156 htxn->flags = flags;
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005157
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01005158 /* Create the "f" field that contains a list of fetches. */
5159 lua_pushstring(L, "f");
Thierry FOURNIERca988662015-12-20 18:43:03 +01005160 if (!hlua_fetches_new(L, htxn, HLUA_F_MAY_USE_HTTP))
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01005161 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02005162 lua_rawset(L, -3);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01005163
5164 /* Create the "sf" field that contains a list of stringsafe fetches. */
5165 lua_pushstring(L, "sf");
Thierry FOURNIERca988662015-12-20 18:43:03 +01005166 if (!hlua_fetches_new(L, htxn, HLUA_F_MAY_USE_HTTP | HLUA_F_AS_STRING))
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01005167 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02005168 lua_rawset(L, -3);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01005169
Thierry FOURNIER594afe72015-03-10 23:58:30 +01005170 /* Create the "c" field that contains a list of converters. */
5171 lua_pushstring(L, "c");
Willy Tarreaude491382015-04-06 11:04:28 +02005172 if (!hlua_converters_new(L, htxn, 0))
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01005173 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02005174 lua_rawset(L, -3);
Thierry FOURNIER2694a1a2015-03-11 20:13:36 +01005175
5176 /* Create the "sc" field that contains a list of stringsafe converters. */
5177 lua_pushstring(L, "sc");
Thierry FOURNIER7fa05492015-12-20 18:42:25 +01005178 if (!hlua_converters_new(L, htxn, HLUA_F_AS_STRING))
Thierry FOURNIER594afe72015-03-10 23:58:30 +01005179 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02005180 lua_rawset(L, -3);
Thierry FOURNIER594afe72015-03-10 23:58:30 +01005181
Thierry FOURNIER397826a2015-03-11 19:39:09 +01005182 /* Create the "req" field that contains the request channel object. */
5183 lua_pushstring(L, "req");
Willy Tarreau2a71af42015-03-10 13:51:50 +01005184 if (!hlua_channel_new(L, &s->req))
Thierry FOURNIER397826a2015-03-11 19:39:09 +01005185 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02005186 lua_rawset(L, -3);
Thierry FOURNIER397826a2015-03-11 19:39:09 +01005187
5188 /* Create the "res" field that contains the response channel object. */
5189 lua_pushstring(L, "res");
Willy Tarreau2a71af42015-03-10 13:51:50 +01005190 if (!hlua_channel_new(L, &s->res))
Thierry FOURNIER397826a2015-03-11 19:39:09 +01005191 return 0;
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02005192 lua_rawset(L, -3);
Thierry FOURNIER397826a2015-03-11 19:39:09 +01005193
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005194 /* Creates the HTTP object is the current proxy allows http. */
5195 lua_pushstring(L, "http");
5196 if (p->mode == PR_MODE_HTTP) {
Willy Tarreaude491382015-04-06 11:04:28 +02005197 if (!hlua_http_new(L, htxn))
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005198 return 0;
5199 }
5200 else
5201 lua_pushnil(L);
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02005202 lua_rawset(L, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01005203
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01005204 /* Pop a class sesison metatable and affect it to the userdata. */
5205 lua_rawgeti(L, LUA_REGISTRYINDEX, class_txn_ref);
5206 lua_setmetatable(L, -2);
5207
5208 return 1;
5209}
5210
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01005211__LJMP static int hlua_txn_deflog(lua_State *L)
5212{
5213 const char *msg;
5214 struct hlua_txn *htxn;
5215
5216 MAY_LJMP(check_args(L, 2, "deflog"));
5217 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5218 msg = MAY_LJMP(luaL_checkstring(L, 2));
5219
5220 hlua_sendlog(htxn->s->be, htxn->s->logs.level, msg);
5221 return 0;
5222}
5223
5224__LJMP static int hlua_txn_log(lua_State *L)
5225{
5226 int level;
5227 const char *msg;
5228 struct hlua_txn *htxn;
5229
5230 MAY_LJMP(check_args(L, 3, "log"));
5231 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5232 level = MAY_LJMP(luaL_checkinteger(L, 2));
5233 msg = MAY_LJMP(luaL_checkstring(L, 3));
5234
5235 if (level < 0 || level >= NB_LOG_LEVELS)
5236 WILL_LJMP(luaL_argerror(L, 1, "Invalid loglevel."));
5237
5238 hlua_sendlog(htxn->s->be, level, msg);
5239 return 0;
5240}
5241
5242__LJMP static int hlua_txn_log_debug(lua_State *L)
5243{
5244 const char *msg;
5245 struct hlua_txn *htxn;
5246
5247 MAY_LJMP(check_args(L, 2, "Debug"));
5248 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5249 msg = MAY_LJMP(luaL_checkstring(L, 2));
5250 hlua_sendlog(htxn->s->be, LOG_DEBUG, msg);
5251 return 0;
5252}
5253
5254__LJMP static int hlua_txn_log_info(lua_State *L)
5255{
5256 const char *msg;
5257 struct hlua_txn *htxn;
5258
5259 MAY_LJMP(check_args(L, 2, "Info"));
5260 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5261 msg = MAY_LJMP(luaL_checkstring(L, 2));
5262 hlua_sendlog(htxn->s->be, LOG_INFO, msg);
5263 return 0;
5264}
5265
5266__LJMP static int hlua_txn_log_warning(lua_State *L)
5267{
5268 const char *msg;
5269 struct hlua_txn *htxn;
5270
5271 MAY_LJMP(check_args(L, 2, "Warning"));
5272 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5273 msg = MAY_LJMP(luaL_checkstring(L, 2));
5274 hlua_sendlog(htxn->s->be, LOG_WARNING, msg);
5275 return 0;
5276}
5277
5278__LJMP static int hlua_txn_log_alert(lua_State *L)
5279{
5280 const char *msg;
5281 struct hlua_txn *htxn;
5282
5283 MAY_LJMP(check_args(L, 2, "Alert"));
5284 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5285 msg = MAY_LJMP(luaL_checkstring(L, 2));
5286 hlua_sendlog(htxn->s->be, LOG_ALERT, msg);
5287 return 0;
5288}
5289
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01005290__LJMP static int hlua_txn_set_loglevel(lua_State *L)
5291{
5292 struct hlua_txn *htxn;
5293 int ll;
5294
5295 MAY_LJMP(check_args(L, 2, "set_loglevel"));
5296 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5297 ll = MAY_LJMP(luaL_checkinteger(L, 2));
5298
5299 if (ll < 0 || ll > 7)
5300 WILL_LJMP(luaL_argerror(L, 2, "Bad log level. It must be between 0 and 7"));
5301
5302 htxn->s->logs.level = ll;
5303 return 0;
5304}
5305
5306__LJMP static int hlua_txn_set_tos(lua_State *L)
5307{
5308 struct hlua_txn *htxn;
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01005309 int tos;
5310
5311 MAY_LJMP(check_args(L, 2, "set_tos"));
5312 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5313 tos = MAY_LJMP(luaL_checkinteger(L, 2));
5314
Willy Tarreau1a18b542018-12-11 16:37:42 +01005315 conn_set_tos(objt_conn(htxn->s->sess->origin), tos);
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01005316 return 0;
5317}
5318
5319__LJMP static int hlua_txn_set_mark(lua_State *L)
5320{
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01005321 struct hlua_txn *htxn;
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01005322 int mark;
5323
5324 MAY_LJMP(check_args(L, 2, "set_mark"));
5325 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5326 mark = MAY_LJMP(luaL_checkinteger(L, 2));
5327
Willy Tarreau1a18b542018-12-11 16:37:42 +01005328 conn_set_tos(objt_conn(htxn->s->sess->origin), mark);
Thierry FOURNIER2cce3532015-03-16 12:04:16 +01005329 return 0;
5330}
5331
Patrick Hemmer268a7072018-05-11 12:52:31 -04005332__LJMP static int hlua_txn_set_priority_class(lua_State *L)
5333{
5334 struct hlua_txn *htxn;
5335
5336 MAY_LJMP(check_args(L, 2, "set_priority_class"));
5337 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5338 htxn->s->priority_class = queue_limit_class(MAY_LJMP(luaL_checkinteger(L, 2)));
5339 return 0;
5340}
5341
5342__LJMP static int hlua_txn_set_priority_offset(lua_State *L)
5343{
5344 struct hlua_txn *htxn;
5345
5346 MAY_LJMP(check_args(L, 2, "set_priority_offset"));
5347 htxn = MAY_LJMP(hlua_checktxn(L, 1));
5348 htxn->s->priority_offset = queue_limit_offset(MAY_LJMP(luaL_checkinteger(L, 2)));
5349 return 0;
5350}
5351
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01005352/* This function is an Lua binding that send pending data
5353 * to the client, and close the stream interface.
5354 */
Thierry FOURNIER4bb375c2015-08-26 08:42:21 +02005355__LJMP static int hlua_txn_done(lua_State *L)
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01005356{
Willy Tarreaub2ccb562015-04-06 11:11:15 +02005357 struct hlua_txn *htxn;
Thierry FOURNIER9bd52d42016-07-14 11:45:33 +02005358 struct hlua *hlua;
Willy Tarreau81389672015-03-10 12:03:52 +01005359 struct channel *ic, *oc;
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01005360
Willy Tarreau80f5fae2015-02-27 16:38:20 +01005361 MAY_LJMP(check_args(L, 1, "close"));
Willy Tarreaub2ccb562015-04-06 11:11:15 +02005362 htxn = MAY_LJMP(hlua_checktxn(L, 1));
Thierry FOURNIER9bd52d42016-07-14 11:45:33 +02005363 hlua = hlua_gethlua(L);
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01005364
Thierry FOURNIERab00df62016-07-14 11:42:37 +02005365 /* If the flags NOTERM is set, we cannot terminate the http
5366 * session, so we just end the execution of the current
5367 * lua code.
5368 */
5369 if (htxn->flags & HLUA_TXN_NOTERM) {
5370 WILL_LJMP(hlua_done(L));
5371 return 0;
5372 }
5373
Willy Tarreaub2ccb562015-04-06 11:11:15 +02005374 ic = &htxn->s->req;
5375 oc = &htxn->s->res;
Willy Tarreau81389672015-03-10 12:03:52 +01005376
Christopher Faulet4d0e2632019-07-16 10:52:40 +02005377 if (IS_HTX_STRM(htxn->s))
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02005378 http_reply_and_close(htxn->s, 0, NULL);
Christopher Faulet4d0e2632019-07-16 10:52:40 +02005379 else {
Christopher Faulet4d0e2632019-07-16 10:52:40 +02005380 channel_auto_read(ic);
5381 channel_abort(ic);
5382 channel_auto_close(ic);
5383 channel_erase(ic);
Thierry FOURNIER10ec2142015-08-24 17:23:45 +02005384
Christopher Faulet4d0e2632019-07-16 10:52:40 +02005385 oc->wex = tick_add_ifset(now_ms, oc->wto);
5386 channel_auto_read(oc);
5387 channel_auto_close(oc);
5388 channel_shutr_now(oc);
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01005389
Christopher Faulet4d0e2632019-07-16 10:52:40 +02005390 ic->analysers = 0;
5391 }
Thierry FOURNIER4bb375c2015-08-26 08:42:21 +02005392
Thierry FOURNIER9bd52d42016-07-14 11:45:33 +02005393 hlua->flags |= HLUA_STOP;
Thierry FOURNIER4bb375c2015-08-26 08:42:21 +02005394 WILL_LJMP(hlua_done(L));
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01005395 return 0;
5396}
5397
5398__LJMP static int hlua_log(lua_State *L)
5399{
5400 int level;
5401 const char *msg;
5402
5403 MAY_LJMP(check_args(L, 2, "log"));
5404 level = MAY_LJMP(luaL_checkinteger(L, 1));
5405 msg = MAY_LJMP(luaL_checkstring(L, 2));
5406
5407 if (level < 0 || level >= NB_LOG_LEVELS)
5408 WILL_LJMP(luaL_argerror(L, 1, "Invalid loglevel."));
5409
5410 hlua_sendlog(NULL, level, msg);
5411 return 0;
5412}
5413
5414__LJMP static int hlua_log_debug(lua_State *L)
5415{
5416 const char *msg;
5417
5418 MAY_LJMP(check_args(L, 1, "debug"));
5419 msg = MAY_LJMP(luaL_checkstring(L, 1));
5420 hlua_sendlog(NULL, LOG_DEBUG, msg);
5421 return 0;
5422}
5423
5424__LJMP static int hlua_log_info(lua_State *L)
5425{
5426 const char *msg;
5427
5428 MAY_LJMP(check_args(L, 1, "info"));
5429 msg = MAY_LJMP(luaL_checkstring(L, 1));
5430 hlua_sendlog(NULL, LOG_INFO, msg);
5431 return 0;
5432}
5433
5434__LJMP static int hlua_log_warning(lua_State *L)
5435{
5436 const char *msg;
5437
5438 MAY_LJMP(check_args(L, 1, "warning"));
5439 msg = MAY_LJMP(luaL_checkstring(L, 1));
5440 hlua_sendlog(NULL, LOG_WARNING, msg);
5441 return 0;
5442}
5443
5444__LJMP static int hlua_log_alert(lua_State *L)
5445{
5446 const char *msg;
5447
5448 MAY_LJMP(check_args(L, 1, "alert"));
5449 msg = MAY_LJMP(luaL_checkstring(L, 1));
5450 hlua_sendlog(NULL, LOG_ALERT, msg);
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01005451 return 0;
5452}
5453
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01005454__LJMP static int hlua_sleep_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01005455{
5456 int wakeup_ms = lua_tointeger(L, -1);
5457 if (now_ms < wakeup_ms)
Willy Tarreau9635e032018-10-16 17:52:55 +02005458 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_sleep_yield, wakeup_ms, 0));
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01005459 return 0;
5460}
5461
5462__LJMP static int hlua_sleep(lua_State *L)
5463{
5464 unsigned int delay;
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01005465 unsigned int wakeup_ms;
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01005466
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01005467 MAY_LJMP(check_args(L, 1, "sleep"));
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01005468
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01005469 delay = MAY_LJMP(luaL_checkinteger(L, 1)) * 1000;
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01005470 wakeup_ms = tick_add(now_ms, delay);
5471 lua_pushinteger(L, wakeup_ms);
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01005472
Willy Tarreau9635e032018-10-16 17:52:55 +02005473 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_sleep_yield, wakeup_ms, 0));
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01005474 return 0;
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01005475}
5476
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01005477__LJMP static int hlua_msleep(lua_State *L)
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01005478{
5479 unsigned int delay;
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01005480 unsigned int wakeup_ms;
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01005481
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01005482 MAY_LJMP(check_args(L, 1, "msleep"));
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01005483
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01005484 delay = MAY_LJMP(luaL_checkinteger(L, 1));
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01005485 wakeup_ms = tick_add(now_ms, delay);
5486 lua_pushinteger(L, wakeup_ms);
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01005487
Willy Tarreau9635e032018-10-16 17:52:55 +02005488 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_sleep_yield, wakeup_ms, 0));
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01005489 return 0;
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01005490}
5491
Thierry FOURNIER13416fe2015-02-17 15:01:59 +01005492/* This functionis an LUA binding. it permits to give back
5493 * the hand at the HAProxy scheduler. It is used when the
5494 * LUA processing consumes a lot of time.
5495 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01005496__LJMP static int hlua_yield_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01005497{
5498 return 0;
5499}
5500
Thierry FOURNIER13416fe2015-02-17 15:01:59 +01005501__LJMP static int hlua_yield(lua_State *L)
5502{
Willy Tarreau9635e032018-10-16 17:52:55 +02005503 MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_yield_yield, TICK_ETERNITY, HLUA_CTRLYIELD));
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01005504 return 0;
Thierry FOURNIER13416fe2015-02-17 15:01:59 +01005505}
5506
Thierry FOURNIER37196f42015-02-16 19:34:56 +01005507/* This function change the nice of the currently executed
5508 * task. It is used set low or high priority at the current
5509 * task.
5510 */
Willy Tarreau59551662015-03-10 14:23:13 +01005511__LJMP static int hlua_set_nice(lua_State *L)
Thierry FOURNIER37196f42015-02-16 19:34:56 +01005512{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01005513 struct hlua *hlua;
5514 int nice;
Thierry FOURNIER37196f42015-02-16 19:34:56 +01005515
Willy Tarreau80f5fae2015-02-27 16:38:20 +01005516 MAY_LJMP(check_args(L, 1, "set_nice"));
5517 hlua = hlua_gethlua(L);
5518 nice = MAY_LJMP(luaL_checkinteger(L, 1));
Thierry FOURNIER37196f42015-02-16 19:34:56 +01005519
5520 /* If he task is not set, I'm in a start mode. */
5521 if (!hlua || !hlua->task)
5522 return 0;
5523
5524 if (nice < -1024)
5525 nice = -1024;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01005526 else if (nice > 1024)
Thierry FOURNIER37196f42015-02-16 19:34:56 +01005527 nice = 1024;
5528
5529 hlua->task->nice = nice;
5530 return 0;
5531}
5532
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08005533/* This function is used as a callback of a task. It is called by the
Thierry FOURNIER24f33532015-01-23 12:13:00 +01005534 * HAProxy task subsystem when the task is awaked. The LUA runtime can
5535 * return an E_AGAIN signal, the emmiter of this signal must set a
5536 * signal to wake the task.
Thierry FOURNIERbabae282015-09-17 11:36:37 +02005537 *
5538 * Task wrapper are longjmp safe because the only one Lua code
5539 * executed is the safe hlua_ctx_resume();
Thierry FOURNIER24f33532015-01-23 12:13:00 +01005540 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02005541static struct task *hlua_process_task(struct task *task, void *context, unsigned short state)
Thierry FOURNIER24f33532015-01-23 12:13:00 +01005542{
Olivier Houchard9f6af332018-05-25 14:04:04 +02005543 struct hlua *hlua = context;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01005544 enum hlua_exec status;
5545
Christopher Faulet5bc99722018-04-25 10:34:45 +02005546 if (task->thread_mask == MAX_THREADS_MASK)
5547 task_set_affinity(task, tid_bit);
5548
Thierry FOURNIERbd413492015-03-03 16:52:26 +01005549 /* If it is the first call to the task, we must initialize the
5550 * execution timeouts.
5551 */
5552 if (!HLUA_IS_RUNNING(hlua))
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02005553 hlua->max_time = hlua_timeout_task;
Thierry FOURNIERbd413492015-03-03 16:52:26 +01005554
Thierry FOURNIER24f33532015-01-23 12:13:00 +01005555 /* Execute the Lua code. */
5556 status = hlua_ctx_resume(hlua, 1);
5557
5558 switch (status) {
5559 /* finished or yield */
5560 case HLUA_E_OK:
5561 hlua_ctx_destroy(hlua);
Olivier Houchard3f795f72019-04-17 22:51:06 +02005562 task_destroy(task);
Tim Duesterhuscd235c62018-04-24 13:56:01 +02005563 task = NULL;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01005564 break;
5565
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01005566 case HLUA_E_AGAIN: /* co process or timeout wake me later. */
Thierry FOURNIERcb146882017-12-10 17:10:57 +01005567 notification_gc(&hlua->com);
PiBa-NLfe971b32018-05-02 22:27:14 +02005568 task->expire = hlua->wake_time;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01005569 break;
5570
5571 /* finished with error. */
5572 case HLUA_E_ERRMSG:
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02005573 SEND_ERR(NULL, "Lua task: %s.\n", lua_tostring(hlua->T, -1));
Thierry FOURNIER24f33532015-01-23 12:13:00 +01005574 hlua_ctx_destroy(hlua);
Olivier Houchard3f795f72019-04-17 22:51:06 +02005575 task_destroy(task);
Emeric Brun253e53e2017-10-17 18:58:40 +02005576 task = NULL;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01005577 break;
5578
5579 case HLUA_E_ERR:
5580 default:
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02005581 SEND_ERR(NULL, "Lua task: unknown error.\n");
Thierry FOURNIER24f33532015-01-23 12:13:00 +01005582 hlua_ctx_destroy(hlua);
Olivier Houchard3f795f72019-04-17 22:51:06 +02005583 task_destroy(task);
Emeric Brun253e53e2017-10-17 18:58:40 +02005584 task = NULL;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01005585 break;
5586 }
Emeric Brun253e53e2017-10-17 18:58:40 +02005587 return task;
Thierry FOURNIER24f33532015-01-23 12:13:00 +01005588}
5589
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01005590/* This function is an LUA binding that register LUA function to be
5591 * executed after the HAProxy configuration parsing and before the
5592 * HAProxy scheduler starts. This function expect only one LUA
5593 * argument that is a function. This function returns nothing, but
5594 * throws if an error is encountered.
5595 */
5596__LJMP static int hlua_register_init(lua_State *L)
5597{
5598 struct hlua_init_function *init;
5599 int ref;
5600
5601 MAY_LJMP(check_args(L, 1, "register_init"));
5602
5603 ref = MAY_LJMP(hlua_checkfunction(L, 1));
5604
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02005605 init = calloc(1, sizeof(*init));
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01005606 if (!init)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01005607 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01005608
5609 init->function_ref = ref;
5610 LIST_ADDQ(&hlua_init_functions, &init->l);
5611 return 0;
5612}
5613
Thierry FOURNIER24f33532015-01-23 12:13:00 +01005614/* This functio is an LUA binding. It permits to register a task
5615 * executed in parallel of the main HAroxy activity. The task is
5616 * created and it is set in the HAProxy scheduler. It can be called
5617 * from the "init" section, "post init" or during the runtime.
5618 *
5619 * Lua prototype:
5620 *
5621 * <none> core.register_task(<function>)
5622 */
5623static int hlua_register_task(lua_State *L)
5624{
5625 struct hlua *hlua;
5626 struct task *task;
5627 int ref;
5628
5629 MAY_LJMP(check_args(L, 1, "register_task"));
5630
5631 ref = MAY_LJMP(hlua_checkfunction(L, 1));
5632
Willy Tarreaubafbe012017-11-24 17:34:44 +01005633 hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIER24f33532015-01-23 12:13:00 +01005634 if (!hlua)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01005635 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIER24f33532015-01-23 12:13:00 +01005636
Emeric Brunc60def82017-09-27 14:59:38 +02005637 task = task_new(MAX_THREADS_MASK);
Willy Tarreaue09101e2018-10-16 17:37:12 +02005638 if (!task)
5639 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
5640
Thierry FOURNIER24f33532015-01-23 12:13:00 +01005641 task->context = hlua;
5642 task->process = hlua_process_task;
5643
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01005644 if (!hlua_ctx_init(hlua, task, 1))
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01005645 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIER24f33532015-01-23 12:13:00 +01005646
5647 /* Restore the function in the stack. */
5648 lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, ref);
5649 hlua->nargs = 0;
5650
5651 /* Schedule task. */
5652 task_schedule(task, now_ms);
5653
5654 return 0;
5655}
5656
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01005657/* Wrapper called by HAProxy to execute an LUA converter. This wrapper
5658 * doesn't allow "yield" functions because the HAProxy engine cannot
5659 * resume converters.
5660 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02005661static int hlua_sample_conv_wrapper(const struct arg *arg_p, struct sample *smp, void *private)
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01005662{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02005663 struct hlua_function *fcn = private;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02005664 struct stream *stream = smp->strm;
Thierry Fournierfd107a22016-02-19 19:57:23 +01005665 const char *error;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01005666
Willy Tarreaube508f12016-03-10 11:47:01 +01005667 if (!stream)
5668 return 0;
5669
Willy Tarreau87b09662015-04-03 00:22:06 +02005670 /* In the execution wrappers linked with a stream, the
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01005671 * Lua context can be not initialized. This behavior
5672 * permits to save performances because a systematic
5673 * Lua initialization cause 5% performances loss.
5674 */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005675 if (!stream->hlua) {
Willy Tarreaubafbe012017-11-24 17:34:44 +01005676 stream->hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005677 if (!stream->hlua) {
5678 SEND_ERR(stream->be, "Lua converter '%s': can't initialize Lua context.\n", fcn->name);
5679 return 0;
5680 }
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01005681 if (!hlua_ctx_init(stream->hlua, stream->task, 0)) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005682 SEND_ERR(stream->be, "Lua converter '%s': can't initialize Lua context.\n", fcn->name);
5683 return 0;
5684 }
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01005685 }
5686
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01005687 /* If it is the first run, initialize the data for the call. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005688 if (!HLUA_IS_RUNNING(stream->hlua)) {
Thierry FOURNIERbabae282015-09-17 11:36:37 +02005689
5690 /* The following Lua calls can fail. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005691 if (!SET_SAFE_LJMP(stream->hlua->T)) {
5692 if (lua_type(stream->hlua->T, -1) == LUA_TSTRING)
5693 error = lua_tostring(stream->hlua->T, -1);
Thierry Fournierfd107a22016-02-19 19:57:23 +01005694 else
5695 error = "critical error";
5696 SEND_ERR(stream->be, "Lua converter '%s': %s.\n", fcn->name, error);
Thierry FOURNIERbabae282015-09-17 11:36:37 +02005697 return 0;
5698 }
5699
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01005700 /* Check stack available size. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005701 if (!lua_checkstack(stream->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02005702 SEND_ERR(stream->be, "Lua converter '%s': full stack.\n", fcn->name);
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005703 RESET_SAFE_LJMP(stream->hlua->T);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01005704 return 0;
5705 }
5706
5707 /* Restore the function in the stack. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005708 lua_rawgeti(stream->hlua->T, LUA_REGISTRYINDEX, fcn->function_ref);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01005709
5710 /* convert input sample and pust-it in the stack. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005711 if (!lua_checkstack(stream->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02005712 SEND_ERR(stream->be, "Lua converter '%s': full stack.\n", fcn->name);
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005713 RESET_SAFE_LJMP(stream->hlua->T);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01005714 return 0;
5715 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005716 hlua_smp2lua(stream->hlua->T, smp);
5717 stream->hlua->nargs = 1;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01005718
5719 /* push keywords in the stack. */
5720 if (arg_p) {
5721 for (; arg_p->type != ARGT_STOP; arg_p++) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005722 if (!lua_checkstack(stream->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02005723 SEND_ERR(stream->be, "Lua converter '%s': full stack.\n", fcn->name);
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005724 RESET_SAFE_LJMP(stream->hlua->T);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01005725 return 0;
5726 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005727 hlua_arg2lua(stream->hlua->T, arg_p);
5728 stream->hlua->nargs++;
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01005729 }
5730 }
5731
Thierry FOURNIERbd413492015-03-03 16:52:26 +01005732 /* We must initialize the execution timeouts. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005733 stream->hlua->max_time = hlua_timeout_session;
Thierry FOURNIERbd413492015-03-03 16:52:26 +01005734
Thierry FOURNIERbabae282015-09-17 11:36:37 +02005735 /* At this point the execution is safe. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005736 RESET_SAFE_LJMP(stream->hlua->T);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01005737 }
5738
5739 /* Execute the function. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005740 switch (hlua_ctx_resume(stream->hlua, 0)) {
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01005741 /* finished. */
5742 case HLUA_E_OK:
Thierry FOURNIERfd80df12017-05-12 16:32:20 +02005743 /* If the stack is empty, the function fails. */
5744 if (lua_gettop(stream->hlua->T) <= 0)
5745 return 0;
5746
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01005747 /* Convert the returned value in sample. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005748 hlua_lua2smp(stream->hlua->T, -1, smp);
5749 lua_pop(stream->hlua->T, 1);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01005750 return 1;
5751
5752 /* yield. */
5753 case HLUA_E_AGAIN:
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02005754 SEND_ERR(stream->be, "Lua converter '%s': cannot use yielded functions.\n", fcn->name);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01005755 return 0;
5756
5757 /* finished with error. */
5758 case HLUA_E_ERRMSG:
5759 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02005760 SEND_ERR(stream->be, "Lua converter '%s': %s.\n",
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005761 fcn->name, lua_tostring(stream->hlua->T, -1));
5762 lua_pop(stream->hlua->T, 1);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01005763 return 0;
5764
Thierry Fournierd5b073c2018-05-21 19:42:47 +02005765 case HLUA_E_ETMOUT:
5766 SEND_ERR(stream->be, "Lua converter '%s': execution timeout.\n", fcn->name);
5767 return 0;
5768
5769 case HLUA_E_NOMEM:
5770 SEND_ERR(stream->be, "Lua converter '%s': out of memory error.\n", fcn->name);
5771 return 0;
5772
5773 case HLUA_E_YIELD:
5774 SEND_ERR(stream->be, "Lua converter '%s': yield functions like core.tcp() or core.sleep() are not allowed.\n", fcn->name);
5775 return 0;
5776
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01005777 case HLUA_E_ERR:
5778 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02005779 SEND_ERR(stream->be, "Lua converter '%s' returns an unknown error.\n", fcn->name);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01005780
5781 default:
5782 return 0;
5783 }
5784}
5785
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01005786/* Wrapper called by HAProxy to execute a sample-fetch. this wrapper
5787 * doesn't allow "yield" functions because the HAProxy engine cannot
Willy Tarreaube508f12016-03-10 11:47:01 +01005788 * resume sample-fetches. This function will be called by the sample
5789 * fetch engine to call lua-based fetch operations.
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01005790 */
Thierry FOURNIER0786d052015-05-11 15:42:45 +02005791static int hlua_sample_fetch_wrapper(const struct arg *arg_p, struct sample *smp,
5792 const char *kw, void *private)
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01005793{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02005794 struct hlua_function *fcn = private;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02005795 struct stream *stream = smp->strm;
Thierry Fournierfd107a22016-02-19 19:57:23 +01005796 const char *error;
Willy Tarreau83061a82018-07-13 11:56:34 +02005797 const struct buffer msg = { };
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01005798
Willy Tarreaube508f12016-03-10 11:47:01 +01005799 if (!stream)
5800 return 0;
Christopher Fauletafd8f102018-11-08 11:34:21 +01005801
Willy Tarreau87b09662015-04-03 00:22:06 +02005802 /* In the execution wrappers linked with a stream, the
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01005803 * Lua context can be not initialized. This behavior
5804 * permits to save performances because a systematic
5805 * Lua initialization cause 5% performances loss.
5806 */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005807 if (!stream->hlua) {
Willy Tarreaubafbe012017-11-24 17:34:44 +01005808 stream->hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005809 if (!stream->hlua) {
5810 SEND_ERR(stream->be, "Lua sample-fetch '%s': can't initialize Lua context.\n", fcn->name);
5811 return 0;
5812 }
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01005813 if (!hlua_ctx_init(stream->hlua, stream->task, 0)) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005814 SEND_ERR(stream->be, "Lua sample-fetch '%s': can't initialize Lua context.\n", fcn->name);
5815 return 0;
5816 }
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01005817 }
5818
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005819 consistency_set(stream, smp->opt, &stream->hlua->cons);
Thierry FOURNIER11cfb3d2016-12-13 13:06:23 +01005820
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01005821 /* If it is the first run, initialize the data for the call. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005822 if (!HLUA_IS_RUNNING(stream->hlua)) {
Thierry FOURNIERbabae282015-09-17 11:36:37 +02005823
5824 /* The following Lua calls can fail. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005825 if (!SET_SAFE_LJMP(stream->hlua->T)) {
5826 if (lua_type(stream->hlua->T, -1) == LUA_TSTRING)
5827 error = lua_tostring(stream->hlua->T, -1);
Thierry Fournierfd107a22016-02-19 19:57:23 +01005828 else
5829 error = "critical error";
5830 SEND_ERR(smp->px, "Lua sample-fetch '%s': %s.\n", fcn->name, error);
Thierry FOURNIERbabae282015-09-17 11:36:37 +02005831 return 0;
5832 }
5833
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01005834 /* Check stack available size. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005835 if (!lua_checkstack(stream->hlua->T, 2)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02005836 SEND_ERR(smp->px, "Lua sample-fetch '%s': full stack.\n", fcn->name);
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005837 RESET_SAFE_LJMP(stream->hlua->T);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01005838 return 0;
5839 }
5840
5841 /* Restore the function in the stack. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005842 lua_rawgeti(stream->hlua->T, LUA_REGISTRYINDEX, fcn->function_ref);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01005843
5844 /* push arguments in the stack. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005845 if (!hlua_txn_new(stream->hlua->T, stream, smp->px, smp->opt & SMP_OPT_DIR,
Thierry FOURNIERab00df62016-07-14 11:42:37 +02005846 HLUA_TXN_NOTERM)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02005847 SEND_ERR(smp->px, "Lua sample-fetch '%s': full stack.\n", fcn->name);
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005848 RESET_SAFE_LJMP(stream->hlua->T);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01005849 return 0;
5850 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005851 stream->hlua->nargs = 1;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01005852
5853 /* push keywords in the stack. */
5854 for (; arg_p && arg_p->type != ARGT_STOP; arg_p++) {
5855 /* Check stack available size. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005856 if (!lua_checkstack(stream->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02005857 SEND_ERR(smp->px, "Lua sample-fetch '%s': full stack.\n", fcn->name);
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005858 RESET_SAFE_LJMP(stream->hlua->T);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01005859 return 0;
5860 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005861 hlua_arg2lua(stream->hlua->T, arg_p);
5862 stream->hlua->nargs++;
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01005863 }
5864
Thierry FOURNIERbd413492015-03-03 16:52:26 +01005865 /* We must initialize the execution timeouts. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005866 stream->hlua->max_time = hlua_timeout_session;
Thierry FOURNIERbd413492015-03-03 16:52:26 +01005867
Thierry FOURNIERbabae282015-09-17 11:36:37 +02005868 /* At this point the execution is safe. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005869 RESET_SAFE_LJMP(stream->hlua->T);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01005870 }
5871
5872 /* Execute the function. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005873 switch (hlua_ctx_resume(stream->hlua, 0)) {
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01005874 /* finished. */
5875 case HLUA_E_OK:
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005876 if (!consistency_check(stream, smp->opt, &stream->hlua->cons)) {
Willy Tarreau14bfe9a2018-12-19 15:19:27 +01005877 si_retnclose(&stream->si[0], &msg);
Thierry FOURNIERd75cb0f2015-09-25 19:22:44 +02005878 return 0;
Thierry FOURNIER11cfb3d2016-12-13 13:06:23 +01005879 }
Thierry FOURNIERfd80df12017-05-12 16:32:20 +02005880 /* If the stack is empty, the function fails. */
5881 if (lua_gettop(stream->hlua->T) <= 0)
5882 return 0;
5883
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01005884 /* Convert the returned value in sample. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005885 hlua_lua2smp(stream->hlua->T, -1, smp);
5886 lua_pop(stream->hlua->T, 1);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01005887
5888 /* Set the end of execution flag. */
5889 smp->flags &= ~SMP_F_MAY_CHANGE;
5890 return 1;
5891
5892 /* yield. */
5893 case HLUA_E_AGAIN:
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005894 if (!consistency_check(stream, smp->opt, &stream->hlua->cons))
Willy Tarreau14bfe9a2018-12-19 15:19:27 +01005895 si_retnclose(&stream->si[0], &msg);
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02005896 SEND_ERR(smp->px, "Lua sample-fetch '%s': cannot use yielded functions.\n", fcn->name);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01005897 return 0;
5898
5899 /* finished with error. */
5900 case HLUA_E_ERRMSG:
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005901 if (!consistency_check(stream, smp->opt, &stream->hlua->cons))
Willy Tarreau14bfe9a2018-12-19 15:19:27 +01005902 si_retnclose(&stream->si[0], &msg);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01005903 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02005904 SEND_ERR(smp->px, "Lua sample-fetch '%s': %s.\n",
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005905 fcn->name, lua_tostring(stream->hlua->T, -1));
5906 lua_pop(stream->hlua->T, 1);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01005907 return 0;
5908
Thierry Fournierd5b073c2018-05-21 19:42:47 +02005909 case HLUA_E_ETMOUT:
5910 if (!consistency_check(stream, smp->opt, &stream->hlua->cons))
Willy Tarreau14bfe9a2018-12-19 15:19:27 +01005911 si_retnclose(&stream->si[0], &msg);
Thierry Fournierd5b073c2018-05-21 19:42:47 +02005912 SEND_ERR(smp->px, "Lua sample-fetch '%s': execution timeout.\n", fcn->name);
5913 return 0;
5914
5915 case HLUA_E_NOMEM:
5916 if (!consistency_check(stream, smp->opt, &stream->hlua->cons))
Willy Tarreau14bfe9a2018-12-19 15:19:27 +01005917 si_retnclose(&stream->si[0], &msg);
Thierry Fournierd5b073c2018-05-21 19:42:47 +02005918 SEND_ERR(smp->px, "Lua sample-fetch '%s': out of memory error.\n", fcn->name);
5919 return 0;
5920
5921 case HLUA_E_YIELD:
5922 if (!consistency_check(stream, smp->opt, &stream->hlua->cons))
Willy Tarreau14bfe9a2018-12-19 15:19:27 +01005923 si_retnclose(&stream->si[0], &msg);
Thierry Fournierd5b073c2018-05-21 19:42:47 +02005924 SEND_ERR(smp->px, "Lua sample-fetch '%s': yield not allowed.\n", fcn->name);
5925 return 0;
5926
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01005927 case HLUA_E_ERR:
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01005928 if (!consistency_check(stream, smp->opt, &stream->hlua->cons))
Willy Tarreau14bfe9a2018-12-19 15:19:27 +01005929 si_retnclose(&stream->si[0], &msg);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01005930 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02005931 SEND_ERR(smp->px, "Lua sample-fetch '%s' returns an unknown error.\n", fcn->name);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01005932
5933 default:
5934 return 0;
5935 }
5936}
5937
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01005938/* This function is an LUA binding used for registering
5939 * "sample-conv" functions. It expects a converter name used
5940 * in the haproxy configuration file, and an LUA function.
5941 */
5942__LJMP static int hlua_register_converters(lua_State *L)
5943{
5944 struct sample_conv_kw_list *sck;
5945 const char *name;
5946 int ref;
5947 int len;
5948 struct hlua_function *fcn;
5949
5950 MAY_LJMP(check_args(L, 2, "register_converters"));
5951
5952 /* First argument : converter name. */
5953 name = MAY_LJMP(luaL_checkstring(L, 1));
5954
5955 /* Second argument : lua function. */
5956 ref = MAY_LJMP(hlua_checkfunction(L, 2));
5957
5958 /* Allocate and fill the sample fetch keyword struct. */
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02005959 sck = calloc(1, sizeof(*sck) + sizeof(struct sample_conv) * 2);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01005960 if (!sck)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01005961 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02005962 fcn = calloc(1, sizeof(*fcn));
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01005963 if (!fcn)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01005964 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01005965
5966 /* Fill fcn. */
5967 fcn->name = strdup(name);
5968 if (!fcn->name)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01005969 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01005970 fcn->function_ref = ref;
5971
5972 /* List head */
5973 sck->list.n = sck->list.p = NULL;
5974
5975 /* converter keyword. */
5976 len = strlen("lua.") + strlen(name) + 1;
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02005977 sck->kw[0].kw = calloc(1, len);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01005978 if (!sck->kw[0].kw)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01005979 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01005980
5981 snprintf((char *)sck->kw[0].kw, len, "lua.%s", name);
5982 sck->kw[0].process = hlua_sample_conv_wrapper;
David Carlier0c437f42016-04-27 16:21:56 +01005983 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 +01005984 sck->kw[0].val_args = NULL;
5985 sck->kw[0].in_type = SMP_T_STR;
5986 sck->kw[0].out_type = SMP_T_STR;
5987 sck->kw[0].private = fcn;
5988
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01005989 /* Register this new converter */
5990 sample_register_convs(sck);
5991
5992 return 0;
5993}
5994
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08005995/* This function is an LUA binding used for registering
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01005996 * "sample-fetch" functions. It expects a converter name used
5997 * in the haproxy configuration file, and an LUA function.
5998 */
5999__LJMP static int hlua_register_fetches(lua_State *L)
6000{
6001 const char *name;
6002 int ref;
6003 int len;
6004 struct sample_fetch_kw_list *sfk;
6005 struct hlua_function *fcn;
6006
6007 MAY_LJMP(check_args(L, 2, "register_fetches"));
6008
6009 /* First argument : sample-fetch name. */
6010 name = MAY_LJMP(luaL_checkstring(L, 1));
6011
6012 /* Second argument : lua function. */
6013 ref = MAY_LJMP(hlua_checkfunction(L, 2));
6014
6015 /* Allocate and fill the sample fetch keyword struct. */
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02006016 sfk = calloc(1, sizeof(*sfk) + sizeof(struct sample_fetch) * 2);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006017 if (!sfk)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01006018 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02006019 fcn = calloc(1, sizeof(*fcn));
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006020 if (!fcn)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01006021 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006022
6023 /* Fill fcn. */
6024 fcn->name = strdup(name);
6025 if (!fcn->name)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01006026 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006027 fcn->function_ref = ref;
6028
6029 /* List head */
6030 sfk->list.n = sfk->list.p = NULL;
6031
6032 /* sample-fetch keyword. */
6033 len = strlen("lua.") + strlen(name) + 1;
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02006034 sfk->kw[0].kw = calloc(1, len);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006035 if (!sfk->kw[0].kw)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01006036 return luaL_error(L, "Lua out of memory error.");
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006037
6038 snprintf((char *)sfk->kw[0].kw, len, "lua.%s", name);
6039 sfk->kw[0].process = hlua_sample_fetch_wrapper;
David Carlier0c437f42016-04-27 16:21:56 +01006040 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 +01006041 sfk->kw[0].val_args = NULL;
6042 sfk->kw[0].out_type = SMP_T_STR;
6043 sfk->kw[0].use = SMP_USE_HTTP_ANY;
6044 sfk->kw[0].val = 0;
6045 sfk->kw[0].private = fcn;
6046
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01006047 /* Register this new fetch. */
6048 sample_register_fetches(sfk);
6049
6050 return 0;
6051}
6052
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006053/* This function is a wrapper to execute each LUA function declared
6054 * as an action wrapper during the initialisation period. This function
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02006055 * return ACT_RET_CONT if the processing is finished (with or without
6056 * error) and return ACT_RET_YIELD if the function must be called again
6057 * because the LUA returns a yield.
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006058 */
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02006059static enum act_return hlua_action(struct act_rule *rule, struct proxy *px,
Willy Tarreau658b85b2015-09-27 10:00:49 +02006060 struct session *sess, struct stream *s, int flags)
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006061{
6062 char **arg;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02006063 unsigned int analyzer;
Thierry FOURNIERd75cb0f2015-09-25 19:22:44 +02006064 int dir;
Thierry Fournierfd107a22016-02-19 19:57:23 +01006065 const char *error;
Willy Tarreau83061a82018-07-13 11:56:34 +02006066 const struct buffer msg = { };
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02006067
6068 switch (rule->from) {
Thierry FOURNIER6e01f382015-11-02 09:52:54 +01006069 case ACT_F_TCP_REQ_CNT: analyzer = AN_REQ_INSPECT_FE ; dir = SMP_OPT_DIR_REQ; break;
6070 case ACT_F_TCP_RES_CNT: analyzer = AN_RES_INSPECT ; dir = SMP_OPT_DIR_RES; break;
6071 case ACT_F_HTTP_REQ: analyzer = AN_REQ_HTTP_PROCESS_FE; dir = SMP_OPT_DIR_REQ; break;
6072 case ACT_F_HTTP_RES: analyzer = AN_RES_HTTP_PROCESS_BE; dir = SMP_OPT_DIR_RES; break;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02006073 default:
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006074 SEND_ERR(px, "Lua: internal error while execute action.\n");
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02006075 return ACT_RET_CONT;
6076 }
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006077
Willy Tarreau87b09662015-04-03 00:22:06 +02006078 /* In the execution wrappers linked with a stream, the
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01006079 * Lua context can be not initialized. This behavior
6080 * permits to save performances because a systematic
6081 * Lua initialization cause 5% performances loss.
6082 */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006083 if (!s->hlua) {
Willy Tarreaubafbe012017-11-24 17:34:44 +01006084 s->hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006085 if (!s->hlua) {
6086 SEND_ERR(px, "Lua action '%s': can't initialize Lua context.\n",
6087 rule->arg.hlua_rule->fcn.name);
6088 return ACT_RET_CONT;
6089 }
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01006090 if (!hlua_ctx_init(s->hlua, s->task, 0)) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006091 SEND_ERR(px, "Lua action '%s': can't initialize Lua context.\n",
6092 rule->arg.hlua_rule->fcn.name);
6093 return ACT_RET_CONT;
6094 }
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01006095 }
6096
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006097 consistency_set(s, dir, &s->hlua->cons);
6098
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006099 /* If it is the first run, initialize the data for the call. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006100 if (!HLUA_IS_RUNNING(s->hlua)) {
Thierry FOURNIERbabae282015-09-17 11:36:37 +02006101
6102 /* The following Lua calls can fail. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006103 if (!SET_SAFE_LJMP(s->hlua->T)) {
6104 if (lua_type(s->hlua->T, -1) == LUA_TSTRING)
6105 error = lua_tostring(s->hlua->T, -1);
Thierry Fournierfd107a22016-02-19 19:57:23 +01006106 else
6107 error = "critical error";
6108 SEND_ERR(px, "Lua function '%s': %s.\n",
6109 rule->arg.hlua_rule->fcn.name, error);
Thierry FOURNIERbabae282015-09-17 11:36:37 +02006110 return ACT_RET_CONT;
6111 }
6112
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006113 /* Check stack available size. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006114 if (!lua_checkstack(s->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006115 SEND_ERR(px, "Lua function '%s': full stack.\n",
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02006116 rule->arg.hlua_rule->fcn.name);
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006117 RESET_SAFE_LJMP(s->hlua->T);
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +02006118 return ACT_RET_CONT;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006119 }
6120
6121 /* Restore the function in the stack. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006122 lua_rawgeti(s->hlua->T, LUA_REGISTRYINDEX, rule->arg.hlua_rule->fcn.function_ref);
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006123
Willy Tarreau87b09662015-04-03 00:22:06 +02006124 /* Create and and push object stream in the stack. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006125 if (!hlua_txn_new(s->hlua->T, s, px, dir, 0)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006126 SEND_ERR(px, "Lua function '%s': full stack.\n",
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02006127 rule->arg.hlua_rule->fcn.name);
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006128 RESET_SAFE_LJMP(s->hlua->T);
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +02006129 return ACT_RET_CONT;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006130 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006131 s->hlua->nargs = 1;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006132
6133 /* push keywords in the stack. */
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02006134 for (arg = rule->arg.hlua_rule->args; arg && *arg; arg++) {
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006135 if (!lua_checkstack(s->hlua->T, 1)) {
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006136 SEND_ERR(px, "Lua function '%s': full stack.\n",
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02006137 rule->arg.hlua_rule->fcn.name);
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006138 RESET_SAFE_LJMP(s->hlua->T);
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +02006139 return ACT_RET_CONT;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006140 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006141 lua_pushstring(s->hlua->T, *arg);
6142 s->hlua->nargs++;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006143 }
6144
Thierry FOURNIERbabae282015-09-17 11:36:37 +02006145 /* Now the execution is safe. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006146 RESET_SAFE_LJMP(s->hlua->T);
Thierry FOURNIERbabae282015-09-17 11:36:37 +02006147
Thierry FOURNIERbd413492015-03-03 16:52:26 +01006148 /* We must initialize the execution timeouts. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006149 s->hlua->max_time = hlua_timeout_session;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006150 }
6151
6152 /* Execute the function. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006153 switch (hlua_ctx_resume(s->hlua, !(flags & ACT_FLAG_FINAL))) {
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006154 /* finished. */
6155 case HLUA_E_OK:
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006156 if (!consistency_check(s, dir, &s->hlua->cons)) {
Willy Tarreau14bfe9a2018-12-19 15:19:27 +01006157 si_retnclose(&s->si[0], &msg);
Thierry FOURNIERd75cb0f2015-09-25 19:22:44 +02006158 return ACT_RET_ERR;
Thierry FOURNIER11cfb3d2016-12-13 13:06:23 +01006159 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006160 if (s->hlua->flags & HLUA_STOP)
Christopher Faulet8f1aa772019-07-04 11:27:15 +02006161 return ACT_RET_DONE;
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +02006162 return ACT_RET_CONT;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006163
6164 /* yield. */
6165 case HLUA_E_AGAIN:
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01006166 /* Set timeout in the required channel. */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006167 if (s->hlua->wake_time != TICK_ETERNITY) {
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01006168 if (analyzer & (AN_REQ_INSPECT_FE|AN_REQ_HTTP_PROCESS_FE))
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006169 s->req.analyse_exp = s->hlua->wake_time;
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01006170 else if (analyzer & (AN_RES_INSPECT|AN_RES_HTTP_PROCESS_BE))
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006171 s->res.analyse_exp = s->hlua->wake_time;
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01006172 }
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006173 /* Some actions can be wake up when a "write" event
6174 * is detected on a response channel. This is useful
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08006175 * only for actions targeted on the requests.
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006176 */
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006177 if (HLUA_IS_WAKERESWR(s->hlua)) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01006178 s->res.flags |= CF_WAKE_WRITE;
Willy Tarreau76bd97f2015-03-10 17:16:10 +01006179 if ((analyzer & (AN_REQ_INSPECT_FE|AN_REQ_HTTP_PROCESS_FE)))
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01006180 s->res.analysers |= analyzer;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006181 }
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006182 if (HLUA_IS_WAKEREQWR(s->hlua))
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01006183 s->req.flags |= CF_WAKE_WRITE;
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08006184 /* We can quit the function without consistency check
Thierry FOURNIER11cfb3d2016-12-13 13:06:23 +01006185 * because HAProxy is not able to manipulate data, it
6186 * is only allowed to call me again. */
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +02006187 return ACT_RET_YIELD;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006188
6189 /* finished with error. */
6190 case HLUA_E_ERRMSG:
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006191 if (!consistency_check(s, dir, &s->hlua->cons)) {
Willy Tarreau14bfe9a2018-12-19 15:19:27 +01006192 si_retnclose(&s->si[0], &msg);
Thierry FOURNIERd75cb0f2015-09-25 19:22:44 +02006193 return ACT_RET_ERR;
Thierry FOURNIER11cfb3d2016-12-13 13:06:23 +01006194 }
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006195 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006196 SEND_ERR(px, "Lua function '%s': %s.\n",
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006197 rule->arg.hlua_rule->fcn.name, lua_tostring(s->hlua->T, -1));
6198 lua_pop(s->hlua->T, 1);
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +02006199 return ACT_RET_CONT;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006200
Thierry Fournierd5b073c2018-05-21 19:42:47 +02006201 case HLUA_E_ETMOUT:
6202 if (!consistency_check(s, dir, &s->hlua->cons)) {
Willy Tarreau14bfe9a2018-12-19 15:19:27 +01006203 si_retnclose(&s->si[0], &msg);
Thierry Fournierd5b073c2018-05-21 19:42:47 +02006204 return ACT_RET_ERR;
6205 }
6206 SEND_ERR(px, "Lua function '%s': execution timeout.\n", rule->arg.hlua_rule->fcn.name);
6207 return 0;
6208
6209 case HLUA_E_NOMEM:
6210 if (!consistency_check(s, dir, &s->hlua->cons)) {
Willy Tarreau14bfe9a2018-12-19 15:19:27 +01006211 si_retnclose(&s->si[0], &msg);
Thierry Fournierd5b073c2018-05-21 19:42:47 +02006212 return ACT_RET_ERR;
6213 }
6214 SEND_ERR(px, "Lua function '%s': out of memory error.\n", rule->arg.hlua_rule->fcn.name);
6215 return 0;
6216
6217 case HLUA_E_YIELD:
6218 if (!consistency_check(s, dir, &s->hlua->cons)) {
Willy Tarreau14bfe9a2018-12-19 15:19:27 +01006219 si_retnclose(&s->si[0], &msg);
Thierry Fournierd5b073c2018-05-21 19:42:47 +02006220 return ACT_RET_ERR;
6221 }
6222 SEND_ERR(px, "Lua function '%s': aborting Lua processing on expired timeout.\n",
6223 rule->arg.hlua_rule->fcn.name);
6224 return 0;
6225
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006226 case HLUA_E_ERR:
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +01006227 if (!consistency_check(s, dir, &s->hlua->cons)) {
Willy Tarreau14bfe9a2018-12-19 15:19:27 +01006228 si_retnclose(&s->si[0], &msg);
Thierry FOURNIERd75cb0f2015-09-25 19:22:44 +02006229 return ACT_RET_ERR;
Thierry FOURNIER11cfb3d2016-12-13 13:06:23 +01006230 }
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006231 /* Display log. */
Thierry FOURNIER23bc3752015-09-11 19:15:43 +02006232 SEND_ERR(px, "Lua function '%s' return an unknown error.\n",
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02006233 rule->arg.hlua_rule->fcn.name);
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006234
6235 default:
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +02006236 return ACT_RET_CONT;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006237 }
6238}
6239
Olivier Houchard9f6af332018-05-25 14:04:04 +02006240struct task *hlua_applet_wakeup(struct task *t, void *context, unsigned short state)
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006241{
Olivier Houchard9f6af332018-05-25 14:04:04 +02006242 struct appctx *ctx = context;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006243
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006244 appctx_wakeup(ctx);
Willy Tarreaud9587412017-08-23 16:07:33 +02006245 t->expire = TICK_ETERNITY;
Willy Tarreaud1aa41f2017-07-21 16:41:56 +02006246 return t;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006247}
6248
6249static int hlua_applet_tcp_init(struct appctx *ctx, struct proxy *px, struct stream *strm)
6250{
6251 struct stream_interface *si = ctx->owner;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01006252 struct hlua *hlua;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006253 struct task *task;
6254 char **arg;
Thierry Fournierfd107a22016-02-19 19:57:23 +01006255 const char *error;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006256
Willy Tarreaubafbe012017-11-24 17:34:44 +01006257 hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01006258 if (!hlua) {
6259 SEND_ERR(px, "Lua applet tcp '%s': out of memory.\n",
6260 ctx->rule->arg.hlua_rule->fcn.name);
6261 return 0;
6262 }
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006263 HLUA_INIT(hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01006264 ctx->ctx.hlua_apptcp.hlua = hlua;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006265 ctx->ctx.hlua_apptcp.flags = 0;
6266
6267 /* Create task used by signal to wakeup applets. */
Willy Tarreau5f4a47b2017-10-31 15:59:32 +01006268 task = task_new(tid_bit);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006269 if (!task) {
6270 SEND_ERR(px, "Lua applet tcp '%s': out of memory.\n",
6271 ctx->rule->arg.hlua_rule->fcn.name);
6272 return 0;
6273 }
6274 task->nice = 0;
6275 task->context = ctx;
6276 task->process = hlua_applet_wakeup;
6277 ctx->ctx.hlua_apptcp.task = task;
6278
6279 /* In the execution wrappers linked with a stream, the
6280 * Lua context can be not initialized. This behavior
6281 * permits to save performances because a systematic
6282 * Lua initialization cause 5% performances loss.
6283 */
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01006284 if (!hlua_ctx_init(hlua, task, 0)) {
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006285 SEND_ERR(px, "Lua applet tcp '%s': can't initialize Lua context.\n",
6286 ctx->rule->arg.hlua_rule->fcn.name);
6287 return 0;
6288 }
6289
6290 /* Set timeout according with the applet configuration. */
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02006291 hlua->max_time = ctx->applet->timeout;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006292
6293 /* The following Lua calls can fail. */
6294 if (!SET_SAFE_LJMP(hlua->T)) {
Thierry Fournierfd107a22016-02-19 19:57:23 +01006295 if (lua_type(hlua->T, -1) == LUA_TSTRING)
6296 error = lua_tostring(hlua->T, -1);
6297 else
6298 error = "critical error";
6299 SEND_ERR(px, "Lua applet tcp '%s': %s.\n",
6300 ctx->rule->arg.hlua_rule->fcn.name, error);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006301 return 0;
6302 }
6303
6304 /* Check stack available size. */
6305 if (!lua_checkstack(hlua->T, 1)) {
6306 SEND_ERR(px, "Lua applet tcp '%s': full stack.\n",
6307 ctx->rule->arg.hlua_rule->fcn.name);
6308 RESET_SAFE_LJMP(hlua->T);
6309 return 0;
6310 }
6311
6312 /* Restore the function in the stack. */
6313 lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, ctx->rule->arg.hlua_rule->fcn.function_ref);
6314
6315 /* Create and and push object stream in the stack. */
6316 if (!hlua_applet_tcp_new(hlua->T, ctx)) {
6317 SEND_ERR(px, "Lua applet tcp '%s': full stack.\n",
6318 ctx->rule->arg.hlua_rule->fcn.name);
6319 RESET_SAFE_LJMP(hlua->T);
6320 return 0;
6321 }
6322 hlua->nargs = 1;
6323
6324 /* push keywords in the stack. */
6325 for (arg = ctx->rule->arg.hlua_rule->args; arg && *arg; arg++) {
6326 if (!lua_checkstack(hlua->T, 1)) {
6327 SEND_ERR(px, "Lua applet tcp '%s': full stack.\n",
6328 ctx->rule->arg.hlua_rule->fcn.name);
6329 RESET_SAFE_LJMP(hlua->T);
6330 return 0;
6331 }
6332 lua_pushstring(hlua->T, *arg);
6333 hlua->nargs++;
6334 }
6335
6336 RESET_SAFE_LJMP(hlua->T);
6337
6338 /* Wakeup the applet ASAP. */
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01006339 si_cant_get(si);
Willy Tarreau3367d412018-11-15 10:57:41 +01006340 si_rx_endp_more(si);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006341
6342 return 1;
6343}
6344
6345static void hlua_applet_tcp_fct(struct appctx *ctx)
6346{
6347 struct stream_interface *si = ctx->owner;
6348 struct stream *strm = si_strm(si);
6349 struct channel *res = si_ic(si);
6350 struct act_rule *rule = ctx->rule;
6351 struct proxy *px = strm->be;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01006352 struct hlua *hlua = ctx->ctx.hlua_apptcp.hlua;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006353
6354 /* The applet execution is already done. */
Olivier Houchard594c8c52018-08-28 14:41:31 +02006355 if (ctx->ctx.hlua_apptcp.flags & APPLET_DONE) {
6356 /* eat the whole request */
6357 co_skip(si_oc(si), co_data(si_oc(si)));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006358 return;
Olivier Houchard594c8c52018-08-28 14:41:31 +02006359 }
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006360
6361 /* If the stream is disconnect or closed, ldo nothing. */
6362 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
6363 return;
6364
6365 /* Execute the function. */
6366 switch (hlua_ctx_resume(hlua, 1)) {
6367 /* finished. */
6368 case HLUA_E_OK:
6369 ctx->ctx.hlua_apptcp.flags |= APPLET_DONE;
6370
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006371 /* eat the whole request */
Willy Tarreaua79021a2018-06-15 18:07:57 +02006372 co_skip(si_oc(si), co_data(si_oc(si)));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006373 res->flags |= CF_READ_NULL;
6374 si_shutr(si);
6375 return;
6376
6377 /* yield. */
6378 case HLUA_E_AGAIN:
Thierry Fournier0164f202016-02-20 17:47:43 +01006379 if (hlua->wake_time != TICK_ETERNITY)
6380 task_schedule(ctx->ctx.hlua_apptcp.task, hlua->wake_time);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006381 return;
6382
6383 /* finished with error. */
6384 case HLUA_E_ERRMSG:
6385 /* Display log. */
6386 SEND_ERR(px, "Lua applet tcp '%s': %s.\n",
6387 rule->arg.hlua_rule->fcn.name, lua_tostring(hlua->T, -1));
6388 lua_pop(hlua->T, 1);
6389 goto error;
6390
Thierry Fournierd5b073c2018-05-21 19:42:47 +02006391 case HLUA_E_ETMOUT:
6392 SEND_ERR(px, "Lua applet tcp '%s': execution timeout.\n",
6393 rule->arg.hlua_rule->fcn.name);
6394 goto error;
6395
6396 case HLUA_E_NOMEM:
6397 SEND_ERR(px, "Lua applet tcp '%s': out of memory error.\n",
6398 rule->arg.hlua_rule->fcn.name);
6399 goto error;
6400
6401 case HLUA_E_YIELD: /* unexpected */
6402 SEND_ERR(px, "Lua applet tcp '%s': yield not allowed.\n",
6403 rule->arg.hlua_rule->fcn.name);
6404 goto error;
6405
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006406 case HLUA_E_ERR:
6407 /* Display log. */
6408 SEND_ERR(px, "Lua applet tcp '%s' return an unknown error.\n",
6409 rule->arg.hlua_rule->fcn.name);
6410 goto error;
6411
6412 default:
6413 goto error;
6414 }
6415
6416error:
6417
6418 /* For all other cases, just close the stream. */
6419 si_shutw(si);
6420 si_shutr(si);
6421 ctx->ctx.hlua_apptcp.flags |= APPLET_DONE;
6422}
6423
6424static void hlua_applet_tcp_release(struct appctx *ctx)
6425{
Olivier Houchard3f795f72019-04-17 22:51:06 +02006426 task_destroy(ctx->ctx.hlua_apptcp.task);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006427 ctx->ctx.hlua_apptcp.task = NULL;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01006428 hlua_ctx_destroy(ctx->ctx.hlua_apptcp.hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01006429 ctx->ctx.hlua_apptcp.hlua = NULL;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006430}
6431
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02006432/* The function returns 1 if the initialisation is complete, 0 if
6433 * an errors occurs and -1 if more data are required for initializing
6434 * the applet.
6435 */
6436static int hlua_applet_http_init(struct appctx *ctx, struct proxy *px, struct stream *strm)
6437{
6438 struct stream_interface *si = ctx->owner;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02006439 struct http_txn *txn;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01006440 struct hlua *hlua;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02006441 char **arg;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02006442 struct task *task;
Thierry Fournierfd107a22016-02-19 19:57:23 +01006443 const char *error;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02006444
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02006445 txn = strm->txn;
Willy Tarreaubafbe012017-11-24 17:34:44 +01006446 hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01006447 if (!hlua) {
6448 SEND_ERR(px, "Lua applet http '%s': out of memory.\n",
6449 ctx->rule->arg.hlua_rule->fcn.name);
6450 return 0;
6451 }
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02006452 HLUA_INIT(hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01006453 ctx->ctx.hlua_apphttp.hlua = hlua;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02006454 ctx->ctx.hlua_apphttp.left_bytes = -1;
6455 ctx->ctx.hlua_apphttp.flags = 0;
6456
Thierry FOURNIERd93ea2b2015-12-20 19:14:52 +01006457 if (txn->req.flags & HTTP_MSGF_VER_11)
6458 ctx->ctx.hlua_apphttp.flags |= APPLET_HTTP11;
6459
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02006460 /* Create task used by signal to wakeup applets. */
Willy Tarreau5f4a47b2017-10-31 15:59:32 +01006461 task = task_new(tid_bit);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02006462 if (!task) {
6463 SEND_ERR(px, "Lua applet http '%s': out of memory.\n",
6464 ctx->rule->arg.hlua_rule->fcn.name);
6465 return 0;
6466 }
6467 task->nice = 0;
6468 task->context = ctx;
6469 task->process = hlua_applet_wakeup;
6470 ctx->ctx.hlua_apphttp.task = task;
6471
6472 /* In the execution wrappers linked with a stream, the
6473 * Lua context can be not initialized. This behavior
6474 * permits to save performances because a systematic
6475 * Lua initialization cause 5% performances loss.
6476 */
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01006477 if (!hlua_ctx_init(hlua, task, 0)) {
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02006478 SEND_ERR(px, "Lua applet http '%s': can't initialize Lua context.\n",
6479 ctx->rule->arg.hlua_rule->fcn.name);
6480 return 0;
6481 }
6482
6483 /* Set timeout according with the applet configuration. */
Thierry FOURNIER10770fa2015-09-29 01:59:42 +02006484 hlua->max_time = ctx->applet->timeout;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02006485
6486 /* The following Lua calls can fail. */
6487 if (!SET_SAFE_LJMP(hlua->T)) {
Thierry Fournierfd107a22016-02-19 19:57:23 +01006488 if (lua_type(hlua->T, -1) == LUA_TSTRING)
6489 error = lua_tostring(hlua->T, -1);
6490 else
6491 error = "critical error";
6492 SEND_ERR(px, "Lua applet http '%s': %s.\n",
6493 ctx->rule->arg.hlua_rule->fcn.name, error);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02006494 return 0;
6495 }
6496
6497 /* Check stack available size. */
6498 if (!lua_checkstack(hlua->T, 1)) {
6499 SEND_ERR(px, "Lua applet http '%s': full stack.\n",
6500 ctx->rule->arg.hlua_rule->fcn.name);
6501 RESET_SAFE_LJMP(hlua->T);
6502 return 0;
6503 }
6504
6505 /* Restore the function in the stack. */
6506 lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, ctx->rule->arg.hlua_rule->fcn.function_ref);
6507
6508 /* Create and and push object stream in the stack. */
6509 if (!hlua_applet_http_new(hlua->T, ctx)) {
6510 SEND_ERR(px, "Lua applet http '%s': full stack.\n",
6511 ctx->rule->arg.hlua_rule->fcn.name);
6512 RESET_SAFE_LJMP(hlua->T);
6513 return 0;
6514 }
6515 hlua->nargs = 1;
6516
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02006517 /* push keywords in the stack. */
6518 for (arg = ctx->rule->arg.hlua_rule->args; arg && *arg; arg++) {
6519 if (!lua_checkstack(hlua->T, 1)) {
6520 SEND_ERR(px, "Lua applet http '%s': full stack.\n",
6521 ctx->rule->arg.hlua_rule->fcn.name);
6522 RESET_SAFE_LJMP(hlua->T);
6523 return 0;
6524 }
6525 lua_pushstring(hlua->T, *arg);
6526 hlua->nargs++;
6527 }
6528
6529 RESET_SAFE_LJMP(hlua->T);
6530
6531 /* Wakeup the applet when data is ready for read. */
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01006532 si_cant_get(si);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02006533
6534 return 1;
6535}
6536
Christopher Fauleta2097962019-07-15 16:25:33 +02006537static void hlua_applet_http_fct(struct appctx *ctx)
Christopher Faulet9c832fc2018-12-14 13:34:05 +01006538{
6539 struct stream_interface *si = ctx->owner;
6540 struct stream *strm = si_strm(si);
6541 struct channel *req = si_oc(si);
6542 struct channel *res = si_ic(si);
6543 struct act_rule *rule = ctx->rule;
6544 struct proxy *px = strm->be;
6545 struct hlua *hlua = ctx->ctx.hlua_apphttp.hlua;
6546 struct htx *req_htx, *res_htx;
6547
6548 res_htx = htx_from_buf(&res->buf);
6549
6550 /* If the stream is disconnect or closed, ldo nothing. */
6551 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
6552 goto out;
6553
6554 /* Check if the input buffer is avalaible. */
6555 if (!b_size(&res->buf)) {
6556 si_rx_room_blk(si);
6557 goto out;
6558 }
6559 /* check that the output is not closed */
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01006560 if (res->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_SHUTR))
Christopher Faulet9c832fc2018-12-14 13:34:05 +01006561 ctx->ctx.hlua_apphttp.flags |= APPLET_DONE;
6562
6563 /* Set the currently running flag. */
6564 if (!HLUA_IS_RUNNING(hlua) &&
6565 !(ctx->ctx.hlua_apphttp.flags & APPLET_DONE)) {
6566 struct htx_blk *blk;
6567 size_t count = co_data(req);
6568
6569 if (!count) {
6570 si_cant_get(si);
6571 goto out;
6572 }
6573
6574 /* We need to flush the request header. This left the body for
6575 * the Lua.
6576 */
6577 req_htx = htx_from_buf(&req->buf);
Christopher Fauleta3f15502019-05-13 15:27:23 +02006578 blk = htx_get_first_blk(req_htx);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01006579 while (count && blk) {
6580 enum htx_blk_type type = htx_get_blk_type(blk);
6581 uint32_t sz = htx_get_blksz(blk);
6582
6583 if (sz > count) {
6584 si_cant_get(si);
Christopher Faulet0ae79d02019-02-27 21:36:59 +01006585 htx_to_buf(req_htx, &req->buf);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01006586 goto out;
6587 }
6588
6589 count -= sz;
6590 co_set_data(req, co_data(req) - sz);
6591 blk = htx_remove_blk(req_htx, blk);
6592
6593 if (type == HTX_BLK_EOH)
6594 break;
6595 }
Christopher Faulet0ae79d02019-02-27 21:36:59 +01006596 htx_to_buf(req_htx, &req->buf);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01006597 }
6598
6599 /* Executes The applet if it is not done. */
6600 if (!(ctx->ctx.hlua_apphttp.flags & APPLET_DONE)) {
6601
6602 /* Execute the function. */
6603 switch (hlua_ctx_resume(hlua, 1)) {
6604 /* finished. */
6605 case HLUA_E_OK:
6606 ctx->ctx.hlua_apphttp.flags |= APPLET_DONE;
6607 break;
6608
6609 /* yield. */
6610 case HLUA_E_AGAIN:
6611 if (hlua->wake_time != TICK_ETERNITY)
6612 task_schedule(ctx->ctx.hlua_apphttp.task, hlua->wake_time);
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01006613 goto out;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01006614
6615 /* finished with error. */
6616 case HLUA_E_ERRMSG:
6617 /* Display log. */
6618 SEND_ERR(px, "Lua applet http '%s': %s.\n",
6619 rule->arg.hlua_rule->fcn.name, lua_tostring(hlua->T, -1));
6620 lua_pop(hlua->T, 1);
6621 goto error;
6622
6623 case HLUA_E_ETMOUT:
6624 SEND_ERR(px, "Lua applet http '%s': execution timeout.\n",
6625 rule->arg.hlua_rule->fcn.name);
6626 goto error;
6627
6628 case HLUA_E_NOMEM:
6629 SEND_ERR(px, "Lua applet http '%s': out of memory error.\n",
6630 rule->arg.hlua_rule->fcn.name);
6631 goto error;
6632
6633 case HLUA_E_YIELD: /* unexpected */
6634 SEND_ERR(px, "Lua applet http '%s': yield not allowed.\n",
6635 rule->arg.hlua_rule->fcn.name);
6636 goto error;
6637
6638 case HLUA_E_ERR:
6639 /* Display log. */
6640 SEND_ERR(px, "Lua applet http '%s' return an unknown error.\n",
6641 rule->arg.hlua_rule->fcn.name);
6642 goto error;
6643
6644 default:
6645 goto error;
6646 }
6647 }
6648
6649 if (ctx->ctx.hlua_apphttp.flags & APPLET_DONE) {
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01006650 if (ctx->ctx.hlua_apphttp.flags & APPLET_RSP_SENT)
6651 goto done;
6652
Christopher Faulet9c832fc2018-12-14 13:34:05 +01006653 if (!(ctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT))
6654 goto error;
6655
Christopher Faulet54b5e212019-06-04 10:08:28 +02006656 /* Don't add TLR because mux-h1 will take care of it */
Christopher Faulet9c832fc2018-12-14 13:34:05 +01006657 if (!htx_add_endof(res_htx, HTX_BLK_EOM)) {
6658 si_rx_room_blk(si);
6659 goto out;
6660 }
Christopher Fauletf6cce3f2019-02-27 21:20:09 +01006661 channel_add_input(res, 1);
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01006662 strm->txn->status = ctx->ctx.hlua_apphttp.status;
6663 ctx->ctx.hlua_apphttp.flags |= APPLET_RSP_SENT;
Christopher Faulet9c832fc2018-12-14 13:34:05 +01006664 }
6665
6666 done:
6667 if (ctx->ctx.hlua_apphttp.flags & APPLET_DONE) {
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01006668 if (!(res->flags & CF_SHUTR)) {
Christopher Faulet9c832fc2018-12-14 13:34:05 +01006669 res->flags |= CF_READ_NULL;
Christopher Faulet56a3d6e2019-02-27 22:06:23 +01006670 si_shutr(si);
6671 }
6672
6673 /* eat the whole request */
6674 if (co_data(req)) {
6675 req_htx = htx_from_buf(&req->buf);
6676 co_htx_skip(req, req_htx, co_data(req));
6677 htx_to_buf(req_htx, &req->buf);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01006678 }
6679 }
6680
6681 out:
Christopher Faulet9c832fc2018-12-14 13:34:05 +01006682 htx_to_buf(res_htx, &res->buf);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01006683 return;
6684
6685 error:
6686
6687 /* If we are in HTTP mode, and we are not send any
6688 * data, return a 500 server error in best effort:
6689 * if there is no room available in the buffer,
6690 * just close the connection.
6691 */
6692 if (!(ctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT)) {
Christopher Fauletf7346382019-07-17 22:02:08 +02006693 struct buffer *err = &http_err_chunks[HTTP_ERR_500];
Christopher Faulet9c832fc2018-12-14 13:34:05 +01006694
6695 channel_erase(res);
6696 res->buf.data = b_data(err);
6697 memcpy(res->buf.area, b_head(err), b_data(err));
6698 res_htx = htx_from_buf(&res->buf);
Christopher Fauletf6cce3f2019-02-27 21:20:09 +01006699 channel_add_input(res, res_htx->data);
Christopher Faulet9c832fc2018-12-14 13:34:05 +01006700 }
6701 if (!(strm->flags & SF_ERR_MASK))
6702 strm->flags |= SF_ERR_RESOURCE;
6703 ctx->ctx.hlua_apphttp.flags |= APPLET_DONE;
6704 goto done;
6705}
6706
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02006707static void hlua_applet_http_release(struct appctx *ctx)
6708{
Olivier Houchard3f795f72019-04-17 22:51:06 +02006709 task_destroy(ctx->ctx.hlua_apphttp.task);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02006710 ctx->ctx.hlua_apphttp.task = NULL;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01006711 hlua_ctx_destroy(ctx->ctx.hlua_apphttp.hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01006712 ctx->ctx.hlua_apphttp.hlua = NULL;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02006713}
6714
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02006715/* global {tcp|http}-request parser. Return ACT_RET_PRS_OK in
6716 * succes case, else return ACT_RET_PRS_ERR.
Thierry FOURNIERbabae282015-09-17 11:36:37 +02006717 *
6718 * This function can fail with an abort() due to an Lua critical error.
6719 * We are in the configuration parsing process of HAProxy, this abort() is
6720 * tolerated.
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006721 */
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02006722static enum act_parse_ret action_register_lua(const char **args, int *cur_arg, struct proxy *px,
6723 struct act_rule *rule, char **err)
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006724{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02006725 struct hlua_function *fcn = rule->kw->private;
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01006726 int i;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02006727
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02006728 /* Memory for the rule. */
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02006729 rule->arg.hlua_rule = calloc(1, sizeof(*rule->arg.hlua_rule));
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02006730 if (!rule->arg.hlua_rule) {
6731 memprintf(err, "out of memory error");
Thierry FOURNIERafa80492015-08-19 09:04:15 +02006732 return ACT_RET_PRS_ERR;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02006733 }
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006734
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01006735 /* Memory for arguments. */
6736 rule->arg.hlua_rule->args = calloc(fcn->nargs + 1, sizeof(char *));
6737 if (!rule->arg.hlua_rule->args) {
6738 memprintf(err, "out of memory error");
6739 return ACT_RET_PRS_ERR;
6740 }
6741
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02006742 /* Reference the Lua function and store the reference. */
Thierry FOURNIER8255a752015-09-23 21:03:35 +02006743 rule->arg.hlua_rule->fcn = *fcn;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02006744
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01006745 /* Expect some arguments */
6746 for (i = 0; i < fcn->nargs; i++) {
Thierry FOURNIER1725c2e2019-01-06 19:38:49 +01006747 if (*args[*cur_arg] == '\0') {
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01006748 memprintf(err, "expect %d arguments", fcn->nargs);
6749 return ACT_RET_PRS_ERR;
6750 }
Thierry FOURNIER1725c2e2019-01-06 19:38:49 +01006751 rule->arg.hlua_rule->args[i] = strdup(args[*cur_arg]);
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01006752 if (!rule->arg.hlua_rule->args[i]) {
6753 memprintf(err, "out of memory error");
6754 return ACT_RET_PRS_ERR;
6755 }
6756 (*cur_arg)++;
6757 }
6758 rule->arg.hlua_rule->args[i] = NULL;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02006759
Thierry FOURNIER42148732015-09-02 17:17:33 +02006760 rule->action = ACT_CUSTOM;
Thierry FOURNIER4dc15d12015-08-06 18:25:56 +02006761 rule->action_ptr = hlua_action;
Thierry FOURNIERafa80492015-08-19 09:04:15 +02006762 return ACT_RET_PRS_OK;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01006763}
6764
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02006765static enum act_parse_ret action_register_service_http(const char **args, int *cur_arg, struct proxy *px,
6766 struct act_rule *rule, char **err)
6767{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02006768 struct hlua_function *fcn = rule->kw->private;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02006769
Thierry FOURNIER718e2a72015-12-20 20:13:14 +01006770 /* HTTP applets are forbidden in tcp-request rules.
6771 * HTTP applet request requires everything initilized by
6772 * "http_process_request" (analyzer flag AN_REQ_HTTP_INNER).
6773 * The applet will be immediately initilized, but its before
6774 * the call of this analyzer.
6775 */
6776 if (rule->from != ACT_F_HTTP_REQ) {
6777 memprintf(err, "HTTP applets are forbidden from 'tcp-request' rulesets");
6778 return ACT_RET_PRS_ERR;
6779 }
6780
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02006781 /* Memory for the rule. */
6782 rule->arg.hlua_rule = calloc(1, sizeof(*rule->arg.hlua_rule));
6783 if (!rule->arg.hlua_rule) {
6784 memprintf(err, "out of memory error");
6785 return ACT_RET_PRS_ERR;
6786 }
6787
6788 /* Reference the Lua function and store the reference. */
6789 rule->arg.hlua_rule->fcn = *fcn;
6790
6791 /* TODO: later accept arguments. */
6792 rule->arg.hlua_rule->args = NULL;
6793
6794 /* Add applet pointer in the rule. */
6795 rule->applet.obj_type = OBJ_TYPE_APPLET;
6796 rule->applet.name = fcn->name;
6797 rule->applet.init = hlua_applet_http_init;
6798 rule->applet.fct = hlua_applet_http_fct;
6799 rule->applet.release = hlua_applet_http_release;
6800 rule->applet.timeout = hlua_timeout_applet;
6801
6802 return ACT_RET_PRS_OK;
6803}
6804
Thierry FOURNIER8255a752015-09-23 21:03:35 +02006805/* This function is an LUA binding used for registering
6806 * "sample-conv" functions. It expects a converter name used
6807 * in the haproxy configuration file, and an LUA function.
6808 */
6809__LJMP static int hlua_register_action(lua_State *L)
6810{
6811 struct action_kw_list *akl;
6812 const char *name;
6813 int ref;
6814 int len;
6815 struct hlua_function *fcn;
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01006816 int nargs;
Thierry FOURNIER8255a752015-09-23 21:03:35 +02006817
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01006818 /* Initialise the number of expected arguments at 0. */
6819 nargs = 0;
6820
6821 if (lua_gettop(L) < 3 || lua_gettop(L) > 4)
6822 WILL_LJMP(luaL_error(L, "'register_action' needs between 3 and 4 arguments"));
Thierry FOURNIER8255a752015-09-23 21:03:35 +02006823
6824 /* First argument : converter name. */
6825 name = MAY_LJMP(luaL_checkstring(L, 1));
6826
6827 /* Second argument : environment. */
6828 if (lua_type(L, 2) != LUA_TTABLE)
6829 WILL_LJMP(luaL_error(L, "register_action: second argument must be a table of strings"));
6830
6831 /* Third argument : lua function. */
6832 ref = MAY_LJMP(hlua_checkfunction(L, 3));
6833
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08006834 /* Fourth argument : number of mandatory arguments expected on the configuration line. */
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01006835 if (lua_gettop(L) >= 4)
6836 nargs = MAY_LJMP(luaL_checkinteger(L, 4));
6837
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08006838 /* browse the second argument as an array. */
Thierry FOURNIER8255a752015-09-23 21:03:35 +02006839 lua_pushnil(L);
6840 while (lua_next(L, 2) != 0) {
6841 if (lua_type(L, -1) != LUA_TSTRING)
6842 WILL_LJMP(luaL_error(L, "register_action: second argument must be a table of strings"));
6843
6844 /* Check required environment. Only accepted "http" or "tcp". */
6845 /* Allocate and fill the sample fetch keyword struct. */
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02006846 akl = calloc(1, sizeof(*akl) + sizeof(struct action_kw) * 2);
Thierry FOURNIER8255a752015-09-23 21:03:35 +02006847 if (!akl)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01006848 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02006849 fcn = calloc(1, sizeof(*fcn));
Thierry FOURNIER8255a752015-09-23 21:03:35 +02006850 if (!fcn)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01006851 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIER8255a752015-09-23 21:03:35 +02006852
6853 /* Fill fcn. */
6854 fcn->name = strdup(name);
6855 if (!fcn->name)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01006856 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIER8255a752015-09-23 21:03:35 +02006857 fcn->function_ref = ref;
6858
Thierry FOURNIER / OZON.IO4b123be2016-12-09 18:03:31 +01006859 /* Set the expected number od arguments. */
6860 fcn->nargs = nargs;
6861
Thierry FOURNIER8255a752015-09-23 21:03:35 +02006862 /* List head */
6863 akl->list.n = akl->list.p = NULL;
6864
Thierry FOURNIER8255a752015-09-23 21:03:35 +02006865 /* action keyword. */
6866 len = strlen("lua.") + strlen(name) + 1;
Thierry FOURNIER3c7a77c2015-09-26 00:51:16 +02006867 akl->kw[0].kw = calloc(1, len);
Thierry FOURNIER8255a752015-09-23 21:03:35 +02006868 if (!akl->kw[0].kw)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01006869 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIER8255a752015-09-23 21:03:35 +02006870
6871 snprintf((char *)akl->kw[0].kw, len, "lua.%s", name);
6872
6873 akl->kw[0].match_pfx = 0;
6874 akl->kw[0].private = fcn;
6875 akl->kw[0].parse = action_register_lua;
6876
6877 /* select the action registering point. */
6878 if (strcmp(lua_tostring(L, -1), "tcp-req") == 0)
6879 tcp_req_cont_keywords_register(akl);
6880 else if (strcmp(lua_tostring(L, -1), "tcp-res") == 0)
6881 tcp_res_cont_keywords_register(akl);
6882 else if (strcmp(lua_tostring(L, -1), "http-req") == 0)
6883 http_req_keywords_register(akl);
6884 else if (strcmp(lua_tostring(L, -1), "http-res") == 0)
6885 http_res_keywords_register(akl);
6886 else
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01006887 WILL_LJMP(luaL_error(L, "Lua action environment '%s' is unknown. "
Thierry FOURNIER8255a752015-09-23 21:03:35 +02006888 "'tcp-req', 'tcp-res', 'http-req' or 'http-res' "
6889 "are expected.", lua_tostring(L, -1)));
6890
6891 /* pop the environment string. */
6892 lua_pop(L, 1);
6893 }
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006894 return ACT_RET_PRS_OK;
6895}
6896
6897static enum act_parse_ret action_register_service_tcp(const char **args, int *cur_arg, struct proxy *px,
6898 struct act_rule *rule, char **err)
6899{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02006900 struct hlua_function *fcn = rule->kw->private;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006901
Christopher Faulet280f85b2019-07-15 15:02:04 +02006902 if (px->mode == PR_MODE_HTTP) {
6903 memprintf(err, "Lua TCP services cannot be used on HTTP proxies");
Christopher Fauletafd8f102018-11-08 11:34:21 +01006904 return ACT_RET_PRS_ERR;
6905 }
6906
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006907 /* Memory for the rule. */
6908 rule->arg.hlua_rule = calloc(1, sizeof(*rule->arg.hlua_rule));
6909 if (!rule->arg.hlua_rule) {
6910 memprintf(err, "out of memory error");
6911 return ACT_RET_PRS_ERR;
6912 }
Thierry FOURNIER8255a752015-09-23 21:03:35 +02006913
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006914 /* Reference the Lua function and store the reference. */
6915 rule->arg.hlua_rule->fcn = *fcn;
6916
6917 /* TODO: later accept arguments. */
6918 rule->arg.hlua_rule->args = NULL;
6919
6920 /* Add applet pointer in the rule. */
6921 rule->applet.obj_type = OBJ_TYPE_APPLET;
6922 rule->applet.name = fcn->name;
6923 rule->applet.init = hlua_applet_tcp_init;
6924 rule->applet.fct = hlua_applet_tcp_fct;
6925 rule->applet.release = hlua_applet_tcp_release;
6926 rule->applet.timeout = hlua_timeout_applet;
6927
6928 return 0;
6929}
6930
6931/* This function is an LUA binding used for registering
6932 * "sample-conv" functions. It expects a converter name used
6933 * in the haproxy configuration file, and an LUA function.
6934 */
6935__LJMP static int hlua_register_service(lua_State *L)
6936{
6937 struct action_kw_list *akl;
6938 const char *name;
6939 const char *env;
6940 int ref;
6941 int len;
6942 struct hlua_function *fcn;
6943
6944 MAY_LJMP(check_args(L, 3, "register_service"));
6945
6946 /* First argument : converter name. */
6947 name = MAY_LJMP(luaL_checkstring(L, 1));
6948
6949 /* Second argument : environment. */
6950 env = MAY_LJMP(luaL_checkstring(L, 2));
6951
6952 /* Third argument : lua function. */
6953 ref = MAY_LJMP(hlua_checkfunction(L, 3));
6954
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006955 /* Allocate and fill the sample fetch keyword struct. */
6956 akl = calloc(1, sizeof(*akl) + sizeof(struct action_kw) * 2);
6957 if (!akl)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01006958 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006959 fcn = calloc(1, sizeof(*fcn));
6960 if (!fcn)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01006961 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006962
6963 /* Fill fcn. */
6964 len = strlen("<lua.>") + strlen(name) + 1;
6965 fcn->name = calloc(1, len);
6966 if (!fcn->name)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01006967 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006968 snprintf((char *)fcn->name, len, "<lua.%s>", name);
6969 fcn->function_ref = ref;
6970
6971 /* List head */
6972 akl->list.n = akl->list.p = NULL;
6973
6974 /* converter keyword. */
6975 len = strlen("lua.") + strlen(name) + 1;
6976 akl->kw[0].kw = calloc(1, len);
6977 if (!akl->kw[0].kw)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01006978 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006979
6980 snprintf((char *)akl->kw[0].kw, len, "lua.%s", name);
6981
Thierry FOURNIER / OZON.IO02564fd2016-11-12 11:07:05 +01006982 /* Check required environment. Only accepted "http" or "tcp". */
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006983 if (strcmp(env, "tcp") == 0)
6984 akl->kw[0].parse = action_register_service_tcp;
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02006985 else if (strcmp(env, "http") == 0)
6986 akl->kw[0].parse = action_register_service_http;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006987 else
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01006988 WILL_LJMP(luaL_error(L, "Lua service environment '%s' is unknown. "
Eric Salamafe7456f2017-12-21 14:30:07 +01006989 "'tcp' or 'http' are expected.", env));
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02006990
6991 akl->kw[0].match_pfx = 0;
6992 akl->kw[0].private = fcn;
6993
6994 /* End of array. */
6995 memset(&akl->kw[1], 0, sizeof(*akl->kw));
6996
6997 /* Register this new converter */
6998 service_keywords_register(akl);
6999
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007000 return 0;
7001}
7002
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007003/* This function initialises Lua cli handler. It copies the
7004 * arguments in the Lua stack and create channel IO objects.
7005 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02007006static int hlua_cli_parse_fct(char **args, char *payload, struct appctx *appctx, void *private)
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007007{
7008 struct hlua *hlua;
7009 struct hlua_function *fcn;
7010 int i;
7011 const char *error;
7012
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007013 fcn = private;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007014 appctx->ctx.hlua_cli.fcn = private;
7015
Willy Tarreaubafbe012017-11-24 17:34:44 +01007016 hlua = pool_alloc(pool_head_hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007017 if (!hlua) {
7018 SEND_ERR(NULL, "Lua cli '%s': out of memory.\n", fcn->name);
Thierry FOURNIER1be34152016-12-17 12:09:51 +01007019 return 1;
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007020 }
7021 HLUA_INIT(hlua);
7022 appctx->ctx.hlua_cli.hlua = hlua;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007023
7024 /* Create task used by signal to wakeup applets.
7025 * We use the same wakeup fonction than the Lua applet_tcp and
7026 * applet_http. It is absolutely compatible.
7027 */
Willy Tarreau5f4a47b2017-10-31 15:59:32 +01007028 appctx->ctx.hlua_cli.task = task_new(tid_bit);
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007029 if (!appctx->ctx.hlua_cli.task) {
Thierry FOURNIERffbf5692016-12-16 11:14:06 +01007030 SEND_ERR(NULL, "Lua cli '%s': out of memory.\n", fcn->name);
Thierry FOURNIER1be34152016-12-17 12:09:51 +01007031 goto error;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007032 }
7033 appctx->ctx.hlua_cli.task->nice = 0;
7034 appctx->ctx.hlua_cli.task->context = appctx;
7035 appctx->ctx.hlua_cli.task->process = hlua_applet_wakeup;
7036
7037 /* Initialises the Lua context */
Thierry FOURNIERbf90ce12019-01-06 19:04:24 +01007038 if (!hlua_ctx_init(hlua, appctx->ctx.hlua_cli.task, 0)) {
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007039 SEND_ERR(NULL, "Lua cli '%s': can't initialize Lua context.\n", fcn->name);
Thierry FOURNIER1be34152016-12-17 12:09:51 +01007040 goto error;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007041 }
7042
7043 /* The following Lua calls can fail. */
7044 if (!SET_SAFE_LJMP(hlua->T)) {
7045 if (lua_type(hlua->T, -1) == LUA_TSTRING)
7046 error = lua_tostring(hlua->T, -1);
7047 else
7048 error = "critical error";
7049 SEND_ERR(NULL, "Lua cli '%s': %s.\n", fcn->name, error);
7050 goto error;
7051 }
7052
7053 /* Check stack available size. */
7054 if (!lua_checkstack(hlua->T, 2)) {
7055 SEND_ERR(NULL, "Lua cli '%s': full stack.\n", fcn->name);
7056 goto error;
7057 }
7058
7059 /* Restore the function in the stack. */
7060 lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, fcn->function_ref);
7061
7062 /* Once the arguments parsed, the CLI is like an AppletTCP,
7063 * so push AppletTCP in the stack.
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007064 */
7065 if (!hlua_applet_tcp_new(hlua->T, appctx)) {
7066 SEND_ERR(NULL, "Lua cli '%s': full stack.\n", fcn->name);
7067 goto error;
7068 }
7069 hlua->nargs = 1;
7070
7071 /* push keywords in the stack. */
7072 for (i = 0; *args[i]; i++) {
7073 /* Check stack available size. */
7074 if (!lua_checkstack(hlua->T, 1)) {
7075 SEND_ERR(NULL, "Lua cli '%s': full stack.\n", fcn->name);
7076 goto error;
7077 }
7078 lua_pushstring(hlua->T, args[i]);
7079 hlua->nargs++;
7080 }
7081
7082 /* We must initialize the execution timeouts. */
7083 hlua->max_time = hlua_timeout_session;
7084
7085 /* At this point the execution is safe. */
7086 RESET_SAFE_LJMP(hlua->T);
7087
7088 /* It's ok */
7089 return 0;
7090
7091 /* It's not ok. */
7092error:
7093 RESET_SAFE_LJMP(hlua->T);
7094 hlua_ctx_destroy(hlua);
Thierry FOURNIER1be34152016-12-17 12:09:51 +01007095 appctx->ctx.hlua_cli.hlua = NULL;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007096 return 1;
7097}
7098
7099static int hlua_cli_io_handler_fct(struct appctx *appctx)
7100{
7101 struct hlua *hlua;
7102 struct stream_interface *si;
7103 struct hlua_function *fcn;
7104
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007105 hlua = appctx->ctx.hlua_cli.hlua;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007106 si = appctx->owner;
Willy Tarreau8ae4f752016-12-14 15:41:45 +01007107 fcn = appctx->ctx.hlua_cli.fcn;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007108
7109 /* If the stream is disconnect or closed, ldo nothing. */
7110 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
7111 return 1;
7112
7113 /* Execute the function. */
7114 switch (hlua_ctx_resume(hlua, 1)) {
7115
7116 /* finished. */
7117 case HLUA_E_OK:
7118 return 1;
7119
7120 /* yield. */
7121 case HLUA_E_AGAIN:
7122 /* We want write. */
7123 if (HLUA_IS_WAKERESWR(hlua))
Willy Tarreaudb398432018-11-15 11:08:52 +01007124 si_rx_room_blk(si);
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007125 /* Set the timeout. */
7126 if (hlua->wake_time != TICK_ETERNITY)
7127 task_schedule(hlua->task, hlua->wake_time);
7128 return 0;
7129
7130 /* finished with error. */
7131 case HLUA_E_ERRMSG:
7132 /* Display log. */
7133 SEND_ERR(NULL, "Lua cli '%s': %s.\n",
7134 fcn->name, lua_tostring(hlua->T, -1));
7135 lua_pop(hlua->T, 1);
7136 return 1;
7137
Thierry Fournierd5b073c2018-05-21 19:42:47 +02007138 case HLUA_E_ETMOUT:
7139 SEND_ERR(NULL, "Lua converter '%s': execution timeout.\n",
7140 fcn->name);
7141 return 1;
7142
7143 case HLUA_E_NOMEM:
7144 SEND_ERR(NULL, "Lua converter '%s': out of memory error.\n",
7145 fcn->name);
7146 return 1;
7147
7148 case HLUA_E_YIELD: /* unexpected */
7149 SEND_ERR(NULL, "Lua converter '%s': yield not allowed.\n",
7150 fcn->name);
7151 return 1;
7152
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007153 case HLUA_E_ERR:
7154 /* Display log. */
7155 SEND_ERR(NULL, "Lua cli '%s' return an unknown error.\n",
7156 fcn->name);
7157 return 1;
7158
7159 default:
7160 return 1;
7161 }
7162
7163 return 1;
7164}
7165
7166static void hlua_cli_io_release_fct(struct appctx *appctx)
7167{
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007168 hlua_ctx_destroy(appctx->ctx.hlua_cli.hlua);
Thierry FOURNIERebed6e92016-12-16 11:54:07 +01007169 appctx->ctx.hlua_cli.hlua = NULL;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007170}
7171
7172/* This function is an LUA binding used for registering
7173 * new keywords in the cli. It expects a list of keywords
7174 * which are the "path". It is limited to 5 keywords. A
7175 * description of the command, a function to be executed
7176 * for the parsing and a function for io handlers.
7177 */
7178__LJMP static int hlua_register_cli(lua_State *L)
7179{
7180 struct cli_kw_list *cli_kws;
7181 const char *message;
7182 int ref_io;
7183 int len;
7184 struct hlua_function *fcn;
7185 int index;
7186 int i;
7187
7188 MAY_LJMP(check_args(L, 3, "register_cli"));
7189
7190 /* First argument : an array of maximum 5 keywords. */
7191 if (!lua_istable(L, 1))
7192 WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table"));
7193
7194 /* Second argument : string with contextual message. */
7195 message = MAY_LJMP(luaL_checkstring(L, 2));
7196
7197 /* Third and fourth argument : lua function. */
7198 ref_io = MAY_LJMP(hlua_checkfunction(L, 3));
7199
7200 /* Allocate and fill the sample fetch keyword struct. */
7201 cli_kws = calloc(1, sizeof(*cli_kws) + sizeof(struct cli_kw) * 2);
7202 if (!cli_kws)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01007203 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007204 fcn = calloc(1, sizeof(*fcn));
7205 if (!fcn)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01007206 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007207
7208 /* Fill path. */
7209 index = 0;
7210 lua_pushnil(L);
7211 while(lua_next(L, 1) != 0) {
7212 if (index >= 5)
7213 WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table with a maximum of 5 entries"));
7214 if (lua_type(L, -1) != LUA_TSTRING)
7215 WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table filled with strings"));
7216 cli_kws->kw[0].str_kw[index] = strdup(lua_tostring(L, -1));
7217 if (!cli_kws->kw[0].str_kw[index])
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01007218 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007219 index++;
7220 lua_pop(L, 1);
7221 }
7222
7223 /* Copy help message. */
7224 cli_kws->kw[0].usage = strdup(message);
7225 if (!cli_kws->kw[0].usage)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01007226 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007227
7228 /* Fill fcn io handler. */
7229 len = strlen("<lua.cli>") + 1;
7230 for (i = 0; i < index; i++)
7231 len += strlen(cli_kws->kw[0].str_kw[i]) + 1;
7232 fcn->name = calloc(1, len);
7233 if (!fcn->name)
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01007234 WILL_LJMP(luaL_error(L, "Lua out of memory error."));
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007235 strncat((char *)fcn->name, "<lua.cli", len);
7236 for (i = 0; i < index; i++) {
7237 strncat((char *)fcn->name, ".", len);
7238 strncat((char *)fcn->name, cli_kws->kw[0].str_kw[i], len);
7239 }
7240 strncat((char *)fcn->name, ">", len);
7241 fcn->function_ref = ref_io;
7242
7243 /* Fill last entries. */
7244 cli_kws->kw[0].private = fcn;
7245 cli_kws->kw[0].parse = hlua_cli_parse_fct;
7246 cli_kws->kw[0].io_handler = hlua_cli_io_handler_fct;
7247 cli_kws->kw[0].io_release = hlua_cli_io_release_fct;
7248
7249 /* Register this new converter */
7250 cli_register_kw(cli_kws);
7251
7252 return 0;
7253}
7254
Thierry FOURNIERbd413492015-03-03 16:52:26 +01007255static int hlua_read_timeout(char **args, int section_type, struct proxy *curpx,
7256 struct proxy *defpx, const char *file, int line,
7257 char **err, unsigned int *timeout)
7258{
7259 const char *error;
7260
7261 error = parse_time_err(args[1], timeout, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02007262 if (error == PARSE_TIME_OVER) {
7263 memprintf(err, "timer overflow in argument <%s> to <%s> (maximum value is 2147483647 ms or ~24.8 days)",
7264 args[1], args[0]);
7265 return -1;
7266 }
7267 else if (error == PARSE_TIME_UNDER) {
7268 memprintf(err, "timer underflow in argument <%s> to <%s> (minimum non-null value is 1 ms)",
7269 args[1], args[0]);
7270 return -1;
7271 }
7272 else if (error) {
Thierry FOURNIERbd413492015-03-03 16:52:26 +01007273 memprintf(err, "%s: invalid timeout", args[0]);
7274 return -1;
7275 }
7276 return 0;
7277}
7278
7279static int hlua_session_timeout(char **args, int section_type, struct proxy *curpx,
7280 struct proxy *defpx, const char *file, int line,
7281 char **err)
7282{
7283 return hlua_read_timeout(args, section_type, curpx, defpx,
7284 file, line, err, &hlua_timeout_session);
7285}
7286
7287static int hlua_task_timeout(char **args, int section_type, struct proxy *curpx,
7288 struct proxy *defpx, const char *file, int line,
7289 char **err)
7290{
7291 return hlua_read_timeout(args, section_type, curpx, defpx,
7292 file, line, err, &hlua_timeout_task);
7293}
7294
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007295static int hlua_applet_timeout(char **args, int section_type, struct proxy *curpx,
7296 struct proxy *defpx, const char *file, int line,
7297 char **err)
7298{
7299 return hlua_read_timeout(args, section_type, curpx, defpx,
7300 file, line, err, &hlua_timeout_applet);
7301}
7302
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01007303static int hlua_forced_yield(char **args, int section_type, struct proxy *curpx,
7304 struct proxy *defpx, const char *file, int line,
7305 char **err)
7306{
7307 char *error;
7308
7309 hlua_nb_instruction = strtoll(args[1], &error, 10);
7310 if (*error != '\0') {
7311 memprintf(err, "%s: invalid number", args[0]);
7312 return -1;
7313 }
7314 return 0;
7315}
7316
Willy Tarreau32f61e22015-03-18 17:54:59 +01007317static int hlua_parse_maxmem(char **args, int section_type, struct proxy *curpx,
7318 struct proxy *defpx, const char *file, int line,
7319 char **err)
7320{
7321 char *error;
7322
7323 if (*(args[1]) == 0) {
7324 memprintf(err, "'%s' expects an integer argument (Lua memory size in MB).\n", args[0]);
7325 return -1;
7326 }
7327 hlua_global_allocator.limit = strtoll(args[1], &error, 10) * 1024L * 1024L;
7328 if (*error != '\0') {
7329 memprintf(err, "%s: invalid number %s (error at '%c')", args[0], args[1], *error);
7330 return -1;
7331 }
7332 return 0;
7333}
7334
7335
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01007336/* This function is called by the main configuration key "lua-load". It loads and
7337 * execute an lua file during the parsing of the HAProxy configuration file. It is
7338 * the main lua entry point.
7339 *
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08007340 * This function runs with the HAProxy keywords API. It returns -1 if an error
7341 * occurs, otherwise it returns 0.
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01007342 *
7343 * In some error case, LUA set an error message in top of the stack. This function
7344 * returns this error message in the HAProxy logs and pop it from the stack.
Thierry FOURNIERbabae282015-09-17 11:36:37 +02007345 *
7346 * This function can fail with an abort() due to an Lua critical error.
7347 * We are in the configuration parsing process of HAProxy, this abort() is
7348 * tolerated.
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01007349 */
7350static int hlua_load(char **args, int section_type, struct proxy *curpx,
7351 struct proxy *defpx, const char *file, int line,
7352 char **err)
7353{
7354 int error;
7355
7356 /* Just load and compile the file. */
7357 error = luaL_loadfile(gL.T, args[1]);
7358 if (error) {
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01007359 memprintf(err, "error in Lua file '%s': %s", args[1], lua_tostring(gL.T, -1));
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01007360 lua_pop(gL.T, 1);
7361 return -1;
7362 }
7363
7364 /* If no syntax error where detected, execute the code. */
7365 error = lua_pcall(gL.T, 0, LUA_MULTRET, 0);
7366 switch (error) {
7367 case LUA_OK:
7368 break;
7369 case LUA_ERRRUN:
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01007370 memprintf(err, "Lua runtime error: %s\n", lua_tostring(gL.T, -1));
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01007371 lua_pop(gL.T, 1);
7372 return -1;
7373 case LUA_ERRMEM:
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01007374 memprintf(err, "Lua out of memory error.n");
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01007375 return -1;
7376 case LUA_ERRERR:
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01007377 memprintf(err, "Lua message handler error: %s\n", lua_tostring(gL.T, -1));
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01007378 lua_pop(gL.T, 1);
7379 return -1;
7380 case LUA_ERRGCMM:
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01007381 memprintf(err, "Lua garbage collector error: %s\n", lua_tostring(gL.T, -1));
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01007382 lua_pop(gL.T, 1);
7383 return -1;
7384 default:
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01007385 memprintf(err, "Lua unknonwn error: %s\n", lua_tostring(gL.T, -1));
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01007386 lua_pop(gL.T, 1);
7387 return -1;
7388 }
7389
7390 return 0;
7391}
7392
7393/* configuration keywords declaration */
7394static struct cfg_kw_list cfg_kws = {{ },{
Thierry FOURNIERbd413492015-03-03 16:52:26 +01007395 { CFG_GLOBAL, "lua-load", hlua_load },
7396 { CFG_GLOBAL, "tune.lua.session-timeout", hlua_session_timeout },
7397 { CFG_GLOBAL, "tune.lua.task-timeout", hlua_task_timeout },
Thierry FOURNIER56da1012015-10-01 08:42:31 +02007398 { CFG_GLOBAL, "tune.lua.service-timeout", hlua_applet_timeout },
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01007399 { CFG_GLOBAL, "tune.lua.forced-yield", hlua_forced_yield },
Willy Tarreau32f61e22015-03-18 17:54:59 +01007400 { CFG_GLOBAL, "tune.lua.maxmem", hlua_parse_maxmem },
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01007401 { 0, NULL, NULL },
7402}};
7403
Willy Tarreau0108d902018-11-25 19:14:37 +01007404INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
7405
Christopher Fauletafd8f102018-11-08 11:34:21 +01007406
Thierry FOURNIERbabae282015-09-17 11:36:37 +02007407/* This function can fail with an abort() due to an Lua critical error.
7408 * We are in the initialisation process of HAProxy, this abort() is
7409 * tolerated.
7410 */
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01007411int hlua_post_init()
7412{
7413 struct hlua_init_function *init;
7414 const char *msg;
7415 enum hlua_exec ret;
Thierry Fournierfd107a22016-02-19 19:57:23 +01007416 const char *error;
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01007417
Thierry Fournier3d4a6752016-02-19 20:53:30 +01007418 /* Call post initialisation function in safe environement. */
7419 if (!SET_SAFE_LJMP(gL.T)) {
7420 if (lua_type(gL.T, -1) == LUA_TSTRING)
7421 error = lua_tostring(gL.T, -1);
7422 else
7423 error = "critical error";
7424 fprintf(stderr, "Lua post-init: %s.\n", error);
7425 exit(1);
7426 }
Frédéric Lécaille54f2bcf2018-08-29 13:46:24 +02007427
7428#if USE_OPENSSL
7429 /* Initialize SSL server. */
7430 if (socket_ssl.xprt->prepare_srv) {
7431 int saved_used_backed = global.ssl_used_backend;
7432 // don't affect maxconn automatic computation
7433 socket_ssl.xprt->prepare_srv(&socket_ssl);
7434 global.ssl_used_backend = saved_used_backed;
7435 }
7436#endif
7437
Thierry Fournier3d4a6752016-02-19 20:53:30 +01007438 hlua_fcn_post_init(gL.T);
7439 RESET_SAFE_LJMP(gL.T);
7440
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01007441 list_for_each_entry(init, &hlua_init_functions, l) {
7442 lua_rawgeti(gL.T, LUA_REGISTRYINDEX, init->function_ref);
7443 ret = hlua_ctx_resume(&gL, 0);
7444 switch (ret) {
7445 case HLUA_E_OK:
7446 lua_pop(gL.T, -1);
7447 return 1;
7448 case HLUA_E_AGAIN:
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01007449 ha_alert("Lua init: yield not allowed.\n");
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01007450 return 0;
7451 case HLUA_E_ERRMSG:
7452 msg = lua_tostring(gL.T, -1);
Christopher Faulet767a84b2017-11-24 16:50:31 +01007453 ha_alert("lua init: %s.\n", msg);
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01007454 return 0;
7455 case HLUA_E_ERR:
7456 default:
Thierry FOURNIER2986c0d2018-02-25 14:32:36 +01007457 ha_alert("Lua init: unknown runtime error.\n");
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01007458 return 0;
7459 }
7460 }
7461 return 1;
7462}
7463
Willy Tarreau32f61e22015-03-18 17:54:59 +01007464/* The memory allocator used by the Lua stack. <ud> is a pointer to the
7465 * allocator's context. <ptr> is the pointer to alloc/free/realloc. <osize>
7466 * is the previously allocated size or the kind of object in case of a new
7467 * allocation. <nsize> is the requested new size.
7468 */
7469static void *hlua_alloc(void *ud, void *ptr, size_t osize, size_t nsize)
7470{
7471 struct hlua_mem_allocator *zone = ud;
7472
7473 if (nsize == 0) {
7474 /* it's a free */
7475 if (ptr)
7476 zone->allocated -= osize;
7477 free(ptr);
7478 return NULL;
7479 }
7480
7481 if (!ptr) {
7482 /* it's a new allocation */
7483 if (zone->limit && zone->allocated + nsize > zone->limit)
7484 return NULL;
7485
7486 ptr = malloc(nsize);
7487 if (ptr)
7488 zone->allocated += nsize;
7489 return ptr;
7490 }
7491
7492 /* it's a realloc */
7493 if (zone->limit && zone->allocated + nsize - osize > zone->limit)
7494 return NULL;
7495
7496 ptr = realloc(ptr, nsize);
7497 if (ptr)
7498 zone->allocated += nsize - osize;
7499 return ptr;
7500}
7501
Thierry FOURNIERbabae282015-09-17 11:36:37 +02007502/* Ithis function can fail with an abort() due to an Lua critical error.
7503 * We are in the initialisation process of HAProxy, this abort() is
7504 * tolerated.
7505 */
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01007506void hlua_init(void)
7507{
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +01007508 int i;
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +01007509 int idx;
7510 struct sample_fetch *sf;
Thierry FOURNIER594afe72015-03-10 23:58:30 +01007511 struct sample_conv *sc;
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +01007512 char *p;
Thierry Fournierfd107a22016-02-19 19:57:23 +01007513 const char *error_msg;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01007514#ifdef USE_OPENSSL
Willy Tarreau80f5fae2015-02-27 16:38:20 +01007515 struct srv_kw *kw;
7516 int tmp_error;
7517 char *error;
Thierry FOURNIER36d13742015-03-17 16:48:53 +01007518 char *args[] = { /* SSL client configuration. */
7519 "ssl",
7520 "verify",
7521 "none",
Thierry FOURNIER36d13742015-03-17 16:48:53 +01007522 NULL
7523 };
Willy Tarreau80f5fae2015-02-27 16:38:20 +01007524#endif
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +01007525
Thierry FOURNIER380d0932015-01-23 14:27:52 +01007526 /* Init main lua stack. */
7527 gL.Mref = LUA_REFNIL;
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01007528 gL.flags = 0;
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +01007529 LIST_INIT(&gL.com);
Willy Tarreau42ef75f2017-04-12 21:40:29 +02007530 gL.T = lua_newstate(hlua_alloc, &hlua_global_allocator);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01007531 hlua_sethlua(&gL);
7532 gL.Tref = LUA_REFNIL;
7533 gL.task = NULL;
7534
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08007535 /* From this point, until the end of the initialisation function,
Thierry FOURNIERbabae282015-09-17 11:36:37 +02007536 * the Lua function can fail with an abort. We are in the initialisation
7537 * process of HAProxy, this abort() is tolerated.
7538 */
7539
Thierry FOURNIER380d0932015-01-23 14:27:52 +01007540 /* Initialise lua. */
7541 luaL_openlibs(gL.T);
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +01007542
Thierry Fournier75933d42016-01-21 09:30:18 +01007543 /* Set safe environment for the initialisation. */
7544 if (!SET_SAFE_LJMP(gL.T)) {
Thierry Fournierfd107a22016-02-19 19:57:23 +01007545 if (lua_type(gL.T, -1) == LUA_TSTRING)
7546 error_msg = lua_tostring(gL.T, -1);
7547 else
7548 error_msg = "critical error";
7549 fprintf(stderr, "Lua init: %s.\n", error_msg);
Thierry Fournier75933d42016-01-21 09:30:18 +01007550 exit(1);
7551 }
7552
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +01007553 /*
7554 *
7555 * Create "core" object.
7556 *
7557 */
7558
Thierry FOURNIERa2d8c652015-03-11 17:29:39 +01007559 /* This table entry is the object "core" base. */
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +01007560 lua_newtable(gL.T);
7561
7562 /* Push the loglevel constants. */
Willy Tarreau80f5fae2015-02-27 16:38:20 +01007563 for (i = 0; i < NB_LOG_LEVELS; i++)
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +01007564 hlua_class_const_int(gL.T, log_levels[i], i);
7565
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01007566 /* Register special functions. */
7567 hlua_class_function(gL.T, "register_init", hlua_register_init);
Thierry FOURNIER24f33532015-01-23 12:13:00 +01007568 hlua_class_function(gL.T, "register_task", hlua_register_task);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01007569 hlua_class_function(gL.T, "register_fetches", hlua_register_fetches);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01007570 hlua_class_function(gL.T, "register_converters", hlua_register_converters);
Thierry FOURNIER8255a752015-09-23 21:03:35 +02007571 hlua_class_function(gL.T, "register_action", hlua_register_action);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007572 hlua_class_function(gL.T, "register_service", hlua_register_service);
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +01007573 hlua_class_function(gL.T, "register_cli", hlua_register_cli);
Thierry FOURNIER13416fe2015-02-17 15:01:59 +01007574 hlua_class_function(gL.T, "yield", hlua_yield);
Willy Tarreau59551662015-03-10 14:23:13 +01007575 hlua_class_function(gL.T, "set_nice", hlua_set_nice);
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01007576 hlua_class_function(gL.T, "sleep", hlua_sleep);
7577 hlua_class_function(gL.T, "msleep", hlua_msleep);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01007578 hlua_class_function(gL.T, "add_acl", hlua_add_acl);
7579 hlua_class_function(gL.T, "del_acl", hlua_del_acl);
7580 hlua_class_function(gL.T, "set_map", hlua_set_map);
7581 hlua_class_function(gL.T, "del_map", hlua_del_map);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01007582 hlua_class_function(gL.T, "tcp", hlua_socket_new);
Thierry FOURNIERc798b5d2015-03-17 01:09:57 +01007583 hlua_class_function(gL.T, "log", hlua_log);
7584 hlua_class_function(gL.T, "Debug", hlua_log_debug);
7585 hlua_class_function(gL.T, "Info", hlua_log_info);
7586 hlua_class_function(gL.T, "Warning", hlua_log_warning);
7587 hlua_class_function(gL.T, "Alert", hlua_log_alert);
Thierry FOURNIER0a99b892015-08-26 00:14:17 +02007588 hlua_class_function(gL.T, "done", hlua_done);
Thierry Fournierfb0b5462016-01-21 09:28:58 +01007589 hlua_fcn_reg_core_fcn(gL.T);
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01007590
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +01007591 lua_setglobal(gL.T, "core");
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01007592
7593 /*
7594 *
Thierry FOURNIER3def3932015-04-07 11:27:54 +02007595 * Register class Map
7596 *
7597 */
7598
7599 /* This table entry is the object "Map" base. */
7600 lua_newtable(gL.T);
7601
7602 /* register pattern types. */
7603 for (i=0; i<PAT_MATCH_NUM; i++)
7604 hlua_class_const_int(gL.T, pat_match_names[i], i);
Thierry FOURNIER4dc71972017-01-28 08:33:08 +01007605 for (i=0; i<PAT_MATCH_NUM; i++) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02007606 snprintf(trash.area, trash.size, "_%s", pat_match_names[i]);
7607 hlua_class_const_int(gL.T, trash.area, i);
Thierry FOURNIER4dc71972017-01-28 08:33:08 +01007608 }
Thierry FOURNIER3def3932015-04-07 11:27:54 +02007609
7610 /* register constructor. */
7611 hlua_class_function(gL.T, "new", hlua_map_new);
7612
7613 /* Create and fill the metatable. */
7614 lua_newtable(gL.T);
7615
7616 /* Create and fille the __index entry. */
7617 lua_pushstring(gL.T, "__index");
7618 lua_newtable(gL.T);
7619
7620 /* Register . */
7621 hlua_class_function(gL.T, "lookup", hlua_map_lookup);
7622 hlua_class_function(gL.T, "slookup", hlua_map_slookup);
7623
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02007624 lua_rawset(gL.T, -3);
Thierry FOURNIER3def3932015-04-07 11:27:54 +02007625
Thierry Fournier45e78d72016-02-19 18:34:46 +01007626 /* Register previous table in the registry with reference and named entry.
7627 * The function hlua_register_metatable() pops the stack, so we
7628 * previously create a copy of the table.
7629 */
Thierry FOURNIER3def3932015-04-07 11:27:54 +02007630 lua_pushvalue(gL.T, -1); /* Copy the -1 entry and push it on the stack. */
Thierry Fournier45e78d72016-02-19 18:34:46 +01007631 class_map_ref = hlua_register_metatable(gL.T, CLASS_MAP);
Thierry FOURNIER3def3932015-04-07 11:27:54 +02007632
7633 /* Assign the metatable to the mai Map object. */
7634 lua_setmetatable(gL.T, -2);
7635
7636 /* Set a name to the table. */
7637 lua_setglobal(gL.T, "Map");
7638
7639 /*
7640 *
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01007641 * Register class Channel
7642 *
7643 */
7644
7645 /* Create and fill the metatable. */
7646 lua_newtable(gL.T);
7647
7648 /* Create and fille the __index entry. */
7649 lua_pushstring(gL.T, "__index");
7650 lua_newtable(gL.T);
7651
7652 /* Register . */
7653 hlua_class_function(gL.T, "get", hlua_channel_get);
7654 hlua_class_function(gL.T, "dup", hlua_channel_dup);
7655 hlua_class_function(gL.T, "getline", hlua_channel_getline);
7656 hlua_class_function(gL.T, "set", hlua_channel_set);
7657 hlua_class_function(gL.T, "append", hlua_channel_append);
7658 hlua_class_function(gL.T, "send", hlua_channel_send);
7659 hlua_class_function(gL.T, "forward", hlua_channel_forward);
7660 hlua_class_function(gL.T, "get_in_len", hlua_channel_get_in_len);
7661 hlua_class_function(gL.T, "get_out_len", hlua_channel_get_out_len);
Thierry FOURNIER / OZON.IO65192f32016-11-07 15:28:40 +01007662 hlua_class_function(gL.T, "is_full", hlua_channel_is_full);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01007663
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02007664 lua_rawset(gL.T, -3);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01007665
7666 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier45e78d72016-02-19 18:34:46 +01007667 class_channel_ref = hlua_register_metatable(gL.T, CLASS_CHANNEL);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01007668
7669 /*
7670 *
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01007671 * Register class Fetches
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01007672 *
7673 */
7674
7675 /* Create and fill the metatable. */
7676 lua_newtable(gL.T);
7677
7678 /* Create and fille the __index entry. */
7679 lua_pushstring(gL.T, "__index");
7680 lua_newtable(gL.T);
7681
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +01007682 /* Browse existing fetches and create the associated
7683 * object method.
7684 */
7685 sf = NULL;
7686 while ((sf = sample_fetch_getnext(sf, &idx)) != NULL) {
7687
7688 /* Dont register the keywork if the arguments check function are
7689 * not safe during the runtime.
7690 */
7691 if ((sf->val_args != NULL) &&
7692 (sf->val_args != val_payload_lv) &&
7693 (sf->val_args != val_hdr))
7694 continue;
7695
7696 /* gL.Tua doesn't support '.' and '-' in the function names, replace it
7697 * by an underscore.
7698 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02007699 strncpy(trash.area, sf->kw, trash.size);
7700 trash.area[trash.size - 1] = '\0';
7701 for (p = trash.area; *p; p++)
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +01007702 if (*p == '.' || *p == '-' || *p == '+')
7703 *p = '_';
7704
7705 /* Register the function. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02007706 lua_pushstring(gL.T, trash.area);
Willy Tarreau2ec22742015-03-10 14:27:20 +01007707 lua_pushlightuserdata(gL.T, sf);
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +01007708 lua_pushcclosure(gL.T, hlua_run_sample_fetch, 1);
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02007709 lua_rawset(gL.T, -3);
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +01007710 }
7711
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02007712 lua_rawset(gL.T, -3);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01007713
7714 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier45e78d72016-02-19 18:34:46 +01007715 class_fetches_ref = hlua_register_metatable(gL.T, CLASS_FETCHES);
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01007716
7717 /*
7718 *
Thierry FOURNIER594afe72015-03-10 23:58:30 +01007719 * Register class Converters
7720 *
7721 */
7722
7723 /* Create and fill the metatable. */
7724 lua_newtable(gL.T);
7725
7726 /* Create and fill the __index entry. */
7727 lua_pushstring(gL.T, "__index");
7728 lua_newtable(gL.T);
7729
7730 /* Browse existing converters and create the associated
7731 * object method.
7732 */
7733 sc = NULL;
7734 while ((sc = sample_conv_getnext(sc, &idx)) != NULL) {
7735 /* Dont register the keywork if the arguments check function are
7736 * not safe during the runtime.
7737 */
7738 if (sc->val_args != NULL)
7739 continue;
7740
7741 /* gL.Tua doesn't support '.' and '-' in the function names, replace it
7742 * by an underscore.
7743 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02007744 strncpy(trash.area, sc->kw, trash.size);
7745 trash.area[trash.size - 1] = '\0';
7746 for (p = trash.area; *p; p++)
Thierry FOURNIER594afe72015-03-10 23:58:30 +01007747 if (*p == '.' || *p == '-' || *p == '+')
7748 *p = '_';
7749
7750 /* Register the function. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02007751 lua_pushstring(gL.T, trash.area);
Thierry FOURNIER594afe72015-03-10 23:58:30 +01007752 lua_pushlightuserdata(gL.T, sc);
7753 lua_pushcclosure(gL.T, hlua_run_sample_conv, 1);
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02007754 lua_rawset(gL.T, -3);
Thierry FOURNIER594afe72015-03-10 23:58:30 +01007755 }
7756
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02007757 lua_rawset(gL.T, -3);
Thierry FOURNIER594afe72015-03-10 23:58:30 +01007758
7759 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier45e78d72016-02-19 18:34:46 +01007760 class_converters_ref = hlua_register_metatable(gL.T, CLASS_CONVERTERS);
Thierry FOURNIER594afe72015-03-10 23:58:30 +01007761
7762 /*
7763 *
Thierry FOURNIER08504f42015-03-16 14:17:08 +01007764 * Register class HTTP
7765 *
7766 */
7767
7768 /* Create and fill the metatable. */
7769 lua_newtable(gL.T);
7770
7771 /* Create and fille the __index entry. */
7772 lua_pushstring(gL.T, "__index");
7773 lua_newtable(gL.T);
7774
7775 /* Register Lua functions. */
7776 hlua_class_function(gL.T, "req_get_headers",hlua_http_req_get_headers);
7777 hlua_class_function(gL.T, "req_del_header", hlua_http_req_del_hdr);
7778 hlua_class_function(gL.T, "req_rep_header", hlua_http_req_rep_hdr);
7779 hlua_class_function(gL.T, "req_rep_value", hlua_http_req_rep_val);
7780 hlua_class_function(gL.T, "req_add_header", hlua_http_req_add_hdr);
7781 hlua_class_function(gL.T, "req_set_header", hlua_http_req_set_hdr);
7782 hlua_class_function(gL.T, "req_set_method", hlua_http_req_set_meth);
7783 hlua_class_function(gL.T, "req_set_path", hlua_http_req_set_path);
7784 hlua_class_function(gL.T, "req_set_query", hlua_http_req_set_query);
7785 hlua_class_function(gL.T, "req_set_uri", hlua_http_req_set_uri);
7786
7787 hlua_class_function(gL.T, "res_get_headers",hlua_http_res_get_headers);
7788 hlua_class_function(gL.T, "res_del_header", hlua_http_res_del_hdr);
7789 hlua_class_function(gL.T, "res_rep_header", hlua_http_res_rep_hdr);
7790 hlua_class_function(gL.T, "res_rep_value", hlua_http_res_rep_val);
7791 hlua_class_function(gL.T, "res_add_header", hlua_http_res_add_hdr);
7792 hlua_class_function(gL.T, "res_set_header", hlua_http_res_set_hdr);
Thierry FOURNIER35d70ef2015-08-26 16:21:56 +02007793 hlua_class_function(gL.T, "res_set_status", hlua_http_res_set_status);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01007794
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02007795 lua_rawset(gL.T, -3);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01007796
7797 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier45e78d72016-02-19 18:34:46 +01007798 class_http_ref = hlua_register_metatable(gL.T, CLASS_HTTP);
Thierry FOURNIER08504f42015-03-16 14:17:08 +01007799
7800 /*
7801 *
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007802 * Register class AppletTCP
7803 *
7804 */
7805
7806 /* Create and fill the metatable. */
7807 lua_newtable(gL.T);
7808
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007809 /* Create and fille the __index entry. */
7810 lua_pushstring(gL.T, "__index");
7811 lua_newtable(gL.T);
7812
7813 /* Register Lua functions. */
Thierry FOURNIER / OZON.IO3e1d7912016-12-12 12:29:34 +01007814 hlua_class_function(gL.T, "getline", hlua_applet_tcp_getline);
7815 hlua_class_function(gL.T, "receive", hlua_applet_tcp_recv);
7816 hlua_class_function(gL.T, "send", hlua_applet_tcp_send);
7817 hlua_class_function(gL.T, "set_priv", hlua_applet_tcp_set_priv);
7818 hlua_class_function(gL.T, "get_priv", hlua_applet_tcp_get_priv);
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01007819 hlua_class_function(gL.T, "set_var", hlua_applet_tcp_set_var);
7820 hlua_class_function(gL.T, "unset_var", hlua_applet_tcp_unset_var);
7821 hlua_class_function(gL.T, "get_var", hlua_applet_tcp_get_var);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007822
7823 lua_settable(gL.T, -3);
7824
7825 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier45e78d72016-02-19 18:34:46 +01007826 class_applet_tcp_ref = hlua_register_metatable(gL.T, CLASS_APPLET_TCP);
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +02007827
7828 /*
7829 *
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007830 * Register class AppletHTTP
7831 *
7832 */
7833
7834 /* Create and fill the metatable. */
7835 lua_newtable(gL.T);
7836
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007837 /* Create and fille the __index entry. */
7838 lua_pushstring(gL.T, "__index");
7839 lua_newtable(gL.T);
7840
7841 /* Register Lua functions. */
Thierry FOURNIER8db004c2015-12-25 01:33:18 +01007842 hlua_class_function(gL.T, "set_priv", hlua_applet_http_set_priv);
7843 hlua_class_function(gL.T, "get_priv", hlua_applet_http_get_priv);
Thierry FOURNIER / OZON.IO4394a2c2016-12-12 12:31:54 +01007844 hlua_class_function(gL.T, "set_var", hlua_applet_http_set_var);
7845 hlua_class_function(gL.T, "unset_var", hlua_applet_http_unset_var);
7846 hlua_class_function(gL.T, "get_var", hlua_applet_http_get_var);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007847 hlua_class_function(gL.T, "getline", hlua_applet_http_getline);
7848 hlua_class_function(gL.T, "receive", hlua_applet_http_recv);
7849 hlua_class_function(gL.T, "send", hlua_applet_http_send);
7850 hlua_class_function(gL.T, "add_header", hlua_applet_http_addheader);
7851 hlua_class_function(gL.T, "set_status", hlua_applet_http_status);
7852 hlua_class_function(gL.T, "start_response", hlua_applet_http_start_response);
7853
7854 lua_settable(gL.T, -3);
7855
7856 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier45e78d72016-02-19 18:34:46 +01007857 class_applet_http_ref = hlua_register_metatable(gL.T, CLASS_APPLET_HTTP);
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +02007858
7859 /*
7860 *
Thierry FOURNIERbb53c7b2015-03-11 18:28:02 +01007861 * Register class TXN
7862 *
7863 */
7864
7865 /* Create and fill the metatable. */
7866 lua_newtable(gL.T);
7867
7868 /* Create and fille the __index entry. */
7869 lua_pushstring(gL.T, "__index");
7870 lua_newtable(gL.T);
7871
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01007872 /* Register Lua functions. */
Patrick Hemmer268a7072018-05-11 12:52:31 -04007873 hlua_class_function(gL.T, "set_priv", hlua_set_priv);
7874 hlua_class_function(gL.T, "get_priv", hlua_get_priv);
7875 hlua_class_function(gL.T, "set_var", hlua_set_var);
7876 hlua_class_function(gL.T, "unset_var", hlua_unset_var);
7877 hlua_class_function(gL.T, "get_var", hlua_get_var);
7878 hlua_class_function(gL.T, "done", hlua_txn_done);
7879 hlua_class_function(gL.T, "set_loglevel", hlua_txn_set_loglevel);
7880 hlua_class_function(gL.T, "set_tos", hlua_txn_set_tos);
7881 hlua_class_function(gL.T, "set_mark", hlua_txn_set_mark);
7882 hlua_class_function(gL.T, "set_priority_class", hlua_txn_set_priority_class);
7883 hlua_class_function(gL.T, "set_priority_offset", hlua_txn_set_priority_offset);
7884 hlua_class_function(gL.T, "deflog", hlua_txn_deflog);
7885 hlua_class_function(gL.T, "log", hlua_txn_log);
7886 hlua_class_function(gL.T, "Debug", hlua_txn_log_debug);
7887 hlua_class_function(gL.T, "Info", hlua_txn_log_info);
7888 hlua_class_function(gL.T, "Warning", hlua_txn_log_warning);
7889 hlua_class_function(gL.T, "Alert", hlua_txn_log_alert);
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01007890
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02007891 lua_rawset(gL.T, -3);
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01007892
7893 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier45e78d72016-02-19 18:34:46 +01007894 class_txn_ref = hlua_register_metatable(gL.T, CLASS_TXN);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01007895
7896 /*
7897 *
7898 * Register class Socket
7899 *
7900 */
7901
7902 /* Create and fill the metatable. */
7903 lua_newtable(gL.T);
7904
7905 /* Create and fille the __index entry. */
7906 lua_pushstring(gL.T, "__index");
7907 lua_newtable(gL.T);
7908
Baptiste Assmann84bb4932015-03-02 21:40:06 +01007909#ifdef USE_OPENSSL
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01007910 hlua_class_function(gL.T, "connect_ssl", hlua_socket_connect_ssl);
Baptiste Assmann84bb4932015-03-02 21:40:06 +01007911#endif
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01007912 hlua_class_function(gL.T, "connect", hlua_socket_connect);
7913 hlua_class_function(gL.T, "send", hlua_socket_send);
7914 hlua_class_function(gL.T, "receive", hlua_socket_receive);
7915 hlua_class_function(gL.T, "close", hlua_socket_close);
7916 hlua_class_function(gL.T, "getpeername", hlua_socket_getpeername);
7917 hlua_class_function(gL.T, "getsockname", hlua_socket_getsockname);
7918 hlua_class_function(gL.T, "setoption", hlua_socket_setoption);
7919 hlua_class_function(gL.T, "settimeout", hlua_socket_settimeout);
7920
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02007921 lua_rawset(gL.T, -3); /* Push the last 2 entries in the table at index -3 */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01007922
7923 /* Register the garbage collector entry. */
7924 lua_pushstring(gL.T, "__gc");
7925 lua_pushcclosure(gL.T, hlua_socket_gc, 0);
Thierry FOURNIER84e73c82015-09-25 22:13:32 +02007926 lua_rawset(gL.T, -3); /* Push the last 2 entries in the table at index -3 */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01007927
7928 /* Register previous table in the registry with reference and named entry. */
Thierry Fournier45e78d72016-02-19 18:34:46 +01007929 class_socket_ref = hlua_register_metatable(gL.T, CLASS_SOCKET);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01007930
7931 /* Proxy and server configuration initialisation. */
7932 memset(&socket_proxy, 0, sizeof(socket_proxy));
7933 init_new_proxy(&socket_proxy);
7934 socket_proxy.parent = NULL;
7935 socket_proxy.last_change = now.tv_sec;
7936 socket_proxy.id = "LUA-SOCKET";
7937 socket_proxy.cap = PR_CAP_FE | PR_CAP_BE;
7938 socket_proxy.maxconn = 0;
7939 socket_proxy.accept = NULL;
7940 socket_proxy.options2 |= PR_O2_INDEPSTR;
7941 socket_proxy.srv = NULL;
7942 socket_proxy.conn_retries = 0;
7943 socket_proxy.timeout.connect = 5000; /* By default the timeout connection is 5s. */
7944
7945 /* Init TCP server: unchanged parameters */
7946 memset(&socket_tcp, 0, sizeof(socket_tcp));
7947 socket_tcp.next = NULL;
7948 socket_tcp.proxy = &socket_proxy;
7949 socket_tcp.obj_type = OBJ_TYPE_SERVER;
7950 LIST_INIT(&socket_tcp.actconns);
Patrick Hemmer0355dab2018-05-11 12:52:31 -04007951 socket_tcp.pendconns = EB_ROOT;
Christopher Faulet40a007c2017-07-03 15:41:01 +02007952 socket_tcp.priv_conns = NULL;
7953 socket_tcp.idle_conns = NULL;
7954 socket_tcp.safe_conns = NULL;
Emeric Brun52a91d32017-08-31 14:41:55 +02007955 socket_tcp.next_state = SRV_ST_RUNNING; /* early server setup */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01007956 socket_tcp.last_change = 0;
7957 socket_tcp.id = "LUA-TCP-CONN";
7958 socket_tcp.check.state &= ~CHK_ST_ENABLED; /* Disable health checks. */
7959 socket_tcp.agent.state &= ~CHK_ST_ENABLED; /* Disable health checks. */
7960 socket_tcp.pp_opts = 0; /* Remove proxy protocol. */
7961
7962 /* XXX: Copy default parameter from default server,
7963 * but the default server is not initialized.
7964 */
7965 socket_tcp.maxqueue = socket_proxy.defsrv.maxqueue;
7966 socket_tcp.minconn = socket_proxy.defsrv.minconn;
7967 socket_tcp.maxconn = socket_proxy.defsrv.maxconn;
7968 socket_tcp.slowstart = socket_proxy.defsrv.slowstart;
7969 socket_tcp.onerror = socket_proxy.defsrv.onerror;
7970 socket_tcp.onmarkeddown = socket_proxy.defsrv.onmarkeddown;
7971 socket_tcp.onmarkedup = socket_proxy.defsrv.onmarkedup;
7972 socket_tcp.consecutive_errors_limit = socket_proxy.defsrv.consecutive_errors_limit;
7973 socket_tcp.uweight = socket_proxy.defsrv.iweight;
7974 socket_tcp.iweight = socket_proxy.defsrv.iweight;
7975
7976 socket_tcp.check.status = HCHK_STATUS_INI;
7977 socket_tcp.check.rise = socket_proxy.defsrv.check.rise;
7978 socket_tcp.check.fall = socket_proxy.defsrv.check.fall;
7979 socket_tcp.check.health = socket_tcp.check.rise; /* socket, but will fall down at first failure */
7980 socket_tcp.check.server = &socket_tcp;
7981
7982 socket_tcp.agent.status = HCHK_STATUS_INI;
7983 socket_tcp.agent.rise = socket_proxy.defsrv.agent.rise;
7984 socket_tcp.agent.fall = socket_proxy.defsrv.agent.fall;
7985 socket_tcp.agent.health = socket_tcp.agent.rise; /* socket, but will fall down at first failure */
7986 socket_tcp.agent.server = &socket_tcp;
7987
Willy Tarreaua261e9b2016-12-22 20:44:00 +01007988 socket_tcp.xprt = xprt_get(XPRT_RAW);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01007989
7990#ifdef USE_OPENSSL
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01007991 /* Init TCP server: unchanged parameters */
7992 memset(&socket_ssl, 0, sizeof(socket_ssl));
7993 socket_ssl.next = NULL;
7994 socket_ssl.proxy = &socket_proxy;
7995 socket_ssl.obj_type = OBJ_TYPE_SERVER;
7996 LIST_INIT(&socket_ssl.actconns);
Patrick Hemmer0355dab2018-05-11 12:52:31 -04007997 socket_ssl.pendconns = EB_ROOT;
Willy Tarreaub784b352019-02-07 14:48:24 +01007998 socket_ssl.priv_conns = NULL;
7999 socket_ssl.idle_conns = NULL;
8000 socket_ssl.safe_conns = NULL;
Emeric Brun52a91d32017-08-31 14:41:55 +02008001 socket_ssl.next_state = SRV_ST_RUNNING; /* early server setup */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01008002 socket_ssl.last_change = 0;
8003 socket_ssl.id = "LUA-SSL-CONN";
8004 socket_ssl.check.state &= ~CHK_ST_ENABLED; /* Disable health checks. */
8005 socket_ssl.agent.state &= ~CHK_ST_ENABLED; /* Disable health checks. */
8006 socket_ssl.pp_opts = 0; /* Remove proxy protocol. */
8007
8008 /* XXX: Copy default parameter from default server,
8009 * but the default server is not initialized.
8010 */
8011 socket_ssl.maxqueue = socket_proxy.defsrv.maxqueue;
8012 socket_ssl.minconn = socket_proxy.defsrv.minconn;
8013 socket_ssl.maxconn = socket_proxy.defsrv.maxconn;
8014 socket_ssl.slowstart = socket_proxy.defsrv.slowstart;
8015 socket_ssl.onerror = socket_proxy.defsrv.onerror;
8016 socket_ssl.onmarkeddown = socket_proxy.defsrv.onmarkeddown;
8017 socket_ssl.onmarkedup = socket_proxy.defsrv.onmarkedup;
8018 socket_ssl.consecutive_errors_limit = socket_proxy.defsrv.consecutive_errors_limit;
8019 socket_ssl.uweight = socket_proxy.defsrv.iweight;
8020 socket_ssl.iweight = socket_proxy.defsrv.iweight;
8021
8022 socket_ssl.check.status = HCHK_STATUS_INI;
8023 socket_ssl.check.rise = socket_proxy.defsrv.check.rise;
8024 socket_ssl.check.fall = socket_proxy.defsrv.check.fall;
8025 socket_ssl.check.health = socket_ssl.check.rise; /* socket, but will fall down at first failure */
8026 socket_ssl.check.server = &socket_ssl;
8027
8028 socket_ssl.agent.status = HCHK_STATUS_INI;
8029 socket_ssl.agent.rise = socket_proxy.defsrv.agent.rise;
8030 socket_ssl.agent.fall = socket_proxy.defsrv.agent.fall;
8031 socket_ssl.agent.health = socket_ssl.agent.rise; /* socket, but will fall down at first failure */
8032 socket_ssl.agent.server = &socket_ssl;
8033
Thierry FOURNIER36d13742015-03-17 16:48:53 +01008034 socket_ssl.use_ssl = 1;
Willy Tarreaua261e9b2016-12-22 20:44:00 +01008035 socket_ssl.xprt = xprt_get(XPRT_SSL);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01008036
Thierry FOURNIER36d13742015-03-17 16:48:53 +01008037 for (idx = 0; args[idx] != NULL; idx++) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01008038 if ((kw = srv_find_kw(args[idx])) != NULL) { /* Maybe it's registered server keyword */
8039 /*
8040 *
8041 * If the keyword is not known, we can search in the registered
Joseph Herlantb8f9c5e2018-11-15 10:06:08 -08008042 * server keywords. This is useful to configure special SSL
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01008043 * features like client certificates and ssl_verify.
8044 *
8045 */
8046 tmp_error = kw->parse(args, &idx, &socket_proxy, &socket_ssl, &error);
8047 if (tmp_error != 0) {
8048 fprintf(stderr, "INTERNAL ERROR: %s\n", error);
8049 abort(); /* This must be never arrives because the command line
8050 not editable by the user. */
8051 }
8052 idx += kw->skip;
8053 }
8054 }
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01008055#endif
Thierry Fournier75933d42016-01-21 09:30:18 +01008056
8057 RESET_SAFE_LJMP(gL.T);
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01008058}
Willy Tarreaubb57d942016-12-21 19:04:56 +01008059
Willy Tarreau80713382018-11-26 10:19:54 +01008060static void hlua_register_build_options(void)
8061{
Willy Tarreaubb57d942016-12-21 19:04:56 +01008062 char *ptr = NULL;
Willy Tarreau80713382018-11-26 10:19:54 +01008063
Willy Tarreaubb57d942016-12-21 19:04:56 +01008064 memprintf(&ptr, "Built with Lua version : %s", LUA_RELEASE);
8065 hap_register_build_opts(ptr, 1);
8066}
Willy Tarreau80713382018-11-26 10:19:54 +01008067
8068INITCALL0(STG_REGISTER, hlua_register_build_options);