blob: 2d86f20137047970cd340808718a5c5ffe3ff39e [file] [log] [blame]
Thierry Fourniere726b142016-02-11 17:57:57 +01001/*
2 * Lua safe functions
3 *
4 * Copyright 2015-2016 Thierry Fournier <tfournier@arpalert.org>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 *
12 * All the functions in this file runs with a Lua stack, and can
Thierry Fournierfb0b5462016-01-21 09:28:58 +010013 * return with a longjmp. All of these function must be launched
14 * in an environment able to catch a longjmp, otherwise a
15 * critical error can be raised.
16 */
Bertrand Jacquinf4c12d42021-01-21 21:14:07 +000017
18#define _GNU_SOURCE
19
Thierry Fournierfb0b5462016-01-21 09:28:58 +010020#include <lauxlib.h>
21#include <lua.h>
22#include <lualib.h>
23
Willy Tarreau63617db2021-10-06 18:23:40 +020024#include <import/ebmbtree.h>
25
Willy Tarreau83487a82020-06-04 20:19:54 +020026#include <haproxy/cli-t.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020027#include <haproxy/errors.h>
Aurelien DARRAGONc4b24372023-03-02 12:00:06 +010028#include <haproxy/hlua.h>
Tim Duesterhus6eded622022-05-14 22:17:25 +020029#include <haproxy/hlua_fcn.h>
Willy Tarreaucd72d8c2020-06-02 19:11:26 +020030#include <haproxy/http.h>
Willy Tarreau6131d6a2020-06-02 16:48:09 +020031#include <haproxy/net_helper.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020032#include <haproxy/pattern-t.h>
33#include <haproxy/proxy.h>
Willy Tarreau7cd8b6e2020-06-02 17:32:26 +020034#include <haproxy/regex.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020035#include <haproxy/server.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020036#include <haproxy/stats.h>
Willy Tarreau872f2ea2020-06-04 18:46:44 +020037#include <haproxy/stick_table.h>
Aurelien DARRAGONc84899c2023-02-20 18:18:59 +010038#include <haproxy/event_hdl.h>
Willy Tarreau27539402021-10-06 09:12:44 +020039#include <haproxy/stream-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020040#include <haproxy/time.h>
Christopher Faulet29e93262021-02-26 09:39:05 +010041#include <haproxy/tools.h>
Thierry Fournier94ed1c12016-02-24 08:06:32 +010042
Thierry Fournier1de16592016-01-27 09:49:07 +010043/* Contains the class reference of the concat object. */
44static int class_concat_ref;
Thierry Fournierf61aa632016-02-19 20:56:00 +010045static int class_proxy_ref;
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +010046static int class_server_ref;
Thierry Fournierff480422016-02-25 08:36:46 +010047static int class_listener_ref;
Aurelien DARRAGONc84899c2023-02-20 18:18:59 +010048static int class_event_sub_ref;
Thierry FOURNIER31904272017-10-25 12:59:51 +020049static int class_regex_ref;
Adis Nezirovic8878f8e2018-07-13 12:18:33 +020050static int class_stktable_ref;
Thierry Fournier467913c2022-09-30 11:03:38 +020051static int class_proxy_list_ref;
Thierry Fournier1edf36a2022-10-07 13:25:51 +020052static int class_server_list_ref;
Thierry Fournier1de16592016-01-27 09:49:07 +010053
Thierry Fournierf61aa632016-02-19 20:56:00 +010054#define STATS_LEN (MAX((int)ST_F_TOTAL_FIELDS, (int)INF_TOTAL_FIELDS))
Thierry Fourniereea77c02016-03-18 08:47:13 +010055
Thierry FOURNIERffbad792017-07-12 11:39:04 +020056static THREAD_LOCAL struct field stats[STATS_LEN];
Thierry Fourniereea77c02016-03-18 08:47:13 +010057
Thierry FOURNIER / OZON.IO7f3aa8b2016-11-24 20:37:38 +010058int hlua_checkboolean(lua_State *L, int index)
59{
60 if (!lua_isboolean(L, index))
61 luaL_argerror(L, index, "boolean expected");
62 return lua_toboolean(L, index);
63}
64
Adis Nezirovic8878f8e2018-07-13 12:18:33 +020065/* Helper to push unsigned integers to Lua stack, respecting Lua limitations */
66static int hlua_fcn_pushunsigned(lua_State *L, unsigned int val)
67{
68#if (LUA_MAXINTEGER == LLONG_MAX || ((LUA_MAXINTEGER == LONG_MAX) && (__WORDSIZE == 64)))
69 lua_pushinteger(L, val);
70#else
71 if (val > INT_MAX)
72 lua_pushnumber(L, (lua_Number)val);
73 else
74 lua_pushinteger(L, (int)val);
75#endif
76 return 1;
77}
78
79/* Helper to push unsigned long long to Lua stack, respecting Lua limitations */
80static int hlua_fcn_pushunsigned_ll(lua_State *L, unsigned long long val) {
81#if (LUA_MAXINTEGER == LLONG_MAX || ((LUA_MAXINTEGER == LONG_MAX) && (__WORDSIZE == 64)))
82 /* 64 bits case, U64 is supported until LLONG_MAX */
83 if (val > LLONG_MAX)
84 lua_pushnumber(L, (lua_Number)val);
85 else
86 lua_pushinteger(L, val);
87#else
88 /* 32 bits case, U64 is supported until INT_MAX */
89 if (val > INT_MAX)
90 lua_pushnumber(L, (lua_Number)val);
91 else
92 lua_pushinteger(L, (int)val);
93#endif
94 return 1;
95}
96
Joseph Herlantb3d92e32018-11-15 09:35:04 -080097/* This function gets a struct field and converts it in Lua
98 * variable. The variable is pushed at the top of the stack.
Thierry Fournier8b0d6e12016-03-16 18:29:13 +010099 */
100int hlua_fcn_pushfield(lua_State *L, struct field *field)
101{
102 /* The lua_Integer is always signed. Its length depends on
Joseph Herlantb3d92e32018-11-15 09:35:04 -0800103 * compilation options, so the following code is conditioned
Thierry Fournier8b0d6e12016-03-16 18:29:13 +0100104 * by some macros. Windows maros are not supported.
105 * If the number cannot be represented as integer, we try to
106 * convert to float.
107 */
108 switch (field_format(field, 0)) {
109
110 case FF_EMPTY:
111 lua_pushnil(L);
112 return 1;
113
114 case FF_S32:
115 /* S32 is always supported. */
116 lua_pushinteger(L, field->u.s32);
117 return 1;
118
119 case FF_U32:
120#if (LUA_MAXINTEGER == LLONG_MAX || ((LUA_MAXINTEGER == LONG_MAX) && (__WORDSIZE == 64)))
121 /* 64 bits case, U32 is always supported */
122 lua_pushinteger(L, field->u.u32);
123#else
124 /* 32 bits case, U32 is supported until INT_MAX. */
125 if (field->u.u32 > INT_MAX)
126 lua_pushnumber(L, (lua_Number)field->u.u32);
127 else
128 lua_pushinteger(L, field->u.u32);
129#endif
130 return 1;
131
132 case FF_S64:
133#if (LUA_MAXINTEGER == LLONG_MAX || ((LUA_MAXINTEGER == LONG_MAX) && (__WORDSIZE == 64)))
134 /* 64 bits case, S64 is always supported */
135 lua_pushinteger(L, field->u.s64);
136#else
Ilya Shipitsince7b00f2020-03-23 22:28:40 +0500137 /* 64 bits case, S64 is supported between INT_MIN and INT_MAX */
Thierry Fournier8b0d6e12016-03-16 18:29:13 +0100138 if (field->u.s64 < INT_MIN || field->u.s64 > INT_MAX)
139 lua_pushnumber(L, (lua_Number)field->u.s64);
140 else
141 lua_pushinteger(L, (int)field->u.s64);
142#endif
143 return 1;
144
145 case FF_U64:
146#if (LUA_MAXINTEGER == LLONG_MAX || ((LUA_MAXINTEGER == LONG_MAX) && (__WORDSIZE == 64)))
147 /* 64 bits case, U64 is supported until LLONG_MAX */
148 if (field->u.u64 > LLONG_MAX)
149 lua_pushnumber(L, (lua_Number)field->u.u64);
150 else
151 lua_pushinteger(L, field->u.u64);
152#else
153 /* 64 bits case, U64 is supported until INT_MAX */
154 if (field->u.u64 > INT_MAX)
155 lua_pushnumber(L, (lua_Number)field->u.u64);
156 else
157 lua_pushinteger(L, (int)field->u.u64);
158#endif
159 return 1;
160
161 case FF_STR:
162 lua_pushstring(L, field->u.str);
163 return 1;
164
165 default:
166 break;
167 }
168
169 /* Default case, never reached. */
170 lua_pushnil(L);
171 return 1;
172}
173
Thierry Fournier94ed1c12016-02-24 08:06:32 +0100174/* Some string are started or terminated by blank chars,
175 * this function removes the spaces, tabs, \r and
176 * \n at the begin and at the end of the string "str", and
177 * push the result in the lua stack.
178 * Returns a pointer to the Lua internal copy of the string.
179 */
180const char *hlua_pushstrippedstring(lua_State *L, const char *str)
181{
182 const char *p;
Christopher Faulet2ec4e3c2021-03-03 19:36:51 +0100183 int l;
Thierry Fournier94ed1c12016-02-24 08:06:32 +0100184
185 for (p = str; HTTP_IS_LWS(*p); p++);
Christopher Faulet2ec4e3c2021-03-03 19:36:51 +0100186
187 for (l = strlen(p); l && HTTP_IS_LWS(p[l-1]); l--);
Thierry Fournier94ed1c12016-02-24 08:06:32 +0100188
Christopher Faulet2ec4e3c2021-03-03 19:36:51 +0100189 return lua_pushlstring(L, p, l);
Thierry Fournier94ed1c12016-02-24 08:06:32 +0100190}
191
Thierry Fournierddd89882016-02-22 19:52:08 +0100192/* The three following functions are useful for adding entries
193 * in a table. These functions takes a string and respectively an
194 * integer, a string or a function and add it to the table in the
195 * top of the stack.
196 *
197 * These functions throws an error if no more stack size is
198 * available.
199 */
200void hlua_class_const_int(lua_State *L, const char *name, int value)
201{
Thierry Fournierddd89882016-02-22 19:52:08 +0100202 lua_pushstring(L, name);
203 lua_pushinteger(L, value);
204 lua_rawset(L, -3);
205}
206void hlua_class_const_str(lua_State *L, const char *name, const char *value)
207{
Thierry Fournierddd89882016-02-22 19:52:08 +0100208 lua_pushstring(L, name);
209 lua_pushstring(L, value);
210 lua_rawset(L, -3);
211}
212void hlua_class_function(lua_State *L, const char *name, int (*function)(lua_State *L))
213{
Thierry Fournierddd89882016-02-22 19:52:08 +0100214 lua_pushstring(L, name);
215 lua_pushcclosure(L, function, 0);
216 lua_rawset(L, -3);
217}
218
Joseph Herlantb3d92e32018-11-15 09:35:04 -0800219/* This function returns a string containing the HAProxy object name. */
Thierry Fournierddd89882016-02-22 19:52:08 +0100220int hlua_dump_object(struct lua_State *L)
221{
222 const char *name = (const char *)lua_tostring(L, lua_upvalueindex(1));
223 lua_pushfstring(L, "HAProxy class %s", name);
224 return 1;
225}
226
Thierry Fournier45e78d72016-02-19 18:34:46 +0100227/* This function register a table as metatable and. It names
228 * the metatable, and returns the associated reference.
Ilya Shipitsince7b00f2020-03-23 22:28:40 +0500229 * The original table is popped from the top of the stack.
Thierry Fournier45e78d72016-02-19 18:34:46 +0100230 * "name" is the referenced class name.
231 */
232int hlua_register_metatable(struct lua_State *L, char *name)
233{
234 /* Check the type of the top element. it must be
235 * a table.
236 */
237 if (lua_type(L, -1) != LUA_TTABLE)
238 luaL_error(L, "hlua_register_metatable() requires a type Table "
239 "in the top of the stack");
240
241 /* Add the __tostring function which identify the
242 * created object.
243 */
244 lua_pushstring(L, "__tostring");
245 lua_pushstring(L, name);
246 lua_pushcclosure(L, hlua_dump_object, 1);
247 lua_rawset(L, -3);
248
249 /* Register a named entry for the table. The table
Ilya Shipitsince7b00f2020-03-23 22:28:40 +0500250 * reference is copied first because the function
Thierry Fournier45e78d72016-02-19 18:34:46 +0100251 * lua_setfield() pop the entry.
252 */
253 lua_pushvalue(L, -1);
254 lua_setfield(L, LUA_REGISTRYINDEX, name);
255
256 /* Creates the reference of the object. The
257 * function luaL_ref pop the top of the stack.
258 */
259 return luaL_ref(L, LUA_REGISTRYINDEX);
260}
261
Thierry Fournier9e7e3ea2016-01-27 09:55:30 +0100262/* Return an object of the expected type, or throws an error. */
263void *hlua_checkudata(lua_State *L, int ud, int class_ref)
264{
265 void *p;
Thierry Fournier53518272016-01-27 10:34:09 +0100266 int ret;
Thierry Fournier9e7e3ea2016-01-27 09:55:30 +0100267
268 /* Check if the stack entry is an array. */
269 if (!lua_istable(L, ud))
Thierry Fournier53518272016-01-27 10:34:09 +0100270 luaL_argerror(L, ud, NULL);
271
272 /* pop the metatable of the referencecd object. */
273 if (!lua_getmetatable(L, ud))
274 luaL_argerror(L, ud, NULL);
275
276 /* pop the expected metatable. */
277 lua_rawgeti(L, LUA_REGISTRYINDEX, class_ref);
278
Thierry Fournier9e7e3ea2016-01-27 09:55:30 +0100279 /* Check if the metadata have the expected type. */
Thierry Fournier53518272016-01-27 10:34:09 +0100280 ret = lua_rawequal(L, -1, -2);
281 lua_pop(L, 2);
282 if (!ret)
283 luaL_argerror(L, ud, NULL);
284
Thierry Fournier9e7e3ea2016-01-27 09:55:30 +0100285 /* Push on the stack at the entry [0] of the table. */
286 lua_rawgeti(L, ud, 0);
Thierry Fournier53518272016-01-27 10:34:09 +0100287
Thierry Fournier9e7e3ea2016-01-27 09:55:30 +0100288 /* Check if this entry is userdata. */
289 p = lua_touserdata(L, -1);
290 if (!p)
Thierry Fournier53518272016-01-27 10:34:09 +0100291 luaL_argerror(L, ud, NULL);
292
Thierry Fournier9e7e3ea2016-01-27 09:55:30 +0100293 /* Remove the entry returned by lua_rawgeti(). */
294 lua_pop(L, 1);
Thierry Fournier53518272016-01-27 10:34:09 +0100295
Thierry Fournier9e7e3ea2016-01-27 09:55:30 +0100296 /* Return the associated struct. */
297 return p;
298}
299
Thierry Fournierb1f46562016-01-21 09:46:15 +0100300/* This function return the current date at epoch format in milliseconds. */
301int hlua_now(lua_State *L)
302{
Willy Tarreaud2f61de2023-04-27 18:44:14 +0200303 /* WT: the doc says "returns the current time" and later says that it's
304 * monotonic. So the best fit is to use start_date+(now-start_time).
305 */
306 struct timeval tv;
307
Willy Tarreauc05d30e2023-04-28 14:50:29 +0200308 tv = NS_TO_TV(now_ns - start_time_ns);
Willy Tarreaud2f61de2023-04-27 18:44:14 +0200309 tv_add(&tv, &tv, &start_date);
310
Thierry Fournierb1f46562016-01-21 09:46:15 +0100311 lua_newtable(L);
312 lua_pushstring(L, "sec");
Willy Tarreaud2f61de2023-04-27 18:44:14 +0200313 lua_pushinteger(L, tv.tv_sec);
Thierry Fournierb1f46562016-01-21 09:46:15 +0100314 lua_rawset(L, -3);
315 lua_pushstring(L, "usec");
Willy Tarreaud2f61de2023-04-27 18:44:14 +0200316 lua_pushinteger(L, tv.tv_usec);
Thierry Fournierb1f46562016-01-21 09:46:15 +0100317 lua_rawset(L, -3);
318 return 1;
319}
320
Thierry Fournier1550d5d2016-01-21 09:35:41 +0100321/* This functions expects a Lua string as HTTP date, parse it and
322 * returns an integer containing the epoch format of the date, or
323 * nil if the parsing fails.
324 */
325static int hlua_parse_date(lua_State *L, int (*fcn)(const char *, int, struct tm*))
326{
327 const char *str;
328 size_t len;
329 struct tm tm;
330 time_t time;
331
332 str = luaL_checklstring(L, 1, &len);
333
334 if (!fcn(str, len, &tm)) {
335 lua_pushnil(L);
336 return 1;
337 }
338
339 /* This function considers the content of the broken-down time
340 * is exprimed in the UTC timezone. timegm don't care about
341 * the gnu variable tm_gmtoff. If gmtoff is set, or if you know
342 * the timezone from the broken-down time, it must be fixed
343 * after the conversion.
344 */
Willy Tarreauabd9bb22017-07-19 19:08:48 +0200345 time = my_timegm(&tm);
Thierry Fournier1550d5d2016-01-21 09:35:41 +0100346 if (time == -1) {
347 lua_pushnil(L);
348 return 1;
349 }
350
351 lua_pushinteger(L, (int)time);
352 return 1;
353}
354static int hlua_http_date(lua_State *L)
355{
356 return hlua_parse_date(L, parse_http_date);
357}
358static int hlua_imf_date(lua_State *L)
359{
360 return hlua_parse_date(L, parse_imf_date);
361}
362static int hlua_rfc850_date(lua_State *L)
363{
364 return hlua_parse_date(L, parse_rfc850_date);
365}
366static int hlua_asctime_date(lua_State *L)
367{
368 return hlua_parse_date(L, parse_asctime_date);
369}
370
Thierry Fourniereea77c02016-03-18 08:47:13 +0100371static int hlua_get_info(lua_State *L)
372{
373 int i;
374
Willy Tarreau0b26b382021-05-08 07:43:53 +0200375 stats_fill_info(stats, STATS_LEN, 0);
Thierry Fourniereea77c02016-03-18 08:47:13 +0100376
377 lua_newtable(L);
378 for (i=0; i<INF_TOTAL_FIELDS; i++) {
Willy Tarreaueaa55372019-10-09 07:39:11 +0200379 lua_pushstring(L, info_fields[i].name);
Thierry Fourniereea77c02016-03-18 08:47:13 +0100380 hlua_fcn_pushfield(L, &stats[i]);
381 lua_settable(L, -3);
382 }
383 return 1;
384}
385
Thierry Fournier49d48422016-02-19 12:09:29 +0100386static struct hlua_concat *hlua_check_concat(lua_State *L, int ud)
Thierry Fournier1de16592016-01-27 09:49:07 +0100387{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +0200388 return (hlua_checkudata(L, ud, class_concat_ref));
Thierry Fournier1de16592016-01-27 09:49:07 +0100389}
390
391static int hlua_concat_add(lua_State *L)
392{
Thierry Fournier49d48422016-02-19 12:09:29 +0100393 struct hlua_concat *b;
394 char *buffer;
395 char *new;
Thierry Fournier1de16592016-01-27 09:49:07 +0100396 const char *str;
397 size_t l;
398
399 /* First arg must be a concat object. */
400 b = hlua_check_concat(L, 1);
401
402 /* Second arg must be a string. */
403 str = luaL_checklstring(L, 2, &l);
404
Thierry Fournier49d48422016-02-19 12:09:29 +0100405 /* Get the buffer. */
406 lua_rawgeti(L, 1, 1);
407 buffer = lua_touserdata(L, -1);
408 lua_pop(L, 1);
409
410 /* Update the buffer size if it s required. The old buffer
411 * is crushed by the new in the object array, so it will
412 * be deleted by the GC.
413 * Note that in the first loop, the "new" variable is only
414 * used as a flag.
415 */
416 new = NULL;
417 while (b->size - b->len < l) {
418 b->size += HLUA_CONCAT_BLOCSZ;
419 new = buffer;
420 }
421 if (new) {
422 new = lua_newuserdata(L, b->size);
423 memcpy(new, buffer, b->len);
424 lua_rawseti(L, 1, 1);
425 buffer = new;
426 }
427
428 /* Copy string, and update metadata. */
429 memcpy(buffer + b->len, str, l);
430 b->len += l;
Thierry Fournier1de16592016-01-27 09:49:07 +0100431 return 0;
432}
433
434static int hlua_concat_dump(lua_State *L)
435{
Thierry Fournier49d48422016-02-19 12:09:29 +0100436 struct hlua_concat *b;
437 char *buffer;
Thierry Fournier1de16592016-01-27 09:49:07 +0100438
439 /* First arg must be a concat object. */
440 b = hlua_check_concat(L, 1);
441
Thierry Fournier49d48422016-02-19 12:09:29 +0100442 /* Get the buffer. */
443 lua_rawgeti(L, 1, 1);
444 buffer = lua_touserdata(L, -1);
445 lua_pop(L, 1);
446
Ilya Shipitsince7b00f2020-03-23 22:28:40 +0500447 /* Push the soncatenated string in the stack. */
Thierry Fournier49d48422016-02-19 12:09:29 +0100448 lua_pushlstring(L, buffer, b->len);
Thierry Fournier1de16592016-01-27 09:49:07 +0100449 return 1;
450}
451
452int hlua_concat_new(lua_State *L)
453{
Thierry Fournier49d48422016-02-19 12:09:29 +0100454 struct hlua_concat *b;
Thierry Fournier1de16592016-01-27 09:49:07 +0100455
456 lua_newtable(L);
Vincent Bernat3c2f2f22016-04-03 13:48:42 +0200457 b = lua_newuserdata(L, sizeof(*b));
Thierry Fournier49d48422016-02-19 12:09:29 +0100458 b->size = HLUA_CONCAT_BLOCSZ;
459 b->len = 0;
Thierry Fournier1de16592016-01-27 09:49:07 +0100460 lua_rawseti(L, -2, 0);
Thierry Fournier49d48422016-02-19 12:09:29 +0100461 lua_newuserdata(L, HLUA_CONCAT_BLOCSZ);
462 lua_rawseti(L, -2, 1);
Thierry Fournier1de16592016-01-27 09:49:07 +0100463
464 lua_rawgeti(L, LUA_REGISTRYINDEX, class_concat_ref);
465 lua_setmetatable(L, -2);
466
Thierry Fournier1de16592016-01-27 09:49:07 +0100467 return 1;
468}
469
470static int concat_tostring(lua_State *L)
471{
472 const void *ptr = lua_topointer(L, 1);
473 lua_pushfstring(L, "Concat object: %p", ptr);
474 return 1;
475}
476
Thierry Fournier599f2312022-09-30 10:40:39 +0200477static void hlua_concat_init(lua_State *L)
Thierry Fournier1de16592016-01-27 09:49:07 +0100478{
479 /* Creates the buffered concat object. */
480 lua_newtable(L);
481
482 lua_pushstring(L, "__tostring");
483 lua_pushcclosure(L, concat_tostring, 0);
484 lua_settable(L, -3);
485
486 lua_pushstring(L, "__index"); /* Creates the index entry. */
487 lua_newtable(L); /* The "__index" content. */
488
489 lua_pushstring(L, "add");
490 lua_pushcclosure(L, hlua_concat_add, 0);
491 lua_settable(L, -3);
492
493 lua_pushstring(L, "dump");
494 lua_pushcclosure(L, hlua_concat_dump, 0);
495 lua_settable(L, -3);
496
497 lua_settable(L, -3); /* Sets the __index entry. */
498 class_concat_ref = luaL_ref(L, LUA_REGISTRYINDEX);
Thierry Fournier1de16592016-01-27 09:49:07 +0100499}
500
Adis Nezirovic8878f8e2018-07-13 12:18:33 +0200501int hlua_fcn_new_stktable(lua_State *L, struct stktable *tbl)
502{
503 lua_newtable(L);
504
505 /* Pop a class stktbl metatable and affect it to the userdata. */
506 lua_rawgeti(L, LUA_REGISTRYINDEX, class_stktable_ref);
507 lua_setmetatable(L, -2);
508
509 lua_pushlightuserdata(L, tbl);
510 lua_rawseti(L, -2, 0);
511 return 1;
512}
513
514static struct stktable *hlua_check_stktable(lua_State *L, int ud)
515{
516 return hlua_checkudata(L, ud, class_stktable_ref);
517}
518
519/* Extract stick table attributes into Lua table */
520int hlua_stktable_info(lua_State *L)
521{
522 struct stktable *tbl;
523 int dt;
524
525 tbl = hlua_check_stktable(L, 1);
526
527 if (!tbl->id) {
528 lua_pushnil(L);
529 return 1;
530 }
531
532 lua_newtable(L);
533
534 lua_pushstring(L, "type");
535 lua_pushstring(L, stktable_types[tbl->type].kw);
536 lua_settable(L, -3);
537
538 lua_pushstring(L, "length");
539 lua_pushinteger(L, tbl->key_size);
540 lua_settable(L, -3);
541
542 lua_pushstring(L, "size");
543 hlua_fcn_pushunsigned(L, tbl->size);
544 lua_settable(L, -3);
545
546 lua_pushstring(L, "used");
547 hlua_fcn_pushunsigned(L, tbl->current);
548 lua_settable(L, -3);
549
550 lua_pushstring(L, "nopurge");
551 lua_pushboolean(L, tbl->nopurge > 0);
552 lua_settable(L, -3);
553
554 lua_pushstring(L, "expire");
555 lua_pushinteger(L, tbl->expire);
556 lua_settable(L, -3);
557
558 /* Save data types periods (if applicable) in 'data' table */
559 lua_pushstring(L, "data");
560 lua_newtable(L);
561
562 for (dt = 0; dt < STKTABLE_DATA_TYPES; dt++) {
563 if (tbl->data_ofs[dt] == 0)
564 continue;
565
566 lua_pushstring(L, stktable_data_types[dt].name);
567
568 if (stktable_data_types[dt].arg_type == ARG_T_DELAY)
569 lua_pushinteger(L, tbl->data_arg[dt].u);
570 else
571 lua_pushinteger(L, -1);
572
573 lua_settable(L, -3);
574 }
575
576 lua_settable(L, -3);
577
578 return 1;
579}
580
581/* Helper to get extract stick table entry into Lua table */
582static void hlua_stktable_entry(lua_State *L, struct stktable *t, struct stksess *ts)
583{
584 int dt;
585 void *ptr;
586
587 for (dt = 0; dt < STKTABLE_DATA_TYPES; dt++) {
588
589 if (t->data_ofs[dt] == 0)
590 continue;
591
592 lua_pushstring(L, stktable_data_types[dt].name);
593
594 ptr = stktable_data_ptr(t, ts, dt);
595 switch (stktable_data_types[dt].std_type) {
596 case STD_T_SINT:
597 lua_pushinteger(L, stktable_data_cast(ptr, std_t_sint));
598 break;
599 case STD_T_UINT:
600 hlua_fcn_pushunsigned(L, stktable_data_cast(ptr, std_t_uint));
601 break;
602 case STD_T_ULL:
603 hlua_fcn_pushunsigned_ll(L, stktable_data_cast(ptr, std_t_ull));
604 break;
605 case STD_T_FRQP:
606 lua_pushinteger(L, read_freq_ctr_period(&stktable_data_cast(ptr, std_t_frqp),
607 t->data_arg[dt].u));
608 break;
Adis Nezirovicad9f9ed2020-05-05 13:57:28 +0200609 case STD_T_DICT: {
610 struct dict_entry *de;
611 de = stktable_data_cast(ptr, std_t_dict);
612 lua_pushstring(L, de ? (char *)de->value.key : "-");
613 break;
614 }
Adis Nezirovic8878f8e2018-07-13 12:18:33 +0200615 }
616
617 lua_settable(L, -3);
618 }
619}
620
621/* Looks in table <t> for a sticky session matching key <key>
622 * Returns table with session data or nil
623 *
624 * The returned table always contains 'use' and 'expire' (integer) fields.
625 * For frequency/rate counters, each data entry is returned as table with
626 * 'value' and 'period' fields.
627 */
628int hlua_stktable_lookup(lua_State *L)
629{
630 struct stktable *t;
631 struct sample smp;
632 struct stktable_key *skey;
633 struct stksess *ts;
634
635 t = hlua_check_stktable(L, 1);
636 smp.data.type = SMP_T_STR;
637 smp.flags = SMP_F_CONST;
Nathan Neulinger31a841c2020-03-03 20:32:47 -0600638 smp.data.u.str.area = (char *)lua_tolstring(L, 2, &smp.data.u.str.data);
Adis Nezirovic8878f8e2018-07-13 12:18:33 +0200639
640 skey = smp_to_stkey(&smp, t);
641 if (!skey) {
642 lua_pushnil(L);
643 return 1;
644 }
645
646 ts = stktable_lookup_key(t, skey);
647 if (!ts) {
648 lua_pushnil(L);
649 return 1;
650 }
651
652 lua_newtable(L);
653 lua_pushstring(L, "use");
654 lua_pushinteger(L, ts->ref_cnt - 1);
655 lua_settable(L, -3);
656
657 lua_pushstring(L, "expire");
658 lua_pushinteger(L, tick_remain(now_ms, ts->expire));
659 lua_settable(L, -3);
660
661 hlua_stktable_entry(L, t, ts);
Willy Tarreau76642222022-10-11 12:02:50 +0200662 HA_RWLOCK_WRLOCK(STK_TABLE_LOCK, &t->lock);
Adis Nezirovic8878f8e2018-07-13 12:18:33 +0200663 ts->ref_cnt--;
Willy Tarreau76642222022-10-11 12:02:50 +0200664 HA_RWLOCK_WRUNLOCK(STK_TABLE_LOCK, &t->lock);
Adis Nezirovic8878f8e2018-07-13 12:18:33 +0200665
666 return 1;
667}
668
669struct stk_filter {
670 long long val;
671 int type;
672 int op;
673};
674
675
676/* Helper for returning errors to callers using Lua convention (nil, err) */
677static int hlua_error(lua_State *L, const char *fmt, ...) {
678 char buf[256];
679 int len;
680 va_list args;
681 va_start(args, fmt);
682 len = vsnprintf(buf, sizeof(buf), fmt, args);
683 va_end(args);
684
685 if (len < 0) {
686 ha_alert("hlua_error(): Could not write error message.\n");
687 lua_pushnil(L);
688 return 1;
689 } else if (len >= sizeof(buf))
690 ha_alert("hlua_error(): Error message was truncated.\n");
691
692 lua_pushnil(L);
693 lua_pushstring(L, buf);
694
695 return 2;
696}
697
698/* Dump the contents of stick table <t>*/
699int hlua_stktable_dump(lua_State *L)
700{
701 struct stktable *t;
702 struct ebmb_node *eb;
703 struct ebmb_node *n;
704 struct stksess *ts;
705 int type;
706 int op;
707 int dt;
708 long long val;
Adis Nezirovic1a693fc2020-01-16 15:19:29 +0100709 struct stk_filter filter[STKTABLE_FILTER_LEN];
Adis Nezirovic8878f8e2018-07-13 12:18:33 +0200710 int filter_count = 0;
711 int i;
712 int skip_entry;
713 void *ptr;
714
715 t = hlua_check_stktable(L, 1);
716 type = lua_type(L, 2);
717
718 switch (type) {
719 case LUA_TNONE:
720 case LUA_TNIL:
721 break;
722 case LUA_TTABLE:
723 lua_pushnil(L);
724 while (lua_next(L, 2) != 0) {
725 int entry_idx = 0;
726
Adis Nezirovic1a693fc2020-01-16 15:19:29 +0100727 if (filter_count >= STKTABLE_FILTER_LEN)
728 return hlua_error(L, "Filter table too large (len > %d)", STKTABLE_FILTER_LEN);
Adis Nezirovic8878f8e2018-07-13 12:18:33 +0200729
730 if (lua_type(L, -1) != LUA_TTABLE || lua_rawlen(L, -1) != 3)
731 return hlua_error(L, "Filter table entry must be a triplet: {\"data_col\", \"op\", val} (entry #%d)", filter_count + 1);
732
733 lua_pushnil(L);
734 while (lua_next(L, -2) != 0) {
735 switch (entry_idx) {
736 case 0:
737 if (lua_type(L, -1) != LUA_TSTRING)
738 return hlua_error(L, "Filter table data column must be string (entry #%d)", filter_count + 1);
739
740 dt = stktable_get_data_type((char *)lua_tostring(L, -1));
741 if (dt < 0 || t->data_ofs[dt] == 0)
742 return hlua_error(L, "Filter table data column not present in stick table (entry #%d)", filter_count + 1);
743 filter[filter_count].type = dt;
744 break;
745 case 1:
746 if (lua_type(L, -1) != LUA_TSTRING)
747 return hlua_error(L, "Filter table operator must be string (entry #%d)", filter_count + 1);
748
749 op = get_std_op(lua_tostring(L, -1));
750 if (op < 0)
751 return hlua_error(L, "Unknown operator in filter table (entry #%d)", filter_count + 1);
752 filter[filter_count].op = op;
753 break;
754 case 2:
755 val = lua_tointeger(L, -1);
756 filter[filter_count].val = val;
757 filter_count++;
758 break;
759 default:
760 break;
761 }
762 entry_idx++;
763 lua_pop(L, 1);
764 }
765 lua_pop(L, 1);
766 }
767 break;
768 default:
769 return hlua_error(L, "filter table expected");
770 }
771
772 lua_newtable(L);
773
Willy Tarreau76642222022-10-11 12:02:50 +0200774 HA_RWLOCK_WRLOCK(STK_TABLE_LOCK, &t->lock);
Adis Nezirovic8878f8e2018-07-13 12:18:33 +0200775 eb = ebmb_first(&t->keys);
776 for (n = eb; n; n = ebmb_next(n)) {
777 ts = ebmb_entry(n, struct stksess, key);
778 if (!ts) {
Willy Tarreau76642222022-10-11 12:02:50 +0200779 HA_RWLOCK_WRUNLOCK(STK_TABLE_LOCK, &t->lock);
Adis Nezirovic8878f8e2018-07-13 12:18:33 +0200780 return 1;
781 }
782 ts->ref_cnt++;
Willy Tarreau76642222022-10-11 12:02:50 +0200783 HA_RWLOCK_WRUNLOCK(STK_TABLE_LOCK, &t->lock);
Adis Nezirovic8878f8e2018-07-13 12:18:33 +0200784
785 /* multi condition/value filter */
786 skip_entry = 0;
787 for (i = 0; i < filter_count; i++) {
788 if (t->data_ofs[filter[i].type] == 0)
789 continue;
790
791 ptr = stktable_data_ptr(t, ts, filter[i].type);
792
793 switch (stktable_data_types[filter[i].type].std_type) {
794 case STD_T_SINT:
795 val = stktable_data_cast(ptr, std_t_sint);
796 break;
797 case STD_T_UINT:
798 val = stktable_data_cast(ptr, std_t_uint);
799 break;
800 case STD_T_ULL:
801 val = stktable_data_cast(ptr, std_t_ull);
802 break;
803 case STD_T_FRQP:
804 val = read_freq_ctr_period(&stktable_data_cast(ptr, std_t_frqp),
805 t->data_arg[filter[i].type].u);
806 break;
807 default:
808 continue;
809 break;
810 }
811
812 op = filter[i].op;
813
814 if ((val < filter[i].val && (op == STD_OP_EQ || op == STD_OP_GT || op == STD_OP_GE)) ||
815 (val == filter[i].val && (op == STD_OP_NE || op == STD_OP_GT || op == STD_OP_LT)) ||
816 (val > filter[i].val && (op == STD_OP_EQ || op == STD_OP_LT || op == STD_OP_LE))) {
817 skip_entry = 1;
818 break;
819 }
820 }
821
822 if (skip_entry) {
Willy Tarreau76642222022-10-11 12:02:50 +0200823 HA_RWLOCK_WRLOCK(STK_TABLE_LOCK, &t->lock);
Adis Nezirovic8878f8e2018-07-13 12:18:33 +0200824 ts->ref_cnt--;
825 continue;
826 }
827
828 if (t->type == SMP_T_IPV4) {
829 char addr[INET_ADDRSTRLEN];
830 inet_ntop(AF_INET, (const void *)&ts->key.key, addr, sizeof(addr));
831 lua_pushstring(L, addr);
832 } else if (t->type == SMP_T_IPV6) {
833 char addr[INET6_ADDRSTRLEN];
834 inet_ntop(AF_INET6, (const void *)&ts->key.key, addr, sizeof(addr));
835 lua_pushstring(L, addr);
836 } else if (t->type == SMP_T_SINT) {
837 lua_pushinteger(L, *ts->key.key);
838 } else if (t->type == SMP_T_STR) {
839 lua_pushstring(L, (const char *)ts->key.key);
840 } else {
841 return hlua_error(L, "Unsupported stick table key type");
842 }
843
844 lua_newtable(L);
845 hlua_stktable_entry(L, t, ts);
846 lua_settable(L, -3);
Willy Tarreau76642222022-10-11 12:02:50 +0200847 HA_RWLOCK_WRLOCK(STK_TABLE_LOCK, &t->lock);
Adis Nezirovic8878f8e2018-07-13 12:18:33 +0200848 ts->ref_cnt--;
849 }
Willy Tarreau76642222022-10-11 12:02:50 +0200850 HA_RWLOCK_WRUNLOCK(STK_TABLE_LOCK, &t->lock);
Adis Nezirovic8878f8e2018-07-13 12:18:33 +0200851
852 return 1;
853}
854
Thierry Fournierff480422016-02-25 08:36:46 +0100855int hlua_fcn_new_listener(lua_State *L, struct listener *lst)
856{
857 lua_newtable(L);
858
859 /* Pop a class sesison metatable and affect it to the userdata. */
860 lua_rawgeti(L, LUA_REGISTRYINDEX, class_listener_ref);
861 lua_setmetatable(L, -2);
862
863 lua_pushlightuserdata(L, lst);
864 lua_rawseti(L, -2, 0);
865 return 1;
866}
867
868static struct listener *hlua_check_listener(lua_State *L, int ud)
869{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +0200870 return hlua_checkudata(L, ud, class_listener_ref);
Thierry Fournierff480422016-02-25 08:36:46 +0100871}
872
873int hlua_listener_get_stats(lua_State *L)
874{
875 struct listener *li;
876 int i;
877
878 li = hlua_check_listener(L, 1);
879
Willy Tarreauc95bad52016-12-22 00:13:31 +0100880 if (!li->bind_conf->frontend) {
Thierry Fournierff480422016-02-25 08:36:46 +0100881 lua_pushnil(L);
882 return 1;
883 }
884
William Dauchy655e14e2021-02-14 23:22:54 +0100885 stats_fill_li_stats(li->bind_conf->frontend, li, STAT_SHLGNDS, stats,
886 STATS_LEN, NULL);
Thierry Fournierff480422016-02-25 08:36:46 +0100887
888 lua_newtable(L);
889 for (i=0; i<ST_F_TOTAL_FIELDS; i++) {
Willy Tarreaueaa55372019-10-09 07:39:11 +0200890 lua_pushstring(L, stat_fields[i].name);
Thierry Fournierff480422016-02-25 08:36:46 +0100891 hlua_fcn_pushfield(L, &stats[i]);
892 lua_settable(L, -3);
893 }
894 return 1;
895
896}
897
Thierry Fournier1edf36a2022-10-07 13:25:51 +0200898int hlua_server_gc(lua_State *L)
899{
900 struct server *srv = hlua_checkudata(L, 1, class_server_ref);
901
902 srv_drop(srv); /* srv_drop allows NULL srv */
903 return 0;
904}
905
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +0100906static struct server *hlua_check_server(lua_State *L, int ud)
907{
Amaury Denoyelle86f37072021-08-23 14:06:31 +0200908 struct server *srv = hlua_checkudata(L, ud, class_server_ref);
Thierry Fournier1edf36a2022-10-07 13:25:51 +0200909 if (srv->flags & SRV_F_DELETED) {
910 return NULL;
911 }
Amaury Denoyelle86f37072021-08-23 14:06:31 +0200912 return srv;
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +0100913}
914
915int hlua_server_get_stats(lua_State *L)
916{
917 struct server *srv;
918 int i;
919
920 srv = hlua_check_server(L, 1);
Thierry Fournier1edf36a2022-10-07 13:25:51 +0200921 if (srv == NULL) {
922 lua_pushnil(L);
923 return 1;
924 }
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +0100925
926 if (!srv->proxy) {
927 lua_pushnil(L);
928 return 1;
929 }
930
William Dauchyd3a9a492021-01-25 17:29:03 +0100931 stats_fill_sv_stats(srv->proxy, srv, STAT_SHLGNDS, stats,
932 STATS_LEN, NULL);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +0100933
934 lua_newtable(L);
935 for (i=0; i<ST_F_TOTAL_FIELDS; i++) {
Willy Tarreaueaa55372019-10-09 07:39:11 +0200936 lua_pushstring(L, stat_fields[i].name);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +0100937 hlua_fcn_pushfield(L, &stats[i]);
938 lua_settable(L, -3);
939 }
940 return 1;
941
942}
943
Aurelien DARRAGON3889efa2023-04-03 14:00:58 +0200944int hlua_server_get_proxy(lua_State *L)
945{
946 struct server *srv;
947
948 srv = hlua_check_server(L, 1);
949 if (srv == NULL) {
950 lua_pushnil(L);
951 return 1;
952 }
953
954 if (!srv->proxy) {
955 lua_pushnil(L);
956 return 1;
957 }
958
959 hlua_fcn_new_proxy(L, srv->proxy);
960 return 1;
961}
962
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +0100963int hlua_server_get_addr(lua_State *L)
964{
965 struct server *srv;
966 char addr[INET6_ADDRSTRLEN];
967 luaL_Buffer b;
968
969 srv = hlua_check_server(L, 1);
Thierry Fournier1edf36a2022-10-07 13:25:51 +0200970 if (srv == NULL) {
971 lua_pushnil(L);
972 return 1;
973 }
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +0100974
975 luaL_buffinit(L, &b);
976
977 switch (srv->addr.ss_family) {
978 case AF_INET:
979 inet_ntop(AF_INET, &((struct sockaddr_in *)&srv->addr)->sin_addr,
980 addr, INET_ADDRSTRLEN);
981 luaL_addstring(&b, addr);
982 luaL_addstring(&b, ":");
Nenad Merdanovic38494732017-07-23 22:04:58 -0400983 snprintf(addr, INET_ADDRSTRLEN, "%d", srv->svc_port);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +0100984 luaL_addstring(&b, addr);
985 break;
986 case AF_INET6:
987 inet_ntop(AF_INET6, &((struct sockaddr_in6 *)&srv->addr)->sin6_addr,
Nenad Merdanovica9f04042017-07-23 22:04:59 -0400988 addr, INET6_ADDRSTRLEN);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +0100989 luaL_addstring(&b, addr);
990 luaL_addstring(&b, ":");
Nenad Merdanovic38494732017-07-23 22:04:58 -0400991 snprintf(addr, INET_ADDRSTRLEN, "%d", srv->svc_port);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +0100992 luaL_addstring(&b, addr);
993 break;
994 case AF_UNIX:
995 luaL_addstring(&b, (char *)((struct sockaddr_un *)&srv->addr)->sun_path);
996 break;
997 default:
998 luaL_addstring(&b, "<unknown>");
999 break;
1000 }
1001
1002 luaL_pushresult(&b);
1003 return 1;
1004}
1005
Thierry Fournierb0467732022-10-07 12:07:24 +02001006int hlua_server_get_puid(lua_State *L)
1007{
1008 struct server *srv;
1009 char buffer[12];
1010
1011 srv = hlua_check_server(L, 1);
Thierry Fournier1edf36a2022-10-07 13:25:51 +02001012 if (srv == NULL) {
1013 lua_pushnil(L);
1014 return 1;
1015 }
Thierry Fournierb0467732022-10-07 12:07:24 +02001016
1017 snprintf(buffer, sizeof(buffer), "%d", srv->puid);
1018 lua_pushstring(L, buffer);
1019 return 1;
1020}
1021
Aurelien DARRAGON94ee6632023-03-10 15:11:27 +01001022int hlua_server_get_rid(lua_State *L)
1023{
1024 struct server *srv;
1025 char buffer[12];
1026
1027 srv = hlua_check_server(L, 1);
1028 if (srv == NULL) {
1029 lua_pushnil(L);
1030 return 1;
1031 }
1032
1033 snprintf(buffer, sizeof(buffer), "%d", srv->rid);
1034 lua_pushstring(L, buffer);
1035 return 1;
1036}
1037
Thierry Fournierb0467732022-10-07 12:07:24 +02001038int hlua_server_get_name(lua_State *L)
1039{
1040 struct server *srv;
1041
1042 srv = hlua_check_server(L, 1);
Thierry Fournier1edf36a2022-10-07 13:25:51 +02001043 if (srv == NULL) {
1044 lua_pushnil(L);
1045 return 1;
1046 }
1047
Thierry Fournierb0467732022-10-07 12:07:24 +02001048 lua_pushstring(L, srv->id);
1049 return 1;
1050}
1051
Aurelien DARRAGONc4b24372023-03-02 12:00:06 +01001052/* __index metamethod for server class
Ilya Shipitsinccf80122023-04-22 20:20:39 +02001053 * support for additional keys that are missing from the main table
Aurelien DARRAGONc4b24372023-03-02 12:00:06 +01001054 * stack:1 = table (server class), stack:2 = requested key
1055 * Returns 1 if key is supported
1056 * else returns 0 to make lua return NIL value to the caller
1057 */
1058static int hlua_server_index(struct lua_State *L)
1059{
1060 const char *key = lua_tostring(L, 2);
1061
1062 if (!strcmp(key, "name")) {
1063 if (ONLY_ONCE())
1064 ha_warning("hlua: use of server 'name' attribute is deprecated and will eventually be removed, please use get_name() function instead: %s\n", hlua_traceback(L, ", "));
1065 lua_pushvalue(L, 1);
1066 hlua_server_get_name(L);
1067 return 1;
1068 }
1069 if (!strcmp(key, "puid")) {
1070 if (ONLY_ONCE())
1071 ha_warning("hlua: use of server 'puid' attribute is deprecated and will eventually be removed, please use get_puid() function instead: %s\n", hlua_traceback(L, ", "));
1072 lua_pushvalue(L, 1);
1073 hlua_server_get_puid(L);
1074 return 1;
1075 }
1076 /* unknown attribute */
1077 return 0;
1078}
1079
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001080int hlua_server_is_draining(lua_State *L)
1081{
1082 struct server *srv;
1083
1084 srv = hlua_check_server(L, 1);
Thierry Fournier1edf36a2022-10-07 13:25:51 +02001085 if (srv == NULL) {
1086 lua_pushnil(L);
1087 return 1;
1088 }
1089
Aurelien DARRAGON862a0fe2023-03-29 10:46:36 +02001090 lua_pushboolean(L, server_is_draining(srv));
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001091 return 1;
1092}
1093
Aurelien DARRAGONc72051d2023-03-29 10:44:38 +02001094int hlua_server_is_backup(lua_State *L)
1095{
1096 struct server *srv;
1097
1098 srv = hlua_check_server(L, 1);
1099 if (srv == NULL) {
1100 lua_pushnil(L);
1101 return 1;
1102 }
1103
1104 lua_pushboolean(L, (srv->flags & SRV_F_BACKUP));
1105 return 1;
1106}
1107
Aurelien DARRAGON7a03dee2023-03-29 10:49:30 +02001108int hlua_server_is_dynamic(lua_State *L)
1109{
1110 struct server *srv;
1111
1112 srv = hlua_check_server(L, 1);
1113 if (srv == NULL) {
1114 lua_pushnil(L);
1115 return 1;
1116 }
1117
1118 lua_pushboolean(L, (srv->flags & SRV_F_DYNAMIC));
1119 return 1;
1120}
1121
Aurelien DARRAGONfc759b42023-04-03 10:43:17 +02001122int hlua_server_get_cur_sess(lua_State *L)
1123{
1124 struct server *srv;
1125
1126 srv = hlua_check_server(L, 1);
1127 if (srv == NULL) {
1128 lua_pushnil(L);
1129 return 1;
1130 }
1131
1132 lua_pushinteger(L, srv->cur_sess);
1133 return 1;
1134}
1135
1136int hlua_server_get_pend_conn(lua_State *L)
1137{
1138 struct server *srv;
1139
1140 srv = hlua_check_server(L, 1);
1141 if (srv == NULL) {
1142 lua_pushnil(L);
1143 return 1;
1144 }
1145
1146 lua_pushinteger(L, srv->queue.length);
1147 return 1;
1148}
1149
Patrick Hemmer32d539f2018-04-29 14:25:46 -04001150int hlua_server_set_maxconn(lua_State *L)
1151{
1152 struct server *srv;
1153 const char *maxconn;
1154 const char *err;
1155
1156 srv = hlua_check_server(L, 1);
Thierry Fournier1edf36a2022-10-07 13:25:51 +02001157 if (srv == NULL) {
1158 lua_pushnil(L);
1159 return 1;
1160 }
1161
Patrick Hemmer32d539f2018-04-29 14:25:46 -04001162 maxconn = luaL_checkstring(L, 2);
1163
1164 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
1165 err = server_parse_maxconn_change_request(srv, maxconn);
1166 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
1167 if (!err)
1168 lua_pushnil(L);
1169 else
1170 hlua_pushstrippedstring(L, err);
1171 return 1;
1172}
1173
1174int hlua_server_get_maxconn(lua_State *L)
1175{
1176 struct server *srv;
1177
1178 srv = hlua_check_server(L, 1);
Thierry Fournier1edf36a2022-10-07 13:25:51 +02001179 if (srv == NULL) {
1180 lua_pushnil(L);
1181 return 1;
1182 }
1183
Patrick Hemmer32d539f2018-04-29 14:25:46 -04001184 lua_pushinteger(L, srv->maxconn);
1185 return 1;
1186}
1187
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001188int hlua_server_set_weight(lua_State *L)
1189{
1190 struct server *srv;
1191 const char *weight;
1192 const char *err;
1193
1194 srv = hlua_check_server(L, 1);
Thierry Fournier1edf36a2022-10-07 13:25:51 +02001195 if (srv == NULL) {
1196 lua_pushnil(L);
1197 return 1;
1198 }
1199
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001200 weight = luaL_checkstring(L, 2);
1201
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001202 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001203 err = server_parse_weight_change_request(srv, weight);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001204 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001205 if (!err)
1206 lua_pushnil(L);
1207 else
1208 hlua_pushstrippedstring(L, err);
1209 return 1;
1210}
1211
1212int hlua_server_get_weight(lua_State *L)
1213{
1214 struct server *srv;
1215
1216 srv = hlua_check_server(L, 1);
Thierry Fournier1edf36a2022-10-07 13:25:51 +02001217 if (srv == NULL) {
1218 lua_pushnil(L);
1219 return 1;
1220 }
1221
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001222 lua_pushinteger(L, srv->uweight);
1223 return 1;
1224}
1225
1226int hlua_server_set_addr(lua_State *L)
1227{
1228 struct server *srv;
1229 const char *addr;
Joseph C. Sible49bbf522020-05-04 22:20:32 -04001230 const char *port;
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001231 const char *err;
1232
1233 srv = hlua_check_server(L, 1);
Thierry Fournier1edf36a2022-10-07 13:25:51 +02001234 if (srv == NULL) {
1235 lua_pushnil(L);
1236 return 1;
1237 }
1238
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001239 addr = luaL_checkstring(L, 2);
Joseph C. Sible49bbf522020-05-04 22:20:32 -04001240 if (lua_gettop(L) >= 3)
1241 port = luaL_checkstring(L, 3);
1242 else
1243 port = NULL;
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001244
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001245 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01001246 err = srv_update_addr_port(srv, addr, port, "Lua script");
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001247 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001248 if (!err)
1249 lua_pushnil(L);
1250 else
1251 hlua_pushstrippedstring(L, err);
1252 return 1;
1253}
1254
1255int hlua_server_shut_sess(lua_State *L)
1256{
1257 struct server *srv;
1258
1259 srv = hlua_check_server(L, 1);
Thierry Fournier1edf36a2022-10-07 13:25:51 +02001260 if (srv == NULL) {
1261 return 0;
1262 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001263 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001264 srv_shutdown_streams(srv, SF_ERR_KILLED);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001265 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001266 return 0;
1267}
1268
1269int hlua_server_set_drain(lua_State *L)
1270{
1271 struct server *srv;
1272
1273 srv = hlua_check_server(L, 1);
Thierry Fournier1edf36a2022-10-07 13:25:51 +02001274 if (srv == NULL) {
1275 return 0;
1276 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001277 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001278 srv_adm_set_drain(srv);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001279 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001280 return 0;
1281}
1282
1283int hlua_server_set_maint(lua_State *L)
1284{
1285 struct server *srv;
1286
1287 srv = hlua_check_server(L, 1);
Thierry Fournier1edf36a2022-10-07 13:25:51 +02001288 if (srv == NULL) {
1289 return 0;
1290 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001291 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001292 srv_adm_set_maint(srv);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001293 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001294 return 0;
1295}
1296
1297int hlua_server_set_ready(lua_State *L)
1298{
1299 struct server *srv;
1300
1301 srv = hlua_check_server(L, 1);
Thierry Fournier1edf36a2022-10-07 13:25:51 +02001302 if (srv == NULL) {
1303 return 0;
1304 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001305 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001306 srv_adm_set_ready(srv);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001307 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001308 return 0;
1309}
1310
1311int hlua_server_check_enable(lua_State *L)
1312{
1313 struct server *sv;
1314
1315 sv = hlua_check_server(L, 1);
Thierry Fournier1edf36a2022-10-07 13:25:51 +02001316 if (sv == NULL) {
1317 return 0;
1318 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001319 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001320 if (sv->check.state & CHK_ST_CONFIGURED) {
Adis Nezirovicceee9332017-07-26 09:19:06 +02001321 sv->check.state |= CHK_ST_ENABLED;
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001322 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001323 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001324 return 0;
1325}
1326
1327int hlua_server_check_disable(lua_State *L)
1328{
1329 struct server *sv;
1330
1331 sv = hlua_check_server(L, 1);
Thierry Fournier1edf36a2022-10-07 13:25:51 +02001332 if (sv == NULL) {
1333 return 0;
1334 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001335 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001336 if (sv->check.state & CHK_ST_CONFIGURED) {
Adis Nezirovicceee9332017-07-26 09:19:06 +02001337 sv->check.state &= ~CHK_ST_ENABLED;
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001338 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001339 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001340 return 0;
1341}
1342
1343int hlua_server_check_force_up(lua_State *L)
1344{
1345 struct server *sv;
1346
1347 sv = hlua_check_server(L, 1);
Thierry Fournier1edf36a2022-10-07 13:25:51 +02001348 if (sv == NULL) {
1349 return 0;
1350 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001351 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001352 if (!(sv->track)) {
1353 sv->check.health = sv->check.rise + sv->check.fall - 1;
Aurelien DARRAGON1746b562023-04-04 10:17:40 +02001354 srv_set_running(sv, SRV_OP_STCHGC_LUA);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001355 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001356 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001357 return 0;
1358}
1359
1360int hlua_server_check_force_nolb(lua_State *L)
1361{
1362 struct server *sv;
1363
1364 sv = hlua_check_server(L, 1);
Thierry Fournier1edf36a2022-10-07 13:25:51 +02001365 if (sv == NULL) {
1366 return 0;
1367 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001368 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001369 if (!(sv->track)) {
1370 sv->check.health = sv->check.rise + sv->check.fall - 1;
Aurelien DARRAGON1746b562023-04-04 10:17:40 +02001371 srv_set_stopping(sv, SRV_OP_STCHGC_LUA);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001372 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001373 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001374 return 0;
1375}
1376
1377int hlua_server_check_force_down(lua_State *L)
1378{
1379 struct server *sv;
1380
1381 sv = hlua_check_server(L, 1);
Thierry Fournier1edf36a2022-10-07 13:25:51 +02001382 if (sv == NULL) {
1383 return 0;
1384 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001385 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001386 if (!(sv->track)) {
1387 sv->check.health = 0;
Aurelien DARRAGON1746b562023-04-04 10:17:40 +02001388 srv_set_stopped(sv, SRV_OP_STCHGC_LUA);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001389 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001390 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001391 return 0;
1392}
1393
1394int hlua_server_agent_enable(lua_State *L)
1395{
1396 struct server *sv;
1397
1398 sv = hlua_check_server(L, 1);
Thierry Fournier1edf36a2022-10-07 13:25:51 +02001399 if (sv == NULL) {
1400 return 0;
1401 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001402 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001403 if (sv->agent.state & CHK_ST_CONFIGURED) {
1404 sv->agent.state |= CHK_ST_ENABLED;
1405 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001406 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001407 return 0;
1408}
1409
1410int hlua_server_agent_disable(lua_State *L)
1411{
1412 struct server *sv;
1413
1414 sv = hlua_check_server(L, 1);
Thierry Fournier1edf36a2022-10-07 13:25:51 +02001415 if (sv == NULL) {
1416 return 0;
1417 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001418 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001419 if (sv->agent.state & CHK_ST_CONFIGURED) {
1420 sv->agent.state &= ~CHK_ST_ENABLED;
1421 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001422 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001423 return 0;
1424}
1425
1426int hlua_server_agent_force_up(lua_State *L)
1427{
1428 struct server *sv;
1429
1430 sv = hlua_check_server(L, 1);
Thierry Fournier1edf36a2022-10-07 13:25:51 +02001431 if (sv == NULL) {
1432 return 0;
1433 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001434 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001435 if (sv->agent.state & CHK_ST_ENABLED) {
1436 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
Aurelien DARRAGON1746b562023-04-04 10:17:40 +02001437 srv_set_running(sv, SRV_OP_STCHGC_LUA);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001438 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001439 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001440 return 0;
1441}
1442
1443int hlua_server_agent_force_down(lua_State *L)
1444{
1445 struct server *sv;
1446
1447 sv = hlua_check_server(L, 1);
Thierry Fournier1edf36a2022-10-07 13:25:51 +02001448 if (sv == NULL) {
1449 return 0;
1450 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001451 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001452 if (sv->agent.state & CHK_ST_ENABLED) {
1453 sv->agent.health = 0;
Aurelien DARRAGON1746b562023-04-04 10:17:40 +02001454 srv_set_stopped(sv, SRV_OP_STCHGC_LUA);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001455 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001456 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001457 return 0;
1458}
1459
Aurelien DARRAGON406511a2023-03-29 11:30:36 +02001460/* returns the tracked server, if any */
1461int hlua_server_tracking(lua_State *L)
1462{
1463 struct server *sv;
1464 struct server *tracked;
1465
1466 sv = hlua_check_server(L, 1);
1467 if (sv == NULL) {
1468 return 0;
1469 }
1470
1471 tracked = sv->track;
1472 if (tracked == NULL)
1473 lua_pushnil(L);
1474 else
1475 hlua_fcn_new_server(L, tracked);
1476
1477 return 1;
1478}
1479
Aurelien DARRAGON4be36a12023-03-29 14:02:39 +02001480/* returns an array of servers tracking the current server */
1481int hlua_server_get_trackers(lua_State *L)
1482{
1483 struct server *sv;
1484 struct server *cur_tracker;
1485 int index;
1486
1487 sv = hlua_check_server(L, 1);
1488 if (sv == NULL) {
1489 return 0;
1490 }
1491
1492 lua_newtable(L);
1493 cur_tracker = sv->trackers;
1494 for (index = 1; cur_tracker; cur_tracker = cur_tracker->tracknext, index++) {
1495 if (!lua_checkstack(L, 5))
1496 luaL_error(L, "Lua out of memory error.");
1497 hlua_fcn_new_server(L, cur_tracker);
1498 /* array index starts at 1 in Lua */
1499 lua_rawseti(L, -2, index);
1500 }
1501 return 1;
1502}
1503
Aurelien DARRAGON223770d2023-03-10 15:34:35 +01001504/* hlua_event_sub wrapper for per-server subscription:
1505 *
1506 * hlua_event_sub() is called with sv->e_subs subscription list and
1507 * lua arguments are passed as-is (skipping the first argument which
1508 * is the server ctx)
1509 */
1510int hlua_server_event_sub(lua_State *L)
1511{
1512 struct server *sv;
1513
1514 sv = hlua_check_server(L, 1);
1515 if (sv == NULL) {
1516 return 0;
1517 }
1518 /* remove first argument from the stack (server) */
1519 lua_remove(L, 1);
1520
1521 /* try to subscribe within server's subscription list */
1522 return hlua_event_sub(L, &sv->e_subs);
1523}
1524
Aurelien DARRAGONc4b24372023-03-02 12:00:06 +01001525int hlua_fcn_new_server(lua_State *L, struct server *srv)
1526{
1527 lua_newtable(L);
1528
1529 /* Pop a class server metatable and affect it to the userdata. */
1530 lua_rawgeti(L, LUA_REGISTRYINDEX, class_server_ref);
1531 lua_setmetatable(L, -2);
1532
1533 lua_pushlightuserdata(L, srv);
1534 lua_rawseti(L, -2, 0);
1535
1536 /* userdata is affected: increment server refcount */
1537 srv_take(srv);
1538
1539 /* set public methods */
1540 hlua_class_function(L, "get_name", hlua_server_get_name);
1541 hlua_class_function(L, "get_puid", hlua_server_get_puid);
Aurelien DARRAGON94ee6632023-03-10 15:11:27 +01001542 hlua_class_function(L, "get_rid", hlua_server_get_rid);
Aurelien DARRAGONc4b24372023-03-02 12:00:06 +01001543 hlua_class_function(L, "is_draining", hlua_server_is_draining);
Aurelien DARRAGONc72051d2023-03-29 10:44:38 +02001544 hlua_class_function(L, "is_backup", hlua_server_is_backup);
Aurelien DARRAGON7a03dee2023-03-29 10:49:30 +02001545 hlua_class_function(L, "is_dynamic", hlua_server_is_dynamic);
Aurelien DARRAGONfc759b42023-04-03 10:43:17 +02001546 hlua_class_function(L, "get_cur_sess", hlua_server_get_cur_sess);
1547 hlua_class_function(L, "get_pend_conn", hlua_server_get_pend_conn);
Aurelien DARRAGONc4b24372023-03-02 12:00:06 +01001548 hlua_class_function(L, "set_maxconn", hlua_server_set_maxconn);
1549 hlua_class_function(L, "get_maxconn", hlua_server_get_maxconn);
1550 hlua_class_function(L, "set_weight", hlua_server_set_weight);
1551 hlua_class_function(L, "get_weight", hlua_server_get_weight);
1552 hlua_class_function(L, "set_addr", hlua_server_set_addr);
1553 hlua_class_function(L, "get_addr", hlua_server_get_addr);
1554 hlua_class_function(L, "get_stats", hlua_server_get_stats);
Aurelien DARRAGON3889efa2023-04-03 14:00:58 +02001555 hlua_class_function(L, "get_proxy", hlua_server_get_proxy);
Aurelien DARRAGONc4b24372023-03-02 12:00:06 +01001556 hlua_class_function(L, "shut_sess", hlua_server_shut_sess);
1557 hlua_class_function(L, "set_drain", hlua_server_set_drain);
1558 hlua_class_function(L, "set_maint", hlua_server_set_maint);
1559 hlua_class_function(L, "set_ready", hlua_server_set_ready);
1560 hlua_class_function(L, "check_enable", hlua_server_check_enable);
1561 hlua_class_function(L, "check_disable", hlua_server_check_disable);
1562 hlua_class_function(L, "check_force_up", hlua_server_check_force_up);
1563 hlua_class_function(L, "check_force_nolb", hlua_server_check_force_nolb);
1564 hlua_class_function(L, "check_force_down", hlua_server_check_force_down);
1565 hlua_class_function(L, "agent_enable", hlua_server_agent_enable);
1566 hlua_class_function(L, "agent_disable", hlua_server_agent_disable);
1567 hlua_class_function(L, "agent_force_up", hlua_server_agent_force_up);
1568 hlua_class_function(L, "agent_force_down", hlua_server_agent_force_down);
Aurelien DARRAGON406511a2023-03-29 11:30:36 +02001569 hlua_class_function(L, "tracking", hlua_server_tracking);
Aurelien DARRAGON4be36a12023-03-29 14:02:39 +02001570 hlua_class_function(L, "get_trackers", hlua_server_get_trackers);
Aurelien DARRAGON223770d2023-03-10 15:34:35 +01001571 hlua_class_function(L, "event_sub", hlua_server_event_sub);
Aurelien DARRAGONc4b24372023-03-02 12:00:06 +01001572
1573 return 1;
1574}
1575
Thierry Fournier1edf36a2022-10-07 13:25:51 +02001576static struct hlua_server_list *hlua_check_server_list(lua_State *L, int ud)
1577{
1578 return hlua_checkudata(L, ud, class_server_list_ref);
1579}
1580
1581/* does nothing and returns 0, only prevents insertions in the
1582 * table which represents the list of servers
1583 */
1584int hlua_listable_servers_newindex(lua_State *L) {
1585 return 0;
1586}
1587
1588/* first arg is the table (struct hlua_server_list * in metadata)
1589 * second arg is the required index
1590 */
1591int hlua_listable_servers_index(lua_State *L)
Thierry Fournierf61aa632016-02-19 20:56:00 +01001592{
Thierry Fournier1edf36a2022-10-07 13:25:51 +02001593 struct hlua_server_list *hlua_srv;
1594 const char *name;
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01001595 struct server *srv;
Thierry Fournier1edf36a2022-10-07 13:25:51 +02001596
1597 hlua_srv = hlua_check_server_list(L, 1);
1598 name = luaL_checkstring(L, 2);
1599
1600 /* Perform a server lookup in px list */
1601 srv = server_find_by_name(hlua_srv->px, name);
1602 if (srv == NULL) {
1603 lua_pushnil(L);
1604 return 1;
1605 }
1606
1607 hlua_fcn_new_server(L, srv);
1608 return 1;
1609}
1610
1611/* iterator must return key as string and value as server
1612 * object, if we reach end of list, it returns nil.
1613 * The context knows the last returned server. if the
1614 * context contains srv == NULL, we start enumeration.
1615 * Then, use 'srv->next' ptr to iterate through the list
1616 */
1617int hlua_listable_servers_pairs_iterator(lua_State *L)
1618{
1619 int context_index;
1620 struct hlua_server_list_iterator_context *ctx;
1621
1622 context_index = lua_upvalueindex(1);
1623 ctx = lua_touserdata(L, context_index);
1624
1625 if (ctx->cur == NULL) {
1626 /* First iteration, initialize list on the first server */
1627 ctx->cur = ctx->px->srv;
1628 } else {
1629
1630 /* Next server (next ptr is always valid, even if current
1631 * server has the SRV_F_DELETED flag set)
1632 */
1633 ctx->cur = ctx->cur->next;
1634 }
1635
1636 /* next server is null, end of iteration */
1637 if (ctx->cur == NULL) {
1638 lua_pushnil(L);
1639 return 1;
1640 }
1641
1642 lua_pushstring(L, ctx->cur->id);
1643 hlua_fcn_new_server(L, ctx->cur);
1644 return 2;
1645}
1646
1647/* init the iterator context, return iterator function
1648 * with context as closure. The only argument is a
1649 * server list object.
1650 */
1651int hlua_listable_servers_pairs(lua_State *L)
1652{
1653 struct hlua_server_list_iterator_context *ctx;
1654 struct hlua_server_list *hlua_srv_list;
1655
1656 hlua_srv_list = hlua_check_server_list(L, 1);
1657
1658 ctx = lua_newuserdata(L, sizeof(*ctx));
1659 ctx->px = hlua_srv_list->px;
1660 ctx->cur = NULL;
1661
1662 lua_pushcclosure(L, hlua_listable_servers_pairs_iterator, 1);
1663 return 1;
1664}
1665
1666void hlua_listable_servers(lua_State *L, struct proxy *px)
1667{
1668 struct hlua_server_list *list;
1669
1670 lua_newtable(L);
1671 list = lua_newuserdata(L, sizeof(*list));
1672 list->px = px;
1673 lua_rawseti(L, -2, 0);
1674 lua_rawgeti(L, LUA_REGISTRYINDEX, class_server_list_ref);
1675 lua_setmetatable(L, -2);
Thierry Fournierf61aa632016-02-19 20:56:00 +01001676}
1677
1678static struct proxy *hlua_check_proxy(lua_State *L, int ud)
1679{
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02001680 return hlua_checkudata(L, ud, class_proxy_ref);
Thierry Fournierf61aa632016-02-19 20:56:00 +01001681}
1682
Thierry Fournierb0467732022-10-07 12:07:24 +02001683int hlua_proxy_get_name(lua_State *L)
1684{
1685 struct proxy *px;
1686
1687 px = hlua_check_proxy(L, 1);
1688 lua_pushstring(L, px->id);
1689 return 1;
1690}
1691
1692int hlua_proxy_get_uuid(lua_State *L)
1693{
1694 struct proxy *px;
1695 char buffer[17];
1696
1697 px = hlua_check_proxy(L, 1);
1698 snprintf(buffer, sizeof(buffer), "%d", px->uuid);
1699 lua_pushstring(L, buffer);
1700 return 1;
1701}
1702
Aurelien DARRAGONc4b24372023-03-02 12:00:06 +01001703/* __index metamethod for proxy class
Ilya Shipitsinccf80122023-04-22 20:20:39 +02001704 * support for additional keys that are missing from the main table
Aurelien DARRAGONc4b24372023-03-02 12:00:06 +01001705 * stack:1 = table (proxy class), stack:2 = requested key
1706 * Returns 1 if key is supported
1707 * else returns 0 to make lua return NIL value to the caller
1708 */
1709static int hlua_proxy_index(struct lua_State *L)
1710{
1711 const char *key = lua_tostring(L, 2);
1712
1713 if (!strcmp(key, "name")) {
1714 if (ONLY_ONCE())
1715 ha_warning("hlua: use of proxy 'name' attribute is deprecated and will eventually be removed, please use get_name() function instead: %s\n", hlua_traceback(L, ", "));
1716 lua_pushvalue(L, 1);
1717 hlua_proxy_get_name(L);
1718 return 1;
1719 }
1720 if (!strcmp(key, "uuid")) {
1721 if (ONLY_ONCE())
1722 ha_warning("hlua: use of proxy 'uuid' attribute is deprecated and will eventually be removed, please use get_uuid() function instead: %s\n", hlua_traceback(L, ", "));
1723 lua_pushvalue(L, 1);
1724 hlua_proxy_get_uuid(L);
1725 return 1;
1726 }
1727 /* unknown attribute */
1728 return 0;
1729}
1730
Thierry Fournierf61aa632016-02-19 20:56:00 +01001731int hlua_proxy_pause(lua_State *L)
1732{
1733 struct proxy *px;
1734
1735 px = hlua_check_proxy(L, 1);
Aurelien DARRAGON7d000772022-09-08 14:35:35 +02001736 /* safe to call without PROXY_LOCK - pause_proxy takes it */
Thierry Fournierf61aa632016-02-19 20:56:00 +01001737 pause_proxy(px);
1738 return 0;
1739}
1740
1741int hlua_proxy_resume(lua_State *L)
1742{
1743 struct proxy *px;
1744
1745 px = hlua_check_proxy(L, 1);
Aurelien DARRAGON7d000772022-09-08 14:35:35 +02001746 /* safe to call without PROXY_LOCK - resume_proxy takes it */
Thierry Fournierf61aa632016-02-19 20:56:00 +01001747 resume_proxy(px);
1748 return 0;
1749}
1750
1751int hlua_proxy_stop(lua_State *L)
1752{
1753 struct proxy *px;
1754
1755 px = hlua_check_proxy(L, 1);
Aurelien DARRAGON7d000772022-09-08 14:35:35 +02001756 /* safe to call without PROXY_LOCK - stop_proxy takes it */
Thierry Fournierf61aa632016-02-19 20:56:00 +01001757 stop_proxy(px);
1758 return 0;
1759}
1760
1761int hlua_proxy_get_cap(lua_State *L)
1762{
1763 struct proxy *px;
1764 const char *str;
1765
1766 px = hlua_check_proxy(L, 1);
1767 str = proxy_cap_str(px->cap);
1768 lua_pushstring(L, str);
1769 return 1;
1770}
1771
1772int hlua_proxy_get_stats(lua_State *L)
1773{
1774 struct proxy *px;
1775 int i;
1776
1777 px = hlua_check_proxy(L, 1);
1778 if (px->cap & PR_CAP_BE)
William Dauchyda3b4662021-01-25 17:29:01 +01001779 stats_fill_be_stats(px, STAT_SHLGNDS, stats, STATS_LEN, NULL);
Thierry Fournierf61aa632016-02-19 20:56:00 +01001780 else
William Dauchy0ef54392021-01-17 18:27:45 +01001781 stats_fill_fe_stats(px, stats, STATS_LEN, NULL);
Thierry Fournierf61aa632016-02-19 20:56:00 +01001782 lua_newtable(L);
1783 for (i=0; i<ST_F_TOTAL_FIELDS; i++) {
Willy Tarreaueaa55372019-10-09 07:39:11 +02001784 lua_pushstring(L, stat_fields[i].name);
Thierry Fournierf61aa632016-02-19 20:56:00 +01001785 hlua_fcn_pushfield(L, &stats[i]);
1786 lua_settable(L, -3);
1787 }
1788 return 1;
1789}
1790
1791int hlua_proxy_get_mode(lua_State *L)
1792{
1793 struct proxy *px;
1794 const char *str;
1795
1796 px = hlua_check_proxy(L, 1);
1797 str = proxy_mode_str(px->mode);
1798 lua_pushstring(L, str);
1799 return 1;
1800}
1801
1802int hlua_proxy_shut_bcksess(lua_State *L)
1803{
1804 struct proxy *px;
1805
1806 px = hlua_check_proxy(L, 1);
1807 srv_shutdown_backup_streams(px, SF_ERR_KILLED);
1808 return 0;
1809}
1810
Aurelien DARRAGONfc845532023-04-03 11:00:18 +02001811int hlua_proxy_get_srv_act(lua_State *L)
1812{
1813 struct proxy *px;
1814
1815 px = hlua_check_proxy(L, 1);
1816 lua_pushinteger(L, px->srv_act);
1817 return 1;
1818}
1819
1820int hlua_proxy_get_srv_bck(lua_State *L)
1821{
1822 struct proxy *px;
1823
1824 px = hlua_check_proxy(L, 1);
1825 lua_pushinteger(L, px->srv_bck);
1826 return 1;
1827}
1828
Aurelien DARRAGONc4b24372023-03-02 12:00:06 +01001829int hlua_fcn_new_proxy(lua_State *L, struct proxy *px)
1830{
1831 struct listener *lst;
1832 int lid;
1833 char buffer[17];
1834
1835 lua_newtable(L);
1836
1837 /* Pop a class proxy metatable and affect it to the userdata. */
1838 lua_rawgeti(L, LUA_REGISTRYINDEX, class_proxy_ref);
1839 lua_setmetatable(L, -2);
1840
1841 lua_pushlightuserdata(L, px);
1842 lua_rawseti(L, -2, 0);
1843
1844 /* set public methods */
1845 hlua_class_function(L, "get_name", hlua_proxy_get_name);
1846 hlua_class_function(L, "get_uuid", hlua_proxy_get_uuid);
1847 hlua_class_function(L, "pause", hlua_proxy_pause);
1848 hlua_class_function(L, "resume", hlua_proxy_resume);
1849 hlua_class_function(L, "stop", hlua_proxy_stop);
1850 hlua_class_function(L, "shut_bcksess", hlua_proxy_shut_bcksess);
1851 hlua_class_function(L, "get_cap", hlua_proxy_get_cap);
1852 hlua_class_function(L, "get_mode", hlua_proxy_get_mode);
Aurelien DARRAGONfc845532023-04-03 11:00:18 +02001853 hlua_class_function(L, "get_srv_act", hlua_proxy_get_srv_act);
1854 hlua_class_function(L, "get_srv_bck", hlua_proxy_get_srv_bck);
Aurelien DARRAGONc4b24372023-03-02 12:00:06 +01001855 hlua_class_function(L, "get_stats", hlua_proxy_get_stats);
1856
1857 /* Browse and register servers. */
1858 lua_pushstring(L, "servers");
1859 hlua_listable_servers(L, px);
1860 lua_settable(L, -3);
1861
1862 /* Browse and register listeners. */
1863 lua_pushstring(L, "listeners");
1864 lua_newtable(L);
1865 lid = 1;
1866 list_for_each_entry(lst, &px->conf.listeners, by_fe) {
1867 if (lst->name)
1868 lua_pushstring(L, lst->name);
1869 else {
1870 snprintf(buffer, sizeof(buffer), "sock-%d", lid);
1871 lid++;
1872 lua_pushstring(L, buffer);
1873 }
1874 hlua_fcn_new_listener(L, lst);
1875 lua_settable(L, -3);
1876 }
1877 lua_settable(L, -3);
1878
1879 if (px->table && px->table->id) {
1880 lua_pushstring(L, "stktable");
1881 hlua_fcn_new_stktable(L, px->table);
1882 lua_settable(L, -3);
1883 }
1884
1885 return 1;
1886}
1887
Thierry Fournier467913c2022-09-30 11:03:38 +02001888static struct hlua_proxy_list *hlua_check_proxy_list(lua_State *L, int ud)
Thierry Fournier3d4a6752016-02-19 20:53:30 +01001889{
Thierry Fournier467913c2022-09-30 11:03:38 +02001890 return hlua_checkudata(L, ud, class_proxy_list_ref);
1891}
Thierry Fournierf61aa632016-02-19 20:56:00 +01001892
Thierry Fournier467913c2022-09-30 11:03:38 +02001893/* does nothing and returns 0, only prevents insertions in the
1894 * table which represent list of proxies
1895 */
1896int hlua_listable_proxies_newindex(lua_State *L) {
1897 return 0;
1898}
Thierry Fournierf61aa632016-02-19 20:56:00 +01001899
Thierry Fournier467913c2022-09-30 11:03:38 +02001900/* first arg is the table (struct hlua_proxy_list * in metadata)
1901 * second arg is the required index
1902 */
1903int hlua_listable_proxies_index(lua_State *L)
1904{
1905 struct hlua_proxy_list *hlua_px;
1906 const char *name;
1907 struct proxy *px;
Thierry Fournierf61aa632016-02-19 20:56:00 +01001908
Thierry Fournier467913c2022-09-30 11:03:38 +02001909 hlua_px = hlua_check_proxy_list(L, 1);
1910 name = luaL_checkstring(L, 2);
1911
1912 px = NULL;
1913 if (hlua_px->capabilities & PR_CAP_FE) {
1914 px = proxy_find_by_name(name, PR_CAP_FE, 0);
1915 }
1916 if (!px && hlua_px->capabilities & PR_CAP_BE) {
1917 px = proxy_find_by_name(name, PR_CAP_BE, 0);
1918 }
1919 if (px == NULL) {
1920 lua_pushnil(L);
1921 return 1;
Thierry Fournierf61aa632016-02-19 20:56:00 +01001922 }
1923
Thierry Fournier467913c2022-09-30 11:03:38 +02001924 hlua_fcn_new_proxy(L, px);
1925 return 1;
1926}
Thierry Fournierf61aa632016-02-19 20:56:00 +01001927
Thierry Fournier467913c2022-09-30 11:03:38 +02001928static inline int hlua_listable_proxies_match(struct proxy *px, char cap) {
1929 return ((px->cap & cap) && !(px->cap & (PR_CAP_DEF | PR_CAP_INT)));
1930}
Thierry FOURNIER9b82a582017-07-24 13:30:43 +02001931
Thierry Fournier467913c2022-09-30 11:03:38 +02001932/* iterator must return key as string and value as proxy
1933 * object, if we reach end of list, it returns nil
1934 */
1935int hlua_listable_proxies_pairs_iterator(lua_State *L)
1936{
1937 int context_index;
1938 struct hlua_proxy_list_iterator_context *ctx;
1939
1940 context_index = lua_upvalueindex(1);
1941 ctx = lua_touserdata(L, context_index);
1942
1943 if (ctx->next == NULL) {
1944 lua_pushnil(L);
1945 return 1;
Thierry FOURNIER9b82a582017-07-24 13:30:43 +02001946 }
1947
Thierry Fournier467913c2022-09-30 11:03:38 +02001948 lua_pushstring(L, ctx->next->id);
1949 hlua_fcn_new_proxy(L, ctx->next);
Thierry FOURNIER9b82a582017-07-24 13:30:43 +02001950
Thierry Fournier467913c2022-09-30 11:03:38 +02001951 for (ctx->next = ctx->next->next;
1952 ctx->next && !hlua_listable_proxies_match(ctx->next, ctx->capabilities);
1953 ctx->next = ctx->next->next);
Thierry FOURNIER9b82a582017-07-24 13:30:43 +02001954
Thierry Fournier467913c2022-09-30 11:03:38 +02001955 return 2;
1956}
Thierry FOURNIER9b82a582017-07-24 13:30:43 +02001957
Thierry Fournier467913c2022-09-30 11:03:38 +02001958/* init the iterator context, return iterator function
1959 * with context as closure. The only argument is a
1960 * proxy object.
1961 */
1962int hlua_listable_proxies_pairs(lua_State *L)
1963{
1964 struct hlua_proxy_list_iterator_context *ctx;
1965 struct hlua_proxy_list *hlua_px;
1966
1967 hlua_px = hlua_check_proxy_list(L, 1);
Thierry FOURNIER9b82a582017-07-24 13:30:43 +02001968
Thierry Fournier467913c2022-09-30 11:03:38 +02001969 ctx = lua_newuserdata(L, sizeof(*ctx));
1970
1971 ctx->capabilities = hlua_px->capabilities;
1972 for (ctx->next = proxies_list;
1973 ctx->next && !hlua_listable_proxies_match(ctx->next, ctx->capabilities);
1974 ctx->next = ctx->next->next);
1975 lua_pushcclosure(L, hlua_listable_proxies_pairs_iterator, 1);
Thierry Fournier3d4a6752016-02-19 20:53:30 +01001976 return 1;
1977}
1978
Thierry Fournier467913c2022-09-30 11:03:38 +02001979void hlua_listable_proxies(lua_State *L, char capabilities)
1980{
1981 struct hlua_proxy_list *list;
1982
1983 lua_newtable(L);
1984 list = lua_newuserdata(L, sizeof(*list));
1985 list->capabilities = capabilities;
1986 lua_rawseti(L, -2, 0);
1987 lua_rawgeti(L, LUA_REGISTRYINDEX, class_proxy_list_ref);
1988 lua_setmetatable(L, -2);
1989}
1990
Aurelien DARRAGONc84899c2023-02-20 18:18:59 +01001991int hlua_event_sub_unsub(lua_State *L)
1992{
1993 struct event_hdl_sub *sub = hlua_checkudata(L, 1, class_event_sub_ref);
1994
1995 BUG_ON(!sub);
1996 event_hdl_take(sub); /* keep a reference on sub until the item is GCed */
1997 event_hdl_unsubscribe(sub); /* will automatically call event_hdl_drop() */
1998 return 0;
1999}
2000
2001int hlua_event_sub_gc(lua_State *L)
2002{
2003 struct event_hdl_sub *sub = hlua_checkudata(L, 1, class_event_sub_ref);
2004
2005 BUG_ON(!sub);
2006 event_hdl_drop(sub); /* final drop of the reference */
2007 return 0;
2008}
2009
2010int hlua_fcn_new_event_sub(lua_State *L, struct event_hdl_sub *sub)
2011{
2012 lua_newtable(L);
2013
2014 /* Pop a class event_sub metatable and affect it to the userdata. */
2015 lua_rawgeti(L, LUA_REGISTRYINDEX, class_event_sub_ref);
2016 lua_setmetatable(L, -2);
2017
2018 lua_pushlightuserdata(L, sub);
2019 lua_rawseti(L, -2, 0);
2020
2021 /* userdata is affected: increment sub refcount */
2022 event_hdl_take(sub);
2023
2024 /* set public methods */
2025 hlua_class_function(L, "unsub", hlua_event_sub_unsub);
2026
2027 return 1;
2028}
2029
Thierry FOURNIER / OZON.IO8a1027a2016-11-24 20:48:38 +01002030/* This Lua function take a string, a list of separators.
2031 * It tokenize the input string using the list of separators
2032 * as separator.
2033 *
Ilya Shipitsince7b00f2020-03-23 22:28:40 +05002034 * The functionreturns a table filled with tokens.
Thierry FOURNIER / OZON.IO8a1027a2016-11-24 20:48:38 +01002035 */
2036int hlua_tokenize(lua_State *L)
2037{
2038 const char *str;
2039 const char *sep;
2040 int index;
2041 const char *token;
2042 const char *p;
2043 const char *c;
2044 int ignore_empty;
2045
2046 ignore_empty = 0;
2047
2048 str = luaL_checkstring(L, 1);
2049 sep = luaL_checkstring(L, 2);
2050 if (lua_gettop(L) == 3)
2051 ignore_empty = hlua_checkboolean(L, 3);
2052
2053 lua_newtable(L);
2054 index = 1;
2055 token = str;
2056 p = str;
2057 while(1) {
2058 for (c = sep; *c != '\0'; c++)
2059 if (*p == *c)
2060 break;
2061 if (*p == *c) {
2062 if ((!ignore_empty) || (p - token > 0)) {
2063 lua_pushlstring(L, token, p - token);
2064 lua_rawseti(L, -2, index);
2065 index++;
2066 }
2067 token = p + 1;
2068 }
2069 if (*p == '\0')
2070 break;
2071 p++;
2072 }
2073
2074 return 1;
2075}
2076
Thierry FOURNIER / OZON.IO62fec752016-11-10 20:38:11 +01002077int hlua_parse_addr(lua_State *L)
2078{
Christopher Faulet29e93262021-02-26 09:39:05 +01002079 struct net_addr *addr;
Thierry FOURNIER / OZON.IO62fec752016-11-10 20:38:11 +01002080 const char *str = luaL_checkstring(L, 1);
2081 unsigned char mask;
2082
Christopher Faulet29e93262021-02-26 09:39:05 +01002083 addr = lua_newuserdata(L, sizeof(struct net_addr));
Thierry FOURNIER / OZON.IO62fec752016-11-10 20:38:11 +01002084 if (!addr) {
2085 lua_pushnil(L);
2086 return 1;
2087 }
2088
2089 if (str2net(str, PAT_MF_NO_DNS, &addr->addr.v4.ip, &addr->addr.v4.mask)) {
Christopher Faulet29e93262021-02-26 09:39:05 +01002090 addr->family = AF_INET;
Thierry FOURNIER / OZON.IO62fec752016-11-10 20:38:11 +01002091 return 1;
2092 }
2093
2094 if (str62net(str, &addr->addr.v6.ip, &mask)) {
2095 len2mask6(mask, &addr->addr.v6.mask);
Christopher Faulet29e93262021-02-26 09:39:05 +01002096 addr->family = AF_INET6;
Thierry FOURNIER / OZON.IO62fec752016-11-10 20:38:11 +01002097 return 1;
2098 }
2099
2100 lua_pop(L, 1);
2101 lua_pushnil(L);
2102 return 1;
2103}
2104
2105int hlua_match_addr(lua_State *L)
2106{
Christopher Faulet29e93262021-02-26 09:39:05 +01002107 struct net_addr *addr1;
2108 struct net_addr *addr2;
Thierry FOURNIER / OZON.IO62fec752016-11-10 20:38:11 +01002109
2110 if (!lua_isuserdata(L, 1) ||
2111 !lua_isuserdata(L, 2)) {
2112 lua_pushboolean(L, 0);
2113 return 1;
2114 }
2115
2116 addr1 = lua_touserdata(L, 1);
2117 addr2 = lua_touserdata(L, 2);
2118
Christopher Faulet29e93262021-02-26 09:39:05 +01002119 if (addr1->family != addr2->family) {
Thierry FOURNIER / OZON.IO62fec752016-11-10 20:38:11 +01002120 lua_pushboolean(L, 0);
2121 return 1;
2122 }
2123
Christopher Faulet29e93262021-02-26 09:39:05 +01002124 if (addr1->family == AF_INET) {
Thierry FOURNIER / OZON.IO62fec752016-11-10 20:38:11 +01002125 if ((addr1->addr.v4.ip.s_addr & addr2->addr.v4.mask.s_addr) ==
2126 (addr2->addr.v4.ip.s_addr & addr1->addr.v4.mask.s_addr)) {
2127 lua_pushboolean(L, 1);
2128 return 1;
2129 }
2130 } else {
Thierry FOURNIERde6925e2016-12-23 17:03:25 +01002131 int i;
2132
2133 for (i = 0; i < 16; i += 4) {
Willy Tarreau26474c42020-02-25 10:02:51 +01002134 if ((read_u32(&addr1->addr.v6.ip.s6_addr[i]) &
2135 read_u32(&addr2->addr.v6.mask.s6_addr[i])) !=
2136 (read_u32(&addr2->addr.v6.ip.s6_addr[i]) &
2137 read_u32(&addr1->addr.v6.mask.s6_addr[i])))
Thierry FOURNIERde6925e2016-12-23 17:03:25 +01002138 break;
2139 }
2140 if (i == 16) {
Thierry FOURNIER / OZON.IO62fec752016-11-10 20:38:11 +01002141 lua_pushboolean(L, 1);
2142 return 1;
2143 }
2144 }
2145
2146 lua_pushboolean(L, 0);
2147 return 1;
2148}
2149
Dragan Dosen26743032019-04-30 15:54:36 +02002150static struct my_regex **hlua_check_regex(lua_State *L, int ud)
Thierry FOURNIER31904272017-10-25 12:59:51 +02002151{
2152 return (hlua_checkudata(L, ud, class_regex_ref));
2153}
2154
2155static int hlua_regex_comp(struct lua_State *L)
2156{
Dragan Dosen26743032019-04-30 15:54:36 +02002157 struct my_regex **regex;
Thierry FOURNIER31904272017-10-25 12:59:51 +02002158 const char *str;
2159 int cs;
2160 char *err;
2161
2162 str = luaL_checkstring(L, 1);
2163 luaL_argcheck(L, lua_isboolean(L, 2), 2, NULL);
2164 cs = lua_toboolean(L, 2);
2165
2166 regex = lua_newuserdata(L, sizeof(*regex));
2167
2168 err = NULL;
Dragan Dosen26743032019-04-30 15:54:36 +02002169 if (!(*regex = regex_comp(str, cs, 1, &err))) {
Thierry FOURNIER31904272017-10-25 12:59:51 +02002170 lua_pushboolean(L, 0); /* status error */
2171 lua_pushstring(L, err); /* Reason */
2172 free(err);
2173 return 2;
2174 }
2175
2176 lua_pushboolean(L, 1); /* Status ok */
2177
2178 /* Create object */
2179 lua_newtable(L);
2180 lua_pushvalue(L, -3); /* Get the userdata pointer. */
2181 lua_rawseti(L, -2, 0);
2182 lua_rawgeti(L, LUA_REGISTRYINDEX, class_regex_ref);
2183 lua_setmetatable(L, -2);
2184 return 2;
2185}
2186
2187static int hlua_regex_exec(struct lua_State *L)
2188{
Dragan Dosen26743032019-04-30 15:54:36 +02002189 struct my_regex **regex;
Thierry FOURNIER31904272017-10-25 12:59:51 +02002190 const char *str;
2191 size_t len;
Willy Tarreau83061a82018-07-13 11:56:34 +02002192 struct buffer *tmp;
Thierry FOURNIER31904272017-10-25 12:59:51 +02002193
2194 regex = hlua_check_regex(L, 1);
2195 str = luaL_checklstring(L, 2, &len);
2196
Dragan Dosen26743032019-04-30 15:54:36 +02002197 if (!*regex) {
2198 lua_pushboolean(L, 0);
2199 return 1;
2200 }
2201
Thierry FOURNIER7c210e62017-10-27 14:13:51 +02002202 /* Copy the string because regex_exec2 require a 'char *'
2203 * and not a 'const char *'.
2204 */
2205 tmp = get_trash_chunk();
2206 if (len >= tmp->size) {
2207 lua_pushboolean(L, 0);
2208 return 1;
2209 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002210 memcpy(tmp->area, str, len);
Thierry FOURNIER7c210e62017-10-27 14:13:51 +02002211
Dragan Dosen26743032019-04-30 15:54:36 +02002212 lua_pushboolean(L, regex_exec2(*regex, tmp->area, len));
Thierry FOURNIER31904272017-10-25 12:59:51 +02002213
2214 return 1;
2215}
2216
2217static int hlua_regex_match(struct lua_State *L)
2218{
Dragan Dosen26743032019-04-30 15:54:36 +02002219 struct my_regex **regex;
Thierry FOURNIER31904272017-10-25 12:59:51 +02002220 const char *str;
2221 size_t len;
2222 regmatch_t pmatch[20];
2223 int ret;
2224 int i;
Willy Tarreau83061a82018-07-13 11:56:34 +02002225 struct buffer *tmp;
Thierry FOURNIER31904272017-10-25 12:59:51 +02002226
2227 regex = hlua_check_regex(L, 1);
2228 str = luaL_checklstring(L, 2, &len);
2229
Dragan Dosen26743032019-04-30 15:54:36 +02002230 if (!*regex) {
2231 lua_pushboolean(L, 0);
2232 return 1;
2233 }
2234
Thierry FOURNIER7c210e62017-10-27 14:13:51 +02002235 /* Copy the string because regex_exec2 require a 'char *'
2236 * and not a 'const char *'.
2237 */
2238 tmp = get_trash_chunk();
2239 if (len >= tmp->size) {
2240 lua_pushboolean(L, 0);
2241 return 1;
2242 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002243 memcpy(tmp->area, str, len);
Thierry FOURNIER7c210e62017-10-27 14:13:51 +02002244
Dragan Dosen26743032019-04-30 15:54:36 +02002245 ret = regex_exec_match2(*regex, tmp->area, len, 20, pmatch, 0);
Thierry FOURNIER31904272017-10-25 12:59:51 +02002246 lua_pushboolean(L, ret);
2247 lua_newtable(L);
2248 if (ret) {
2249 for (i = 0; i < 20 && pmatch[i].rm_so != -1; i++) {
2250 lua_pushlstring(L, str + pmatch[i].rm_so, pmatch[i].rm_eo - pmatch[i].rm_so);
2251 lua_rawseti(L, -2, i + 1);
2252 }
2253 }
2254 return 2;
2255}
2256
2257static int hlua_regex_free(struct lua_State *L)
2258{
Dragan Dosen26743032019-04-30 15:54:36 +02002259 struct my_regex **regex;
Thierry FOURNIER31904272017-10-25 12:59:51 +02002260
2261 regex = hlua_check_regex(L, 1);
Dragan Dosen26743032019-04-30 15:54:36 +02002262 regex_free(*regex);
2263 *regex = NULL;
Thierry FOURNIER31904272017-10-25 12:59:51 +02002264 return 0;
2265}
2266
Thierry Fournier599f2312022-09-30 10:40:39 +02002267void hlua_fcn_reg_core_fcn(lua_State *L)
Thierry Fournierfb0b5462016-01-21 09:28:58 +01002268{
Thierry Fournier599f2312022-09-30 10:40:39 +02002269 hlua_concat_init(L);
Thierry Fournier1de16592016-01-27 09:49:07 +01002270
Thierry Fournier4f99b272016-02-22 08:40:02 +01002271 hlua_class_function(L, "now", hlua_now);
2272 hlua_class_function(L, "http_date", hlua_http_date);
2273 hlua_class_function(L, "imf_date", hlua_imf_date);
2274 hlua_class_function(L, "rfc850_date", hlua_rfc850_date);
2275 hlua_class_function(L, "asctime_date", hlua_asctime_date);
2276 hlua_class_function(L, "concat", hlua_concat_new);
Thierry Fourniereea77c02016-03-18 08:47:13 +01002277 hlua_class_function(L, "get_info", hlua_get_info);
Thierry FOURNIER / OZON.IO62fec752016-11-10 20:38:11 +01002278 hlua_class_function(L, "parse_addr", hlua_parse_addr);
2279 hlua_class_function(L, "match_addr", hlua_match_addr);
Thierry FOURNIER / OZON.IO8a1027a2016-11-24 20:48:38 +01002280 hlua_class_function(L, "tokenize", hlua_tokenize);
Thierry Fournier4f99b272016-02-22 08:40:02 +01002281
Thierry FOURNIER31904272017-10-25 12:59:51 +02002282 /* Create regex object. */
2283 lua_newtable(L);
2284 hlua_class_function(L, "new", hlua_regex_comp);
2285
2286 lua_newtable(L); /* The metatable. */
2287 lua_pushstring(L, "__index");
2288 lua_newtable(L);
2289 hlua_class_function(L, "exec", hlua_regex_exec);
2290 hlua_class_function(L, "match", hlua_regex_match);
2291 lua_rawset(L, -3); /* -> META["__index"] = TABLE */
2292 hlua_class_function(L, "__gc", hlua_regex_free);
2293
2294 lua_pushvalue(L, -1); /* Duplicate the metatable reference. */
2295 class_regex_ref = hlua_register_metatable(L, CLASS_REGEX);
2296
2297 lua_setmetatable(L, -2);
2298 lua_setglobal(L, CLASS_REGEX); /* Create global object called Regex */
2299
Adis Nezirovic8878f8e2018-07-13 12:18:33 +02002300 /* Create stktable object. */
2301 lua_newtable(L);
2302 lua_pushstring(L, "__index");
2303 lua_newtable(L);
2304 hlua_class_function(L, "info", hlua_stktable_info);
2305 hlua_class_function(L, "lookup", hlua_stktable_lookup);
2306 hlua_class_function(L, "dump", hlua_stktable_dump);
2307 lua_settable(L, -3); /* -> META["__index"] = TABLE */
2308 class_stktable_ref = hlua_register_metatable(L, CLASS_STKTABLE);
2309
Thierry Fournierff480422016-02-25 08:36:46 +01002310 /* Create listener object. */
2311 lua_newtable(L);
2312 lua_pushstring(L, "__index");
2313 lua_newtable(L);
2314 hlua_class_function(L, "get_stats", hlua_listener_get_stats);
2315 lua_settable(L, -3); /* -> META["__index"] = TABLE */
2316 class_listener_ref = hlua_register_metatable(L, CLASS_LISTENER);
2317
Aurelien DARRAGONc84899c2023-02-20 18:18:59 +01002318 /* Create event_sub object. */
2319 lua_newtable(L);
2320 hlua_class_function(L, "__gc", hlua_event_sub_gc);
2321 class_event_sub_ref = hlua_register_metatable(L, CLASS_EVENT_SUB);
2322
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01002323 /* Create server object. */
2324 lua_newtable(L);
Thierry Fournier1edf36a2022-10-07 13:25:51 +02002325 hlua_class_function(L, "__gc", hlua_server_gc);
Aurelien DARRAGONc4b24372023-03-02 12:00:06 +01002326 hlua_class_function(L, "__index", hlua_server_index);
Thierry Fournierf2fdc9d2016-02-22 08:21:39 +01002327 class_server_ref = hlua_register_metatable(L, CLASS_SERVER);
2328
Thierry Fournierf61aa632016-02-19 20:56:00 +01002329 /* Create proxy object. */
2330 lua_newtable(L);
Aurelien DARRAGONc4b24372023-03-02 12:00:06 +01002331 hlua_class_function(L, "__index", hlua_proxy_index);
Thierry Fournierf61aa632016-02-19 20:56:00 +01002332 class_proxy_ref = hlua_register_metatable(L, CLASS_PROXY);
2333
Thierry Fournier467913c2022-09-30 11:03:38 +02002334 /* list of proxy objects. Instead of having a static array
2335 * of proxies, we use special metamethods that rely on internal
2336 * proxies list so that the array is resolved at runtime.
2337 *
2338 * To emulate the same behavior than Lua array, we implement some
2339 * metatable functions:
2340 * - __newindex : prevent the insertion of a new item in the array
2341 * - __index : find a proxy in the list using "name" index
2342 * - __pairs : iterate through available proxies in the list
2343 */
2344 lua_newtable(L);
2345 hlua_class_function(L, "__index", hlua_listable_proxies_index);
2346 hlua_class_function(L, "__newindex", hlua_listable_proxies_newindex);
2347 hlua_class_function(L, "__pairs", hlua_listable_proxies_pairs);
2348 class_proxy_list_ref = hlua_register_metatable(L, CLASS_PROXY_LIST);
2349
2350 /* Create proxies entry. */
2351 lua_pushstring(L, "proxies");
2352 hlua_listable_proxies(L, PR_CAP_LISTEN);
2353 lua_settable(L, -3);
2354
2355 /* Create frontends entry. */
2356 lua_pushstring(L, "frontends");
2357 hlua_listable_proxies(L, PR_CAP_FE);
2358 lua_settable(L, -3);
2359
2360 /* Create backends entry. */
2361 lua_pushstring(L, "backends");
2362 hlua_listable_proxies(L, PR_CAP_BE);
2363 lua_settable(L, -3);
Thierry Fournier1edf36a2022-10-07 13:25:51 +02002364
2365 /* list of server. This object is similar to
2366 * CLASS_PROXY_LIST
2367 */
2368 lua_newtable(L);
2369 hlua_class_function(L, "__index", hlua_listable_servers_index);
2370 hlua_class_function(L, "__newindex", hlua_listable_servers_newindex);
2371 hlua_class_function(L, "__pairs", hlua_listable_servers_pairs);
2372 class_server_list_ref = hlua_register_metatable(L, CLASS_SERVER_LIST);
Thierry Fournierfb0b5462016-01-21 09:28:58 +01002373}