blob: 73bd94c2ac323e4d808031ce9f2115c0ed3d471b [file] [log] [blame]
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001#include <sys/socket.h>
2
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01003#include <lauxlib.h>
4#include <lua.h>
5#include <lualib.h>
6
Cyril Bontédc0306e2015-03-02 00:08:40 +01007#if !defined(LUA_VERSION_NUM) || LUA_VERSION_NUM < 502
8#error "Requires Lua 5.2 or later."
9#endif
10
Thierry FOURNIER380d0932015-01-23 14:27:52 +010011#include <ebpttree.h>
12
13#include <common/cfgparse.h>
14
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010015#include <types/connection.h>
Thierry FOURNIER380d0932015-01-23 14:27:52 +010016#include <types/hlua.h>
Thierry FOURNIER65f34c62015-02-16 20:11:43 +010017#include <types/proto_tcp.h>
Thierry FOURNIER380d0932015-01-23 14:27:52 +010018#include <types/proxy.h>
19
Thierry FOURNIER55da1652015-01-23 11:36:30 +010020#include <proto/arg.h>
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010021#include <proto/channel.h>
Thierry FOURNIER9a819e72015-02-16 20:22:55 +010022#include <proto/hdr_idx.h>
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +010023#include <proto/hlua.h>
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010024#include <proto/obj_type.h>
Thierry FOURNIER83758bb2015-02-04 13:21:04 +010025#include <proto/pattern.h>
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +010026#include <proto/payload.h>
27#include <proto/proto_http.h>
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +010028#include <proto/proto_tcp.h>
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010029#include <proto/raw_sock.h>
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +010030#include <proto/sample.h>
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010031#include <proto/server.h>
32#include <proto/session.h>
33#include <proto/ssl_sock.h>
34#include <proto/stream_interface.h>
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +010035#include <proto/task.h>
36
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +010037/* Lua uses longjmp to perform yield or throwing errors. This
38 * macro is used only for identifying the function that can
39 * not return because a longjmp is executed.
40 * __LJMP marks a prototype of hlua file that can use longjmp.
41 * WILL_LJMP() marks an lua function that will use longjmp.
42 * MAY_LJMP() marks an lua function that may use longjmp.
43 */
44#define __LJMP
45#define WILL_LJMP(func) func
46#define MAY_LJMP(func) func
47
Thierry FOURNIER380d0932015-01-23 14:27:52 +010048/* The main Lua execution context. */
49struct hlua gL;
50
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +010051/* This is the memory pool containing all the signal structs. These
52 * struct are used to store each requiered signal between two tasks.
53 */
54struct pool_head *pool2_hlua_com;
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +010055struct pool_head *pool2_hlua_sleep;
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +010056
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010057/* Used for Socket connection. */
58static struct proxy socket_proxy;
59static struct server socket_tcp;
60#ifdef USE_OPENSSL
61static struct server socket_ssl;
62#endif
63
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +010064/* List head of the function called at the initialisation time. */
65struct list hlua_init_functions = LIST_HEAD_INIT(hlua_init_functions);
66
Thierry FOURNIER380d0932015-01-23 14:27:52 +010067/* Store the fast lua context for coroutines. This tree uses the
68 * Lua stack pointer value as indexed entry, and store the associated
69 * hlua context.
70 */
71struct eb_root hlua_ctx = EB_ROOT_UNIQUE;
72
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +010073/* The following variables contains the reference of the different
74 * Lua classes. These references are useful for identify metadata
75 * associated with an object.
76 */
77static int class_core_ref;
Thierry FOURNIER65f34c62015-02-16 20:11:43 +010078static int class_txn_ref;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010079static int class_socket_ref;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +010080static int class_channel_ref;
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +010081
Thierry FOURNIERbd413492015-03-03 16:52:26 +010082/* Global Lua execution timeout. By default Lua, execution linked
83 * with session (actions, sample-fetches and converters) have a
84 * short timeout. Lua linked with tasks doesn't have a timeout
85 * because a task may remain alive during all the haproxy execution.
86 */
87static unsigned int hlua_timeout_session = 4000; /* session timeout. */
88static unsigned int hlua_timeout_task = TICK_ETERNITY; /* task timeout. */
89
Thierry FOURNIERee9f8022015-03-03 17:37:37 +010090/* Interrupts the Lua processing each "hlua_nb_instruction" instructions.
91 * it is used for preventing infinite loops.
92 *
93 * I test the scheer with an infinite loop containing one incrementation
94 * and one test. I run this loop between 10 seconds, I raise a ceil of
95 * 710M loops from one interrupt each 9000 instructions, so I fix the value
96 * to one interrupt each 10 000 instructions.
97 *
98 * configured | Number of
99 * instructions | loops executed
100 * between two | in milions
101 * forced yields |
102 * ---------------+---------------
103 * 10 | 160
104 * 500 | 670
105 * 1000 | 680
106 * 5000 | 700
107 * 7000 | 700
108 * 8000 | 700
109 * 9000 | 710 <- ceil
110 * 10000 | 710
111 * 100000 | 710
112 * 1000000 | 710
113 *
114 */
115static unsigned int hlua_nb_instruction = 10000;
116
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100117/* These functions converts types between HAProxy internal args or
118 * sample and LUA types. Another function permits to check if the
119 * LUA stack contains arguments according with an required ARG_T
120 * format.
121 */
122static int hlua_arg2lua(lua_State *L, const struct arg *arg);
123static int hlua_lua2arg(lua_State *L, int ud, struct arg *arg);
124__LJMP static int hlua_lua2arg_check(lua_State *L, int first, struct arg *argp, unsigned int mask);
125static int hlua_smp2lua(lua_State *L, const struct sample *smp);
126static int hlua_lua2smp(lua_State *L, int ud, struct sample *smp);
127
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100128/* Used to check an Lua function type in the stack. It creates and
129 * returns a reference of the function. This function throws an
130 * error if the rgument is not a "function".
131 */
132__LJMP unsigned int hlua_checkfunction(lua_State *L, int argno)
133{
134 if (!lua_isfunction(L, argno)) {
135 const char *msg = lua_pushfstring(L, "function expected, got %s", luaL_typename(L, -1));
136 WILL_LJMP(luaL_argerror(L, argno, msg));
137 }
138 lua_pushvalue(L, argno);
139 return luaL_ref(L, LUA_REGISTRYINDEX);
140}
141
142/* The three following functions are useful for adding entries
143 * in a table. These functions takes a string and respectively an
144 * integer, a string or a function and add it to the table in the
145 * top of the stack.
146 *
147 * These functions throws an error if no more stack size is
148 * available.
149 */
150__LJMP static inline void hlua_class_const_int(lua_State *L, const char *name,
Thierry FOURNIERf90838b2015-03-06 13:48:32 +0100151 int value)
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100152{
153 if (!lua_checkstack(L, 2))
154 WILL_LJMP(luaL_error(L, "full stack"));
155 lua_pushstring(L, name);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +0100156 lua_pushinteger(L, value);
Thierry FOURNIERe8b9a402015-02-25 18:48:12 +0100157 lua_settable(L, -3);
158}
159__LJMP static inline void hlua_class_const_str(lua_State *L, const char *name,
160 const char *value)
161{
162 if (!lua_checkstack(L, 2))
163 WILL_LJMP(luaL_error(L, "full stack"));
164 lua_pushstring(L, name);
165 lua_pushstring(L, value);
166 lua_settable(L, -3);
167}
168__LJMP static inline void hlua_class_function(lua_State *L, const char *name,
169 int (*function)(lua_State *L))
170{
171 if (!lua_checkstack(L, 2))
172 WILL_LJMP(luaL_error(L, "full stack"));
173 lua_pushstring(L, name);
174 lua_pushcclosure(L, function, 0);
175 lua_settable(L, -3);
176}
177
178/* This function check the number of arguments available in the
179 * stack. If the number of arguments available is not the same
180 * then <nb> an error is throwed.
181 */
182__LJMP static inline void check_args(lua_State *L, int nb, char *fcn)
183{
184 if (lua_gettop(L) == nb)
185 return;
186 WILL_LJMP(luaL_error(L, "'%s' needs %d arguments", fcn, nb));
187}
188
189/* Return true if the data in stack[<ud>] is an object of
190 * type <class_ref>.
191 */
192static int hlua_udataistype(lua_State *L, int ud, int class_ref)
193{
194 void *p = lua_touserdata(L, ud);
195 if (!p)
196 return 0;
197
198 if (!lua_getmetatable(L, ud))
199 return 0;
200
201 lua_rawgeti(L, LUA_REGISTRYINDEX, class_ref);
202 if (!lua_rawequal(L, -1, -2)) {
203 lua_pop(L, 2);
204 return 0;
205 }
206
207 lua_pop(L, 2);
208 return 1;
209}
210
211/* Return an object of the expected type, or throws an error. */
212__LJMP static void *hlua_checkudata(lua_State *L, int ud, int class_ref)
213{
214 if (!hlua_udataistype(L, ud, class_ref))
215 WILL_LJMP(luaL_argerror(L, 1, NULL));
216 return lua_touserdata(L, ud);
217}
218
219/* This fucntion push an error string prefixed by the file name
220 * and the line number where the error is encountered.
221 */
222static int hlua_pusherror(lua_State *L, const char *fmt, ...)
223{
224 va_list argp;
225 va_start(argp, fmt);
226 luaL_where(L, 1);
227 lua_pushvfstring(L, fmt, argp);
228 va_end(argp);
229 lua_concat(L, 2);
230 return 1;
231}
232
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +0100233/* This function register a new signal. "lua" is the current lua
234 * execution context. It contains a pointer to the associated task.
235 * "link" is a list head attached to an other task that must be wake
236 * the lua task if an event occurs. This is useful with external
237 * events like TCP I/O or sleep functions. This funcion allocate
238 * memory for the signal.
239 */
240static int hlua_com_new(struct hlua *lua, struct list *link)
241{
242 struct hlua_com *com = pool_alloc2(pool2_hlua_com);
243 if (!com)
244 return 0;
245 LIST_ADDQ(&lua->com, &com->purge_me);
246 LIST_ADDQ(link, &com->wake_me);
247 com->task = lua->task;
248 return 1;
249}
250
251/* This function purge all the pending signals when the LUA execution
252 * is finished. This prevent than a coprocess try to wake a deleted
253 * task. This function remove the memory associated to the signal.
254 */
255static void hlua_com_purge(struct hlua *lua)
256{
257 struct hlua_com *com, *back;
258
259 /* Delete all pending communication signals. */
260 list_for_each_entry_safe(com, back, &lua->com, purge_me) {
261 LIST_DEL(&com->purge_me);
262 LIST_DEL(&com->wake_me);
263 pool_free2(pool2_hlua_com, com);
264 }
265}
266
267/* This function sends signals. It wakes all the tasks attached
268 * to a list head, and remove the signal, and free the used
269 * memory.
270 */
271static void hlua_com_wake(struct list *wake)
272{
273 struct hlua_com *com, *back;
274
275 /* Wake task and delete all pending communication signals. */
276 list_for_each_entry_safe(com, back, wake, wake_me) {
277 LIST_DEL(&com->purge_me);
278 LIST_DEL(&com->wake_me);
279 task_wakeup(com->task, TASK_WOKEN_MSG);
280 pool_free2(pool2_hlua_com, com);
281 }
282}
283
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100284/* This functions is used with sample fetch and converters. It
285 * converts the HAProxy configuration argument in a lua stack
286 * values.
287 *
288 * It takes an array of "arg", and each entry of the array is
289 * converted and pushed in the LUA stack.
290 */
291static int hlua_arg2lua(lua_State *L, const struct arg *arg)
292{
293 switch (arg->type) {
294 case ARGT_SINT:
295 lua_pushinteger(L, arg->data.sint);
296 break;
297
298 case ARGT_UINT:
299 case ARGT_TIME:
300 case ARGT_SIZE:
Thierry FOURNIERf90838b2015-03-06 13:48:32 +0100301 lua_pushinteger(L, arg->data.sint);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100302 break;
303
304 case ARGT_STR:
305 lua_pushlstring(L, arg->data.str.str, arg->data.str.len);
306 break;
307
308 case ARGT_IPV4:
309 case ARGT_IPV6:
310 case ARGT_MSK4:
311 case ARGT_MSK6:
312 case ARGT_FE:
313 case ARGT_BE:
314 case ARGT_TAB:
315 case ARGT_SRV:
316 case ARGT_USR:
317 case ARGT_MAP:
318 default:
319 lua_pushnil(L);
320 break;
321 }
322 return 1;
323}
324
325/* This function take one entrie in an LUA stack at the index "ud",
326 * and try to convert it in an HAProxy argument entry. This is useful
327 * with sample fetch wrappers. The input arguments are gived to the
328 * lua wrapper and converted as arg list by thi function.
329 */
330static int hlua_lua2arg(lua_State *L, int ud, struct arg *arg)
331{
332 switch (lua_type(L, ud)) {
333
334 case LUA_TNUMBER:
335 case LUA_TBOOLEAN:
336 arg->type = ARGT_SINT;
337 arg->data.sint = lua_tointeger(L, ud);
338 break;
339
340 case LUA_TSTRING:
341 arg->type = ARGT_STR;
342 arg->data.str.str = (char *)lua_tolstring(L, ud, (size_t *)&arg->data.str.len);
343 break;
344
345 case LUA_TUSERDATA:
346 case LUA_TNIL:
347 case LUA_TTABLE:
348 case LUA_TFUNCTION:
349 case LUA_TTHREAD:
350 case LUA_TLIGHTUSERDATA:
351 arg->type = ARGT_SINT;
352 arg->data.uint = 0;
353 break;
354 }
355 return 1;
356}
357
358/* the following functions are used to convert a struct sample
359 * in Lua type. This useful to convert the return of the
360 * fetchs or converters.
361 */
362static int hlua_smp2lua(lua_State *L, const struct sample *smp)
363{
364 switch (smp->type) {
365 case SMP_T_SINT:
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100366 case SMP_T_BOOL:
367 case SMP_T_UINT:
Thierry FOURNIERf90838b2015-03-06 13:48:32 +0100368 lua_pushinteger(L, smp->data.sint);
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100369 break;
370
371 case SMP_T_BIN:
372 case SMP_T_STR:
373 lua_pushlstring(L, smp->data.str.str, smp->data.str.len);
374 break;
375
376 case SMP_T_METH:
377 switch (smp->data.meth.meth) {
378 case HTTP_METH_OPTIONS: lua_pushstring(L, "OPTIONS"); break;
379 case HTTP_METH_GET: lua_pushstring(L, "GET"); break;
380 case HTTP_METH_HEAD: lua_pushstring(L, "HEAD"); break;
381 case HTTP_METH_POST: lua_pushstring(L, "POST"); break;
382 case HTTP_METH_PUT: lua_pushstring(L, "PUT"); break;
383 case HTTP_METH_DELETE: lua_pushstring(L, "DELETE"); break;
384 case HTTP_METH_TRACE: lua_pushstring(L, "TRACE"); break;
385 case HTTP_METH_CONNECT: lua_pushstring(L, "CONNECT"); break;
386 case HTTP_METH_OTHER:
387 lua_pushlstring(L, smp->data.meth.str.str, smp->data.meth.str.len);
388 break;
389 default:
390 lua_pushnil(L);
391 break;
392 }
393 break;
394
395 case SMP_T_IPV4:
396 case SMP_T_IPV6:
397 case SMP_T_ADDR: /* This type is never used to qualify a sample. */
398 default:
399 lua_pushnil(L);
400 break;
401 }
402 return 1;
403}
404
405/* the following functions are used to convert an Lua type in a
406 * struct sample. This is useful to provide data from a converter
407 * to the LUA code.
408 */
409static int hlua_lua2smp(lua_State *L, int ud, struct sample *smp)
410{
411 switch (lua_type(L, ud)) {
412
413 case LUA_TNUMBER:
414 smp->type = SMP_T_SINT;
415 smp->data.sint = lua_tointeger(L, ud);
416 break;
417
418
419 case LUA_TBOOLEAN:
420 smp->type = SMP_T_BOOL;
421 smp->data.uint = lua_toboolean(L, ud);
422 break;
423
424 case LUA_TSTRING:
425 smp->type = SMP_T_STR;
426 smp->flags |= SMP_F_CONST;
427 smp->data.str.str = (char *)lua_tolstring(L, ud, (size_t *)&smp->data.str.len);
428 break;
429
430 case LUA_TUSERDATA:
431 case LUA_TNIL:
432 case LUA_TTABLE:
433 case LUA_TFUNCTION:
434 case LUA_TTHREAD:
435 case LUA_TLIGHTUSERDATA:
436 smp->type = SMP_T_BOOL;
437 smp->data.uint = 0;
438 break;
439 }
440 return 1;
441}
442
443/* This function check the "argp" builded by another conversion function
444 * is in accord with the expected argp defined by the "mask". The fucntion
445 * returns true or false. It can be adjust the types if there compatibles.
446 */
447__LJMP int hlua_lua2arg_check(lua_State *L, int first, struct arg *argp, unsigned int mask)
448{
449 int min_arg;
450 int idx;
451
452 idx = 0;
453 min_arg = ARGM(mask);
454 mask >>= ARGM_BITS;
455
456 while (1) {
457
458 /* Check oversize. */
459 if (idx >= ARGM_NBARGS && argp[idx].type != ARGT_STOP) {
Cyril Bonté577a36a2015-03-02 00:08:38 +0100460 WILL_LJMP(luaL_argerror(L, first + idx, "Malformed argument mask"));
Thierry FOURNIER55da1652015-01-23 11:36:30 +0100461 }
462
463 /* Check for mandatory arguments. */
464 if (argp[idx].type == ARGT_STOP) {
465 if (idx + 1 < min_arg)
466 WILL_LJMP(luaL_argerror(L, first + idx, "Mandatory argument expected"));
467 return 0;
468 }
469
470 /* Check for exceed the number of requiered argument. */
471 if ((mask & ARGT_MASK) == ARGT_STOP &&
472 argp[idx].type != ARGT_STOP) {
473 WILL_LJMP(luaL_argerror(L, first + idx, "Last argument expected"));
474 }
475
476 if ((mask & ARGT_MASK) == ARGT_STOP &&
477 argp[idx].type == ARGT_STOP) {
478 return 0;
479 }
480
481 /* Compatibility mask. */
482 switch (argp[idx].type) {
483 case ARGT_SINT:
484 switch (mask & ARGT_MASK) {
485 case ARGT_UINT: argp[idx].type = mask & ARGT_MASK; break;
486 case ARGT_TIME: argp[idx].type = mask & ARGT_MASK; break;
487 case ARGT_SIZE: argp[idx].type = mask & ARGT_MASK; break;
488 }
489 break;
490 }
491
492 /* Check for type of argument. */
493 if ((mask & ARGT_MASK) != argp[idx].type) {
494 const char *msg = lua_pushfstring(L, "'%s' expected, got '%s'",
495 arg_type_names[(mask & ARGT_MASK)],
496 arg_type_names[argp[idx].type & ARGT_MASK]);
497 WILL_LJMP(luaL_argerror(L, first + idx, msg));
498 }
499
500 /* Next argument. */
501 mask >>= ARGT_BITS;
502 idx++;
503 }
504}
505
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100506/*
507 * The following functions are used to make correspondance between the the
508 * executed lua pointer and the "struct hlua *" that contain the context.
509 * They run with the tree head "hlua_ctx", they just perform lookup in the
510 * tree.
511 *
512 * - hlua_gethlua : return the hlua context associated with an lua_State.
513 * - hlua_delhlua : remove the association between hlua context and lua_state.
514 * - hlua_sethlua : create the association between hlua context and lua_state.
515 */
516static inline struct hlua *hlua_gethlua(lua_State *L)
517{
518 struct ebpt_node *node;
519
520 node = ebpt_lookup(&hlua_ctx, L);
521 if (!node)
522 return NULL;
523 return ebpt_entry(node, struct hlua, node);
524}
525static inline void hlua_delhlua(struct hlua *hlua)
526{
527 if (hlua->node.key)
528 ebpt_delete(&hlua->node);
529}
530static inline void hlua_sethlua(struct hlua *hlua)
531{
532 hlua->node.key = hlua->T;
533 ebpt_insert(&hlua_ctx, &hlua->node);
534}
535
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +0100536/* This function just ensure that the yield will be always
537 * returned with a timeout and permit to set some flags
538 */
539__LJMP void hlua_yieldk(lua_State *L, int nresults, int ctx,
Thierry FOURNIERf90838b2015-03-06 13:48:32 +0100540 lua_KFunction k, int timeout, unsigned int flags)
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +0100541{
542 struct hlua *hlua = hlua_gethlua(L);
543
544 /* Set the wake timeout. If timeout is required, we set
545 * the expiration time.
546 */
Thierry FOURNIERdc9ca962015-03-05 11:16:52 +0100547 hlua->wake_time = tick_first(timeout, hlua->expire);
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +0100548
Thierry FOURNIER4abd3ae2015-03-03 17:29:06 +0100549 hlua->flags |= flags;
550
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +0100551 /* Process the yield. */
552 WILL_LJMP(lua_yieldk(L, nresults, ctx, k));
553}
554
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100555/* This function initialises the Lua environment stored in the session.
556 * It must be called at the start of the session. This function creates
557 * an LUA coroutine. It can not be use to crete the main LUA context.
558 */
559int hlua_ctx_init(struct hlua *lua, struct task *task)
560{
561 lua->Mref = LUA_REFNIL;
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +0100562 lua->flags = 0;
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +0100563 LIST_INIT(&lua->com);
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100564 lua->T = lua_newthread(gL.T);
565 if (!lua->T) {
566 lua->Tref = LUA_REFNIL;
567 return 0;
568 }
569 hlua_sethlua(lua);
570 lua->Tref = luaL_ref(gL.T, LUA_REGISTRYINDEX);
571 lua->task = task;
572 return 1;
573}
574
575/* Used to destroy the Lua coroutine when the attached session or task
576 * is destroyed. The destroy also the memory context. The struct "lua"
577 * is not freed.
578 */
579void hlua_ctx_destroy(struct hlua *lua)
580{
Thierry FOURNIERa718b292015-03-04 16:48:34 +0100581 if (!lua->T)
582 return;
583
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100584 /* Remove context. */
585 hlua_delhlua(lua);
586
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +0100587 /* Purge all the pending signals. */
588 hlua_com_purge(lua);
589
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100590 /* The thread is garbage collected by Lua. */
591 luaL_unref(lua->T, LUA_REGISTRYINDEX, lua->Mref);
592 luaL_unref(gL.T, LUA_REGISTRYINDEX, lua->Tref);
593}
594
595/* This function is used to restore the Lua context when a coroutine
596 * fails. This function copy the common memory between old coroutine
597 * and the new coroutine. The old coroutine is destroyed, and its
598 * replaced by the new coroutine.
599 * If the flag "keep_msg" is set, the last entry of the old is assumed
600 * as string error message and it is copied in the new stack.
601 */
602static int hlua_ctx_renew(struct hlua *lua, int keep_msg)
603{
604 lua_State *T;
605 int new_ref;
606
607 /* Renew the main LUA stack doesn't have sense. */
608 if (lua == &gL)
609 return 0;
610
611 /* Remove context. */
612 hlua_delhlua(lua);
613
614 /* New Lua coroutine. */
615 T = lua_newthread(gL.T);
616 if (!T)
617 return 0;
618
619 /* Copy last error message. */
620 if (keep_msg)
621 lua_xmove(lua->T, T, 1);
622
623 /* Copy data between the coroutines. */
624 lua_rawgeti(lua->T, LUA_REGISTRYINDEX, lua->Mref);
625 lua_xmove(lua->T, T, 1);
626 new_ref = luaL_ref(T, LUA_REGISTRYINDEX); /* Valur poped. */
627
628 /* Destroy old data. */
629 luaL_unref(lua->T, LUA_REGISTRYINDEX, lua->Mref);
630
631 /* The thread is garbage collected by Lua. */
632 luaL_unref(gL.T, LUA_REGISTRYINDEX, lua->Tref);
633
634 /* Fill the struct with the new coroutine values. */
635 lua->Mref = new_ref;
636 lua->T = T;
637 lua->Tref = luaL_ref(gL.T, LUA_REGISTRYINDEX);
638
639 /* Set context. */
640 hlua_sethlua(lua);
641
642 return 1;
643}
644
Thierry FOURNIERee9f8022015-03-03 17:37:37 +0100645void hlua_hook(lua_State *L, lua_Debug *ar)
646{
Thierry FOURNIERcae49c92015-03-06 14:05:24 +0100647 struct hlua *hlua = hlua_gethlua(L);
648
649 /* Lua cannot yield when its returning from a function,
650 * so, we can fix the interrupt hook to 1 instruction,
651 * expecting that the function is finnished.
652 */
653 if (lua_gethookmask(L) & LUA_MASKRET) {
654 lua_sethook(hlua->T, hlua_hook, LUA_MASKCOUNT, 1);
655 return;
656 }
657
658 /* restore the interrupt condition. */
659 lua_sethook(hlua->T, hlua_hook, LUA_MASKCOUNT, hlua_nb_instruction);
660
661 /* If we interrupt the Lua processing in yieldable state, we yield.
662 * If the state is not yieldable, trying yield causes an error.
663 */
664 if (lua_isyieldable(L))
665 WILL_LJMP(hlua_yieldk(L, 0, 0, NULL, TICK_ETERNITY, HLUA_CTRLYIELD));
666
667 /* If we cannot yield, check the timeout. */
668 if (tick_is_expired(hlua->expire, now_ms)) {
669 lua_pushfstring(L, "execution timeout");
670 WILL_LJMP(lua_error(L));
671 }
672
673 /* Try to interrupt the process at the end of the current
674 * unyieldable function.
675 */
676 lua_sethook(hlua->T, hlua_hook, LUA_MASKRET|LUA_MASKCOUNT, hlua_nb_instruction);
Thierry FOURNIERee9f8022015-03-03 17:37:37 +0100677}
678
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100679/* This function start or resumes the Lua stack execution. If the flag
680 * "yield_allowed" if no set and the LUA stack execution returns a yield
681 * The function return an error.
682 *
683 * The function can returns 4 values:
684 * - HLUA_E_OK : The execution is terminated without any errors.
685 * - HLUA_E_AGAIN : The execution must continue at the next associated
686 * task wakeup.
687 * - HLUA_E_ERRMSG : An error has occured, an error message is set in
688 * the top of the stack.
689 * - HLUA_E_ERR : An error has occured without error message.
690 *
691 * If an error occured, the stack is renewed and it is ready to run new
692 * LUA code.
693 */
694static enum hlua_exec hlua_ctx_resume(struct hlua *lua, int yield_allowed)
695{
696 int ret;
697 const char *msg;
698
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +0100699 HLUA_SET_RUN(lua);
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100700
Thierry FOURNIERdc9ca962015-03-05 11:16:52 +0100701 /* If we want to resume the task, then check first the execution timeout.
702 * if it is reached, we can interrupt the Lua processing.
703 */
704 if (tick_is_expired(lua->expire, now_ms))
705 goto timeout_reached;
706
Thierry FOURNIERee9f8022015-03-03 17:37:37 +0100707resume_execution:
708
709 /* This hook interrupts the Lua processing each 'hlua_nb_instruction'
710 * instructions. it is used for preventing infinite loops.
711 */
712 lua_sethook(lua->T, hlua_hook, LUA_MASKCOUNT, hlua_nb_instruction);
713
Thierry FOURNIER1bfc09b2015-03-05 17:10:14 +0100714 /* Remove all flags except the running flags. */
715 lua->flags = HLUA_RUN;
716
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100717 /* Call the function. */
718 ret = lua_resume(lua->T, gL.T, lua->nargs);
719 switch (ret) {
720
721 case LUA_OK:
722 ret = HLUA_E_OK;
723 break;
724
725 case LUA_YIELD:
Thierry FOURNIERdc9ca962015-03-05 11:16:52 +0100726 /* Check if the execution timeout is expired. It it is the case, we
727 * break the Lua execution.
Thierry FOURNIERee9f8022015-03-03 17:37:37 +0100728 */
Thierry FOURNIERdc9ca962015-03-05 11:16:52 +0100729 if (tick_is_expired(lua->expire, now_ms)) {
730
731timeout_reached:
732
733 lua_settop(lua->T, 0); /* Empty the stack. */
734 if (!lua_checkstack(lua->T, 1)) {
735 ret = HLUA_E_ERR;
Thierry FOURNIERee9f8022015-03-03 17:37:37 +0100736 break;
737 }
Thierry FOURNIERdc9ca962015-03-05 11:16:52 +0100738 lua_pushfstring(lua->T, "execution timeout");
739 ret = HLUA_E_ERRMSG;
740 break;
741 }
742 /* Process the forced yield. if the general yield is not allowed or
743 * if no task were associated this the current Lua execution
744 * coroutine, we resume the execution. Else we want to return in the
745 * scheduler and we want to be waked up again, to continue the
746 * current Lua execution. So we schedule our own task.
747 */
748 if (HLUA_IS_CTRLYIELDING(lua)) {
Thierry FOURNIERee9f8022015-03-03 17:37:37 +0100749 if (!yield_allowed || !lua->task)
750 goto resume_execution;
Thierry FOURNIERee9f8022015-03-03 17:37:37 +0100751 task_wakeup(lua->task, TASK_WOKEN_MSG);
Thierry FOURNIERee9f8022015-03-03 17:37:37 +0100752 }
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100753 if (!yield_allowed) {
754 lua_settop(lua->T, 0); /* Empty the stack. */
755 if (!lua_checkstack(lua->T, 1)) {
756 ret = HLUA_E_ERR;
757 break;
758 }
759 lua_pushfstring(lua->T, "yield not allowed");
760 ret = HLUA_E_ERRMSG;
761 break;
762 }
763 ret = HLUA_E_AGAIN;
764 break;
765
766 case LUA_ERRRUN:
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +0100767 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100768 if (!lua_checkstack(lua->T, 1)) {
769 ret = HLUA_E_ERR;
770 break;
771 }
772 msg = lua_tostring(lua->T, -1);
773 lua_settop(lua->T, 0); /* Empty the stack. */
774 lua_pop(lua->T, 1);
775 if (msg)
776 lua_pushfstring(lua->T, "runtime error: %s", msg);
777 else
778 lua_pushfstring(lua->T, "unknown runtime error");
779 ret = HLUA_E_ERRMSG;
780 break;
781
782 case LUA_ERRMEM:
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +0100783 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100784 lua_settop(lua->T, 0); /* Empty the stack. */
785 if (!lua_checkstack(lua->T, 1)) {
786 ret = HLUA_E_ERR;
787 break;
788 }
789 lua_pushfstring(lua->T, "out of memory error");
790 ret = HLUA_E_ERRMSG;
791 break;
792
793 case LUA_ERRERR:
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +0100794 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100795 if (!lua_checkstack(lua->T, 1)) {
796 ret = HLUA_E_ERR;
797 break;
798 }
799 msg = lua_tostring(lua->T, -1);
800 lua_settop(lua->T, 0); /* Empty the stack. */
801 lua_pop(lua->T, 1);
802 if (msg)
803 lua_pushfstring(lua->T, "message handler error: %s", msg);
804 else
805 lua_pushfstring(lua->T, "message handler error");
806 ret = HLUA_E_ERRMSG;
807 break;
808
809 default:
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +0100810 lua->wake_time = TICK_ETERNITY;
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100811 lua_settop(lua->T, 0); /* Empty the stack. */
812 if (!lua_checkstack(lua->T, 1)) {
813 ret = HLUA_E_ERR;
814 break;
815 }
816 lua_pushfstring(lua->T, "unknonwn error");
817 ret = HLUA_E_ERRMSG;
818 break;
819 }
820
821 switch (ret) {
822 case HLUA_E_AGAIN:
823 break;
824
825 case HLUA_E_ERRMSG:
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +0100826 hlua_com_purge(lua);
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100827 hlua_ctx_renew(lua, 1);
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +0100828 HLUA_CLR_RUN(lua);
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100829 break;
830
831 case HLUA_E_ERR:
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +0100832 HLUA_CLR_RUN(lua);
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +0100833 hlua_com_purge(lua);
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100834 hlua_ctx_renew(lua, 0);
835 break;
836
837 case HLUA_E_OK:
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +0100838 HLUA_CLR_RUN(lua);
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +0100839 hlua_com_purge(lua);
Thierry FOURNIER380d0932015-01-23 14:27:52 +0100840 break;
841 }
842
843 return ret;
844}
845
Thierry FOURNIER83758bb2015-02-04 13:21:04 +0100846/* This function is an LUA binding. It provides a function
847 * for deleting ACL from a referenced ACL file.
848 */
849__LJMP static int hlua_del_acl(lua_State *L)
850{
851 const char *name;
852 const char *key;
853 struct pat_ref *ref;
854
855 MAY_LJMP(check_args(L, 2, "del_acl"));
856
857 name = MAY_LJMP(luaL_checkstring(L, 1));
858 key = MAY_LJMP(luaL_checkstring(L, 2));
859
860 ref = pat_ref_lookup(name);
861 if (!ref)
862 WILL_LJMP(luaL_error(L, "'del_acl': unkown acl file '%s'", name));
863
864 pat_ref_delete(ref, key);
865 return 0;
866}
867
868/* This function is an LUA binding. It provides a function
869 * for deleting map entry from a referenced map file.
870 */
871static int hlua_del_map(lua_State *L)
872{
873 const char *name;
874 const char *key;
875 struct pat_ref *ref;
876
877 MAY_LJMP(check_args(L, 2, "del_map"));
878
879 name = MAY_LJMP(luaL_checkstring(L, 1));
880 key = MAY_LJMP(luaL_checkstring(L, 2));
881
882 ref = pat_ref_lookup(name);
883 if (!ref)
884 WILL_LJMP(luaL_error(L, "'del_map': unkown acl file '%s'", name));
885
886 pat_ref_delete(ref, key);
887 return 0;
888}
889
890/* This function is an LUA binding. It provides a function
891 * for adding ACL pattern from a referenced ACL file.
892 */
893static int hlua_add_acl(lua_State *L)
894{
895 const char *name;
896 const char *key;
897 struct pat_ref *ref;
898
899 MAY_LJMP(check_args(L, 2, "add_acl"));
900
901 name = MAY_LJMP(luaL_checkstring(L, 1));
902 key = MAY_LJMP(luaL_checkstring(L, 2));
903
904 ref = pat_ref_lookup(name);
905 if (!ref)
906 WILL_LJMP(luaL_error(L, "'add_acl': unkown acl file '%s'", name));
907
908 if (pat_ref_find_elt(ref, key) == NULL)
909 pat_ref_add(ref, key, NULL, NULL);
910 return 0;
911}
912
913/* This function is an LUA binding. It provides a function
914 * for setting map pattern and sample from a referenced map
915 * file.
916 */
917static int hlua_set_map(lua_State *L)
918{
919 const char *name;
920 const char *key;
921 const char *value;
922 struct pat_ref *ref;
923
924 MAY_LJMP(check_args(L, 3, "set_map"));
925
926 name = MAY_LJMP(luaL_checkstring(L, 1));
927 key = MAY_LJMP(luaL_checkstring(L, 2));
928 value = MAY_LJMP(luaL_checkstring(L, 3));
929
930 ref = pat_ref_lookup(name);
931 if (!ref)
932 WILL_LJMP(luaL_error(L, "'set_map': unkown map file '%s'", name));
933
934 if (pat_ref_find_elt(ref, key) != NULL)
935 pat_ref_set(ref, key, value, NULL);
936 else
937 pat_ref_add(ref, key, value, NULL);
938 return 0;
939}
940
Thierry FOURNIER65f34c62015-02-16 20:11:43 +0100941/* A class is a lot of memory that contain data. This data can be a table,
942 * an integer or user data. This data is associated with a metatable. This
943 * metatable have an original version registred in the global context with
944 * the name of the object (_G[<name>] = <metable> ).
945 *
946 * A metable is a table that modify the standard behavior of a standard
947 * access to the associated data. The entries of this new metatable are
948 * defined as is:
949 *
950 * http://lua-users.org/wiki/MetatableEvents
951 *
952 * __index
953 *
954 * we access an absent field in a table, the result is nil. This is
955 * true, but it is not the whole truth. Actually, such access triggers
956 * the interpreter to look for an __index metamethod: If there is no
957 * such method, as usually happens, then the access results in nil;
958 * otherwise, the metamethod will provide the result.
959 *
960 * Control 'prototype' inheritance. When accessing "myTable[key]" and
961 * the key does not appear in the table, but the metatable has an __index
962 * property:
963 *
964 * - if the value is a function, the function is called, passing in the
965 * table and the key; the return value of that function is returned as
966 * the result.
967 *
968 * - if the value is another table, the value of the key in that table is
969 * asked for and returned (and if it doesn't exist in that table, but that
970 * table's metatable has an __index property, then it continues on up)
971 *
972 * - Use "rawget(myTable,key)" to skip this metamethod.
973 *
974 * http://www.lua.org/pil/13.4.1.html
975 *
976 * __newindex
977 *
978 * Like __index, but control property assignment.
979 *
980 * __mode - Control weak references. A string value with one or both
981 * of the characters 'k' and 'v' which specifies that the the
982 * keys and/or values in the table are weak references.
983 *
984 * __call - Treat a table like a function. When a table is followed by
985 * parenthesis such as "myTable( 'foo' )" and the metatable has
986 * a __call key pointing to a function, that function is invoked
987 * (passing any specified arguments) and the return value is
988 * returned.
989 *
990 * __metatable - Hide the metatable. When "getmetatable( myTable )" is
991 * called, if the metatable for myTable has a __metatable
992 * key, the value of that key is returned instead of the
993 * actual metatable.
994 *
995 * __tostring - Control string representation. When the builtin
996 * "tostring( myTable )" function is called, if the metatable
997 * for myTable has a __tostring property set to a function,
998 * that function is invoked (passing myTable to it) and the
999 * return value is used as the string representation.
1000 *
1001 * __len - Control table length. When the table length is requested using
1002 * the length operator ( '#' ), if the metatable for myTable has
1003 * a __len key pointing to a function, that function is invoked
1004 * (passing myTable to it) and the return value used as the value
1005 * of "#myTable".
1006 *
1007 * __gc - Userdata finalizer code. When userdata is set to be garbage
1008 * collected, if the metatable has a __gc field pointing to a
1009 * function, that function is first invoked, passing the userdata
1010 * to it. The __gc metamethod is not called for tables.
1011 * (See http://lua-users.org/lists/lua-l/2006-11/msg00508.html)
1012 *
1013 * Special metamethods for redefining standard operators:
1014 * http://www.lua.org/pil/13.1.html
1015 *
1016 * __add "+"
1017 * __sub "-"
1018 * __mul "*"
1019 * __div "/"
1020 * __unm "!"
1021 * __pow "^"
1022 * __concat ".."
1023 *
1024 * Special methods for redfining standar relations
1025 * http://www.lua.org/pil/13.2.html
1026 *
1027 * __eq "=="
1028 * __lt "<"
1029 * __le "<="
1030 */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001031
1032/*
1033 *
1034 *
1035 * Class Socket
1036 *
1037 *
1038 */
1039
1040__LJMP static struct hlua_socket *hlua_checksocket(lua_State *L, int ud)
1041{
1042 return (struct hlua_socket *)MAY_LJMP(hlua_checkudata(L, ud, class_socket_ref));
1043}
1044
1045/* This function is the handler called for each I/O on the established
1046 * connection. It is used for notify space avalaible to send or data
1047 * received.
1048 */
1049static void hlua_socket_handler(struct stream_interface *si)
1050{
1051 struct appctx *appctx = objt_appctx(si->end);
1052 struct connection *c = objt_conn(si->ib->cons->end);
1053
1054 /* Wakeup the main session if the client connection is closed. */
1055 if (!c || channel_output_closed(si->ib) || channel_input_closed(si->ob)) {
1056 if (appctx->ctx.hlua.socket) {
1057 appctx->ctx.hlua.socket->s = NULL;
1058 appctx->ctx.hlua.socket = NULL;
1059 }
1060 si_shutw(si);
1061 si_shutr(si);
1062 si->ib->flags |= CF_READ_NULL;
1063 hlua_com_wake(&appctx->ctx.hlua.wake_on_read);
1064 hlua_com_wake(&appctx->ctx.hlua.wake_on_write);
1065 return;
1066 }
1067
1068 if (!(c->flags & CO_FL_CONNECTED))
1069 return;
1070
1071 /* This function is called after the connect. */
1072 appctx->ctx.hlua.connected = 1;
1073
1074 /* Wake the tasks which wants to write if the buffer have avalaible space. */
1075 if (channel_may_recv(si->ob))
1076 hlua_com_wake(&appctx->ctx.hlua.wake_on_write);
1077
1078 /* Wake the tasks which wants to read if the buffer contains data. */
1079 if (channel_is_empty(si->ib))
1080 hlua_com_wake(&appctx->ctx.hlua.wake_on_read);
1081}
1082
1083/* This function is called when the "struct session" is destroyed.
1084 * Remove the link from the object to this session.
1085 * Wake all the pending signals.
1086 */
1087static void hlua_socket_release(struct stream_interface *si)
1088{
1089 struct appctx *appctx = objt_appctx(si->end);
1090
1091 /* Remove my link in the original object. */
1092 if (appctx->ctx.hlua.socket)
1093 appctx->ctx.hlua.socket->s = NULL;
1094
1095 /* Wake all the task waiting for me. */
1096 hlua_com_wake(&appctx->ctx.hlua.wake_on_read);
1097 hlua_com_wake(&appctx->ctx.hlua.wake_on_write);
1098}
1099
1100/* If the garbage collectio of the object is launch, nobody
1101 * uses this object. If the session does not exists, just quit.
1102 * Send the shutdown signal to the session. In some cases,
1103 * pending signal can rest in the read and write lists. destroy
1104 * it.
1105 */
1106__LJMP static int hlua_socket_gc(lua_State *L)
1107{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001108 struct hlua_socket *socket;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001109 struct appctx *appctx;
1110
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001111 MAY_LJMP(check_args(L, 1, "__gc"));
1112
1113 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001114 if (!socket->s)
1115 return 0;
1116
1117 /* Remove all reference between the Lua stack and the coroutine session. */
1118 appctx = objt_appctx(socket->s->si[0].end);
1119 session_shutdown(socket->s, SN_ERR_KILLED);
1120 socket->s = NULL;
1121 appctx->ctx.hlua.socket = NULL;
1122
1123 return 0;
1124}
1125
1126/* The close function send shutdown signal and break the
1127 * links between the session and the object.
1128 */
1129__LJMP static int hlua_socket_close(lua_State *L)
1130{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001131 struct hlua_socket *socket;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001132 struct appctx *appctx;
1133
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001134 MAY_LJMP(check_args(L, 1, "close"));
1135
1136 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001137 if (!socket->s)
1138 return 0;
1139
1140 /* Close the session and remove the associated stop task. */
1141 session_shutdown(socket->s, SN_ERR_KILLED);
1142 appctx = objt_appctx(socket->s->si[0].end);
1143 appctx->ctx.hlua.socket = NULL;
1144 socket->s = NULL;
1145
1146 return 0;
1147}
1148
1149/* This Lua function assumes that the stack contain three parameters.
1150 * 1 - USERDATA containing a struct socket
1151 * 2 - INTEGER with values of the macro defined below
1152 * If the integer is -1, we must read at most one line.
1153 * If the integer is -2, we ust read all the data until the
1154 * end of the stream.
1155 * If the integer is positive value, we must read a number of
1156 * bytes corresponding to this value.
1157 */
1158#define HLSR_READ_LINE (-1)
1159#define HLSR_READ_ALL (-2)
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01001160__LJMP static int hlua_socket_receive_yield(struct lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001161{
1162 struct hlua_socket *socket = MAY_LJMP(hlua_checksocket(L, 1));
1163 int wanted = lua_tointeger(L, 2);
1164 struct hlua *hlua = hlua_gethlua(L);
1165 struct appctx *appctx;
1166 int len;
1167 int nblk;
1168 char *blk1;
1169 int len1;
1170 char *blk2;
1171 int len2;
1172
1173 /* Check if this lua stack is schedulable. */
1174 if (!hlua || !hlua->task)
1175 WILL_LJMP(luaL_error(L, "The 'receive' function is only allowed in "
1176 "'frontend', 'backend' or 'task'"));
1177
1178 /* check for connection closed. If some data where read, return it. */
1179 if (!socket->s)
1180 goto connection_closed;
1181
1182 if (wanted == HLSR_READ_LINE) {
1183
1184 /* Read line. */
1185 nblk = bo_getline_nc(socket->s->si[0].ob, &blk1, &len1, &blk2, &len2);
1186 if (nblk < 0) /* Connection close. */
1187 goto connection_closed;
1188 if (nblk == 0) /* No data avalaible. */
1189 goto connection_empty;
1190 }
1191
1192 else if (wanted == HLSR_READ_ALL) {
1193
1194 /* Read all the available data. */
1195 nblk = bo_getblk_nc(socket->s->si[0].ob, &blk1, &len1, &blk2, &len2);
1196 if (nblk < 0) /* Connection close. */
1197 goto connection_closed;
1198 if (nblk == 0) /* No data avalaible. */
1199 goto connection_empty;
1200 }
1201
1202 else {
1203
1204 /* Read a block of data. */
1205 nblk = bo_getblk_nc(socket->s->si[0].ob, &blk1, &len1, &blk2, &len2);
1206 if (nblk < 0) /* Connection close. */
1207 goto connection_closed;
1208 if (nblk == 0) /* No data avalaible. */
1209 goto connection_empty;
1210
1211 if (len1 > wanted) {
1212 nblk = 1;
1213 len1 = wanted;
1214 } if (nblk == 2 && len1 + len2 > wanted)
1215 len2 = wanted - len1;
1216 }
1217
1218 len = len1;
1219
1220 luaL_addlstring(&socket->b, blk1, len1);
1221 if (nblk == 2) {
1222 len += len2;
1223 luaL_addlstring(&socket->b, blk2, len2);
1224 }
1225
1226 /* Consume data. */
1227 bo_skip(socket->s->si[0].ob, len);
1228
1229 /* Don't wait anything. */
1230 si_update(&socket->s->si[0]);
1231
1232 /* If the pattern reclaim to read all the data
1233 * in the connection, got out.
1234 */
1235 if (wanted == HLSR_READ_ALL)
1236 goto connection_empty;
1237 else if (wanted >= 0 && len < wanted)
1238 goto connection_empty;
1239
1240 /* Return result. */
1241 luaL_pushresult(&socket->b);
1242 return 1;
1243
1244connection_closed:
1245
1246 /* If the buffer containds data. */
1247 if (socket->b.n > 0) {
1248 luaL_pushresult(&socket->b);
1249 return 1;
1250 }
1251 lua_pushnil(L);
1252 lua_pushstring(L, "connection closed.");
1253 return 2;
1254
1255connection_empty:
1256
1257 appctx = objt_appctx(socket->s->si[0].end);
1258 if (!hlua_com_new(hlua, &appctx->ctx.hlua.wake_on_read))
1259 WILL_LJMP(luaL_error(L, "out of memory"));
Thierry FOURNIER4abd3ae2015-03-03 17:29:06 +01001260 WILL_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_receive_yield, TICK_ETERNITY, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001261 return 0;
1262}
1263
1264/* This Lus function gets two parameters. The first one can be string
1265 * or a number. If the string is "*l", the user require one line. If
1266 * the string is "*a", the user require all the content of the stream.
1267 * If the value is a number, the user require a number of bytes equal
1268 * to the value. The default value is "*l" (a line).
1269 *
1270 * This paraeter with a variable type is converted in integer. This
1271 * integer takes this values:
1272 * -1 : read a line
1273 * -2 : read all the stream
1274 * >0 : amount if bytes.
1275 *
1276 * The second parameter is optinal. It contains a string that must be
1277 * concatenated with the read data.
1278 */
1279__LJMP static int hlua_socket_receive(struct lua_State *L)
1280{
1281 int wanted = HLSR_READ_LINE;
1282 const char *pattern;
1283 int type;
1284 char *error;
1285 size_t len;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001286 struct hlua_socket *socket;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001287
1288 if (lua_gettop(L) < 1 || lua_gettop(L) > 3)
1289 WILL_LJMP(luaL_error(L, "The 'receive' function requires between 1 and 3 arguments."));
1290
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001291 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001292
1293 /* check for pattern. */
1294 if (lua_gettop(L) >= 2) {
1295 type = lua_type(L, 2);
1296 if (type == LUA_TSTRING) {
1297 pattern = lua_tostring(L, 2);
1298 if (strcmp(pattern, "*a") == 0)
1299 wanted = HLSR_READ_ALL;
1300 else if (strcmp(pattern, "*l") == 0)
1301 wanted = HLSR_READ_LINE;
1302 else {
1303 wanted = strtoll(pattern, &error, 10);
1304 if (*error != '\0')
1305 WILL_LJMP(luaL_error(L, "Unsupported pattern."));
1306 }
1307 }
1308 else if (type == LUA_TNUMBER) {
1309 wanted = lua_tointeger(L, 2);
1310 if (wanted < 0)
1311 WILL_LJMP(luaL_error(L, "Unsupported size."));
1312 }
1313 }
1314
1315 /* Set pattern. */
1316 lua_pushinteger(L, wanted);
1317 lua_replace(L, 2);
1318
1319 /* init bufffer, and fiil it wih prefix. */
1320 luaL_buffinit(L, &socket->b);
1321
1322 /* Check prefix. */
1323 if (lua_gettop(L) >= 3) {
1324 if (lua_type(L, 3) != LUA_TSTRING)
1325 WILL_LJMP(luaL_error(L, "Expect a 'string' for the prefix"));
1326 pattern = lua_tolstring(L, 3, &len);
1327 luaL_addlstring(&socket->b, pattern, len);
1328 }
1329
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01001330 return __LJMP(hlua_socket_receive_yield(L, 0, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001331}
1332
1333/* Write the Lua input string in the output buffer.
1334 * This fucntion returns a yield if no space are available.
1335 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01001336static int hlua_socket_write_yield(struct lua_State *L,int status, lua_KContext ctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001337{
1338 struct hlua_socket *socket;
1339 struct hlua *hlua = hlua_gethlua(L);
1340 struct appctx *appctx;
1341 size_t buf_len;
1342 const char *buf;
1343 int len;
1344 int send_len;
1345 int sent;
1346
1347 /* Check if this lua stack is schedulable. */
1348 if (!hlua || !hlua->task)
1349 WILL_LJMP(luaL_error(L, "The 'write' function is only allowed in "
1350 "'frontend', 'backend' or 'task'"));
1351
1352 /* Get object */
1353 socket = MAY_LJMP(hlua_checksocket(L, 1));
1354 buf = MAY_LJMP(luaL_checklstring(L, 2, &buf_len));
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01001355 sent = MAY_LJMP(luaL_checkinteger(L, 3));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001356
1357 /* Check for connection close. */
1358 if (!socket->s || channel_output_closed(socket->s->req)) {
1359 lua_pushinteger(L, -1);
1360 return 1;
1361 }
1362
1363 /* Update the input buffer data. */
1364 buf += sent;
1365 send_len = buf_len - sent;
1366
1367 /* All the data are sent. */
1368 if (sent >= buf_len)
1369 return 1; /* Implicitly return the length sent. */
1370
Thierry FOURNIER486d52a2015-03-09 17:51:43 +01001371 /* Check if the buffer is avalaible because HAProxy doesn't allocate
1372 * the request buffer if its not required.
1373 */
1374 if (socket->s->req->buf->size == 0) {
1375 if (!session_alloc_recv_buffer(socket->s, &socket->s->req->buf)) {
1376 socket->s->req->prod->flags |= SI_FL_WAIT_ROOM;
1377 goto hlua_socket_write_yield_return;
1378 }
1379 }
1380
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001381 /* Check for avalaible space. */
1382 len = buffer_total_space(socket->s->si[0].ib->buf);
1383 if (len <= 0)
1384 goto hlua_socket_write_yield_return;
1385
1386 /* send data */
1387 if (len < send_len)
1388 send_len = len;
1389 len = bi_putblk(socket->s->si[0].ib, buf+sent, send_len);
1390
1391 /* "Not enough space" (-1), "Buffer too little to contain
1392 * the data" (-2) are not expected because the available length
1393 * is tested.
1394 * Other unknown error are also not expected.
1395 */
1396 if (len <= 0) {
1397 MAY_LJMP(hlua_socket_close(L));
1398 lua_pop(L, 1);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01001399 lua_pushinteger(L, -1);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001400 return 1;
1401 }
1402
1403 /* update buffers. */
1404 si_update(&socket->s->si[0]);
1405 socket->s->si[0].ib->rex = TICK_ETERNITY;
1406 socket->s->si[0].ob->wex = TICK_ETERNITY;
1407
1408 /* Update length sent. */
1409 lua_pop(L, 1);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01001410 lua_pushinteger(L, sent + len);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001411
1412 /* All the data buffer is sent ? */
1413 if (sent + len >= buf_len)
1414 return 1;
1415
1416hlua_socket_write_yield_return:
1417 appctx = objt_appctx(socket->s->si[0].end);
1418 if (!hlua_com_new(hlua, &appctx->ctx.hlua.wake_on_write))
1419 WILL_LJMP(luaL_error(L, "out of memory"));
Thierry FOURNIER4abd3ae2015-03-03 17:29:06 +01001420 WILL_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_write_yield, TICK_ETERNITY, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001421 return 0;
1422}
1423
1424/* This function initiate the send of data. It just check the input
1425 * parameters and push an integer in the Lua stack that contain the
1426 * amount of data writed in the buffer. This is used by the function
1427 * "hlua_socket_write_yield" that can yield.
1428 *
1429 * The Lua function gets between 3 and 4 parameters. The first one is
1430 * the associated object. The second is a string buffer. The third is
1431 * a facultative integer that represents where is the buffer position
1432 * of the start of the data that can send. The first byte is the
1433 * position "1". The default value is "1". The fourth argument is a
1434 * facultative integer that represents where is the buffer position
1435 * of the end of the data that can send. The default is the last byte.
1436 */
1437static int hlua_socket_send(struct lua_State *L)
1438{
1439 int i;
1440 int j;
1441 const char *buf;
1442 size_t buf_len;
1443
1444 /* Check number of arguments. */
1445 if (lua_gettop(L) < 2 || lua_gettop(L) > 4)
1446 WILL_LJMP(luaL_error(L, "'send' needs between 2 and 4 arguments"));
1447
1448 /* Get the string. */
1449 buf = MAY_LJMP(luaL_checklstring(L, 2, &buf_len));
1450
1451 /* Get and check j. */
1452 if (lua_gettop(L) == 4) {
1453 j = MAY_LJMP(luaL_checkinteger(L, 4));
1454 if (j < 0)
1455 j = buf_len + j + 1;
1456 if (j > buf_len)
1457 j = buf_len + 1;
1458 lua_pop(L, 1);
1459 }
1460 else
1461 j = buf_len;
1462
1463 /* Get and check i. */
1464 if (lua_gettop(L) == 3) {
1465 i = MAY_LJMP(luaL_checkinteger(L, 3));
1466 if (i < 0)
1467 i = buf_len + i + 1;
1468 if (i > buf_len)
1469 i = buf_len + 1;
1470 lua_pop(L, 1);
1471 } else
1472 i = 1;
1473
1474 /* Check bth i and j. */
1475 if (i > j) {
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01001476 lua_pushinteger(L, 0);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001477 return 1;
1478 }
1479 if (i == 0 && j == 0) {
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01001480 lua_pushinteger(L, 0);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001481 return 1;
1482 }
1483 if (i == 0)
1484 i = 1;
1485 if (j == 0)
1486 j = 1;
1487
1488 /* Pop the string. */
1489 lua_pop(L, 1);
1490
1491 /* Update the buffer length. */
1492 buf += i - 1;
1493 buf_len = j - i + 1;
1494 lua_pushlstring(L, buf, buf_len);
1495
1496 /* This unsigned is used to remember the amount of sent data. */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01001497 lua_pushinteger(L, 0);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001498
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01001499 return MAY_LJMP(hlua_socket_write_yield(L, 0, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001500}
1501
1502#define SOCKET_INFO_EXPANDED_FORM "[0000:0000:0000:0000:0000:0000:0000:0000]:12345"
1503static char _socket_info_expanded_form[] = SOCKET_INFO_EXPANDED_FORM;
1504#define SOCKET_INFO_MAX_LEN (sizeof(_socket_info_expanded_form))
1505__LJMP static inline int hlua_socket_info(struct lua_State *L, struct sockaddr_storage *addr)
1506{
1507 static char buffer[SOCKET_INFO_MAX_LEN];
1508 int ret;
1509 int len;
1510 char *p;
1511
1512 ret = addr_to_str(addr, buffer+1, SOCKET_INFO_MAX_LEN-1);
1513 if (ret <= 0) {
1514 lua_pushnil(L);
1515 return 1;
1516 }
1517
1518 if (ret == AF_UNIX) {
1519 lua_pushstring(L, buffer+1);
1520 return 1;
1521 }
1522 else if (ret == AF_INET6) {
1523 buffer[0] = '[';
1524 len = strlen(buffer);
1525 buffer[len] = ']';
1526 len++;
1527 buffer[len] = ':';
1528 len++;
1529 p = buffer;
1530 }
1531 else if (ret == AF_INET) {
1532 p = buffer + 1;
1533 len = strlen(p);
1534 p[len] = ':';
1535 len++;
1536 }
1537 else {
1538 lua_pushnil(L);
1539 return 1;
1540 }
1541
1542 if (port_to_str(addr, p + len, SOCKET_INFO_MAX_LEN-1 - len) <= 0) {
1543 lua_pushnil(L);
1544 return 1;
1545 }
1546
1547 lua_pushstring(L, p);
1548 return 1;
1549}
1550
1551/* Returns information about the peer of the connection. */
1552__LJMP static int hlua_socket_getpeername(struct lua_State *L)
1553{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001554 struct hlua_socket *socket;
1555 struct connection *conn;
1556
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001557 MAY_LJMP(check_args(L, 1, "getpeername"));
1558
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001559 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001560
1561 /* Check if the tcp object is avalaible. */
1562 if (!socket->s) {
1563 lua_pushnil(L);
1564 return 1;
1565 }
1566
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001567 conn = objt_conn(socket->s->si[1].end);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001568 if (!conn) {
1569 lua_pushnil(L);
1570 return 1;
1571 }
1572
1573 if (!(conn->flags & CO_FL_ADDR_TO_SET)) {
1574 unsigned int salen = sizeof(conn->addr.to);
1575 if (getpeername(conn->t.sock.fd, (struct sockaddr *)&conn->addr.to, &salen) == -1) {
1576 lua_pushnil(L);
1577 return 1;
1578 }
1579 conn->flags |= CO_FL_ADDR_TO_SET;
1580 }
1581
1582 return MAY_LJMP(hlua_socket_info(L, &conn->addr.to));
1583}
1584
1585/* Returns information about my connection side. */
1586static int hlua_socket_getsockname(struct lua_State *L)
1587{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001588 struct hlua_socket *socket;
1589 struct connection *conn;
1590
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001591 MAY_LJMP(check_args(L, 1, "getsockname"));
1592
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001593 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001594
1595 /* Check if the tcp object is avalaible. */
1596 if (!socket->s) {
1597 lua_pushnil(L);
1598 return 1;
1599 }
1600
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001601 conn = objt_conn(socket->s->si[1].end);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001602 if (!conn) {
1603 lua_pushnil(L);
1604 return 1;
1605 }
1606
1607 if (!(conn->flags & CO_FL_ADDR_FROM_SET)) {
1608 unsigned int salen = sizeof(conn->addr.from);
1609 if (getsockname(conn->t.sock.fd, (struct sockaddr *)&conn->addr.from, &salen) == -1) {
1610 lua_pushnil(L);
1611 return 1;
1612 }
1613 conn->flags |= CO_FL_ADDR_FROM_SET;
1614 }
1615
1616 return hlua_socket_info(L, &conn->addr.from);
1617}
1618
1619/* This struct define the applet. */
1620static struct si_applet update_applet = {
1621 .obj_type = OBJ_TYPE_APPLET,
1622 .name = "<LUA_TCP>",
1623 .fct = hlua_socket_handler,
1624 .release = hlua_socket_release,
1625};
1626
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01001627__LJMP static int hlua_socket_connect_yield(struct lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001628{
1629 struct hlua_socket *socket = MAY_LJMP(hlua_checksocket(L, 1));
1630 struct hlua *hlua = hlua_gethlua(L);
1631 struct appctx *appctx;
1632
1633 /* Check for connection close. */
1634 if (!hlua || !socket->s || channel_output_closed(socket->s->req)) {
1635 lua_pushnil(L);
1636 lua_pushstring(L, "Can't connect");
1637 return 2;
1638 }
1639
1640 appctx = objt_appctx(socket->s->si[0].end);
1641
1642 /* Check for connection established. */
1643 if (appctx->ctx.hlua.connected) {
1644 lua_pushinteger(L, 1);
1645 return 1;
1646 }
1647
1648 if (!hlua_com_new(hlua, &appctx->ctx.hlua.wake_on_write))
1649 WILL_LJMP(luaL_error(L, "out of memory error"));
Thierry FOURNIER4abd3ae2015-03-03 17:29:06 +01001650 WILL_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_connect_yield, TICK_ETERNITY, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001651 return 0;
1652}
1653
1654/* This function fail or initite the connection. */
1655__LJMP static int hlua_socket_connect(struct lua_State *L)
1656{
1657 struct hlua_socket *socket;
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01001658 int port;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001659 const char *ip;
1660 struct connection *conn;
1661
1662 MAY_LJMP(check_args(L, 3, "connect"));
1663
1664 /* Get args. */
1665 socket = MAY_LJMP(hlua_checksocket(L, 1));
1666 ip = MAY_LJMP(luaL_checkstring(L, 2));
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01001667 port = MAY_LJMP(luaL_checkinteger(L, 3));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001668
1669 conn = si_alloc_conn(socket->s->req->cons, 0);
1670 if (!conn)
1671 WILL_LJMP(luaL_error(L, "connect: internal error"));
1672
1673 /* Parse ip address. */
1674 conn->addr.to.ss_family = AF_UNSPEC;
1675 if (!str2ip2(ip, &conn->addr.to, 0))
1676 WILL_LJMP(luaL_error(L, "connect: cannot parse ip address '%s'", ip));
1677
1678 /* Set port. */
1679 if (conn->addr.to.ss_family == AF_INET)
1680 ((struct sockaddr_in *)&conn->addr.to)->sin_port = htons(port);
1681 else if (conn->addr.to.ss_family == AF_INET6)
1682 ((struct sockaddr_in6 *)&conn->addr.to)->sin6_port = htons(port);
1683
1684 /* it is important not to call the wakeup function directly but to
1685 * pass through task_wakeup(), because this one knows how to apply
1686 * priorities to tasks.
1687 */
1688 task_wakeup(socket->s->task, TASK_WOKEN_INIT);
1689
Thierry FOURNIER4abd3ae2015-03-03 17:29:06 +01001690 WILL_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_connect_yield, TICK_ETERNITY, 0));
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001691
1692 return 0;
1693}
1694
Baptiste Assmann84bb4932015-03-02 21:40:06 +01001695#ifdef USE_OPENSSL
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001696__LJMP static int hlua_socket_connect_ssl(struct lua_State *L)
1697{
1698 struct hlua_socket *socket;
1699
1700 MAY_LJMP(check_args(L, 3, "connect_ssl"));
1701 socket = MAY_LJMP(hlua_checksocket(L, 1));
1702 socket->s->target = &socket_ssl.obj_type;
1703 return MAY_LJMP(hlua_socket_connect(L));
1704}
Baptiste Assmann84bb4932015-03-02 21:40:06 +01001705#endif
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001706
1707__LJMP static int hlua_socket_setoption(struct lua_State *L)
1708{
1709 return 0;
1710}
1711
1712__LJMP static int hlua_socket_settimeout(struct lua_State *L)
1713{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001714 struct hlua_socket *socket;
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01001715 int tmout;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001716
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001717 MAY_LJMP(check_args(L, 2, "settimeout"));
1718
Willy Tarreau80f5fae2015-02-27 16:38:20 +01001719 socket = MAY_LJMP(hlua_checksocket(L, 1));
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01001720 tmout = MAY_LJMP(luaL_checkinteger(L, 2)) * 1000;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001721
1722 socket->s->req->rto = tmout;
1723 socket->s->req->wto = tmout;
1724 socket->s->rep->rto = tmout;
1725 socket->s->rep->wto = tmout;
1726
1727 return 0;
1728}
1729
1730__LJMP static int hlua_socket_new(lua_State *L)
1731{
1732 struct hlua_socket *socket;
1733 struct appctx *appctx;
1734
1735 /* Check stack size. */
1736 if (!lua_checkstack(L, 2)) {
1737 hlua_pusherror(L, "socket: full stack");
1738 goto out_fail_conf;
1739 }
1740
1741 socket = MAY_LJMP(lua_newuserdata(L, sizeof(*socket)));
1742 memset(socket, 0, sizeof(*socket));
1743
Thierry FOURNIER4a6170c2015-03-09 17:07:10 +01001744 /* Check if the various memory pools are intialized. */
1745 if (!pool2_session || !pool2_channel || !pool2_buffer) {
1746 hlua_pusherror(L, "socket: uninitialized pools.");
1747 goto out_fail_conf;
1748 }
1749
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001750 /* Pop a class session metatable and affect it to the userdata. */
1751 lua_rawgeti(L, LUA_REGISTRYINDEX, class_socket_ref);
1752 lua_setmetatable(L, -2);
1753
1754 /*
1755 *
1756 * Get memory for the request.
1757 *
1758 */
1759
1760 socket->s = pool_alloc2(pool2_session);
1761 if (!socket->s) {
1762 hlua_pusherror(L, "socket: out of memory");
1763 goto out_fail_conf;
1764 }
1765
1766 socket->s->task = task_new();
1767 if (!socket->s->task) {
1768 hlua_pusherror(L, "socket: out of memory");
1769 goto out_free_session;
1770 }
1771
1772 socket->s->req = pool_alloc2(pool2_channel);
1773 if (!socket->s->req) {
1774 hlua_pusherror(L, "socket: out of memory");
1775 goto out_fail_req;
1776 }
1777
1778 socket->s->req->buf = pool_alloc2(pool2_buffer);
1779 if (!socket->s->req->buf) {
1780 hlua_pusherror(L, "socket: out of memory");
1781 goto out_fail_req_buf;
1782 }
1783
1784 socket->s->rep = pool_alloc2(pool2_channel);
1785 if (!socket->s->rep) {
1786 hlua_pusherror(L, "socket: out of memory");
1787 goto out_fail_rep;
1788 }
1789
1790 socket->s->rep->buf = pool_alloc2(pool2_buffer);
1791 if (!socket->s->rep->buf) {
1792 hlua_pusherror(L, "socket: out of memory");
1793 goto out_fail_rep_buf;
1794 }
1795
1796 /* Configura empty Lua for the session. */
1797 socket->s->hlua.T = NULL;
1798 socket->s->hlua.Tref = LUA_REFNIL;
1799 socket->s->hlua.Mref = LUA_REFNIL;
1800 socket->s->hlua.nargs = 0;
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01001801 socket->s->hlua.flags = 0;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01001802 LIST_INIT(&socket->s->hlua.com);
1803
1804 /* session initialisation. */
1805 session_init_srv_conn(socket->s);
1806
1807 /*
1808 *
1809 * Configure the associated task.
1810 *
1811 */
1812
1813 /* This is the dedicated function to process the session. This function
1814 * is able to establish the conection, process the timeouts, etc ...
1815 */
1816 socket->s->task->process = process_session;
1817
1818 /* Back reference to session. This is used by process_session(). */
1819 socket->s->task->context = socket->s;
1820
1821 /* The priority of the task is normal. */
1822 socket->s->task->nice = 0;
1823
1824 /* Init the next run to eternity. Later in this function, this task is
1825 * waked.
1826 */
1827 socket->s->task->expire = TICK_ETERNITY;
1828
1829 /*
1830 *
1831 * Initialize the attached buffers
1832 *
1833 */
1834 socket->s->req->buf->size = global.tune.bufsize;
1835 socket->s->rep->buf->size = global.tune.bufsize;
1836
1837 /*
1838 *
1839 * Initialize channels.
1840 *
1841 */
1842
1843 /* This function reset the struct. It must be called
1844 * before the configuration.
1845 */
1846 channel_init(socket->s->req);
1847 channel_init(socket->s->rep);
1848
1849 socket->s->req->prod = &socket->s->si[0];
1850 socket->s->req->cons = &socket->s->si[1];
1851
1852 socket->s->rep->prod = &socket->s->si[1];
1853 socket->s->rep->cons = &socket->s->si[0];
1854
1855 socket->s->si[0].ib = socket->s->req;
1856 socket->s->si[0].ob = socket->s->rep;
1857
1858 socket->s->si[1].ib = socket->s->rep;
1859 socket->s->si[1].ob = socket->s->req;
1860
1861 socket->s->req->analysers = 0;
1862 socket->s->req->rto = socket_proxy.timeout.client;
1863 socket->s->req->wto = socket_proxy.timeout.server;
1864 socket->s->req->rex = TICK_ETERNITY;
1865 socket->s->req->wex = TICK_ETERNITY;
1866 socket->s->req->analyse_exp = TICK_ETERNITY;
1867
1868 socket->s->rep->analysers = 0;
1869 socket->s->rep->rto = socket_proxy.timeout.server;
1870 socket->s->rep->wto = socket_proxy.timeout.client;
1871 socket->s->rep->rex = TICK_ETERNITY;
1872 socket->s->rep->wex = TICK_ETERNITY;
1873 socket->s->rep->analyse_exp = TICK_ETERNITY;
1874
1875 /*
1876 *
1877 * Configure the session.
1878 *
1879 */
1880
1881 /* The session dont have listener. The listener is used with real
1882 * proxies.
1883 */
1884 socket->s->listener = NULL;
1885
1886 /* The flags are initialized to 0. Values are setted later. */
1887 socket->s->flags = 0;
1888
1889 /* Assign the configured proxy to the new session. */
1890 socket->s->be = &socket_proxy;
1891 socket->s->fe = &socket_proxy;
1892
1893 /* XXX: Set namy variables */
1894 socket->s->store_count = 0;
1895 memset(socket->s->stkctr, 0, sizeof(socket->s->stkctr));
1896
1897 /* Configure logs. */
1898 socket->s->logs.logwait = 0;
1899 socket->s->logs.level = 0;
1900 socket->s->logs.accept_date = date; /* user-visible date for logging */
1901 socket->s->logs.tv_accept = now; /* corrected date for internal use */
1902 socket->s->do_log = NULL;
1903
1904 /* Function used if an error is occured. */
1905 socket->s->srv_error = default_srv_error;
1906
1907 /* Init the list of buffers. */
1908 LIST_INIT(&socket->s->buffer_wait);
1909
1910 /* Dont configure the unique ID. */
1911 socket->s->uniq_id = 0;
1912 socket->s->unique_id = NULL;
1913
1914 /* XXX: ? */
1915 socket->s->pend_pos = NULL;
1916
1917 /* XXX: See later. */
1918 socket->s->txn.sessid = NULL;
1919 socket->s->txn.srv_cookie = NULL;
1920 socket->s->txn.cli_cookie = NULL;
1921 socket->s->txn.uri = NULL;
1922 socket->s->txn.req.cap = NULL;
1923 socket->s->txn.rsp.cap = NULL;
1924 socket->s->txn.hdr_idx.v = NULL;
1925 socket->s->txn.hdr_idx.size = 0;
1926 socket->s->txn.hdr_idx.used = 0;
1927
1928 /* Configure "left" stream interface as applet. This "si" produce
1929 * and use the data received from the server. The applet is initialized
1930 * and is attached to the stream interface.
1931 */
1932
1933 /* The data producer is already connected. It is the applet. */
1934 socket->s->req->flags = CF_READ_ATTACHED;
1935
1936 channel_auto_connect(socket->s->req); /* don't wait to establish connection */
1937 channel_auto_close(socket->s->req); /* let the producer forward close requests */
1938
1939 si_reset(&socket->s->si[0], socket->s->task);
1940 si_set_state(&socket->s->si[0], SI_ST_EST); /* connection established (resource exists) */
1941
1942 appctx = stream_int_register_handler(&socket->s->si[0], &update_applet);
1943 if (!appctx)
1944 goto out_fail_conn1;
1945 appctx->ctx.hlua.socket = socket;
1946 appctx->ctx.hlua.connected = 0;
1947 LIST_INIT(&appctx->ctx.hlua.wake_on_write);
1948 LIST_INIT(&appctx->ctx.hlua.wake_on_read);
1949
1950 /* Configure "right" stream interface. this "si" is used to connect
1951 * and retrieve data from the server. The connection is initialized
1952 * with the "struct server".
1953 */
1954 si_reset(&socket->s->si[1], socket->s->task);
1955 si_set_state(&socket->s->si[1], SI_ST_INI);
1956 socket->s->si[1].conn_retries = socket_proxy.conn_retries;
1957
1958 /* Force destination server. */
1959 socket->s->flags |= SN_DIRECT | SN_ASSIGNED | SN_ADDR_SET | SN_BE_ASSIGNED;
1960 socket->s->target = &socket_tcp.obj_type;
1961
1962 /* This session is added to te lists of alive sessions. */
1963 LIST_ADDQ(&sessions, &socket->s->list);
1964
1965 /* XXX: I think that this list is used by stats. */
1966 LIST_INIT(&socket->s->back_refs);
1967
1968 /* Update statistics counters. */
1969 socket_proxy.feconn++; /* beconn will be increased later */
1970 jobs++;
1971 totalconn++;
1972
1973 /* Return yield waiting for connection. */
1974 return 1;
1975
1976out_fail_conn1:
1977 pool_free2(pool2_buffer, socket->s->rep->buf);
1978out_fail_rep_buf:
1979 pool_free2(pool2_channel, socket->s->rep);
1980out_fail_rep:
1981 pool_free2(pool2_buffer, socket->s->req->buf);
1982out_fail_req_buf:
1983 pool_free2(pool2_channel, socket->s->req);
1984out_fail_req:
1985 task_free(socket->s->task);
1986out_free_session:
1987 pool_free2(pool2_session, socket->s);
1988out_fail_conf:
1989 WILL_LJMP(lua_error(L));
1990 return 0;
1991}
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01001992
1993/*
1994 *
1995 *
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01001996 * Class Channel
1997 *
1998 *
1999 */
2000
2001/* Returns the struct hlua_channel join to the class channel in the
2002 * stack entry "ud" or throws an argument error.
2003 */
2004__LJMP static struct hlua_channel *hlua_checkchannel(lua_State *L, int ud)
2005{
2006 return (struct hlua_channel *)MAY_LJMP(hlua_checkudata(L, ud, class_channel_ref));
2007}
2008
2009/* Creates new channel object and put it on the top of the stack.
2010 * If the stask does not have a free slots, the function fails
2011 * and returns 0;
2012 */
Thierry FOURNIERbd1f1322015-03-05 17:04:41 +01002013static int hlua_channel_new(lua_State *L, struct session *s, struct channel *channel)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002014{
2015 struct hlua_channel *chn;
2016
2017 /* Check stack size. */
2018 if (!lua_checkstack(L, 2))
2019 return 0;
2020
2021 /* NOTE: The allocation never fails. The failure
2022 * throw an error, and the function never returns.
2023 */
2024 chn = lua_newuserdata(L, sizeof(*chn));
2025 chn->chn = channel;
Thierry FOURNIERbd1f1322015-03-05 17:04:41 +01002026 chn->s = s;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002027
2028 /* Pop a class sesison metatable and affect it to the userdata. */
2029 lua_rawgeti(L, LUA_REGISTRYINDEX, class_channel_ref);
2030 lua_setmetatable(L, -2);
2031
2032 return 1;
2033}
2034
2035/* Duplicate all the data present in the input channel and put it
2036 * in a string LUA variables. Returns -1 and push a nil value in
2037 * the stack if the channel is closed and all the data are consumed,
2038 * returns 0 if no data are available, otherwise it returns the length
2039 * of the builded string.
2040 */
2041static inline int _hlua_channel_dup(struct hlua_channel *chn, lua_State *L)
2042{
2043 char *blk1;
2044 char *blk2;
2045 int len1;
2046 int len2;
2047 int ret;
2048 luaL_Buffer b;
2049
2050 ret = bi_getblk_nc(chn->chn, &blk1, &len1, &blk2, &len2);
2051 if (unlikely(ret == 0))
2052 return 0;
2053
2054 if (unlikely(ret < 0)) {
2055 lua_pushnil(L);
2056 return -1;
2057 }
2058
2059 luaL_buffinit(L, &b);
2060 luaL_addlstring(&b, blk1, len1);
2061 if (unlikely(ret == 2))
2062 luaL_addlstring(&b, blk2, len2);
2063 luaL_pushresult(&b);
2064
2065 if (unlikely(ret == 2))
2066 return len1 + len2;
2067 return len1;
2068}
2069
2070/* "_hlua_channel_dup" wrapper. If no data are available, it returns
2071 * a yield. This function keep the data in the buffer.
2072 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002073__LJMP static int hlua_channel_dup_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002074{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002075 struct hlua_channel *chn;
2076
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002077 chn = MAY_LJMP(hlua_checkchannel(L, 1));
2078
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002079 if (_hlua_channel_dup(chn, L) == 0)
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002080 WILL_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_dup_yield, TICK_ETERNITY, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002081 return 1;
2082}
2083
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002084/* Check arguments for the function "hlua_channel_dup_yield". */
2085__LJMP static int hlua_channel_dup(lua_State *L)
2086{
2087 MAY_LJMP(check_args(L, 1, "dup"));
2088 MAY_LJMP(hlua_checkchannel(L, 1));
2089 return MAY_LJMP(hlua_channel_dup_yield(L, 0, 0));
2090}
2091
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002092/* "_hlua_channel_dup" wrapper. If no data are available, it returns
2093 * a yield. This function consumes the data in the buffer. It returns
2094 * a string containing the data or a nil pointer if no data are available
2095 * and the channel is closed.
2096 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002097__LJMP static int hlua_channel_get_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002098{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002099 struct hlua_channel *chn;
2100 int ret;
2101
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002102 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002103
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002104 ret = _hlua_channel_dup(chn, L);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002105 if (unlikely(ret == 0))
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002106 WILL_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_get_yield, TICK_ETERNITY, 0));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002107
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002108 if (unlikely(ret == -1))
2109 return 1;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002110
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002111 chn->chn->buf->i -= ret;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002112 return 1;
2113}
2114
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002115/* Check arguments for the fucntion "hlua_channel_get_yield". */
2116__LJMP static int hlua_channel_get(lua_State *L)
2117{
2118 MAY_LJMP(check_args(L, 1, "get"));
2119 MAY_LJMP(hlua_checkchannel(L, 1));
2120 return MAY_LJMP(hlua_channel_get_yield(L, 0, 0));
2121}
2122
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002123/* This functions consumes and returns one line. If the channel is closed,
2124 * and the last data does not contains a final '\n', the data are returned
2125 * without the final '\n'. When no more data are avalaible, it returns nil
2126 * value.
2127 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002128__LJMP static int hlua_channel_getline_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002129{
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002130 char *blk1;
2131 char *blk2;
2132 int len1;
2133 int len2;
2134 int len;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002135 struct hlua_channel *chn;
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002136 int ret;
2137 luaL_Buffer b;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002138
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002139 chn = MAY_LJMP(hlua_checkchannel(L, 1));
2140
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002141 ret = bi_getline_nc(chn->chn, &blk1, &len1, &blk2, &len2);
2142 if (ret == 0)
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002143 WILL_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_getline_yield, TICK_ETERNITY, 0));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002144
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002145 if (ret == -1) {
2146 lua_pushnil(L);
2147 return 1;
2148 }
2149
2150 luaL_buffinit(L, &b);
2151 luaL_addlstring(&b, blk1, len1);
2152 len = len1;
2153 if (unlikely(ret == 2)) {
2154 luaL_addlstring(&b, blk2, len2);
2155 len += len2;
2156 }
2157 luaL_pushresult(&b);
2158 buffer_replace2(chn->chn->buf, chn->chn->buf->p, chn->chn->buf->p + len, NULL, 0);
2159 return 1;
2160}
2161
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002162/* Check arguments for the fucntion "hlua_channel_getline_yield". */
2163__LJMP static int hlua_channel_getline(lua_State *L)
2164{
2165 MAY_LJMP(check_args(L, 1, "getline"));
2166 MAY_LJMP(hlua_checkchannel(L, 1));
2167 return MAY_LJMP(hlua_channel_getline_yield(L, 0, 0));
2168}
2169
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002170/* This function takes a string as input, and append it at the
2171 * input side of channel. If the data is too big, but a space
2172 * is probably available after sending some data, the function
2173 * yield. If the data is bigger than the buffer, or if the
2174 * channel is closed, it returns -1. otherwise, it returns the
2175 * amount of data writed.
2176 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002177__LJMP static int hlua_channel_append_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002178{
2179 struct hlua_channel *chn = MAY_LJMP(hlua_checkchannel(L, 1));
2180 size_t len;
2181 const char *str = MAY_LJMP(luaL_checklstring(L, 2, &len));
2182 int l = MAY_LJMP(luaL_checkinteger(L, 3));
2183 int ret;
2184 int max;
2185
2186 max = channel_recv_limit(chn->chn) - buffer_len(chn->chn->buf);
2187 if (max > len - l)
2188 max = len - l;
2189
2190 ret = bi_putblk(chn->chn, str+l, max);
2191 if (ret == -2 || ret == -3) {
2192 lua_pushinteger(L, -1);
2193 return 1;
2194 }
2195 if (ret == -1)
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002196 WILL_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_append_yield, TICK_ETERNITY, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002197 l += ret;
2198 lua_pop(L, 1);
2199 lua_pushinteger(L, l);
2200
2201 max = channel_recv_limit(chn->chn) - buffer_len(chn->chn->buf);
2202 if (max == 0 && chn->chn->buf->o == 0) {
2203 /* There are no space avalaible, and the output buffer is empty.
2204 * in this case, we cannot add more data, so we cannot yield,
2205 * we return the amount of copyied data.
2206 */
2207 return 1;
2208 }
2209 if (l < len)
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002210 WILL_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_append_yield, TICK_ETERNITY, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002211 return 1;
2212}
2213
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002214/* just a wrapper of "hlua_channel_append_yield". It returns the length
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002215 * of the writed string, or -1 if the channel is closed or if the
2216 * buffer size is too little for the data.
2217 */
2218__LJMP static int hlua_channel_append(lua_State *L)
2219{
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002220 size_t len;
2221
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002222 MAY_LJMP(check_args(L, 2, "append"));
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002223 MAY_LJMP(hlua_checkchannel(L, 1));
2224 MAY_LJMP(luaL_checklstring(L, 2, &len));
2225 MAY_LJMP(luaL_checkinteger(L, 3));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002226 lua_pushinteger(L, 0);
2227
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002228 return MAY_LJMP(hlua_channel_append_yield(L, 0, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002229}
2230
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002231/* just a wrapper of "hlua_channel_append_yield". This wrapper starts
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002232 * his process by cleaning the buffer. The result is a replacement
2233 * of the current data. It returns the length of the writed string,
2234 * or -1 if the channel is closed or if the buffer size is too
2235 * little for the data.
2236 */
2237__LJMP static int hlua_channel_set(lua_State *L)
2238{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002239 struct hlua_channel *chn;
2240
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002241 MAY_LJMP(check_args(L, 2, "set"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002242 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002243 lua_pushinteger(L, 0);
2244
2245 chn->chn->buf->i = 0;
2246
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002247 return MAY_LJMP(hlua_channel_append_yield(L, 0, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002248}
2249
2250/* Append data in the output side of the buffer. This data is immediatly
2251 * sent. The fcuntion returns the ammount of data writed. If the buffer
2252 * cannot contains the data, the function yield. The function returns -1
2253 * if the channel is closed.
2254 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002255__LJMP static int hlua_channel_send_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002256{
2257 struct hlua_channel *chn = MAY_LJMP(hlua_checkchannel(L, 1));
2258 size_t len;
2259 const char *str = MAY_LJMP(luaL_checklstring(L, 2, &len));
2260 int l = MAY_LJMP(luaL_checkinteger(L, 3));
2261 int max;
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01002262 struct hlua *hlua = hlua_gethlua(L);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002263
2264 if (unlikely(channel_output_closed(chn->chn))) {
2265 lua_pushinteger(L, -1);
2266 return 1;
2267 }
2268
Thierry FOURNIER3e3a6082015-03-05 17:06:12 +01002269 /* Check if the buffer is avalaible because HAProxy doesn't allocate
2270 * the request buffer if its not required.
2271 */
2272 if (chn->chn->buf->size == 0) {
2273 if (!session_alloc_recv_buffer(chn->s, &chn->chn->buf)) {
2274 chn->chn->prod->flags |= SI_FL_WAIT_ROOM;
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002275 WILL_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_send_yield, TICK_ETERNITY, 0));
Thierry FOURNIER3e3a6082015-03-05 17:06:12 +01002276 }
2277 }
2278
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01002279 /* the writed data will be immediatly sent, so we can check
2280 * the avalaible space without taking in account the reserve.
2281 * The reserve is guaranted for the processing of incoming
2282 * data, because the buffer will be flushed.
2283 */
2284 max = chn->chn->buf->size - buffer_len(chn->chn->buf);
2285
2286 /* If there are no space avalaible, and the output buffer is empty.
2287 * in this case, we cannot add more data, so we cannot yield,
2288 * we return the amount of copyied data.
2289 */
2290 if (max == 0 && chn->chn->buf->o == 0)
2291 return 1;
2292
2293 /* Adjust the real required length. */
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002294 if (max > len - l)
2295 max = len - l;
2296
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01002297 /* The buffer avalaible size may be not contiguous. This test
2298 * detects a non contiguous buffer and realign it.
2299 */
Thierry FOURNIERd2b597a2015-03-07 14:38:50 +01002300 if (bi_space_for_replace(chn->chn->buf) < max)
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01002301 buffer_slow_realign(chn->chn->buf);
2302
2303 /* Copy input data in the buffer. */
Thierry FOURNIER506e46c2015-03-04 11:44:47 +01002304 max = buffer_replace2(chn->chn->buf, chn->chn->buf->p, chn->chn->buf->p, str+l, max);
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01002305
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002306 /* buffer replace considers that the input part is filled.
2307 * so, I must forward these new data in the output part.
2308 */
2309 b_adv(chn->chn->buf, max);
2310
2311 l += max;
2312 lua_pop(L, 1);
2313 lua_pushinteger(L, l);
2314
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01002315 /* If there are no space avalaible, and the output buffer is empty.
2316 * in this case, we cannot add more data, so we cannot yield,
2317 * we return the amount of copyied data.
2318 */
2319 max = chn->chn->buf->size - buffer_len(chn->chn->buf);
2320 if (max == 0 && chn->chn->buf->o == 0)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002321 return 1;
Thierry FOURNIERdeb5d732015-03-06 01:07:45 +01002322
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01002323 if (l < len) {
2324 /* If we are waiting for space in the response buffer, we
2325 * must set the flag WAKERESWR. This flag required the task
2326 * wake up if any activity is detected on the response buffer.
2327 */
2328 if (chn->chn == chn->s->rep)
2329 HLUA_SET_WAKERESWR(hlua);
Thierry FOURNIER53e08ec2015-03-06 00:35:53 +01002330 else
2331 HLUA_SET_WAKEREQWR(hlua);
2332 WILL_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_send_yield, TICK_ETERNITY, 0));
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01002333 }
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002334
2335 return 1;
2336}
2337
2338/* Just a wraper of "_hlua_channel_send". This wrapper permits
2339 * yield the LUA process, and resume it without checking the
2340 * input arguments.
2341 */
2342__LJMP static int hlua_channel_send(lua_State *L)
2343{
2344 MAY_LJMP(check_args(L, 2, "send"));
2345 lua_pushinteger(L, 0);
2346
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002347 return MAY_LJMP(hlua_channel_send_yield(L, 0, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002348}
2349
2350/* This function forward and amount of butes. The data pass from
2351 * the input side of the buffer to the output side, and can be
2352 * forwarded. This function never fails.
2353 *
2354 * The Lua function takes an amount of bytes to be forwarded in
2355 * imput. It returns the number of bytes forwarded.
2356 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002357__LJMP static int hlua_channel_forward_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002358{
2359 struct hlua_channel *chn;
2360 int len;
2361 int l;
2362 int max;
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01002363 struct hlua *hlua = hlua_gethlua(L);
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002364
2365 chn = MAY_LJMP(hlua_checkchannel(L, 1));
2366 len = MAY_LJMP(luaL_checkinteger(L, 2));
2367 l = MAY_LJMP(luaL_checkinteger(L, -1));
2368
2369 max = len - l;
2370 if (max > chn->chn->buf->i)
2371 max = chn->chn->buf->i;
2372 channel_forward(chn->chn, max);
2373 l += max;
2374
2375 lua_pop(L, 1);
2376 lua_pushinteger(L, l);
2377
2378 /* Check if it miss bytes to forward. */
2379 if (l < len) {
2380 /* The the input channel or the output channel are closed, we
2381 * must return the amount of data forwarded.
2382 */
2383 if (channel_input_closed(chn->chn) || channel_output_closed(chn->chn))
2384 return 1;
2385
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01002386 /* If we are waiting for space data in the response buffer, we
2387 * must set the flag WAKERESWR. This flag required the task
2388 * wake up if any activity is detected on the response buffer.
2389 */
2390 if (chn->chn == chn->s->rep)
2391 HLUA_SET_WAKERESWR(hlua);
Thierry FOURNIER53e08ec2015-03-06 00:35:53 +01002392 else
2393 HLUA_SET_WAKEREQWR(hlua);
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01002394
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002395 /* Otherwise, we can yield waiting for new data in the inpout side. */
Thierry FOURNIER4abd3ae2015-03-03 17:29:06 +01002396 WILL_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_forward_yield, TICK_ETERNITY, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002397 }
2398
2399 return 1;
2400}
2401
2402/* Just check the input and prepare the stack for the previous
2403 * function "hlua_channel_forward_yield"
2404 */
2405__LJMP static int hlua_channel_forward(lua_State *L)
2406{
2407 MAY_LJMP(check_args(L, 2, "forward"));
2408 MAY_LJMP(hlua_checkchannel(L, 1));
2409 MAY_LJMP(luaL_checkinteger(L, 2));
2410
2411 lua_pushinteger(L, 0);
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002412 return MAY_LJMP(hlua_channel_forward_yield(L, 0, 0));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002413}
2414
2415/* Just returns the number of bytes available in the input
2416 * side of the buffer. This function never fails.
2417 */
2418__LJMP static int hlua_channel_get_in_len(lua_State *L)
2419{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002420 struct hlua_channel *chn;
2421
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002422 MAY_LJMP(check_args(L, 1, "get_in_len"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002423 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002424 lua_pushinteger(L, chn->chn->buf->i);
2425 return 1;
2426}
2427
2428/* Just returns the number of bytes available in the output
2429 * side of the buffer. This function never fails.
2430 */
2431__LJMP static int hlua_channel_get_out_len(lua_State *L)
2432{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002433 struct hlua_channel *chn;
2434
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002435 MAY_LJMP(check_args(L, 1, "get_out_len"));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002436 chn = MAY_LJMP(hlua_checkchannel(L, 1));
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01002437 lua_pushinteger(L, chn->chn->buf->o);
2438 return 1;
2439}
2440
2441
2442/*
2443 *
2444 *
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01002445 * Class TXN
2446 *
2447 *
2448 */
2449
2450/* Returns a struct hlua_session if the stack entry "ud" is
2451 * a class session, otherwise it throws an error.
2452 */
2453__LJMP static struct hlua_txn *hlua_checktxn(lua_State *L, int ud)
2454{
2455 return (struct hlua_txn *)MAY_LJMP(hlua_checkudata(L, ud, class_txn_ref));
2456}
2457
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01002458__LJMP static int hlua_setpriv(lua_State *L)
2459{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002460 struct hlua *hlua;
2461
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01002462 MAY_LJMP(check_args(L, 2, "set_priv"));
2463
2464 /* It is useles to retrieve the session, but this function
2465 * runs only in a session context.
2466 */
2467 MAY_LJMP(hlua_checktxn(L, 1));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002468 hlua = hlua_gethlua(L);
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01002469
2470 /* Remove previous value. */
2471 if (hlua->Mref != -1)
2472 luaL_unref(L, hlua->Mref, LUA_REGISTRYINDEX);
2473
2474 /* Get and store new value. */
2475 lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */
2476 hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */
2477
2478 return 0;
2479}
2480
2481__LJMP static int hlua_getpriv(lua_State *L)
2482{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002483 struct hlua *hlua;
2484
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01002485 MAY_LJMP(check_args(L, 1, "get_priv"));
2486
2487 /* It is useles to retrieve the session, but this function
2488 * runs only in a session context.
2489 */
2490 MAY_LJMP(hlua_checktxn(L, 1));
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002491 hlua = hlua_gethlua(L);
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01002492
2493 /* Push configuration index in the stack. */
2494 lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref);
2495
2496 return 1;
2497}
2498
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01002499/* Create stack entry containing a class TXN. This function
2500 * return 0 if the stack does not contains free slots,
2501 * otherwise it returns 1.
2502 */
2503static int hlua_txn_new(lua_State *L, struct session *s, struct proxy *p, void *l7)
2504{
2505 struct hlua_txn *hs;
2506
2507 /* Check stack size. */
2508 if (!lua_checkstack(L, 2))
2509 return 0;
2510
2511 /* NOTE: The allocation never fails. The failure
2512 * throw an error, and the function never returns.
2513 * if the throw is not avalaible, the process is aborted.
2514 */
2515 hs = lua_newuserdata(L, sizeof(struct hlua_txn));
2516 hs->s = s;
2517 hs->p = p;
2518 hs->l7 = l7;
2519
2520 /* Pop a class sesison metatable and affect it to the userdata. */
2521 lua_rawgeti(L, LUA_REGISTRYINDEX, class_txn_ref);
2522 lua_setmetatable(L, -2);
2523
2524 return 1;
2525}
2526
Thierry FOURNIERe94e7742015-02-17 14:59:53 +01002527/* This function returns a channel object associated
2528 * with the request channel. This function never fails,
2529 * however if the stack is full, it throws an error.
2530 */
2531__LJMP static int hlua_txn_req_channel(lua_State *L)
2532{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002533 struct hlua_txn *s;
Thierry FOURNIERe94e7742015-02-17 14:59:53 +01002534
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002535 MAY_LJMP(check_args(L, 1, "req_channel"));
2536 s = MAY_LJMP(hlua_checktxn(L, 1));
Thierry FOURNIERe94e7742015-02-17 14:59:53 +01002537
Thierry FOURNIERbd1f1322015-03-05 17:04:41 +01002538 if (!hlua_channel_new(L, s->s, s->s->req))
Thierry FOURNIERe94e7742015-02-17 14:59:53 +01002539 WILL_LJMP(luaL_error(L, "full stack"));
2540
2541 return 1;
2542}
2543
2544/* This function returns a channel object associated
2545 * with the response channel. This function never fails,
2546 * however if the stack is full, it throws an error.
2547 */
2548__LJMP static int hlua_txn_res_channel(lua_State *L)
2549{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002550 struct hlua_txn *s;
Thierry FOURNIERe94e7742015-02-17 14:59:53 +01002551
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002552 MAY_LJMP(check_args(L, 1, "req_channel"));
2553 s = MAY_LJMP(hlua_checktxn(L, 1));
Thierry FOURNIERe94e7742015-02-17 14:59:53 +01002554
Thierry FOURNIERbd1f1322015-03-05 17:04:41 +01002555 if (!hlua_channel_new(L, s->s, s->s->rep))
Thierry FOURNIERe94e7742015-02-17 14:59:53 +01002556 WILL_LJMP(luaL_error(L, "full stack"));
2557
2558 return 1;
2559}
2560
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01002561/* This function is an Lua binding that send pending data
2562 * to the client, and close the stream interface.
2563 */
2564__LJMP static int hlua_txn_close(lua_State *L)
2565{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002566 struct hlua_txn *s;
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01002567
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002568 MAY_LJMP(check_args(L, 1, "close"));
2569 s = MAY_LJMP(hlua_checktxn(L, 1));
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01002570
2571 channel_abort(s->s->si[0].ib);
2572 channel_auto_close(s->s->si[0].ib);
2573 channel_erase(s->s->si[0].ib);
2574 channel_auto_read(s->s->si[0].ob);
2575 channel_auto_close(s->s->si[0].ob);
2576 channel_shutr_now(s->s->si[0].ob);
2577
2578 return 0;
2579}
2580
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +01002581/* This function is an LUA binding. It is called with each sample-fetch.
2582 * It uses closure argument to store the associated sample-fetch. It
Cyril Bonté928ae5c2015-03-02 00:08:41 +01002583 * returns only one argument or throws an error. An error is thrown
2584 * only if an error is encountered during the argument parsing. If
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +01002585 * the "sample-fetch" function fails, nil is returned.
2586 */
2587__LJMP static int hlua_run_sample_fetch(lua_State *L)
2588{
2589 struct hlua_txn *s;
2590 struct hlua_sample_fetch *f;
Cyril Bonté928ae5c2015-03-02 00:08:41 +01002591 struct arg args[ARGM_NBARGS + 1];
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +01002592 int i;
2593 struct sample smp;
2594
2595 /* Get closure arguments. */
2596 f = (struct hlua_sample_fetch *)lua_touserdata(L, lua_upvalueindex(1));
2597
2598 /* Get traditionnal arguments. */
2599 s = MAY_LJMP(hlua_checktxn(L, 1));
2600
2601 /* Get extra arguments. */
Cyril Bonté928ae5c2015-03-02 00:08:41 +01002602 for (i = 0; i < lua_gettop(L) - 1; i++) {
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +01002603 if (i >= ARGM_NBARGS)
2604 break;
2605 hlua_lua2arg(L, i + 2, &args[i]);
2606 }
2607 args[i].type = ARGT_STOP;
2608
2609 /* Check arguments. */
2610 MAY_LJMP(hlua_lua2arg_check(L, 1, args, f->f->arg_mask));
2611
Cyril Bonté928ae5c2015-03-02 00:08:41 +01002612 /* Run the special args checker. */
2613 if (f->f->val_args && !f->f->val_args(args, NULL)) {
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +01002614 lua_pushfstring(L, "error in arguments");
2615 WILL_LJMP(lua_error(L));
2616 }
2617
2618 /* Initialise the sample. */
2619 memset(&smp, 0, sizeof(smp));
2620
2621 /* Run the sample fetch process. */
2622 if (!f->f->process(s->p, s->s, s->l7, 0, args, &smp, f->f->kw, f->f->private)) {
2623 lua_pushnil(L);
2624 return 1;
2625 }
2626
2627 /* Convert the returned sample in lua value. */
2628 hlua_smp2lua(L, &smp);
2629 return 1;
2630}
2631
Thierry FOURNIER9a819e72015-02-16 20:22:55 +01002632/* This function is an LUA binding. It creates ans returns
2633 * an array of HTTP headers. This function does not fails.
2634 */
2635static int hlua_session_getheaders(lua_State *L)
2636{
2637 struct hlua_txn *s = MAY_LJMP(hlua_checktxn(L, 1));
2638 struct session *sess = s->s;
2639 const char *cur_ptr, *cur_next, *p;
2640 int old_idx, cur_idx;
2641 struct hdr_idx_elem *cur_hdr;
2642 const char *hn, *hv;
2643 int hnl, hvl;
2644
2645 /* Create the table. */
2646 lua_newtable(L);
2647
2648 /* Build array of headers. */
2649 old_idx = 0;
2650 cur_next = sess->req->buf->p + hdr_idx_first_pos(&sess->txn.hdr_idx);
2651
2652 while (1) {
2653 cur_idx = sess->txn.hdr_idx.v[old_idx].next;
2654 if (!cur_idx)
2655 break;
2656 old_idx = cur_idx;
2657
2658 cur_hdr = &sess->txn.hdr_idx.v[cur_idx];
2659 cur_ptr = cur_next;
2660 cur_next = cur_ptr + cur_hdr->len + cur_hdr->cr + 1;
2661
2662 /* Now we have one full header at cur_ptr of len cur_hdr->len,
2663 * and the next header starts at cur_next. We'll check
2664 * this header in the list as well as against the default
2665 * rule.
2666 */
2667
2668 /* look for ': *'. */
2669 hn = cur_ptr;
2670 for (p = cur_ptr; p < cur_ptr + cur_hdr->len && *p != ':'; p++);
2671 if (p >= cur_ptr+cur_hdr->len)
2672 continue;
2673 hnl = p - hn;
2674 p++;
2675 while (p < cur_ptr+cur_hdr->len && ( *p == ' ' || *p == '\t' ))
2676 p++;
2677 if (p >= cur_ptr+cur_hdr->len)
2678 continue;
2679 hv = p;
2680 hvl = cur_ptr+cur_hdr->len-p;
2681
2682 /* Push values in the table. */
2683 lua_pushlstring(L, hn, hnl);
2684 lua_pushlstring(L, hv, hvl);
2685 lua_settable(L, -3);
2686 }
2687
2688 return 1;
2689}
2690
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002691__LJMP static int hlua_sleep_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01002692{
2693 int wakeup_ms = lua_tointeger(L, -1);
2694 if (now_ms < wakeup_ms)
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01002695 WILL_LJMP(hlua_yieldk(L, 0, 0, hlua_sleep_yield, wakeup_ms, 0));
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01002696 return 0;
2697}
2698
2699__LJMP static int hlua_sleep(lua_State *L)
2700{
2701 unsigned int delay;
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01002702 unsigned int wakeup_ms;
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01002703
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01002704 MAY_LJMP(check_args(L, 1, "sleep"));
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01002705
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002706 delay = MAY_LJMP(luaL_checkinteger(L, 1)) * 1000;
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01002707 wakeup_ms = tick_add(now_ms, delay);
2708 lua_pushinteger(L, wakeup_ms);
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01002709
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01002710 WILL_LJMP(hlua_yieldk(L, 0, 0, hlua_sleep_yield, wakeup_ms, 0));
2711 return 0;
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01002712}
2713
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01002714__LJMP static int hlua_msleep(lua_State *L)
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01002715{
2716 unsigned int delay;
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01002717 unsigned int wakeup_ms;
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01002718
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01002719 MAY_LJMP(check_args(L, 1, "msleep"));
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01002720
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002721 delay = MAY_LJMP(luaL_checkinteger(L, 1));
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01002722 wakeup_ms = tick_add(now_ms, delay);
2723 lua_pushinteger(L, wakeup_ms);
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01002724
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01002725 WILL_LJMP(hlua_yieldk(L, 0, 0, hlua_sleep_yield, wakeup_ms, 0));
2726 return 0;
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01002727}
2728
Thierry FOURNIER13416fe2015-02-17 15:01:59 +01002729/* This functionis an LUA binding. it permits to give back
2730 * the hand at the HAProxy scheduler. It is used when the
2731 * LUA processing consumes a lot of time.
2732 */
Thierry FOURNIERf90838b2015-03-06 13:48:32 +01002733__LJMP static int hlua_yield_yield(lua_State *L, int status, lua_KContext ctx)
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01002734{
2735 return 0;
2736}
2737
Thierry FOURNIER13416fe2015-02-17 15:01:59 +01002738__LJMP static int hlua_yield(lua_State *L)
2739{
Thierry FOURNIERd44731f2015-03-04 15:51:09 +01002740 WILL_LJMP(hlua_yieldk(L, 0, 0, hlua_yield_yield, TICK_ETERNITY, HLUA_CTRLYIELD));
2741 return 0;
Thierry FOURNIER13416fe2015-02-17 15:01:59 +01002742}
2743
Thierry FOURNIER37196f42015-02-16 19:34:56 +01002744/* This function change the nice of the currently executed
2745 * task. It is used set low or high priority at the current
2746 * task.
2747 */
2748__LJMP static int hlua_setnice(lua_State *L)
2749{
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002750 struct hlua *hlua;
2751 int nice;
Thierry FOURNIER37196f42015-02-16 19:34:56 +01002752
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002753 MAY_LJMP(check_args(L, 1, "set_nice"));
2754 hlua = hlua_gethlua(L);
2755 nice = MAY_LJMP(luaL_checkinteger(L, 1));
Thierry FOURNIER37196f42015-02-16 19:34:56 +01002756
2757 /* If he task is not set, I'm in a start mode. */
2758 if (!hlua || !hlua->task)
2759 return 0;
2760
2761 if (nice < -1024)
2762 nice = -1024;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01002763 else if (nice > 1024)
Thierry FOURNIER37196f42015-02-16 19:34:56 +01002764 nice = 1024;
2765
2766 hlua->task->nice = nice;
2767 return 0;
2768}
2769
Thierry FOURNIER24f33532015-01-23 12:13:00 +01002770/* This function is used as a calback of a task. It is called by the
2771 * HAProxy task subsystem when the task is awaked. The LUA runtime can
2772 * return an E_AGAIN signal, the emmiter of this signal must set a
2773 * signal to wake the task.
2774 */
2775static struct task *hlua_process_task(struct task *task)
2776{
2777 struct hlua *hlua = task->context;
2778 enum hlua_exec status;
2779
2780 /* We need to remove the task from the wait queue before executing
2781 * the Lua code because we don't know if it needs to wait for
2782 * another timer or not in the case of E_AGAIN.
2783 */
2784 task_delete(task);
2785
Thierry FOURNIERbd413492015-03-03 16:52:26 +01002786 /* If it is the first call to the task, we must initialize the
2787 * execution timeouts.
2788 */
2789 if (!HLUA_IS_RUNNING(hlua))
2790 hlua->expire = tick_add(now_ms, hlua_timeout_task);
2791
Thierry FOURNIER24f33532015-01-23 12:13:00 +01002792 /* Execute the Lua code. */
2793 status = hlua_ctx_resume(hlua, 1);
2794
2795 switch (status) {
2796 /* finished or yield */
2797 case HLUA_E_OK:
2798 hlua_ctx_destroy(hlua);
2799 task_delete(task);
2800 task_free(task);
2801 break;
2802
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01002803 case HLUA_E_AGAIN: /* co process or timeout wake me later. */
2804 if (hlua->wake_time != TICK_ETERNITY)
2805 task_schedule(task, hlua->wake_time);
Thierry FOURNIER24f33532015-01-23 12:13:00 +01002806 break;
2807
2808 /* finished with error. */
2809 case HLUA_E_ERRMSG:
2810 send_log(NULL, LOG_ERR, "Lua task: %s.", lua_tostring(hlua->T, -1));
2811 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))
2812 Alert("Lua task: %s.\n", lua_tostring(hlua->T, -1));
2813 hlua_ctx_destroy(hlua);
2814 task_delete(task);
2815 task_free(task);
2816 break;
2817
2818 case HLUA_E_ERR:
2819 default:
2820 send_log(NULL, LOG_ERR, "Lua task: unknown error.");
2821 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))
2822 Alert("Lua task: unknown error.\n");
2823 hlua_ctx_destroy(hlua);
2824 task_delete(task);
2825 task_free(task);
2826 break;
2827 }
2828 return NULL;
2829}
2830
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01002831/* This function is an LUA binding that register LUA function to be
2832 * executed after the HAProxy configuration parsing and before the
2833 * HAProxy scheduler starts. This function expect only one LUA
2834 * argument that is a function. This function returns nothing, but
2835 * throws if an error is encountered.
2836 */
2837__LJMP static int hlua_register_init(lua_State *L)
2838{
2839 struct hlua_init_function *init;
2840 int ref;
2841
2842 MAY_LJMP(check_args(L, 1, "register_init"));
2843
2844 ref = MAY_LJMP(hlua_checkfunction(L, 1));
2845
2846 init = malloc(sizeof(*init));
2847 if (!init)
2848 WILL_LJMP(luaL_error(L, "lua out of memory error."));
2849
2850 init->function_ref = ref;
2851 LIST_ADDQ(&hlua_init_functions, &init->l);
2852 return 0;
2853}
2854
Thierry FOURNIER24f33532015-01-23 12:13:00 +01002855/* This functio is an LUA binding. It permits to register a task
2856 * executed in parallel of the main HAroxy activity. The task is
2857 * created and it is set in the HAProxy scheduler. It can be called
2858 * from the "init" section, "post init" or during the runtime.
2859 *
2860 * Lua prototype:
2861 *
2862 * <none> core.register_task(<function>)
2863 */
2864static int hlua_register_task(lua_State *L)
2865{
2866 struct hlua *hlua;
2867 struct task *task;
2868 int ref;
2869
2870 MAY_LJMP(check_args(L, 1, "register_task"));
2871
2872 ref = MAY_LJMP(hlua_checkfunction(L, 1));
2873
2874 hlua = malloc(sizeof(*hlua));
2875 if (!hlua)
2876 WILL_LJMP(luaL_error(L, "lua out of memory error."));
2877
2878 task = task_new();
2879 task->context = hlua;
2880 task->process = hlua_process_task;
2881
2882 if (!hlua_ctx_init(hlua, task))
2883 WILL_LJMP(luaL_error(L, "lua out of memory error."));
2884
2885 /* Restore the function in the stack. */
2886 lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, ref);
2887 hlua->nargs = 0;
2888
2889 /* Schedule task. */
2890 task_schedule(task, now_ms);
2891
2892 return 0;
2893}
2894
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01002895/* Wrapper called by HAProxy to execute an LUA converter. This wrapper
2896 * doesn't allow "yield" functions because the HAProxy engine cannot
2897 * resume converters.
2898 */
2899static int hlua_sample_conv_wrapper(struct session *session, const struct arg *arg_p,
2900 struct sample *smp, void *private)
2901{
2902 struct hlua_function *fcn = (struct hlua_function *)private;
2903
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01002904 /* In the execution wrappers linked with a session, the
2905 * Lua context can be not initialized. This behavior
2906 * permits to save performances because a systematic
2907 * Lua initialization cause 5% performances loss.
2908 */
2909 if (!session->hlua.T && !hlua_ctx_init(&session->hlua, session->task)) {
2910 send_log(session->be, LOG_ERR, "Lua converter '%s': can't initialize Lua context.", fcn->name);
2911 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))
2912 Alert("Lua converter '%s': can't initialize Lua context.\n", fcn->name);
2913 return 0;
2914 }
2915
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01002916 /* If it is the first run, initialize the data for the call. */
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01002917 if (!HLUA_IS_RUNNING(&session->hlua)) {
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01002918 /* Check stack available size. */
2919 if (!lua_checkstack(session->hlua.T, 1)) {
2920 send_log(session->be, LOG_ERR, "Lua converter '%s': full stack.", fcn->name);
2921 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))
2922 Alert("Lua converter '%s': full stack.\n", fcn->name);
2923 return 0;
2924 }
2925
2926 /* Restore the function in the stack. */
2927 lua_rawgeti(session->hlua.T, LUA_REGISTRYINDEX, fcn->function_ref);
2928
2929 /* convert input sample and pust-it in the stack. */
2930 if (!lua_checkstack(session->hlua.T, 1)) {
2931 send_log(session->be, LOG_ERR, "Lua converter '%s': full stack.", fcn->name);
2932 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))
2933 Alert("Lua converter '%s': full stack.\n", fcn->name);
2934 return 0;
2935 }
2936 hlua_smp2lua(session->hlua.T, smp);
2937 session->hlua.nargs = 2;
2938
2939 /* push keywords in the stack. */
2940 if (arg_p) {
2941 for (; arg_p->type != ARGT_STOP; arg_p++) {
2942 if (!lua_checkstack(session->hlua.T, 1)) {
2943 send_log(session->be, LOG_ERR, "Lua converter '%s': full stack.", fcn->name);
2944 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))
2945 Alert("Lua converter '%s': full stack.\n", fcn->name);
2946 return 0;
2947 }
2948 hlua_arg2lua(session->hlua.T, arg_p);
2949 session->hlua.nargs++;
2950 }
2951 }
2952
Thierry FOURNIERbd413492015-03-03 16:52:26 +01002953 /* We must initialize the execution timeouts. */
2954 session->hlua.expire = tick_add(now_ms, hlua_timeout_session);
2955
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01002956 /* Set the currently running flag. */
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01002957 HLUA_SET_RUN(&session->hlua);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01002958 }
2959
2960 /* Execute the function. */
2961 switch (hlua_ctx_resume(&session->hlua, 0)) {
2962 /* finished. */
2963 case HLUA_E_OK:
2964 /* Convert the returned value in sample. */
2965 hlua_lua2smp(session->hlua.T, -1, smp);
2966 lua_pop(session->hlua.T, 1);
2967 return 1;
2968
2969 /* yield. */
2970 case HLUA_E_AGAIN:
2971 send_log(session->be, LOG_ERR, "Lua converter '%s': cannot use yielded functions.", fcn->name);
2972 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))
2973 Alert("Lua converter '%s': cannot use yielded functions.\n", fcn->name);
2974 return 0;
2975
2976 /* finished with error. */
2977 case HLUA_E_ERRMSG:
2978 /* Display log. */
2979 send_log(session->be, LOG_ERR, "Lua converter '%s': %s.", fcn->name, lua_tostring(session->hlua.T, -1));
2980 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))
2981 Alert("Lua converter '%s': %s.\n", fcn->name, lua_tostring(session->hlua.T, -1));
2982 lua_pop(session->hlua.T, 1);
2983 return 0;
2984
2985 case HLUA_E_ERR:
2986 /* Display log. */
2987 send_log(session->be, LOG_ERR, "Lua converter '%s' returns an unknown error.", fcn->name);
2988 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))
2989 Alert("Lua converter '%s' returns an unknown error.\n", fcn->name);
2990
2991 default:
2992 return 0;
2993 }
2994}
2995
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01002996/* Wrapper called by HAProxy to execute a sample-fetch. this wrapper
2997 * doesn't allow "yield" functions because the HAProxy engine cannot
2998 * resume sample-fetches.
2999 */
3000static int hlua_sample_fetch_wrapper(struct proxy *px, struct session *s, void *l7,
3001 unsigned int opt, const struct arg *arg_p,
3002 struct sample *smp, const char *kw, void *private)
3003{
3004 struct hlua_function *fcn = (struct hlua_function *)private;
3005
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01003006 /* In the execution wrappers linked with a session, the
3007 * Lua context can be not initialized. This behavior
3008 * permits to save performances because a systematic
3009 * Lua initialization cause 5% performances loss.
3010 */
3011 if (!s->hlua.T && !hlua_ctx_init(&s->hlua, s->task)) {
3012 send_log(s->be, LOG_ERR, "Lua sample-fetch '%s': can't initialize Lua context.", fcn->name);
3013 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))
3014 Alert("Lua sample-fetch '%s': can't initialize Lua context.\n", fcn->name);
3015 return 0;
3016 }
3017
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01003018 /* If it is the first run, initialize the data for the call. */
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01003019 if (!HLUA_IS_RUNNING(&s->hlua)) {
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01003020 /* Check stack available size. */
3021 if (!lua_checkstack(s->hlua.T, 2)) {
3022 send_log(px, LOG_ERR, "Lua sample-fetch '%s': full stack.", fcn->name);
3023 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))
3024 Alert("Lua sample-fetch '%s': full stack.\n", fcn->name);
3025 return 0;
3026 }
3027
3028 /* Restore the function in the stack. */
3029 lua_rawgeti(s->hlua.T, LUA_REGISTRYINDEX, fcn->function_ref);
3030
3031 /* push arguments in the stack. */
3032 if (!hlua_txn_new(s->hlua.T, s, px, l7)) {
3033 send_log(px, LOG_ERR, "Lua sample-fetch '%s': full stack.", fcn->name);
3034 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))
3035 Alert("Lua sample-fetch '%s': full stack.\n", fcn->name);
3036 return 0;
3037 }
3038 s->hlua.nargs = 1;
3039
3040 /* push keywords in the stack. */
3041 for (; arg_p && arg_p->type != ARGT_STOP; arg_p++) {
3042 /* Check stack available size. */
3043 if (!lua_checkstack(s->hlua.T, 1)) {
3044 send_log(px, LOG_ERR, "Lua sample-fetch '%s': full stack.", fcn->name);
3045 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))
3046 Alert("Lua sample-fetch '%s': full stack.\n", fcn->name);
3047 return 0;
3048 }
3049 if (!lua_checkstack(s->hlua.T, 1)) {
3050 send_log(px, LOG_ERR, "Lua sample-fetch '%s': full stack.", fcn->name);
3051 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))
3052 Alert("Lua sample-fetch '%s': full stack.\n", fcn->name);
3053 return 0;
3054 }
3055 hlua_arg2lua(s->hlua.T, arg_p);
3056 s->hlua.nargs++;
3057 }
3058
Thierry FOURNIERbd413492015-03-03 16:52:26 +01003059 /* We must initialize the execution timeouts. */
3060 s->hlua.expire = tick_add(now_ms, hlua_timeout_session);
3061
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01003062 /* Set the currently running flag. */
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01003063 HLUA_SET_RUN(&s->hlua);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01003064 }
3065
3066 /* Execute the function. */
3067 switch (hlua_ctx_resume(&s->hlua, 0)) {
3068 /* finished. */
3069 case HLUA_E_OK:
3070 /* Convert the returned value in sample. */
3071 hlua_lua2smp(s->hlua.T, -1, smp);
3072 lua_pop(s->hlua.T, 1);
3073
3074 /* Set the end of execution flag. */
3075 smp->flags &= ~SMP_F_MAY_CHANGE;
3076 return 1;
3077
3078 /* yield. */
3079 case HLUA_E_AGAIN:
3080 send_log(px, LOG_ERR, "Lua sample-fetch '%s': cannot use yielded functions.", fcn->name);
3081 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))
3082 Alert("Lua sample-fetch '%s': cannot use yielded functions.\n", fcn->name);
3083 return 0;
3084
3085 /* finished with error. */
3086 case HLUA_E_ERRMSG:
3087 /* Display log. */
3088 send_log(px, LOG_ERR, "Lua sample-fetch '%s': %s.", fcn->name, lua_tostring(s->hlua.T, -1));
3089 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))
3090 Alert("Lua sample-fetch '%s': %s.\n", fcn->name, lua_tostring(s->hlua.T, -1));
3091 lua_pop(s->hlua.T, 1);
3092 return 0;
3093
3094 case HLUA_E_ERR:
3095 /* Display log. */
3096 send_log(px, LOG_ERR, "Lua sample-fetch '%s' returns an unknown error.", fcn->name);
3097 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))
3098 Alert("Lua sample-fetch '%s': returns an unknown error.\n", fcn->name);
3099
3100 default:
3101 return 0;
3102 }
3103}
3104
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01003105/* This function is an LUA binding used for registering
3106 * "sample-conv" functions. It expects a converter name used
3107 * in the haproxy configuration file, and an LUA function.
3108 */
3109__LJMP static int hlua_register_converters(lua_State *L)
3110{
3111 struct sample_conv_kw_list *sck;
3112 const char *name;
3113 int ref;
3114 int len;
3115 struct hlua_function *fcn;
3116
3117 MAY_LJMP(check_args(L, 2, "register_converters"));
3118
3119 /* First argument : converter name. */
3120 name = MAY_LJMP(luaL_checkstring(L, 1));
3121
3122 /* Second argument : lua function. */
3123 ref = MAY_LJMP(hlua_checkfunction(L, 2));
3124
3125 /* Allocate and fill the sample fetch keyword struct. */
3126 sck = malloc(sizeof(struct sample_conv_kw_list) +
3127 sizeof(struct sample_conv) * 2);
3128 if (!sck)
3129 WILL_LJMP(luaL_error(L, "lua out of memory error."));
3130 fcn = malloc(sizeof(*fcn));
3131 if (!fcn)
3132 WILL_LJMP(luaL_error(L, "lua out of memory error."));
3133
3134 /* Fill fcn. */
3135 fcn->name = strdup(name);
3136 if (!fcn->name)
3137 WILL_LJMP(luaL_error(L, "lua out of memory error."));
3138 fcn->function_ref = ref;
3139
3140 /* List head */
3141 sck->list.n = sck->list.p = NULL;
3142
3143 /* converter keyword. */
3144 len = strlen("lua.") + strlen(name) + 1;
3145 sck->kw[0].kw = malloc(len);
3146 if (!sck->kw[0].kw)
3147 WILL_LJMP(luaL_error(L, "lua out of memory error."));
3148
3149 snprintf((char *)sck->kw[0].kw, len, "lua.%s", name);
3150 sck->kw[0].process = hlua_sample_conv_wrapper;
3151 sck->kw[0].arg_mask = ARG5(0,STR,STR,STR,STR,STR);
3152 sck->kw[0].val_args = NULL;
3153 sck->kw[0].in_type = SMP_T_STR;
3154 sck->kw[0].out_type = SMP_T_STR;
3155 sck->kw[0].private = fcn;
3156
3157 /* End of array. */
3158 memset(&sck->kw[1], 0, sizeof(struct sample_conv));
3159
3160 /* Register this new converter */
3161 sample_register_convs(sck);
3162
3163 return 0;
3164}
3165
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01003166/* This fucntion is an LUA binding used for registering
3167 * "sample-fetch" functions. It expects a converter name used
3168 * in the haproxy configuration file, and an LUA function.
3169 */
3170__LJMP static int hlua_register_fetches(lua_State *L)
3171{
3172 const char *name;
3173 int ref;
3174 int len;
3175 struct sample_fetch_kw_list *sfk;
3176 struct hlua_function *fcn;
3177
3178 MAY_LJMP(check_args(L, 2, "register_fetches"));
3179
3180 /* First argument : sample-fetch name. */
3181 name = MAY_LJMP(luaL_checkstring(L, 1));
3182
3183 /* Second argument : lua function. */
3184 ref = MAY_LJMP(hlua_checkfunction(L, 2));
3185
3186 /* Allocate and fill the sample fetch keyword struct. */
3187 sfk = malloc(sizeof(struct sample_fetch_kw_list) +
3188 sizeof(struct sample_fetch) * 2);
3189 if (!sfk)
3190 WILL_LJMP(luaL_error(L, "lua out of memory error."));
3191 fcn = malloc(sizeof(*fcn));
3192 if (!fcn)
3193 WILL_LJMP(luaL_error(L, "lua out of memory error."));
3194
3195 /* Fill fcn. */
3196 fcn->name = strdup(name);
3197 if (!fcn->name)
3198 WILL_LJMP(luaL_error(L, "lua out of memory error."));
3199 fcn->function_ref = ref;
3200
3201 /* List head */
3202 sfk->list.n = sfk->list.p = NULL;
3203
3204 /* sample-fetch keyword. */
3205 len = strlen("lua.") + strlen(name) + 1;
3206 sfk->kw[0].kw = malloc(len);
3207 if (!sfk->kw[0].kw)
3208 return luaL_error(L, "lua out of memory error.");
3209
3210 snprintf((char *)sfk->kw[0].kw, len, "lua.%s", name);
3211 sfk->kw[0].process = hlua_sample_fetch_wrapper;
3212 sfk->kw[0].arg_mask = ARG5(0,STR,STR,STR,STR,STR);
3213 sfk->kw[0].val_args = NULL;
3214 sfk->kw[0].out_type = SMP_T_STR;
3215 sfk->kw[0].use = SMP_USE_HTTP_ANY;
3216 sfk->kw[0].val = 0;
3217 sfk->kw[0].private = fcn;
3218
3219 /* End of array. */
3220 memset(&sfk->kw[1], 0, sizeof(struct sample_fetch));
3221
3222 /* Register this new fetch. */
3223 sample_register_fetches(sfk);
3224
3225 return 0;
3226}
3227
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01003228/* global {tcp|http}-request parser. Return 1 in succes case, else return 0. */
3229static int hlua_parse_rule(const char **args, int *cur_arg, struct proxy *px,
3230 struct hlua_rule **rule_p, char **err)
3231{
3232 struct hlua_rule *rule;
3233
3234 /* Memory for the rule. */
3235 rule = malloc(sizeof(*rule));
3236 if (!rule) {
3237 memprintf(err, "out of memory error");
3238 return 0;
3239 }
3240 *rule_p = rule;
3241
3242 /* The requiered arg is a function name. */
3243 if (!args[*cur_arg]) {
3244 memprintf(err, "expect Lua function name");
3245 return 0;
3246 }
3247
3248 /* Lookup for the symbol, and check if it is a function. */
3249 lua_getglobal(gL.T, args[*cur_arg]);
3250 if (lua_isnil(gL.T, -1)) {
3251 lua_pop(gL.T, 1);
3252 memprintf(err, "Lua function '%s' not found", args[*cur_arg]);
3253 return 0;
3254 }
3255 if (!lua_isfunction(gL.T, -1)) {
3256 lua_pop(gL.T, 1);
3257 memprintf(err, "'%s' is not a function", args[*cur_arg]);
3258 return 0;
3259 }
3260
3261 /* Reference the Lua function and store the reference. */
3262 rule->fcn.function_ref = luaL_ref(gL.T, LUA_REGISTRYINDEX);
3263 rule->fcn.name = strdup(args[*cur_arg]);
3264 if (!rule->fcn.name) {
3265 memprintf(err, "out of memory error.");
3266 return 0;
3267 }
3268 (*cur_arg)++;
3269
3270 /* TODO: later accept arguments. */
3271 rule->args = NULL;
3272
3273 return 1;
3274}
3275
3276/* This function is a wrapper to execute each LUA function declared
3277 * as an action wrapper during the initialisation period. This function
3278 * return 1 if the processing is finished (with oe without error) and
3279 * return 0 if the function must be called again because the LUA
3280 * returns a yield.
3281 */
3282static int hlua_request_act_wrapper(struct hlua_rule *rule, struct proxy *px,
3283 struct session *s, struct http_txn *http_txn,
3284 unsigned int analyzer)
3285{
3286 char **arg;
3287
Thierry FOURNIER05ac4242015-02-27 18:37:27 +01003288 /* In the execution wrappers linked with a session, the
3289 * Lua context can be not initialized. This behavior
3290 * permits to save performances because a systematic
3291 * Lua initialization cause 5% performances loss.
3292 */
3293 if (!s->hlua.T && !hlua_ctx_init(&s->hlua, s->task)) {
3294 send_log(px, LOG_ERR, "Lua action '%s': can't initialize Lua context.", rule->fcn.name);
3295 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))
3296 Alert("Lua action '%s': can't initialize Lua context.\n", rule->fcn.name);
3297 return 0;
3298 }
3299
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01003300 /* If it is the first run, initialize the data for the call. */
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01003301 if (!HLUA_IS_RUNNING(&s->hlua)) {
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01003302 /* Check stack available size. */
3303 if (!lua_checkstack(s->hlua.T, 1)) {
3304 send_log(px, LOG_ERR, "Lua function '%s': full stack.", rule->fcn.name);
3305 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))
3306 Alert("Lua function '%s': full stack.\n", rule->fcn.name);
3307 return 0;
3308 }
3309
3310 /* Restore the function in the stack. */
3311 lua_rawgeti(s->hlua.T, LUA_REGISTRYINDEX, rule->fcn.function_ref);
3312
3313 /* Create and and push object session in the stack. */
3314 if (!hlua_txn_new(s->hlua.T, s, px, http_txn)) {
3315 send_log(px, LOG_ERR, "Lua function '%s': full stack.", rule->fcn.name);
3316 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))
3317 Alert("Lua function '%s': full stack.\n", rule->fcn.name);
3318 return 0;
3319 }
3320 s->hlua.nargs = 1;
3321
3322 /* push keywords in the stack. */
3323 for (arg = rule->args; arg && *arg; arg++) {
3324 if (!lua_checkstack(s->hlua.T, 1)) {
3325 send_log(px, LOG_ERR, "Lua function '%s': full stack.", rule->fcn.name);
3326 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))
3327 Alert("Lua function '%s': full stack.\n", rule->fcn.name);
3328 return 0;
3329 }
3330 lua_pushstring(s->hlua.T, *arg);
3331 s->hlua.nargs++;
3332 }
3333
Thierry FOURNIERbd413492015-03-03 16:52:26 +01003334 /* We must initialize the execution timeouts. */
3335 s->hlua.expire = tick_add(now_ms, hlua_timeout_session);
3336
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01003337 /* Set the currently running flag. */
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01003338 HLUA_SET_RUN(&s->hlua);
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01003339 }
3340
3341 /* Execute the function. */
3342 switch (hlua_ctx_resume(&s->hlua, 1)) {
3343 /* finished. */
3344 case HLUA_E_OK:
3345 return 1;
3346
3347 /* yield. */
3348 case HLUA_E_AGAIN:
Thierry FOURNIERc42c1ae2015-03-03 17:17:55 +01003349 /* Set timeout in the required channel. */
3350 if (s->hlua.wake_time != TICK_ETERNITY) {
3351 if (analyzer & (AN_REQ_INSPECT_FE|AN_REQ_HTTP_PROCESS_FE))
3352 s->req->analyse_exp = s->hlua.wake_time;
3353 else if (analyzer & (AN_RES_INSPECT|AN_RES_HTTP_PROCESS_BE))
3354 s->rep->analyse_exp = s->hlua.wake_time;
3355 }
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01003356 /* Some actions can be wake up when a "write" event
3357 * is detected on a response channel. This is useful
3358 * only for actions targetted on the requests.
3359 */
Thierry FOURNIERef6a2112015-03-05 17:45:34 +01003360 if (HLUA_IS_WAKERESWR(&s->hlua)) {
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01003361 s->rep->flags |= CF_WAKE_WRITE;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01003362 }
Thierry FOURNIERcd9084f2015-03-07 15:11:09 +01003363 if ((analyzer & (AN_REQ_INSPECT_FE|AN_REQ_HTTP_PROCESS_FE)))
3364 s->rep->analysers |= analyzer;
Thierry FOURNIER53e08ec2015-03-06 00:35:53 +01003365 if (HLUA_IS_WAKEREQWR(&s->hlua))
3366 s->req->flags |= CF_WAKE_WRITE;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01003367 return 0;
3368
3369 /* finished with error. */
3370 case HLUA_E_ERRMSG:
3371 /* Display log. */
3372 send_log(px, LOG_ERR, "Lua function '%s': %s.", rule->fcn.name, lua_tostring(s->hlua.T, -1));
3373 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))
3374 Alert("Lua function '%s': %s.\n", rule->fcn.name, lua_tostring(s->hlua.T, -1));
3375 lua_pop(s->hlua.T, 1);
3376 return 1;
3377
3378 case HLUA_E_ERR:
3379 /* Display log. */
3380 send_log(px, LOG_ERR, "Lua function '%s' return an unknown error.", rule->fcn.name);
3381 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))
3382 Alert("Lua function '%s' return an unknown error.\n", rule->fcn.name);
3383
3384 default:
3385 return 1;
3386 }
3387}
3388
3389/* Lua execution wrapper for "tcp-request". This function uses
3390 * "hlua_request_act_wrapper" for executing the LUA code.
3391 */
3392int hlua_tcp_req_act_wrapper(struct tcp_rule *tcp_rule, struct proxy *px,
3393 struct session *s)
3394{
3395 return hlua_request_act_wrapper((struct hlua_rule *)tcp_rule->act_prm.data,
3396 px, s, NULL, AN_REQ_INSPECT_FE);
3397}
3398
3399/* Lua execution wrapper for "tcp-response". This function uses
3400 * "hlua_request_act_wrapper" for executing the LUA code.
3401 */
3402int hlua_tcp_res_act_wrapper(struct tcp_rule *tcp_rule, struct proxy *px,
3403 struct session *s)
3404{
3405 return hlua_request_act_wrapper((struct hlua_rule *)tcp_rule->act_prm.data,
3406 px, s, NULL, AN_RES_INSPECT);
3407}
3408
3409/* Lua execution wrapper for http-request.
3410 * This function uses "hlua_request_act_wrapper" for executing
3411 * the LUA code.
3412 */
3413int hlua_http_req_act_wrapper(struct http_req_rule *rule, struct proxy *px,
3414 struct session *s, struct http_txn *http_txn)
3415{
3416 return hlua_request_act_wrapper((struct hlua_rule *)rule->arg.data, px,
3417 s, http_txn, AN_REQ_HTTP_PROCESS_FE);
3418}
3419
3420/* Lua execution wrapper for http-response.
3421 * This function uses "hlua_request_act_wrapper" for executing
3422 * the LUA code.
3423 */
3424int hlua_http_res_act_wrapper(struct http_res_rule *rule, struct proxy *px,
3425 struct session *s, struct http_txn *http_txn)
3426{
3427 return hlua_request_act_wrapper((struct hlua_rule *)rule->arg.data, px,
3428 s, http_txn, AN_RES_HTTP_PROCESS_BE);
3429}
3430
3431/* tcp-request <*> configuration wrapper. */
3432static int tcp_req_action_register_lua(const char **args, int *cur_arg, struct proxy *px,
3433 struct tcp_rule *rule, char **err)
3434{
3435 if (!hlua_parse_rule(args, cur_arg, px, (struct hlua_rule **)&rule->act_prm.data, err))
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01003436 return 0;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01003437 rule->action = TCP_ACT_CUSTOM;
3438 rule->action_ptr = hlua_tcp_req_act_wrapper;
3439 return 1;
3440}
3441
3442/* tcp-response <*> configuration wrapper. */
3443static int tcp_res_action_register_lua(const char **args, int *cur_arg, struct proxy *px,
3444 struct tcp_rule *rule, char **err)
3445{
3446 if (!hlua_parse_rule(args, cur_arg, px, (struct hlua_rule **)&rule->act_prm.data, err))
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01003447 return 0;
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01003448 rule->action = TCP_ACT_CUSTOM;
3449 rule->action_ptr = hlua_tcp_res_act_wrapper;
3450 return 1;
3451}
3452
3453/* http-request <*> configuration wrapper. */
3454static int http_req_action_register_lua(const char **args, int *cur_arg, struct proxy *px,
3455 struct http_req_rule *rule, char **err)
3456{
3457 if (!hlua_parse_rule(args, cur_arg, px, (struct hlua_rule **)&rule->arg.data, err))
3458 return -1;
3459 rule->action = HTTP_REQ_ACT_CUSTOM_CONT;
3460 rule->action_ptr = hlua_http_req_act_wrapper;
3461 return 1;
3462}
3463
3464/* http-response <*> configuration wrapper. */
3465static int http_res_action_register_lua(const char **args, int *cur_arg, struct proxy *px,
3466 struct http_res_rule *rule, char **err)
3467{
3468 if (!hlua_parse_rule(args, cur_arg, px, (struct hlua_rule **)&rule->arg.data, err))
3469 return -1;
3470 rule->action = HTTP_RES_ACT_CUSTOM_CONT;
3471 rule->action_ptr = hlua_http_res_act_wrapper;
3472 return 1;
3473}
3474
Thierry FOURNIERbd413492015-03-03 16:52:26 +01003475static int hlua_read_timeout(char **args, int section_type, struct proxy *curpx,
3476 struct proxy *defpx, const char *file, int line,
3477 char **err, unsigned int *timeout)
3478{
3479 const char *error;
3480
3481 error = parse_time_err(args[1], timeout, TIME_UNIT_MS);
3482 if (error && *error != '\0') {
3483 memprintf(err, "%s: invalid timeout", args[0]);
3484 return -1;
3485 }
3486 return 0;
3487}
3488
3489static int hlua_session_timeout(char **args, int section_type, struct proxy *curpx,
3490 struct proxy *defpx, const char *file, int line,
3491 char **err)
3492{
3493 return hlua_read_timeout(args, section_type, curpx, defpx,
3494 file, line, err, &hlua_timeout_session);
3495}
3496
3497static int hlua_task_timeout(char **args, int section_type, struct proxy *curpx,
3498 struct proxy *defpx, const char *file, int line,
3499 char **err)
3500{
3501 return hlua_read_timeout(args, section_type, curpx, defpx,
3502 file, line, err, &hlua_timeout_task);
3503}
3504
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01003505static int hlua_forced_yield(char **args, int section_type, struct proxy *curpx,
3506 struct proxy *defpx, const char *file, int line,
3507 char **err)
3508{
3509 char *error;
3510
3511 hlua_nb_instruction = strtoll(args[1], &error, 10);
3512 if (*error != '\0') {
3513 memprintf(err, "%s: invalid number", args[0]);
3514 return -1;
3515 }
3516 return 0;
3517}
3518
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01003519/* This function is called by the main configuration key "lua-load". It loads and
3520 * execute an lua file during the parsing of the HAProxy configuration file. It is
3521 * the main lua entry point.
3522 *
3523 * This funtion runs with the HAProxy keywords API. It returns -1 if an error is
3524 * occured, otherwise it returns 0.
3525 *
3526 * In some error case, LUA set an error message in top of the stack. This function
3527 * returns this error message in the HAProxy logs and pop it from the stack.
3528 */
3529static int hlua_load(char **args, int section_type, struct proxy *curpx,
3530 struct proxy *defpx, const char *file, int line,
3531 char **err)
3532{
3533 int error;
3534
3535 /* Just load and compile the file. */
3536 error = luaL_loadfile(gL.T, args[1]);
3537 if (error) {
3538 memprintf(err, "error in lua file '%s': %s", args[1], lua_tostring(gL.T, -1));
3539 lua_pop(gL.T, 1);
3540 return -1;
3541 }
3542
3543 /* If no syntax error where detected, execute the code. */
3544 error = lua_pcall(gL.T, 0, LUA_MULTRET, 0);
3545 switch (error) {
3546 case LUA_OK:
3547 break;
3548 case LUA_ERRRUN:
3549 memprintf(err, "lua runtime error: %s\n", lua_tostring(gL.T, -1));
3550 lua_pop(gL.T, 1);
3551 return -1;
3552 case LUA_ERRMEM:
3553 memprintf(err, "lua out of memory error\n");
3554 return -1;
3555 case LUA_ERRERR:
3556 memprintf(err, "lua message handler error: %s\n", lua_tostring(gL.T, -1));
3557 lua_pop(gL.T, 1);
3558 return -1;
3559 case LUA_ERRGCMM:
3560 memprintf(err, "lua garbage collector error: %s\n", lua_tostring(gL.T, -1));
3561 lua_pop(gL.T, 1);
3562 return -1;
3563 default:
3564 memprintf(err, "lua unknonwn error: %s\n", lua_tostring(gL.T, -1));
3565 lua_pop(gL.T, 1);
3566 return -1;
3567 }
3568
3569 return 0;
3570}
3571
3572/* configuration keywords declaration */
3573static struct cfg_kw_list cfg_kws = {{ },{
Thierry FOURNIERbd413492015-03-03 16:52:26 +01003574 { CFG_GLOBAL, "lua-load", hlua_load },
3575 { CFG_GLOBAL, "tune.lua.session-timeout", hlua_session_timeout },
3576 { CFG_GLOBAL, "tune.lua.task-timeout", hlua_task_timeout },
Thierry FOURNIERee9f8022015-03-03 17:37:37 +01003577 { CFG_GLOBAL, "tune.lua.forced-yield", hlua_forced_yield },
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01003578 { 0, NULL, NULL },
3579}};
3580
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01003581static struct http_req_action_kw_list http_req_kws = {"lua", { }, {
3582 { "lua", http_req_action_register_lua },
3583 { NULL, NULL }
3584}};
3585
3586static struct http_res_action_kw_list http_res_kws = {"lua", { }, {
3587 { "lua", http_res_action_register_lua },
3588 { NULL, NULL }
3589}};
3590
3591static struct tcp_action_kw_list tcp_req_cont_kws = {"lua", { }, {
3592 { "lua", tcp_req_action_register_lua },
3593 { NULL, NULL }
3594}};
3595
3596static struct tcp_action_kw_list tcp_res_cont_kws = {"lua", { }, {
3597 { "lua", tcp_res_action_register_lua },
3598 { NULL, NULL }
3599}};
3600
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01003601int hlua_post_init()
3602{
3603 struct hlua_init_function *init;
3604 const char *msg;
3605 enum hlua_exec ret;
3606
3607 list_for_each_entry(init, &hlua_init_functions, l) {
3608 lua_rawgeti(gL.T, LUA_REGISTRYINDEX, init->function_ref);
3609 ret = hlua_ctx_resume(&gL, 0);
3610 switch (ret) {
3611 case HLUA_E_OK:
3612 lua_pop(gL.T, -1);
3613 return 1;
3614 case HLUA_E_AGAIN:
3615 Alert("lua init: yield not allowed.\n");
3616 return 0;
3617 case HLUA_E_ERRMSG:
3618 msg = lua_tostring(gL.T, -1);
3619 Alert("lua init: %s.\n", msg);
3620 return 0;
3621 case HLUA_E_ERR:
3622 default:
3623 Alert("lua init: unknown runtime error.\n");
3624 return 0;
3625 }
3626 }
3627 return 1;
3628}
3629
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01003630void hlua_init(void)
3631{
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +01003632 int i;
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +01003633 int idx;
3634 struct sample_fetch *sf;
3635 struct hlua_sample_fetch *hsf;
3636 char *p;
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003637#ifdef USE_OPENSSL
3638 char *args[4];
3639 struct srv_kw *kw;
3640 int tmp_error;
3641 char *error;
3642#endif
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +01003643
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +01003644 /* Initialise com signals pool session. */
3645 pool2_hlua_com = create_pool("hlua_com", sizeof(struct hlua_com), MEM_F_SHARED);
3646
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01003647 /* Initialise sleep pool. */
3648 pool2_hlua_sleep = create_pool("hlua_sleep", sizeof(struct hlua_sleep), MEM_F_SHARED);
3649
Thierry FOURNIER6c9b52c2015-01-23 15:57:06 +01003650 /* Register configuration keywords. */
3651 cfg_register_keywords(&cfg_kws);
3652
Thierry FOURNIER258d8aa2015-02-16 20:23:40 +01003653 /* Register custom HTTP rules. */
3654 http_req_keywords_register(&http_req_kws);
3655 http_res_keywords_register(&http_res_kws);
3656 tcp_req_cont_keywords_register(&tcp_req_cont_kws);
3657 tcp_res_cont_keywords_register(&tcp_res_cont_kws);
3658
Thierry FOURNIER380d0932015-01-23 14:27:52 +01003659 /* Init main lua stack. */
3660 gL.Mref = LUA_REFNIL;
Thierry FOURNIERa097fdf2015-03-03 15:17:35 +01003661 gL.flags = 0;
Thierry FOURNIER9ff7e6e2015-01-23 11:08:20 +01003662 LIST_INIT(&gL.com);
Thierry FOURNIER380d0932015-01-23 14:27:52 +01003663 gL.T = luaL_newstate();
3664 hlua_sethlua(&gL);
3665 gL.Tref = LUA_REFNIL;
3666 gL.task = NULL;
3667
3668 /* Initialise lua. */
3669 luaL_openlibs(gL.T);
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +01003670
3671 /*
3672 *
3673 * Create "core" object.
3674 *
3675 */
3676
3677 /* This integer entry is just used as base value for the object "core". */
3678 lua_pushinteger(gL.T, 0);
3679
3680 /* Create and fill the metatable. */
3681 lua_newtable(gL.T);
3682
3683 /* Create and fill the __index entry. */
3684 lua_pushstring(gL.T, "__index");
3685 lua_newtable(gL.T);
3686
3687 /* Push the loglevel constants. */
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003688 for (i = 0; i < NB_LOG_LEVELS; i++)
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +01003689 hlua_class_const_int(gL.T, log_levels[i], i);
3690
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01003691 /* Register special functions. */
3692 hlua_class_function(gL.T, "register_init", hlua_register_init);
Thierry FOURNIER24f33532015-01-23 12:13:00 +01003693 hlua_class_function(gL.T, "register_task", hlua_register_task);
Thierry FOURNIERfa0e5dd2015-02-16 20:19:18 +01003694 hlua_class_function(gL.T, "register_fetches", hlua_register_fetches);
Thierry FOURNIER9be813f2015-02-16 20:21:12 +01003695 hlua_class_function(gL.T, "register_converters", hlua_register_converters);
Thierry FOURNIER13416fe2015-02-17 15:01:59 +01003696 hlua_class_function(gL.T, "yield", hlua_yield);
Thierry FOURNIER37196f42015-02-16 19:34:56 +01003697 hlua_class_function(gL.T, "set_nice", hlua_setnice);
Thierry FOURNIER5b8608f2015-02-16 19:43:25 +01003698 hlua_class_function(gL.T, "sleep", hlua_sleep);
3699 hlua_class_function(gL.T, "msleep", hlua_msleep);
Thierry FOURNIER83758bb2015-02-04 13:21:04 +01003700 hlua_class_function(gL.T, "add_acl", hlua_add_acl);
3701 hlua_class_function(gL.T, "del_acl", hlua_del_acl);
3702 hlua_class_function(gL.T, "set_map", hlua_set_map);
3703 hlua_class_function(gL.T, "del_map", hlua_del_map);
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01003704 hlua_class_function(gL.T, "tcp", hlua_socket_new);
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01003705
Thierry FOURNIER2ba18a22015-01-23 14:07:08 +01003706 /* Store the table __index in the metable. */
3707 lua_settable(gL.T, -3);
3708
3709 /* Register previous table in the registry with named entry. */
3710 lua_pushvalue(gL.T, -1); /* Copy the -1 entry and push it on the stack. */
3711 lua_setfield(gL.T, LUA_REGISTRYINDEX, CLASS_CORE); /* register class session. */
3712
3713 /* Register previous table in the registry with reference. */
3714 lua_pushvalue(gL.T, -1); /* Copy the -1 entry and push it on the stack. */
3715 class_core_ref = luaL_ref(gL.T, LUA_REGISTRYINDEX); /* reference class session. */
3716
3717 /* Create new object with class Core. */
3718 lua_setmetatable(gL.T, -2);
3719 lua_setglobal(gL.T, "core");
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01003720
3721 /*
3722 *
Thierry FOURNIER5a6d3fd2015-02-09 16:38:34 +01003723 * Register class Channel
3724 *
3725 */
3726
3727 /* Create and fill the metatable. */
3728 lua_newtable(gL.T);
3729
3730 /* Create and fille the __index entry. */
3731 lua_pushstring(gL.T, "__index");
3732 lua_newtable(gL.T);
3733
3734 /* Register . */
3735 hlua_class_function(gL.T, "get", hlua_channel_get);
3736 hlua_class_function(gL.T, "dup", hlua_channel_dup);
3737 hlua_class_function(gL.T, "getline", hlua_channel_getline);
3738 hlua_class_function(gL.T, "set", hlua_channel_set);
3739 hlua_class_function(gL.T, "append", hlua_channel_append);
3740 hlua_class_function(gL.T, "send", hlua_channel_send);
3741 hlua_class_function(gL.T, "forward", hlua_channel_forward);
3742 hlua_class_function(gL.T, "get_in_len", hlua_channel_get_in_len);
3743 hlua_class_function(gL.T, "get_out_len", hlua_channel_get_out_len);
3744
3745 lua_settable(gL.T, -3);
3746
3747 /* Register previous table in the registry with reference and named entry. */
3748 lua_pushvalue(gL.T, -1); /* Copy the -1 entry and push it on the stack. */
3749 lua_setfield(gL.T, LUA_REGISTRYINDEX, CLASS_CHANNEL); /* register class session. */
3750 class_channel_ref = luaL_ref(gL.T, LUA_REGISTRYINDEX); /* reference class session. */
3751
3752 /*
3753 *
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01003754 * Register class TXN
3755 *
3756 */
3757
3758 /* Create and fill the metatable. */
3759 lua_newtable(gL.T);
3760
3761 /* Create and fille the __index entry. */
3762 lua_pushstring(gL.T, "__index");
3763 lua_newtable(gL.T);
3764
Thierry FOURNIERd0fa5382015-02-16 20:14:51 +01003765 /* Browse existing fetches and create the associated
3766 * object method.
3767 */
3768 sf = NULL;
3769 while ((sf = sample_fetch_getnext(sf, &idx)) != NULL) {
3770
3771 /* Dont register the keywork if the arguments check function are
3772 * not safe during the runtime.
3773 */
3774 if ((sf->val_args != NULL) &&
3775 (sf->val_args != val_payload_lv) &&
3776 (sf->val_args != val_hdr))
3777 continue;
3778
3779 /* gL.Tua doesn't support '.' and '-' in the function names, replace it
3780 * by an underscore.
3781 */
3782 strncpy(trash.str, sf->kw, trash.size);
3783 trash.str[trash.size - 1] = '\0';
3784 for (p = trash.str; *p; p++)
3785 if (*p == '.' || *p == '-' || *p == '+')
3786 *p = '_';
3787
3788 /* Register the function. */
3789 lua_pushstring(gL.T, trash.str);
3790 hsf = lua_newuserdata(gL.T, sizeof(struct hlua_sample_fetch));
3791 hsf->f = sf;
3792 lua_pushcclosure(gL.T, hlua_run_sample_fetch, 1);
3793 lua_settable(gL.T, -3);
3794 }
3795
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01003796 /* Register Lua functions. */
Thierry FOURNIER9a819e72015-02-16 20:22:55 +01003797 hlua_class_function(gL.T, "get_headers", hlua_session_getheaders);
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01003798 hlua_class_function(gL.T, "set_priv", hlua_setpriv);
3799 hlua_class_function(gL.T, "get_priv", hlua_getpriv);
Thierry FOURNIERe94e7742015-02-17 14:59:53 +01003800 hlua_class_function(gL.T, "req_channel", hlua_txn_req_channel);
3801 hlua_class_function(gL.T, "res_channel", hlua_txn_res_channel);
Thierry FOURNIER893bfa32015-02-17 18:42:34 +01003802 hlua_class_function(gL.T, "close", hlua_txn_close);
Thierry FOURNIER05c0b8a2015-02-25 11:43:21 +01003803
Thierry FOURNIER65f34c62015-02-16 20:11:43 +01003804 lua_settable(gL.T, -3);
3805
3806 /* Register previous table in the registry with reference and named entry. */
3807 lua_pushvalue(gL.T, -1); /* Copy the -1 entry and push it on the stack. */
3808 lua_setfield(gL.T, LUA_REGISTRYINDEX, CLASS_TXN); /* register class session. */
3809 class_txn_ref = luaL_ref(gL.T, LUA_REGISTRYINDEX); /* reference class session. */
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01003810
3811 /*
3812 *
3813 * Register class Socket
3814 *
3815 */
3816
3817 /* Create and fill the metatable. */
3818 lua_newtable(gL.T);
3819
3820 /* Create and fille the __index entry. */
3821 lua_pushstring(gL.T, "__index");
3822 lua_newtable(gL.T);
3823
Baptiste Assmann84bb4932015-03-02 21:40:06 +01003824#ifdef USE_OPENSSL
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01003825 hlua_class_function(gL.T, "connect_ssl", hlua_socket_connect_ssl);
Baptiste Assmann84bb4932015-03-02 21:40:06 +01003826#endif
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01003827 hlua_class_function(gL.T, "connect", hlua_socket_connect);
3828 hlua_class_function(gL.T, "send", hlua_socket_send);
3829 hlua_class_function(gL.T, "receive", hlua_socket_receive);
3830 hlua_class_function(gL.T, "close", hlua_socket_close);
3831 hlua_class_function(gL.T, "getpeername", hlua_socket_getpeername);
3832 hlua_class_function(gL.T, "getsockname", hlua_socket_getsockname);
3833 hlua_class_function(gL.T, "setoption", hlua_socket_setoption);
3834 hlua_class_function(gL.T, "settimeout", hlua_socket_settimeout);
3835
3836 lua_settable(gL.T, -3); /* Push the last 2 entries in the table at index -3 */
3837
3838 /* Register the garbage collector entry. */
3839 lua_pushstring(gL.T, "__gc");
3840 lua_pushcclosure(gL.T, hlua_socket_gc, 0);
3841 lua_settable(gL.T, -3); /* Push the last 2 entries in the table at index -3 */
3842
3843 /* Register previous table in the registry with reference and named entry. */
3844 lua_pushvalue(gL.T, -1); /* Copy the -1 entry and push it on the stack. */
3845 lua_pushvalue(gL.T, -1); /* Copy the -1 entry and push it on the stack. */
3846 lua_setfield(gL.T, LUA_REGISTRYINDEX, CLASS_SOCKET); /* register class socket. */
3847 class_socket_ref = luaL_ref(gL.T, LUA_REGISTRYINDEX); /* reference class socket. */
3848
3849 /* Proxy and server configuration initialisation. */
3850 memset(&socket_proxy, 0, sizeof(socket_proxy));
3851 init_new_proxy(&socket_proxy);
3852 socket_proxy.parent = NULL;
3853 socket_proxy.last_change = now.tv_sec;
3854 socket_proxy.id = "LUA-SOCKET";
3855 socket_proxy.cap = PR_CAP_FE | PR_CAP_BE;
3856 socket_proxy.maxconn = 0;
3857 socket_proxy.accept = NULL;
3858 socket_proxy.options2 |= PR_O2_INDEPSTR;
3859 socket_proxy.srv = NULL;
3860 socket_proxy.conn_retries = 0;
3861 socket_proxy.timeout.connect = 5000; /* By default the timeout connection is 5s. */
3862
3863 /* Init TCP server: unchanged parameters */
3864 memset(&socket_tcp, 0, sizeof(socket_tcp));
3865 socket_tcp.next = NULL;
3866 socket_tcp.proxy = &socket_proxy;
3867 socket_tcp.obj_type = OBJ_TYPE_SERVER;
3868 LIST_INIT(&socket_tcp.actconns);
3869 LIST_INIT(&socket_tcp.pendconns);
3870 socket_tcp.state = SRV_ST_RUNNING; /* early server setup */
3871 socket_tcp.last_change = 0;
3872 socket_tcp.id = "LUA-TCP-CONN";
3873 socket_tcp.check.state &= ~CHK_ST_ENABLED; /* Disable health checks. */
3874 socket_tcp.agent.state &= ~CHK_ST_ENABLED; /* Disable health checks. */
3875 socket_tcp.pp_opts = 0; /* Remove proxy protocol. */
3876
3877 /* XXX: Copy default parameter from default server,
3878 * but the default server is not initialized.
3879 */
3880 socket_tcp.maxqueue = socket_proxy.defsrv.maxqueue;
3881 socket_tcp.minconn = socket_proxy.defsrv.minconn;
3882 socket_tcp.maxconn = socket_proxy.defsrv.maxconn;
3883 socket_tcp.slowstart = socket_proxy.defsrv.slowstart;
3884 socket_tcp.onerror = socket_proxy.defsrv.onerror;
3885 socket_tcp.onmarkeddown = socket_proxy.defsrv.onmarkeddown;
3886 socket_tcp.onmarkedup = socket_proxy.defsrv.onmarkedup;
3887 socket_tcp.consecutive_errors_limit = socket_proxy.defsrv.consecutive_errors_limit;
3888 socket_tcp.uweight = socket_proxy.defsrv.iweight;
3889 socket_tcp.iweight = socket_proxy.defsrv.iweight;
3890
3891 socket_tcp.check.status = HCHK_STATUS_INI;
3892 socket_tcp.check.rise = socket_proxy.defsrv.check.rise;
3893 socket_tcp.check.fall = socket_proxy.defsrv.check.fall;
3894 socket_tcp.check.health = socket_tcp.check.rise; /* socket, but will fall down at first failure */
3895 socket_tcp.check.server = &socket_tcp;
3896
3897 socket_tcp.agent.status = HCHK_STATUS_INI;
3898 socket_tcp.agent.rise = socket_proxy.defsrv.agent.rise;
3899 socket_tcp.agent.fall = socket_proxy.defsrv.agent.fall;
3900 socket_tcp.agent.health = socket_tcp.agent.rise; /* socket, but will fall down at first failure */
3901 socket_tcp.agent.server = &socket_tcp;
3902
3903 socket_tcp.xprt = &raw_sock;
3904
3905#ifdef USE_OPENSSL
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01003906 /* Init TCP server: unchanged parameters */
3907 memset(&socket_ssl, 0, sizeof(socket_ssl));
3908 socket_ssl.next = NULL;
3909 socket_ssl.proxy = &socket_proxy;
3910 socket_ssl.obj_type = OBJ_TYPE_SERVER;
3911 LIST_INIT(&socket_ssl.actconns);
3912 LIST_INIT(&socket_ssl.pendconns);
3913 socket_ssl.state = SRV_ST_RUNNING; /* early server setup */
3914 socket_ssl.last_change = 0;
3915 socket_ssl.id = "LUA-SSL-CONN";
3916 socket_ssl.check.state &= ~CHK_ST_ENABLED; /* Disable health checks. */
3917 socket_ssl.agent.state &= ~CHK_ST_ENABLED; /* Disable health checks. */
3918 socket_ssl.pp_opts = 0; /* Remove proxy protocol. */
3919
3920 /* XXX: Copy default parameter from default server,
3921 * but the default server is not initialized.
3922 */
3923 socket_ssl.maxqueue = socket_proxy.defsrv.maxqueue;
3924 socket_ssl.minconn = socket_proxy.defsrv.minconn;
3925 socket_ssl.maxconn = socket_proxy.defsrv.maxconn;
3926 socket_ssl.slowstart = socket_proxy.defsrv.slowstart;
3927 socket_ssl.onerror = socket_proxy.defsrv.onerror;
3928 socket_ssl.onmarkeddown = socket_proxy.defsrv.onmarkeddown;
3929 socket_ssl.onmarkedup = socket_proxy.defsrv.onmarkedup;
3930 socket_ssl.consecutive_errors_limit = socket_proxy.defsrv.consecutive_errors_limit;
3931 socket_ssl.uweight = socket_proxy.defsrv.iweight;
3932 socket_ssl.iweight = socket_proxy.defsrv.iweight;
3933
3934 socket_ssl.check.status = HCHK_STATUS_INI;
3935 socket_ssl.check.rise = socket_proxy.defsrv.check.rise;
3936 socket_ssl.check.fall = socket_proxy.defsrv.check.fall;
3937 socket_ssl.check.health = socket_ssl.check.rise; /* socket, but will fall down at first failure */
3938 socket_ssl.check.server = &socket_ssl;
3939
3940 socket_ssl.agent.status = HCHK_STATUS_INI;
3941 socket_ssl.agent.rise = socket_proxy.defsrv.agent.rise;
3942 socket_ssl.agent.fall = socket_proxy.defsrv.agent.fall;
3943 socket_ssl.agent.health = socket_ssl.agent.rise; /* socket, but will fall down at first failure */
3944 socket_ssl.agent.server = &socket_ssl;
3945
3946 socket_ssl.xprt = &raw_sock;
3947
3948 args[0] = "ssl";
3949 args[1] = "verify";
3950 args[2] = "none";
3951 args[3] = NULL;
3952
Willy Tarreau80f5fae2015-02-27 16:38:20 +01003953 for (idx = 0; idx < 3; idx++) {
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +01003954 if ((kw = srv_find_kw(args[idx])) != NULL) { /* Maybe it's registered server keyword */
3955 /*
3956 *
3957 * If the keyword is not known, we can search in the registered
3958 * server keywords. This is usefull to configure special SSL
3959 * features like client certificates and ssl_verify.
3960 *
3961 */
3962 tmp_error = kw->parse(args, &idx, &socket_proxy, &socket_ssl, &error);
3963 if (tmp_error != 0) {
3964 fprintf(stderr, "INTERNAL ERROR: %s\n", error);
3965 abort(); /* This must be never arrives because the command line
3966 not editable by the user. */
3967 }
3968 idx += kw->skip;
3969 }
3970 }
3971
3972 /* Initialize SSL server. */
3973 if (socket_ssl.xprt == &ssl_sock) {
3974 socket_ssl.use_ssl = 1;
3975 ssl_sock_prepare_srv_ctx(&socket_ssl, &socket_proxy);
3976 }
3977#endif
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01003978}