Thierry Fournier | e726b14 | 2016-02-11 17:57:57 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Lua unsafe core engine |
| 3 | * |
| 4 | * Copyright 2015-2016 Thierry Fournier <tfournier@arpalert.org> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | */ |
| 12 | |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 13 | #include <ctype.h> |
Mark Lakes | 56cc125 | 2018-03-27 09:48:06 +0200 | [diff] [blame] | 14 | #include <limits.h> |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 15 | #include <setjmp.h> |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 16 | |
Thierry FOURNIER | 6f1fd48 | 2015-01-23 14:06:13 +0100 | [diff] [blame] | 17 | #include <lauxlib.h> |
| 18 | #include <lua.h> |
| 19 | #include <lualib.h> |
| 20 | |
Thierry FOURNIER | 463119c | 2015-03-10 00:35:36 +0100 | [diff] [blame] | 21 | #if !defined(LUA_VERSION_NUM) || LUA_VERSION_NUM < 503 |
| 22 | #error "Requires Lua 5.3 or later." |
Cyril Bonté | dc0306e | 2015-03-02 00:08:40 +0100 | [diff] [blame] | 23 | #endif |
| 24 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 25 | #include <ebpttree.h> |
| 26 | |
| 27 | #include <common/cfgparse.h> |
Willy Tarreau | b059b89 | 2018-10-16 17:57:36 +0200 | [diff] [blame] | 28 | #include <common/compiler.h> |
Thierry FOURNIER | 61ba0e2 | 2017-07-12 11:41:21 +0200 | [diff] [blame] | 29 | #include <common/hathreads.h> |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 30 | #include <common/initcall.h> |
| 31 | #include <common/xref.h> |
Christopher Faulet | 724a12c | 2018-12-13 22:12:15 +0100 | [diff] [blame] | 32 | #include <common/h1.h> |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 33 | |
William Lallemand | 9ed6203 | 2016-11-21 17:49:11 +0100 | [diff] [blame] | 34 | #include <types/cli.h> |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 35 | #include <types/hlua.h> |
| 36 | #include <types/proxy.h> |
William Lallemand | 9ed6203 | 2016-11-21 17:49:11 +0100 | [diff] [blame] | 37 | #include <types/stats.h> |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 38 | |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 39 | #include <proto/arg.h> |
Willy Tarreau | 8a8d83b | 2015-04-13 13:24:54 +0200 | [diff] [blame] | 40 | #include <proto/applet.h> |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 41 | #include <proto/channel.h> |
William Lallemand | 9ed6203 | 2016-11-21 17:49:11 +0100 | [diff] [blame] | 42 | #include <proto/cli.h> |
Willy Tarreau | a71f642 | 2016-11-16 17:00:14 +0100 | [diff] [blame] | 43 | #include <proto/connection.h> |
William Lallemand | 9ed6203 | 2016-11-21 17:49:11 +0100 | [diff] [blame] | 44 | #include <proto/stats.h> |
Thierry FOURNIER | a097fdf | 2015-03-03 15:17:35 +0100 | [diff] [blame] | 45 | #include <proto/hlua.h> |
Thierry Fournier | fb0b546 | 2016-01-21 09:28:58 +0100 | [diff] [blame] | 46 | #include <proto/hlua_fcn.h> |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 47 | #include <proto/http_fetch.h> |
Christopher Faulet | 724a12c | 2018-12-13 22:12:15 +0100 | [diff] [blame] | 48 | #include <proto/http_htx.h> |
Willy Tarreau | 61c112a | 2018-10-02 16:43:32 +0200 | [diff] [blame] | 49 | #include <proto/http_rules.h> |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 50 | #include <proto/map.h> |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 51 | #include <proto/obj_type.h> |
Patrick Hemmer | 268a707 | 2018-05-11 12:52:31 -0400 | [diff] [blame] | 52 | #include <proto/queue.h> |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 53 | #include <proto/pattern.h> |
Thierry FOURNIER | d0fa538 | 2015-02-16 20:14:51 +0100 | [diff] [blame] | 54 | #include <proto/payload.h> |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 55 | #include <proto/http_ana.h> |
Thierry FOURNIER | d0fa538 | 2015-02-16 20:14:51 +0100 | [diff] [blame] | 56 | #include <proto/sample.h> |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 57 | #include <proto/server.h> |
Willy Tarreau | feb7640 | 2015-04-03 14:10:06 +0200 | [diff] [blame] | 58 | #include <proto/session.h> |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 59 | #include <proto/stream.h> |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 60 | #include <proto/stream_interface.h> |
Thierry FOURNIER | 9ff7e6e | 2015-01-23 11:08:20 +0100 | [diff] [blame] | 61 | #include <proto/task.h> |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 62 | #include <proto/tcp_rules.h> |
Thierry FOURNIER | 053ba8ad | 2015-06-08 13:05:33 +0200 | [diff] [blame] | 63 | #include <proto/vars.h> |
Thierry FOURNIER | 9ff7e6e | 2015-01-23 11:08:20 +0100 | [diff] [blame] | 64 | |
Thierry FOURNIER | 6f1fd48 | 2015-01-23 14:06:13 +0100 | [diff] [blame] | 65 | /* Lua uses longjmp to perform yield or throwing errors. This |
| 66 | * macro is used only for identifying the function that can |
| 67 | * not return because a longjmp is executed. |
| 68 | * __LJMP marks a prototype of hlua file that can use longjmp. |
| 69 | * WILL_LJMP() marks an lua function that will use longjmp. |
| 70 | * MAY_LJMP() marks an lua function that may use longjmp. |
| 71 | */ |
| 72 | #define __LJMP |
Willy Tarreau | 4e7cc33 | 2018-10-20 17:45:48 +0200 | [diff] [blame] | 73 | #define WILL_LJMP(func) do { func; my_unreachable(); } while(0) |
Thierry FOURNIER | 6f1fd48 | 2015-01-23 14:06:13 +0100 | [diff] [blame] | 74 | #define MAY_LJMP(func) func |
| 75 | |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 76 | /* This couple of function executes securely some Lua calls outside of |
| 77 | * the lua runtime environment. Each Lua call can return a longjmp |
| 78 | * if it encounter a memory error. |
| 79 | * |
| 80 | * Lua documentation extract: |
| 81 | * |
| 82 | * If an error happens outside any protected environment, Lua calls |
| 83 | * a panic function (see lua_atpanic) and then calls abort, thus |
| 84 | * exiting the host application. Your panic function can avoid this |
| 85 | * exit by never returning (e.g., doing a long jump to your own |
| 86 | * recovery point outside Lua). |
| 87 | * |
| 88 | * The panic function runs as if it were a message handler (see |
| 89 | * §2.3); in particular, the error message is at the top of the |
| 90 | * stack. However, there is no guarantee about stack space. To push |
| 91 | * anything on the stack, the panic function must first check the |
| 92 | * available space (see §4.2). |
| 93 | * |
| 94 | * We must check all the Lua entry point. This includes: |
| 95 | * - The include/proto/hlua.h exported functions |
| 96 | * - the task wrapper function |
| 97 | * - The action wrapper function |
| 98 | * - The converters wrapper function |
| 99 | * - The sample-fetch wrapper functions |
| 100 | * |
| 101 | * It is tolerated that the initilisation function returns an abort. |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 102 | * Before each Lua abort, an error message is written on stderr. |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 103 | * |
| 104 | * The macro SET_SAFE_LJMP initialise the longjmp. The Macro |
| 105 | * RESET_SAFE_LJMP reset the longjmp. These function must be macro |
| 106 | * because they must be exists in the program stack when the longjmp |
| 107 | * is called. |
Thierry FOURNIER | 61ba0e2 | 2017-07-12 11:41:21 +0200 | [diff] [blame] | 108 | * |
| 109 | * Note that the Lua processing is not really thread safe. It provides |
| 110 | * heavy system which consists to add our own lock function in the Lua |
| 111 | * code and recompile the library. This system will probably not accepted |
| 112 | * by maintainers of various distribs. |
| 113 | * |
| 114 | * Our main excution point of the Lua is the function lua_resume(). A |
| 115 | * quick looking on the Lua sources displays a lua_lock() a the start |
| 116 | * of function and a lua_unlock() at the end of the function. So I |
| 117 | * conclude that the Lua thread safe mode just perform a mutex around |
| 118 | * all execution. So I prefer to do this in the HAProxy code, it will be |
| 119 | * easier for distro maintainers. |
| 120 | * |
| 121 | * Note that the HAProxy lua functions rounded by the macro SET_SAFE_LJMP |
| 122 | * and RESET_SAFE_LJMP manipulates the Lua stack, so it will be careful |
| 123 | * to set mutex around these functions. |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 124 | */ |
Willy Tarreau | 86abe44 | 2018-11-25 20:12:18 +0100 | [diff] [blame] | 125 | __decl_spinlock(hlua_global_lock); |
Thierry FOURNIER | ffbad79 | 2017-07-12 11:39:04 +0200 | [diff] [blame] | 126 | THREAD_LOCAL jmp_buf safe_ljmp_env; |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 127 | static int hlua_panic_safe(lua_State *L) { return 0; } |
| 128 | static int hlua_panic_ljmp(lua_State *L) { longjmp(safe_ljmp_env, 1); } |
| 129 | |
| 130 | #define SET_SAFE_LJMP(__L) \ |
| 131 | ({ \ |
| 132 | int ret; \ |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 133 | HA_SPIN_LOCK(LUA_LOCK, &hlua_global_lock); \ |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 134 | if (setjmp(safe_ljmp_env) != 0) { \ |
| 135 | lua_atpanic(__L, hlua_panic_safe); \ |
| 136 | ret = 0; \ |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 137 | HA_SPIN_UNLOCK(LUA_LOCK, &hlua_global_lock); \ |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 138 | } else { \ |
| 139 | lua_atpanic(__L, hlua_panic_ljmp); \ |
| 140 | ret = 1; \ |
| 141 | } \ |
| 142 | ret; \ |
| 143 | }) |
| 144 | |
| 145 | /* If we are the last function catching Lua errors, we |
| 146 | * must reset the panic function. |
| 147 | */ |
| 148 | #define RESET_SAFE_LJMP(__L) \ |
| 149 | do { \ |
| 150 | lua_atpanic(__L, hlua_panic_safe); \ |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 151 | HA_SPIN_UNLOCK(LUA_LOCK, &hlua_global_lock); \ |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 152 | } while(0) |
| 153 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 154 | /* Applet status flags */ |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 155 | #define APPLET_DONE 0x01 /* applet processing is done. */ |
Christopher Faulet | 18c2e8d | 2019-03-01 12:02:08 +0100 | [diff] [blame] | 156 | /* unused: 0x02 */ |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 157 | #define APPLET_HDR_SENT 0x04 /* Response header sent. */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 158 | /* unused: 0x08, 0x10 */ |
Thierry FOURNIER | d93ea2b | 2015-12-20 19:14:52 +0100 | [diff] [blame] | 159 | #define APPLET_HTTP11 0x20 /* Last chunk sent. */ |
Christopher Faulet | 56a3d6e | 2019-02-27 22:06:23 +0100 | [diff] [blame] | 160 | #define APPLET_RSP_SENT 0x40 /* The response was fully sent */ |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 161 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 162 | /* The main Lua execution context. */ |
| 163 | struct hlua gL; |
| 164 | |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 165 | /* This is the memory pool containing struct lua for applets |
| 166 | * (including cli). |
| 167 | */ |
Willy Tarreau | 8ceae72 | 2018-11-26 11:58:30 +0100 | [diff] [blame] | 168 | DECLARE_STATIC_POOL(pool_head_hlua, "hlua", sizeof(struct hlua)); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 169 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 170 | /* Used for Socket connection. */ |
| 171 | static struct proxy socket_proxy; |
| 172 | static struct server socket_tcp; |
| 173 | #ifdef USE_OPENSSL |
| 174 | static struct server socket_ssl; |
| 175 | #endif |
| 176 | |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 177 | /* List head of the function called at the initialisation time. */ |
| 178 | struct list hlua_init_functions = LIST_HEAD_INIT(hlua_init_functions); |
| 179 | |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 180 | /* The following variables contains the reference of the different |
| 181 | * Lua classes. These references are useful for identify metadata |
| 182 | * associated with an object. |
| 183 | */ |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 184 | static int class_txn_ref; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 185 | static int class_socket_ref; |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 186 | static int class_channel_ref; |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 187 | static int class_fetches_ref; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 188 | static int class_converters_ref; |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 189 | static int class_http_ref; |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 190 | static int class_map_ref; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 191 | static int class_applet_tcp_ref; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 192 | static int class_applet_http_ref; |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 193 | |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 194 | /* Global Lua execution timeout. By default Lua, execution linked |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 195 | * with stream (actions, sample-fetches and converters) have a |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 196 | * short timeout. Lua linked with tasks doesn't have a timeout |
| 197 | * because a task may remain alive during all the haproxy execution. |
| 198 | */ |
| 199 | static unsigned int hlua_timeout_session = 4000; /* session timeout. */ |
| 200 | static unsigned int hlua_timeout_task = TICK_ETERNITY; /* task timeout. */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 201 | static unsigned int hlua_timeout_applet = 4000; /* applet timeout. */ |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 202 | |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 203 | /* Interrupts the Lua processing each "hlua_nb_instruction" instructions. |
| 204 | * it is used for preventing infinite loops. |
| 205 | * |
| 206 | * I test the scheer with an infinite loop containing one incrementation |
| 207 | * and one test. I run this loop between 10 seconds, I raise a ceil of |
| 208 | * 710M loops from one interrupt each 9000 instructions, so I fix the value |
| 209 | * to one interrupt each 10 000 instructions. |
| 210 | * |
| 211 | * configured | Number of |
| 212 | * instructions | loops executed |
| 213 | * between two | in milions |
| 214 | * forced yields | |
| 215 | * ---------------+--------------- |
| 216 | * 10 | 160 |
| 217 | * 500 | 670 |
| 218 | * 1000 | 680 |
| 219 | * 5000 | 700 |
| 220 | * 7000 | 700 |
| 221 | * 8000 | 700 |
| 222 | * 9000 | 710 <- ceil |
| 223 | * 10000 | 710 |
| 224 | * 100000 | 710 |
| 225 | * 1000000 | 710 |
| 226 | * |
| 227 | */ |
| 228 | static unsigned int hlua_nb_instruction = 10000; |
| 229 | |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 230 | /* Descriptor for the memory allocation state. If limit is not null, it will |
| 231 | * be enforced on any memory allocation. |
| 232 | */ |
| 233 | struct hlua_mem_allocator { |
| 234 | size_t allocated; |
| 235 | size_t limit; |
| 236 | }; |
| 237 | |
| 238 | static struct hlua_mem_allocator hlua_global_allocator; |
| 239 | |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 240 | /* These functions converts types between HAProxy internal args or |
| 241 | * sample and LUA types. Another function permits to check if the |
| 242 | * LUA stack contains arguments according with an required ARG_T |
| 243 | * format. |
| 244 | */ |
| 245 | static int hlua_arg2lua(lua_State *L, const struct arg *arg); |
| 246 | static int hlua_lua2arg(lua_State *L, int ud, struct arg *arg); |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 247 | __LJMP static int hlua_lua2arg_check(lua_State *L, int first, struct arg *argp, |
David Carlier | 0c437f4 | 2016-04-27 16:21:56 +0100 | [diff] [blame] | 248 | uint64_t mask, struct proxy *p); |
Willy Tarreau | 5eadada | 2015-03-10 17:28:54 +0100 | [diff] [blame] | 249 | static int hlua_smp2lua(lua_State *L, struct sample *smp); |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 250 | static int hlua_smp2lua_str(lua_State *L, struct sample *smp); |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 251 | static int hlua_lua2smp(lua_State *L, int ud, struct sample *smp); |
| 252 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 253 | __LJMP static int hlua_http_get_headers(lua_State *L, struct hlua_txn *htxn, struct http_msg *msg); |
| 254 | |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 255 | #define SEND_ERR(__be, __fmt, __args...) \ |
| 256 | do { \ |
| 257 | send_log(__be, LOG_ERR, __fmt, ## __args); \ |
| 258 | if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) \ |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 259 | ha_alert(__fmt, ## __args); \ |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 260 | } while (0) |
| 261 | |
Thierry FOURNIER | e8b9a40 | 2015-02-25 18:48:12 +0100 | [diff] [blame] | 262 | /* Used to check an Lua function type in the stack. It creates and |
| 263 | * returns a reference of the function. This function throws an |
| 264 | * error if the rgument is not a "function". |
| 265 | */ |
| 266 | __LJMP unsigned int hlua_checkfunction(lua_State *L, int argno) |
| 267 | { |
| 268 | if (!lua_isfunction(L, argno)) { |
Thierry FOURNIER | fd1e955 | 2018-02-23 18:41:18 +0100 | [diff] [blame] | 269 | const char *msg = lua_pushfstring(L, "function expected, got %s", luaL_typename(L, argno)); |
Thierry FOURNIER | e8b9a40 | 2015-02-25 18:48:12 +0100 | [diff] [blame] | 270 | WILL_LJMP(luaL_argerror(L, argno, msg)); |
| 271 | } |
| 272 | lua_pushvalue(L, argno); |
| 273 | return luaL_ref(L, LUA_REGISTRYINDEX); |
| 274 | } |
| 275 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 276 | /* Return the string that is of the top of the stack. */ |
| 277 | const char *hlua_get_top_error_string(lua_State *L) |
| 278 | { |
| 279 | if (lua_gettop(L) < 1) |
| 280 | return "unknown error"; |
| 281 | if (lua_type(L, -1) != LUA_TSTRING) |
| 282 | return "unknown error"; |
| 283 | return lua_tostring(L, -1); |
| 284 | } |
| 285 | |
Thierry FOURNIER | fc044c9 | 2018-06-07 14:40:48 +0200 | [diff] [blame] | 286 | __LJMP static const char *hlua_traceback(lua_State *L) |
| 287 | { |
| 288 | lua_Debug ar; |
| 289 | int level = 0; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 290 | struct buffer *msg = get_trash_chunk(); |
Thierry FOURNIER | fc044c9 | 2018-06-07 14:40:48 +0200 | [diff] [blame] | 291 | int filled = 0; |
| 292 | |
| 293 | while (lua_getstack(L, level++, &ar)) { |
| 294 | |
| 295 | /* Add separator */ |
| 296 | if (filled) |
| 297 | chunk_appendf(msg, ", "); |
| 298 | filled = 1; |
| 299 | |
| 300 | /* Fill fields: |
| 301 | * 'S': fills in the fields source, short_src, linedefined, lastlinedefined, and what; |
| 302 | * 'l': fills in the field currentline; |
| 303 | * 'n': fills in the field name and namewhat; |
| 304 | * 't': fills in the field istailcall; |
| 305 | */ |
| 306 | lua_getinfo(L, "Slnt", &ar); |
| 307 | |
| 308 | /* Append code localisation */ |
| 309 | if (ar.currentline > 0) |
| 310 | chunk_appendf(msg, "%s:%d ", ar.short_src, ar.currentline); |
| 311 | else |
| 312 | chunk_appendf(msg, "%s ", ar.short_src); |
| 313 | |
| 314 | /* |
| 315 | * Get function name |
| 316 | * |
| 317 | * if namewhat is no empty, name is defined. |
| 318 | * what contains "Lua" for Lua function, "C" for C function, |
| 319 | * or "main" for main code. |
| 320 | */ |
| 321 | if (*ar.namewhat != '\0' && ar.name != NULL) /* is there a name from code? */ |
| 322 | chunk_appendf(msg, "%s '%s'", ar.namewhat, ar.name); /* use it */ |
| 323 | |
| 324 | else if (*ar.what == 'm') /* "main", the code is not executed in a function */ |
| 325 | chunk_appendf(msg, "main chunk"); |
| 326 | |
| 327 | else if (*ar.what != 'C') /* for Lua functions, use <file:line> */ |
| 328 | chunk_appendf(msg, "C function line %d", ar.linedefined); |
| 329 | |
| 330 | else /* nothing left... */ |
| 331 | chunk_appendf(msg, "?"); |
| 332 | |
| 333 | |
| 334 | /* Display tailed call */ |
| 335 | if (ar.istailcall) |
| 336 | chunk_appendf(msg, " ..."); |
| 337 | } |
| 338 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 339 | return msg->area; |
Thierry FOURNIER | fc044c9 | 2018-06-07 14:40:48 +0200 | [diff] [blame] | 340 | } |
| 341 | |
| 342 | |
Thierry FOURNIER | e8b9a40 | 2015-02-25 18:48:12 +0100 | [diff] [blame] | 343 | /* This function check the number of arguments available in the |
| 344 | * stack. If the number of arguments available is not the same |
| 345 | * then <nb> an error is throwed. |
| 346 | */ |
| 347 | __LJMP static inline void check_args(lua_State *L, int nb, char *fcn) |
| 348 | { |
| 349 | if (lua_gettop(L) == nb) |
| 350 | return; |
| 351 | WILL_LJMP(luaL_error(L, "'%s' needs %d arguments", fcn, nb)); |
| 352 | } |
| 353 | |
Mark Lakes | 22154b4 | 2018-01-29 14:38:40 -0800 | [diff] [blame] | 354 | /* This function pushes an error string prefixed by the file name |
Thierry FOURNIER | e8b9a40 | 2015-02-25 18:48:12 +0100 | [diff] [blame] | 355 | * and the line number where the error is encountered. |
| 356 | */ |
| 357 | static int hlua_pusherror(lua_State *L, const char *fmt, ...) |
| 358 | { |
| 359 | va_list argp; |
| 360 | va_start(argp, fmt); |
| 361 | luaL_where(L, 1); |
| 362 | lua_pushvfstring(L, fmt, argp); |
| 363 | va_end(argp); |
| 364 | lua_concat(L, 2); |
| 365 | return 1; |
| 366 | } |
| 367 | |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 368 | /* This functions is used with sample fetch and converters. It |
| 369 | * converts the HAProxy configuration argument in a lua stack |
| 370 | * values. |
| 371 | * |
| 372 | * It takes an array of "arg", and each entry of the array is |
| 373 | * converted and pushed in the LUA stack. |
| 374 | */ |
| 375 | static int hlua_arg2lua(lua_State *L, const struct arg *arg) |
| 376 | { |
| 377 | switch (arg->type) { |
| 378 | case ARGT_SINT: |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 379 | case ARGT_TIME: |
| 380 | case ARGT_SIZE: |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 381 | lua_pushinteger(L, arg->data.sint); |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 382 | break; |
| 383 | |
| 384 | case ARGT_STR: |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 385 | lua_pushlstring(L, arg->data.str.area, arg->data.str.data); |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 386 | break; |
| 387 | |
| 388 | case ARGT_IPV4: |
| 389 | case ARGT_IPV6: |
| 390 | case ARGT_MSK4: |
| 391 | case ARGT_MSK6: |
| 392 | case ARGT_FE: |
| 393 | case ARGT_BE: |
| 394 | case ARGT_TAB: |
| 395 | case ARGT_SRV: |
| 396 | case ARGT_USR: |
| 397 | case ARGT_MAP: |
| 398 | default: |
| 399 | lua_pushnil(L); |
| 400 | break; |
| 401 | } |
| 402 | return 1; |
| 403 | } |
| 404 | |
| 405 | /* This function take one entrie in an LUA stack at the index "ud", |
| 406 | * and try to convert it in an HAProxy argument entry. This is useful |
| 407 | * with sample fetch wrappers. The input arguments are gived to the |
| 408 | * lua wrapper and converted as arg list by thi function. |
| 409 | */ |
| 410 | static int hlua_lua2arg(lua_State *L, int ud, struct arg *arg) |
| 411 | { |
| 412 | switch (lua_type(L, ud)) { |
| 413 | |
| 414 | case LUA_TNUMBER: |
| 415 | case LUA_TBOOLEAN: |
| 416 | arg->type = ARGT_SINT; |
| 417 | arg->data.sint = lua_tointeger(L, ud); |
| 418 | break; |
| 419 | |
| 420 | case LUA_TSTRING: |
| 421 | arg->type = ARGT_STR; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 422 | arg->data.str.area = (char *)lua_tolstring(L, ud, (size_t *)&arg->data.str.data); |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 423 | break; |
| 424 | |
| 425 | case LUA_TUSERDATA: |
| 426 | case LUA_TNIL: |
| 427 | case LUA_TTABLE: |
| 428 | case LUA_TFUNCTION: |
| 429 | case LUA_TTHREAD: |
| 430 | case LUA_TLIGHTUSERDATA: |
| 431 | arg->type = ARGT_SINT; |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 432 | arg->data.sint = 0; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 433 | break; |
| 434 | } |
| 435 | return 1; |
| 436 | } |
| 437 | |
| 438 | /* the following functions are used to convert a struct sample |
| 439 | * in Lua type. This useful to convert the return of the |
| 440 | * fetchs or converters. |
| 441 | */ |
Willy Tarreau | 5eadada | 2015-03-10 17:28:54 +0100 | [diff] [blame] | 442 | static int hlua_smp2lua(lua_State *L, struct sample *smp) |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 443 | { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 444 | switch (smp->data.type) { |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 445 | case SMP_T_SINT: |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 446 | case SMP_T_BOOL: |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 447 | lua_pushinteger(L, smp->data.u.sint); |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 448 | break; |
| 449 | |
| 450 | case SMP_T_BIN: |
| 451 | case SMP_T_STR: |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 452 | lua_pushlstring(L, smp->data.u.str.area, smp->data.u.str.data); |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 453 | break; |
| 454 | |
| 455 | case SMP_T_METH: |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 456 | switch (smp->data.u.meth.meth) { |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 457 | case HTTP_METH_OPTIONS: lua_pushstring(L, "OPTIONS"); break; |
| 458 | case HTTP_METH_GET: lua_pushstring(L, "GET"); break; |
| 459 | case HTTP_METH_HEAD: lua_pushstring(L, "HEAD"); break; |
| 460 | case HTTP_METH_POST: lua_pushstring(L, "POST"); break; |
| 461 | case HTTP_METH_PUT: lua_pushstring(L, "PUT"); break; |
| 462 | case HTTP_METH_DELETE: lua_pushstring(L, "DELETE"); break; |
| 463 | case HTTP_METH_TRACE: lua_pushstring(L, "TRACE"); break; |
| 464 | case HTTP_METH_CONNECT: lua_pushstring(L, "CONNECT"); break; |
| 465 | case HTTP_METH_OTHER: |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 466 | lua_pushlstring(L, smp->data.u.meth.str.area, smp->data.u.meth.str.data); |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 467 | break; |
| 468 | default: |
| 469 | lua_pushnil(L); |
| 470 | break; |
| 471 | } |
| 472 | break; |
| 473 | |
| 474 | case SMP_T_IPV4: |
| 475 | case SMP_T_IPV6: |
| 476 | case SMP_T_ADDR: /* This type is never used to qualify a sample. */ |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 477 | if (sample_casts[smp->data.type][SMP_T_STR] && |
| 478 | sample_casts[smp->data.type][SMP_T_STR](smp)) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 479 | lua_pushlstring(L, smp->data.u.str.area, smp->data.u.str.data); |
Willy Tarreau | 5eadada | 2015-03-10 17:28:54 +0100 | [diff] [blame] | 480 | else |
| 481 | lua_pushnil(L); |
| 482 | break; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 483 | default: |
| 484 | lua_pushnil(L); |
| 485 | break; |
| 486 | } |
| 487 | return 1; |
| 488 | } |
| 489 | |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 490 | /* the following functions are used to convert a struct sample |
| 491 | * in Lua strings. This is useful to convert the return of the |
| 492 | * fetchs or converters. |
| 493 | */ |
| 494 | static int hlua_smp2lua_str(lua_State *L, struct sample *smp) |
| 495 | { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 496 | switch (smp->data.type) { |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 497 | |
| 498 | case SMP_T_BIN: |
| 499 | case SMP_T_STR: |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 500 | lua_pushlstring(L, smp->data.u.str.area, smp->data.u.str.data); |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 501 | break; |
| 502 | |
| 503 | case SMP_T_METH: |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 504 | switch (smp->data.u.meth.meth) { |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 505 | case HTTP_METH_OPTIONS: lua_pushstring(L, "OPTIONS"); break; |
| 506 | case HTTP_METH_GET: lua_pushstring(L, "GET"); break; |
| 507 | case HTTP_METH_HEAD: lua_pushstring(L, "HEAD"); break; |
| 508 | case HTTP_METH_POST: lua_pushstring(L, "POST"); break; |
| 509 | case HTTP_METH_PUT: lua_pushstring(L, "PUT"); break; |
| 510 | case HTTP_METH_DELETE: lua_pushstring(L, "DELETE"); break; |
| 511 | case HTTP_METH_TRACE: lua_pushstring(L, "TRACE"); break; |
| 512 | case HTTP_METH_CONNECT: lua_pushstring(L, "CONNECT"); break; |
| 513 | case HTTP_METH_OTHER: |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 514 | lua_pushlstring(L, smp->data.u.meth.str.area, smp->data.u.meth.str.data); |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 515 | break; |
| 516 | default: |
| 517 | lua_pushstring(L, ""); |
| 518 | break; |
| 519 | } |
| 520 | break; |
| 521 | |
| 522 | case SMP_T_SINT: |
| 523 | case SMP_T_BOOL: |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 524 | case SMP_T_IPV4: |
| 525 | case SMP_T_IPV6: |
| 526 | case SMP_T_ADDR: /* This type is never used to qualify a sample. */ |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 527 | if (sample_casts[smp->data.type][SMP_T_STR] && |
| 528 | sample_casts[smp->data.type][SMP_T_STR](smp)) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 529 | lua_pushlstring(L, smp->data.u.str.area, smp->data.u.str.data); |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 530 | else |
| 531 | lua_pushstring(L, ""); |
| 532 | break; |
| 533 | default: |
| 534 | lua_pushstring(L, ""); |
| 535 | break; |
| 536 | } |
| 537 | return 1; |
| 538 | } |
| 539 | |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 540 | /* the following functions are used to convert an Lua type in a |
| 541 | * struct sample. This is useful to provide data from a converter |
| 542 | * to the LUA code. |
| 543 | */ |
| 544 | static int hlua_lua2smp(lua_State *L, int ud, struct sample *smp) |
| 545 | { |
| 546 | switch (lua_type(L, ud)) { |
| 547 | |
| 548 | case LUA_TNUMBER: |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 549 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 550 | smp->data.u.sint = lua_tointeger(L, ud); |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 551 | break; |
| 552 | |
| 553 | |
| 554 | case LUA_TBOOLEAN: |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 555 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 556 | smp->data.u.sint = lua_toboolean(L, ud); |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 557 | break; |
| 558 | |
| 559 | case LUA_TSTRING: |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 560 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 561 | smp->flags |= SMP_F_CONST; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 562 | smp->data.u.str.area = (char *)lua_tolstring(L, ud, (size_t *)&smp->data.u.str.data); |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 563 | break; |
| 564 | |
| 565 | case LUA_TUSERDATA: |
| 566 | case LUA_TNIL: |
| 567 | case LUA_TTABLE: |
| 568 | case LUA_TFUNCTION: |
| 569 | case LUA_TTHREAD: |
| 570 | case LUA_TLIGHTUSERDATA: |
Thierry FOURNIER | 93405e1 | 2015-08-26 14:19:03 +0200 | [diff] [blame] | 571 | case LUA_TNONE: |
| 572 | default: |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 573 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 574 | smp->data.u.sint = 0; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 575 | break; |
| 576 | } |
| 577 | return 1; |
| 578 | } |
| 579 | |
| 580 | /* This function check the "argp" builded by another conversion function |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 581 | * is in accord with the expected argp defined by the "mask". The function |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 582 | * returns true or false. It can be adjust the types if there compatibles. |
Thierry FOURNIER | 3caa039 | 2015-03-13 13:38:17 +0100 | [diff] [blame] | 583 | * |
| 584 | * This function assumes thant the argp argument contains ARGM_NBARGS + 1 |
| 585 | * entries. |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 586 | */ |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 587 | __LJMP int hlua_lua2arg_check(lua_State *L, int first, struct arg *argp, |
David Carlier | 0c437f4 | 2016-04-27 16:21:56 +0100 | [diff] [blame] | 588 | uint64_t mask, struct proxy *p) |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 589 | { |
| 590 | int min_arg; |
| 591 | int idx; |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 592 | struct proxy *px; |
| 593 | char *sname, *pname; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 594 | |
| 595 | idx = 0; |
| 596 | min_arg = ARGM(mask); |
| 597 | mask >>= ARGM_BITS; |
| 598 | |
| 599 | while (1) { |
| 600 | |
| 601 | /* Check oversize. */ |
| 602 | if (idx >= ARGM_NBARGS && argp[idx].type != ARGT_STOP) { |
Cyril Bonté | 577a36a | 2015-03-02 00:08:38 +0100 | [diff] [blame] | 603 | WILL_LJMP(luaL_argerror(L, first + idx, "Malformed argument mask")); |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 604 | } |
| 605 | |
| 606 | /* Check for mandatory arguments. */ |
| 607 | if (argp[idx].type == ARGT_STOP) { |
Thierry FOURNIER | 3caa039 | 2015-03-13 13:38:17 +0100 | [diff] [blame] | 608 | if (idx < min_arg) { |
| 609 | |
| 610 | /* If miss other argument than the first one, we return an error. */ |
| 611 | if (idx > 0) |
| 612 | WILL_LJMP(luaL_argerror(L, first + idx, "Mandatory argument expected")); |
| 613 | |
| 614 | /* If first argument have a certain type, some default values |
| 615 | * may be used. See the function smp_resolve_args(). |
| 616 | */ |
| 617 | switch (mask & ARGT_MASK) { |
| 618 | |
| 619 | case ARGT_FE: |
| 620 | if (!(p->cap & PR_CAP_FE)) |
| 621 | WILL_LJMP(luaL_argerror(L, first + idx, "Mandatory argument expected")); |
| 622 | argp[idx].data.prx = p; |
| 623 | argp[idx].type = ARGT_FE; |
| 624 | argp[idx+1].type = ARGT_STOP; |
| 625 | break; |
| 626 | |
| 627 | case ARGT_BE: |
| 628 | if (!(p->cap & PR_CAP_BE)) |
| 629 | WILL_LJMP(luaL_argerror(L, first + idx, "Mandatory argument expected")); |
| 630 | argp[idx].data.prx = p; |
| 631 | argp[idx].type = ARGT_BE; |
| 632 | argp[idx+1].type = ARGT_STOP; |
| 633 | break; |
| 634 | |
| 635 | case ARGT_TAB: |
| 636 | argp[idx].data.prx = p; |
| 637 | argp[idx].type = ARGT_TAB; |
| 638 | argp[idx+1].type = ARGT_STOP; |
| 639 | break; |
| 640 | |
| 641 | default: |
| 642 | WILL_LJMP(luaL_argerror(L, first + idx, "Mandatory argument expected")); |
| 643 | break; |
| 644 | } |
| 645 | } |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 646 | return 0; |
| 647 | } |
| 648 | |
| 649 | /* Check for exceed the number of requiered argument. */ |
| 650 | if ((mask & ARGT_MASK) == ARGT_STOP && |
| 651 | argp[idx].type != ARGT_STOP) { |
| 652 | WILL_LJMP(luaL_argerror(L, first + idx, "Last argument expected")); |
| 653 | } |
| 654 | |
| 655 | if ((mask & ARGT_MASK) == ARGT_STOP && |
| 656 | argp[idx].type == ARGT_STOP) { |
| 657 | return 0; |
| 658 | } |
| 659 | |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 660 | /* Convert some argument types. */ |
| 661 | switch (mask & ARGT_MASK) { |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 662 | case ARGT_SINT: |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 663 | if (argp[idx].type != ARGT_SINT) |
| 664 | WILL_LJMP(luaL_argerror(L, first + idx, "integer expected")); |
| 665 | argp[idx].type = ARGT_SINT; |
| 666 | break; |
| 667 | |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 668 | case ARGT_TIME: |
| 669 | if (argp[idx].type != ARGT_SINT) |
| 670 | WILL_LJMP(luaL_argerror(L, first + idx, "integer expected")); |
Thierry FOURNIER | 29176f3 | 2015-07-07 00:41:29 +0200 | [diff] [blame] | 671 | argp[idx].type = ARGT_TIME; |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 672 | break; |
| 673 | |
| 674 | case ARGT_SIZE: |
| 675 | if (argp[idx].type != ARGT_SINT) |
| 676 | WILL_LJMP(luaL_argerror(L, first + idx, "integer expected")); |
Thierry FOURNIER | 29176f3 | 2015-07-07 00:41:29 +0200 | [diff] [blame] | 677 | argp[idx].type = ARGT_SIZE; |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 678 | break; |
| 679 | |
| 680 | case ARGT_FE: |
| 681 | if (argp[idx].type != ARGT_STR) |
| 682 | WILL_LJMP(luaL_argerror(L, first + idx, "string expected")); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 683 | memcpy(trash.area, argp[idx].data.str.area, |
| 684 | argp[idx].data.str.data); |
| 685 | trash.area[argp[idx].data.str.data] = 0; |
| 686 | argp[idx].data.prx = proxy_fe_by_name(trash.area); |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 687 | if (!argp[idx].data.prx) |
| 688 | WILL_LJMP(luaL_argerror(L, first + idx, "frontend doesn't exist")); |
| 689 | argp[idx].type = ARGT_FE; |
| 690 | break; |
| 691 | |
| 692 | case ARGT_BE: |
| 693 | if (argp[idx].type != ARGT_STR) |
| 694 | WILL_LJMP(luaL_argerror(L, first + idx, "string expected")); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 695 | memcpy(trash.area, argp[idx].data.str.area, |
| 696 | argp[idx].data.str.data); |
| 697 | trash.area[argp[idx].data.str.data] = 0; |
| 698 | argp[idx].data.prx = proxy_be_by_name(trash.area); |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 699 | if (!argp[idx].data.prx) |
| 700 | WILL_LJMP(luaL_argerror(L, first + idx, "backend doesn't exist")); |
| 701 | argp[idx].type = ARGT_BE; |
| 702 | break; |
| 703 | |
| 704 | case ARGT_TAB: |
| 705 | if (argp[idx].type != ARGT_STR) |
| 706 | WILL_LJMP(luaL_argerror(L, first + idx, "string expected")); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 707 | memcpy(trash.area, argp[idx].data.str.area, |
| 708 | argp[idx].data.str.data); |
| 709 | trash.area[argp[idx].data.str.data] = 0; |
| 710 | argp[idx].data.prx = proxy_tbl_by_name(trash.area); |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 711 | if (!argp[idx].data.prx) |
| 712 | WILL_LJMP(luaL_argerror(L, first + idx, "table doesn't exist")); |
| 713 | argp[idx].type = ARGT_TAB; |
| 714 | break; |
| 715 | |
| 716 | case ARGT_SRV: |
| 717 | if (argp[idx].type != ARGT_STR) |
| 718 | WILL_LJMP(luaL_argerror(L, first + idx, "string expected")); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 719 | memcpy(trash.area, argp[idx].data.str.area, |
| 720 | argp[idx].data.str.data); |
| 721 | trash.area[argp[idx].data.str.data] = 0; |
| 722 | sname = strrchr(trash.area, '/'); |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 723 | if (sname) { |
| 724 | *sname++ = '\0'; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 725 | pname = trash.area; |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 726 | px = proxy_be_by_name(pname); |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 727 | if (!px) |
| 728 | WILL_LJMP(luaL_argerror(L, first + idx, "backend doesn't exist")); |
| 729 | } |
| 730 | else { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 731 | sname = trash.area; |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 732 | px = p; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 733 | } |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 734 | argp[idx].data.srv = findserver(px, sname); |
| 735 | if (!argp[idx].data.srv) |
| 736 | WILL_LJMP(luaL_argerror(L, first + idx, "server doesn't exist")); |
| 737 | argp[idx].type = ARGT_SRV; |
| 738 | break; |
| 739 | |
| 740 | case ARGT_IPV4: |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 741 | memcpy(trash.area, argp[idx].data.str.area, |
| 742 | argp[idx].data.str.data); |
| 743 | trash.area[argp[idx].data.str.data] = 0; |
| 744 | if (inet_pton(AF_INET, trash.area, &argp[idx].data.ipv4)) |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 745 | WILL_LJMP(luaL_argerror(L, first + idx, "invalid IPv4 address")); |
| 746 | argp[idx].type = ARGT_IPV4; |
| 747 | break; |
| 748 | |
| 749 | case ARGT_MSK4: |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 750 | memcpy(trash.area, argp[idx].data.str.area, |
| 751 | argp[idx].data.str.data); |
| 752 | trash.area[argp[idx].data.str.data] = 0; |
| 753 | if (!str2mask(trash.area, &argp[idx].data.ipv4)) |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 754 | WILL_LJMP(luaL_argerror(L, first + idx, "invalid IPv4 mask")); |
| 755 | argp[idx].type = ARGT_MSK4; |
| 756 | break; |
| 757 | |
| 758 | case ARGT_IPV6: |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 759 | memcpy(trash.area, argp[idx].data.str.area, |
| 760 | argp[idx].data.str.data); |
| 761 | trash.area[argp[idx].data.str.data] = 0; |
| 762 | if (inet_pton(AF_INET6, trash.area, &argp[idx].data.ipv6)) |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 763 | WILL_LJMP(luaL_argerror(L, first + idx, "invalid IPv6 address")); |
| 764 | argp[idx].type = ARGT_IPV6; |
| 765 | break; |
| 766 | |
| 767 | case ARGT_MSK6: |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 768 | memcpy(trash.area, argp[idx].data.str.area, |
| 769 | argp[idx].data.str.data); |
| 770 | trash.area[argp[idx].data.str.data] = 0; |
| 771 | if (!str2mask6(trash.area, &argp[idx].data.ipv6)) |
Tim Duesterhus | b814da6 | 2018-01-25 16:24:50 +0100 | [diff] [blame] | 772 | WILL_LJMP(luaL_argerror(L, first + idx, "invalid IPv6 mask")); |
| 773 | argp[idx].type = ARGT_MSK6; |
| 774 | break; |
| 775 | |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 776 | case ARGT_MAP: |
| 777 | case ARGT_REG: |
| 778 | case ARGT_USR: |
| 779 | WILL_LJMP(luaL_argerror(L, first + idx, "type not yet supported")); |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 780 | break; |
| 781 | } |
| 782 | |
| 783 | /* Check for type of argument. */ |
| 784 | if ((mask & ARGT_MASK) != argp[idx].type) { |
| 785 | const char *msg = lua_pushfstring(L, "'%s' expected, got '%s'", |
| 786 | arg_type_names[(mask & ARGT_MASK)], |
| 787 | arg_type_names[argp[idx].type & ARGT_MASK]); |
| 788 | WILL_LJMP(luaL_argerror(L, first + idx, msg)); |
| 789 | } |
| 790 | |
| 791 | /* Next argument. */ |
| 792 | mask >>= ARGT_BITS; |
| 793 | idx++; |
| 794 | } |
| 795 | } |
| 796 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 797 | /* |
| 798 | * The following functions are used to make correspondance between the the |
| 799 | * executed lua pointer and the "struct hlua *" that contain the context. |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 800 | * |
| 801 | * - hlua_gethlua : return the hlua context associated with an lua_State. |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 802 | * - hlua_sethlua : create the association between hlua context and lua_state. |
| 803 | */ |
| 804 | static inline struct hlua *hlua_gethlua(lua_State *L) |
| 805 | { |
Thierry FOURNIER | 38c5fd6 | 2015-03-10 02:40:29 +0100 | [diff] [blame] | 806 | struct hlua **hlua = lua_getextraspace(L); |
| 807 | return *hlua; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 808 | } |
| 809 | static inline void hlua_sethlua(struct hlua *hlua) |
| 810 | { |
Thierry FOURNIER | 38c5fd6 | 2015-03-10 02:40:29 +0100 | [diff] [blame] | 811 | struct hlua **hlua_store = lua_getextraspace(hlua->T); |
| 812 | *hlua_store = hlua; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 813 | } |
| 814 | |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 815 | /* This function is used to send logs. It try to send on screen (stderr) |
| 816 | * and on the default syslog server. |
| 817 | */ |
| 818 | static inline void hlua_sendlog(struct proxy *px, int level, const char *msg) |
| 819 | { |
| 820 | struct tm tm; |
| 821 | char *p; |
| 822 | |
| 823 | /* Cleanup the log message. */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 824 | p = trash.area; |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 825 | for (; *msg != '\0'; msg++, p++) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 826 | if (p >= trash.area + trash.size - 1) { |
Thierry FOURNIER | ccf0063 | 2015-09-16 12:47:03 +0200 | [diff] [blame] | 827 | /* Break the message if exceed the buffer size. */ |
| 828 | *(p-4) = ' '; |
| 829 | *(p-3) = '.'; |
| 830 | *(p-2) = '.'; |
| 831 | *(p-1) = '.'; |
| 832 | break; |
| 833 | } |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 834 | if (isprint(*msg)) |
| 835 | *p = *msg; |
| 836 | else |
| 837 | *p = '.'; |
| 838 | } |
| 839 | *p = '\0'; |
| 840 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 841 | send_log(px, level, "%s\n", trash.area); |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 842 | if (!(global.mode & MODE_QUIET) || (global.mode & (MODE_VERBOSE | MODE_STARTING))) { |
Willy Tarreau | a678b43 | 2015-08-28 10:14:59 +0200 | [diff] [blame] | 843 | get_localtime(date.tv_sec, &tm); |
| 844 | fprintf(stderr, "[%s] %03d/%02d%02d%02d (%d) : %s\n", |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 845 | log_levels[level], tm.tm_yday, tm.tm_hour, tm.tm_min, tm.tm_sec, |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 846 | (int)getpid(), trash.area); |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 847 | fflush(stderr); |
| 848 | } |
| 849 | } |
| 850 | |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 851 | /* This function just ensure that the yield will be always |
| 852 | * returned with a timeout and permit to set some flags |
| 853 | */ |
| 854 | __LJMP void hlua_yieldk(lua_State *L, int nresults, int ctx, |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 855 | lua_KFunction k, int timeout, unsigned int flags) |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 856 | { |
| 857 | struct hlua *hlua = hlua_gethlua(L); |
| 858 | |
| 859 | /* Set the wake timeout. If timeout is required, we set |
| 860 | * the expiration time. |
| 861 | */ |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 862 | hlua->wake_time = timeout; |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 863 | |
Thierry FOURNIER | 4abd3ae | 2015-03-03 17:29:06 +0100 | [diff] [blame] | 864 | hlua->flags |= flags; |
| 865 | |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 866 | /* Process the yield. */ |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 867 | MAY_LJMP(lua_yieldk(L, nresults, ctx, k)); |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 868 | } |
| 869 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 870 | /* This function initialises the Lua environment stored in the stream. |
| 871 | * It must be called at the start of the stream. This function creates |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 872 | * an LUA coroutine. It can not be use to crete the main LUA context. |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 873 | * |
| 874 | * This function is particular. it initialises a new Lua thread. If the |
| 875 | * initialisation fails (example: out of memory error), the lua function |
| 876 | * throws an error (longjmp). |
| 877 | * |
Thierry FOURNIER | bf90ce1 | 2019-01-06 19:04:24 +0100 | [diff] [blame] | 878 | * In some case (at least one), this function can be called from safe |
| 879 | * environement, so we must not initialise it. While the support of |
| 880 | * threads appear, the safe environment set a lock to ensure only one |
| 881 | * Lua execution at a time. If we initialize safe environment in another |
| 882 | * safe environmenet, we have a dead lock. |
| 883 | * |
| 884 | * set "already_safe" true if the context is initialized form safe |
| 885 | * Lua fonction. |
| 886 | * |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 887 | * This function manipulates two Lua stacks: the main and the thread. Only |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 888 | * the main stack can fail. The thread is not manipulated. This function |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 889 | * MUST NOT manipulate the created thread stack state, because it is not |
| 890 | * proctected against errors thrown by the thread stack. |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 891 | */ |
Thierry FOURNIER | bf90ce1 | 2019-01-06 19:04:24 +0100 | [diff] [blame] | 892 | int hlua_ctx_init(struct hlua *lua, struct task *task, int already_safe) |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 893 | { |
Thierry FOURNIER | bf90ce1 | 2019-01-06 19:04:24 +0100 | [diff] [blame] | 894 | if (!already_safe) { |
| 895 | if (!SET_SAFE_LJMP(gL.T)) { |
| 896 | lua->Tref = LUA_REFNIL; |
| 897 | return 0; |
| 898 | } |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 899 | } |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 900 | lua->Mref = LUA_REFNIL; |
Thierry FOURNIER | a097fdf | 2015-03-03 15:17:35 +0100 | [diff] [blame] | 901 | lua->flags = 0; |
Thierry FOURNIER | 9ff7e6e | 2015-01-23 11:08:20 +0100 | [diff] [blame] | 902 | LIST_INIT(&lua->com); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 903 | lua->T = lua_newthread(gL.T); |
| 904 | if (!lua->T) { |
| 905 | lua->Tref = LUA_REFNIL; |
Thierry FOURNIER | bf90ce1 | 2019-01-06 19:04:24 +0100 | [diff] [blame] | 906 | if (!already_safe) |
| 907 | RESET_SAFE_LJMP(gL.T); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 908 | return 0; |
| 909 | } |
| 910 | hlua_sethlua(lua); |
| 911 | lua->Tref = luaL_ref(gL.T, LUA_REGISTRYINDEX); |
| 912 | lua->task = task; |
Thierry FOURNIER | bf90ce1 | 2019-01-06 19:04:24 +0100 | [diff] [blame] | 913 | if (!already_safe) |
| 914 | RESET_SAFE_LJMP(gL.T); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 915 | return 1; |
| 916 | } |
| 917 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 918 | /* Used to destroy the Lua coroutine when the attached stream or task |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 919 | * is destroyed. The destroy also the memory context. The struct "lua" |
| 920 | * is not freed. |
| 921 | */ |
| 922 | void hlua_ctx_destroy(struct hlua *lua) |
| 923 | { |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 924 | if (!lua) |
Thierry FOURNIER | a718b29 | 2015-03-04 16:48:34 +0100 | [diff] [blame] | 925 | return; |
| 926 | |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 927 | if (!lua->T) |
| 928 | goto end; |
| 929 | |
Thierry FOURNIER | 9ff7e6e | 2015-01-23 11:08:20 +0100 | [diff] [blame] | 930 | /* Purge all the pending signals. */ |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 931 | notification_purge(&lua->com); |
Thierry FOURNIER | 9ff7e6e | 2015-01-23 11:08:20 +0100 | [diff] [blame] | 932 | |
Thierry FOURNIER | 75d0208 | 2017-07-12 13:41:33 +0200 | [diff] [blame] | 933 | if (!SET_SAFE_LJMP(lua->T)) |
| 934 | return; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 935 | luaL_unref(lua->T, LUA_REGISTRYINDEX, lua->Mref); |
Thierry FOURNIER | 75d0208 | 2017-07-12 13:41:33 +0200 | [diff] [blame] | 936 | RESET_SAFE_LJMP(lua->T); |
Thierry FOURNIER | 5a50a85 | 2015-09-23 16:59:28 +0200 | [diff] [blame] | 937 | |
Thierry FOURNIER | 75d0208 | 2017-07-12 13:41:33 +0200 | [diff] [blame] | 938 | if (!SET_SAFE_LJMP(gL.T)) |
| 939 | return; |
| 940 | luaL_unref(gL.T, LUA_REGISTRYINDEX, lua->Tref); |
| 941 | RESET_SAFE_LJMP(gL.T); |
Thierry FOURNIER | 5a50a85 | 2015-09-23 16:59:28 +0200 | [diff] [blame] | 942 | /* Forces a garbage collecting process. If the Lua program is finished |
| 943 | * without error, we run the GC on the thread pointer. Its freed all |
| 944 | * the unused memory. |
| 945 | * If the thread is finnish with an error or is currently yielded, |
| 946 | * it seems that the GC applied on the thread doesn't clean anything, |
| 947 | * so e run the GC on the main thread. |
| 948 | * NOTE: maybe this action locks all the Lua threads untiml the en of |
| 949 | * the garbage collection. |
| 950 | */ |
Thierry FOURNIER | 7c39ab4 | 2015-09-27 22:53:33 +0200 | [diff] [blame] | 951 | if (lua->flags & HLUA_MUST_GC) { |
Thierry FOURNIER | 7bd10d5 | 2017-07-17 00:44:40 +0200 | [diff] [blame] | 952 | if (!SET_SAFE_LJMP(gL.T)) |
Thierry FOURNIER | 75d0208 | 2017-07-12 13:41:33 +0200 | [diff] [blame] | 953 | return; |
Thierry FOURNIER | 7bd10d5 | 2017-07-17 00:44:40 +0200 | [diff] [blame] | 954 | lua_gc(gL.T, LUA_GCCOLLECT, 0); |
| 955 | RESET_SAFE_LJMP(gL.T); |
Thierry FOURNIER | 7c39ab4 | 2015-09-27 22:53:33 +0200 | [diff] [blame] | 956 | } |
Thierry FOURNIER | 5a50a85 | 2015-09-23 16:59:28 +0200 | [diff] [blame] | 957 | |
Thierry FOURNIER | a7b536b | 2015-09-21 22:50:24 +0200 | [diff] [blame] | 958 | lua->T = NULL; |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 959 | |
| 960 | end: |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 961 | pool_free(pool_head_hlua, lua); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 962 | } |
| 963 | |
| 964 | /* This function is used to restore the Lua context when a coroutine |
| 965 | * fails. This function copy the common memory between old coroutine |
| 966 | * and the new coroutine. The old coroutine is destroyed, and its |
| 967 | * replaced by the new coroutine. |
| 968 | * If the flag "keep_msg" is set, the last entry of the old is assumed |
| 969 | * as string error message and it is copied in the new stack. |
| 970 | */ |
| 971 | static int hlua_ctx_renew(struct hlua *lua, int keep_msg) |
| 972 | { |
| 973 | lua_State *T; |
| 974 | int new_ref; |
| 975 | |
| 976 | /* Renew the main LUA stack doesn't have sense. */ |
| 977 | if (lua == &gL) |
| 978 | return 0; |
| 979 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 980 | /* New Lua coroutine. */ |
| 981 | T = lua_newthread(gL.T); |
| 982 | if (!T) |
| 983 | return 0; |
| 984 | |
| 985 | /* Copy last error message. */ |
| 986 | if (keep_msg) |
| 987 | lua_xmove(lua->T, T, 1); |
| 988 | |
| 989 | /* Copy data between the coroutines. */ |
| 990 | lua_rawgeti(lua->T, LUA_REGISTRYINDEX, lua->Mref); |
| 991 | lua_xmove(lua->T, T, 1); |
| 992 | new_ref = luaL_ref(T, LUA_REGISTRYINDEX); /* Valur poped. */ |
| 993 | |
| 994 | /* Destroy old data. */ |
| 995 | luaL_unref(lua->T, LUA_REGISTRYINDEX, lua->Mref); |
| 996 | |
| 997 | /* The thread is garbage collected by Lua. */ |
| 998 | luaL_unref(gL.T, LUA_REGISTRYINDEX, lua->Tref); |
| 999 | |
| 1000 | /* Fill the struct with the new coroutine values. */ |
| 1001 | lua->Mref = new_ref; |
| 1002 | lua->T = T; |
| 1003 | lua->Tref = luaL_ref(gL.T, LUA_REGISTRYINDEX); |
| 1004 | |
| 1005 | /* Set context. */ |
| 1006 | hlua_sethlua(lua); |
| 1007 | |
| 1008 | return 1; |
| 1009 | } |
| 1010 | |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 1011 | void hlua_hook(lua_State *L, lua_Debug *ar) |
| 1012 | { |
Thierry FOURNIER | cae49c9 | 2015-03-06 14:05:24 +0100 | [diff] [blame] | 1013 | struct hlua *hlua = hlua_gethlua(L); |
| 1014 | |
| 1015 | /* Lua cannot yield when its returning from a function, |
| 1016 | * so, we can fix the interrupt hook to 1 instruction, |
| 1017 | * expecting that the function is finnished. |
| 1018 | */ |
| 1019 | if (lua_gethookmask(L) & LUA_MASKRET) { |
| 1020 | lua_sethook(hlua->T, hlua_hook, LUA_MASKCOUNT, 1); |
| 1021 | return; |
| 1022 | } |
| 1023 | |
| 1024 | /* restore the interrupt condition. */ |
| 1025 | lua_sethook(hlua->T, hlua_hook, LUA_MASKCOUNT, hlua_nb_instruction); |
| 1026 | |
| 1027 | /* If we interrupt the Lua processing in yieldable state, we yield. |
| 1028 | * If the state is not yieldable, trying yield causes an error. |
| 1029 | */ |
| 1030 | if (lua_isyieldable(L)) |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 1031 | MAY_LJMP(hlua_yieldk(L, 0, 0, NULL, TICK_ETERNITY, HLUA_CTRLYIELD)); |
Thierry FOURNIER | cae49c9 | 2015-03-06 14:05:24 +0100 | [diff] [blame] | 1032 | |
Thierry FOURNIER | a85cfb1 | 2015-03-13 14:50:06 +0100 | [diff] [blame] | 1033 | /* If we cannot yield, update the clock and check the timeout. */ |
| 1034 | tv_update_date(0, 1); |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 1035 | hlua->run_time += now_ms - hlua->start_time; |
| 1036 | if (hlua->max_time && hlua->run_time >= hlua->max_time) { |
Thierry FOURNIER | cae49c9 | 2015-03-06 14:05:24 +0100 | [diff] [blame] | 1037 | lua_pushfstring(L, "execution timeout"); |
| 1038 | WILL_LJMP(lua_error(L)); |
| 1039 | } |
| 1040 | |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 1041 | /* Update the start time. */ |
| 1042 | hlua->start_time = now_ms; |
| 1043 | |
Thierry FOURNIER | cae49c9 | 2015-03-06 14:05:24 +0100 | [diff] [blame] | 1044 | /* Try to interrupt the process at the end of the current |
| 1045 | * unyieldable function. |
| 1046 | */ |
| 1047 | lua_sethook(hlua->T, hlua_hook, LUA_MASKRET|LUA_MASKCOUNT, hlua_nb_instruction); |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 1048 | } |
| 1049 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1050 | /* This function start or resumes the Lua stack execution. If the flag |
| 1051 | * "yield_allowed" if no set and the LUA stack execution returns a yield |
| 1052 | * The function return an error. |
| 1053 | * |
| 1054 | * The function can returns 4 values: |
| 1055 | * - HLUA_E_OK : The execution is terminated without any errors. |
| 1056 | * - HLUA_E_AGAIN : The execution must continue at the next associated |
| 1057 | * task wakeup. |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 1058 | * - HLUA_E_ERRMSG : An error has occurred, an error message is set in |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1059 | * the top of the stack. |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 1060 | * - HLUA_E_ERR : An error has occurred without error message. |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1061 | * |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 1062 | * If an error occurred, the stack is renewed and it is ready to run new |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1063 | * LUA code. |
| 1064 | */ |
| 1065 | static enum hlua_exec hlua_ctx_resume(struct hlua *lua, int yield_allowed) |
| 1066 | { |
| 1067 | int ret; |
| 1068 | const char *msg; |
Thierry FOURNIER | fc044c9 | 2018-06-07 14:40:48 +0200 | [diff] [blame] | 1069 | const char *trace; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1070 | |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 1071 | /* Initialise run time counter. */ |
| 1072 | if (!HLUA_IS_RUNNING(lua)) |
| 1073 | lua->run_time = 0; |
Thierry FOURNIER | dc9ca96 | 2015-03-05 11:16:52 +0100 | [diff] [blame] | 1074 | |
Thierry FOURNIER | 61ba0e2 | 2017-07-12 11:41:21 +0200 | [diff] [blame] | 1075 | /* Lock the whole Lua execution. This lock must be before the |
| 1076 | * label "resume_execution". |
| 1077 | */ |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1078 | HA_SPIN_LOCK(LUA_LOCK, &hlua_global_lock); |
Thierry FOURNIER | 61ba0e2 | 2017-07-12 11:41:21 +0200 | [diff] [blame] | 1079 | |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 1080 | resume_execution: |
| 1081 | |
| 1082 | /* This hook interrupts the Lua processing each 'hlua_nb_instruction' |
| 1083 | * instructions. it is used for preventing infinite loops. |
| 1084 | */ |
| 1085 | lua_sethook(lua->T, hlua_hook, LUA_MASKCOUNT, hlua_nb_instruction); |
| 1086 | |
Thierry FOURNIER | 1bfc09b | 2015-03-05 17:10:14 +0100 | [diff] [blame] | 1087 | /* Remove all flags except the running flags. */ |
Thierry FOURNIER | 2f3867f | 2015-09-28 01:02:01 +0200 | [diff] [blame] | 1088 | HLUA_SET_RUN(lua); |
| 1089 | HLUA_CLR_CTRLYIELD(lua); |
| 1090 | HLUA_CLR_WAKERESWR(lua); |
| 1091 | HLUA_CLR_WAKEREQWR(lua); |
Thierry FOURNIER | 1bfc09b | 2015-03-05 17:10:14 +0100 | [diff] [blame] | 1092 | |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 1093 | /* Update the start time. */ |
| 1094 | lua->start_time = now_ms; |
| 1095 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1096 | /* Call the function. */ |
| 1097 | ret = lua_resume(lua->T, gL.T, lua->nargs); |
| 1098 | switch (ret) { |
| 1099 | |
| 1100 | case LUA_OK: |
| 1101 | ret = HLUA_E_OK; |
| 1102 | break; |
| 1103 | |
| 1104 | case LUA_YIELD: |
Thierry FOURNIER | dc9ca96 | 2015-03-05 11:16:52 +0100 | [diff] [blame] | 1105 | /* Check if the execution timeout is expired. It it is the case, we |
| 1106 | * break the Lua execution. |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 1107 | */ |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 1108 | tv_update_date(0, 1); |
| 1109 | lua->run_time += now_ms - lua->start_time; |
| 1110 | if (lua->max_time && lua->run_time > lua->max_time) { |
Thierry FOURNIER | dc9ca96 | 2015-03-05 11:16:52 +0100 | [diff] [blame] | 1111 | lua_settop(lua->T, 0); /* Empty the stack. */ |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 1112 | ret = HLUA_E_ETMOUT; |
Thierry FOURNIER | dc9ca96 | 2015-03-05 11:16:52 +0100 | [diff] [blame] | 1113 | break; |
| 1114 | } |
| 1115 | /* Process the forced yield. if the general yield is not allowed or |
| 1116 | * if no task were associated this the current Lua execution |
| 1117 | * coroutine, we resume the execution. Else we want to return in the |
| 1118 | * scheduler and we want to be waked up again, to continue the |
| 1119 | * current Lua execution. So we schedule our own task. |
| 1120 | */ |
| 1121 | if (HLUA_IS_CTRLYIELDING(lua)) { |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 1122 | if (!yield_allowed || !lua->task) |
| 1123 | goto resume_execution; |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 1124 | task_wakeup(lua->task, TASK_WOKEN_MSG); |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 1125 | } |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1126 | if (!yield_allowed) { |
| 1127 | lua_settop(lua->T, 0); /* Empty the stack. */ |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 1128 | ret = HLUA_E_YIELD; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1129 | break; |
| 1130 | } |
| 1131 | ret = HLUA_E_AGAIN; |
| 1132 | break; |
| 1133 | |
| 1134 | case LUA_ERRRUN: |
Thierry FOURNIER | 0a99b89 | 2015-08-26 00:14:17 +0200 | [diff] [blame] | 1135 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 1136 | /* Special exit case. The traditional exit is returned as an error |
Thierry FOURNIER | 0a99b89 | 2015-08-26 00:14:17 +0200 | [diff] [blame] | 1137 | * because the errors ares the only one mean to return immediately |
| 1138 | * from and lua execution. |
| 1139 | */ |
| 1140 | if (lua->flags & HLUA_EXIT) { |
| 1141 | ret = HLUA_E_OK; |
Thierry FOURNIER | e1587b3 | 2015-08-28 09:54:13 +0200 | [diff] [blame] | 1142 | hlua_ctx_renew(lua, 0); |
Thierry FOURNIER | 0a99b89 | 2015-08-26 00:14:17 +0200 | [diff] [blame] | 1143 | break; |
| 1144 | } |
| 1145 | |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1146 | lua->wake_time = TICK_ETERNITY; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1147 | if (!lua_checkstack(lua->T, 1)) { |
| 1148 | ret = HLUA_E_ERR; |
| 1149 | break; |
| 1150 | } |
| 1151 | msg = lua_tostring(lua->T, -1); |
| 1152 | lua_settop(lua->T, 0); /* Empty the stack. */ |
| 1153 | lua_pop(lua->T, 1); |
Thierry FOURNIER | fc044c9 | 2018-06-07 14:40:48 +0200 | [diff] [blame] | 1154 | trace = hlua_traceback(lua->T); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1155 | if (msg) |
Thierry FOURNIER | fc044c9 | 2018-06-07 14:40:48 +0200 | [diff] [blame] | 1156 | lua_pushfstring(lua->T, "runtime error: %s from %s", msg, trace); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1157 | else |
Thierry FOURNIER | fc044c9 | 2018-06-07 14:40:48 +0200 | [diff] [blame] | 1158 | lua_pushfstring(lua->T, "unknown runtime error from %s", trace); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1159 | ret = HLUA_E_ERRMSG; |
| 1160 | break; |
| 1161 | |
| 1162 | case LUA_ERRMEM: |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1163 | lua->wake_time = TICK_ETERNITY; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1164 | lua_settop(lua->T, 0); /* Empty the stack. */ |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 1165 | ret = HLUA_E_NOMEM; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1166 | break; |
| 1167 | |
| 1168 | case LUA_ERRERR: |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1169 | lua->wake_time = TICK_ETERNITY; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1170 | if (!lua_checkstack(lua->T, 1)) { |
| 1171 | ret = HLUA_E_ERR; |
| 1172 | break; |
| 1173 | } |
| 1174 | msg = lua_tostring(lua->T, -1); |
| 1175 | lua_settop(lua->T, 0); /* Empty the stack. */ |
| 1176 | lua_pop(lua->T, 1); |
| 1177 | if (msg) |
| 1178 | lua_pushfstring(lua->T, "message handler error: %s", msg); |
| 1179 | else |
| 1180 | lua_pushfstring(lua->T, "message handler error"); |
| 1181 | ret = HLUA_E_ERRMSG; |
| 1182 | break; |
| 1183 | |
| 1184 | default: |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1185 | lua->wake_time = TICK_ETERNITY; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1186 | lua_settop(lua->T, 0); /* Empty the stack. */ |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 1187 | ret = HLUA_E_ERR; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1188 | break; |
| 1189 | } |
| 1190 | |
Thierry FOURNIER | 6ab4d8e | 2015-09-27 22:17:19 +0200 | [diff] [blame] | 1191 | /* This GC permits to destroy some object when a Lua timeout strikes. */ |
Thierry FOURNIER | 7c39ab4 | 2015-09-27 22:53:33 +0200 | [diff] [blame] | 1192 | if (lua->flags & HLUA_MUST_GC && |
| 1193 | ret != HLUA_E_AGAIN) |
Thierry FOURNIER | 6ab4d8e | 2015-09-27 22:17:19 +0200 | [diff] [blame] | 1194 | lua_gc(lua->T, LUA_GCCOLLECT, 0); |
| 1195 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1196 | switch (ret) { |
| 1197 | case HLUA_E_AGAIN: |
| 1198 | break; |
| 1199 | |
| 1200 | case HLUA_E_ERRMSG: |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1201 | notification_purge(&lua->com); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1202 | hlua_ctx_renew(lua, 1); |
Thierry FOURNIER | a097fdf | 2015-03-03 15:17:35 +0100 | [diff] [blame] | 1203 | HLUA_CLR_RUN(lua); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1204 | break; |
| 1205 | |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 1206 | case HLUA_E_ETMOUT: |
| 1207 | case HLUA_E_NOMEM: |
| 1208 | case HLUA_E_YIELD: |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1209 | case HLUA_E_ERR: |
Thierry FOURNIER | a097fdf | 2015-03-03 15:17:35 +0100 | [diff] [blame] | 1210 | HLUA_CLR_RUN(lua); |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1211 | notification_purge(&lua->com); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1212 | hlua_ctx_renew(lua, 0); |
| 1213 | break; |
| 1214 | |
| 1215 | case HLUA_E_OK: |
Thierry FOURNIER | a097fdf | 2015-03-03 15:17:35 +0100 | [diff] [blame] | 1216 | HLUA_CLR_RUN(lua); |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1217 | notification_purge(&lua->com); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1218 | break; |
| 1219 | } |
| 1220 | |
Thierry FOURNIER | 61ba0e2 | 2017-07-12 11:41:21 +0200 | [diff] [blame] | 1221 | /* This is the main exit point, remove the Lua lock. */ |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1222 | HA_SPIN_UNLOCK(LUA_LOCK, &hlua_global_lock); |
Thierry FOURNIER | 61ba0e2 | 2017-07-12 11:41:21 +0200 | [diff] [blame] | 1223 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1224 | return ret; |
| 1225 | } |
| 1226 | |
Thierry FOURNIER | 0a99b89 | 2015-08-26 00:14:17 +0200 | [diff] [blame] | 1227 | /* This function exit the current code. */ |
| 1228 | __LJMP static int hlua_done(lua_State *L) |
| 1229 | { |
| 1230 | struct hlua *hlua = hlua_gethlua(L); |
| 1231 | |
| 1232 | hlua->flags |= HLUA_EXIT; |
| 1233 | WILL_LJMP(lua_error(L)); |
| 1234 | |
| 1235 | return 0; |
| 1236 | } |
| 1237 | |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1238 | /* This function is an LUA binding. It provides a function |
| 1239 | * for deleting ACL from a referenced ACL file. |
| 1240 | */ |
| 1241 | __LJMP static int hlua_del_acl(lua_State *L) |
| 1242 | { |
| 1243 | const char *name; |
| 1244 | const char *key; |
| 1245 | struct pat_ref *ref; |
| 1246 | |
| 1247 | MAY_LJMP(check_args(L, 2, "del_acl")); |
| 1248 | |
| 1249 | name = MAY_LJMP(luaL_checkstring(L, 1)); |
| 1250 | key = MAY_LJMP(luaL_checkstring(L, 2)); |
| 1251 | |
| 1252 | ref = pat_ref_lookup(name); |
| 1253 | if (!ref) |
Vincent Bernat | a72db18 | 2015-10-06 16:05:59 +0200 | [diff] [blame] | 1254 | WILL_LJMP(luaL_error(L, "'del_acl': unknown acl file '%s'", name)); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1255 | |
| 1256 | pat_ref_delete(ref, key); |
| 1257 | return 0; |
| 1258 | } |
| 1259 | |
| 1260 | /* This function is an LUA binding. It provides a function |
| 1261 | * for deleting map entry from a referenced map file. |
| 1262 | */ |
| 1263 | static int hlua_del_map(lua_State *L) |
| 1264 | { |
| 1265 | const char *name; |
| 1266 | const char *key; |
| 1267 | struct pat_ref *ref; |
| 1268 | |
| 1269 | MAY_LJMP(check_args(L, 2, "del_map")); |
| 1270 | |
| 1271 | name = MAY_LJMP(luaL_checkstring(L, 1)); |
| 1272 | key = MAY_LJMP(luaL_checkstring(L, 2)); |
| 1273 | |
| 1274 | ref = pat_ref_lookup(name); |
| 1275 | if (!ref) |
Vincent Bernat | a72db18 | 2015-10-06 16:05:59 +0200 | [diff] [blame] | 1276 | WILL_LJMP(luaL_error(L, "'del_map': unknown acl file '%s'", name)); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1277 | |
| 1278 | pat_ref_delete(ref, key); |
| 1279 | return 0; |
| 1280 | } |
| 1281 | |
| 1282 | /* This function is an LUA binding. It provides a function |
| 1283 | * for adding ACL pattern from a referenced ACL file. |
| 1284 | */ |
| 1285 | static int hlua_add_acl(lua_State *L) |
| 1286 | { |
| 1287 | const char *name; |
| 1288 | const char *key; |
| 1289 | struct pat_ref *ref; |
| 1290 | |
| 1291 | MAY_LJMP(check_args(L, 2, "add_acl")); |
| 1292 | |
| 1293 | name = MAY_LJMP(luaL_checkstring(L, 1)); |
| 1294 | key = MAY_LJMP(luaL_checkstring(L, 2)); |
| 1295 | |
| 1296 | ref = pat_ref_lookup(name); |
| 1297 | if (!ref) |
Vincent Bernat | a72db18 | 2015-10-06 16:05:59 +0200 | [diff] [blame] | 1298 | WILL_LJMP(luaL_error(L, "'add_acl': unknown acl file '%s'", name)); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1299 | |
| 1300 | if (pat_ref_find_elt(ref, key) == NULL) |
| 1301 | pat_ref_add(ref, key, NULL, NULL); |
| 1302 | return 0; |
| 1303 | } |
| 1304 | |
| 1305 | /* This function is an LUA binding. It provides a function |
| 1306 | * for setting map pattern and sample from a referenced map |
| 1307 | * file. |
| 1308 | */ |
| 1309 | static int hlua_set_map(lua_State *L) |
| 1310 | { |
| 1311 | const char *name; |
| 1312 | const char *key; |
| 1313 | const char *value; |
| 1314 | struct pat_ref *ref; |
| 1315 | |
| 1316 | MAY_LJMP(check_args(L, 3, "set_map")); |
| 1317 | |
| 1318 | name = MAY_LJMP(luaL_checkstring(L, 1)); |
| 1319 | key = MAY_LJMP(luaL_checkstring(L, 2)); |
| 1320 | value = MAY_LJMP(luaL_checkstring(L, 3)); |
| 1321 | |
| 1322 | ref = pat_ref_lookup(name); |
| 1323 | if (!ref) |
Vincent Bernat | a72db18 | 2015-10-06 16:05:59 +0200 | [diff] [blame] | 1324 | WILL_LJMP(luaL_error(L, "'set_map': unknown map file '%s'", name)); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1325 | |
| 1326 | if (pat_ref_find_elt(ref, key) != NULL) |
| 1327 | pat_ref_set(ref, key, value, NULL); |
| 1328 | else |
| 1329 | pat_ref_add(ref, key, value, NULL); |
| 1330 | return 0; |
| 1331 | } |
| 1332 | |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 1333 | /* A class is a lot of memory that contain data. This data can be a table, |
| 1334 | * an integer or user data. This data is associated with a metatable. This |
| 1335 | * metatable have an original version registred in the global context with |
| 1336 | * the name of the object (_G[<name>] = <metable> ). |
| 1337 | * |
| 1338 | * A metable is a table that modify the standard behavior of a standard |
| 1339 | * access to the associated data. The entries of this new metatable are |
| 1340 | * defined as is: |
| 1341 | * |
| 1342 | * http://lua-users.org/wiki/MetatableEvents |
| 1343 | * |
| 1344 | * __index |
| 1345 | * |
| 1346 | * we access an absent field in a table, the result is nil. This is |
| 1347 | * true, but it is not the whole truth. Actually, such access triggers |
| 1348 | * the interpreter to look for an __index metamethod: If there is no |
| 1349 | * such method, as usually happens, then the access results in nil; |
| 1350 | * otherwise, the metamethod will provide the result. |
| 1351 | * |
| 1352 | * Control 'prototype' inheritance. When accessing "myTable[key]" and |
| 1353 | * the key does not appear in the table, but the metatable has an __index |
| 1354 | * property: |
| 1355 | * |
| 1356 | * - if the value is a function, the function is called, passing in the |
| 1357 | * table and the key; the return value of that function is returned as |
| 1358 | * the result. |
| 1359 | * |
| 1360 | * - if the value is another table, the value of the key in that table is |
| 1361 | * asked for and returned (and if it doesn't exist in that table, but that |
| 1362 | * table's metatable has an __index property, then it continues on up) |
| 1363 | * |
| 1364 | * - Use "rawget(myTable,key)" to skip this metamethod. |
| 1365 | * |
| 1366 | * http://www.lua.org/pil/13.4.1.html |
| 1367 | * |
| 1368 | * __newindex |
| 1369 | * |
| 1370 | * Like __index, but control property assignment. |
| 1371 | * |
| 1372 | * __mode - Control weak references. A string value with one or both |
| 1373 | * of the characters 'k' and 'v' which specifies that the the |
| 1374 | * keys and/or values in the table are weak references. |
| 1375 | * |
| 1376 | * __call - Treat a table like a function. When a table is followed by |
| 1377 | * parenthesis such as "myTable( 'foo' )" and the metatable has |
| 1378 | * a __call key pointing to a function, that function is invoked |
| 1379 | * (passing any specified arguments) and the return value is |
| 1380 | * returned. |
| 1381 | * |
| 1382 | * __metatable - Hide the metatable. When "getmetatable( myTable )" is |
| 1383 | * called, if the metatable for myTable has a __metatable |
| 1384 | * key, the value of that key is returned instead of the |
| 1385 | * actual metatable. |
| 1386 | * |
| 1387 | * __tostring - Control string representation. When the builtin |
| 1388 | * "tostring( myTable )" function is called, if the metatable |
| 1389 | * for myTable has a __tostring property set to a function, |
| 1390 | * that function is invoked (passing myTable to it) and the |
| 1391 | * return value is used as the string representation. |
| 1392 | * |
| 1393 | * __len - Control table length. When the table length is requested using |
| 1394 | * the length operator ( '#' ), if the metatable for myTable has |
| 1395 | * a __len key pointing to a function, that function is invoked |
| 1396 | * (passing myTable to it) and the return value used as the value |
| 1397 | * of "#myTable". |
| 1398 | * |
| 1399 | * __gc - Userdata finalizer code. When userdata is set to be garbage |
| 1400 | * collected, if the metatable has a __gc field pointing to a |
| 1401 | * function, that function is first invoked, passing the userdata |
| 1402 | * to it. The __gc metamethod is not called for tables. |
| 1403 | * (See http://lua-users.org/lists/lua-l/2006-11/msg00508.html) |
| 1404 | * |
| 1405 | * Special metamethods for redefining standard operators: |
| 1406 | * http://www.lua.org/pil/13.1.html |
| 1407 | * |
| 1408 | * __add "+" |
| 1409 | * __sub "-" |
| 1410 | * __mul "*" |
| 1411 | * __div "/" |
| 1412 | * __unm "!" |
| 1413 | * __pow "^" |
| 1414 | * __concat ".." |
| 1415 | * |
| 1416 | * Special methods for redfining standar relations |
| 1417 | * http://www.lua.org/pil/13.2.html |
| 1418 | * |
| 1419 | * __eq "==" |
| 1420 | * __lt "<" |
| 1421 | * __le "<=" |
| 1422 | */ |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1423 | |
| 1424 | /* |
| 1425 | * |
| 1426 | * |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1427 | * Class Map |
| 1428 | * |
| 1429 | * |
| 1430 | */ |
| 1431 | |
| 1432 | /* Returns a struct hlua_map if the stack entry "ud" is |
| 1433 | * a class session, otherwise it throws an error. |
| 1434 | */ |
| 1435 | __LJMP static struct map_descriptor *hlua_checkmap(lua_State *L, int ud) |
| 1436 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 1437 | return MAY_LJMP(hlua_checkudata(L, ud, class_map_ref)); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1438 | } |
| 1439 | |
| 1440 | /* This function is the map constructor. It don't need |
| 1441 | * the class Map object. It creates and return a new Map |
| 1442 | * object. It must be called only during "body" or "init" |
| 1443 | * context because it process some filesystem accesses. |
| 1444 | */ |
| 1445 | __LJMP static int hlua_map_new(struct lua_State *L) |
| 1446 | { |
| 1447 | const char *fn; |
| 1448 | int match = PAT_MATCH_STR; |
| 1449 | struct sample_conv conv; |
| 1450 | const char *file = ""; |
| 1451 | int line = 0; |
| 1452 | lua_Debug ar; |
| 1453 | char *err = NULL; |
| 1454 | struct arg args[2]; |
| 1455 | |
| 1456 | if (lua_gettop(L) < 1 || lua_gettop(L) > 2) |
| 1457 | WILL_LJMP(luaL_error(L, "'new' needs at least 1 argument.")); |
| 1458 | |
| 1459 | fn = MAY_LJMP(luaL_checkstring(L, 1)); |
| 1460 | |
| 1461 | if (lua_gettop(L) >= 2) { |
| 1462 | match = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 1463 | if (match < 0 || match >= PAT_MATCH_NUM) |
| 1464 | WILL_LJMP(luaL_error(L, "'new' needs a valid match method.")); |
| 1465 | } |
| 1466 | |
| 1467 | /* Get Lua filename and line number. */ |
| 1468 | if (lua_getstack(L, 1, &ar)) { /* check function at level */ |
| 1469 | lua_getinfo(L, "Sl", &ar); /* get info about it */ |
| 1470 | if (ar.currentline > 0) { /* is there info? */ |
| 1471 | file = ar.short_src; |
| 1472 | line = ar.currentline; |
| 1473 | } |
| 1474 | } |
| 1475 | |
| 1476 | /* fill fake sample_conv struct. */ |
| 1477 | conv.kw = ""; /* unused. */ |
| 1478 | conv.process = NULL; /* unused. */ |
| 1479 | conv.arg_mask = 0; /* unused. */ |
| 1480 | conv.val_args = NULL; /* unused. */ |
| 1481 | conv.out_type = SMP_T_STR; |
| 1482 | conv.private = (void *)(long)match; |
| 1483 | switch (match) { |
| 1484 | case PAT_MATCH_STR: conv.in_type = SMP_T_STR; break; |
| 1485 | case PAT_MATCH_BEG: conv.in_type = SMP_T_STR; break; |
| 1486 | case PAT_MATCH_SUB: conv.in_type = SMP_T_STR; break; |
| 1487 | case PAT_MATCH_DIR: conv.in_type = SMP_T_STR; break; |
| 1488 | case PAT_MATCH_DOM: conv.in_type = SMP_T_STR; break; |
| 1489 | case PAT_MATCH_END: conv.in_type = SMP_T_STR; break; |
| 1490 | case PAT_MATCH_REG: conv.in_type = SMP_T_STR; break; |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 1491 | case PAT_MATCH_INT: conv.in_type = SMP_T_SINT; break; |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1492 | case PAT_MATCH_IP: conv.in_type = SMP_T_ADDR; break; |
| 1493 | default: |
| 1494 | WILL_LJMP(luaL_error(L, "'new' doesn't support this match mode.")); |
| 1495 | } |
| 1496 | |
| 1497 | /* fill fake args. */ |
| 1498 | args[0].type = ARGT_STR; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1499 | args[0].data.str.area = (char *)fn; |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1500 | args[1].type = ARGT_STOP; |
| 1501 | |
| 1502 | /* load the map. */ |
| 1503 | if (!sample_load_map(args, &conv, file, line, &err)) { |
| 1504 | /* error case: we cant use luaL_error because we must |
| 1505 | * free the err variable. |
| 1506 | */ |
| 1507 | luaL_where(L, 1); |
| 1508 | lua_pushfstring(L, "'new': %s.", err); |
| 1509 | lua_concat(L, 2); |
| 1510 | free(err); |
| 1511 | WILL_LJMP(lua_error(L)); |
| 1512 | } |
| 1513 | |
| 1514 | /* create the lua object. */ |
| 1515 | lua_newtable(L); |
| 1516 | lua_pushlightuserdata(L, args[0].data.map); |
| 1517 | lua_rawseti(L, -2, 0); |
| 1518 | |
| 1519 | /* Pop a class Map metatable and affect it to the userdata. */ |
| 1520 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_map_ref); |
| 1521 | lua_setmetatable(L, -2); |
| 1522 | |
| 1523 | |
| 1524 | return 1; |
| 1525 | } |
| 1526 | |
| 1527 | __LJMP static inline int _hlua_map_lookup(struct lua_State *L, int str) |
| 1528 | { |
| 1529 | struct map_descriptor *desc; |
| 1530 | struct pattern *pat; |
| 1531 | struct sample smp; |
| 1532 | |
| 1533 | MAY_LJMP(check_args(L, 2, "lookup")); |
| 1534 | desc = MAY_LJMP(hlua_checkmap(L, 1)); |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 1535 | if (desc->pat.expect_type == SMP_T_SINT) { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1536 | smp.data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1537 | smp.data.u.sint = MAY_LJMP(luaL_checkinteger(L, 2)); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1538 | } |
| 1539 | else { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1540 | smp.data.type = SMP_T_STR; |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1541 | smp.flags = SMP_F_CONST; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1542 | smp.data.u.str.area = (char *)MAY_LJMP(luaL_checklstring(L, 2, (size_t *)&smp.data.u.str.data)); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1543 | } |
| 1544 | |
| 1545 | pat = pattern_exec_match(&desc->pat, &smp, 1); |
Thierry FOURNIER | 503bb09 | 2015-08-19 08:35:43 +0200 | [diff] [blame] | 1546 | if (!pat || !pat->data) { |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1547 | if (str) |
| 1548 | lua_pushstring(L, ""); |
| 1549 | else |
| 1550 | lua_pushnil(L); |
| 1551 | return 1; |
| 1552 | } |
| 1553 | |
| 1554 | /* The Lua pattern must return a string, so we can't check the returned type */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1555 | lua_pushlstring(L, pat->data->u.str.area, pat->data->u.str.data); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1556 | return 1; |
| 1557 | } |
| 1558 | |
| 1559 | __LJMP static int hlua_map_lookup(struct lua_State *L) |
| 1560 | { |
| 1561 | return _hlua_map_lookup(L, 0); |
| 1562 | } |
| 1563 | |
| 1564 | __LJMP static int hlua_map_slookup(struct lua_State *L) |
| 1565 | { |
| 1566 | return _hlua_map_lookup(L, 1); |
| 1567 | } |
| 1568 | |
| 1569 | /* |
| 1570 | * |
| 1571 | * |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1572 | * Class Socket |
| 1573 | * |
| 1574 | * |
| 1575 | */ |
| 1576 | |
| 1577 | __LJMP static struct hlua_socket *hlua_checksocket(lua_State *L, int ud) |
| 1578 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 1579 | return MAY_LJMP(hlua_checkudata(L, ud, class_socket_ref)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1580 | } |
| 1581 | |
| 1582 | /* This function is the handler called for each I/O on the established |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 1583 | * connection. It is used for notify space available to send or data |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1584 | * received. |
| 1585 | */ |
Willy Tarreau | 00a37f0 | 2015-04-13 12:05:19 +0200 | [diff] [blame] | 1586 | static void hlua_socket_handler(struct appctx *appctx) |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1587 | { |
Willy Tarreau | 00a37f0 | 2015-04-13 12:05:19 +0200 | [diff] [blame] | 1588 | struct stream_interface *si = appctx->owner; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1589 | |
Thierry FOURNIER | b13b20a | 2017-07-16 20:48:54 +0200 | [diff] [blame] | 1590 | if (appctx->ctx.hlua_cosocket.die) { |
| 1591 | si_shutw(si); |
| 1592 | si_shutr(si); |
| 1593 | si_ic(si)->flags |= CF_READ_NULL; |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1594 | notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read); |
| 1595 | notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write); |
Thierry FOURNIER | b13b20a | 2017-07-16 20:48:54 +0200 | [diff] [blame] | 1596 | stream_shutdown(si_strm(si), SF_ERR_KILLED); |
| 1597 | } |
| 1598 | |
Thierry FOURNIER | 6d695e6 | 2015-09-27 19:29:38 +0200 | [diff] [blame] | 1599 | /* If we cant write, wakeup the pending write signals. */ |
| 1600 | if (channel_output_closed(si_ic(si))) |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1601 | notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write); |
Thierry FOURNIER | 6d695e6 | 2015-09-27 19:29:38 +0200 | [diff] [blame] | 1602 | |
| 1603 | /* If we cant read, wakeup the pending read signals. */ |
| 1604 | if (channel_input_closed(si_oc(si))) |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1605 | notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read); |
Thierry FOURNIER | 6d695e6 | 2015-09-27 19:29:38 +0200 | [diff] [blame] | 1606 | |
Willy Tarreau | 5a0b25d | 2019-07-18 18:01:14 +0200 | [diff] [blame] | 1607 | /* if the connection is not established, inform the stream that we want |
Thierry FOURNIER | 316e319 | 2015-09-04 18:25:53 +0200 | [diff] [blame] | 1608 | * to be notified whenever the connection completes. |
| 1609 | */ |
Willy Tarreau | 5a0b25d | 2019-07-18 18:01:14 +0200 | [diff] [blame] | 1610 | if (si_opposite(si)->state < SI_ST_EST) { |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 1611 | si_cant_get(si); |
Willy Tarreau | 12c2423 | 2018-12-06 15:29:50 +0100 | [diff] [blame] | 1612 | si_rx_conn_blk(si); |
Willy Tarreau | 3367d41 | 2018-11-15 10:57:41 +0100 | [diff] [blame] | 1613 | si_rx_endp_more(si); |
Willy Tarreau | d4da196 | 2015-04-20 01:31:23 +0200 | [diff] [blame] | 1614 | return; |
Thierry FOURNIER | 316e319 | 2015-09-04 18:25:53 +0200 | [diff] [blame] | 1615 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1616 | |
| 1617 | /* This function is called after the connect. */ |
Thierry FOURNIER | 18d0990 | 2016-12-16 09:25:38 +0100 | [diff] [blame] | 1618 | appctx->ctx.hlua_cosocket.connected = 1; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1619 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 1620 | /* Wake the tasks which wants to write if the buffer have available space. */ |
Thierry FOURNIER | eba6f64 | 2015-09-26 22:01:07 +0200 | [diff] [blame] | 1621 | if (channel_may_recv(si_ic(si))) |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1622 | notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1623 | |
| 1624 | /* Wake the tasks which wants to read if the buffer contains data. */ |
Thierry FOURNIER | eba6f64 | 2015-09-26 22:01:07 +0200 | [diff] [blame] | 1625 | if (!channel_is_empty(si_oc(si))) |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1626 | notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read); |
Thierry FOURNIER | 101b976 | 2018-05-27 01:27:40 +0200 | [diff] [blame] | 1627 | |
| 1628 | /* Some data were injected in the buffer, notify the stream |
| 1629 | * interface. |
| 1630 | */ |
| 1631 | if (!channel_is_empty(si_ic(si))) |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 1632 | si_update(si); |
Thierry FOURNIER | 101b976 | 2018-05-27 01:27:40 +0200 | [diff] [blame] | 1633 | |
| 1634 | /* If write notifications are registered, we considers we want |
Willy Tarreau | 3367d41 | 2018-11-15 10:57:41 +0100 | [diff] [blame] | 1635 | * to write, so we clear the blocking flag. |
Thierry FOURNIER | 101b976 | 2018-05-27 01:27:40 +0200 | [diff] [blame] | 1636 | */ |
| 1637 | if (notification_registered(&appctx->ctx.hlua_cosocket.wake_on_write)) |
Willy Tarreau | 3367d41 | 2018-11-15 10:57:41 +0100 | [diff] [blame] | 1638 | si_rx_endp_more(si); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1639 | } |
| 1640 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1641 | /* This function is called when the "struct stream" is destroyed. |
| 1642 | * Remove the link from the object to this stream. |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1643 | * Wake all the pending signals. |
| 1644 | */ |
Willy Tarreau | 00a37f0 | 2015-04-13 12:05:19 +0200 | [diff] [blame] | 1645 | static void hlua_socket_release(struct appctx *appctx) |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1646 | { |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 1647 | struct xref *peer; |
| 1648 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1649 | /* Remove my link in the original object. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 1650 | peer = xref_get_peer_and_lock(&appctx->ctx.hlua_cosocket.xref); |
| 1651 | if (peer) |
| 1652 | xref_disconnect(&appctx->ctx.hlua_cosocket.xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1653 | |
| 1654 | /* Wake all the task waiting for me. */ |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1655 | notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read); |
| 1656 | notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1657 | } |
| 1658 | |
| 1659 | /* If the garbage collectio of the object is launch, nobody |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1660 | * uses this object. If the stream does not exists, just quit. |
| 1661 | * Send the shutdown signal to the stream. In some cases, |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1662 | * pending signal can rest in the read and write lists. destroy |
| 1663 | * it. |
| 1664 | */ |
| 1665 | __LJMP static int hlua_socket_gc(lua_State *L) |
| 1666 | { |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 1667 | struct hlua_socket *socket; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1668 | struct appctx *appctx; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1669 | struct xref *peer; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1670 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 1671 | MAY_LJMP(check_args(L, 1, "__gc")); |
| 1672 | |
| 1673 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 1674 | peer = xref_get_peer_and_lock(&socket->xref); |
| 1675 | if (!peer) |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1676 | return 0; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1677 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1678 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1679 | /* Set the flag which destroy the session. */ |
Thierry FOURNIER | b13b20a | 2017-07-16 20:48:54 +0200 | [diff] [blame] | 1680 | appctx->ctx.hlua_cosocket.die = 1; |
| 1681 | appctx_wakeup(appctx); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1682 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1683 | /* Remove all reference between the Lua stack and the coroutine stream. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 1684 | xref_disconnect(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1685 | return 0; |
| 1686 | } |
| 1687 | |
| 1688 | /* The close function send shutdown signal and break the |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1689 | * links between the stream and the object. |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1690 | */ |
sada | 05ed330 | 2018-05-11 11:48:18 -0700 | [diff] [blame] | 1691 | __LJMP static int hlua_socket_close_helper(lua_State *L) |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1692 | { |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 1693 | struct hlua_socket *socket; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1694 | struct appctx *appctx; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1695 | struct xref *peer; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1696 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 1697 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 1698 | |
| 1699 | /* Check if we run on the same thread than the xreator thread. |
| 1700 | * We cannot access to the socket if the thread is different. |
| 1701 | */ |
| 1702 | if (socket->tid != tid) |
| 1703 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 1704 | |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 1705 | peer = xref_get_peer_and_lock(&socket->xref); |
| 1706 | if (!peer) |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1707 | return 0; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1708 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1709 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1710 | /* Set the flag which destroy the session. */ |
Thierry FOURNIER | b13b20a | 2017-07-16 20:48:54 +0200 | [diff] [blame] | 1711 | appctx->ctx.hlua_cosocket.die = 1; |
| 1712 | appctx_wakeup(appctx); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1713 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1714 | /* Remove all reference between the Lua stack and the coroutine stream. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 1715 | xref_disconnect(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1716 | return 0; |
| 1717 | } |
| 1718 | |
sada | 05ed330 | 2018-05-11 11:48:18 -0700 | [diff] [blame] | 1719 | /* The close function calls close_helper. |
| 1720 | */ |
| 1721 | __LJMP static int hlua_socket_close(lua_State *L) |
| 1722 | { |
| 1723 | MAY_LJMP(check_args(L, 1, "close")); |
| 1724 | return hlua_socket_close_helper(L); |
| 1725 | } |
| 1726 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1727 | /* This Lua function assumes that the stack contain three parameters. |
| 1728 | * 1 - USERDATA containing a struct socket |
| 1729 | * 2 - INTEGER with values of the macro defined below |
| 1730 | * If the integer is -1, we must read at most one line. |
| 1731 | * If the integer is -2, we ust read all the data until the |
| 1732 | * end of the stream. |
| 1733 | * If the integer is positive value, we must read a number of |
| 1734 | * bytes corresponding to this value. |
| 1735 | */ |
| 1736 | #define HLSR_READ_LINE (-1) |
| 1737 | #define HLSR_READ_ALL (-2) |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 1738 | __LJMP static int hlua_socket_receive_yield(struct lua_State *L, int status, lua_KContext ctx) |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1739 | { |
| 1740 | struct hlua_socket *socket = MAY_LJMP(hlua_checksocket(L, 1)); |
| 1741 | int wanted = lua_tointeger(L, 2); |
| 1742 | struct hlua *hlua = hlua_gethlua(L); |
| 1743 | struct appctx *appctx; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 1744 | size_t len; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1745 | int nblk; |
Willy Tarreau | 206ba83 | 2018-06-14 15:27:31 +0200 | [diff] [blame] | 1746 | const char *blk1; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 1747 | size_t len1; |
Willy Tarreau | 206ba83 | 2018-06-14 15:27:31 +0200 | [diff] [blame] | 1748 | const char *blk2; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 1749 | size_t len2; |
Thierry FOURNIER | 0054392 | 2015-03-09 18:35:06 +0100 | [diff] [blame] | 1750 | int skip_at_end = 0; |
Willy Tarreau | 8138967 | 2015-03-10 12:03:52 +0100 | [diff] [blame] | 1751 | struct channel *oc; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1752 | struct stream_interface *si; |
| 1753 | struct stream *s; |
| 1754 | struct xref *peer; |
Thierry FOURNIER | 8c126c7 | 2018-05-25 16:27:44 +0200 | [diff] [blame] | 1755 | int missing_bytes; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1756 | |
| 1757 | /* Check if this lua stack is schedulable. */ |
| 1758 | if (!hlua || !hlua->task) |
| 1759 | WILL_LJMP(luaL_error(L, "The 'receive' function is only allowed in " |
| 1760 | "'frontend', 'backend' or 'task'")); |
| 1761 | |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 1762 | /* Check if we run on the same thread than the xreator thread. |
| 1763 | * We cannot access to the socket if the thread is different. |
| 1764 | */ |
| 1765 | if (socket->tid != tid) |
| 1766 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 1767 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1768 | /* check for connection break. If some data where read, return it. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 1769 | peer = xref_get_peer_and_lock(&socket->xref); |
| 1770 | if (!peer) |
| 1771 | goto no_peer; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1772 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
| 1773 | si = appctx->owner; |
| 1774 | s = si_strm(si); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1775 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1776 | oc = &s->res; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1777 | if (wanted == HLSR_READ_LINE) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1778 | /* Read line. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 1779 | nblk = co_getline_nc(oc, &blk1, &len1, &blk2, &len2); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1780 | if (nblk < 0) /* Connection close. */ |
| 1781 | goto connection_closed; |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 1782 | if (nblk == 0) /* No data available. */ |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1783 | goto connection_empty; |
Thierry FOURNIER | 0054392 | 2015-03-09 18:35:06 +0100 | [diff] [blame] | 1784 | |
| 1785 | /* remove final \r\n. */ |
| 1786 | if (nblk == 1) { |
| 1787 | if (blk1[len1-1] == '\n') { |
| 1788 | len1--; |
| 1789 | skip_at_end++; |
| 1790 | if (blk1[len1-1] == '\r') { |
| 1791 | len1--; |
| 1792 | skip_at_end++; |
| 1793 | } |
| 1794 | } |
| 1795 | } |
| 1796 | else { |
| 1797 | if (blk2[len2-1] == '\n') { |
| 1798 | len2--; |
| 1799 | skip_at_end++; |
| 1800 | if (blk2[len2-1] == '\r') { |
| 1801 | len2--; |
| 1802 | skip_at_end++; |
| 1803 | } |
| 1804 | } |
| 1805 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1806 | } |
| 1807 | |
| 1808 | else if (wanted == HLSR_READ_ALL) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1809 | /* Read all the available data. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 1810 | nblk = co_getblk_nc(oc, &blk1, &len1, &blk2, &len2); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1811 | if (nblk < 0) /* Connection close. */ |
| 1812 | goto connection_closed; |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 1813 | if (nblk == 0) /* No data available. */ |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1814 | goto connection_empty; |
| 1815 | } |
| 1816 | |
| 1817 | else { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1818 | /* Read a block of data. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 1819 | nblk = co_getblk_nc(oc, &blk1, &len1, &blk2, &len2); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1820 | if (nblk < 0) /* Connection close. */ |
| 1821 | goto connection_closed; |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 1822 | if (nblk == 0) /* No data available. */ |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1823 | goto connection_empty; |
| 1824 | |
Thierry FOURNIER | 8c126c7 | 2018-05-25 16:27:44 +0200 | [diff] [blame] | 1825 | missing_bytes = wanted - socket->b.n; |
| 1826 | if (len1 > missing_bytes) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1827 | nblk = 1; |
Thierry FOURNIER | 8c126c7 | 2018-05-25 16:27:44 +0200 | [diff] [blame] | 1828 | len1 = missing_bytes; |
| 1829 | } if (nblk == 2 && len1 + len2 > missing_bytes) |
| 1830 | len2 = missing_bytes - len1; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1831 | } |
| 1832 | |
| 1833 | len = len1; |
| 1834 | |
| 1835 | luaL_addlstring(&socket->b, blk1, len1); |
| 1836 | if (nblk == 2) { |
| 1837 | len += len2; |
| 1838 | luaL_addlstring(&socket->b, blk2, len2); |
| 1839 | } |
| 1840 | |
| 1841 | /* Consume data. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 1842 | co_skip(oc, len + skip_at_end); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1843 | |
| 1844 | /* Don't wait anything. */ |
Thierry FOURNIER | 7e4ee47 | 2018-05-25 15:03:50 +0200 | [diff] [blame] | 1845 | appctx_wakeup(appctx); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1846 | |
| 1847 | /* If the pattern reclaim to read all the data |
| 1848 | * in the connection, got out. |
| 1849 | */ |
| 1850 | if (wanted == HLSR_READ_ALL) |
| 1851 | goto connection_empty; |
Thierry FOURNIER | 8c126c7 | 2018-05-25 16:27:44 +0200 | [diff] [blame] | 1852 | else if (wanted >= 0 && socket->b.n < wanted) |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1853 | goto connection_empty; |
| 1854 | |
| 1855 | /* Return result. */ |
| 1856 | luaL_pushresult(&socket->b); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 1857 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1858 | return 1; |
| 1859 | |
| 1860 | connection_closed: |
| 1861 | |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 1862 | xref_unlock(&socket->xref, peer); |
| 1863 | |
| 1864 | no_peer: |
| 1865 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1866 | /* If the buffer containds data. */ |
| 1867 | if (socket->b.n > 0) { |
| 1868 | luaL_pushresult(&socket->b); |
| 1869 | return 1; |
| 1870 | } |
| 1871 | lua_pushnil(L); |
| 1872 | lua_pushstring(L, "connection closed."); |
| 1873 | return 2; |
| 1874 | |
| 1875 | connection_empty: |
| 1876 | |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 1877 | if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_read, hlua->task)) { |
| 1878 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1879 | WILL_LJMP(luaL_error(L, "out of memory")); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 1880 | } |
| 1881 | xref_unlock(&socket->xref, peer); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 1882 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_receive_yield, TICK_ETERNITY, 0)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1883 | return 0; |
| 1884 | } |
| 1885 | |
Tim Duesterhus | b33754c | 2018-01-04 19:32:14 +0100 | [diff] [blame] | 1886 | /* This Lua function gets two parameters. The first one can be string |
| 1887 | * or a number. If the string is "*l", the user requires one line. If |
| 1888 | * the string is "*a", the user requires all the contents of the stream. |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1889 | * If the value is a number, the user require a number of bytes equal |
| 1890 | * to the value. The default value is "*l" (a line). |
| 1891 | * |
Tim Duesterhus | b33754c | 2018-01-04 19:32:14 +0100 | [diff] [blame] | 1892 | * This parameter with a variable type is converted in integer. This |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1893 | * integer takes this values: |
| 1894 | * -1 : read a line |
| 1895 | * -2 : read all the stream |
Tim Duesterhus | b33754c | 2018-01-04 19:32:14 +0100 | [diff] [blame] | 1896 | * >0 : amount of bytes. |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1897 | * |
Tim Duesterhus | b33754c | 2018-01-04 19:32:14 +0100 | [diff] [blame] | 1898 | * The second parameter is optional. It contains a string that must be |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1899 | * concatenated with the read data. |
| 1900 | */ |
| 1901 | __LJMP static int hlua_socket_receive(struct lua_State *L) |
| 1902 | { |
| 1903 | int wanted = HLSR_READ_LINE; |
| 1904 | const char *pattern; |
| 1905 | int type; |
| 1906 | char *error; |
| 1907 | size_t len; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 1908 | struct hlua_socket *socket; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1909 | |
| 1910 | if (lua_gettop(L) < 1 || lua_gettop(L) > 3) |
| 1911 | WILL_LJMP(luaL_error(L, "The 'receive' function requires between 1 and 3 arguments.")); |
| 1912 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 1913 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1914 | |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 1915 | /* Check if we run on the same thread than the xreator thread. |
| 1916 | * We cannot access to the socket if the thread is different. |
| 1917 | */ |
| 1918 | if (socket->tid != tid) |
| 1919 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 1920 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1921 | /* check for pattern. */ |
| 1922 | if (lua_gettop(L) >= 2) { |
| 1923 | type = lua_type(L, 2); |
| 1924 | if (type == LUA_TSTRING) { |
| 1925 | pattern = lua_tostring(L, 2); |
| 1926 | if (strcmp(pattern, "*a") == 0) |
| 1927 | wanted = HLSR_READ_ALL; |
| 1928 | else if (strcmp(pattern, "*l") == 0) |
| 1929 | wanted = HLSR_READ_LINE; |
| 1930 | else { |
| 1931 | wanted = strtoll(pattern, &error, 10); |
| 1932 | if (*error != '\0') |
| 1933 | WILL_LJMP(luaL_error(L, "Unsupported pattern.")); |
| 1934 | } |
| 1935 | } |
| 1936 | else if (type == LUA_TNUMBER) { |
| 1937 | wanted = lua_tointeger(L, 2); |
| 1938 | if (wanted < 0) |
| 1939 | WILL_LJMP(luaL_error(L, "Unsupported size.")); |
| 1940 | } |
| 1941 | } |
| 1942 | |
| 1943 | /* Set pattern. */ |
| 1944 | lua_pushinteger(L, wanted); |
Tim Duesterhus | c6e377e | 2018-01-04 19:32:13 +0100 | [diff] [blame] | 1945 | |
| 1946 | /* Check if we would replace the top by itself. */ |
| 1947 | if (lua_gettop(L) != 2) |
| 1948 | lua_replace(L, 2); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1949 | |
Tim Duesterhus | b33754c | 2018-01-04 19:32:14 +0100 | [diff] [blame] | 1950 | /* init buffer, and fill it with prefix. */ |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1951 | luaL_buffinit(L, &socket->b); |
| 1952 | |
| 1953 | /* Check prefix. */ |
| 1954 | if (lua_gettop(L) >= 3) { |
| 1955 | if (lua_type(L, 3) != LUA_TSTRING) |
| 1956 | WILL_LJMP(luaL_error(L, "Expect a 'string' for the prefix")); |
| 1957 | pattern = lua_tolstring(L, 3, &len); |
| 1958 | luaL_addlstring(&socket->b, pattern, len); |
| 1959 | } |
| 1960 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 1961 | return __LJMP(hlua_socket_receive_yield(L, 0, 0)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1962 | } |
| 1963 | |
| 1964 | /* Write the Lua input string in the output buffer. |
Mark Lakes | 22154b4 | 2018-01-29 14:38:40 -0800 | [diff] [blame] | 1965 | * This function returns a yield if no space is available. |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1966 | */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 1967 | static int hlua_socket_write_yield(struct lua_State *L,int status, lua_KContext ctx) |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1968 | { |
| 1969 | struct hlua_socket *socket; |
| 1970 | struct hlua *hlua = hlua_gethlua(L); |
| 1971 | struct appctx *appctx; |
| 1972 | size_t buf_len; |
| 1973 | const char *buf; |
| 1974 | int len; |
| 1975 | int send_len; |
| 1976 | int sent; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1977 | struct xref *peer; |
| 1978 | struct stream_interface *si; |
| 1979 | struct stream *s; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1980 | |
| 1981 | /* Check if this lua stack is schedulable. */ |
| 1982 | if (!hlua || !hlua->task) |
| 1983 | WILL_LJMP(luaL_error(L, "The 'write' function is only allowed in " |
| 1984 | "'frontend', 'backend' or 'task'")); |
| 1985 | |
| 1986 | /* Get object */ |
| 1987 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
| 1988 | buf = MAY_LJMP(luaL_checklstring(L, 2, &buf_len)); |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 1989 | sent = MAY_LJMP(luaL_checkinteger(L, 3)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1990 | |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 1991 | /* Check if we run on the same thread than the xreator thread. |
| 1992 | * We cannot access to the socket if the thread is different. |
| 1993 | */ |
| 1994 | if (socket->tid != tid) |
| 1995 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 1996 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1997 | /* check for connection break. If some data where read, return it. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 1998 | peer = xref_get_peer_and_lock(&socket->xref); |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1999 | if (!peer) { |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2000 | lua_pushinteger(L, -1); |
| 2001 | return 1; |
| 2002 | } |
| 2003 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
| 2004 | si = appctx->owner; |
| 2005 | s = si_strm(si); |
| 2006 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2007 | /* Check for connection close. */ |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2008 | if (channel_output_closed(&s->req)) { |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2009 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2010 | lua_pushinteger(L, -1); |
| 2011 | return 1; |
| 2012 | } |
| 2013 | |
| 2014 | /* Update the input buffer data. */ |
| 2015 | buf += sent; |
| 2016 | send_len = buf_len - sent; |
| 2017 | |
| 2018 | /* All the data are sent. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2019 | if (sent >= buf_len) { |
| 2020 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2021 | return 1; /* Implicitly return the length sent. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2022 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2023 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 2024 | /* Check if the buffer is available because HAProxy doesn't allocate |
Thierry FOURNIER | 486d52a | 2015-03-09 17:51:43 +0100 | [diff] [blame] | 2025 | * the request buffer if its not required. |
| 2026 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2027 | if (s->req.buf.size == 0) { |
Willy Tarreau | 581abd3 | 2018-10-25 10:21:41 +0200 | [diff] [blame] | 2028 | if (!si_alloc_ibuf(si, &appctx->buffer_wait)) |
Christopher Faulet | 33834b1 | 2016-12-19 09:29:06 +0100 | [diff] [blame] | 2029 | goto hlua_socket_write_yield_return; |
Thierry FOURNIER | 486d52a | 2015-03-09 17:51:43 +0100 | [diff] [blame] | 2030 | } |
| 2031 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 2032 | /* Check for available space. */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2033 | len = b_room(&s->req.buf); |
Christopher Faulet | 33834b1 | 2016-12-19 09:29:06 +0100 | [diff] [blame] | 2034 | if (len <= 0) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2035 | goto hlua_socket_write_yield_return; |
Christopher Faulet | 33834b1 | 2016-12-19 09:29:06 +0100 | [diff] [blame] | 2036 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2037 | |
| 2038 | /* send data */ |
| 2039 | if (len < send_len) |
| 2040 | send_len = len; |
Thierry FOURNIER | 66b8919 | 2018-05-27 01:14:47 +0200 | [diff] [blame] | 2041 | len = ci_putblk(&s->req, buf, send_len); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2042 | |
| 2043 | /* "Not enough space" (-1), "Buffer too little to contain |
| 2044 | * the data" (-2) are not expected because the available length |
| 2045 | * is tested. |
| 2046 | * Other unknown error are also not expected. |
| 2047 | */ |
| 2048 | if (len <= 0) { |
Willy Tarreau | bc18da1 | 2015-03-13 14:00:47 +0100 | [diff] [blame] | 2049 | if (len == -1) |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2050 | s->req.flags |= CF_WAKE_WRITE; |
Willy Tarreau | bc18da1 | 2015-03-13 14:00:47 +0100 | [diff] [blame] | 2051 | |
sada | 05ed330 | 2018-05-11 11:48:18 -0700 | [diff] [blame] | 2052 | MAY_LJMP(hlua_socket_close_helper(L)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2053 | lua_pop(L, 1); |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2054 | lua_pushinteger(L, -1); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2055 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2056 | return 1; |
| 2057 | } |
| 2058 | |
| 2059 | /* update buffers. */ |
Thierry FOURNIER | 101b976 | 2018-05-27 01:27:40 +0200 | [diff] [blame] | 2060 | appctx_wakeup(appctx); |
Willy Tarreau | de70fa1 | 2015-09-26 11:25:05 +0200 | [diff] [blame] | 2061 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2062 | s->req.rex = TICK_ETERNITY; |
| 2063 | s->res.wex = TICK_ETERNITY; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2064 | |
| 2065 | /* Update length sent. */ |
| 2066 | lua_pop(L, 1); |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2067 | lua_pushinteger(L, sent + len); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2068 | |
| 2069 | /* All the data buffer is sent ? */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2070 | if (sent + len >= buf_len) { |
| 2071 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2072 | return 1; |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2073 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2074 | |
| 2075 | hlua_socket_write_yield_return: |
Thierry FOURNIER | ba42fcd | 2018-05-27 00:59:48 +0200 | [diff] [blame] | 2076 | if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_write, hlua->task)) { |
| 2077 | xref_unlock(&socket->xref, peer); |
| 2078 | WILL_LJMP(luaL_error(L, "out of memory")); |
| 2079 | } |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2080 | xref_unlock(&socket->xref, peer); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 2081 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_write_yield, TICK_ETERNITY, 0)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2082 | return 0; |
| 2083 | } |
| 2084 | |
| 2085 | /* This function initiate the send of data. It just check the input |
| 2086 | * parameters and push an integer in the Lua stack that contain the |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 2087 | * amount of data written to the buffer. This is used by the function |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2088 | * "hlua_socket_write_yield" that can yield. |
| 2089 | * |
| 2090 | * The Lua function gets between 3 and 4 parameters. The first one is |
| 2091 | * the associated object. The second is a string buffer. The third is |
| 2092 | * a facultative integer that represents where is the buffer position |
| 2093 | * of the start of the data that can send. The first byte is the |
| 2094 | * position "1". The default value is "1". The fourth argument is a |
| 2095 | * facultative integer that represents where is the buffer position |
| 2096 | * of the end of the data that can send. The default is the last byte. |
| 2097 | */ |
| 2098 | static int hlua_socket_send(struct lua_State *L) |
| 2099 | { |
| 2100 | int i; |
| 2101 | int j; |
| 2102 | const char *buf; |
| 2103 | size_t buf_len; |
| 2104 | |
| 2105 | /* Check number of arguments. */ |
| 2106 | if (lua_gettop(L) < 2 || lua_gettop(L) > 4) |
| 2107 | WILL_LJMP(luaL_error(L, "'send' needs between 2 and 4 arguments")); |
| 2108 | |
| 2109 | /* Get the string. */ |
| 2110 | buf = MAY_LJMP(luaL_checklstring(L, 2, &buf_len)); |
| 2111 | |
| 2112 | /* Get and check j. */ |
| 2113 | if (lua_gettop(L) == 4) { |
| 2114 | j = MAY_LJMP(luaL_checkinteger(L, 4)); |
| 2115 | if (j < 0) |
| 2116 | j = buf_len + j + 1; |
| 2117 | if (j > buf_len) |
| 2118 | j = buf_len + 1; |
| 2119 | lua_pop(L, 1); |
| 2120 | } |
| 2121 | else |
| 2122 | j = buf_len; |
| 2123 | |
| 2124 | /* Get and check i. */ |
| 2125 | if (lua_gettop(L) == 3) { |
| 2126 | i = MAY_LJMP(luaL_checkinteger(L, 3)); |
| 2127 | if (i < 0) |
| 2128 | i = buf_len + i + 1; |
| 2129 | if (i > buf_len) |
| 2130 | i = buf_len + 1; |
| 2131 | lua_pop(L, 1); |
| 2132 | } else |
| 2133 | i = 1; |
| 2134 | |
| 2135 | /* Check bth i and j. */ |
| 2136 | if (i > j) { |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2137 | lua_pushinteger(L, 0); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2138 | return 1; |
| 2139 | } |
| 2140 | if (i == 0 && j == 0) { |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2141 | lua_pushinteger(L, 0); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2142 | return 1; |
| 2143 | } |
| 2144 | if (i == 0) |
| 2145 | i = 1; |
| 2146 | if (j == 0) |
| 2147 | j = 1; |
| 2148 | |
| 2149 | /* Pop the string. */ |
| 2150 | lua_pop(L, 1); |
| 2151 | |
| 2152 | /* Update the buffer length. */ |
| 2153 | buf += i - 1; |
| 2154 | buf_len = j - i + 1; |
| 2155 | lua_pushlstring(L, buf, buf_len); |
| 2156 | |
| 2157 | /* This unsigned is used to remember the amount of sent data. */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2158 | lua_pushinteger(L, 0); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2159 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2160 | return MAY_LJMP(hlua_socket_write_yield(L, 0, 0)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2161 | } |
| 2162 | |
Willy Tarreau | 22b0a68 | 2015-06-17 19:43:49 +0200 | [diff] [blame] | 2163 | #define SOCKET_INFO_MAX_LEN sizeof("[0000:0000:0000:0000:0000:0000:0000:0000]:12345") |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2164 | __LJMP static inline int hlua_socket_info(struct lua_State *L, struct sockaddr_storage *addr) |
| 2165 | { |
| 2166 | static char buffer[SOCKET_INFO_MAX_LEN]; |
| 2167 | int ret; |
| 2168 | int len; |
| 2169 | char *p; |
| 2170 | |
| 2171 | ret = addr_to_str(addr, buffer+1, SOCKET_INFO_MAX_LEN-1); |
| 2172 | if (ret <= 0) { |
| 2173 | lua_pushnil(L); |
| 2174 | return 1; |
| 2175 | } |
| 2176 | |
| 2177 | if (ret == AF_UNIX) { |
| 2178 | lua_pushstring(L, buffer+1); |
| 2179 | return 1; |
| 2180 | } |
| 2181 | else if (ret == AF_INET6) { |
| 2182 | buffer[0] = '['; |
| 2183 | len = strlen(buffer); |
| 2184 | buffer[len] = ']'; |
| 2185 | len++; |
| 2186 | buffer[len] = ':'; |
| 2187 | len++; |
| 2188 | p = buffer; |
| 2189 | } |
| 2190 | else if (ret == AF_INET) { |
| 2191 | p = buffer + 1; |
| 2192 | len = strlen(p); |
| 2193 | p[len] = ':'; |
| 2194 | len++; |
| 2195 | } |
| 2196 | else { |
| 2197 | lua_pushnil(L); |
| 2198 | return 1; |
| 2199 | } |
| 2200 | |
| 2201 | if (port_to_str(addr, p + len, SOCKET_INFO_MAX_LEN-1 - len) <= 0) { |
| 2202 | lua_pushnil(L); |
| 2203 | return 1; |
| 2204 | } |
| 2205 | |
| 2206 | lua_pushstring(L, p); |
| 2207 | return 1; |
| 2208 | } |
| 2209 | |
| 2210 | /* Returns information about the peer of the connection. */ |
| 2211 | __LJMP static int hlua_socket_getpeername(struct lua_State *L) |
| 2212 | { |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2213 | struct hlua_socket *socket; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2214 | struct xref *peer; |
| 2215 | struct appctx *appctx; |
| 2216 | struct stream_interface *si; |
| 2217 | struct stream *s; |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2218 | int ret; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2219 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2220 | MAY_LJMP(check_args(L, 1, "getpeername")); |
| 2221 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2222 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2223 | |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2224 | /* Check if we run on the same thread than the xreator thread. |
| 2225 | * We cannot access to the socket if the thread is different. |
| 2226 | */ |
| 2227 | if (socket->tid != tid) |
| 2228 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 2229 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2230 | /* check for connection break. If some data where read, return it. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2231 | peer = xref_get_peer_and_lock(&socket->xref); |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2232 | if (!peer) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2233 | lua_pushnil(L); |
| 2234 | return 1; |
| 2235 | } |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2236 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
| 2237 | si = appctx->owner; |
| 2238 | s = si_strm(si); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2239 | |
Willy Tarreau | 5a0b25d | 2019-07-18 18:01:14 +0200 | [diff] [blame] | 2240 | if (!s->target_addr) { |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2241 | xref_unlock(&socket->xref, peer); |
Willy Tarreau | a71f642 | 2016-11-16 17:00:14 +0100 | [diff] [blame] | 2242 | lua_pushnil(L); |
| 2243 | return 1; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2244 | } |
| 2245 | |
Willy Tarreau | 5a0b25d | 2019-07-18 18:01:14 +0200 | [diff] [blame] | 2246 | ret = MAY_LJMP(hlua_socket_info(L, s->target_addr)); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2247 | xref_unlock(&socket->xref, peer); |
| 2248 | return ret; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2249 | } |
| 2250 | |
| 2251 | /* Returns information about my connection side. */ |
| 2252 | static int hlua_socket_getsockname(struct lua_State *L) |
| 2253 | { |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2254 | struct hlua_socket *socket; |
| 2255 | struct connection *conn; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2256 | struct appctx *appctx; |
| 2257 | struct xref *peer; |
| 2258 | struct stream_interface *si; |
| 2259 | struct stream *s; |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2260 | int ret; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2261 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2262 | MAY_LJMP(check_args(L, 1, "getsockname")); |
| 2263 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2264 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2265 | |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2266 | /* Check if we run on the same thread than the xreator thread. |
| 2267 | * We cannot access to the socket if the thread is different. |
| 2268 | */ |
| 2269 | if (socket->tid != tid) |
| 2270 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 2271 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2272 | /* check for connection break. If some data where read, return it. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2273 | peer = xref_get_peer_and_lock(&socket->xref); |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2274 | if (!peer) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2275 | lua_pushnil(L); |
| 2276 | return 1; |
| 2277 | } |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2278 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
| 2279 | si = appctx->owner; |
| 2280 | s = si_strm(si); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2281 | |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 2282 | conn = cs_conn(objt_cs(s->si[1].end)); |
Willy Tarreau | 5a0b25d | 2019-07-18 18:01:14 +0200 | [diff] [blame] | 2283 | if (!conn || !conn_get_src(conn)) { |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2284 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2285 | lua_pushnil(L); |
| 2286 | return 1; |
| 2287 | } |
| 2288 | |
Willy Tarreau | 9da9a6f | 2019-07-17 14:49:44 +0200 | [diff] [blame] | 2289 | ret = hlua_socket_info(L, conn->src); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2290 | xref_unlock(&socket->xref, peer); |
| 2291 | return ret; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2292 | } |
| 2293 | |
| 2294 | /* This struct define the applet. */ |
Willy Tarreau | 3057645 | 2015-04-13 13:50:30 +0200 | [diff] [blame] | 2295 | static struct applet update_applet = { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2296 | .obj_type = OBJ_TYPE_APPLET, |
| 2297 | .name = "<LUA_TCP>", |
| 2298 | .fct = hlua_socket_handler, |
| 2299 | .release = hlua_socket_release, |
| 2300 | }; |
| 2301 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2302 | __LJMP static int hlua_socket_connect_yield(struct lua_State *L, int status, lua_KContext ctx) |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2303 | { |
| 2304 | struct hlua_socket *socket = MAY_LJMP(hlua_checksocket(L, 1)); |
| 2305 | struct hlua *hlua = hlua_gethlua(L); |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2306 | struct xref *peer; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2307 | struct appctx *appctx; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2308 | struct stream_interface *si; |
| 2309 | struct stream *s; |
| 2310 | |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2311 | /* Check if we run on the same thread than the xreator thread. |
| 2312 | * We cannot access to the socket if the thread is different. |
| 2313 | */ |
| 2314 | if (socket->tid != tid) |
| 2315 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 2316 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2317 | /* check for connection break. If some data where read, return it. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2318 | peer = xref_get_peer_and_lock(&socket->xref); |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2319 | if (!peer) { |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2320 | lua_pushnil(L); |
| 2321 | lua_pushstring(L, "Can't connect"); |
| 2322 | return 2; |
| 2323 | } |
| 2324 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
| 2325 | si = appctx->owner; |
| 2326 | s = si_strm(si); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2327 | |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2328 | /* Check if we run on the same thread than the xreator thread. |
| 2329 | * We cannot access to the socket if the thread is different. |
| 2330 | */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2331 | if (socket->tid != tid) { |
| 2332 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2333 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2334 | } |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2335 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2336 | /* Check for connection close. */ |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2337 | if (!hlua || channel_output_closed(&s->req)) { |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2338 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2339 | lua_pushnil(L); |
| 2340 | lua_pushstring(L, "Can't connect"); |
| 2341 | return 2; |
| 2342 | } |
| 2343 | |
Willy Tarreau | e09101e | 2018-10-16 17:37:12 +0200 | [diff] [blame] | 2344 | appctx = __objt_appctx(s->si[0].end); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2345 | |
| 2346 | /* Check for connection established. */ |
Thierry FOURNIER | 18d0990 | 2016-12-16 09:25:38 +0100 | [diff] [blame] | 2347 | if (appctx->ctx.hlua_cosocket.connected) { |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2348 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2349 | lua_pushinteger(L, 1); |
| 2350 | return 1; |
| 2351 | } |
| 2352 | |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2353 | if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_write, hlua->task)) { |
| 2354 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2355 | WILL_LJMP(luaL_error(L, "out of memory error")); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2356 | } |
| 2357 | xref_unlock(&socket->xref, peer); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 2358 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_connect_yield, TICK_ETERNITY, 0)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2359 | return 0; |
| 2360 | } |
| 2361 | |
| 2362 | /* This function fail or initite the connection. */ |
| 2363 | __LJMP static int hlua_socket_connect(struct lua_State *L) |
| 2364 | { |
| 2365 | struct hlua_socket *socket; |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2366 | int port = -1; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2367 | const char *ip; |
Thierry FOURNIER | 95ad96a | 2015-03-09 18:12:40 +0100 | [diff] [blame] | 2368 | struct hlua *hlua; |
| 2369 | struct appctx *appctx; |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2370 | int low, high; |
| 2371 | struct sockaddr_storage *addr; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2372 | struct xref *peer; |
| 2373 | struct stream_interface *si; |
| 2374 | struct stream *s; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2375 | |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2376 | if (lua_gettop(L) < 2) |
| 2377 | WILL_LJMP(luaL_error(L, "connect: need at least 2 arguments")); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2378 | |
| 2379 | /* Get args. */ |
| 2380 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2381 | |
| 2382 | /* Check if we run on the same thread than the xreator thread. |
| 2383 | * We cannot access to the socket if the thread is different. |
| 2384 | */ |
| 2385 | if (socket->tid != tid) |
| 2386 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 2387 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2388 | ip = MAY_LJMP(luaL_checkstring(L, 2)); |
Tim Duesterhus | 6edab86 | 2018-01-06 19:04:45 +0100 | [diff] [blame] | 2389 | if (lua_gettop(L) >= 3) { |
| 2390 | luaL_Buffer b; |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2391 | port = MAY_LJMP(luaL_checkinteger(L, 3)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2392 | |
Tim Duesterhus | 6edab86 | 2018-01-06 19:04:45 +0100 | [diff] [blame] | 2393 | /* Force the ip to end with a colon, to support IPv6 addresses |
| 2394 | * that are not enclosed within square brackets. |
| 2395 | */ |
| 2396 | if (port > 0) { |
| 2397 | luaL_buffinit(L, &b); |
| 2398 | luaL_addstring(&b, ip); |
| 2399 | luaL_addchar(&b, ':'); |
| 2400 | luaL_pushresult(&b); |
| 2401 | ip = lua_tolstring(L, lua_gettop(L), NULL); |
| 2402 | } |
| 2403 | } |
| 2404 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2405 | /* check for connection break. If some data where read, return it. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2406 | peer = xref_get_peer_and_lock(&socket->xref); |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2407 | if (!peer) { |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2408 | lua_pushnil(L); |
| 2409 | return 1; |
| 2410 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2411 | |
| 2412 | /* Parse ip address. */ |
Willy Tarreau | 48ef4c9 | 2017-01-06 18:32:38 +0100 | [diff] [blame] | 2413 | addr = str2sa_range(ip, NULL, &low, &high, NULL, NULL, NULL, 0); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2414 | if (!addr) { |
| 2415 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2416 | WILL_LJMP(luaL_error(L, "connect: cannot parse destination address '%s'", ip)); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2417 | } |
| 2418 | if (low != high) { |
| 2419 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2420 | WILL_LJMP(luaL_error(L, "connect: port ranges not supported : address '%s'", ip)); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2421 | } |
Willy Tarreau | 9da9a6f | 2019-07-17 14:49:44 +0200 | [diff] [blame] | 2422 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2423 | /* Set port. */ |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2424 | if (low == 0) { |
Willy Tarreau | 1c8d32b | 2019-07-18 15:47:45 +0200 | [diff] [blame] | 2425 | if (addr->ss_family == AF_INET) { |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2426 | if (port == -1) { |
| 2427 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2428 | WILL_LJMP(luaL_error(L, "connect: port missing")); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2429 | } |
Willy Tarreau | 1c8d32b | 2019-07-18 15:47:45 +0200 | [diff] [blame] | 2430 | ((struct sockaddr_in *)addr)->sin_port = htons(port); |
| 2431 | } else if (addr->ss_family == AF_INET6) { |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2432 | if (port == -1) { |
| 2433 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2434 | WILL_LJMP(luaL_error(L, "connect: port missing")); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2435 | } |
Willy Tarreau | 1c8d32b | 2019-07-18 15:47:45 +0200 | [diff] [blame] | 2436 | ((struct sockaddr_in6 *)addr)->sin6_port = htons(port); |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2437 | } |
| 2438 | } |
Willy Tarreau | 1c8d32b | 2019-07-18 15:47:45 +0200 | [diff] [blame] | 2439 | |
Willy Tarreau | 5a0b25d | 2019-07-18 18:01:14 +0200 | [diff] [blame] | 2440 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
| 2441 | si = appctx->owner; |
| 2442 | s = si_strm(si); |
Willy Tarreau | 1c8d32b | 2019-07-18 15:47:45 +0200 | [diff] [blame] | 2443 | |
| 2444 | if (!sockaddr_alloc(&s->target_addr)) { |
| 2445 | xref_unlock(&socket->xref, peer); |
| 2446 | WILL_LJMP(luaL_error(L, "connect: internal error")); |
| 2447 | } |
| 2448 | *s->target_addr = *addr; |
Willy Tarreau | 5a0b25d | 2019-07-18 18:01:14 +0200 | [diff] [blame] | 2449 | s->flags |= SF_ADDR_SET; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2450 | |
Thierry FOURNIER | 95ad96a | 2015-03-09 18:12:40 +0100 | [diff] [blame] | 2451 | hlua = hlua_gethlua(L); |
Willy Tarreau | bdc97a8 | 2015-08-24 15:42:28 +0200 | [diff] [blame] | 2452 | |
| 2453 | /* inform the stream that we want to be notified whenever the |
| 2454 | * connection completes. |
| 2455 | */ |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 2456 | si_cant_get(&s->si[0]); |
Willy Tarreau | 3367d41 | 2018-11-15 10:57:41 +0100 | [diff] [blame] | 2457 | si_rx_endp_more(&s->si[0]); |
Thierry FOURNIER | 8c8fbbe | 2015-09-26 17:02:35 +0200 | [diff] [blame] | 2458 | appctx_wakeup(appctx); |
Willy Tarreau | bdc97a8 | 2015-08-24 15:42:28 +0200 | [diff] [blame] | 2459 | |
Thierry FOURNIER | 7c39ab4 | 2015-09-27 22:53:33 +0200 | [diff] [blame] | 2460 | hlua->flags |= HLUA_MUST_GC; |
| 2461 | |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2462 | if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_write, hlua->task)) { |
| 2463 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 95ad96a | 2015-03-09 18:12:40 +0100 | [diff] [blame] | 2464 | WILL_LJMP(luaL_error(L, "out of memory")); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2465 | } |
| 2466 | xref_unlock(&socket->xref, peer); |
PiBa-NL | 706d5ee | 2018-05-05 23:51:42 +0200 | [diff] [blame] | 2467 | |
| 2468 | task_wakeup(s->task, TASK_WOKEN_INIT); |
| 2469 | /* Return yield waiting for connection. */ |
| 2470 | |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 2471 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_socket_connect_yield, TICK_ETERNITY, 0)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2472 | |
| 2473 | return 0; |
| 2474 | } |
| 2475 | |
Baptiste Assmann | 84bb493 | 2015-03-02 21:40:06 +0100 | [diff] [blame] | 2476 | #ifdef USE_OPENSSL |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2477 | __LJMP static int hlua_socket_connect_ssl(struct lua_State *L) |
| 2478 | { |
| 2479 | struct hlua_socket *socket; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2480 | struct xref *peer; |
| 2481 | struct appctx *appctx; |
| 2482 | struct stream_interface *si; |
| 2483 | struct stream *s; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2484 | |
| 2485 | MAY_LJMP(check_args(L, 3, "connect_ssl")); |
| 2486 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2487 | |
| 2488 | /* check for connection break. If some data where read, return it. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2489 | peer = xref_get_peer_and_lock(&socket->xref); |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2490 | if (!peer) { |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2491 | lua_pushnil(L); |
| 2492 | return 1; |
| 2493 | } |
| 2494 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
| 2495 | si = appctx->owner; |
| 2496 | s = si_strm(si); |
| 2497 | |
| 2498 | s->target = &socket_ssl.obj_type; |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2499 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2500 | return MAY_LJMP(hlua_socket_connect(L)); |
| 2501 | } |
Baptiste Assmann | 84bb493 | 2015-03-02 21:40:06 +0100 | [diff] [blame] | 2502 | #endif |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2503 | |
| 2504 | __LJMP static int hlua_socket_setoption(struct lua_State *L) |
| 2505 | { |
| 2506 | return 0; |
| 2507 | } |
| 2508 | |
| 2509 | __LJMP static int hlua_socket_settimeout(struct lua_State *L) |
| 2510 | { |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2511 | struct hlua_socket *socket; |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2512 | int tmout; |
Mark Lakes | 56cc125 | 2018-03-27 09:48:06 +0200 | [diff] [blame] | 2513 | double dtmout; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2514 | struct xref *peer; |
| 2515 | struct appctx *appctx; |
| 2516 | struct stream_interface *si; |
| 2517 | struct stream *s; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2518 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2519 | MAY_LJMP(check_args(L, 2, "settimeout")); |
| 2520 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2521 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Mark Lakes | 56cc125 | 2018-03-27 09:48:06 +0200 | [diff] [blame] | 2522 | |
Cyril Bonté | 7ee465f | 2018-08-19 22:08:50 +0200 | [diff] [blame] | 2523 | /* convert the timeout to millis */ |
| 2524 | dtmout = MAY_LJMP(luaL_checknumber(L, 2)) * 1000; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2525 | |
Thierry Fournier | 17a921b | 2018-03-08 09:59:02 +0100 | [diff] [blame] | 2526 | /* Check for negative values */ |
Mark Lakes | 56cc125 | 2018-03-27 09:48:06 +0200 | [diff] [blame] | 2527 | if (dtmout < 0) |
Thierry Fournier | 17a921b | 2018-03-08 09:59:02 +0100 | [diff] [blame] | 2528 | WILL_LJMP(luaL_error(L, "settimeout: cannot set negatives values")); |
| 2529 | |
Mark Lakes | 56cc125 | 2018-03-27 09:48:06 +0200 | [diff] [blame] | 2530 | if (dtmout > INT_MAX) /* overflow check */ |
Cyril Bonté | 7ee465f | 2018-08-19 22:08:50 +0200 | [diff] [blame] | 2531 | WILL_LJMP(luaL_error(L, "settimeout: cannot set values larger than %d ms", INT_MAX)); |
Mark Lakes | 56cc125 | 2018-03-27 09:48:06 +0200 | [diff] [blame] | 2532 | |
| 2533 | tmout = MS_TO_TICKS((int)dtmout); |
Cyril Bonté | 7ee465f | 2018-08-19 22:08:50 +0200 | [diff] [blame] | 2534 | if (tmout == 0) |
| 2535 | tmout++; /* very small timeouts are adjusted to a minium of 1ms */ |
Mark Lakes | 56cc125 | 2018-03-27 09:48:06 +0200 | [diff] [blame] | 2536 | |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2537 | /* Check if we run on the same thread than the xreator thread. |
| 2538 | * We cannot access to the socket if the thread is different. |
| 2539 | */ |
| 2540 | if (socket->tid != tid) |
| 2541 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 2542 | |
Mark Lakes | 56cc125 | 2018-03-27 09:48:06 +0200 | [diff] [blame] | 2543 | /* check for connection break. If some data were read, return it. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2544 | peer = xref_get_peer_and_lock(&socket->xref); |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2545 | if (!peer) { |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2546 | hlua_pusherror(L, "socket: not yet initialised, you can't set timeouts."); |
| 2547 | WILL_LJMP(lua_error(L)); |
| 2548 | return 0; |
| 2549 | } |
| 2550 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
| 2551 | si = appctx->owner; |
| 2552 | s = si_strm(si); |
| 2553 | |
Cyril Bonté | 7bb6345 | 2018-08-17 23:51:02 +0200 | [diff] [blame] | 2554 | s->sess->fe->timeout.connect = tmout; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2555 | s->req.rto = tmout; |
| 2556 | s->req.wto = tmout; |
| 2557 | s->res.rto = tmout; |
| 2558 | s->res.wto = tmout; |
Cyril Bonté | 7bb6345 | 2018-08-17 23:51:02 +0200 | [diff] [blame] | 2559 | s->req.rex = tick_add_ifset(now_ms, tmout); |
| 2560 | s->req.wex = tick_add_ifset(now_ms, tmout); |
| 2561 | s->res.rex = tick_add_ifset(now_ms, tmout); |
| 2562 | s->res.wex = tick_add_ifset(now_ms, tmout); |
| 2563 | |
| 2564 | s->task->expire = tick_add_ifset(now_ms, tmout); |
| 2565 | task_queue(s->task); |
| 2566 | |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2567 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2568 | |
Thierry Fournier | e9636f1 | 2018-03-08 09:54:32 +0100 | [diff] [blame] | 2569 | lua_pushinteger(L, 1); |
Tim Duesterhus | 119a5f1 | 2018-01-06 19:16:25 +0100 | [diff] [blame] | 2570 | return 1; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2571 | } |
| 2572 | |
| 2573 | __LJMP static int hlua_socket_new(lua_State *L) |
| 2574 | { |
| 2575 | struct hlua_socket *socket; |
| 2576 | struct appctx *appctx; |
Willy Tarreau | 15b5e14 | 2015-04-04 14:38:25 +0200 | [diff] [blame] | 2577 | struct session *sess; |
Willy Tarreau | 61cf7c8 | 2015-04-06 00:48:33 +0200 | [diff] [blame] | 2578 | struct stream *strm; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2579 | |
| 2580 | /* Check stack size. */ |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 2581 | if (!lua_checkstack(L, 3)) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2582 | hlua_pusherror(L, "socket: full stack"); |
| 2583 | goto out_fail_conf; |
| 2584 | } |
| 2585 | |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 2586 | /* Create the object: obj[0] = userdata. */ |
| 2587 | lua_newtable(L); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2588 | socket = MAY_LJMP(lua_newuserdata(L, sizeof(*socket))); |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 2589 | lua_rawseti(L, -2, 0); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2590 | memset(socket, 0, sizeof(*socket)); |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2591 | socket->tid = tid; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2592 | |
Thierry FOURNIER | 4a6170c | 2015-03-09 17:07:10 +0100 | [diff] [blame] | 2593 | /* Check if the various memory pools are intialized. */ |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 2594 | if (!pool_head_stream || !pool_head_buffer) { |
Thierry FOURNIER | 4a6170c | 2015-03-09 17:07:10 +0100 | [diff] [blame] | 2595 | hlua_pusherror(L, "socket: uninitialized pools."); |
| 2596 | goto out_fail_conf; |
| 2597 | } |
| 2598 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 2599 | /* Pop a class stream metatable and affect it to the userdata. */ |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2600 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_socket_ref); |
| 2601 | lua_setmetatable(L, -2); |
| 2602 | |
Willy Tarreau | d420a97 | 2015-04-06 00:39:18 +0200 | [diff] [blame] | 2603 | /* Create the applet context */ |
Willy Tarreau | 5f4a47b | 2017-10-31 15:59:32 +0100 | [diff] [blame] | 2604 | appctx = appctx_new(&update_applet, tid_bit); |
Willy Tarreau | 61cf7c8 | 2015-04-06 00:48:33 +0200 | [diff] [blame] | 2605 | if (!appctx) { |
| 2606 | hlua_pusherror(L, "socket: out of memory"); |
Willy Tarreau | feb7640 | 2015-04-03 14:10:06 +0200 | [diff] [blame] | 2607 | goto out_fail_conf; |
Willy Tarreau | 61cf7c8 | 2015-04-06 00:48:33 +0200 | [diff] [blame] | 2608 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2609 | |
Thierry FOURNIER | 18d0990 | 2016-12-16 09:25:38 +0100 | [diff] [blame] | 2610 | appctx->ctx.hlua_cosocket.connected = 0; |
Thierry FOURNIER | b13b20a | 2017-07-16 20:48:54 +0200 | [diff] [blame] | 2611 | appctx->ctx.hlua_cosocket.die = 0; |
Thierry FOURNIER | 18d0990 | 2016-12-16 09:25:38 +0100 | [diff] [blame] | 2612 | LIST_INIT(&appctx->ctx.hlua_cosocket.wake_on_write); |
| 2613 | LIST_INIT(&appctx->ctx.hlua_cosocket.wake_on_read); |
Willy Tarreau | b2bf833 | 2015-04-04 15:58:58 +0200 | [diff] [blame] | 2614 | |
Willy Tarreau | d420a97 | 2015-04-06 00:39:18 +0200 | [diff] [blame] | 2615 | /* Now create a session, task and stream for this applet */ |
| 2616 | sess = session_new(&socket_proxy, NULL, &appctx->obj_type); |
| 2617 | if (!sess) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2618 | hlua_pusherror(L, "socket: out of memory"); |
Willy Tarreau | d420a97 | 2015-04-06 00:39:18 +0200 | [diff] [blame] | 2619 | goto out_fail_sess; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2620 | } |
| 2621 | |
Willy Tarreau | 87787ac | 2017-08-28 16:22:54 +0200 | [diff] [blame] | 2622 | strm = stream_new(sess, &appctx->obj_type); |
Willy Tarreau | 61cf7c8 | 2015-04-06 00:48:33 +0200 | [diff] [blame] | 2623 | if (!strm) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2624 | hlua_pusherror(L, "socket: out of memory"); |
Willy Tarreau | d420a97 | 2015-04-06 00:39:18 +0200 | [diff] [blame] | 2625 | goto out_fail_stream; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2626 | } |
| 2627 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2628 | /* Initialise cross reference between stream and Lua socket object. */ |
| 2629 | xref_create(&socket->xref, &appctx->ctx.hlua_cosocket.xref); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2630 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2631 | /* Configure "right" stream interface. this "si" is used to connect |
| 2632 | * and retrieve data from the server. The connection is initialized |
| 2633 | * with the "struct server". |
| 2634 | */ |
Willy Tarreau | 61cf7c8 | 2015-04-06 00:48:33 +0200 | [diff] [blame] | 2635 | si_set_state(&strm->si[1], SI_ST_ASS); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2636 | |
| 2637 | /* Force destination server. */ |
Willy Tarreau | 5a0b25d | 2019-07-18 18:01:14 +0200 | [diff] [blame] | 2638 | strm->flags |= SF_DIRECT | SF_ASSIGNED | SF_BE_ASSIGNED; |
Willy Tarreau | 61cf7c8 | 2015-04-06 00:48:33 +0200 | [diff] [blame] | 2639 | strm->target = &socket_tcp.obj_type; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2640 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2641 | return 1; |
| 2642 | |
Willy Tarreau | d420a97 | 2015-04-06 00:39:18 +0200 | [diff] [blame] | 2643 | out_fail_stream: |
Willy Tarreau | 11c3624 | 2015-04-04 15:54:03 +0200 | [diff] [blame] | 2644 | session_free(sess); |
Willy Tarreau | d420a97 | 2015-04-06 00:39:18 +0200 | [diff] [blame] | 2645 | out_fail_sess: |
| 2646 | appctx_free(appctx); |
| 2647 | out_fail_conf: |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2648 | WILL_LJMP(lua_error(L)); |
| 2649 | return 0; |
| 2650 | } |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 2651 | |
| 2652 | /* |
| 2653 | * |
| 2654 | * |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2655 | * Class Channel |
| 2656 | * |
| 2657 | * |
| 2658 | */ |
| 2659 | |
Thierry FOURNIER | 11cfb3d | 2016-12-13 13:06:23 +0100 | [diff] [blame] | 2660 | /* This function is called before the Lua execution. It stores |
| 2661 | * the differents parsers state before executing some Lua code. |
Thierry FOURNIER | d75cb0f | 2015-09-25 19:22:44 +0200 | [diff] [blame] | 2662 | */ |
Thierry FOURNIER | 11cfb3d | 2016-12-13 13:06:23 +0100 | [diff] [blame] | 2663 | static inline void consistency_set(struct stream *stream, int opt, struct hlua_consistency *c) |
Thierry FOURNIER | d75cb0f | 2015-09-25 19:22:44 +0200 | [diff] [blame] | 2664 | { |
Thierry FOURNIER | 11cfb3d | 2016-12-13 13:06:23 +0100 | [diff] [blame] | 2665 | c->mode = stream->be->mode; |
| 2666 | switch (c->mode) { |
| 2667 | case PR_MODE_HTTP: |
| 2668 | c->data.http.dir = opt & SMP_OPT_DIR; |
| 2669 | if (c->data.http.dir == SMP_OPT_DIR_REQ) |
| 2670 | c->data.http.state = stream->txn->req.msg_state; |
| 2671 | else |
| 2672 | c->data.http.state = stream->txn->rsp.msg_state; |
| 2673 | break; |
| 2674 | default: |
| 2675 | break; |
| 2676 | } |
| 2677 | } |
Thierry FOURNIER | d75cb0f | 2015-09-25 19:22:44 +0200 | [diff] [blame] | 2678 | |
Thierry FOURNIER | 11cfb3d | 2016-12-13 13:06:23 +0100 | [diff] [blame] | 2679 | /* This function is called after the Lua execution. it |
| 2680 | * returns true if the parser state is consistent, otherwise, |
| 2681 | * it return false. |
| 2682 | * |
| 2683 | * In HTTP mode, the parser state must be in the same state |
| 2684 | * or greater when we exit the function. Even if we do a |
| 2685 | * control yield. This prevent to break the HTTP message |
| 2686 | * from the Lua code. |
| 2687 | */ |
| 2688 | static inline int consistency_check(struct stream *stream, int opt, struct hlua_consistency *c) |
| 2689 | { |
| 2690 | if (c->mode != stream->be->mode) |
| 2691 | return 0; |
| 2692 | |
| 2693 | switch (c->mode) { |
| 2694 | case PR_MODE_HTTP: |
| 2695 | if (c->data.http.dir != (opt & SMP_OPT_DIR)) |
Thierry FOURNIER | d75cb0f | 2015-09-25 19:22:44 +0200 | [diff] [blame] | 2696 | return 0; |
Thierry FOURNIER | 11cfb3d | 2016-12-13 13:06:23 +0100 | [diff] [blame] | 2697 | if (c->data.http.dir == SMP_OPT_DIR_REQ) |
| 2698 | return stream->txn->req.msg_state >= c->data.http.state; |
| 2699 | else |
| 2700 | return stream->txn->rsp.msg_state >= c->data.http.state; |
| 2701 | default: |
| 2702 | return 1; |
Thierry FOURNIER | d75cb0f | 2015-09-25 19:22:44 +0200 | [diff] [blame] | 2703 | } |
| 2704 | return 1; |
| 2705 | } |
| 2706 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2707 | /* Returns the struct hlua_channel join to the class channel in the |
| 2708 | * stack entry "ud" or throws an argument error. |
| 2709 | */ |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 2710 | __LJMP static struct channel *hlua_checkchannel(lua_State *L, int ud) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2711 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 2712 | return MAY_LJMP(hlua_checkudata(L, ud, class_channel_ref)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2713 | } |
| 2714 | |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 2715 | /* Pushes the channel onto the top of the stack. If the stask does not have a |
| 2716 | * free slots, the function fails and returns 0; |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2717 | */ |
Willy Tarreau | 2a71af4 | 2015-03-10 13:51:50 +0100 | [diff] [blame] | 2718 | static int hlua_channel_new(lua_State *L, struct channel *channel) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2719 | { |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2720 | /* Check stack size. */ |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 2721 | if (!lua_checkstack(L, 3)) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2722 | return 0; |
| 2723 | |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 2724 | lua_newtable(L); |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 2725 | lua_pushlightuserdata(L, channel); |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 2726 | lua_rawseti(L, -2, 0); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2727 | |
| 2728 | /* Pop a class sesison metatable and affect it to the userdata. */ |
| 2729 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_channel_ref); |
| 2730 | lua_setmetatable(L, -2); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2731 | return 1; |
| 2732 | } |
| 2733 | |
| 2734 | /* Duplicate all the data present in the input channel and put it |
| 2735 | * in a string LUA variables. Returns -1 and push a nil value in |
| 2736 | * the stack if the channel is closed and all the data are consumed, |
| 2737 | * returns 0 if no data are available, otherwise it returns the length |
| 2738 | * of the builded string. |
| 2739 | */ |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 2740 | static inline int _hlua_channel_dup(struct channel *chn, lua_State *L) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2741 | { |
| 2742 | char *blk1; |
| 2743 | char *blk2; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 2744 | size_t len1; |
| 2745 | size_t len2; |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2746 | int ret; |
| 2747 | luaL_Buffer b; |
| 2748 | |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 2749 | ret = ci_getblk_nc(chn, &blk1, &len1, &blk2, &len2); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2750 | if (unlikely(ret == 0)) |
| 2751 | return 0; |
| 2752 | |
| 2753 | if (unlikely(ret < 0)) { |
| 2754 | lua_pushnil(L); |
| 2755 | return -1; |
| 2756 | } |
| 2757 | |
| 2758 | luaL_buffinit(L, &b); |
| 2759 | luaL_addlstring(&b, blk1, len1); |
| 2760 | if (unlikely(ret == 2)) |
| 2761 | luaL_addlstring(&b, blk2, len2); |
| 2762 | luaL_pushresult(&b); |
| 2763 | |
| 2764 | if (unlikely(ret == 2)) |
| 2765 | return len1 + len2; |
| 2766 | return len1; |
| 2767 | } |
| 2768 | |
| 2769 | /* "_hlua_channel_dup" wrapper. If no data are available, it returns |
| 2770 | * a yield. This function keep the data in the buffer. |
| 2771 | */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2772 | __LJMP static int hlua_channel_dup_yield(lua_State *L, int status, lua_KContext ctx) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2773 | { |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 2774 | struct channel *chn; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2775 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2776 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
| 2777 | |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 2778 | if (chn_strm(chn)->be->mode == PR_MODE_HTTP) |
| 2779 | WILL_LJMP(lua_error(L)); |
| 2780 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2781 | if (_hlua_channel_dup(chn, L) == 0) |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 2782 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_dup_yield, TICK_ETERNITY, 0)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2783 | return 1; |
| 2784 | } |
| 2785 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2786 | /* Check arguments for the function "hlua_channel_dup_yield". */ |
| 2787 | __LJMP static int hlua_channel_dup(lua_State *L) |
| 2788 | { |
| 2789 | MAY_LJMP(check_args(L, 1, "dup")); |
| 2790 | MAY_LJMP(hlua_checkchannel(L, 1)); |
| 2791 | return MAY_LJMP(hlua_channel_dup_yield(L, 0, 0)); |
| 2792 | } |
| 2793 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2794 | /* "_hlua_channel_dup" wrapper. If no data are available, it returns |
| 2795 | * a yield. This function consumes the data in the buffer. It returns |
| 2796 | * a string containing the data or a nil pointer if no data are available |
| 2797 | * and the channel is closed. |
| 2798 | */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2799 | __LJMP static int hlua_channel_get_yield(lua_State *L, int status, lua_KContext ctx) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2800 | { |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 2801 | struct channel *chn; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2802 | int ret; |
| 2803 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2804 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2805 | |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 2806 | if (chn_strm(chn)->be->mode == PR_MODE_HTTP) |
| 2807 | WILL_LJMP(lua_error(L)); |
| 2808 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2809 | ret = _hlua_channel_dup(chn, L); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2810 | if (unlikely(ret == 0)) |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 2811 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_get_yield, TICK_ETERNITY, 0)); |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2812 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2813 | if (unlikely(ret == -1)) |
| 2814 | return 1; |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2815 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2816 | b_sub(&chn->buf, ret); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2817 | return 1; |
| 2818 | } |
| 2819 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 2820 | /* Check arguments for the function "hlua_channel_get_yield". */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2821 | __LJMP static int hlua_channel_get(lua_State *L) |
| 2822 | { |
| 2823 | MAY_LJMP(check_args(L, 1, "get")); |
| 2824 | MAY_LJMP(hlua_checkchannel(L, 1)); |
| 2825 | return MAY_LJMP(hlua_channel_get_yield(L, 0, 0)); |
| 2826 | } |
| 2827 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2828 | /* This functions consumes and returns one line. If the channel is closed, |
| 2829 | * and the last data does not contains a final '\n', the data are returned |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 2830 | * without the final '\n'. When no more data are available, it returns nil |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2831 | * value. |
| 2832 | */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2833 | __LJMP static int hlua_channel_getline_yield(lua_State *L, int status, lua_KContext ctx) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2834 | { |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2835 | char *blk1; |
| 2836 | char *blk2; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 2837 | size_t len1; |
| 2838 | size_t len2; |
| 2839 | size_t len; |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 2840 | struct channel *chn; |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2841 | int ret; |
| 2842 | luaL_Buffer b; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2843 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2844 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
| 2845 | |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 2846 | if (chn_strm(chn)->be->mode == PR_MODE_HTTP) |
| 2847 | WILL_LJMP(lua_error(L)); |
| 2848 | |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 2849 | ret = ci_getline_nc(chn, &blk1, &len1, &blk2, &len2); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2850 | if (ret == 0) |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 2851 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_getline_yield, TICK_ETERNITY, 0)); |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2852 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2853 | if (ret == -1) { |
| 2854 | lua_pushnil(L); |
| 2855 | return 1; |
| 2856 | } |
| 2857 | |
| 2858 | luaL_buffinit(L, &b); |
| 2859 | luaL_addlstring(&b, blk1, len1); |
| 2860 | len = len1; |
| 2861 | if (unlikely(ret == 2)) { |
| 2862 | luaL_addlstring(&b, blk2, len2); |
| 2863 | len += len2; |
| 2864 | } |
| 2865 | luaL_pushresult(&b); |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2866 | b_rep_blk(&chn->buf, ci_head(chn), ci_head(chn) + len, NULL, 0); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2867 | return 1; |
| 2868 | } |
| 2869 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 2870 | /* Check arguments for the function "hlua_channel_getline_yield". */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2871 | __LJMP static int hlua_channel_getline(lua_State *L) |
| 2872 | { |
| 2873 | MAY_LJMP(check_args(L, 1, "getline")); |
| 2874 | MAY_LJMP(hlua_checkchannel(L, 1)); |
| 2875 | return MAY_LJMP(hlua_channel_getline_yield(L, 0, 0)); |
| 2876 | } |
| 2877 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2878 | /* This function takes a string as input, and append it at the |
| 2879 | * input side of channel. If the data is too big, but a space |
| 2880 | * is probably available after sending some data, the function |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 2881 | * yields. If the data is bigger than the buffer, or if the |
| 2882 | * channel is closed, it returns -1. Otherwise, it returns the |
| 2883 | * amount of data written. |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2884 | */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2885 | __LJMP static int hlua_channel_append_yield(lua_State *L, int status, lua_KContext ctx) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2886 | { |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 2887 | struct channel *chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2888 | size_t len; |
| 2889 | const char *str = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 2890 | int l = MAY_LJMP(luaL_checkinteger(L, 3)); |
| 2891 | int ret; |
| 2892 | int max; |
| 2893 | |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 2894 | if (chn_strm(chn)->be->mode == PR_MODE_HTTP) |
| 2895 | WILL_LJMP(lua_error(L)); |
| 2896 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 2897 | /* Check if the buffer is available because HAProxy doesn't allocate |
Christopher Faulet | a73e59b | 2016-12-09 17:30:18 +0100 | [diff] [blame] | 2898 | * the request buffer if its not required. |
| 2899 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2900 | if (chn->buf.size == 0) { |
Willy Tarreau | 4b962a4 | 2018-11-15 11:03:21 +0100 | [diff] [blame] | 2901 | si_rx_buff_blk(chn_prod(chn)); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 2902 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_append_yield, TICK_ETERNITY, 0)); |
Christopher Faulet | a73e59b | 2016-12-09 17:30:18 +0100 | [diff] [blame] | 2903 | } |
| 2904 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2905 | max = channel_recv_limit(chn) - b_data(&chn->buf); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2906 | if (max > len - l) |
| 2907 | max = len - l; |
| 2908 | |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 2909 | ret = ci_putblk(chn, str + l, max); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2910 | if (ret == -2 || ret == -3) { |
| 2911 | lua_pushinteger(L, -1); |
| 2912 | return 1; |
| 2913 | } |
Willy Tarreau | bc18da1 | 2015-03-13 14:00:47 +0100 | [diff] [blame] | 2914 | if (ret == -1) { |
| 2915 | chn->flags |= CF_WAKE_WRITE; |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 2916 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_append_yield, TICK_ETERNITY, 0)); |
Willy Tarreau | bc18da1 | 2015-03-13 14:00:47 +0100 | [diff] [blame] | 2917 | } |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2918 | l += ret; |
| 2919 | lua_pop(L, 1); |
| 2920 | lua_pushinteger(L, l); |
| 2921 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2922 | max = channel_recv_limit(chn) - b_data(&chn->buf); |
Willy Tarreau | a79021a | 2018-06-15 18:07:57 +0200 | [diff] [blame] | 2923 | if (max == 0 && co_data(chn) == 0) { |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 2924 | /* There are no space available, and the output buffer is empty. |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2925 | * in this case, we cannot add more data, so we cannot yield, |
| 2926 | * we return the amount of copyied data. |
| 2927 | */ |
| 2928 | return 1; |
| 2929 | } |
| 2930 | if (l < len) |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 2931 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_append_yield, TICK_ETERNITY, 0)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2932 | return 1; |
| 2933 | } |
| 2934 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 2935 | /* Just a wrapper of "hlua_channel_append_yield". It returns the length |
| 2936 | * of the written string, or -1 if the channel is closed or if the |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2937 | * buffer size is too little for the data. |
| 2938 | */ |
| 2939 | __LJMP static int hlua_channel_append(lua_State *L) |
| 2940 | { |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2941 | size_t len; |
| 2942 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2943 | MAY_LJMP(check_args(L, 2, "append")); |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2944 | MAY_LJMP(hlua_checkchannel(L, 1)); |
| 2945 | MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 2946 | MAY_LJMP(luaL_checkinteger(L, 3)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2947 | lua_pushinteger(L, 0); |
| 2948 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2949 | return MAY_LJMP(hlua_channel_append_yield(L, 0, 0)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2950 | } |
| 2951 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 2952 | /* Just a wrapper of "hlua_channel_append_yield". This wrapper starts |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2953 | * his process by cleaning the buffer. The result is a replacement |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 2954 | * of the current data. It returns the length of the written string, |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2955 | * or -1 if the channel is closed or if the buffer size is too |
| 2956 | * little for the data. |
| 2957 | */ |
| 2958 | __LJMP static int hlua_channel_set(lua_State *L) |
| 2959 | { |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 2960 | struct channel *chn; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2961 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2962 | MAY_LJMP(check_args(L, 2, "set")); |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2963 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2964 | lua_pushinteger(L, 0); |
| 2965 | |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 2966 | if (chn_strm(chn)->be->mode == PR_MODE_HTTP) |
| 2967 | WILL_LJMP(lua_error(L)); |
| 2968 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2969 | b_set_data(&chn->buf, co_data(chn)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2970 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2971 | return MAY_LJMP(hlua_channel_append_yield(L, 0, 0)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2972 | } |
| 2973 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 2974 | /* Append data in the output side of the buffer. This data is immediately |
| 2975 | * sent. The function returns the amount of data written. If the buffer |
| 2976 | * cannot contain the data, the function yields. The function returns -1 |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2977 | * if the channel is closed. |
| 2978 | */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2979 | __LJMP static int hlua_channel_send_yield(lua_State *L, int status, lua_KContext ctx) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2980 | { |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 2981 | struct channel *chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2982 | size_t len; |
| 2983 | const char *str = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 2984 | int l = MAY_LJMP(luaL_checkinteger(L, 3)); |
| 2985 | int max; |
Thierry FOURNIER | ef6a211 | 2015-03-05 17:45:34 +0100 | [diff] [blame] | 2986 | struct hlua *hlua = hlua_gethlua(L); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2987 | |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 2988 | if (chn_strm(chn)->be->mode == PR_MODE_HTTP) |
| 2989 | WILL_LJMP(lua_error(L)); |
| 2990 | |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 2991 | if (unlikely(channel_output_closed(chn))) { |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2992 | lua_pushinteger(L, -1); |
| 2993 | return 1; |
| 2994 | } |
| 2995 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 2996 | /* Check if the buffer is available because HAProxy doesn't allocate |
Thierry FOURNIER | 3e3a608 | 2015-03-05 17:06:12 +0100 | [diff] [blame] | 2997 | * the request buffer if its not required. |
| 2998 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2999 | if (chn->buf.size == 0) { |
Willy Tarreau | 4b962a4 | 2018-11-15 11:03:21 +0100 | [diff] [blame] | 3000 | si_rx_buff_blk(chn_prod(chn)); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 3001 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_send_yield, TICK_ETERNITY, 0)); |
Thierry FOURNIER | 3e3a608 | 2015-03-05 17:06:12 +0100 | [diff] [blame] | 3002 | } |
| 3003 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3004 | /* The written data will be immediately sent, so we can check |
| 3005 | * the available space without taking in account the reserve. |
| 3006 | * The reserve is guaranteed for the processing of incoming |
Thierry FOURNIER | deb5d73 | 2015-03-06 01:07:45 +0100 | [diff] [blame] | 3007 | * data, because the buffer will be flushed. |
| 3008 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3009 | max = b_room(&chn->buf); |
Thierry FOURNIER | deb5d73 | 2015-03-06 01:07:45 +0100 | [diff] [blame] | 3010 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3011 | /* If there is no space available, and the output buffer is empty. |
Thierry FOURNIER | deb5d73 | 2015-03-06 01:07:45 +0100 | [diff] [blame] | 3012 | * in this case, we cannot add more data, so we cannot yield, |
| 3013 | * we return the amount of copyied data. |
| 3014 | */ |
Willy Tarreau | a79021a | 2018-06-15 18:07:57 +0200 | [diff] [blame] | 3015 | if (max == 0 && co_data(chn) == 0) |
Thierry FOURNIER | deb5d73 | 2015-03-06 01:07:45 +0100 | [diff] [blame] | 3016 | return 1; |
| 3017 | |
| 3018 | /* Adjust the real required length. */ |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3019 | if (max > len - l) |
| 3020 | max = len - l; |
| 3021 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3022 | /* The buffer available size may be not contiguous. This test |
Thierry FOURNIER | deb5d73 | 2015-03-06 01:07:45 +0100 | [diff] [blame] | 3023 | * detects a non contiguous buffer and realign it. |
| 3024 | */ |
Willy Tarreau | 3f67999 | 2018-06-15 15:06:42 +0200 | [diff] [blame] | 3025 | if (ci_space_for_replace(chn) < max) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3026 | channel_slow_realign(chn, trash.area); |
Thierry FOURNIER | deb5d73 | 2015-03-06 01:07:45 +0100 | [diff] [blame] | 3027 | |
| 3028 | /* Copy input data in the buffer. */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3029 | max = b_rep_blk(&chn->buf, ci_head(chn), ci_head(chn), str + l, max); |
Thierry FOURNIER | deb5d73 | 2015-03-06 01:07:45 +0100 | [diff] [blame] | 3030 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3031 | /* buffer replace considers that the input part is filled. |
| 3032 | * so, I must forward these new data in the output part. |
| 3033 | */ |
Willy Tarreau | bcbd393 | 2018-06-06 07:13:22 +0200 | [diff] [blame] | 3034 | c_adv(chn, max); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3035 | |
| 3036 | l += max; |
| 3037 | lua_pop(L, 1); |
| 3038 | lua_pushinteger(L, l); |
| 3039 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3040 | /* If there is no space available, and the output buffer is empty. |
Thierry FOURNIER | deb5d73 | 2015-03-06 01:07:45 +0100 | [diff] [blame] | 3041 | * in this case, we cannot add more data, so we cannot yield, |
| 3042 | * we return the amount of copyied data. |
| 3043 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3044 | max = b_room(&chn->buf); |
Willy Tarreau | a79021a | 2018-06-15 18:07:57 +0200 | [diff] [blame] | 3045 | if (max == 0 && co_data(chn) == 0) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3046 | return 1; |
Thierry FOURNIER | deb5d73 | 2015-03-06 01:07:45 +0100 | [diff] [blame] | 3047 | |
Thierry FOURNIER | ef6a211 | 2015-03-05 17:45:34 +0100 | [diff] [blame] | 3048 | if (l < len) { |
| 3049 | /* If we are waiting for space in the response buffer, we |
| 3050 | * must set the flag WAKERESWR. This flag required the task |
| 3051 | * wake up if any activity is detected on the response buffer. |
| 3052 | */ |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3053 | if (chn->flags & CF_ISRESP) |
Thierry FOURNIER | ef6a211 | 2015-03-05 17:45:34 +0100 | [diff] [blame] | 3054 | HLUA_SET_WAKERESWR(hlua); |
Thierry FOURNIER | 53e08ec | 2015-03-06 00:35:53 +0100 | [diff] [blame] | 3055 | else |
| 3056 | HLUA_SET_WAKEREQWR(hlua); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 3057 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_send_yield, TICK_ETERNITY, 0)); |
Thierry FOURNIER | ef6a211 | 2015-03-05 17:45:34 +0100 | [diff] [blame] | 3058 | } |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3059 | |
| 3060 | return 1; |
| 3061 | } |
| 3062 | |
| 3063 | /* Just a wraper of "_hlua_channel_send". This wrapper permits |
| 3064 | * yield the LUA process, and resume it without checking the |
| 3065 | * input arguments. |
| 3066 | */ |
| 3067 | __LJMP static int hlua_channel_send(lua_State *L) |
| 3068 | { |
| 3069 | MAY_LJMP(check_args(L, 2, "send")); |
| 3070 | lua_pushinteger(L, 0); |
| 3071 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3072 | return MAY_LJMP(hlua_channel_send_yield(L, 0, 0)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3073 | } |
| 3074 | |
| 3075 | /* This function forward and amount of butes. The data pass from |
| 3076 | * the input side of the buffer to the output side, and can be |
| 3077 | * forwarded. This function never fails. |
| 3078 | * |
| 3079 | * The Lua function takes an amount of bytes to be forwarded in |
| 3080 | * imput. It returns the number of bytes forwarded. |
| 3081 | */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3082 | __LJMP static int hlua_channel_forward_yield(lua_State *L, int status, lua_KContext ctx) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3083 | { |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3084 | struct channel *chn; |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3085 | int len; |
| 3086 | int l; |
| 3087 | int max; |
Thierry FOURNIER | ef6a211 | 2015-03-05 17:45:34 +0100 | [diff] [blame] | 3088 | struct hlua *hlua = hlua_gethlua(L); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3089 | |
| 3090 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 3091 | |
| 3092 | if (chn_strm(chn)->be->mode == PR_MODE_HTTP) |
| 3093 | WILL_LJMP(lua_error(L)); |
| 3094 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3095 | len = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 3096 | l = MAY_LJMP(luaL_checkinteger(L, -1)); |
| 3097 | |
| 3098 | max = len - l; |
Willy Tarreau | a79021a | 2018-06-15 18:07:57 +0200 | [diff] [blame] | 3099 | if (max > ci_data(chn)) |
| 3100 | max = ci_data(chn); |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3101 | channel_forward(chn, max); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3102 | l += max; |
| 3103 | |
| 3104 | lua_pop(L, 1); |
| 3105 | lua_pushinteger(L, l); |
| 3106 | |
| 3107 | /* Check if it miss bytes to forward. */ |
| 3108 | if (l < len) { |
| 3109 | /* The the input channel or the output channel are closed, we |
| 3110 | * must return the amount of data forwarded. |
| 3111 | */ |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3112 | if (channel_input_closed(chn) || channel_output_closed(chn)) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3113 | return 1; |
| 3114 | |
Thierry FOURNIER | ef6a211 | 2015-03-05 17:45:34 +0100 | [diff] [blame] | 3115 | /* If we are waiting for space data in the response buffer, we |
| 3116 | * must set the flag WAKERESWR. This flag required the task |
| 3117 | * wake up if any activity is detected on the response buffer. |
| 3118 | */ |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3119 | if (chn->flags & CF_ISRESP) |
Thierry FOURNIER | ef6a211 | 2015-03-05 17:45:34 +0100 | [diff] [blame] | 3120 | HLUA_SET_WAKERESWR(hlua); |
Thierry FOURNIER | 53e08ec | 2015-03-06 00:35:53 +0100 | [diff] [blame] | 3121 | else |
| 3122 | HLUA_SET_WAKEREQWR(hlua); |
Thierry FOURNIER | ef6a211 | 2015-03-05 17:45:34 +0100 | [diff] [blame] | 3123 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3124 | /* Otherwise, we can yield waiting for new data in the inpout side. */ |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 3125 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_forward_yield, TICK_ETERNITY, 0)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3126 | } |
| 3127 | |
| 3128 | return 1; |
| 3129 | } |
| 3130 | |
| 3131 | /* Just check the input and prepare the stack for the previous |
| 3132 | * function "hlua_channel_forward_yield" |
| 3133 | */ |
| 3134 | __LJMP static int hlua_channel_forward(lua_State *L) |
| 3135 | { |
| 3136 | MAY_LJMP(check_args(L, 2, "forward")); |
| 3137 | MAY_LJMP(hlua_checkchannel(L, 1)); |
| 3138 | MAY_LJMP(luaL_checkinteger(L, 2)); |
| 3139 | |
| 3140 | lua_pushinteger(L, 0); |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3141 | return MAY_LJMP(hlua_channel_forward_yield(L, 0, 0)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3142 | } |
| 3143 | |
| 3144 | /* Just returns the number of bytes available in the input |
| 3145 | * side of the buffer. This function never fails. |
| 3146 | */ |
| 3147 | __LJMP static int hlua_channel_get_in_len(lua_State *L) |
| 3148 | { |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3149 | struct channel *chn; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3150 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3151 | MAY_LJMP(check_args(L, 1, "get_in_len")); |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3152 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Christopher Faulet | a3ceac1 | 2018-12-14 13:39:09 +0100 | [diff] [blame] | 3153 | if (IS_HTX_STRM(chn_strm(chn))) { |
| 3154 | struct htx *htx = htxbuf(&chn->buf); |
| 3155 | lua_pushinteger(L, htx->data - co_data(chn)); |
| 3156 | } |
| 3157 | else |
| 3158 | lua_pushinteger(L, ci_data(chn)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3159 | return 1; |
| 3160 | } |
| 3161 | |
Thierry FOURNIER / OZON.IO | 65192f3 | 2016-11-07 15:28:40 +0100 | [diff] [blame] | 3162 | /* Returns true if the channel is full. */ |
| 3163 | __LJMP static int hlua_channel_is_full(lua_State *L) |
| 3164 | { |
| 3165 | struct channel *chn; |
| 3166 | int rem; |
| 3167 | |
| 3168 | MAY_LJMP(check_args(L, 1, "is_full")); |
| 3169 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
| 3170 | |
Christopher Faulet | a3ceac1 | 2018-12-14 13:39:09 +0100 | [diff] [blame] | 3171 | if (IS_HTX_STRM(chn_strm(chn))) { |
| 3172 | struct htx *htx = htxbuf(&chn->buf); |
| 3173 | |
| 3174 | rem = htx_free_data_space(htx); |
| 3175 | } |
| 3176 | else |
| 3177 | rem = b_room(&chn->buf); |
| 3178 | |
Thierry FOURNIER / OZON.IO | 65192f3 | 2016-11-07 15:28:40 +0100 | [diff] [blame] | 3179 | rem -= global.tune.maxrewrite; /* Rewrite reserved size */ |
| 3180 | |
| 3181 | lua_pushboolean(L, rem <= 0); |
| 3182 | return 1; |
| 3183 | } |
| 3184 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3185 | /* Just returns the number of bytes available in the output |
| 3186 | * side of the buffer. This function never fails. |
| 3187 | */ |
| 3188 | __LJMP static int hlua_channel_get_out_len(lua_State *L) |
| 3189 | { |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3190 | struct channel *chn; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3191 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3192 | MAY_LJMP(check_args(L, 1, "get_out_len")); |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3193 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Willy Tarreau | a79021a | 2018-06-15 18:07:57 +0200 | [diff] [blame] | 3194 | lua_pushinteger(L, co_data(chn)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3195 | return 1; |
| 3196 | } |
| 3197 | |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3198 | /* |
| 3199 | * |
| 3200 | * |
| 3201 | * Class Fetches |
| 3202 | * |
| 3203 | * |
| 3204 | */ |
| 3205 | |
| 3206 | /* Returns a struct hlua_session if the stack entry "ud" is |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 3207 | * a class stream, otherwise it throws an error. |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3208 | */ |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 3209 | __LJMP static struct hlua_smp *hlua_checkfetches(lua_State *L, int ud) |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3210 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 3211 | return MAY_LJMP(hlua_checkudata(L, ud, class_fetches_ref)); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3212 | } |
| 3213 | |
| 3214 | /* This function creates and push in the stack a fetch object according |
| 3215 | * with a current TXN. |
| 3216 | */ |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 3217 | static int hlua_fetches_new(lua_State *L, struct hlua_txn *txn, unsigned int flags) |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3218 | { |
Willy Tarreau | 7073c47 | 2015-04-06 11:15:40 +0200 | [diff] [blame] | 3219 | struct hlua_smp *hsmp; |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3220 | |
| 3221 | /* Check stack size. */ |
| 3222 | if (!lua_checkstack(L, 3)) |
| 3223 | return 0; |
| 3224 | |
| 3225 | /* Create the object: obj[0] = userdata. |
| 3226 | * Note that the base of the Fetches object is the |
| 3227 | * transaction object. |
| 3228 | */ |
| 3229 | lua_newtable(L); |
Willy Tarreau | 7073c47 | 2015-04-06 11:15:40 +0200 | [diff] [blame] | 3230 | hsmp = lua_newuserdata(L, sizeof(*hsmp)); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3231 | lua_rawseti(L, -2, 0); |
| 3232 | |
Willy Tarreau | 7073c47 | 2015-04-06 11:15:40 +0200 | [diff] [blame] | 3233 | hsmp->s = txn->s; |
| 3234 | hsmp->p = txn->p; |
Thierry FOURNIER | c4eebc8 | 2015-11-02 10:01:59 +0100 | [diff] [blame] | 3235 | hsmp->dir = txn->dir; |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 3236 | hsmp->flags = flags; |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3237 | |
| 3238 | /* Pop a class sesison metatable and affect it to the userdata. */ |
| 3239 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_fetches_ref); |
| 3240 | lua_setmetatable(L, -2); |
| 3241 | |
| 3242 | return 1; |
| 3243 | } |
| 3244 | |
| 3245 | /* This function is an LUA binding. It is called with each sample-fetch. |
| 3246 | * It uses closure argument to store the associated sample-fetch. It |
| 3247 | * returns only one argument or throws an error. An error is thrown |
| 3248 | * only if an error is encountered during the argument parsing. If |
| 3249 | * the "sample-fetch" function fails, nil is returned. |
| 3250 | */ |
| 3251 | __LJMP static int hlua_run_sample_fetch(lua_State *L) |
| 3252 | { |
Willy Tarreau | b2ccb56 | 2015-04-06 11:11:15 +0200 | [diff] [blame] | 3253 | struct hlua_smp *hsmp; |
Willy Tarreau | 2ec2274 | 2015-03-10 14:27:20 +0100 | [diff] [blame] | 3254 | struct sample_fetch *f; |
Frédéric Lécaille | f874a83 | 2018-06-15 13:56:04 +0200 | [diff] [blame] | 3255 | struct arg args[ARGM_NBARGS + 1] = {{0}}; |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3256 | int i; |
| 3257 | struct sample smp; |
| 3258 | |
| 3259 | /* Get closure arguments. */ |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 3260 | f = lua_touserdata(L, lua_upvalueindex(1)); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3261 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3262 | /* Get traditional arguments. */ |
Willy Tarreau | b2ccb56 | 2015-04-06 11:11:15 +0200 | [diff] [blame] | 3263 | hsmp = MAY_LJMP(hlua_checkfetches(L, 1)); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3264 | |
Thierry FOURNIER | ca98866 | 2015-12-20 18:43:03 +0100 | [diff] [blame] | 3265 | /* Check execution authorization. */ |
| 3266 | if (f->use & SMP_USE_HTTP_ANY && |
| 3267 | !(hsmp->flags & HLUA_F_MAY_USE_HTTP)) { |
| 3268 | lua_pushfstring(L, "the sample-fetch '%s' needs an HTTP parser which " |
| 3269 | "is not available in Lua services", f->kw); |
| 3270 | WILL_LJMP(lua_error(L)); |
| 3271 | } |
| 3272 | |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3273 | /* Get extra arguments. */ |
| 3274 | for (i = 0; i < lua_gettop(L) - 1; i++) { |
| 3275 | if (i >= ARGM_NBARGS) |
| 3276 | break; |
| 3277 | hlua_lua2arg(L, i + 2, &args[i]); |
| 3278 | } |
| 3279 | args[i].type = ARGT_STOP; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3280 | args[i].data.str.area = NULL; |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3281 | |
| 3282 | /* Check arguments. */ |
Willy Tarreau | b2ccb56 | 2015-04-06 11:11:15 +0200 | [diff] [blame] | 3283 | MAY_LJMP(hlua_lua2arg_check(L, 2, args, f->arg_mask, hsmp->p)); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3284 | |
| 3285 | /* Run the special args checker. */ |
Willy Tarreau | 2ec2274 | 2015-03-10 14:27:20 +0100 | [diff] [blame] | 3286 | if (f->val_args && !f->val_args(args, NULL)) { |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3287 | lua_pushfstring(L, "error in arguments"); |
| 3288 | WILL_LJMP(lua_error(L)); |
| 3289 | } |
| 3290 | |
| 3291 | /* Initialise the sample. */ |
| 3292 | memset(&smp, 0, sizeof(smp)); |
| 3293 | |
| 3294 | /* Run the sample fetch process. */ |
Willy Tarreau | 1777ea6 | 2016-03-10 16:15:46 +0100 | [diff] [blame] | 3295 | smp_set_owner(&smp, hsmp->p, hsmp->s->sess, hsmp->s, hsmp->dir & SMP_OPT_DIR); |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 3296 | if (!f->process(args, &smp, f->kw, f->private)) { |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 3297 | if (hsmp->flags & HLUA_F_AS_STRING) |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 3298 | lua_pushstring(L, ""); |
| 3299 | else |
| 3300 | lua_pushnil(L); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3301 | return 1; |
| 3302 | } |
| 3303 | |
| 3304 | /* Convert the returned sample in lua value. */ |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 3305 | if (hsmp->flags & HLUA_F_AS_STRING) |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 3306 | hlua_smp2lua_str(L, &smp); |
| 3307 | else |
| 3308 | hlua_smp2lua(L, &smp); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3309 | return 1; |
| 3310 | } |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3311 | |
| 3312 | /* |
| 3313 | * |
| 3314 | * |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3315 | * Class Converters |
| 3316 | * |
| 3317 | * |
| 3318 | */ |
| 3319 | |
| 3320 | /* Returns a struct hlua_session if the stack entry "ud" is |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 3321 | * a class stream, otherwise it throws an error. |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3322 | */ |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 3323 | __LJMP static struct hlua_smp *hlua_checkconverters(lua_State *L, int ud) |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3324 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 3325 | return MAY_LJMP(hlua_checkudata(L, ud, class_converters_ref)); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3326 | } |
| 3327 | |
| 3328 | /* This function creates and push in the stack a Converters object |
| 3329 | * according with a current TXN. |
| 3330 | */ |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 3331 | static int hlua_converters_new(lua_State *L, struct hlua_txn *txn, unsigned int flags) |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3332 | { |
Willy Tarreau | 7073c47 | 2015-04-06 11:15:40 +0200 | [diff] [blame] | 3333 | struct hlua_smp *hsmp; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3334 | |
| 3335 | /* Check stack size. */ |
| 3336 | if (!lua_checkstack(L, 3)) |
| 3337 | return 0; |
| 3338 | |
| 3339 | /* Create the object: obj[0] = userdata. |
| 3340 | * Note that the base of the Converters object is the |
| 3341 | * same than the TXN object. |
| 3342 | */ |
| 3343 | lua_newtable(L); |
Willy Tarreau | 7073c47 | 2015-04-06 11:15:40 +0200 | [diff] [blame] | 3344 | hsmp = lua_newuserdata(L, sizeof(*hsmp)); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3345 | lua_rawseti(L, -2, 0); |
| 3346 | |
Willy Tarreau | 7073c47 | 2015-04-06 11:15:40 +0200 | [diff] [blame] | 3347 | hsmp->s = txn->s; |
| 3348 | hsmp->p = txn->p; |
Thierry FOURNIER | c4eebc8 | 2015-11-02 10:01:59 +0100 | [diff] [blame] | 3349 | hsmp->dir = txn->dir; |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 3350 | hsmp->flags = flags; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3351 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 3352 | /* Pop a class stream metatable and affect it to the table. */ |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3353 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_converters_ref); |
| 3354 | lua_setmetatable(L, -2); |
| 3355 | |
| 3356 | return 1; |
| 3357 | } |
| 3358 | |
| 3359 | /* This function is an LUA binding. It is called with each converter. |
| 3360 | * It uses closure argument to store the associated converter. It |
| 3361 | * returns only one argument or throws an error. An error is thrown |
| 3362 | * only if an error is encountered during the argument parsing. If |
| 3363 | * the converter function function fails, nil is returned. |
| 3364 | */ |
| 3365 | __LJMP static int hlua_run_sample_conv(lua_State *L) |
| 3366 | { |
Willy Tarreau | da5f108 | 2015-04-06 11:17:13 +0200 | [diff] [blame] | 3367 | struct hlua_smp *hsmp; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3368 | struct sample_conv *conv; |
Frédéric Lécaille | f874a83 | 2018-06-15 13:56:04 +0200 | [diff] [blame] | 3369 | struct arg args[ARGM_NBARGS + 1] = {{0}}; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3370 | int i; |
| 3371 | struct sample smp; |
| 3372 | |
| 3373 | /* Get closure arguments. */ |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 3374 | conv = lua_touserdata(L, lua_upvalueindex(1)); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3375 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3376 | /* Get traditional arguments. */ |
Willy Tarreau | da5f108 | 2015-04-06 11:17:13 +0200 | [diff] [blame] | 3377 | hsmp = MAY_LJMP(hlua_checkconverters(L, 1)); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3378 | |
| 3379 | /* Get extra arguments. */ |
| 3380 | for (i = 0; i < lua_gettop(L) - 2; i++) { |
| 3381 | if (i >= ARGM_NBARGS) |
| 3382 | break; |
| 3383 | hlua_lua2arg(L, i + 3, &args[i]); |
| 3384 | } |
| 3385 | args[i].type = ARGT_STOP; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3386 | args[i].data.str.area = NULL; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3387 | |
| 3388 | /* Check arguments. */ |
Willy Tarreau | da5f108 | 2015-04-06 11:17:13 +0200 | [diff] [blame] | 3389 | MAY_LJMP(hlua_lua2arg_check(L, 3, args, conv->arg_mask, hsmp->p)); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3390 | |
| 3391 | /* Run the special args checker. */ |
| 3392 | if (conv->val_args && !conv->val_args(args, conv, "", 0, NULL)) { |
| 3393 | hlua_pusherror(L, "error in arguments"); |
| 3394 | WILL_LJMP(lua_error(L)); |
| 3395 | } |
| 3396 | |
| 3397 | /* Initialise the sample. */ |
| 3398 | if (!hlua_lua2smp(L, 2, &smp)) { |
| 3399 | hlua_pusherror(L, "error in the input argument"); |
| 3400 | WILL_LJMP(lua_error(L)); |
| 3401 | } |
| 3402 | |
Willy Tarreau | 1777ea6 | 2016-03-10 16:15:46 +0100 | [diff] [blame] | 3403 | smp_set_owner(&smp, hsmp->p, hsmp->s->sess, hsmp->s, hsmp->dir & SMP_OPT_DIR); |
| 3404 | |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3405 | /* Apply expected cast. */ |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 3406 | if (!sample_casts[smp.data.type][conv->in_type]) { |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3407 | hlua_pusherror(L, "invalid input argument: cannot cast '%s' to '%s'", |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 3408 | smp_to_type[smp.data.type], smp_to_type[conv->in_type]); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3409 | WILL_LJMP(lua_error(L)); |
| 3410 | } |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 3411 | if (sample_casts[smp.data.type][conv->in_type] != c_none && |
| 3412 | !sample_casts[smp.data.type][conv->in_type](&smp)) { |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3413 | hlua_pusherror(L, "error during the input argument casting"); |
| 3414 | WILL_LJMP(lua_error(L)); |
| 3415 | } |
| 3416 | |
| 3417 | /* Run the sample conversion process. */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 3418 | if (!conv->process(args, &smp, conv->private)) { |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 3419 | if (hsmp->flags & HLUA_F_AS_STRING) |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 3420 | lua_pushstring(L, ""); |
| 3421 | else |
Willy Tarreau | a678b43 | 2015-08-28 10:14:59 +0200 | [diff] [blame] | 3422 | lua_pushnil(L); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3423 | return 1; |
| 3424 | } |
| 3425 | |
| 3426 | /* Convert the returned sample in lua value. */ |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 3427 | if (hsmp->flags & HLUA_F_AS_STRING) |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 3428 | hlua_smp2lua_str(L, &smp); |
| 3429 | else |
| 3430 | hlua_smp2lua(L, &smp); |
Willy Tarreau | a678b43 | 2015-08-28 10:14:59 +0200 | [diff] [blame] | 3431 | return 1; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3432 | } |
| 3433 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3434 | /* |
| 3435 | * |
| 3436 | * |
| 3437 | * Class AppletTCP |
| 3438 | * |
| 3439 | * |
| 3440 | */ |
| 3441 | |
| 3442 | /* Returns a struct hlua_txn if the stack entry "ud" is |
| 3443 | * a class stream, otherwise it throws an error. |
| 3444 | */ |
| 3445 | __LJMP static struct hlua_appctx *hlua_checkapplet_tcp(lua_State *L, int ud) |
| 3446 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 3447 | return MAY_LJMP(hlua_checkudata(L, ud, class_applet_tcp_ref)); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3448 | } |
| 3449 | |
| 3450 | /* This function creates and push in the stack an Applet object |
| 3451 | * according with a current TXN. |
| 3452 | */ |
| 3453 | static int hlua_applet_tcp_new(lua_State *L, struct appctx *ctx) |
| 3454 | { |
| 3455 | struct hlua_appctx *appctx; |
| 3456 | struct stream_interface *si = ctx->owner; |
| 3457 | struct stream *s = si_strm(si); |
| 3458 | struct proxy *p = s->be; |
| 3459 | |
| 3460 | /* Check stack size. */ |
| 3461 | if (!lua_checkstack(L, 3)) |
| 3462 | return 0; |
| 3463 | |
| 3464 | /* Create the object: obj[0] = userdata. |
| 3465 | * Note that the base of the Converters object is the |
| 3466 | * same than the TXN object. |
| 3467 | */ |
| 3468 | lua_newtable(L); |
| 3469 | appctx = lua_newuserdata(L, sizeof(*appctx)); |
| 3470 | lua_rawseti(L, -2, 0); |
| 3471 | appctx->appctx = ctx; |
| 3472 | appctx->htxn.s = s; |
| 3473 | appctx->htxn.p = p; |
| 3474 | |
| 3475 | /* Create the "f" field that contains a list of fetches. */ |
| 3476 | lua_pushstring(L, "f"); |
| 3477 | if (!hlua_fetches_new(L, &appctx->htxn, 0)) |
| 3478 | return 0; |
| 3479 | lua_settable(L, -3); |
| 3480 | |
| 3481 | /* Create the "sf" field that contains a list of stringsafe fetches. */ |
| 3482 | lua_pushstring(L, "sf"); |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 3483 | if (!hlua_fetches_new(L, &appctx->htxn, HLUA_F_AS_STRING)) |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3484 | return 0; |
| 3485 | lua_settable(L, -3); |
| 3486 | |
| 3487 | /* Create the "c" field that contains a list of converters. */ |
| 3488 | lua_pushstring(L, "c"); |
| 3489 | if (!hlua_converters_new(L, &appctx->htxn, 0)) |
| 3490 | return 0; |
| 3491 | lua_settable(L, -3); |
| 3492 | |
| 3493 | /* Create the "sc" field that contains a list of stringsafe converters. */ |
| 3494 | lua_pushstring(L, "sc"); |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 3495 | if (!hlua_converters_new(L, &appctx->htxn, HLUA_F_AS_STRING)) |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3496 | return 0; |
| 3497 | lua_settable(L, -3); |
| 3498 | |
| 3499 | /* Pop a class stream metatable and affect it to the table. */ |
| 3500 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_applet_tcp_ref); |
| 3501 | lua_setmetatable(L, -2); |
| 3502 | |
| 3503 | return 1; |
| 3504 | } |
| 3505 | |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 3506 | __LJMP static int hlua_applet_tcp_set_var(lua_State *L) |
| 3507 | { |
| 3508 | struct hlua_appctx *appctx; |
| 3509 | struct stream *s; |
| 3510 | const char *name; |
| 3511 | size_t len; |
| 3512 | struct sample smp; |
| 3513 | |
| 3514 | MAY_LJMP(check_args(L, 3, "set_var")); |
| 3515 | |
| 3516 | /* It is useles to retrieve the stream, but this function |
| 3517 | * runs only in a stream context. |
| 3518 | */ |
| 3519 | appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 3520 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 3521 | s = appctx->htxn.s; |
| 3522 | |
| 3523 | /* Converts the third argument in a sample. */ |
| 3524 | hlua_lua2smp(L, 3, &smp); |
| 3525 | |
| 3526 | /* Store the sample in a variable. */ |
| 3527 | smp_set_owner(&smp, s->be, s->sess, s, 0); |
| 3528 | vars_set_by_name(name, len, &smp); |
| 3529 | return 0; |
| 3530 | } |
| 3531 | |
| 3532 | __LJMP static int hlua_applet_tcp_unset_var(lua_State *L) |
| 3533 | { |
| 3534 | struct hlua_appctx *appctx; |
| 3535 | struct stream *s; |
| 3536 | const char *name; |
| 3537 | size_t len; |
| 3538 | struct sample smp; |
| 3539 | |
| 3540 | MAY_LJMP(check_args(L, 2, "unset_var")); |
| 3541 | |
| 3542 | /* It is useles to retrieve the stream, but this function |
| 3543 | * runs only in a stream context. |
| 3544 | */ |
| 3545 | appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 3546 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 3547 | s = appctx->htxn.s; |
| 3548 | |
| 3549 | /* Unset the variable. */ |
| 3550 | smp_set_owner(&smp, s->be, s->sess, s, 0); |
| 3551 | vars_unset_by_name(name, len, &smp); |
| 3552 | return 0; |
| 3553 | } |
| 3554 | |
| 3555 | __LJMP static int hlua_applet_tcp_get_var(lua_State *L) |
| 3556 | { |
| 3557 | struct hlua_appctx *appctx; |
| 3558 | struct stream *s; |
| 3559 | const char *name; |
| 3560 | size_t len; |
| 3561 | struct sample smp; |
| 3562 | |
| 3563 | MAY_LJMP(check_args(L, 2, "get_var")); |
| 3564 | |
| 3565 | /* It is useles to retrieve the stream, but this function |
| 3566 | * runs only in a stream context. |
| 3567 | */ |
| 3568 | appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 3569 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 3570 | s = appctx->htxn.s; |
| 3571 | |
| 3572 | smp_set_owner(&smp, s->be, s->sess, s, 0); |
| 3573 | if (!vars_get_by_name(name, len, &smp)) { |
| 3574 | lua_pushnil(L); |
| 3575 | return 1; |
| 3576 | } |
| 3577 | |
| 3578 | return hlua_smp2lua(L, &smp); |
| 3579 | } |
| 3580 | |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 3581 | __LJMP static int hlua_applet_tcp_set_priv(lua_State *L) |
| 3582 | { |
| 3583 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 3584 | struct stream *s = appctx->htxn.s; |
Thierry FOURNIER | 3b0a6d4 | 2016-12-16 08:48:32 +0100 | [diff] [blame] | 3585 | struct hlua *hlua; |
| 3586 | |
| 3587 | /* Note that this hlua struct is from the session and not from the applet. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 3588 | if (!s->hlua) |
| 3589 | return 0; |
| 3590 | hlua = s->hlua; |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 3591 | |
| 3592 | MAY_LJMP(check_args(L, 2, "set_priv")); |
| 3593 | |
| 3594 | /* Remove previous value. */ |
Thierry FOURNIER | e068b60 | 2017-04-26 13:27:05 +0200 | [diff] [blame] | 3595 | luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref); |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 3596 | |
| 3597 | /* Get and store new value. */ |
| 3598 | lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */ |
| 3599 | hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */ |
| 3600 | |
| 3601 | return 0; |
| 3602 | } |
| 3603 | |
| 3604 | __LJMP static int hlua_applet_tcp_get_priv(lua_State *L) |
| 3605 | { |
| 3606 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 3607 | struct stream *s = appctx->htxn.s; |
Thierry FOURNIER | 3b0a6d4 | 2016-12-16 08:48:32 +0100 | [diff] [blame] | 3608 | struct hlua *hlua; |
| 3609 | |
| 3610 | /* Note that this hlua struct is from the session and not from the applet. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 3611 | if (!s->hlua) { |
| 3612 | lua_pushnil(L); |
| 3613 | return 1; |
| 3614 | } |
| 3615 | hlua = s->hlua; |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 3616 | |
| 3617 | /* Push configuration index in the stack. */ |
| 3618 | lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref); |
| 3619 | |
| 3620 | return 1; |
| 3621 | } |
| 3622 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3623 | /* If expected data not yet available, it returns a yield. This function |
| 3624 | * consumes the data in the buffer. It returns a string containing the |
| 3625 | * data. This string can be empty. |
| 3626 | */ |
| 3627 | __LJMP static int hlua_applet_tcp_getline_yield(lua_State *L, int status, lua_KContext ctx) |
| 3628 | { |
| 3629 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 3630 | struct stream_interface *si = appctx->appctx->owner; |
| 3631 | int ret; |
Willy Tarreau | 206ba83 | 2018-06-14 15:27:31 +0200 | [diff] [blame] | 3632 | const char *blk1; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 3633 | size_t len1; |
Willy Tarreau | 206ba83 | 2018-06-14 15:27:31 +0200 | [diff] [blame] | 3634 | const char *blk2; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 3635 | size_t len2; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3636 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3637 | /* Read the maximum amount of data available. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 3638 | ret = co_getline_nc(si_oc(si), &blk1, &len1, &blk2, &len2); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3639 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3640 | /* Data not yet available. return yield. */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3641 | if (ret == 0) { |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 3642 | si_cant_get(si); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 3643 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_getline_yield, TICK_ETERNITY, 0)); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3644 | } |
| 3645 | |
| 3646 | /* End of data: commit the total strings and return. */ |
| 3647 | if (ret < 0) { |
| 3648 | luaL_pushresult(&appctx->b); |
| 3649 | return 1; |
| 3650 | } |
| 3651 | |
| 3652 | /* Ensure that the block 2 length is usable. */ |
| 3653 | if (ret == 1) |
| 3654 | len2 = 0; |
| 3655 | |
| 3656 | /* dont check the max length read and dont check. */ |
| 3657 | luaL_addlstring(&appctx->b, blk1, len1); |
| 3658 | luaL_addlstring(&appctx->b, blk2, len2); |
| 3659 | |
| 3660 | /* Consume input channel output buffer data. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 3661 | co_skip(si_oc(si), len1 + len2); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3662 | luaL_pushresult(&appctx->b); |
| 3663 | return 1; |
| 3664 | } |
| 3665 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3666 | /* Check arguments for the function "hlua_channel_get_yield". */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3667 | __LJMP static int hlua_applet_tcp_getline(lua_State *L) |
| 3668 | { |
| 3669 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 3670 | |
| 3671 | /* Initialise the string catenation. */ |
| 3672 | luaL_buffinit(L, &appctx->b); |
| 3673 | |
| 3674 | return MAY_LJMP(hlua_applet_tcp_getline_yield(L, 0, 0)); |
| 3675 | } |
| 3676 | |
| 3677 | /* If expected data not yet available, it returns a yield. This function |
| 3678 | * consumes the data in the buffer. It returns a string containing the |
| 3679 | * data. This string can be empty. |
| 3680 | */ |
| 3681 | __LJMP static int hlua_applet_tcp_recv_yield(lua_State *L, int status, lua_KContext ctx) |
| 3682 | { |
| 3683 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 3684 | struct stream_interface *si = appctx->appctx->owner; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 3685 | size_t len = MAY_LJMP(luaL_checkinteger(L, 2)); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3686 | int ret; |
Willy Tarreau | 206ba83 | 2018-06-14 15:27:31 +0200 | [diff] [blame] | 3687 | const char *blk1; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 3688 | size_t len1; |
Willy Tarreau | 206ba83 | 2018-06-14 15:27:31 +0200 | [diff] [blame] | 3689 | const char *blk2; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 3690 | size_t len2; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3691 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3692 | /* Read the maximum amount of data available. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 3693 | ret = co_getblk_nc(si_oc(si), &blk1, &len1, &blk2, &len2); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3694 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3695 | /* Data not yet available. return yield. */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3696 | if (ret == 0) { |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 3697 | si_cant_get(si); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 3698 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_recv_yield, TICK_ETERNITY, 0)); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3699 | } |
| 3700 | |
| 3701 | /* End of data: commit the total strings and return. */ |
| 3702 | if (ret < 0) { |
| 3703 | luaL_pushresult(&appctx->b); |
| 3704 | return 1; |
| 3705 | } |
| 3706 | |
| 3707 | /* Ensure that the block 2 length is usable. */ |
| 3708 | if (ret == 1) |
| 3709 | len2 = 0; |
| 3710 | |
| 3711 | if (len == -1) { |
| 3712 | |
| 3713 | /* If len == -1, catenate all the data avalaile and |
| 3714 | * yield because we want to get all the data until |
| 3715 | * the end of data stream. |
| 3716 | */ |
| 3717 | luaL_addlstring(&appctx->b, blk1, len1); |
| 3718 | luaL_addlstring(&appctx->b, blk2, len2); |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 3719 | co_skip(si_oc(si), len1 + len2); |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 3720 | si_cant_get(si); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 3721 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_recv_yield, TICK_ETERNITY, 0)); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3722 | |
| 3723 | } else { |
| 3724 | |
| 3725 | /* Copy the fisrt block caping to the length required. */ |
| 3726 | if (len1 > len) |
| 3727 | len1 = len; |
| 3728 | luaL_addlstring(&appctx->b, blk1, len1); |
| 3729 | len -= len1; |
| 3730 | |
| 3731 | /* Copy the second block. */ |
| 3732 | if (len2 > len) |
| 3733 | len2 = len; |
| 3734 | luaL_addlstring(&appctx->b, blk2, len2); |
| 3735 | len -= len2; |
| 3736 | |
| 3737 | /* Consume input channel output buffer data. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 3738 | co_skip(si_oc(si), len1 + len2); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3739 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3740 | /* If there is no other data available, yield waiting for new data. */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3741 | if (len > 0) { |
| 3742 | lua_pushinteger(L, len); |
| 3743 | lua_replace(L, 2); |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 3744 | si_cant_get(si); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 3745 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_recv_yield, TICK_ETERNITY, 0)); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3746 | } |
| 3747 | |
| 3748 | /* return the result. */ |
| 3749 | luaL_pushresult(&appctx->b); |
| 3750 | return 1; |
| 3751 | } |
| 3752 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3753 | /* we never execute this */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3754 | hlua_pusherror(L, "Lua: internal error"); |
| 3755 | WILL_LJMP(lua_error(L)); |
| 3756 | return 0; |
| 3757 | } |
| 3758 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3759 | /* Check arguments for the function "hlua_channel_get_yield". */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3760 | __LJMP static int hlua_applet_tcp_recv(lua_State *L) |
| 3761 | { |
| 3762 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 3763 | int len = -1; |
| 3764 | |
| 3765 | if (lua_gettop(L) > 2) |
| 3766 | WILL_LJMP(luaL_error(L, "The 'recv' function requires between 1 and 2 arguments.")); |
| 3767 | if (lua_gettop(L) >= 2) { |
| 3768 | len = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 3769 | lua_pop(L, 1); |
| 3770 | } |
| 3771 | |
| 3772 | /* Confirm or set the required length */ |
| 3773 | lua_pushinteger(L, len); |
| 3774 | |
| 3775 | /* Initialise the string catenation. */ |
| 3776 | luaL_buffinit(L, &appctx->b); |
| 3777 | |
| 3778 | return MAY_LJMP(hlua_applet_tcp_recv_yield(L, 0, 0)); |
| 3779 | } |
| 3780 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3781 | /* Append data in the output side of the buffer. This data is immediately |
| 3782 | * sent. The function returns the amount of data written. If the buffer |
| 3783 | * cannot contain the data, the function yields. The function returns -1 |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3784 | * if the channel is closed. |
| 3785 | */ |
| 3786 | __LJMP static int hlua_applet_tcp_send_yield(lua_State *L, int status, lua_KContext ctx) |
| 3787 | { |
| 3788 | size_t len; |
| 3789 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 3790 | const char *str = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 3791 | int l = MAY_LJMP(luaL_checkinteger(L, 3)); |
| 3792 | struct stream_interface *si = appctx->appctx->owner; |
| 3793 | struct channel *chn = si_ic(si); |
| 3794 | int max; |
| 3795 | |
| 3796 | /* Get the max amount of data which can write as input in the channel. */ |
| 3797 | max = channel_recv_max(chn); |
| 3798 | if (max > (len - l)) |
| 3799 | max = len - l; |
| 3800 | |
| 3801 | /* Copy data. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 3802 | ci_putblk(chn, str + l, max); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3803 | |
| 3804 | /* update counters. */ |
| 3805 | l += max; |
| 3806 | lua_pop(L, 1); |
| 3807 | lua_pushinteger(L, l); |
| 3808 | |
| 3809 | /* If some data is not send, declares the situation to the |
| 3810 | * applet, and returns a yield. |
| 3811 | */ |
| 3812 | if (l < len) { |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 3813 | si_rx_room_blk(si); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 3814 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_tcp_send_yield, TICK_ETERNITY, 0)); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3815 | } |
| 3816 | |
| 3817 | return 1; |
| 3818 | } |
| 3819 | |
| 3820 | /* Just a wraper of "hlua_applet_tcp_send_yield". This wrapper permits |
| 3821 | * yield the LUA process, and resume it without checking the |
| 3822 | * input arguments. |
| 3823 | */ |
| 3824 | __LJMP static int hlua_applet_tcp_send(lua_State *L) |
| 3825 | { |
| 3826 | MAY_LJMP(check_args(L, 2, "send")); |
| 3827 | lua_pushinteger(L, 0); |
| 3828 | |
| 3829 | return MAY_LJMP(hlua_applet_tcp_send_yield(L, 0, 0)); |
| 3830 | } |
| 3831 | |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3832 | /* |
| 3833 | * |
| 3834 | * |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 3835 | * Class AppletHTTP |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 3836 | * |
| 3837 | * |
| 3838 | */ |
| 3839 | |
| 3840 | /* Returns a struct hlua_txn if the stack entry "ud" is |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 3841 | * a class stream, otherwise it throws an error. |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 3842 | */ |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 3843 | __LJMP static struct hlua_appctx *hlua_checkapplet_http(lua_State *L, int ud) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 3844 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 3845 | return MAY_LJMP(hlua_checkudata(L, ud, class_applet_http_ref)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 3846 | } |
| 3847 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 3848 | /* This function creates and push in the stack an Applet object |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 3849 | * according with a current TXN. |
| 3850 | */ |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 3851 | static int hlua_applet_http_new(lua_State *L, struct appctx *ctx) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 3852 | { |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 3853 | struct hlua_appctx *appctx; |
Thierry FOURNIER | 841475e | 2015-12-11 17:10:09 +0100 | [diff] [blame] | 3854 | struct hlua_txn htxn; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 3855 | struct stream_interface *si = ctx->owner; |
| 3856 | struct stream *s = si_strm(si); |
| 3857 | struct proxy *px = s->be; |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 3858 | struct htx *htx; |
| 3859 | struct htx_blk *blk; |
| 3860 | struct htx_sl *sl; |
| 3861 | struct ist path; |
| 3862 | unsigned long long len = 0; |
| 3863 | int32_t pos; |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 3864 | |
| 3865 | /* Check stack size. */ |
| 3866 | if (!lua_checkstack(L, 3)) |
| 3867 | return 0; |
| 3868 | |
| 3869 | /* Create the object: obj[0] = userdata. |
| 3870 | * Note that the base of the Converters object is the |
| 3871 | * same than the TXN object. |
| 3872 | */ |
| 3873 | lua_newtable(L); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 3874 | appctx = lua_newuserdata(L, sizeof(*appctx)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 3875 | lua_rawseti(L, -2, 0); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 3876 | appctx->appctx = ctx; |
| 3877 | appctx->appctx->ctx.hlua_apphttp.status = 200; /* Default status code returned. */ |
Robin H. Johnson | 52f5db2 | 2017-01-01 13:10:52 -0800 | [diff] [blame] | 3878 | appctx->appctx->ctx.hlua_apphttp.reason = NULL; /* Use default reason based on status */ |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 3879 | appctx->htxn.s = s; |
| 3880 | appctx->htxn.p = px; |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 3881 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 3882 | /* Create the "f" field that contains a list of fetches. */ |
| 3883 | lua_pushstring(L, "f"); |
| 3884 | if (!hlua_fetches_new(L, &appctx->htxn, 0)) |
| 3885 | return 0; |
| 3886 | lua_settable(L, -3); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 3887 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 3888 | /* Create the "sf" field that contains a list of stringsafe fetches. */ |
| 3889 | lua_pushstring(L, "sf"); |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 3890 | if (!hlua_fetches_new(L, &appctx->htxn, HLUA_F_AS_STRING)) |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 3891 | return 0; |
| 3892 | lua_settable(L, -3); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 3893 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 3894 | /* Create the "c" field that contains a list of converters. */ |
| 3895 | lua_pushstring(L, "c"); |
| 3896 | if (!hlua_converters_new(L, &appctx->htxn, 0)) |
| 3897 | return 0; |
| 3898 | lua_settable(L, -3); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 3899 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 3900 | /* Create the "sc" field that contains a list of stringsafe converters. */ |
| 3901 | lua_pushstring(L, "sc"); |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 3902 | if (!hlua_converters_new(L, &appctx->htxn, HLUA_F_AS_STRING)) |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 3903 | return 0; |
| 3904 | lua_settable(L, -3); |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 3905 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 3906 | htx = htxbuf(&s->req.buf); |
| 3907 | blk = htx_get_first_blk(htx); |
| 3908 | BUG_ON(htx_get_blk_type(blk) != HTX_BLK_REQ_SL); |
| 3909 | sl = htx_get_blk_ptr(htx, blk); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 3910 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 3911 | /* Stores the request method. */ |
| 3912 | lua_pushstring(L, "method"); |
| 3913 | lua_pushlstring(L, HTX_SL_REQ_MPTR(sl), HTX_SL_REQ_MLEN(sl)); |
| 3914 | lua_settable(L, -3); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 3915 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 3916 | /* Stores the http version. */ |
| 3917 | lua_pushstring(L, "version"); |
| 3918 | lua_pushlstring(L, HTX_SL_REQ_VPTR(sl), HTX_SL_REQ_VLEN(sl)); |
| 3919 | lua_settable(L, -3); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 3920 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 3921 | /* creates an array of headers. hlua_http_get_headers() crates and push |
| 3922 | * the array on the top of the stack. |
| 3923 | */ |
| 3924 | lua_pushstring(L, "headers"); |
| 3925 | htxn.s = s; |
| 3926 | htxn.p = px; |
| 3927 | htxn.dir = SMP_OPT_DIR_REQ; |
| 3928 | if (!hlua_http_get_headers(L, &htxn, &htxn.s->txn->req)) |
| 3929 | return 0; |
| 3930 | lua_settable(L, -3); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 3931 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 3932 | path = http_get_path(htx_sl_req_uri(sl)); |
| 3933 | if (path.ptr) { |
| 3934 | char *p, *q, *end; |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 3935 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 3936 | p = path.ptr; |
| 3937 | end = path.ptr + path.len; |
| 3938 | q = p; |
| 3939 | while (q < end && *q != '?') |
| 3940 | q++; |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 3941 | |
Thierry FOURNIER | 7d38863 | 2017-02-22 02:06:16 +0100 | [diff] [blame] | 3942 | /* Stores the request path. */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 3943 | lua_pushstring(L, "path"); |
| 3944 | lua_pushlstring(L, p, q - p); |
Thierry FOURNIER | 7d38863 | 2017-02-22 02:06:16 +0100 | [diff] [blame] | 3945 | lua_settable(L, -3); |
Thierry FOURNIER | 04c57b3 | 2015-03-18 13:43:10 +0100 | [diff] [blame] | 3946 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 3947 | /* Stores the query string. */ |
| 3948 | lua_pushstring(L, "qs"); |
| 3949 | if (*q == '?') |
| 3950 | q++; |
| 3951 | lua_pushlstring(L, q, end - q); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 3952 | lua_settable(L, -3); |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 3953 | } |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 3954 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 3955 | for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) { |
| 3956 | struct htx_blk *blk = htx_get_blk(htx, pos); |
| 3957 | enum htx_blk_type type = htx_get_blk_type(blk); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 3958 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 3959 | if (type == HTX_BLK_EOM || type == HTX_BLK_TLR || type == HTX_BLK_EOT) |
| 3960 | break; |
| 3961 | if (type == HTX_BLK_DATA) |
| 3962 | len += htx_get_blksz(blk); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 3963 | } |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 3964 | if (htx->extra != ULLONG_MAX) |
| 3965 | len += htx->extra; |
| 3966 | |
| 3967 | /* Stores the request path. */ |
| 3968 | lua_pushstring(L, "length"); |
| 3969 | lua_pushinteger(L, len); |
| 3970 | lua_settable(L, -3); |
Thierry FOURNIER | 04c57b3 | 2015-03-18 13:43:10 +0100 | [diff] [blame] | 3971 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 3972 | /* Create an empty array of HTTP request headers. */ |
| 3973 | lua_pushstring(L, "response"); |
| 3974 | lua_newtable(L); |
| 3975 | lua_settable(L, -3); |
Thierry FOURNIER | 04c57b3 | 2015-03-18 13:43:10 +0100 | [diff] [blame] | 3976 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 3977 | /* Pop a class stream metatable and affect it to the table. */ |
| 3978 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_applet_http_ref); |
| 3979 | lua_setmetatable(L, -2); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 3980 | |
| 3981 | return 1; |
| 3982 | } |
| 3983 | |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 3984 | __LJMP static int hlua_applet_http_set_var(lua_State *L) |
| 3985 | { |
| 3986 | struct hlua_appctx *appctx; |
| 3987 | struct stream *s; |
| 3988 | const char *name; |
| 3989 | size_t len; |
| 3990 | struct sample smp; |
| 3991 | |
| 3992 | MAY_LJMP(check_args(L, 3, "set_var")); |
| 3993 | |
| 3994 | /* It is useles to retrieve the stream, but this function |
| 3995 | * runs only in a stream context. |
| 3996 | */ |
| 3997 | appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 3998 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 3999 | s = appctx->htxn.s; |
| 4000 | |
| 4001 | /* Converts the third argument in a sample. */ |
| 4002 | hlua_lua2smp(L, 3, &smp); |
| 4003 | |
| 4004 | /* Store the sample in a variable. */ |
| 4005 | smp_set_owner(&smp, s->be, s->sess, s, 0); |
| 4006 | vars_set_by_name(name, len, &smp); |
| 4007 | return 0; |
| 4008 | } |
| 4009 | |
| 4010 | __LJMP static int hlua_applet_http_unset_var(lua_State *L) |
| 4011 | { |
| 4012 | struct hlua_appctx *appctx; |
| 4013 | struct stream *s; |
| 4014 | const char *name; |
| 4015 | size_t len; |
| 4016 | struct sample smp; |
| 4017 | |
| 4018 | MAY_LJMP(check_args(L, 2, "unset_var")); |
| 4019 | |
| 4020 | /* It is useles to retrieve the stream, but this function |
| 4021 | * runs only in a stream context. |
| 4022 | */ |
| 4023 | appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4024 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 4025 | s = appctx->htxn.s; |
| 4026 | |
| 4027 | /* Unset the variable. */ |
| 4028 | smp_set_owner(&smp, s->be, s->sess, s, 0); |
| 4029 | vars_unset_by_name(name, len, &smp); |
| 4030 | return 0; |
| 4031 | } |
| 4032 | |
| 4033 | __LJMP static int hlua_applet_http_get_var(lua_State *L) |
| 4034 | { |
| 4035 | struct hlua_appctx *appctx; |
| 4036 | struct stream *s; |
| 4037 | const char *name; |
| 4038 | size_t len; |
| 4039 | struct sample smp; |
| 4040 | |
| 4041 | MAY_LJMP(check_args(L, 2, "get_var")); |
| 4042 | |
| 4043 | /* It is useles to retrieve the stream, but this function |
| 4044 | * runs only in a stream context. |
| 4045 | */ |
| 4046 | appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4047 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 4048 | s = appctx->htxn.s; |
| 4049 | |
| 4050 | smp_set_owner(&smp, s->be, s->sess, s, 0); |
| 4051 | if (!vars_get_by_name(name, len, &smp)) { |
| 4052 | lua_pushnil(L); |
| 4053 | return 1; |
| 4054 | } |
| 4055 | |
| 4056 | return hlua_smp2lua(L, &smp); |
| 4057 | } |
| 4058 | |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 4059 | __LJMP static int hlua_applet_http_set_priv(lua_State *L) |
| 4060 | { |
| 4061 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4062 | struct stream *s = appctx->htxn.s; |
Thierry FOURNIER | 3b0a6d4 | 2016-12-16 08:48:32 +0100 | [diff] [blame] | 4063 | struct hlua *hlua; |
| 4064 | |
| 4065 | /* Note that this hlua struct is from the session and not from the applet. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 4066 | if (!s->hlua) |
| 4067 | return 0; |
| 4068 | hlua = s->hlua; |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 4069 | |
| 4070 | MAY_LJMP(check_args(L, 2, "set_priv")); |
| 4071 | |
| 4072 | /* Remove previous value. */ |
Thierry FOURNIER | e068b60 | 2017-04-26 13:27:05 +0200 | [diff] [blame] | 4073 | luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref); |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 4074 | |
| 4075 | /* Get and store new value. */ |
| 4076 | lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */ |
| 4077 | hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */ |
| 4078 | |
| 4079 | return 0; |
| 4080 | } |
| 4081 | |
| 4082 | __LJMP static int hlua_applet_http_get_priv(lua_State *L) |
| 4083 | { |
| 4084 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4085 | struct stream *s = appctx->htxn.s; |
Thierry FOURNIER | 3b0a6d4 | 2016-12-16 08:48:32 +0100 | [diff] [blame] | 4086 | struct hlua *hlua; |
| 4087 | |
| 4088 | /* Note that this hlua struct is from the session and not from the applet. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 4089 | if (!s->hlua) { |
| 4090 | lua_pushnil(L); |
| 4091 | return 1; |
| 4092 | } |
| 4093 | hlua = s->hlua; |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 4094 | |
| 4095 | /* Push configuration index in the stack. */ |
| 4096 | lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref); |
| 4097 | |
| 4098 | return 1; |
| 4099 | } |
| 4100 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4101 | /* If expected data not yet available, it returns a yield. This function |
| 4102 | * consumes the data in the buffer. It returns a string containing the |
| 4103 | * data. This string can be empty. |
| 4104 | */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4105 | __LJMP static int hlua_applet_http_getline_yield(lua_State *L, int status, lua_KContext ctx) |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4106 | { |
| 4107 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4108 | struct stream_interface *si = appctx->appctx->owner; |
| 4109 | struct channel *req = si_oc(si); |
| 4110 | struct htx *htx; |
| 4111 | struct htx_blk *blk; |
| 4112 | size_t count; |
| 4113 | int stop = 0; |
| 4114 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4115 | htx = htx_from_buf(&req->buf); |
| 4116 | count = co_data(req); |
Christopher Faulet | a3f1550 | 2019-05-13 15:27:23 +0200 | [diff] [blame] | 4117 | blk = htx_get_first_blk(htx); |
Christopher Faulet | cc26b13 | 2018-12-18 21:20:57 +0100 | [diff] [blame] | 4118 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4119 | while (count && !stop && blk) { |
| 4120 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 4121 | uint32_t sz = htx_get_blksz(blk); |
| 4122 | struct ist v; |
| 4123 | uint32_t vlen; |
| 4124 | char *nl; |
| 4125 | |
Christopher Faulet | e461e34 | 2018-12-18 16:43:35 +0100 | [diff] [blame] | 4126 | if (type == HTX_BLK_EOM) { |
| 4127 | stop = 1; |
| 4128 | break; |
| 4129 | } |
| 4130 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4131 | vlen = sz; |
| 4132 | if (vlen > count) { |
| 4133 | if (type != HTX_BLK_DATA) |
| 4134 | break; |
| 4135 | vlen = count; |
| 4136 | } |
| 4137 | |
| 4138 | switch (type) { |
| 4139 | case HTX_BLK_UNUSED: |
| 4140 | break; |
| 4141 | |
| 4142 | case HTX_BLK_DATA: |
| 4143 | v = htx_get_blk_value(htx, blk); |
| 4144 | v.len = vlen; |
| 4145 | nl = istchr(v, '\n'); |
| 4146 | if (nl != NULL) { |
| 4147 | stop = 1; |
| 4148 | vlen = nl - v.ptr + 1; |
| 4149 | } |
| 4150 | luaL_addlstring(&appctx->b, v.ptr, vlen); |
| 4151 | break; |
| 4152 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4153 | case HTX_BLK_TLR: |
| 4154 | case HTX_BLK_EOM: |
| 4155 | stop = 1; |
| 4156 | break; |
| 4157 | |
| 4158 | default: |
| 4159 | break; |
| 4160 | } |
| 4161 | |
| 4162 | co_set_data(req, co_data(req) - vlen); |
| 4163 | count -= vlen; |
| 4164 | if (sz == vlen) |
| 4165 | blk = htx_remove_blk(htx, blk); |
| 4166 | else { |
| 4167 | htx_cut_data_blk(htx, blk, vlen); |
| 4168 | break; |
| 4169 | } |
| 4170 | } |
| 4171 | |
Christopher Faulet | 0ae79d0 | 2019-02-27 21:36:59 +0100 | [diff] [blame] | 4172 | htx_to_buf(htx, &req->buf); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4173 | if (!stop) { |
| 4174 | si_cant_get(si); |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4175 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_getline_yield, TICK_ETERNITY, 0)); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4176 | } |
| 4177 | |
| 4178 | /* return the result. */ |
| 4179 | luaL_pushresult(&appctx->b); |
| 4180 | return 1; |
| 4181 | } |
| 4182 | |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4183 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 4184 | /* Check arguments for the function "hlua_channel_get_yield". */ |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4185 | __LJMP static int hlua_applet_http_getline(lua_State *L) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4186 | { |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4187 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4188 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4189 | /* Initialise the string catenation. */ |
| 4190 | luaL_buffinit(L, &appctx->b); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4191 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4192 | return MAY_LJMP(hlua_applet_http_getline_yield(L, 0, 0)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4193 | } |
| 4194 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4195 | /* If expected data not yet available, it returns a yield. This function |
| 4196 | * consumes the data in the buffer. It returns a string containing the |
| 4197 | * data. This string can be empty. |
| 4198 | */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4199 | __LJMP static int hlua_applet_http_recv_yield(lua_State *L, int status, lua_KContext ctx) |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4200 | { |
| 4201 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4202 | struct stream_interface *si = appctx->appctx->owner; |
| 4203 | struct channel *req = si_oc(si); |
| 4204 | struct htx *htx; |
| 4205 | struct htx_blk *blk; |
| 4206 | size_t count; |
| 4207 | int len; |
| 4208 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4209 | htx = htx_from_buf(&req->buf); |
| 4210 | len = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 4211 | count = co_data(req); |
Christopher Faulet | 29f1758 | 2019-05-23 11:03:26 +0200 | [diff] [blame] | 4212 | blk = htx_get_head_blk(htx); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4213 | while (count && len && blk) { |
| 4214 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 4215 | uint32_t sz = htx_get_blksz(blk); |
| 4216 | struct ist v; |
| 4217 | uint32_t vlen; |
| 4218 | |
Christopher Faulet | e461e34 | 2018-12-18 16:43:35 +0100 | [diff] [blame] | 4219 | if (type == HTX_BLK_EOM) { |
| 4220 | len = 0; |
| 4221 | break; |
| 4222 | } |
| 4223 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4224 | vlen = sz; |
| 4225 | if (len > 0 && vlen > len) |
| 4226 | vlen = len; |
| 4227 | if (vlen > count) { |
| 4228 | if (type != HTX_BLK_DATA) |
| 4229 | break; |
| 4230 | vlen = count; |
| 4231 | } |
| 4232 | |
| 4233 | switch (type) { |
| 4234 | case HTX_BLK_UNUSED: |
| 4235 | break; |
| 4236 | |
| 4237 | case HTX_BLK_DATA: |
| 4238 | v = htx_get_blk_value(htx, blk); |
| 4239 | luaL_addlstring(&appctx->b, v.ptr, vlen); |
| 4240 | break; |
| 4241 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4242 | case HTX_BLK_TLR: |
| 4243 | case HTX_BLK_EOM: |
| 4244 | len = 0; |
| 4245 | break; |
| 4246 | |
| 4247 | default: |
| 4248 | break; |
| 4249 | } |
| 4250 | |
| 4251 | co_set_data(req, co_data(req) - vlen); |
| 4252 | count -= vlen; |
| 4253 | if (len > 0) |
| 4254 | len -= vlen; |
| 4255 | if (sz == vlen) |
| 4256 | blk = htx_remove_blk(htx, blk); |
| 4257 | else { |
| 4258 | htx_cut_data_blk(htx, blk, vlen); |
| 4259 | break; |
| 4260 | } |
| 4261 | } |
| 4262 | |
Christopher Faulet | 0ae79d0 | 2019-02-27 21:36:59 +0100 | [diff] [blame] | 4263 | htx_to_buf(htx, &req->buf); |
| 4264 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4265 | /* If we are no other data available, yield waiting for new data. */ |
| 4266 | if (len) { |
| 4267 | if (len > 0) { |
| 4268 | lua_pushinteger(L, len); |
| 4269 | lua_replace(L, 2); |
| 4270 | } |
| 4271 | si_cant_get(si); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 4272 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_recv_yield, TICK_ETERNITY, 0)); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4273 | } |
| 4274 | |
| 4275 | /* return the result. */ |
| 4276 | luaL_pushresult(&appctx->b); |
| 4277 | return 1; |
| 4278 | } |
| 4279 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 4280 | /* Check arguments for the function "hlua_channel_get_yield". */ |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4281 | __LJMP static int hlua_applet_http_recv(lua_State *L) |
| 4282 | { |
| 4283 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4284 | int len = -1; |
| 4285 | |
| 4286 | /* Check arguments. */ |
| 4287 | if (lua_gettop(L) > 2) |
| 4288 | WILL_LJMP(luaL_error(L, "The 'recv' function requires between 1 and 2 arguments.")); |
| 4289 | if (lua_gettop(L) >= 2) { |
| 4290 | len = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 4291 | lua_pop(L, 1); |
| 4292 | } |
| 4293 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4294 | lua_pushinteger(L, len); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4295 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4296 | /* Initialise the string catenation. */ |
| 4297 | luaL_buffinit(L, &appctx->b); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4298 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4299 | return MAY_LJMP(hlua_applet_http_recv_yield(L, 0, 0)); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4300 | } |
| 4301 | |
| 4302 | /* Append data in the output side of the buffer. This data is immediately |
| 4303 | * sent. The function returns the amount of data written. If the buffer |
| 4304 | * cannot contain the data, the function yields. The function returns -1 |
| 4305 | * if the channel is closed. |
| 4306 | */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4307 | __LJMP static int hlua_applet_http_send_yield(lua_State *L, int status, lua_KContext ctx) |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4308 | { |
| 4309 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4310 | struct stream_interface *si = appctx->appctx->owner; |
| 4311 | struct channel *res = si_ic(si); |
| 4312 | struct htx *htx = htx_from_buf(&res->buf); |
| 4313 | const char *data; |
| 4314 | size_t len; |
| 4315 | int l = MAY_LJMP(luaL_checkinteger(L, 3)); |
| 4316 | int max; |
| 4317 | |
Christopher Faulet | 9060fc0 | 2019-07-03 11:39:30 +0200 | [diff] [blame] | 4318 | max = htx_get_max_blksz(htx, channel_htx_recv_max(res, htx)); |
Christopher Faulet | 4b0e9b2 | 2019-01-09 12:16:58 +0100 | [diff] [blame] | 4319 | if (!max) |
| 4320 | goto snd_yield; |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4321 | |
| 4322 | data = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 4323 | |
| 4324 | /* Get the max amount of data which can write as input in the channel. */ |
| 4325 | if (max > (len - l)) |
| 4326 | max = len - l; |
| 4327 | |
| 4328 | /* Copy data. */ |
Willy Tarreau | 0a7ef02 | 2019-05-28 10:30:11 +0200 | [diff] [blame] | 4329 | max = htx_add_data(htx, ist2(data + l, max)); |
Christopher Faulet | f6cce3f | 2019-02-27 21:20:09 +0100 | [diff] [blame] | 4330 | channel_add_input(res, max); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4331 | |
| 4332 | /* update counters. */ |
| 4333 | l += max; |
| 4334 | lua_pop(L, 1); |
| 4335 | lua_pushinteger(L, l); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4336 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4337 | /* If some data is not send, declares the situation to the |
| 4338 | * applet, and returns a yield. |
| 4339 | */ |
| 4340 | if (l < len) { |
Christopher Faulet | 4b0e9b2 | 2019-01-09 12:16:58 +0100 | [diff] [blame] | 4341 | snd_yield: |
Christopher Faulet | 0ae79d0 | 2019-02-27 21:36:59 +0100 | [diff] [blame] | 4342 | htx_to_buf(htx, &res->buf); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4343 | si_rx_room_blk(si); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 4344 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_send_yield, TICK_ETERNITY, 0)); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4345 | } |
| 4346 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4347 | htx_to_buf(htx, &res->buf); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4348 | return 1; |
| 4349 | } |
| 4350 | |
| 4351 | /* Just a wraper of "hlua_applet_send_yield". This wrapper permits |
| 4352 | * yield the LUA process, and resume it without checking the |
| 4353 | * input arguments. |
| 4354 | */ |
| 4355 | __LJMP static int hlua_applet_http_send(lua_State *L) |
| 4356 | { |
| 4357 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4358 | |
| 4359 | /* We want to send some data. Headers must be sent. */ |
| 4360 | if (!(appctx->appctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT)) { |
| 4361 | hlua_pusherror(L, "Lua: 'send' you must call start_response() before sending data."); |
| 4362 | WILL_LJMP(lua_error(L)); |
| 4363 | } |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4364 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4365 | /* This interger is used for followinf the amount of data sent. */ |
| 4366 | lua_pushinteger(L, 0); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4367 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4368 | return MAY_LJMP(hlua_applet_http_send_yield(L, 0, 0)); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4369 | } |
| 4370 | |
| 4371 | __LJMP static int hlua_applet_http_addheader(lua_State *L) |
| 4372 | { |
| 4373 | const char *name; |
| 4374 | int ret; |
| 4375 | |
| 4376 | MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4377 | name = MAY_LJMP(luaL_checkstring(L, 2)); |
| 4378 | MAY_LJMP(luaL_checkstring(L, 3)); |
| 4379 | |
| 4380 | /* Push in the stack the "response" entry. */ |
| 4381 | ret = lua_getfield(L, 1, "response"); |
| 4382 | if (ret != LUA_TTABLE) { |
| 4383 | hlua_pusherror(L, "Lua: 'add_header' internal error: AppletHTTP['response'] " |
| 4384 | "is expected as an array. %s found", lua_typename(L, ret)); |
| 4385 | WILL_LJMP(lua_error(L)); |
| 4386 | } |
| 4387 | |
| 4388 | /* check if the header is already registered if it is not |
| 4389 | * the case, register it. |
| 4390 | */ |
| 4391 | ret = lua_getfield(L, -1, name); |
| 4392 | if (ret == LUA_TNIL) { |
| 4393 | |
| 4394 | /* Entry not found. */ |
| 4395 | lua_pop(L, 1); /* remove the nil. The "response" table is the top of the stack. */ |
| 4396 | |
| 4397 | /* Insert the new header name in the array in the top of the stack. |
| 4398 | * It left the new array in the top of the stack. |
| 4399 | */ |
| 4400 | lua_newtable(L); |
| 4401 | lua_pushvalue(L, 2); |
| 4402 | lua_pushvalue(L, -2); |
| 4403 | lua_settable(L, -4); |
| 4404 | |
| 4405 | } else if (ret != LUA_TTABLE) { |
| 4406 | |
| 4407 | /* corruption error. */ |
| 4408 | hlua_pusherror(L, "Lua: 'add_header' internal error: AppletHTTP['response']['%s'] " |
| 4409 | "is expected as an array. %s found", name, lua_typename(L, ret)); |
| 4410 | WILL_LJMP(lua_error(L)); |
| 4411 | } |
| 4412 | |
| 4413 | /* Now the top od thestack is an array of values. We push |
| 4414 | * the header value as new entry. |
| 4415 | */ |
| 4416 | lua_pushvalue(L, 3); |
| 4417 | ret = lua_rawlen(L, -2); |
| 4418 | lua_rawseti(L, -2, ret + 1); |
| 4419 | lua_pushboolean(L, 1); |
| 4420 | return 1; |
| 4421 | } |
| 4422 | |
| 4423 | __LJMP static int hlua_applet_http_status(lua_State *L) |
| 4424 | { |
| 4425 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4426 | int status = MAY_LJMP(luaL_checkinteger(L, 2)); |
Robin H. Johnson | 52f5db2 | 2017-01-01 13:10:52 -0800 | [diff] [blame] | 4427 | const char *reason = MAY_LJMP(luaL_optlstring(L, 3, NULL, NULL)); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4428 | |
| 4429 | if (status < 100 || status > 599) { |
| 4430 | lua_pushboolean(L, 0); |
| 4431 | return 1; |
| 4432 | } |
| 4433 | |
| 4434 | appctx->appctx->ctx.hlua_apphttp.status = status; |
Robin H. Johnson | 52f5db2 | 2017-01-01 13:10:52 -0800 | [diff] [blame] | 4435 | appctx->appctx->ctx.hlua_apphttp.reason = reason; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4436 | lua_pushboolean(L, 1); |
| 4437 | return 1; |
| 4438 | } |
| 4439 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4440 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4441 | __LJMP static int hlua_applet_http_send_response(lua_State *L) |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4442 | { |
| 4443 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4444 | struct stream_interface *si = appctx->appctx->owner; |
| 4445 | struct channel *res = si_ic(si); |
| 4446 | struct htx *htx; |
| 4447 | struct htx_sl *sl; |
| 4448 | struct h1m h1m; |
| 4449 | const char *status, *reason; |
| 4450 | const char *name, *value; |
| 4451 | size_t nlen, vlen; |
| 4452 | unsigned int flags; |
| 4453 | |
| 4454 | /* Send the message at once. */ |
| 4455 | htx = htx_from_buf(&res->buf); |
| 4456 | h1m_init_res(&h1m); |
| 4457 | |
| 4458 | /* Use the same http version than the request. */ |
| 4459 | status = ultoa_r(appctx->appctx->ctx.hlua_apphttp.status, trash.area, trash.size); |
| 4460 | reason = appctx->appctx->ctx.hlua_apphttp.reason; |
| 4461 | if (reason == NULL) |
| 4462 | reason = http_get_reason(appctx->appctx->ctx.hlua_apphttp.status); |
| 4463 | if (appctx->appctx->ctx.hlua_apphttp.flags & APPLET_HTTP11) { |
| 4464 | flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11); |
| 4465 | sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"), ist(status), ist(reason)); |
| 4466 | } |
| 4467 | else { |
| 4468 | flags = HTX_SL_F_IS_RESP; |
| 4469 | sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.0"), ist(status), ist(reason)); |
| 4470 | } |
| 4471 | if (!sl) { |
| 4472 | hlua_pusherror(L, "Lua applet http '%s': Failed to create response.\n", |
| 4473 | appctx->appctx->rule->arg.hlua_rule->fcn.name); |
| 4474 | WILL_LJMP(lua_error(L)); |
| 4475 | } |
| 4476 | sl->info.res.status = appctx->appctx->ctx.hlua_apphttp.status; |
| 4477 | |
| 4478 | /* Get the array associated to the field "response" in the object AppletHTTP. */ |
| 4479 | lua_pushvalue(L, 0); |
| 4480 | if (lua_getfield(L, 1, "response") != LUA_TTABLE) { |
| 4481 | hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response'] missing.\n", |
| 4482 | appctx->appctx->rule->arg.hlua_rule->fcn.name); |
| 4483 | WILL_LJMP(lua_error(L)); |
| 4484 | } |
| 4485 | |
| 4486 | /* Browse the list of headers. */ |
| 4487 | lua_pushnil(L); |
| 4488 | while(lua_next(L, -2) != 0) { |
| 4489 | /* We expect a string as -2. */ |
| 4490 | if (lua_type(L, -2) != LUA_TSTRING) { |
| 4491 | hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response'][] element must be a string. got %s.\n", |
| 4492 | appctx->appctx->rule->arg.hlua_rule->fcn.name, |
| 4493 | lua_typename(L, lua_type(L, -2))); |
| 4494 | WILL_LJMP(lua_error(L)); |
| 4495 | } |
| 4496 | name = lua_tolstring(L, -2, &nlen); |
| 4497 | |
| 4498 | /* We expect an array as -1. */ |
| 4499 | if (lua_type(L, -1) != LUA_TTABLE) { |
| 4500 | hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response']['%s'] element must be an table. got %s.\n", |
| 4501 | appctx->appctx->rule->arg.hlua_rule->fcn.name, |
| 4502 | name, |
| 4503 | lua_typename(L, lua_type(L, -1))); |
| 4504 | WILL_LJMP(lua_error(L)); |
| 4505 | } |
| 4506 | |
| 4507 | /* Browse the table who is on the top of the stack. */ |
| 4508 | lua_pushnil(L); |
| 4509 | while(lua_next(L, -2) != 0) { |
| 4510 | int id; |
| 4511 | |
| 4512 | /* We expect a number as -2. */ |
| 4513 | if (lua_type(L, -2) != LUA_TNUMBER) { |
| 4514 | hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response']['%s'][] element must be a number. got %s.\n", |
| 4515 | appctx->appctx->rule->arg.hlua_rule->fcn.name, |
| 4516 | name, |
| 4517 | lua_typename(L, lua_type(L, -2))); |
| 4518 | WILL_LJMP(lua_error(L)); |
| 4519 | } |
| 4520 | id = lua_tointeger(L, -2); |
| 4521 | |
| 4522 | /* We expect a string as -2. */ |
| 4523 | if (lua_type(L, -1) != LUA_TSTRING) { |
| 4524 | hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response']['%s'][%d] element must be a string. got %s.\n", |
| 4525 | appctx->appctx->rule->arg.hlua_rule->fcn.name, |
| 4526 | name, id, |
| 4527 | lua_typename(L, lua_type(L, -1))); |
| 4528 | WILL_LJMP(lua_error(L)); |
| 4529 | } |
| 4530 | value = lua_tolstring(L, -1, &vlen); |
| 4531 | |
| 4532 | /* Simple Protocol checks. */ |
| 4533 | if (isteqi(ist2(name, nlen), ist("transfer-encoding"))) |
| 4534 | h1_parse_xfer_enc_header(&h1m, ist2(name, nlen)); |
| 4535 | else if (isteqi(ist2(name, nlen), ist("content-length"))) { |
| 4536 | struct ist v = ist2(value, vlen); |
| 4537 | int ret; |
| 4538 | |
| 4539 | ret = h1_parse_cont_len_header(&h1m, &v); |
| 4540 | if (ret < 0) { |
| 4541 | hlua_pusherror(L, "Lua applet http '%s': Invalid '%s' header.\n", |
| 4542 | appctx->appctx->rule->arg.hlua_rule->fcn.name, |
| 4543 | name); |
| 4544 | WILL_LJMP(lua_error(L)); |
| 4545 | } |
| 4546 | else if (ret == 0) |
| 4547 | goto next; /* Skip it */ |
| 4548 | } |
| 4549 | |
| 4550 | /* Add a new header */ |
| 4551 | if (!htx_add_header(htx, ist2(name, nlen), ist2(value, vlen))) { |
| 4552 | hlua_pusherror(L, "Lua applet http '%s': Failed to add header '%s' in the response.\n", |
| 4553 | appctx->appctx->rule->arg.hlua_rule->fcn.name, |
| 4554 | name); |
| 4555 | WILL_LJMP(lua_error(L)); |
| 4556 | } |
| 4557 | next: |
| 4558 | /* Remove the array from the stack, and get next element with a remaining string. */ |
| 4559 | lua_pop(L, 1); |
| 4560 | } |
| 4561 | |
| 4562 | /* Remove the array from the stack, and get next element with a remaining string. */ |
| 4563 | lua_pop(L, 1); |
| 4564 | } |
| 4565 | |
| 4566 | if (h1m.flags & H1_MF_CHNK) |
| 4567 | h1m.flags &= ~H1_MF_CLEN; |
| 4568 | if (h1m.flags & (H1_MF_CLEN|H1_MF_CHNK)) |
| 4569 | h1m.flags |= H1_MF_XFER_LEN; |
| 4570 | |
| 4571 | /* Uset HTX start-line flags */ |
| 4572 | if (h1m.flags & H1_MF_XFER_ENC) |
| 4573 | flags |= HTX_SL_F_XFER_ENC; |
| 4574 | if (h1m.flags & H1_MF_XFER_LEN) { |
| 4575 | flags |= HTX_SL_F_XFER_LEN; |
| 4576 | if (h1m.flags & H1_MF_CHNK) |
| 4577 | flags |= HTX_SL_F_CHNK; |
| 4578 | else if (h1m.flags & H1_MF_CLEN) |
| 4579 | flags |= HTX_SL_F_CLEN; |
| 4580 | if (h1m.body_len == 0) |
| 4581 | flags |= HTX_SL_F_BODYLESS; |
| 4582 | } |
| 4583 | sl->flags |= flags; |
| 4584 | |
| 4585 | /* If we dont have a content-length set, and the HTTP version is 1.1 |
| 4586 | * and the status code implies the presence of a message body, we must |
| 4587 | * announce a transfer encoding chunked. This is required by haproxy |
| 4588 | * for the keepalive compliance. If the applet annouces a transfer-encoding |
| 4589 | * chunked itslef, don't do anything. |
| 4590 | */ |
| 4591 | if ((flags & (HTX_SL_F_VER_11|HTX_SL_F_XFER_LEN)) == HTX_SL_F_VER_11 && |
| 4592 | appctx->appctx->ctx.hlua_apphttp.status >= 200 && |
| 4593 | appctx->appctx->ctx.hlua_apphttp.status != 204 && |
| 4594 | appctx->appctx->ctx.hlua_apphttp.status != 304) { |
| 4595 | /* Add a new header */ |
| 4596 | sl->flags |= (HTX_SL_F_XFER_ENC|H1_MF_CHNK|H1_MF_XFER_LEN); |
| 4597 | if (!htx_add_header(htx, ist("transfer-encoding"), ist("chunked"))) { |
| 4598 | hlua_pusherror(L, "Lua applet http '%s': Failed to add header 'transfer-encoding' in the response.\n", |
| 4599 | appctx->appctx->rule->arg.hlua_rule->fcn.name); |
| 4600 | WILL_LJMP(lua_error(L)); |
| 4601 | } |
| 4602 | } |
| 4603 | |
| 4604 | /* Finalize headers. */ |
| 4605 | if (!htx_add_endof(htx, HTX_BLK_EOH)) { |
| 4606 | hlua_pusherror(L, "Lua applet http '%s': Failed create the response.\n", |
| 4607 | appctx->appctx->rule->arg.hlua_rule->fcn.name); |
| 4608 | WILL_LJMP(lua_error(L)); |
| 4609 | } |
| 4610 | |
| 4611 | if (htx_used_space(htx) > b_size(&res->buf) - global.tune.maxrewrite) { |
| 4612 | b_reset(&res->buf); |
| 4613 | hlua_pusherror(L, "Lua: 'start_response': response header block too big"); |
| 4614 | WILL_LJMP(lua_error(L)); |
| 4615 | } |
| 4616 | |
| 4617 | htx_to_buf(htx, &res->buf); |
Christopher Faulet | f6cce3f | 2019-02-27 21:20:09 +0100 | [diff] [blame] | 4618 | channel_add_input(res, htx->data); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4619 | |
| 4620 | /* Headers sent, set the flag. */ |
| 4621 | appctx->appctx->ctx.hlua_apphttp.flags |= APPLET_HDR_SENT; |
| 4622 | return 0; |
| 4623 | |
| 4624 | } |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4625 | /* We will build the status line and the headers of the HTTP response. |
| 4626 | * We will try send at once if its not possible, we give back the hand |
| 4627 | * waiting for more room. |
| 4628 | */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4629 | __LJMP static int hlua_applet_http_start_response_yield(lua_State *L, int status, lua_KContext ctx) |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4630 | { |
| 4631 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4632 | struct stream_interface *si = appctx->appctx->owner; |
| 4633 | struct channel *res = si_ic(si); |
| 4634 | |
| 4635 | if (co_data(res)) { |
| 4636 | si_rx_room_blk(si); |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4637 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_applet_http_start_response_yield, TICK_ETERNITY, 0)); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4638 | } |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4639 | return MAY_LJMP(hlua_applet_http_send_response(L)); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4640 | } |
| 4641 | |
| 4642 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4643 | __LJMP static int hlua_applet_http_start_response(lua_State *L) |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4644 | { |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4645 | return MAY_LJMP(hlua_applet_http_start_response_yield(L, 0, 0)); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4646 | } |
| 4647 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4648 | /* |
| 4649 | * |
| 4650 | * |
| 4651 | * Class HTTP |
| 4652 | * |
| 4653 | * |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4654 | */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4655 | |
| 4656 | /* Returns a struct hlua_txn if the stack entry "ud" is |
| 4657 | * a class stream, otherwise it throws an error. |
| 4658 | */ |
| 4659 | __LJMP static struct hlua_txn *hlua_checkhttp(lua_State *L, int ud) |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4660 | { |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4661 | return MAY_LJMP(hlua_checkudata(L, ud, class_http_ref)); |
| 4662 | } |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4663 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4664 | /* This function creates and push in the stack a HTTP object |
| 4665 | * according with a current TXN. |
| 4666 | */ |
| 4667 | static int hlua_http_new(lua_State *L, struct hlua_txn *txn) |
| 4668 | { |
| 4669 | struct hlua_txn *htxn; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4670 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4671 | /* Check stack size. */ |
| 4672 | if (!lua_checkstack(L, 3)) |
| 4673 | return 0; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4674 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4675 | /* Create the object: obj[0] = userdata. |
| 4676 | * Note that the base of the Converters object is the |
| 4677 | * same than the TXN object. |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4678 | */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4679 | lua_newtable(L); |
| 4680 | htxn = lua_newuserdata(L, sizeof(*htxn)); |
| 4681 | lua_rawseti(L, -2, 0); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4682 | |
| 4683 | htxn->s = txn->s; |
| 4684 | htxn->p = txn->p; |
Christopher Faulet | 256b69a | 2019-05-23 11:14:21 +0200 | [diff] [blame] | 4685 | htxn->dir = txn->dir; |
| 4686 | htxn->flags = txn->flags; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4687 | |
| 4688 | /* Pop a class stream metatable and affect it to the table. */ |
| 4689 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_http_ref); |
| 4690 | lua_setmetatable(L, -2); |
| 4691 | |
| 4692 | return 1; |
| 4693 | } |
| 4694 | |
| 4695 | /* This function creates ans returns an array of HTTP headers. |
| 4696 | * This function does not fails. It is used as wrapper with the |
| 4697 | * 2 following functions. |
| 4698 | */ |
| 4699 | __LJMP static int hlua_http_get_headers(lua_State *L, struct hlua_txn *htxn, struct http_msg *msg) |
| 4700 | { |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4701 | struct htx *htx; |
| 4702 | int32_t pos; |
| 4703 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4704 | /* Create the table. */ |
| 4705 | lua_newtable(L); |
| 4706 | |
| 4707 | if (!htxn->s->txn) |
| 4708 | return 1; |
| 4709 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4710 | htx = htxbuf(&msg->chn->buf); |
| 4711 | for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) { |
| 4712 | struct htx_blk *blk = htx_get_blk(htx, pos); |
| 4713 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 4714 | struct ist n, v; |
| 4715 | int len; |
Christopher Faulet | 724a12c | 2018-12-13 22:12:15 +0100 | [diff] [blame] | 4716 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4717 | if (type == HTX_BLK_HDR) { |
| 4718 | n = htx_get_blk_name(htx,blk); |
| 4719 | v = htx_get_blk_value(htx, blk); |
Christopher Faulet | 724a12c | 2018-12-13 22:12:15 +0100 | [diff] [blame] | 4720 | } |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4721 | else if (type == HTX_BLK_EOH) |
| 4722 | break; |
| 4723 | else |
| 4724 | continue; |
Christopher Faulet | 724a12c | 2018-12-13 22:12:15 +0100 | [diff] [blame] | 4725 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4726 | /* Check for existing entry: |
| 4727 | * assume that the table is on the top of the stack, and |
| 4728 | * push the key in the stack, the function lua_gettable() |
| 4729 | * perform the lookup. |
| 4730 | */ |
| 4731 | lua_pushlstring(L, n.ptr, n.len); |
| 4732 | lua_gettable(L, -2); |
Christopher Faulet | 724a12c | 2018-12-13 22:12:15 +0100 | [diff] [blame] | 4733 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4734 | switch (lua_type(L, -1)) { |
| 4735 | case LUA_TNIL: |
| 4736 | /* Table not found, create it. */ |
| 4737 | lua_pop(L, 1); /* remove the nil value. */ |
| 4738 | lua_pushlstring(L, n.ptr, n.len); /* push the header name as key. */ |
| 4739 | lua_newtable(L); /* create and push empty table. */ |
| 4740 | lua_pushlstring(L, v.ptr, v.len); /* push header value. */ |
| 4741 | lua_rawseti(L, -2, 0); /* index header value (pop it). */ |
| 4742 | lua_rawset(L, -3); /* index new table with header name (pop the values). */ |
Christopher Faulet | 724a12c | 2018-12-13 22:12:15 +0100 | [diff] [blame] | 4743 | break; |
Christopher Faulet | 724a12c | 2018-12-13 22:12:15 +0100 | [diff] [blame] | 4744 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4745 | case LUA_TTABLE: |
| 4746 | /* Entry found: push the value in the table. */ |
| 4747 | len = lua_rawlen(L, -1); |
| 4748 | lua_pushlstring(L, v.ptr, v.len); /* push header value. */ |
| 4749 | lua_rawseti(L, -2, len+1); /* index header value (pop it). */ |
| 4750 | lua_pop(L, 1); /* remove the table (it is stored in the main table). */ |
| 4751 | break; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4752 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4753 | default: |
| 4754 | /* Other cases are errors. */ |
| 4755 | hlua_pusherror(L, "internal error during the parsing of headers."); |
| 4756 | WILL_LJMP(lua_error(L)); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4757 | } |
| 4758 | } |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4759 | return 1; |
| 4760 | } |
| 4761 | |
| 4762 | __LJMP static int hlua_http_req_get_headers(lua_State *L) |
| 4763 | { |
| 4764 | struct hlua_txn *htxn; |
| 4765 | |
| 4766 | MAY_LJMP(check_args(L, 1, "req_get_headers")); |
| 4767 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 4768 | |
Christopher Faulet | 301eff8 | 2019-07-26 16:31:34 +0200 | [diff] [blame] | 4769 | if (htxn->dir != SMP_OPT_DIR_REQ || !(htxn->flags & HLUA_TXN_HTTP_RDY)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 4770 | WILL_LJMP(lua_error(L)); |
| 4771 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4772 | return hlua_http_get_headers(L, htxn, &htxn->s->txn->req); |
| 4773 | } |
| 4774 | |
| 4775 | __LJMP static int hlua_http_res_get_headers(lua_State *L) |
| 4776 | { |
| 4777 | struct hlua_txn *htxn; |
| 4778 | |
| 4779 | MAY_LJMP(check_args(L, 1, "res_get_headers")); |
| 4780 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 4781 | |
Christopher Faulet | 301eff8 | 2019-07-26 16:31:34 +0200 | [diff] [blame] | 4782 | if (htxn->dir != SMP_OPT_DIR_RES || !(htxn->flags & HLUA_TXN_HTTP_RDY)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 4783 | WILL_LJMP(lua_error(L)); |
| 4784 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4785 | return hlua_http_get_headers(L, htxn, &htxn->s->txn->rsp); |
| 4786 | } |
| 4787 | |
| 4788 | /* This function replace full header, or just a value in |
| 4789 | * the request or in the response. It is a wrapper fir the |
| 4790 | * 4 following functions. |
| 4791 | */ |
| 4792 | __LJMP static inline int hlua_http_rep_hdr(lua_State *L, struct hlua_txn *htxn, |
| 4793 | struct http_msg *msg, int action) |
| 4794 | { |
| 4795 | size_t name_len; |
| 4796 | const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len)); |
| 4797 | const char *reg = MAY_LJMP(luaL_checkstring(L, 3)); |
| 4798 | const char *value = MAY_LJMP(luaL_checkstring(L, 4)); |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4799 | struct htx *htx; |
Dragan Dosen | 2674303 | 2019-04-30 15:54:36 +0200 | [diff] [blame] | 4800 | struct my_regex *re; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4801 | |
Dragan Dosen | 2674303 | 2019-04-30 15:54:36 +0200 | [diff] [blame] | 4802 | if (!(re = regex_comp(reg, 1, 1, NULL))) |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4803 | WILL_LJMP(luaL_argerror(L, 3, "invalid regex")); |
| 4804 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4805 | htx = htxbuf(&msg->chn->buf); |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4806 | http_transform_header_str(htxn->s, msg->chn, htx, ist2(name, name_len), value, re, action); |
Dragan Dosen | 2674303 | 2019-04-30 15:54:36 +0200 | [diff] [blame] | 4807 | regex_free(re); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4808 | return 0; |
| 4809 | } |
| 4810 | |
| 4811 | __LJMP static int hlua_http_req_rep_hdr(lua_State *L) |
| 4812 | { |
| 4813 | struct hlua_txn *htxn; |
| 4814 | |
| 4815 | MAY_LJMP(check_args(L, 4, "req_rep_hdr")); |
| 4816 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 4817 | |
Christopher Faulet | 301eff8 | 2019-07-26 16:31:34 +0200 | [diff] [blame] | 4818 | if (htxn->dir != SMP_OPT_DIR_REQ || !(htxn->flags & HLUA_TXN_HTTP_RDY)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 4819 | WILL_LJMP(lua_error(L)); |
| 4820 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4821 | return MAY_LJMP(hlua_http_rep_hdr(L, htxn, &htxn->s->txn->req, ACT_HTTP_REPLACE_HDR)); |
| 4822 | } |
| 4823 | |
| 4824 | __LJMP static int hlua_http_res_rep_hdr(lua_State *L) |
| 4825 | { |
| 4826 | struct hlua_txn *htxn; |
| 4827 | |
| 4828 | MAY_LJMP(check_args(L, 4, "res_rep_hdr")); |
| 4829 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 4830 | |
Christopher Faulet | 301eff8 | 2019-07-26 16:31:34 +0200 | [diff] [blame] | 4831 | if (htxn->dir != SMP_OPT_DIR_RES || !(htxn->flags & HLUA_TXN_HTTP_RDY)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 4832 | WILL_LJMP(lua_error(L)); |
| 4833 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4834 | return MAY_LJMP(hlua_http_rep_hdr(L, htxn, &htxn->s->txn->rsp, ACT_HTTP_REPLACE_HDR)); |
| 4835 | } |
| 4836 | |
| 4837 | __LJMP static int hlua_http_req_rep_val(lua_State *L) |
| 4838 | { |
| 4839 | struct hlua_txn *htxn; |
| 4840 | |
| 4841 | MAY_LJMP(check_args(L, 4, "req_rep_hdr")); |
| 4842 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 4843 | |
Christopher Faulet | 301eff8 | 2019-07-26 16:31:34 +0200 | [diff] [blame] | 4844 | if (htxn->dir != SMP_OPT_DIR_REQ || !(htxn->flags & HLUA_TXN_HTTP_RDY)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 4845 | WILL_LJMP(lua_error(L)); |
| 4846 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4847 | return MAY_LJMP(hlua_http_rep_hdr(L, htxn, &htxn->s->txn->req, ACT_HTTP_REPLACE_VAL)); |
| 4848 | } |
| 4849 | |
| 4850 | __LJMP static int hlua_http_res_rep_val(lua_State *L) |
| 4851 | { |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4852 | struct hlua_txn *htxn; |
| 4853 | |
| 4854 | MAY_LJMP(check_args(L, 4, "res_rep_val")); |
| 4855 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 4856 | |
Christopher Faulet | 301eff8 | 2019-07-26 16:31:34 +0200 | [diff] [blame] | 4857 | if (htxn->dir != SMP_OPT_DIR_RES || !(htxn->flags & HLUA_TXN_HTTP_RDY)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 4858 | WILL_LJMP(lua_error(L)); |
| 4859 | |
Thierry FOURNIER | 0ea5c7f | 2015-08-05 19:05:19 +0200 | [diff] [blame] | 4860 | return MAY_LJMP(hlua_http_rep_hdr(L, htxn, &htxn->s->txn->rsp, ACT_HTTP_REPLACE_VAL)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4861 | } |
| 4862 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 4863 | /* This function deletes all the occurrences of an header. |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4864 | * It is a wrapper for the 2 following functions. |
| 4865 | */ |
| 4866 | __LJMP static inline int hlua_http_del_hdr(lua_State *L, struct hlua_txn *htxn, struct http_msg *msg) |
| 4867 | { |
| 4868 | size_t len; |
| 4869 | const char *name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4870 | struct htx *htx = htxbuf(&msg->chn->buf); |
| 4871 | struct http_hdr_ctx ctx; |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4872 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4873 | ctx.blk = NULL; |
| 4874 | while (http_find_header(htx, ist2(name, len), &ctx, 1)) |
| 4875 | http_remove_header(htx, &ctx); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4876 | return 0; |
| 4877 | } |
| 4878 | |
| 4879 | __LJMP static int hlua_http_req_del_hdr(lua_State *L) |
| 4880 | { |
| 4881 | struct hlua_txn *htxn; |
| 4882 | |
| 4883 | MAY_LJMP(check_args(L, 2, "req_del_hdr")); |
| 4884 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 4885 | |
Christopher Faulet | 301eff8 | 2019-07-26 16:31:34 +0200 | [diff] [blame] | 4886 | if (htxn->dir != SMP_OPT_DIR_REQ || !(htxn->flags & HLUA_TXN_HTTP_RDY)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 4887 | WILL_LJMP(lua_error(L)); |
| 4888 | |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 4889 | return hlua_http_del_hdr(L, htxn, &htxn->s->txn->req); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4890 | } |
| 4891 | |
| 4892 | __LJMP static int hlua_http_res_del_hdr(lua_State *L) |
| 4893 | { |
| 4894 | struct hlua_txn *htxn; |
| 4895 | |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 4896 | MAY_LJMP(check_args(L, 2, "res_del_hdr")); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4897 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 4898 | |
Christopher Faulet | 301eff8 | 2019-07-26 16:31:34 +0200 | [diff] [blame] | 4899 | if (htxn->dir != SMP_OPT_DIR_RES || !(htxn->flags & HLUA_TXN_HTTP_RDY)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 4900 | WILL_LJMP(lua_error(L)); |
| 4901 | |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 4902 | return hlua_http_del_hdr(L, htxn, &htxn->s->txn->rsp); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4903 | } |
| 4904 | |
| 4905 | /* This function adds an header. It is a wrapper used by |
| 4906 | * the 2 following functions. |
| 4907 | */ |
| 4908 | __LJMP static inline int hlua_http_add_hdr(lua_State *L, struct hlua_txn *htxn, struct http_msg *msg) |
| 4909 | { |
| 4910 | size_t name_len; |
| 4911 | const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len)); |
| 4912 | size_t value_len; |
| 4913 | const char *value = MAY_LJMP(luaL_checklstring(L, 3, &value_len)); |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4914 | struct htx *htx = htxbuf(&msg->chn->buf); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4915 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4916 | lua_pushboolean(L, http_add_header(htx, ist2(name, name_len), |
| 4917 | ist2(value, value_len))); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4918 | return 0; |
| 4919 | } |
| 4920 | |
| 4921 | __LJMP static int hlua_http_req_add_hdr(lua_State *L) |
| 4922 | { |
| 4923 | struct hlua_txn *htxn; |
| 4924 | |
| 4925 | MAY_LJMP(check_args(L, 3, "req_add_hdr")); |
| 4926 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 4927 | |
Christopher Faulet | 301eff8 | 2019-07-26 16:31:34 +0200 | [diff] [blame] | 4928 | if (htxn->dir != SMP_OPT_DIR_REQ || !(htxn->flags & HLUA_TXN_HTTP_RDY)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 4929 | WILL_LJMP(lua_error(L)); |
| 4930 | |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 4931 | return hlua_http_add_hdr(L, htxn, &htxn->s->txn->req); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4932 | } |
| 4933 | |
| 4934 | __LJMP static int hlua_http_res_add_hdr(lua_State *L) |
| 4935 | { |
| 4936 | struct hlua_txn *htxn; |
| 4937 | |
| 4938 | MAY_LJMP(check_args(L, 3, "res_add_hdr")); |
| 4939 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 4940 | |
Christopher Faulet | 301eff8 | 2019-07-26 16:31:34 +0200 | [diff] [blame] | 4941 | if (htxn->dir != SMP_OPT_DIR_RES || !(htxn->flags & HLUA_TXN_HTTP_RDY)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 4942 | WILL_LJMP(lua_error(L)); |
| 4943 | |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 4944 | return hlua_http_add_hdr(L, htxn, &htxn->s->txn->rsp); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4945 | } |
| 4946 | |
| 4947 | static int hlua_http_req_set_hdr(lua_State *L) |
| 4948 | { |
| 4949 | struct hlua_txn *htxn; |
| 4950 | |
| 4951 | MAY_LJMP(check_args(L, 3, "req_set_hdr")); |
| 4952 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 4953 | |
Christopher Faulet | 301eff8 | 2019-07-26 16:31:34 +0200 | [diff] [blame] | 4954 | if (htxn->dir != SMP_OPT_DIR_REQ || !(htxn->flags & HLUA_TXN_HTTP_RDY)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 4955 | WILL_LJMP(lua_error(L)); |
| 4956 | |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 4957 | hlua_http_del_hdr(L, htxn, &htxn->s->txn->req); |
| 4958 | return hlua_http_add_hdr(L, htxn, &htxn->s->txn->req); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4959 | } |
| 4960 | |
| 4961 | static int hlua_http_res_set_hdr(lua_State *L) |
| 4962 | { |
| 4963 | struct hlua_txn *htxn; |
| 4964 | |
| 4965 | MAY_LJMP(check_args(L, 3, "res_set_hdr")); |
| 4966 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 4967 | |
Christopher Faulet | 301eff8 | 2019-07-26 16:31:34 +0200 | [diff] [blame] | 4968 | if (htxn->dir != SMP_OPT_DIR_RES || !(htxn->flags & HLUA_TXN_HTTP_RDY)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 4969 | WILL_LJMP(lua_error(L)); |
| 4970 | |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 4971 | hlua_http_del_hdr(L, htxn, &htxn->s->txn->rsp); |
| 4972 | return hlua_http_add_hdr(L, htxn, &htxn->s->txn->rsp); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4973 | } |
| 4974 | |
| 4975 | /* This function set the method. */ |
| 4976 | static int hlua_http_req_set_meth(lua_State *L) |
| 4977 | { |
Willy Tarreau | bcb39cc | 2015-04-06 11:21:44 +0200 | [diff] [blame] | 4978 | struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4979 | size_t name_len; |
| 4980 | const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4981 | |
Christopher Faulet | 301eff8 | 2019-07-26 16:31:34 +0200 | [diff] [blame] | 4982 | if (htxn->dir != SMP_OPT_DIR_REQ || !(htxn->flags & HLUA_TXN_HTTP_RDY)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 4983 | WILL_LJMP(lua_error(L)); |
| 4984 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4985 | lua_pushboolean(L, http_req_replace_stline(0, name, name_len, htxn->p, htxn->s) != -1); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4986 | return 1; |
| 4987 | } |
| 4988 | |
| 4989 | /* This function set the method. */ |
| 4990 | static int hlua_http_req_set_path(lua_State *L) |
| 4991 | { |
Willy Tarreau | bcb39cc | 2015-04-06 11:21:44 +0200 | [diff] [blame] | 4992 | struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4993 | size_t name_len; |
| 4994 | const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len)); |
Thierry FOURNIER / OZON.IO | b84ae92 | 2016-08-02 23:44:58 +0200 | [diff] [blame] | 4995 | |
Christopher Faulet | 301eff8 | 2019-07-26 16:31:34 +0200 | [diff] [blame] | 4996 | if (htxn->dir != SMP_OPT_DIR_REQ || !(htxn->flags & HLUA_TXN_HTTP_RDY)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 4997 | WILL_LJMP(lua_error(L)); |
| 4998 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4999 | lua_pushboolean(L, http_req_replace_stline(1, name, name_len, htxn->p, htxn->s) != -1); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5000 | return 1; |
| 5001 | } |
| 5002 | |
| 5003 | /* This function set the query-string. */ |
| 5004 | static int hlua_http_req_set_query(lua_State *L) |
| 5005 | { |
Willy Tarreau | bcb39cc | 2015-04-06 11:21:44 +0200 | [diff] [blame] | 5006 | struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5007 | size_t name_len; |
| 5008 | const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5009 | |
Christopher Faulet | 301eff8 | 2019-07-26 16:31:34 +0200 | [diff] [blame] | 5010 | if (htxn->dir != SMP_OPT_DIR_REQ || !(htxn->flags & HLUA_TXN_HTTP_RDY)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5011 | WILL_LJMP(lua_error(L)); |
| 5012 | |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5013 | /* Check length. */ |
| 5014 | if (name_len > trash.size - 1) { |
| 5015 | lua_pushboolean(L, 0); |
| 5016 | return 1; |
| 5017 | } |
| 5018 | |
| 5019 | /* Add the mark question as prefix. */ |
| 5020 | chunk_reset(&trash); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 5021 | trash.area[trash.data++] = '?'; |
| 5022 | memcpy(trash.area + trash.data, name, name_len); |
| 5023 | trash.data += name_len; |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5024 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 5025 | lua_pushboolean(L, |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 5026 | http_req_replace_stline(2, trash.area, trash.data, htxn->p, htxn->s) != -1); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5027 | return 1; |
| 5028 | } |
| 5029 | |
| 5030 | /* This function set the uri. */ |
| 5031 | static int hlua_http_req_set_uri(lua_State *L) |
| 5032 | { |
Willy Tarreau | bcb39cc | 2015-04-06 11:21:44 +0200 | [diff] [blame] | 5033 | struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5034 | size_t name_len; |
| 5035 | const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5036 | |
Christopher Faulet | 301eff8 | 2019-07-26 16:31:34 +0200 | [diff] [blame] | 5037 | if (htxn->dir != SMP_OPT_DIR_REQ || !(htxn->flags & HLUA_TXN_HTTP_RDY)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5038 | WILL_LJMP(lua_error(L)); |
| 5039 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 5040 | lua_pushboolean(L, http_req_replace_stline(3, name, name_len, htxn->p, htxn->s) != -1); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5041 | return 1; |
| 5042 | } |
| 5043 | |
Robin H. Johnson | 52f5db2 | 2017-01-01 13:10:52 -0800 | [diff] [blame] | 5044 | /* This function set the response code & optionally reason. */ |
Thierry FOURNIER | 35d70ef | 2015-08-26 16:21:56 +0200 | [diff] [blame] | 5045 | static int hlua_http_res_set_status(lua_State *L) |
| 5046 | { |
| 5047 | struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5048 | unsigned int code = MAY_LJMP(luaL_checkinteger(L, 2)); |
Robin H. Johnson | 52f5db2 | 2017-01-01 13:10:52 -0800 | [diff] [blame] | 5049 | const char *reason = MAY_LJMP(luaL_optlstring(L, 3, NULL, NULL)); |
Thierry FOURNIER | 35d70ef | 2015-08-26 16:21:56 +0200 | [diff] [blame] | 5050 | |
Christopher Faulet | 301eff8 | 2019-07-26 16:31:34 +0200 | [diff] [blame] | 5051 | if (htxn->dir != SMP_OPT_DIR_RES || !(htxn->flags & HLUA_TXN_HTTP_RDY)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5052 | WILL_LJMP(lua_error(L)); |
| 5053 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 5054 | http_res_set_status(code, reason, htxn->s); |
Thierry FOURNIER | 35d70ef | 2015-08-26 16:21:56 +0200 | [diff] [blame] | 5055 | return 0; |
| 5056 | } |
| 5057 | |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5058 | /* |
| 5059 | * |
| 5060 | * |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 5061 | * Class TXN |
| 5062 | * |
| 5063 | * |
| 5064 | */ |
| 5065 | |
| 5066 | /* Returns a struct hlua_session if the stack entry "ud" is |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 5067 | * a class stream, otherwise it throws an error. |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 5068 | */ |
| 5069 | __LJMP static struct hlua_txn *hlua_checktxn(lua_State *L, int ud) |
| 5070 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 5071 | return MAY_LJMP(hlua_checkudata(L, ud, class_txn_ref)); |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 5072 | } |
| 5073 | |
Thierry FOURNIER | 053ba8ad | 2015-06-08 13:05:33 +0200 | [diff] [blame] | 5074 | __LJMP static int hlua_set_var(lua_State *L) |
| 5075 | { |
| 5076 | struct hlua_txn *htxn; |
| 5077 | const char *name; |
| 5078 | size_t len; |
| 5079 | struct sample smp; |
| 5080 | |
| 5081 | MAY_LJMP(check_args(L, 3, "set_var")); |
| 5082 | |
| 5083 | /* It is useles to retrieve the stream, but this function |
| 5084 | * runs only in a stream context. |
| 5085 | */ |
| 5086 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5087 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 5088 | |
| 5089 | /* Converts the third argument in a sample. */ |
| 5090 | hlua_lua2smp(L, 3, &smp); |
| 5091 | |
| 5092 | /* Store the sample in a variable. */ |
Willy Tarreau | 7560dd4 | 2016-03-10 16:28:58 +0100 | [diff] [blame] | 5093 | smp_set_owner(&smp, htxn->p, htxn->s->sess, htxn->s, htxn->dir & SMP_OPT_DIR); |
Willy Tarreau | 6204cd9 | 2016-03-10 16:33:04 +0100 | [diff] [blame] | 5094 | vars_set_by_name(name, len, &smp); |
Thierry FOURNIER | 053ba8ad | 2015-06-08 13:05:33 +0200 | [diff] [blame] | 5095 | return 0; |
| 5096 | } |
| 5097 | |
Christopher Faulet | 85d79c9 | 2016-11-09 16:54:56 +0100 | [diff] [blame] | 5098 | __LJMP static int hlua_unset_var(lua_State *L) |
| 5099 | { |
| 5100 | struct hlua_txn *htxn; |
| 5101 | const char *name; |
| 5102 | size_t len; |
| 5103 | struct sample smp; |
| 5104 | |
| 5105 | MAY_LJMP(check_args(L, 2, "unset_var")); |
| 5106 | |
| 5107 | /* It is useles to retrieve the stream, but this function |
| 5108 | * runs only in a stream context. |
| 5109 | */ |
| 5110 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5111 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 5112 | |
| 5113 | /* Unset the variable. */ |
| 5114 | smp_set_owner(&smp, htxn->p, htxn->s->sess, htxn->s, htxn->dir & SMP_OPT_DIR); |
| 5115 | vars_unset_by_name(name, len, &smp); |
| 5116 | return 0; |
| 5117 | } |
| 5118 | |
Thierry FOURNIER | 053ba8ad | 2015-06-08 13:05:33 +0200 | [diff] [blame] | 5119 | __LJMP static int hlua_get_var(lua_State *L) |
| 5120 | { |
| 5121 | struct hlua_txn *htxn; |
| 5122 | const char *name; |
| 5123 | size_t len; |
| 5124 | struct sample smp; |
| 5125 | |
| 5126 | MAY_LJMP(check_args(L, 2, "get_var")); |
| 5127 | |
| 5128 | /* It is useles to retrieve the stream, but this function |
| 5129 | * runs only in a stream context. |
| 5130 | */ |
| 5131 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5132 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 5133 | |
Willy Tarreau | 7560dd4 | 2016-03-10 16:28:58 +0100 | [diff] [blame] | 5134 | smp_set_owner(&smp, htxn->p, htxn->s->sess, htxn->s, htxn->dir & SMP_OPT_DIR); |
Willy Tarreau | 6204cd9 | 2016-03-10 16:33:04 +0100 | [diff] [blame] | 5135 | if (!vars_get_by_name(name, len, &smp)) { |
Thierry FOURNIER | 053ba8ad | 2015-06-08 13:05:33 +0200 | [diff] [blame] | 5136 | lua_pushnil(L); |
| 5137 | return 1; |
| 5138 | } |
| 5139 | |
| 5140 | return hlua_smp2lua(L, &smp); |
| 5141 | } |
| 5142 | |
Willy Tarreau | 5955166 | 2015-03-10 14:23:13 +0100 | [diff] [blame] | 5143 | __LJMP static int hlua_set_priv(lua_State *L) |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 5144 | { |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 5145 | struct hlua *hlua; |
| 5146 | |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 5147 | MAY_LJMP(check_args(L, 2, "set_priv")); |
| 5148 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 5149 | /* It is useles to retrieve the stream, but this function |
| 5150 | * runs only in a stream context. |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 5151 | */ |
| 5152 | MAY_LJMP(hlua_checktxn(L, 1)); |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 5153 | hlua = hlua_gethlua(L); |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 5154 | |
| 5155 | /* Remove previous value. */ |
Thierry FOURNIER | e068b60 | 2017-04-26 13:27:05 +0200 | [diff] [blame] | 5156 | luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref); |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 5157 | |
| 5158 | /* Get and store new value. */ |
| 5159 | lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */ |
| 5160 | hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */ |
| 5161 | |
| 5162 | return 0; |
| 5163 | } |
| 5164 | |
Willy Tarreau | 5955166 | 2015-03-10 14:23:13 +0100 | [diff] [blame] | 5165 | __LJMP static int hlua_get_priv(lua_State *L) |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 5166 | { |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 5167 | struct hlua *hlua; |
| 5168 | |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 5169 | MAY_LJMP(check_args(L, 1, "get_priv")); |
| 5170 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 5171 | /* It is useles to retrieve the stream, but this function |
| 5172 | * runs only in a stream context. |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 5173 | */ |
| 5174 | MAY_LJMP(hlua_checktxn(L, 1)); |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 5175 | hlua = hlua_gethlua(L); |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 5176 | |
| 5177 | /* Push configuration index in the stack. */ |
| 5178 | lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref); |
| 5179 | |
| 5180 | return 1; |
| 5181 | } |
| 5182 | |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 5183 | /* Create stack entry containing a class TXN. This function |
| 5184 | * return 0 if the stack does not contains free slots, |
| 5185 | * otherwise it returns 1. |
| 5186 | */ |
Thierry FOURNIER | ab00df6 | 2016-07-14 11:42:37 +0200 | [diff] [blame] | 5187 | static int hlua_txn_new(lua_State *L, struct stream *s, struct proxy *p, int dir, int flags) |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 5188 | { |
Willy Tarreau | de49138 | 2015-04-06 11:04:28 +0200 | [diff] [blame] | 5189 | struct hlua_txn *htxn; |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 5190 | |
| 5191 | /* Check stack size. */ |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 5192 | if (!lua_checkstack(L, 3)) |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 5193 | return 0; |
| 5194 | |
| 5195 | /* NOTE: The allocation never fails. The failure |
| 5196 | * throw an error, and the function never returns. |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 5197 | * if the throw is not available, the process is aborted. |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 5198 | */ |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 5199 | /* Create the object: obj[0] = userdata. */ |
| 5200 | lua_newtable(L); |
Willy Tarreau | de49138 | 2015-04-06 11:04:28 +0200 | [diff] [blame] | 5201 | htxn = lua_newuserdata(L, sizeof(*htxn)); |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 5202 | lua_rawseti(L, -2, 0); |
| 5203 | |
Willy Tarreau | de49138 | 2015-04-06 11:04:28 +0200 | [diff] [blame] | 5204 | htxn->s = s; |
| 5205 | htxn->p = p; |
Thierry FOURNIER | c4eebc8 | 2015-11-02 10:01:59 +0100 | [diff] [blame] | 5206 | htxn->dir = dir; |
Thierry FOURNIER | ab00df6 | 2016-07-14 11:42:37 +0200 | [diff] [blame] | 5207 | htxn->flags = flags; |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 5208 | |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 5209 | /* Create the "f" field that contains a list of fetches. */ |
| 5210 | lua_pushstring(L, "f"); |
Thierry FOURNIER | ca98866 | 2015-12-20 18:43:03 +0100 | [diff] [blame] | 5211 | if (!hlua_fetches_new(L, htxn, HLUA_F_MAY_USE_HTTP)) |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 5212 | return 0; |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 5213 | lua_rawset(L, -3); |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 5214 | |
| 5215 | /* Create the "sf" field that contains a list of stringsafe fetches. */ |
| 5216 | lua_pushstring(L, "sf"); |
Thierry FOURNIER | ca98866 | 2015-12-20 18:43:03 +0100 | [diff] [blame] | 5217 | if (!hlua_fetches_new(L, htxn, HLUA_F_MAY_USE_HTTP | HLUA_F_AS_STRING)) |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 5218 | return 0; |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 5219 | lua_rawset(L, -3); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 5220 | |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 5221 | /* Create the "c" field that contains a list of converters. */ |
| 5222 | lua_pushstring(L, "c"); |
Willy Tarreau | de49138 | 2015-04-06 11:04:28 +0200 | [diff] [blame] | 5223 | if (!hlua_converters_new(L, htxn, 0)) |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 5224 | return 0; |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 5225 | lua_rawset(L, -3); |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 5226 | |
| 5227 | /* Create the "sc" field that contains a list of stringsafe converters. */ |
| 5228 | lua_pushstring(L, "sc"); |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 5229 | if (!hlua_converters_new(L, htxn, HLUA_F_AS_STRING)) |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 5230 | return 0; |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 5231 | lua_rawset(L, -3); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 5232 | |
Thierry FOURNIER | 397826a | 2015-03-11 19:39:09 +0100 | [diff] [blame] | 5233 | /* Create the "req" field that contains the request channel object. */ |
| 5234 | lua_pushstring(L, "req"); |
Willy Tarreau | 2a71af4 | 2015-03-10 13:51:50 +0100 | [diff] [blame] | 5235 | if (!hlua_channel_new(L, &s->req)) |
Thierry FOURNIER | 397826a | 2015-03-11 19:39:09 +0100 | [diff] [blame] | 5236 | return 0; |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 5237 | lua_rawset(L, -3); |
Thierry FOURNIER | 397826a | 2015-03-11 19:39:09 +0100 | [diff] [blame] | 5238 | |
| 5239 | /* Create the "res" field that contains the response channel object. */ |
| 5240 | lua_pushstring(L, "res"); |
Willy Tarreau | 2a71af4 | 2015-03-10 13:51:50 +0100 | [diff] [blame] | 5241 | if (!hlua_channel_new(L, &s->res)) |
Thierry FOURNIER | 397826a | 2015-03-11 19:39:09 +0100 | [diff] [blame] | 5242 | return 0; |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 5243 | lua_rawset(L, -3); |
Thierry FOURNIER | 397826a | 2015-03-11 19:39:09 +0100 | [diff] [blame] | 5244 | |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5245 | /* Creates the HTTP object is the current proxy allows http. */ |
| 5246 | lua_pushstring(L, "http"); |
| 5247 | if (p->mode == PR_MODE_HTTP) { |
Willy Tarreau | de49138 | 2015-04-06 11:04:28 +0200 | [diff] [blame] | 5248 | if (!hlua_http_new(L, htxn)) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5249 | return 0; |
| 5250 | } |
| 5251 | else |
| 5252 | lua_pushnil(L); |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 5253 | lua_rawset(L, -3); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5254 | |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 5255 | /* Pop a class sesison metatable and affect it to the userdata. */ |
| 5256 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_txn_ref); |
| 5257 | lua_setmetatable(L, -2); |
| 5258 | |
| 5259 | return 1; |
| 5260 | } |
| 5261 | |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 5262 | __LJMP static int hlua_txn_deflog(lua_State *L) |
| 5263 | { |
| 5264 | const char *msg; |
| 5265 | struct hlua_txn *htxn; |
| 5266 | |
| 5267 | MAY_LJMP(check_args(L, 2, "deflog")); |
| 5268 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5269 | msg = MAY_LJMP(luaL_checkstring(L, 2)); |
| 5270 | |
| 5271 | hlua_sendlog(htxn->s->be, htxn->s->logs.level, msg); |
| 5272 | return 0; |
| 5273 | } |
| 5274 | |
| 5275 | __LJMP static int hlua_txn_log(lua_State *L) |
| 5276 | { |
| 5277 | int level; |
| 5278 | const char *msg; |
| 5279 | struct hlua_txn *htxn; |
| 5280 | |
| 5281 | MAY_LJMP(check_args(L, 3, "log")); |
| 5282 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5283 | level = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 5284 | msg = MAY_LJMP(luaL_checkstring(L, 3)); |
| 5285 | |
| 5286 | if (level < 0 || level >= NB_LOG_LEVELS) |
| 5287 | WILL_LJMP(luaL_argerror(L, 1, "Invalid loglevel.")); |
| 5288 | |
| 5289 | hlua_sendlog(htxn->s->be, level, msg); |
| 5290 | return 0; |
| 5291 | } |
| 5292 | |
| 5293 | __LJMP static int hlua_txn_log_debug(lua_State *L) |
| 5294 | { |
| 5295 | const char *msg; |
| 5296 | struct hlua_txn *htxn; |
| 5297 | |
| 5298 | MAY_LJMP(check_args(L, 2, "Debug")); |
| 5299 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5300 | msg = MAY_LJMP(luaL_checkstring(L, 2)); |
| 5301 | hlua_sendlog(htxn->s->be, LOG_DEBUG, msg); |
| 5302 | return 0; |
| 5303 | } |
| 5304 | |
| 5305 | __LJMP static int hlua_txn_log_info(lua_State *L) |
| 5306 | { |
| 5307 | const char *msg; |
| 5308 | struct hlua_txn *htxn; |
| 5309 | |
| 5310 | MAY_LJMP(check_args(L, 2, "Info")); |
| 5311 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5312 | msg = MAY_LJMP(luaL_checkstring(L, 2)); |
| 5313 | hlua_sendlog(htxn->s->be, LOG_INFO, msg); |
| 5314 | return 0; |
| 5315 | } |
| 5316 | |
| 5317 | __LJMP static int hlua_txn_log_warning(lua_State *L) |
| 5318 | { |
| 5319 | const char *msg; |
| 5320 | struct hlua_txn *htxn; |
| 5321 | |
| 5322 | MAY_LJMP(check_args(L, 2, "Warning")); |
| 5323 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5324 | msg = MAY_LJMP(luaL_checkstring(L, 2)); |
| 5325 | hlua_sendlog(htxn->s->be, LOG_WARNING, msg); |
| 5326 | return 0; |
| 5327 | } |
| 5328 | |
| 5329 | __LJMP static int hlua_txn_log_alert(lua_State *L) |
| 5330 | { |
| 5331 | const char *msg; |
| 5332 | struct hlua_txn *htxn; |
| 5333 | |
| 5334 | MAY_LJMP(check_args(L, 2, "Alert")); |
| 5335 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5336 | msg = MAY_LJMP(luaL_checkstring(L, 2)); |
| 5337 | hlua_sendlog(htxn->s->be, LOG_ALERT, msg); |
| 5338 | return 0; |
| 5339 | } |
| 5340 | |
Thierry FOURNIER | 2cce353 | 2015-03-16 12:04:16 +0100 | [diff] [blame] | 5341 | __LJMP static int hlua_txn_set_loglevel(lua_State *L) |
| 5342 | { |
| 5343 | struct hlua_txn *htxn; |
| 5344 | int ll; |
| 5345 | |
| 5346 | MAY_LJMP(check_args(L, 2, "set_loglevel")); |
| 5347 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5348 | ll = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 5349 | |
| 5350 | if (ll < 0 || ll > 7) |
| 5351 | WILL_LJMP(luaL_argerror(L, 2, "Bad log level. It must be between 0 and 7")); |
| 5352 | |
| 5353 | htxn->s->logs.level = ll; |
| 5354 | return 0; |
| 5355 | } |
| 5356 | |
| 5357 | __LJMP static int hlua_txn_set_tos(lua_State *L) |
| 5358 | { |
| 5359 | struct hlua_txn *htxn; |
Thierry FOURNIER | 2cce353 | 2015-03-16 12:04:16 +0100 | [diff] [blame] | 5360 | int tos; |
| 5361 | |
| 5362 | MAY_LJMP(check_args(L, 2, "set_tos")); |
| 5363 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5364 | tos = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 5365 | |
Willy Tarreau | 1a18b54 | 2018-12-11 16:37:42 +0100 | [diff] [blame] | 5366 | conn_set_tos(objt_conn(htxn->s->sess->origin), tos); |
Thierry FOURNIER | 2cce353 | 2015-03-16 12:04:16 +0100 | [diff] [blame] | 5367 | return 0; |
| 5368 | } |
| 5369 | |
| 5370 | __LJMP static int hlua_txn_set_mark(lua_State *L) |
| 5371 | { |
Thierry FOURNIER | 2cce353 | 2015-03-16 12:04:16 +0100 | [diff] [blame] | 5372 | struct hlua_txn *htxn; |
Thierry FOURNIER | 2cce353 | 2015-03-16 12:04:16 +0100 | [diff] [blame] | 5373 | int mark; |
| 5374 | |
| 5375 | MAY_LJMP(check_args(L, 2, "set_mark")); |
| 5376 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5377 | mark = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 5378 | |
Lukas Tribus | 579e3e3 | 2019-08-11 18:03:45 +0200 | [diff] [blame] | 5379 | conn_set_mark(objt_conn(htxn->s->sess->origin), mark); |
Thierry FOURNIER | 2cce353 | 2015-03-16 12:04:16 +0100 | [diff] [blame] | 5380 | return 0; |
| 5381 | } |
| 5382 | |
Patrick Hemmer | 268a707 | 2018-05-11 12:52:31 -0400 | [diff] [blame] | 5383 | __LJMP static int hlua_txn_set_priority_class(lua_State *L) |
| 5384 | { |
| 5385 | struct hlua_txn *htxn; |
| 5386 | |
| 5387 | MAY_LJMP(check_args(L, 2, "set_priority_class")); |
| 5388 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5389 | htxn->s->priority_class = queue_limit_class(MAY_LJMP(luaL_checkinteger(L, 2))); |
| 5390 | return 0; |
| 5391 | } |
| 5392 | |
| 5393 | __LJMP static int hlua_txn_set_priority_offset(lua_State *L) |
| 5394 | { |
| 5395 | struct hlua_txn *htxn; |
| 5396 | |
| 5397 | MAY_LJMP(check_args(L, 2, "set_priority_offset")); |
| 5398 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5399 | htxn->s->priority_offset = queue_limit_offset(MAY_LJMP(luaL_checkinteger(L, 2))); |
| 5400 | return 0; |
| 5401 | } |
| 5402 | |
Thierry FOURNIER | 893bfa3 | 2015-02-17 18:42:34 +0100 | [diff] [blame] | 5403 | /* This function is an Lua binding that send pending data |
| 5404 | * to the client, and close the stream interface. |
| 5405 | */ |
Thierry FOURNIER | 4bb375c | 2015-08-26 08:42:21 +0200 | [diff] [blame] | 5406 | __LJMP static int hlua_txn_done(lua_State *L) |
Thierry FOURNIER | 893bfa3 | 2015-02-17 18:42:34 +0100 | [diff] [blame] | 5407 | { |
Willy Tarreau | b2ccb56 | 2015-04-06 11:11:15 +0200 | [diff] [blame] | 5408 | struct hlua_txn *htxn; |
Thierry FOURNIER | 9bd52d4 | 2016-07-14 11:45:33 +0200 | [diff] [blame] | 5409 | struct hlua *hlua; |
Willy Tarreau | 8138967 | 2015-03-10 12:03:52 +0100 | [diff] [blame] | 5410 | struct channel *ic, *oc; |
Thierry FOURNIER | 893bfa3 | 2015-02-17 18:42:34 +0100 | [diff] [blame] | 5411 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 5412 | MAY_LJMP(check_args(L, 1, "close")); |
Willy Tarreau | b2ccb56 | 2015-04-06 11:11:15 +0200 | [diff] [blame] | 5413 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
Thierry FOURNIER | 9bd52d4 | 2016-07-14 11:45:33 +0200 | [diff] [blame] | 5414 | hlua = hlua_gethlua(L); |
Thierry FOURNIER | 893bfa3 | 2015-02-17 18:42:34 +0100 | [diff] [blame] | 5415 | |
Thierry FOURNIER | ab00df6 | 2016-07-14 11:42:37 +0200 | [diff] [blame] | 5416 | /* If the flags NOTERM is set, we cannot terminate the http |
| 5417 | * session, so we just end the execution of the current |
| 5418 | * lua code. |
| 5419 | */ |
| 5420 | if (htxn->flags & HLUA_TXN_NOTERM) { |
| 5421 | WILL_LJMP(hlua_done(L)); |
| 5422 | return 0; |
| 5423 | } |
| 5424 | |
Willy Tarreau | b2ccb56 | 2015-04-06 11:11:15 +0200 | [diff] [blame] | 5425 | ic = &htxn->s->req; |
| 5426 | oc = &htxn->s->res; |
Willy Tarreau | 8138967 | 2015-03-10 12:03:52 +0100 | [diff] [blame] | 5427 | |
Christopher Faulet | fe6a71b | 2019-07-26 16:40:24 +0200 | [diff] [blame] | 5428 | if (IS_HTX_STRM(htxn->s)) { |
| 5429 | htxn->s->txn->status = 0; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 5430 | http_reply_and_close(htxn->s, 0, NULL); |
Christopher Faulet | fe6a71b | 2019-07-26 16:40:24 +0200 | [diff] [blame] | 5431 | } |
Christopher Faulet | 4d0e263 | 2019-07-16 10:52:40 +0200 | [diff] [blame] | 5432 | else { |
Christopher Faulet | 4d0e263 | 2019-07-16 10:52:40 +0200 | [diff] [blame] | 5433 | channel_auto_read(ic); |
| 5434 | channel_abort(ic); |
| 5435 | channel_auto_close(ic); |
| 5436 | channel_erase(ic); |
Thierry FOURNIER | 10ec214 | 2015-08-24 17:23:45 +0200 | [diff] [blame] | 5437 | |
Christopher Faulet | 4d0e263 | 2019-07-16 10:52:40 +0200 | [diff] [blame] | 5438 | oc->wex = tick_add_ifset(now_ms, oc->wto); |
| 5439 | channel_auto_read(oc); |
| 5440 | channel_auto_close(oc); |
| 5441 | channel_shutr_now(oc); |
Thierry FOURNIER | 893bfa3 | 2015-02-17 18:42:34 +0100 | [diff] [blame] | 5442 | |
Christopher Faulet | 4d0e263 | 2019-07-16 10:52:40 +0200 | [diff] [blame] | 5443 | } |
Thierry FOURNIER | 4bb375c | 2015-08-26 08:42:21 +0200 | [diff] [blame] | 5444 | |
Christopher Faulet | fe6a71b | 2019-07-26 16:40:24 +0200 | [diff] [blame] | 5445 | ic->analysers &= AN_REQ_FLT_END; |
| 5446 | oc->analysers &= AN_RES_FLT_END; |
| 5447 | |
| 5448 | if (!(htxn->s->flags & SF_ERR_MASK)) // this is not really an error but it is |
| 5449 | htxn->s->flags |= SF_ERR_LOCAL; // to mark that it comes from the proxy |
| 5450 | |
Thierry FOURNIER | 9bd52d4 | 2016-07-14 11:45:33 +0200 | [diff] [blame] | 5451 | hlua->flags |= HLUA_STOP; |
Thierry FOURNIER | 4bb375c | 2015-08-26 08:42:21 +0200 | [diff] [blame] | 5452 | WILL_LJMP(hlua_done(L)); |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 5453 | return 0; |
| 5454 | } |
| 5455 | |
| 5456 | __LJMP static int hlua_log(lua_State *L) |
| 5457 | { |
| 5458 | int level; |
| 5459 | const char *msg; |
| 5460 | |
| 5461 | MAY_LJMP(check_args(L, 2, "log")); |
| 5462 | level = MAY_LJMP(luaL_checkinteger(L, 1)); |
| 5463 | msg = MAY_LJMP(luaL_checkstring(L, 2)); |
| 5464 | |
| 5465 | if (level < 0 || level >= NB_LOG_LEVELS) |
| 5466 | WILL_LJMP(luaL_argerror(L, 1, "Invalid loglevel.")); |
| 5467 | |
| 5468 | hlua_sendlog(NULL, level, msg); |
| 5469 | return 0; |
| 5470 | } |
| 5471 | |
| 5472 | __LJMP static int hlua_log_debug(lua_State *L) |
| 5473 | { |
| 5474 | const char *msg; |
| 5475 | |
| 5476 | MAY_LJMP(check_args(L, 1, "debug")); |
| 5477 | msg = MAY_LJMP(luaL_checkstring(L, 1)); |
| 5478 | hlua_sendlog(NULL, LOG_DEBUG, msg); |
| 5479 | return 0; |
| 5480 | } |
| 5481 | |
| 5482 | __LJMP static int hlua_log_info(lua_State *L) |
| 5483 | { |
| 5484 | const char *msg; |
| 5485 | |
| 5486 | MAY_LJMP(check_args(L, 1, "info")); |
| 5487 | msg = MAY_LJMP(luaL_checkstring(L, 1)); |
| 5488 | hlua_sendlog(NULL, LOG_INFO, msg); |
| 5489 | return 0; |
| 5490 | } |
| 5491 | |
| 5492 | __LJMP static int hlua_log_warning(lua_State *L) |
| 5493 | { |
| 5494 | const char *msg; |
| 5495 | |
| 5496 | MAY_LJMP(check_args(L, 1, "warning")); |
| 5497 | msg = MAY_LJMP(luaL_checkstring(L, 1)); |
| 5498 | hlua_sendlog(NULL, LOG_WARNING, msg); |
| 5499 | return 0; |
| 5500 | } |
| 5501 | |
| 5502 | __LJMP static int hlua_log_alert(lua_State *L) |
| 5503 | { |
| 5504 | const char *msg; |
| 5505 | |
| 5506 | MAY_LJMP(check_args(L, 1, "alert")); |
| 5507 | msg = MAY_LJMP(luaL_checkstring(L, 1)); |
| 5508 | hlua_sendlog(NULL, LOG_ALERT, msg); |
Thierry FOURNIER | 893bfa3 | 2015-02-17 18:42:34 +0100 | [diff] [blame] | 5509 | return 0; |
| 5510 | } |
| 5511 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 5512 | __LJMP static int hlua_sleep_yield(lua_State *L, int status, lua_KContext ctx) |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 5513 | { |
| 5514 | int wakeup_ms = lua_tointeger(L, -1); |
| 5515 | if (now_ms < wakeup_ms) |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 5516 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_sleep_yield, wakeup_ms, 0)); |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 5517 | return 0; |
| 5518 | } |
| 5519 | |
| 5520 | __LJMP static int hlua_sleep(lua_State *L) |
| 5521 | { |
| 5522 | unsigned int delay; |
Thierry FOURNIER | d44731f | 2015-03-04 15:51:09 +0100 | [diff] [blame] | 5523 | unsigned int wakeup_ms; |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 5524 | |
Thierry FOURNIER | d44731f | 2015-03-04 15:51:09 +0100 | [diff] [blame] | 5525 | MAY_LJMP(check_args(L, 1, "sleep")); |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 5526 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 5527 | delay = MAY_LJMP(luaL_checkinteger(L, 1)) * 1000; |
Thierry FOURNIER | d44731f | 2015-03-04 15:51:09 +0100 | [diff] [blame] | 5528 | wakeup_ms = tick_add(now_ms, delay); |
| 5529 | lua_pushinteger(L, wakeup_ms); |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 5530 | |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 5531 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_sleep_yield, wakeup_ms, 0)); |
Thierry FOURNIER | d44731f | 2015-03-04 15:51:09 +0100 | [diff] [blame] | 5532 | return 0; |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 5533 | } |
| 5534 | |
Thierry FOURNIER | d44731f | 2015-03-04 15:51:09 +0100 | [diff] [blame] | 5535 | __LJMP static int hlua_msleep(lua_State *L) |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 5536 | { |
| 5537 | unsigned int delay; |
Thierry FOURNIER | d44731f | 2015-03-04 15:51:09 +0100 | [diff] [blame] | 5538 | unsigned int wakeup_ms; |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 5539 | |
Thierry FOURNIER | d44731f | 2015-03-04 15:51:09 +0100 | [diff] [blame] | 5540 | MAY_LJMP(check_args(L, 1, "msleep")); |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 5541 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 5542 | delay = MAY_LJMP(luaL_checkinteger(L, 1)); |
Thierry FOURNIER | d44731f | 2015-03-04 15:51:09 +0100 | [diff] [blame] | 5543 | wakeup_ms = tick_add(now_ms, delay); |
| 5544 | lua_pushinteger(L, wakeup_ms); |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 5545 | |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 5546 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_sleep_yield, wakeup_ms, 0)); |
Thierry FOURNIER | d44731f | 2015-03-04 15:51:09 +0100 | [diff] [blame] | 5547 | return 0; |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 5548 | } |
| 5549 | |
Thierry FOURNIER | 13416fe | 2015-02-17 15:01:59 +0100 | [diff] [blame] | 5550 | /* This functionis an LUA binding. it permits to give back |
| 5551 | * the hand at the HAProxy scheduler. It is used when the |
| 5552 | * LUA processing consumes a lot of time. |
| 5553 | */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 5554 | __LJMP static int hlua_yield_yield(lua_State *L, int status, lua_KContext ctx) |
Thierry FOURNIER | d44731f | 2015-03-04 15:51:09 +0100 | [diff] [blame] | 5555 | { |
| 5556 | return 0; |
| 5557 | } |
| 5558 | |
Thierry FOURNIER | 13416fe | 2015-02-17 15:01:59 +0100 | [diff] [blame] | 5559 | __LJMP static int hlua_yield(lua_State *L) |
| 5560 | { |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 5561 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_yield_yield, TICK_ETERNITY, HLUA_CTRLYIELD)); |
Thierry FOURNIER | d44731f | 2015-03-04 15:51:09 +0100 | [diff] [blame] | 5562 | return 0; |
Thierry FOURNIER | 13416fe | 2015-02-17 15:01:59 +0100 | [diff] [blame] | 5563 | } |
| 5564 | |
Thierry FOURNIER | 37196f4 | 2015-02-16 19:34:56 +0100 | [diff] [blame] | 5565 | /* This function change the nice of the currently executed |
| 5566 | * task. It is used set low or high priority at the current |
| 5567 | * task. |
| 5568 | */ |
Willy Tarreau | 5955166 | 2015-03-10 14:23:13 +0100 | [diff] [blame] | 5569 | __LJMP static int hlua_set_nice(lua_State *L) |
Thierry FOURNIER | 37196f4 | 2015-02-16 19:34:56 +0100 | [diff] [blame] | 5570 | { |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 5571 | struct hlua *hlua; |
| 5572 | int nice; |
Thierry FOURNIER | 37196f4 | 2015-02-16 19:34:56 +0100 | [diff] [blame] | 5573 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 5574 | MAY_LJMP(check_args(L, 1, "set_nice")); |
| 5575 | hlua = hlua_gethlua(L); |
| 5576 | nice = MAY_LJMP(luaL_checkinteger(L, 1)); |
Thierry FOURNIER | 37196f4 | 2015-02-16 19:34:56 +0100 | [diff] [blame] | 5577 | |
| 5578 | /* If he task is not set, I'm in a start mode. */ |
| 5579 | if (!hlua || !hlua->task) |
| 5580 | return 0; |
| 5581 | |
| 5582 | if (nice < -1024) |
| 5583 | nice = -1024; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 5584 | else if (nice > 1024) |
Thierry FOURNIER | 37196f4 | 2015-02-16 19:34:56 +0100 | [diff] [blame] | 5585 | nice = 1024; |
| 5586 | |
| 5587 | hlua->task->nice = nice; |
| 5588 | return 0; |
| 5589 | } |
| 5590 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 5591 | /* This function is used as a callback of a task. It is called by the |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 5592 | * HAProxy task subsystem when the task is awaked. The LUA runtime can |
| 5593 | * return an E_AGAIN signal, the emmiter of this signal must set a |
| 5594 | * signal to wake the task. |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 5595 | * |
| 5596 | * Task wrapper are longjmp safe because the only one Lua code |
| 5597 | * executed is the safe hlua_ctx_resume(); |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 5598 | */ |
Willy Tarreau | 60409db | 2019-08-21 14:14:50 +0200 | [diff] [blame] | 5599 | struct task *hlua_process_task(struct task *task, void *context, unsigned short state) |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 5600 | { |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 5601 | struct hlua *hlua = context; |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 5602 | enum hlua_exec status; |
| 5603 | |
Christopher Faulet | 5bc9972 | 2018-04-25 10:34:45 +0200 | [diff] [blame] | 5604 | if (task->thread_mask == MAX_THREADS_MASK) |
| 5605 | task_set_affinity(task, tid_bit); |
| 5606 | |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 5607 | /* If it is the first call to the task, we must initialize the |
| 5608 | * execution timeouts. |
| 5609 | */ |
| 5610 | if (!HLUA_IS_RUNNING(hlua)) |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 5611 | hlua->max_time = hlua_timeout_task; |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 5612 | |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 5613 | /* Execute the Lua code. */ |
| 5614 | status = hlua_ctx_resume(hlua, 1); |
| 5615 | |
| 5616 | switch (status) { |
| 5617 | /* finished or yield */ |
| 5618 | case HLUA_E_OK: |
| 5619 | hlua_ctx_destroy(hlua); |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 5620 | task_destroy(task); |
Tim Duesterhus | cd235c6 | 2018-04-24 13:56:01 +0200 | [diff] [blame] | 5621 | task = NULL; |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 5622 | break; |
| 5623 | |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 5624 | case HLUA_E_AGAIN: /* co process or timeout wake me later. */ |
Thierry FOURNIER | cb14688 | 2017-12-10 17:10:57 +0100 | [diff] [blame] | 5625 | notification_gc(&hlua->com); |
PiBa-NL | fe971b3 | 2018-05-02 22:27:14 +0200 | [diff] [blame] | 5626 | task->expire = hlua->wake_time; |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 5627 | break; |
| 5628 | |
| 5629 | /* finished with error. */ |
| 5630 | case HLUA_E_ERRMSG: |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 5631 | SEND_ERR(NULL, "Lua task: %s.\n", lua_tostring(hlua->T, -1)); |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 5632 | hlua_ctx_destroy(hlua); |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 5633 | task_destroy(task); |
Emeric Brun | 253e53e | 2017-10-17 18:58:40 +0200 | [diff] [blame] | 5634 | task = NULL; |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 5635 | break; |
| 5636 | |
| 5637 | case HLUA_E_ERR: |
| 5638 | default: |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 5639 | SEND_ERR(NULL, "Lua task: unknown error.\n"); |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 5640 | hlua_ctx_destroy(hlua); |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 5641 | task_destroy(task); |
Emeric Brun | 253e53e | 2017-10-17 18:58:40 +0200 | [diff] [blame] | 5642 | task = NULL; |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 5643 | break; |
| 5644 | } |
Emeric Brun | 253e53e | 2017-10-17 18:58:40 +0200 | [diff] [blame] | 5645 | return task; |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 5646 | } |
| 5647 | |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 5648 | /* This function is an LUA binding that register LUA function to be |
| 5649 | * executed after the HAProxy configuration parsing and before the |
| 5650 | * HAProxy scheduler starts. This function expect only one LUA |
| 5651 | * argument that is a function. This function returns nothing, but |
| 5652 | * throws if an error is encountered. |
| 5653 | */ |
| 5654 | __LJMP static int hlua_register_init(lua_State *L) |
| 5655 | { |
| 5656 | struct hlua_init_function *init; |
| 5657 | int ref; |
| 5658 | |
| 5659 | MAY_LJMP(check_args(L, 1, "register_init")); |
| 5660 | |
| 5661 | ref = MAY_LJMP(hlua_checkfunction(L, 1)); |
| 5662 | |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 5663 | init = calloc(1, sizeof(*init)); |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 5664 | if (!init) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 5665 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 5666 | |
| 5667 | init->function_ref = ref; |
| 5668 | LIST_ADDQ(&hlua_init_functions, &init->l); |
| 5669 | return 0; |
| 5670 | } |
| 5671 | |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 5672 | /* This functio is an LUA binding. It permits to register a task |
| 5673 | * executed in parallel of the main HAroxy activity. The task is |
| 5674 | * created and it is set in the HAProxy scheduler. It can be called |
| 5675 | * from the "init" section, "post init" or during the runtime. |
| 5676 | * |
| 5677 | * Lua prototype: |
| 5678 | * |
| 5679 | * <none> core.register_task(<function>) |
| 5680 | */ |
| 5681 | static int hlua_register_task(lua_State *L) |
| 5682 | { |
| 5683 | struct hlua *hlua; |
| 5684 | struct task *task; |
| 5685 | int ref; |
| 5686 | |
| 5687 | MAY_LJMP(check_args(L, 1, "register_task")); |
| 5688 | |
| 5689 | ref = MAY_LJMP(hlua_checkfunction(L, 1)); |
| 5690 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 5691 | hlua = pool_alloc(pool_head_hlua); |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 5692 | if (!hlua) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 5693 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 5694 | |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 5695 | task = task_new(MAX_THREADS_MASK); |
Willy Tarreau | e09101e | 2018-10-16 17:37:12 +0200 | [diff] [blame] | 5696 | if (!task) |
| 5697 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
| 5698 | |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 5699 | task->context = hlua; |
| 5700 | task->process = hlua_process_task; |
| 5701 | |
Thierry FOURNIER | bf90ce1 | 2019-01-06 19:04:24 +0100 | [diff] [blame] | 5702 | if (!hlua_ctx_init(hlua, task, 1)) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 5703 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 5704 | |
| 5705 | /* Restore the function in the stack. */ |
| 5706 | lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, ref); |
| 5707 | hlua->nargs = 0; |
| 5708 | |
| 5709 | /* Schedule task. */ |
| 5710 | task_schedule(task, now_ms); |
| 5711 | |
| 5712 | return 0; |
| 5713 | } |
| 5714 | |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 5715 | /* Wrapper called by HAProxy to execute an LUA converter. This wrapper |
| 5716 | * doesn't allow "yield" functions because the HAProxy engine cannot |
| 5717 | * resume converters. |
| 5718 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 5719 | static int hlua_sample_conv_wrapper(const struct arg *arg_p, struct sample *smp, void *private) |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 5720 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 5721 | struct hlua_function *fcn = private; |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 5722 | struct stream *stream = smp->strm; |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 5723 | const char *error; |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 5724 | |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 5725 | if (!stream) |
| 5726 | return 0; |
| 5727 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 5728 | /* In the execution wrappers linked with a stream, the |
Thierry FOURNIER | 05ac424 | 2015-02-27 18:37:27 +0100 | [diff] [blame] | 5729 | * Lua context can be not initialized. This behavior |
| 5730 | * permits to save performances because a systematic |
| 5731 | * Lua initialization cause 5% performances loss. |
| 5732 | */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5733 | if (!stream->hlua) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 5734 | stream->hlua = pool_alloc(pool_head_hlua); |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5735 | if (!stream->hlua) { |
| 5736 | SEND_ERR(stream->be, "Lua converter '%s': can't initialize Lua context.\n", fcn->name); |
| 5737 | return 0; |
| 5738 | } |
Thierry FOURNIER | bf90ce1 | 2019-01-06 19:04:24 +0100 | [diff] [blame] | 5739 | if (!hlua_ctx_init(stream->hlua, stream->task, 0)) { |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5740 | SEND_ERR(stream->be, "Lua converter '%s': can't initialize Lua context.\n", fcn->name); |
| 5741 | return 0; |
| 5742 | } |
Thierry FOURNIER | 05ac424 | 2015-02-27 18:37:27 +0100 | [diff] [blame] | 5743 | } |
| 5744 | |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 5745 | /* If it is the first run, initialize the data for the call. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5746 | if (!HLUA_IS_RUNNING(stream->hlua)) { |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 5747 | |
| 5748 | /* The following Lua calls can fail. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5749 | if (!SET_SAFE_LJMP(stream->hlua->T)) { |
| 5750 | if (lua_type(stream->hlua->T, -1) == LUA_TSTRING) |
| 5751 | error = lua_tostring(stream->hlua->T, -1); |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 5752 | else |
| 5753 | error = "critical error"; |
| 5754 | SEND_ERR(stream->be, "Lua converter '%s': %s.\n", fcn->name, error); |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 5755 | return 0; |
| 5756 | } |
| 5757 | |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 5758 | /* Check stack available size. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5759 | if (!lua_checkstack(stream->hlua->T, 1)) { |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 5760 | SEND_ERR(stream->be, "Lua converter '%s': full stack.\n", fcn->name); |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5761 | RESET_SAFE_LJMP(stream->hlua->T); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 5762 | return 0; |
| 5763 | } |
| 5764 | |
| 5765 | /* Restore the function in the stack. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5766 | lua_rawgeti(stream->hlua->T, LUA_REGISTRYINDEX, fcn->function_ref); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 5767 | |
| 5768 | /* convert input sample and pust-it in the stack. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5769 | if (!lua_checkstack(stream->hlua->T, 1)) { |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 5770 | SEND_ERR(stream->be, "Lua converter '%s': full stack.\n", fcn->name); |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5771 | RESET_SAFE_LJMP(stream->hlua->T); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 5772 | return 0; |
| 5773 | } |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5774 | hlua_smp2lua(stream->hlua->T, smp); |
| 5775 | stream->hlua->nargs = 1; |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 5776 | |
| 5777 | /* push keywords in the stack. */ |
| 5778 | if (arg_p) { |
| 5779 | for (; arg_p->type != ARGT_STOP; arg_p++) { |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5780 | if (!lua_checkstack(stream->hlua->T, 1)) { |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 5781 | SEND_ERR(stream->be, "Lua converter '%s': full stack.\n", fcn->name); |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5782 | RESET_SAFE_LJMP(stream->hlua->T); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 5783 | return 0; |
| 5784 | } |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5785 | hlua_arg2lua(stream->hlua->T, arg_p); |
| 5786 | stream->hlua->nargs++; |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 5787 | } |
| 5788 | } |
| 5789 | |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 5790 | /* We must initialize the execution timeouts. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5791 | stream->hlua->max_time = hlua_timeout_session; |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 5792 | |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 5793 | /* At this point the execution is safe. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5794 | RESET_SAFE_LJMP(stream->hlua->T); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 5795 | } |
| 5796 | |
| 5797 | /* Execute the function. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5798 | switch (hlua_ctx_resume(stream->hlua, 0)) { |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 5799 | /* finished. */ |
| 5800 | case HLUA_E_OK: |
Thierry FOURNIER | fd80df1 | 2017-05-12 16:32:20 +0200 | [diff] [blame] | 5801 | /* If the stack is empty, the function fails. */ |
| 5802 | if (lua_gettop(stream->hlua->T) <= 0) |
| 5803 | return 0; |
| 5804 | |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 5805 | /* Convert the returned value in sample. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5806 | hlua_lua2smp(stream->hlua->T, -1, smp); |
| 5807 | lua_pop(stream->hlua->T, 1); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 5808 | return 1; |
| 5809 | |
| 5810 | /* yield. */ |
| 5811 | case HLUA_E_AGAIN: |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 5812 | SEND_ERR(stream->be, "Lua converter '%s': cannot use yielded functions.\n", fcn->name); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 5813 | return 0; |
| 5814 | |
| 5815 | /* finished with error. */ |
| 5816 | case HLUA_E_ERRMSG: |
| 5817 | /* Display log. */ |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 5818 | SEND_ERR(stream->be, "Lua converter '%s': %s.\n", |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5819 | fcn->name, lua_tostring(stream->hlua->T, -1)); |
| 5820 | lua_pop(stream->hlua->T, 1); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 5821 | return 0; |
| 5822 | |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 5823 | case HLUA_E_ETMOUT: |
| 5824 | SEND_ERR(stream->be, "Lua converter '%s': execution timeout.\n", fcn->name); |
| 5825 | return 0; |
| 5826 | |
| 5827 | case HLUA_E_NOMEM: |
| 5828 | SEND_ERR(stream->be, "Lua converter '%s': out of memory error.\n", fcn->name); |
| 5829 | return 0; |
| 5830 | |
| 5831 | case HLUA_E_YIELD: |
| 5832 | SEND_ERR(stream->be, "Lua converter '%s': yield functions like core.tcp() or core.sleep() are not allowed.\n", fcn->name); |
| 5833 | return 0; |
| 5834 | |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 5835 | case HLUA_E_ERR: |
| 5836 | /* Display log. */ |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 5837 | SEND_ERR(stream->be, "Lua converter '%s' returns an unknown error.\n", fcn->name); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 5838 | |
| 5839 | default: |
| 5840 | return 0; |
| 5841 | } |
| 5842 | } |
| 5843 | |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 5844 | /* Wrapper called by HAProxy to execute a sample-fetch. this wrapper |
| 5845 | * doesn't allow "yield" functions because the HAProxy engine cannot |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 5846 | * resume sample-fetches. This function will be called by the sample |
| 5847 | * fetch engine to call lua-based fetch operations. |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 5848 | */ |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 5849 | static int hlua_sample_fetch_wrapper(const struct arg *arg_p, struct sample *smp, |
| 5850 | const char *kw, void *private) |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 5851 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 5852 | struct hlua_function *fcn = private; |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 5853 | struct stream *stream = smp->strm; |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 5854 | const char *error; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 5855 | const struct buffer msg = { }; |
Christopher Faulet | bfab2dd | 2019-07-26 15:09:53 +0200 | [diff] [blame] | 5856 | unsigned int hflags = HLUA_TXN_NOTERM; |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 5857 | |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 5858 | if (!stream) |
| 5859 | return 0; |
Christopher Faulet | afd8f10 | 2018-11-08 11:34:21 +0100 | [diff] [blame] | 5860 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 5861 | /* In the execution wrappers linked with a stream, the |
Thierry FOURNIER | 05ac424 | 2015-02-27 18:37:27 +0100 | [diff] [blame] | 5862 | * Lua context can be not initialized. This behavior |
| 5863 | * permits to save performances because a systematic |
| 5864 | * Lua initialization cause 5% performances loss. |
| 5865 | */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5866 | if (!stream->hlua) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 5867 | stream->hlua = pool_alloc(pool_head_hlua); |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5868 | if (!stream->hlua) { |
| 5869 | SEND_ERR(stream->be, "Lua sample-fetch '%s': can't initialize Lua context.\n", fcn->name); |
| 5870 | return 0; |
| 5871 | } |
Thierry FOURNIER | bf90ce1 | 2019-01-06 19:04:24 +0100 | [diff] [blame] | 5872 | if (!hlua_ctx_init(stream->hlua, stream->task, 0)) { |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5873 | SEND_ERR(stream->be, "Lua sample-fetch '%s': can't initialize Lua context.\n", fcn->name); |
| 5874 | return 0; |
| 5875 | } |
Thierry FOURNIER | 05ac424 | 2015-02-27 18:37:27 +0100 | [diff] [blame] | 5876 | } |
| 5877 | |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5878 | consistency_set(stream, smp->opt, &stream->hlua->cons); |
Thierry FOURNIER | 11cfb3d | 2016-12-13 13:06:23 +0100 | [diff] [blame] | 5879 | |
Christopher Faulet | bfab2dd | 2019-07-26 15:09:53 +0200 | [diff] [blame] | 5880 | if (stream->be->mode == PR_MODE_HTTP) { |
| 5881 | if ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) |
| 5882 | hflags |= ((stream->txn->req.msg_state < HTTP_MSG_BODY) ? 0 : HLUA_TXN_HTTP_RDY); |
| 5883 | else |
| 5884 | hflags |= ((stream->txn->rsp.msg_state < HTTP_MSG_BODY) ? 0 : HLUA_TXN_HTTP_RDY); |
| 5885 | } |
| 5886 | |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 5887 | /* If it is the first run, initialize the data for the call. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5888 | if (!HLUA_IS_RUNNING(stream->hlua)) { |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 5889 | |
| 5890 | /* The following Lua calls can fail. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5891 | if (!SET_SAFE_LJMP(stream->hlua->T)) { |
| 5892 | if (lua_type(stream->hlua->T, -1) == LUA_TSTRING) |
| 5893 | error = lua_tostring(stream->hlua->T, -1); |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 5894 | else |
| 5895 | error = "critical error"; |
| 5896 | SEND_ERR(smp->px, "Lua sample-fetch '%s': %s.\n", fcn->name, error); |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 5897 | return 0; |
| 5898 | } |
| 5899 | |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 5900 | /* Check stack available size. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5901 | if (!lua_checkstack(stream->hlua->T, 2)) { |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 5902 | SEND_ERR(smp->px, "Lua sample-fetch '%s': full stack.\n", fcn->name); |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5903 | RESET_SAFE_LJMP(stream->hlua->T); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 5904 | return 0; |
| 5905 | } |
| 5906 | |
| 5907 | /* Restore the function in the stack. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5908 | lua_rawgeti(stream->hlua->T, LUA_REGISTRYINDEX, fcn->function_ref); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 5909 | |
| 5910 | /* push arguments in the stack. */ |
Christopher Faulet | bfab2dd | 2019-07-26 15:09:53 +0200 | [diff] [blame] | 5911 | if (!hlua_txn_new(stream->hlua->T, stream, smp->px, smp->opt & SMP_OPT_DIR, hflags)) { |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 5912 | SEND_ERR(smp->px, "Lua sample-fetch '%s': full stack.\n", fcn->name); |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5913 | RESET_SAFE_LJMP(stream->hlua->T); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 5914 | return 0; |
| 5915 | } |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5916 | stream->hlua->nargs = 1; |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 5917 | |
| 5918 | /* push keywords in the stack. */ |
| 5919 | for (; arg_p && arg_p->type != ARGT_STOP; arg_p++) { |
| 5920 | /* Check stack available size. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5921 | if (!lua_checkstack(stream->hlua->T, 1)) { |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 5922 | SEND_ERR(smp->px, "Lua sample-fetch '%s': full stack.\n", fcn->name); |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5923 | RESET_SAFE_LJMP(stream->hlua->T); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 5924 | return 0; |
| 5925 | } |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5926 | hlua_arg2lua(stream->hlua->T, arg_p); |
| 5927 | stream->hlua->nargs++; |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 5928 | } |
| 5929 | |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 5930 | /* We must initialize the execution timeouts. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5931 | stream->hlua->max_time = hlua_timeout_session; |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 5932 | |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 5933 | /* At this point the execution is safe. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5934 | RESET_SAFE_LJMP(stream->hlua->T); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 5935 | } |
| 5936 | |
| 5937 | /* Execute the function. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5938 | switch (hlua_ctx_resume(stream->hlua, 0)) { |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 5939 | /* finished. */ |
| 5940 | case HLUA_E_OK: |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5941 | if (!consistency_check(stream, smp->opt, &stream->hlua->cons)) { |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 5942 | si_retnclose(&stream->si[0], &msg); |
Thierry FOURNIER | d75cb0f | 2015-09-25 19:22:44 +0200 | [diff] [blame] | 5943 | return 0; |
Thierry FOURNIER | 11cfb3d | 2016-12-13 13:06:23 +0100 | [diff] [blame] | 5944 | } |
Thierry FOURNIER | fd80df1 | 2017-05-12 16:32:20 +0200 | [diff] [blame] | 5945 | /* If the stack is empty, the function fails. */ |
| 5946 | if (lua_gettop(stream->hlua->T) <= 0) |
| 5947 | return 0; |
| 5948 | |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 5949 | /* Convert the returned value in sample. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5950 | hlua_lua2smp(stream->hlua->T, -1, smp); |
| 5951 | lua_pop(stream->hlua->T, 1); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 5952 | |
| 5953 | /* Set the end of execution flag. */ |
| 5954 | smp->flags &= ~SMP_F_MAY_CHANGE; |
| 5955 | return 1; |
| 5956 | |
| 5957 | /* yield. */ |
| 5958 | case HLUA_E_AGAIN: |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5959 | if (!consistency_check(stream, smp->opt, &stream->hlua->cons)) |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 5960 | si_retnclose(&stream->si[0], &msg); |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 5961 | SEND_ERR(smp->px, "Lua sample-fetch '%s': cannot use yielded functions.\n", fcn->name); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 5962 | return 0; |
| 5963 | |
| 5964 | /* finished with error. */ |
| 5965 | case HLUA_E_ERRMSG: |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5966 | if (!consistency_check(stream, smp->opt, &stream->hlua->cons)) |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 5967 | si_retnclose(&stream->si[0], &msg); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 5968 | /* Display log. */ |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 5969 | SEND_ERR(smp->px, "Lua sample-fetch '%s': %s.\n", |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5970 | fcn->name, lua_tostring(stream->hlua->T, -1)); |
| 5971 | lua_pop(stream->hlua->T, 1); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 5972 | return 0; |
| 5973 | |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 5974 | case HLUA_E_ETMOUT: |
| 5975 | if (!consistency_check(stream, smp->opt, &stream->hlua->cons)) |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 5976 | si_retnclose(&stream->si[0], &msg); |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 5977 | SEND_ERR(smp->px, "Lua sample-fetch '%s': execution timeout.\n", fcn->name); |
| 5978 | return 0; |
| 5979 | |
| 5980 | case HLUA_E_NOMEM: |
| 5981 | if (!consistency_check(stream, smp->opt, &stream->hlua->cons)) |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 5982 | si_retnclose(&stream->si[0], &msg); |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 5983 | SEND_ERR(smp->px, "Lua sample-fetch '%s': out of memory error.\n", fcn->name); |
| 5984 | return 0; |
| 5985 | |
| 5986 | case HLUA_E_YIELD: |
| 5987 | if (!consistency_check(stream, smp->opt, &stream->hlua->cons)) |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 5988 | si_retnclose(&stream->si[0], &msg); |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 5989 | SEND_ERR(smp->px, "Lua sample-fetch '%s': yield not allowed.\n", fcn->name); |
| 5990 | return 0; |
| 5991 | |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 5992 | case HLUA_E_ERR: |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 5993 | if (!consistency_check(stream, smp->opt, &stream->hlua->cons)) |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 5994 | si_retnclose(&stream->si[0], &msg); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 5995 | /* Display log. */ |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 5996 | SEND_ERR(smp->px, "Lua sample-fetch '%s' returns an unknown error.\n", fcn->name); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 5997 | |
| 5998 | default: |
| 5999 | return 0; |
| 6000 | } |
| 6001 | } |
| 6002 | |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6003 | /* This function is an LUA binding used for registering |
| 6004 | * "sample-conv" functions. It expects a converter name used |
| 6005 | * in the haproxy configuration file, and an LUA function. |
| 6006 | */ |
| 6007 | __LJMP static int hlua_register_converters(lua_State *L) |
| 6008 | { |
| 6009 | struct sample_conv_kw_list *sck; |
| 6010 | const char *name; |
| 6011 | int ref; |
| 6012 | int len; |
| 6013 | struct hlua_function *fcn; |
| 6014 | |
| 6015 | MAY_LJMP(check_args(L, 2, "register_converters")); |
| 6016 | |
| 6017 | /* First argument : converter name. */ |
| 6018 | name = MAY_LJMP(luaL_checkstring(L, 1)); |
| 6019 | |
| 6020 | /* Second argument : lua function. */ |
| 6021 | ref = MAY_LJMP(hlua_checkfunction(L, 2)); |
| 6022 | |
| 6023 | /* Allocate and fill the sample fetch keyword struct. */ |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 6024 | sck = calloc(1, sizeof(*sck) + sizeof(struct sample_conv) * 2); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6025 | if (!sck) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 6026 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 6027 | fcn = calloc(1, sizeof(*fcn)); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6028 | if (!fcn) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 6029 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6030 | |
| 6031 | /* Fill fcn. */ |
| 6032 | fcn->name = strdup(name); |
| 6033 | if (!fcn->name) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 6034 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6035 | fcn->function_ref = ref; |
| 6036 | |
| 6037 | /* List head */ |
| 6038 | sck->list.n = sck->list.p = NULL; |
| 6039 | |
| 6040 | /* converter keyword. */ |
| 6041 | len = strlen("lua.") + strlen(name) + 1; |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 6042 | sck->kw[0].kw = calloc(1, len); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6043 | if (!sck->kw[0].kw) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 6044 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6045 | |
| 6046 | snprintf((char *)sck->kw[0].kw, len, "lua.%s", name); |
| 6047 | sck->kw[0].process = hlua_sample_conv_wrapper; |
David Carlier | 0c437f4 | 2016-04-27 16:21:56 +0100 | [diff] [blame] | 6048 | sck->kw[0].arg_mask = ARG12(0,STR,STR,STR,STR,STR,STR,STR,STR,STR,STR,STR,STR); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6049 | sck->kw[0].val_args = NULL; |
| 6050 | sck->kw[0].in_type = SMP_T_STR; |
| 6051 | sck->kw[0].out_type = SMP_T_STR; |
| 6052 | sck->kw[0].private = fcn; |
| 6053 | |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6054 | /* Register this new converter */ |
| 6055 | sample_register_convs(sck); |
| 6056 | |
| 6057 | return 0; |
| 6058 | } |
| 6059 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 6060 | /* This function is an LUA binding used for registering |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6061 | * "sample-fetch" functions. It expects a converter name used |
| 6062 | * in the haproxy configuration file, and an LUA function. |
| 6063 | */ |
| 6064 | __LJMP static int hlua_register_fetches(lua_State *L) |
| 6065 | { |
| 6066 | const char *name; |
| 6067 | int ref; |
| 6068 | int len; |
| 6069 | struct sample_fetch_kw_list *sfk; |
| 6070 | struct hlua_function *fcn; |
| 6071 | |
| 6072 | MAY_LJMP(check_args(L, 2, "register_fetches")); |
| 6073 | |
| 6074 | /* First argument : sample-fetch name. */ |
| 6075 | name = MAY_LJMP(luaL_checkstring(L, 1)); |
| 6076 | |
| 6077 | /* Second argument : lua function. */ |
| 6078 | ref = MAY_LJMP(hlua_checkfunction(L, 2)); |
| 6079 | |
| 6080 | /* Allocate and fill the sample fetch keyword struct. */ |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 6081 | sfk = calloc(1, sizeof(*sfk) + sizeof(struct sample_fetch) * 2); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6082 | if (!sfk) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 6083 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 6084 | fcn = calloc(1, sizeof(*fcn)); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6085 | if (!fcn) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 6086 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6087 | |
| 6088 | /* Fill fcn. */ |
| 6089 | fcn->name = strdup(name); |
| 6090 | if (!fcn->name) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 6091 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6092 | fcn->function_ref = ref; |
| 6093 | |
| 6094 | /* List head */ |
| 6095 | sfk->list.n = sfk->list.p = NULL; |
| 6096 | |
| 6097 | /* sample-fetch keyword. */ |
| 6098 | len = strlen("lua.") + strlen(name) + 1; |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 6099 | sfk->kw[0].kw = calloc(1, len); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6100 | if (!sfk->kw[0].kw) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 6101 | return luaL_error(L, "Lua out of memory error."); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6102 | |
| 6103 | snprintf((char *)sfk->kw[0].kw, len, "lua.%s", name); |
| 6104 | sfk->kw[0].process = hlua_sample_fetch_wrapper; |
David Carlier | 0c437f4 | 2016-04-27 16:21:56 +0100 | [diff] [blame] | 6105 | sfk->kw[0].arg_mask = ARG12(0,STR,STR,STR,STR,STR,STR,STR,STR,STR,STR,STR,STR); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6106 | sfk->kw[0].val_args = NULL; |
| 6107 | sfk->kw[0].out_type = SMP_T_STR; |
| 6108 | sfk->kw[0].use = SMP_USE_HTTP_ANY; |
| 6109 | sfk->kw[0].val = 0; |
| 6110 | sfk->kw[0].private = fcn; |
| 6111 | |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6112 | /* Register this new fetch. */ |
| 6113 | sample_register_fetches(sfk); |
| 6114 | |
| 6115 | return 0; |
| 6116 | } |
| 6117 | |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6118 | /* This function is a wrapper to execute each LUA function declared |
| 6119 | * as an action wrapper during the initialisation period. This function |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 6120 | * return ACT_RET_CONT if the processing is finished (with or without |
| 6121 | * error) and return ACT_RET_YIELD if the function must be called again |
| 6122 | * because the LUA returns a yield. |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6123 | */ |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 6124 | static enum act_return hlua_action(struct act_rule *rule, struct proxy *px, |
Willy Tarreau | 658b85b | 2015-09-27 10:00:49 +0200 | [diff] [blame] | 6125 | struct session *sess, struct stream *s, int flags) |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6126 | { |
| 6127 | char **arg; |
Christopher Faulet | bfab2dd | 2019-07-26 15:09:53 +0200 | [diff] [blame] | 6128 | unsigned int hflags = 0; |
Thierry FOURNIER | d75cb0f | 2015-09-25 19:22:44 +0200 | [diff] [blame] | 6129 | int dir; |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 6130 | const char *error; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6131 | const struct buffer msg = { }; |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 6132 | |
| 6133 | switch (rule->from) { |
Christopher Faulet | bfab2dd | 2019-07-26 15:09:53 +0200 | [diff] [blame] | 6134 | case ACT_F_TCP_REQ_CNT: ; dir = SMP_OPT_DIR_REQ; break; |
| 6135 | case ACT_F_TCP_RES_CNT: ; dir = SMP_OPT_DIR_RES; break; |
| 6136 | case ACT_F_HTTP_REQ: hflags = HLUA_TXN_HTTP_RDY ; dir = SMP_OPT_DIR_REQ; break; |
| 6137 | case ACT_F_HTTP_RES: hflags = HLUA_TXN_HTTP_RDY ; dir = SMP_OPT_DIR_RES; break; |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 6138 | default: |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6139 | SEND_ERR(px, "Lua: internal error while execute action.\n"); |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 6140 | return ACT_RET_CONT; |
| 6141 | } |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6142 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 6143 | /* In the execution wrappers linked with a stream, the |
Thierry FOURNIER | 05ac424 | 2015-02-27 18:37:27 +0100 | [diff] [blame] | 6144 | * Lua context can be not initialized. This behavior |
| 6145 | * permits to save performances because a systematic |
| 6146 | * Lua initialization cause 5% performances loss. |
| 6147 | */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6148 | if (!s->hlua) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 6149 | s->hlua = pool_alloc(pool_head_hlua); |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6150 | if (!s->hlua) { |
| 6151 | SEND_ERR(px, "Lua action '%s': can't initialize Lua context.\n", |
| 6152 | rule->arg.hlua_rule->fcn.name); |
| 6153 | return ACT_RET_CONT; |
| 6154 | } |
Thierry FOURNIER | bf90ce1 | 2019-01-06 19:04:24 +0100 | [diff] [blame] | 6155 | if (!hlua_ctx_init(s->hlua, s->task, 0)) { |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6156 | SEND_ERR(px, "Lua action '%s': can't initialize Lua context.\n", |
| 6157 | rule->arg.hlua_rule->fcn.name); |
| 6158 | return ACT_RET_CONT; |
| 6159 | } |
Thierry FOURNIER | 05ac424 | 2015-02-27 18:37:27 +0100 | [diff] [blame] | 6160 | } |
| 6161 | |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6162 | consistency_set(s, dir, &s->hlua->cons); |
| 6163 | |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6164 | /* If it is the first run, initialize the data for the call. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6165 | if (!HLUA_IS_RUNNING(s->hlua)) { |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 6166 | |
| 6167 | /* The following Lua calls can fail. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6168 | if (!SET_SAFE_LJMP(s->hlua->T)) { |
| 6169 | if (lua_type(s->hlua->T, -1) == LUA_TSTRING) |
| 6170 | error = lua_tostring(s->hlua->T, -1); |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 6171 | else |
| 6172 | error = "critical error"; |
| 6173 | SEND_ERR(px, "Lua function '%s': %s.\n", |
| 6174 | rule->arg.hlua_rule->fcn.name, error); |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 6175 | return ACT_RET_CONT; |
| 6176 | } |
| 6177 | |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6178 | /* Check stack available size. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6179 | if (!lua_checkstack(s->hlua->T, 1)) { |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6180 | SEND_ERR(px, "Lua function '%s': full stack.\n", |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 6181 | rule->arg.hlua_rule->fcn.name); |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6182 | RESET_SAFE_LJMP(s->hlua->T); |
Thierry FOURNIER | 24ff6c6 | 2015-08-06 08:52:53 +0200 | [diff] [blame] | 6183 | return ACT_RET_CONT; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6184 | } |
| 6185 | |
| 6186 | /* Restore the function in the stack. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6187 | lua_rawgeti(s->hlua->T, LUA_REGISTRYINDEX, rule->arg.hlua_rule->fcn.function_ref); |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6188 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 6189 | /* Create and and push object stream in the stack. */ |
Christopher Faulet | bfab2dd | 2019-07-26 15:09:53 +0200 | [diff] [blame] | 6190 | if (!hlua_txn_new(s->hlua->T, s, px, dir, hflags)) { |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6191 | SEND_ERR(px, "Lua function '%s': full stack.\n", |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 6192 | rule->arg.hlua_rule->fcn.name); |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6193 | RESET_SAFE_LJMP(s->hlua->T); |
Thierry FOURNIER | 24ff6c6 | 2015-08-06 08:52:53 +0200 | [diff] [blame] | 6194 | return ACT_RET_CONT; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6195 | } |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6196 | s->hlua->nargs = 1; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6197 | |
| 6198 | /* push keywords in the stack. */ |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 6199 | for (arg = rule->arg.hlua_rule->args; arg && *arg; arg++) { |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6200 | if (!lua_checkstack(s->hlua->T, 1)) { |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6201 | SEND_ERR(px, "Lua function '%s': full stack.\n", |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 6202 | rule->arg.hlua_rule->fcn.name); |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6203 | RESET_SAFE_LJMP(s->hlua->T); |
Thierry FOURNIER | 24ff6c6 | 2015-08-06 08:52:53 +0200 | [diff] [blame] | 6204 | return ACT_RET_CONT; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6205 | } |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6206 | lua_pushstring(s->hlua->T, *arg); |
| 6207 | s->hlua->nargs++; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6208 | } |
| 6209 | |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 6210 | /* Now the execution is safe. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6211 | RESET_SAFE_LJMP(s->hlua->T); |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 6212 | |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 6213 | /* We must initialize the execution timeouts. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6214 | s->hlua->max_time = hlua_timeout_session; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6215 | } |
| 6216 | |
| 6217 | /* Execute the function. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6218 | switch (hlua_ctx_resume(s->hlua, !(flags & ACT_FLAG_FINAL))) { |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6219 | /* finished. */ |
| 6220 | case HLUA_E_OK: |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6221 | if (!consistency_check(s, dir, &s->hlua->cons)) { |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 6222 | si_retnclose(&s->si[0], &msg); |
Thierry FOURNIER | d75cb0f | 2015-09-25 19:22:44 +0200 | [diff] [blame] | 6223 | return ACT_RET_ERR; |
Thierry FOURNIER | 11cfb3d | 2016-12-13 13:06:23 +0100 | [diff] [blame] | 6224 | } |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6225 | if (s->hlua->flags & HLUA_STOP) |
Christopher Faulet | 8f1aa77 | 2019-07-04 11:27:15 +0200 | [diff] [blame] | 6226 | return ACT_RET_DONE; |
Thierry FOURNIER | 24ff6c6 | 2015-08-06 08:52:53 +0200 | [diff] [blame] | 6227 | return ACT_RET_CONT; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6228 | |
| 6229 | /* yield. */ |
| 6230 | case HLUA_E_AGAIN: |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 6231 | /* Set timeout in the required channel. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6232 | if (s->hlua->wake_time != TICK_ETERNITY) { |
Christopher Faulet | 81921b1 | 2019-08-14 23:19:45 +0200 | [diff] [blame] | 6233 | if (dir == SMP_OPT_DIR_REQ) |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6234 | s->req.analyse_exp = s->hlua->wake_time; |
Christopher Faulet | bfab2dd | 2019-07-26 15:09:53 +0200 | [diff] [blame] | 6235 | else |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6236 | s->res.analyse_exp = s->hlua->wake_time; |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 6237 | } |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6238 | /* Some actions can be wake up when a "write" event |
| 6239 | * is detected on a response channel. This is useful |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 6240 | * only for actions targeted on the requests. |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6241 | */ |
Christopher Faulet | 51fa358 | 2019-07-26 14:54:52 +0200 | [diff] [blame] | 6242 | if (HLUA_IS_WAKERESWR(s->hlua)) |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 6243 | s->res.flags |= CF_WAKE_WRITE; |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6244 | if (HLUA_IS_WAKEREQWR(s->hlua)) |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 6245 | s->req.flags |= CF_WAKE_WRITE; |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 6246 | /* We can quit the function without consistency check |
Thierry FOURNIER | 11cfb3d | 2016-12-13 13:06:23 +0100 | [diff] [blame] | 6247 | * because HAProxy is not able to manipulate data, it |
| 6248 | * is only allowed to call me again. */ |
Thierry FOURNIER | 24ff6c6 | 2015-08-06 08:52:53 +0200 | [diff] [blame] | 6249 | return ACT_RET_YIELD; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6250 | |
| 6251 | /* finished with error. */ |
| 6252 | case HLUA_E_ERRMSG: |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6253 | if (!consistency_check(s, dir, &s->hlua->cons)) { |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 6254 | si_retnclose(&s->si[0], &msg); |
Thierry FOURNIER | d75cb0f | 2015-09-25 19:22:44 +0200 | [diff] [blame] | 6255 | return ACT_RET_ERR; |
Thierry FOURNIER | 11cfb3d | 2016-12-13 13:06:23 +0100 | [diff] [blame] | 6256 | } |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6257 | /* Display log. */ |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6258 | SEND_ERR(px, "Lua function '%s': %s.\n", |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6259 | rule->arg.hlua_rule->fcn.name, lua_tostring(s->hlua->T, -1)); |
| 6260 | lua_pop(s->hlua->T, 1); |
Thierry FOURNIER | 24ff6c6 | 2015-08-06 08:52:53 +0200 | [diff] [blame] | 6261 | return ACT_RET_CONT; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6262 | |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 6263 | case HLUA_E_ETMOUT: |
| 6264 | if (!consistency_check(s, dir, &s->hlua->cons)) { |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 6265 | si_retnclose(&s->si[0], &msg); |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 6266 | return ACT_RET_ERR; |
| 6267 | } |
| 6268 | SEND_ERR(px, "Lua function '%s': execution timeout.\n", rule->arg.hlua_rule->fcn.name); |
| 6269 | return 0; |
| 6270 | |
| 6271 | case HLUA_E_NOMEM: |
| 6272 | if (!consistency_check(s, dir, &s->hlua->cons)) { |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 6273 | si_retnclose(&s->si[0], &msg); |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 6274 | return ACT_RET_ERR; |
| 6275 | } |
| 6276 | SEND_ERR(px, "Lua function '%s': out of memory error.\n", rule->arg.hlua_rule->fcn.name); |
| 6277 | return 0; |
| 6278 | |
| 6279 | case HLUA_E_YIELD: |
| 6280 | if (!consistency_check(s, dir, &s->hlua->cons)) { |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 6281 | si_retnclose(&s->si[0], &msg); |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 6282 | return ACT_RET_ERR; |
| 6283 | } |
| 6284 | SEND_ERR(px, "Lua function '%s': aborting Lua processing on expired timeout.\n", |
| 6285 | rule->arg.hlua_rule->fcn.name); |
| 6286 | return 0; |
| 6287 | |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6288 | case HLUA_E_ERR: |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6289 | if (!consistency_check(s, dir, &s->hlua->cons)) { |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 6290 | si_retnclose(&s->si[0], &msg); |
Thierry FOURNIER | d75cb0f | 2015-09-25 19:22:44 +0200 | [diff] [blame] | 6291 | return ACT_RET_ERR; |
Thierry FOURNIER | 11cfb3d | 2016-12-13 13:06:23 +0100 | [diff] [blame] | 6292 | } |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6293 | /* Display log. */ |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6294 | SEND_ERR(px, "Lua function '%s' return an unknown error.\n", |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 6295 | rule->arg.hlua_rule->fcn.name); |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6296 | |
| 6297 | default: |
Thierry FOURNIER | 24ff6c6 | 2015-08-06 08:52:53 +0200 | [diff] [blame] | 6298 | return ACT_RET_CONT; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6299 | } |
| 6300 | } |
| 6301 | |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 6302 | struct task *hlua_applet_wakeup(struct task *t, void *context, unsigned short state) |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 6303 | { |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 6304 | struct appctx *ctx = context; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 6305 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 6306 | appctx_wakeup(ctx); |
Willy Tarreau | d958741 | 2017-08-23 16:07:33 +0200 | [diff] [blame] | 6307 | t->expire = TICK_ETERNITY; |
Willy Tarreau | d1aa41f | 2017-07-21 16:41:56 +0200 | [diff] [blame] | 6308 | return t; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 6309 | } |
| 6310 | |
| 6311 | static int hlua_applet_tcp_init(struct appctx *ctx, struct proxy *px, struct stream *strm) |
| 6312 | { |
| 6313 | struct stream_interface *si = ctx->owner; |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 6314 | struct hlua *hlua; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 6315 | struct task *task; |
| 6316 | char **arg; |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 6317 | const char *error; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 6318 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 6319 | hlua = pool_alloc(pool_head_hlua); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 6320 | if (!hlua) { |
| 6321 | SEND_ERR(px, "Lua applet tcp '%s': out of memory.\n", |
| 6322 | ctx->rule->arg.hlua_rule->fcn.name); |
| 6323 | return 0; |
| 6324 | } |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 6325 | HLUA_INIT(hlua); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 6326 | ctx->ctx.hlua_apptcp.hlua = hlua; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 6327 | ctx->ctx.hlua_apptcp.flags = 0; |
| 6328 | |
| 6329 | /* Create task used by signal to wakeup applets. */ |
Willy Tarreau | 5f4a47b | 2017-10-31 15:59:32 +0100 | [diff] [blame] | 6330 | task = task_new(tid_bit); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 6331 | if (!task) { |
| 6332 | SEND_ERR(px, "Lua applet tcp '%s': out of memory.\n", |
| 6333 | ctx->rule->arg.hlua_rule->fcn.name); |
| 6334 | return 0; |
| 6335 | } |
| 6336 | task->nice = 0; |
| 6337 | task->context = ctx; |
| 6338 | task->process = hlua_applet_wakeup; |
| 6339 | ctx->ctx.hlua_apptcp.task = task; |
| 6340 | |
| 6341 | /* In the execution wrappers linked with a stream, the |
| 6342 | * Lua context can be not initialized. This behavior |
| 6343 | * permits to save performances because a systematic |
| 6344 | * Lua initialization cause 5% performances loss. |
| 6345 | */ |
Thierry FOURNIER | bf90ce1 | 2019-01-06 19:04:24 +0100 | [diff] [blame] | 6346 | if (!hlua_ctx_init(hlua, task, 0)) { |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 6347 | SEND_ERR(px, "Lua applet tcp '%s': can't initialize Lua context.\n", |
| 6348 | ctx->rule->arg.hlua_rule->fcn.name); |
| 6349 | return 0; |
| 6350 | } |
| 6351 | |
| 6352 | /* Set timeout according with the applet configuration. */ |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 6353 | hlua->max_time = ctx->applet->timeout; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 6354 | |
| 6355 | /* The following Lua calls can fail. */ |
| 6356 | if (!SET_SAFE_LJMP(hlua->T)) { |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 6357 | if (lua_type(hlua->T, -1) == LUA_TSTRING) |
| 6358 | error = lua_tostring(hlua->T, -1); |
| 6359 | else |
| 6360 | error = "critical error"; |
| 6361 | SEND_ERR(px, "Lua applet tcp '%s': %s.\n", |
| 6362 | ctx->rule->arg.hlua_rule->fcn.name, error); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 6363 | return 0; |
| 6364 | } |
| 6365 | |
| 6366 | /* Check stack available size. */ |
| 6367 | if (!lua_checkstack(hlua->T, 1)) { |
| 6368 | SEND_ERR(px, "Lua applet tcp '%s': full stack.\n", |
| 6369 | ctx->rule->arg.hlua_rule->fcn.name); |
| 6370 | RESET_SAFE_LJMP(hlua->T); |
| 6371 | return 0; |
| 6372 | } |
| 6373 | |
| 6374 | /* Restore the function in the stack. */ |
| 6375 | lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, ctx->rule->arg.hlua_rule->fcn.function_ref); |
| 6376 | |
| 6377 | /* Create and and push object stream in the stack. */ |
| 6378 | if (!hlua_applet_tcp_new(hlua->T, ctx)) { |
| 6379 | SEND_ERR(px, "Lua applet tcp '%s': full stack.\n", |
| 6380 | ctx->rule->arg.hlua_rule->fcn.name); |
| 6381 | RESET_SAFE_LJMP(hlua->T); |
| 6382 | return 0; |
| 6383 | } |
| 6384 | hlua->nargs = 1; |
| 6385 | |
| 6386 | /* push keywords in the stack. */ |
| 6387 | for (arg = ctx->rule->arg.hlua_rule->args; arg && *arg; arg++) { |
| 6388 | if (!lua_checkstack(hlua->T, 1)) { |
| 6389 | SEND_ERR(px, "Lua applet tcp '%s': full stack.\n", |
| 6390 | ctx->rule->arg.hlua_rule->fcn.name); |
| 6391 | RESET_SAFE_LJMP(hlua->T); |
| 6392 | return 0; |
| 6393 | } |
| 6394 | lua_pushstring(hlua->T, *arg); |
| 6395 | hlua->nargs++; |
| 6396 | } |
| 6397 | |
| 6398 | RESET_SAFE_LJMP(hlua->T); |
| 6399 | |
| 6400 | /* Wakeup the applet ASAP. */ |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 6401 | si_cant_get(si); |
Willy Tarreau | 3367d41 | 2018-11-15 10:57:41 +0100 | [diff] [blame] | 6402 | si_rx_endp_more(si); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 6403 | |
| 6404 | return 1; |
| 6405 | } |
| 6406 | |
Willy Tarreau | 60409db | 2019-08-21 14:14:50 +0200 | [diff] [blame] | 6407 | void hlua_applet_tcp_fct(struct appctx *ctx) |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 6408 | { |
| 6409 | struct stream_interface *si = ctx->owner; |
| 6410 | struct stream *strm = si_strm(si); |
| 6411 | struct channel *res = si_ic(si); |
| 6412 | struct act_rule *rule = ctx->rule; |
| 6413 | struct proxy *px = strm->be; |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 6414 | struct hlua *hlua = ctx->ctx.hlua_apptcp.hlua; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 6415 | |
| 6416 | /* The applet execution is already done. */ |
Olivier Houchard | 594c8c5 | 2018-08-28 14:41:31 +0200 | [diff] [blame] | 6417 | if (ctx->ctx.hlua_apptcp.flags & APPLET_DONE) { |
| 6418 | /* eat the whole request */ |
| 6419 | co_skip(si_oc(si), co_data(si_oc(si))); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 6420 | return; |
Olivier Houchard | 594c8c5 | 2018-08-28 14:41:31 +0200 | [diff] [blame] | 6421 | } |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 6422 | |
| 6423 | /* If the stream is disconnect or closed, ldo nothing. */ |
| 6424 | if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) |
| 6425 | return; |
| 6426 | |
| 6427 | /* Execute the function. */ |
| 6428 | switch (hlua_ctx_resume(hlua, 1)) { |
| 6429 | /* finished. */ |
| 6430 | case HLUA_E_OK: |
| 6431 | ctx->ctx.hlua_apptcp.flags |= APPLET_DONE; |
| 6432 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 6433 | /* eat the whole request */ |
Willy Tarreau | a79021a | 2018-06-15 18:07:57 +0200 | [diff] [blame] | 6434 | co_skip(si_oc(si), co_data(si_oc(si))); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 6435 | res->flags |= CF_READ_NULL; |
| 6436 | si_shutr(si); |
| 6437 | return; |
| 6438 | |
| 6439 | /* yield. */ |
| 6440 | case HLUA_E_AGAIN: |
Thierry Fournier | 0164f20 | 2016-02-20 17:47:43 +0100 | [diff] [blame] | 6441 | if (hlua->wake_time != TICK_ETERNITY) |
| 6442 | task_schedule(ctx->ctx.hlua_apptcp.task, hlua->wake_time); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 6443 | return; |
| 6444 | |
| 6445 | /* finished with error. */ |
| 6446 | case HLUA_E_ERRMSG: |
| 6447 | /* Display log. */ |
| 6448 | SEND_ERR(px, "Lua applet tcp '%s': %s.\n", |
| 6449 | rule->arg.hlua_rule->fcn.name, lua_tostring(hlua->T, -1)); |
| 6450 | lua_pop(hlua->T, 1); |
| 6451 | goto error; |
| 6452 | |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 6453 | case HLUA_E_ETMOUT: |
| 6454 | SEND_ERR(px, "Lua applet tcp '%s': execution timeout.\n", |
| 6455 | rule->arg.hlua_rule->fcn.name); |
| 6456 | goto error; |
| 6457 | |
| 6458 | case HLUA_E_NOMEM: |
| 6459 | SEND_ERR(px, "Lua applet tcp '%s': out of memory error.\n", |
| 6460 | rule->arg.hlua_rule->fcn.name); |
| 6461 | goto error; |
| 6462 | |
| 6463 | case HLUA_E_YIELD: /* unexpected */ |
| 6464 | SEND_ERR(px, "Lua applet tcp '%s': yield not allowed.\n", |
| 6465 | rule->arg.hlua_rule->fcn.name); |
| 6466 | goto error; |
| 6467 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 6468 | case HLUA_E_ERR: |
| 6469 | /* Display log. */ |
| 6470 | SEND_ERR(px, "Lua applet tcp '%s' return an unknown error.\n", |
| 6471 | rule->arg.hlua_rule->fcn.name); |
| 6472 | goto error; |
| 6473 | |
| 6474 | default: |
| 6475 | goto error; |
| 6476 | } |
| 6477 | |
| 6478 | error: |
| 6479 | |
| 6480 | /* For all other cases, just close the stream. */ |
| 6481 | si_shutw(si); |
| 6482 | si_shutr(si); |
| 6483 | ctx->ctx.hlua_apptcp.flags |= APPLET_DONE; |
| 6484 | } |
| 6485 | |
| 6486 | static void hlua_applet_tcp_release(struct appctx *ctx) |
| 6487 | { |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 6488 | task_destroy(ctx->ctx.hlua_apptcp.task); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 6489 | ctx->ctx.hlua_apptcp.task = NULL; |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 6490 | hlua_ctx_destroy(ctx->ctx.hlua_apptcp.hlua); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 6491 | ctx->ctx.hlua_apptcp.hlua = NULL; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 6492 | } |
| 6493 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 6494 | /* The function returns 1 if the initialisation is complete, 0 if |
| 6495 | * an errors occurs and -1 if more data are required for initializing |
| 6496 | * the applet. |
| 6497 | */ |
| 6498 | static int hlua_applet_http_init(struct appctx *ctx, struct proxy *px, struct stream *strm) |
| 6499 | { |
| 6500 | struct stream_interface *si = ctx->owner; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 6501 | struct http_txn *txn; |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 6502 | struct hlua *hlua; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 6503 | char **arg; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 6504 | struct task *task; |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 6505 | const char *error; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 6506 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 6507 | txn = strm->txn; |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 6508 | hlua = pool_alloc(pool_head_hlua); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 6509 | if (!hlua) { |
| 6510 | SEND_ERR(px, "Lua applet http '%s': out of memory.\n", |
| 6511 | ctx->rule->arg.hlua_rule->fcn.name); |
| 6512 | return 0; |
| 6513 | } |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 6514 | HLUA_INIT(hlua); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 6515 | ctx->ctx.hlua_apphttp.hlua = hlua; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 6516 | ctx->ctx.hlua_apphttp.left_bytes = -1; |
| 6517 | ctx->ctx.hlua_apphttp.flags = 0; |
| 6518 | |
Thierry FOURNIER | d93ea2b | 2015-12-20 19:14:52 +0100 | [diff] [blame] | 6519 | if (txn->req.flags & HTTP_MSGF_VER_11) |
| 6520 | ctx->ctx.hlua_apphttp.flags |= APPLET_HTTP11; |
| 6521 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 6522 | /* Create task used by signal to wakeup applets. */ |
Willy Tarreau | 5f4a47b | 2017-10-31 15:59:32 +0100 | [diff] [blame] | 6523 | task = task_new(tid_bit); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 6524 | if (!task) { |
| 6525 | SEND_ERR(px, "Lua applet http '%s': out of memory.\n", |
| 6526 | ctx->rule->arg.hlua_rule->fcn.name); |
| 6527 | return 0; |
| 6528 | } |
| 6529 | task->nice = 0; |
| 6530 | task->context = ctx; |
| 6531 | task->process = hlua_applet_wakeup; |
| 6532 | ctx->ctx.hlua_apphttp.task = task; |
| 6533 | |
| 6534 | /* In the execution wrappers linked with a stream, the |
| 6535 | * Lua context can be not initialized. This behavior |
| 6536 | * permits to save performances because a systematic |
| 6537 | * Lua initialization cause 5% performances loss. |
| 6538 | */ |
Thierry FOURNIER | bf90ce1 | 2019-01-06 19:04:24 +0100 | [diff] [blame] | 6539 | if (!hlua_ctx_init(hlua, task, 0)) { |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 6540 | SEND_ERR(px, "Lua applet http '%s': can't initialize Lua context.\n", |
| 6541 | ctx->rule->arg.hlua_rule->fcn.name); |
| 6542 | return 0; |
| 6543 | } |
| 6544 | |
| 6545 | /* Set timeout according with the applet configuration. */ |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 6546 | hlua->max_time = ctx->applet->timeout; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 6547 | |
| 6548 | /* The following Lua calls can fail. */ |
| 6549 | if (!SET_SAFE_LJMP(hlua->T)) { |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 6550 | if (lua_type(hlua->T, -1) == LUA_TSTRING) |
| 6551 | error = lua_tostring(hlua->T, -1); |
| 6552 | else |
| 6553 | error = "critical error"; |
| 6554 | SEND_ERR(px, "Lua applet http '%s': %s.\n", |
| 6555 | ctx->rule->arg.hlua_rule->fcn.name, error); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 6556 | return 0; |
| 6557 | } |
| 6558 | |
| 6559 | /* Check stack available size. */ |
| 6560 | if (!lua_checkstack(hlua->T, 1)) { |
| 6561 | SEND_ERR(px, "Lua applet http '%s': full stack.\n", |
| 6562 | ctx->rule->arg.hlua_rule->fcn.name); |
| 6563 | RESET_SAFE_LJMP(hlua->T); |
| 6564 | return 0; |
| 6565 | } |
| 6566 | |
| 6567 | /* Restore the function in the stack. */ |
| 6568 | lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, ctx->rule->arg.hlua_rule->fcn.function_ref); |
| 6569 | |
| 6570 | /* Create and and push object stream in the stack. */ |
| 6571 | if (!hlua_applet_http_new(hlua->T, ctx)) { |
| 6572 | SEND_ERR(px, "Lua applet http '%s': full stack.\n", |
| 6573 | ctx->rule->arg.hlua_rule->fcn.name); |
| 6574 | RESET_SAFE_LJMP(hlua->T); |
| 6575 | return 0; |
| 6576 | } |
| 6577 | hlua->nargs = 1; |
| 6578 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 6579 | /* push keywords in the stack. */ |
| 6580 | for (arg = ctx->rule->arg.hlua_rule->args; arg && *arg; arg++) { |
| 6581 | if (!lua_checkstack(hlua->T, 1)) { |
| 6582 | SEND_ERR(px, "Lua applet http '%s': full stack.\n", |
| 6583 | ctx->rule->arg.hlua_rule->fcn.name); |
| 6584 | RESET_SAFE_LJMP(hlua->T); |
| 6585 | return 0; |
| 6586 | } |
| 6587 | lua_pushstring(hlua->T, *arg); |
| 6588 | hlua->nargs++; |
| 6589 | } |
| 6590 | |
| 6591 | RESET_SAFE_LJMP(hlua->T); |
| 6592 | |
| 6593 | /* Wakeup the applet when data is ready for read. */ |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 6594 | si_cant_get(si); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 6595 | |
| 6596 | return 1; |
| 6597 | } |
| 6598 | |
Willy Tarreau | 60409db | 2019-08-21 14:14:50 +0200 | [diff] [blame] | 6599 | void hlua_applet_http_fct(struct appctx *ctx) |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 6600 | { |
| 6601 | struct stream_interface *si = ctx->owner; |
| 6602 | struct stream *strm = si_strm(si); |
| 6603 | struct channel *req = si_oc(si); |
| 6604 | struct channel *res = si_ic(si); |
| 6605 | struct act_rule *rule = ctx->rule; |
| 6606 | struct proxy *px = strm->be; |
| 6607 | struct hlua *hlua = ctx->ctx.hlua_apphttp.hlua; |
| 6608 | struct htx *req_htx, *res_htx; |
| 6609 | |
| 6610 | res_htx = htx_from_buf(&res->buf); |
| 6611 | |
| 6612 | /* If the stream is disconnect or closed, ldo nothing. */ |
| 6613 | if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) |
| 6614 | goto out; |
| 6615 | |
| 6616 | /* Check if the input buffer is avalaible. */ |
| 6617 | if (!b_size(&res->buf)) { |
| 6618 | si_rx_room_blk(si); |
| 6619 | goto out; |
| 6620 | } |
| 6621 | /* check that the output is not closed */ |
Christopher Faulet | 56a3d6e | 2019-02-27 22:06:23 +0100 | [diff] [blame] | 6622 | if (res->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_SHUTR)) |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 6623 | ctx->ctx.hlua_apphttp.flags |= APPLET_DONE; |
| 6624 | |
| 6625 | /* Set the currently running flag. */ |
| 6626 | if (!HLUA_IS_RUNNING(hlua) && |
| 6627 | !(ctx->ctx.hlua_apphttp.flags & APPLET_DONE)) { |
| 6628 | struct htx_blk *blk; |
| 6629 | size_t count = co_data(req); |
| 6630 | |
| 6631 | if (!count) { |
| 6632 | si_cant_get(si); |
| 6633 | goto out; |
| 6634 | } |
| 6635 | |
| 6636 | /* We need to flush the request header. This left the body for |
| 6637 | * the Lua. |
| 6638 | */ |
| 6639 | req_htx = htx_from_buf(&req->buf); |
Christopher Faulet | a3f1550 | 2019-05-13 15:27:23 +0200 | [diff] [blame] | 6640 | blk = htx_get_first_blk(req_htx); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 6641 | while (count && blk) { |
| 6642 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 6643 | uint32_t sz = htx_get_blksz(blk); |
| 6644 | |
| 6645 | if (sz > count) { |
| 6646 | si_cant_get(si); |
Christopher Faulet | 0ae79d0 | 2019-02-27 21:36:59 +0100 | [diff] [blame] | 6647 | htx_to_buf(req_htx, &req->buf); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 6648 | goto out; |
| 6649 | } |
| 6650 | |
| 6651 | count -= sz; |
| 6652 | co_set_data(req, co_data(req) - sz); |
| 6653 | blk = htx_remove_blk(req_htx, blk); |
| 6654 | |
| 6655 | if (type == HTX_BLK_EOH) |
| 6656 | break; |
| 6657 | } |
Christopher Faulet | 0ae79d0 | 2019-02-27 21:36:59 +0100 | [diff] [blame] | 6658 | htx_to_buf(req_htx, &req->buf); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 6659 | } |
| 6660 | |
| 6661 | /* Executes The applet if it is not done. */ |
| 6662 | if (!(ctx->ctx.hlua_apphttp.flags & APPLET_DONE)) { |
| 6663 | |
| 6664 | /* Execute the function. */ |
| 6665 | switch (hlua_ctx_resume(hlua, 1)) { |
| 6666 | /* finished. */ |
| 6667 | case HLUA_E_OK: |
| 6668 | ctx->ctx.hlua_apphttp.flags |= APPLET_DONE; |
| 6669 | break; |
| 6670 | |
| 6671 | /* yield. */ |
| 6672 | case HLUA_E_AGAIN: |
| 6673 | if (hlua->wake_time != TICK_ETERNITY) |
| 6674 | task_schedule(ctx->ctx.hlua_apphttp.task, hlua->wake_time); |
Christopher Faulet | 56a3d6e | 2019-02-27 22:06:23 +0100 | [diff] [blame] | 6675 | goto out; |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 6676 | |
| 6677 | /* finished with error. */ |
| 6678 | case HLUA_E_ERRMSG: |
| 6679 | /* Display log. */ |
| 6680 | SEND_ERR(px, "Lua applet http '%s': %s.\n", |
| 6681 | rule->arg.hlua_rule->fcn.name, lua_tostring(hlua->T, -1)); |
| 6682 | lua_pop(hlua->T, 1); |
| 6683 | goto error; |
| 6684 | |
| 6685 | case HLUA_E_ETMOUT: |
| 6686 | SEND_ERR(px, "Lua applet http '%s': execution timeout.\n", |
| 6687 | rule->arg.hlua_rule->fcn.name); |
| 6688 | goto error; |
| 6689 | |
| 6690 | case HLUA_E_NOMEM: |
| 6691 | SEND_ERR(px, "Lua applet http '%s': out of memory error.\n", |
| 6692 | rule->arg.hlua_rule->fcn.name); |
| 6693 | goto error; |
| 6694 | |
| 6695 | case HLUA_E_YIELD: /* unexpected */ |
| 6696 | SEND_ERR(px, "Lua applet http '%s': yield not allowed.\n", |
| 6697 | rule->arg.hlua_rule->fcn.name); |
| 6698 | goto error; |
| 6699 | |
| 6700 | case HLUA_E_ERR: |
| 6701 | /* Display log. */ |
| 6702 | SEND_ERR(px, "Lua applet http '%s' return an unknown error.\n", |
| 6703 | rule->arg.hlua_rule->fcn.name); |
| 6704 | goto error; |
| 6705 | |
| 6706 | default: |
| 6707 | goto error; |
| 6708 | } |
| 6709 | } |
| 6710 | |
| 6711 | if (ctx->ctx.hlua_apphttp.flags & APPLET_DONE) { |
Christopher Faulet | 56a3d6e | 2019-02-27 22:06:23 +0100 | [diff] [blame] | 6712 | if (ctx->ctx.hlua_apphttp.flags & APPLET_RSP_SENT) |
| 6713 | goto done; |
| 6714 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 6715 | if (!(ctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT)) |
| 6716 | goto error; |
| 6717 | |
Christopher Faulet | 54b5e21 | 2019-06-04 10:08:28 +0200 | [diff] [blame] | 6718 | /* Don't add TLR because mux-h1 will take care of it */ |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 6719 | if (!htx_add_endof(res_htx, HTX_BLK_EOM)) { |
| 6720 | si_rx_room_blk(si); |
| 6721 | goto out; |
| 6722 | } |
Christopher Faulet | f6cce3f | 2019-02-27 21:20:09 +0100 | [diff] [blame] | 6723 | channel_add_input(res, 1); |
Christopher Faulet | 56a3d6e | 2019-02-27 22:06:23 +0100 | [diff] [blame] | 6724 | strm->txn->status = ctx->ctx.hlua_apphttp.status; |
| 6725 | ctx->ctx.hlua_apphttp.flags |= APPLET_RSP_SENT; |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 6726 | } |
| 6727 | |
| 6728 | done: |
| 6729 | if (ctx->ctx.hlua_apphttp.flags & APPLET_DONE) { |
Christopher Faulet | 56a3d6e | 2019-02-27 22:06:23 +0100 | [diff] [blame] | 6730 | if (!(res->flags & CF_SHUTR)) { |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 6731 | res->flags |= CF_READ_NULL; |
Christopher Faulet | 56a3d6e | 2019-02-27 22:06:23 +0100 | [diff] [blame] | 6732 | si_shutr(si); |
| 6733 | } |
| 6734 | |
| 6735 | /* eat the whole request */ |
| 6736 | if (co_data(req)) { |
| 6737 | req_htx = htx_from_buf(&req->buf); |
| 6738 | co_htx_skip(req, req_htx, co_data(req)); |
| 6739 | htx_to_buf(req_htx, &req->buf); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 6740 | } |
| 6741 | } |
| 6742 | |
| 6743 | out: |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 6744 | htx_to_buf(res_htx, &res->buf); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 6745 | return; |
| 6746 | |
| 6747 | error: |
| 6748 | |
| 6749 | /* If we are in HTTP mode, and we are not send any |
| 6750 | * data, return a 500 server error in best effort: |
| 6751 | * if there is no room available in the buffer, |
| 6752 | * just close the connection. |
| 6753 | */ |
| 6754 | if (!(ctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT)) { |
Christopher Faulet | f734638 | 2019-07-17 22:02:08 +0200 | [diff] [blame] | 6755 | struct buffer *err = &http_err_chunks[HTTP_ERR_500]; |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 6756 | |
| 6757 | channel_erase(res); |
| 6758 | res->buf.data = b_data(err); |
| 6759 | memcpy(res->buf.area, b_head(err), b_data(err)); |
| 6760 | res_htx = htx_from_buf(&res->buf); |
Christopher Faulet | f6cce3f | 2019-02-27 21:20:09 +0100 | [diff] [blame] | 6761 | channel_add_input(res, res_htx->data); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 6762 | } |
| 6763 | if (!(strm->flags & SF_ERR_MASK)) |
| 6764 | strm->flags |= SF_ERR_RESOURCE; |
| 6765 | ctx->ctx.hlua_apphttp.flags |= APPLET_DONE; |
| 6766 | goto done; |
| 6767 | } |
| 6768 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 6769 | static void hlua_applet_http_release(struct appctx *ctx) |
| 6770 | { |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 6771 | task_destroy(ctx->ctx.hlua_apphttp.task); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 6772 | ctx->ctx.hlua_apphttp.task = NULL; |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 6773 | hlua_ctx_destroy(ctx->ctx.hlua_apphttp.hlua); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 6774 | ctx->ctx.hlua_apphttp.hlua = NULL; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 6775 | } |
| 6776 | |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 6777 | /* global {tcp|http}-request parser. Return ACT_RET_PRS_OK in |
| 6778 | * succes case, else return ACT_RET_PRS_ERR. |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 6779 | * |
| 6780 | * This function can fail with an abort() due to an Lua critical error. |
| 6781 | * We are in the configuration parsing process of HAProxy, this abort() is |
| 6782 | * tolerated. |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6783 | */ |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 6784 | static enum act_parse_ret action_register_lua(const char **args, int *cur_arg, struct proxy *px, |
| 6785 | struct act_rule *rule, char **err) |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6786 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 6787 | struct hlua_function *fcn = rule->kw->private; |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 6788 | int i; |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 6789 | |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 6790 | /* Memory for the rule. */ |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 6791 | rule->arg.hlua_rule = calloc(1, sizeof(*rule->arg.hlua_rule)); |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 6792 | if (!rule->arg.hlua_rule) { |
| 6793 | memprintf(err, "out of memory error"); |
Thierry FOURNIER | afa8049 | 2015-08-19 09:04:15 +0200 | [diff] [blame] | 6794 | return ACT_RET_PRS_ERR; |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 6795 | } |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6796 | |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 6797 | /* Memory for arguments. */ |
| 6798 | rule->arg.hlua_rule->args = calloc(fcn->nargs + 1, sizeof(char *)); |
| 6799 | if (!rule->arg.hlua_rule->args) { |
| 6800 | memprintf(err, "out of memory error"); |
| 6801 | return ACT_RET_PRS_ERR; |
| 6802 | } |
| 6803 | |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 6804 | /* Reference the Lua function and store the reference. */ |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 6805 | rule->arg.hlua_rule->fcn = *fcn; |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 6806 | |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 6807 | /* Expect some arguments */ |
| 6808 | for (i = 0; i < fcn->nargs; i++) { |
Thierry FOURNIER | 1725c2e | 2019-01-06 19:38:49 +0100 | [diff] [blame] | 6809 | if (*args[*cur_arg] == '\0') { |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 6810 | memprintf(err, "expect %d arguments", fcn->nargs); |
| 6811 | return ACT_RET_PRS_ERR; |
| 6812 | } |
Thierry FOURNIER | 1725c2e | 2019-01-06 19:38:49 +0100 | [diff] [blame] | 6813 | rule->arg.hlua_rule->args[i] = strdup(args[*cur_arg]); |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 6814 | if (!rule->arg.hlua_rule->args[i]) { |
| 6815 | memprintf(err, "out of memory error"); |
| 6816 | return ACT_RET_PRS_ERR; |
| 6817 | } |
| 6818 | (*cur_arg)++; |
| 6819 | } |
| 6820 | rule->arg.hlua_rule->args[i] = NULL; |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 6821 | |
Thierry FOURNIER | 4214873 | 2015-09-02 17:17:33 +0200 | [diff] [blame] | 6822 | rule->action = ACT_CUSTOM; |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 6823 | rule->action_ptr = hlua_action; |
Thierry FOURNIER | afa8049 | 2015-08-19 09:04:15 +0200 | [diff] [blame] | 6824 | return ACT_RET_PRS_OK; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6825 | } |
| 6826 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 6827 | static enum act_parse_ret action_register_service_http(const char **args, int *cur_arg, struct proxy *px, |
| 6828 | struct act_rule *rule, char **err) |
| 6829 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 6830 | struct hlua_function *fcn = rule->kw->private; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 6831 | |
Thierry FOURNIER | 718e2a7 | 2015-12-20 20:13:14 +0100 | [diff] [blame] | 6832 | /* HTTP applets are forbidden in tcp-request rules. |
| 6833 | * HTTP applet request requires everything initilized by |
| 6834 | * "http_process_request" (analyzer flag AN_REQ_HTTP_INNER). |
| 6835 | * The applet will be immediately initilized, but its before |
| 6836 | * the call of this analyzer. |
| 6837 | */ |
| 6838 | if (rule->from != ACT_F_HTTP_REQ) { |
| 6839 | memprintf(err, "HTTP applets are forbidden from 'tcp-request' rulesets"); |
| 6840 | return ACT_RET_PRS_ERR; |
| 6841 | } |
| 6842 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 6843 | /* Memory for the rule. */ |
| 6844 | rule->arg.hlua_rule = calloc(1, sizeof(*rule->arg.hlua_rule)); |
| 6845 | if (!rule->arg.hlua_rule) { |
| 6846 | memprintf(err, "out of memory error"); |
| 6847 | return ACT_RET_PRS_ERR; |
| 6848 | } |
| 6849 | |
| 6850 | /* Reference the Lua function and store the reference. */ |
| 6851 | rule->arg.hlua_rule->fcn = *fcn; |
| 6852 | |
| 6853 | /* TODO: later accept arguments. */ |
| 6854 | rule->arg.hlua_rule->args = NULL; |
| 6855 | |
| 6856 | /* Add applet pointer in the rule. */ |
| 6857 | rule->applet.obj_type = OBJ_TYPE_APPLET; |
| 6858 | rule->applet.name = fcn->name; |
| 6859 | rule->applet.init = hlua_applet_http_init; |
| 6860 | rule->applet.fct = hlua_applet_http_fct; |
| 6861 | rule->applet.release = hlua_applet_http_release; |
| 6862 | rule->applet.timeout = hlua_timeout_applet; |
| 6863 | |
| 6864 | return ACT_RET_PRS_OK; |
| 6865 | } |
| 6866 | |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 6867 | /* This function is an LUA binding used for registering |
| 6868 | * "sample-conv" functions. It expects a converter name used |
| 6869 | * in the haproxy configuration file, and an LUA function. |
| 6870 | */ |
| 6871 | __LJMP static int hlua_register_action(lua_State *L) |
| 6872 | { |
| 6873 | struct action_kw_list *akl; |
| 6874 | const char *name; |
| 6875 | int ref; |
| 6876 | int len; |
| 6877 | struct hlua_function *fcn; |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 6878 | int nargs; |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 6879 | |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 6880 | /* Initialise the number of expected arguments at 0. */ |
| 6881 | nargs = 0; |
| 6882 | |
| 6883 | if (lua_gettop(L) < 3 || lua_gettop(L) > 4) |
| 6884 | WILL_LJMP(luaL_error(L, "'register_action' needs between 3 and 4 arguments")); |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 6885 | |
| 6886 | /* First argument : converter name. */ |
| 6887 | name = MAY_LJMP(luaL_checkstring(L, 1)); |
| 6888 | |
| 6889 | /* Second argument : environment. */ |
| 6890 | if (lua_type(L, 2) != LUA_TTABLE) |
| 6891 | WILL_LJMP(luaL_error(L, "register_action: second argument must be a table of strings")); |
| 6892 | |
| 6893 | /* Third argument : lua function. */ |
| 6894 | ref = MAY_LJMP(hlua_checkfunction(L, 3)); |
| 6895 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 6896 | /* Fourth argument : number of mandatory arguments expected on the configuration line. */ |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 6897 | if (lua_gettop(L) >= 4) |
| 6898 | nargs = MAY_LJMP(luaL_checkinteger(L, 4)); |
| 6899 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 6900 | /* browse the second argument as an array. */ |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 6901 | lua_pushnil(L); |
| 6902 | while (lua_next(L, 2) != 0) { |
| 6903 | if (lua_type(L, -1) != LUA_TSTRING) |
| 6904 | WILL_LJMP(luaL_error(L, "register_action: second argument must be a table of strings")); |
| 6905 | |
| 6906 | /* Check required environment. Only accepted "http" or "tcp". */ |
| 6907 | /* Allocate and fill the sample fetch keyword struct. */ |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 6908 | akl = calloc(1, sizeof(*akl) + sizeof(struct action_kw) * 2); |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 6909 | if (!akl) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 6910 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 6911 | fcn = calloc(1, sizeof(*fcn)); |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 6912 | if (!fcn) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 6913 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 6914 | |
| 6915 | /* Fill fcn. */ |
| 6916 | fcn->name = strdup(name); |
| 6917 | if (!fcn->name) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 6918 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 6919 | fcn->function_ref = ref; |
| 6920 | |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 6921 | /* Set the expected number od arguments. */ |
| 6922 | fcn->nargs = nargs; |
| 6923 | |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 6924 | /* List head */ |
| 6925 | akl->list.n = akl->list.p = NULL; |
| 6926 | |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 6927 | /* action keyword. */ |
| 6928 | len = strlen("lua.") + strlen(name) + 1; |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 6929 | akl->kw[0].kw = calloc(1, len); |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 6930 | if (!akl->kw[0].kw) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 6931 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 6932 | |
| 6933 | snprintf((char *)akl->kw[0].kw, len, "lua.%s", name); |
| 6934 | |
| 6935 | akl->kw[0].match_pfx = 0; |
| 6936 | akl->kw[0].private = fcn; |
| 6937 | akl->kw[0].parse = action_register_lua; |
| 6938 | |
| 6939 | /* select the action registering point. */ |
| 6940 | if (strcmp(lua_tostring(L, -1), "tcp-req") == 0) |
| 6941 | tcp_req_cont_keywords_register(akl); |
| 6942 | else if (strcmp(lua_tostring(L, -1), "tcp-res") == 0) |
| 6943 | tcp_res_cont_keywords_register(akl); |
| 6944 | else if (strcmp(lua_tostring(L, -1), "http-req") == 0) |
| 6945 | http_req_keywords_register(akl); |
| 6946 | else if (strcmp(lua_tostring(L, -1), "http-res") == 0) |
| 6947 | http_res_keywords_register(akl); |
| 6948 | else |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 6949 | WILL_LJMP(luaL_error(L, "Lua action environment '%s' is unknown. " |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 6950 | "'tcp-req', 'tcp-res', 'http-req' or 'http-res' " |
| 6951 | "are expected.", lua_tostring(L, -1))); |
| 6952 | |
| 6953 | /* pop the environment string. */ |
| 6954 | lua_pop(L, 1); |
| 6955 | } |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 6956 | return ACT_RET_PRS_OK; |
| 6957 | } |
| 6958 | |
| 6959 | static enum act_parse_ret action_register_service_tcp(const char **args, int *cur_arg, struct proxy *px, |
| 6960 | struct act_rule *rule, char **err) |
| 6961 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 6962 | struct hlua_function *fcn = rule->kw->private; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 6963 | |
Christopher Faulet | 280f85b | 2019-07-15 15:02:04 +0200 | [diff] [blame] | 6964 | if (px->mode == PR_MODE_HTTP) { |
| 6965 | memprintf(err, "Lua TCP services cannot be used on HTTP proxies"); |
Christopher Faulet | afd8f10 | 2018-11-08 11:34:21 +0100 | [diff] [blame] | 6966 | return ACT_RET_PRS_ERR; |
| 6967 | } |
| 6968 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 6969 | /* Memory for the rule. */ |
| 6970 | rule->arg.hlua_rule = calloc(1, sizeof(*rule->arg.hlua_rule)); |
| 6971 | if (!rule->arg.hlua_rule) { |
| 6972 | memprintf(err, "out of memory error"); |
| 6973 | return ACT_RET_PRS_ERR; |
| 6974 | } |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 6975 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 6976 | /* Reference the Lua function and store the reference. */ |
| 6977 | rule->arg.hlua_rule->fcn = *fcn; |
| 6978 | |
| 6979 | /* TODO: later accept arguments. */ |
| 6980 | rule->arg.hlua_rule->args = NULL; |
| 6981 | |
| 6982 | /* Add applet pointer in the rule. */ |
| 6983 | rule->applet.obj_type = OBJ_TYPE_APPLET; |
| 6984 | rule->applet.name = fcn->name; |
| 6985 | rule->applet.init = hlua_applet_tcp_init; |
| 6986 | rule->applet.fct = hlua_applet_tcp_fct; |
| 6987 | rule->applet.release = hlua_applet_tcp_release; |
| 6988 | rule->applet.timeout = hlua_timeout_applet; |
| 6989 | |
| 6990 | return 0; |
| 6991 | } |
| 6992 | |
| 6993 | /* This function is an LUA binding used for registering |
| 6994 | * "sample-conv" functions. It expects a converter name used |
| 6995 | * in the haproxy configuration file, and an LUA function. |
| 6996 | */ |
| 6997 | __LJMP static int hlua_register_service(lua_State *L) |
| 6998 | { |
| 6999 | struct action_kw_list *akl; |
| 7000 | const char *name; |
| 7001 | const char *env; |
| 7002 | int ref; |
| 7003 | int len; |
| 7004 | struct hlua_function *fcn; |
| 7005 | |
| 7006 | MAY_LJMP(check_args(L, 3, "register_service")); |
| 7007 | |
| 7008 | /* First argument : converter name. */ |
| 7009 | name = MAY_LJMP(luaL_checkstring(L, 1)); |
| 7010 | |
| 7011 | /* Second argument : environment. */ |
| 7012 | env = MAY_LJMP(luaL_checkstring(L, 2)); |
| 7013 | |
| 7014 | /* Third argument : lua function. */ |
| 7015 | ref = MAY_LJMP(hlua_checkfunction(L, 3)); |
| 7016 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7017 | /* Allocate and fill the sample fetch keyword struct. */ |
| 7018 | akl = calloc(1, sizeof(*akl) + sizeof(struct action_kw) * 2); |
| 7019 | if (!akl) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 7020 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7021 | fcn = calloc(1, sizeof(*fcn)); |
| 7022 | if (!fcn) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 7023 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7024 | |
| 7025 | /* Fill fcn. */ |
| 7026 | len = strlen("<lua.>") + strlen(name) + 1; |
| 7027 | fcn->name = calloc(1, len); |
| 7028 | if (!fcn->name) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 7029 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7030 | snprintf((char *)fcn->name, len, "<lua.%s>", name); |
| 7031 | fcn->function_ref = ref; |
| 7032 | |
| 7033 | /* List head */ |
| 7034 | akl->list.n = akl->list.p = NULL; |
| 7035 | |
| 7036 | /* converter keyword. */ |
| 7037 | len = strlen("lua.") + strlen(name) + 1; |
| 7038 | akl->kw[0].kw = calloc(1, len); |
| 7039 | if (!akl->kw[0].kw) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 7040 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7041 | |
| 7042 | snprintf((char *)akl->kw[0].kw, len, "lua.%s", name); |
| 7043 | |
Thierry FOURNIER / OZON.IO | 02564fd | 2016-11-12 11:07:05 +0100 | [diff] [blame] | 7044 | /* Check required environment. Only accepted "http" or "tcp". */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7045 | if (strcmp(env, "tcp") == 0) |
| 7046 | akl->kw[0].parse = action_register_service_tcp; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7047 | else if (strcmp(env, "http") == 0) |
| 7048 | akl->kw[0].parse = action_register_service_http; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7049 | else |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 7050 | WILL_LJMP(luaL_error(L, "Lua service environment '%s' is unknown. " |
Eric Salama | fe7456f | 2017-12-21 14:30:07 +0100 | [diff] [blame] | 7051 | "'tcp' or 'http' are expected.", env)); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7052 | |
| 7053 | akl->kw[0].match_pfx = 0; |
| 7054 | akl->kw[0].private = fcn; |
| 7055 | |
| 7056 | /* End of array. */ |
| 7057 | memset(&akl->kw[1], 0, sizeof(*akl->kw)); |
| 7058 | |
| 7059 | /* Register this new converter */ |
| 7060 | service_keywords_register(akl); |
| 7061 | |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7062 | return 0; |
| 7063 | } |
| 7064 | |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7065 | /* This function initialises Lua cli handler. It copies the |
| 7066 | * arguments in the Lua stack and create channel IO objects. |
| 7067 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 7068 | static int hlua_cli_parse_fct(char **args, char *payload, struct appctx *appctx, void *private) |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7069 | { |
| 7070 | struct hlua *hlua; |
| 7071 | struct hlua_function *fcn; |
| 7072 | int i; |
| 7073 | const char *error; |
| 7074 | |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7075 | fcn = private; |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7076 | appctx->ctx.hlua_cli.fcn = private; |
| 7077 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 7078 | hlua = pool_alloc(pool_head_hlua); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7079 | if (!hlua) { |
| 7080 | SEND_ERR(NULL, "Lua cli '%s': out of memory.\n", fcn->name); |
Thierry FOURNIER | 1be3415 | 2016-12-17 12:09:51 +0100 | [diff] [blame] | 7081 | return 1; |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7082 | } |
| 7083 | HLUA_INIT(hlua); |
| 7084 | appctx->ctx.hlua_cli.hlua = hlua; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7085 | |
| 7086 | /* Create task used by signal to wakeup applets. |
| 7087 | * We use the same wakeup fonction than the Lua applet_tcp and |
| 7088 | * applet_http. It is absolutely compatible. |
| 7089 | */ |
Willy Tarreau | 5f4a47b | 2017-10-31 15:59:32 +0100 | [diff] [blame] | 7090 | appctx->ctx.hlua_cli.task = task_new(tid_bit); |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7091 | if (!appctx->ctx.hlua_cli.task) { |
Thierry FOURNIER | ffbf569 | 2016-12-16 11:14:06 +0100 | [diff] [blame] | 7092 | SEND_ERR(NULL, "Lua cli '%s': out of memory.\n", fcn->name); |
Thierry FOURNIER | 1be3415 | 2016-12-17 12:09:51 +0100 | [diff] [blame] | 7093 | goto error; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7094 | } |
| 7095 | appctx->ctx.hlua_cli.task->nice = 0; |
| 7096 | appctx->ctx.hlua_cli.task->context = appctx; |
| 7097 | appctx->ctx.hlua_cli.task->process = hlua_applet_wakeup; |
| 7098 | |
| 7099 | /* Initialises the Lua context */ |
Thierry FOURNIER | bf90ce1 | 2019-01-06 19:04:24 +0100 | [diff] [blame] | 7100 | if (!hlua_ctx_init(hlua, appctx->ctx.hlua_cli.task, 0)) { |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7101 | SEND_ERR(NULL, "Lua cli '%s': can't initialize Lua context.\n", fcn->name); |
Thierry FOURNIER | 1be3415 | 2016-12-17 12:09:51 +0100 | [diff] [blame] | 7102 | goto error; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7103 | } |
| 7104 | |
| 7105 | /* The following Lua calls can fail. */ |
| 7106 | if (!SET_SAFE_LJMP(hlua->T)) { |
| 7107 | if (lua_type(hlua->T, -1) == LUA_TSTRING) |
| 7108 | error = lua_tostring(hlua->T, -1); |
| 7109 | else |
| 7110 | error = "critical error"; |
| 7111 | SEND_ERR(NULL, "Lua cli '%s': %s.\n", fcn->name, error); |
| 7112 | goto error; |
| 7113 | } |
| 7114 | |
| 7115 | /* Check stack available size. */ |
| 7116 | if (!lua_checkstack(hlua->T, 2)) { |
| 7117 | SEND_ERR(NULL, "Lua cli '%s': full stack.\n", fcn->name); |
| 7118 | goto error; |
| 7119 | } |
| 7120 | |
| 7121 | /* Restore the function in the stack. */ |
| 7122 | lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, fcn->function_ref); |
| 7123 | |
| 7124 | /* Once the arguments parsed, the CLI is like an AppletTCP, |
| 7125 | * so push AppletTCP in the stack. |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7126 | */ |
| 7127 | if (!hlua_applet_tcp_new(hlua->T, appctx)) { |
| 7128 | SEND_ERR(NULL, "Lua cli '%s': full stack.\n", fcn->name); |
| 7129 | goto error; |
| 7130 | } |
| 7131 | hlua->nargs = 1; |
| 7132 | |
| 7133 | /* push keywords in the stack. */ |
| 7134 | for (i = 0; *args[i]; i++) { |
| 7135 | /* Check stack available size. */ |
| 7136 | if (!lua_checkstack(hlua->T, 1)) { |
| 7137 | SEND_ERR(NULL, "Lua cli '%s': full stack.\n", fcn->name); |
| 7138 | goto error; |
| 7139 | } |
| 7140 | lua_pushstring(hlua->T, args[i]); |
| 7141 | hlua->nargs++; |
| 7142 | } |
| 7143 | |
| 7144 | /* We must initialize the execution timeouts. */ |
| 7145 | hlua->max_time = hlua_timeout_session; |
| 7146 | |
| 7147 | /* At this point the execution is safe. */ |
| 7148 | RESET_SAFE_LJMP(hlua->T); |
| 7149 | |
| 7150 | /* It's ok */ |
| 7151 | return 0; |
| 7152 | |
| 7153 | /* It's not ok. */ |
| 7154 | error: |
| 7155 | RESET_SAFE_LJMP(hlua->T); |
| 7156 | hlua_ctx_destroy(hlua); |
Thierry FOURNIER | 1be3415 | 2016-12-17 12:09:51 +0100 | [diff] [blame] | 7157 | appctx->ctx.hlua_cli.hlua = NULL; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7158 | return 1; |
| 7159 | } |
| 7160 | |
| 7161 | static int hlua_cli_io_handler_fct(struct appctx *appctx) |
| 7162 | { |
| 7163 | struct hlua *hlua; |
| 7164 | struct stream_interface *si; |
| 7165 | struct hlua_function *fcn; |
| 7166 | |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7167 | hlua = appctx->ctx.hlua_cli.hlua; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7168 | si = appctx->owner; |
Willy Tarreau | 8ae4f75 | 2016-12-14 15:41:45 +0100 | [diff] [blame] | 7169 | fcn = appctx->ctx.hlua_cli.fcn; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7170 | |
| 7171 | /* If the stream is disconnect or closed, ldo nothing. */ |
| 7172 | if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) |
| 7173 | return 1; |
| 7174 | |
| 7175 | /* Execute the function. */ |
| 7176 | switch (hlua_ctx_resume(hlua, 1)) { |
| 7177 | |
| 7178 | /* finished. */ |
| 7179 | case HLUA_E_OK: |
| 7180 | return 1; |
| 7181 | |
| 7182 | /* yield. */ |
| 7183 | case HLUA_E_AGAIN: |
| 7184 | /* We want write. */ |
| 7185 | if (HLUA_IS_WAKERESWR(hlua)) |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 7186 | si_rx_room_blk(si); |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7187 | /* Set the timeout. */ |
| 7188 | if (hlua->wake_time != TICK_ETERNITY) |
| 7189 | task_schedule(hlua->task, hlua->wake_time); |
| 7190 | return 0; |
| 7191 | |
| 7192 | /* finished with error. */ |
| 7193 | case HLUA_E_ERRMSG: |
| 7194 | /* Display log. */ |
| 7195 | SEND_ERR(NULL, "Lua cli '%s': %s.\n", |
| 7196 | fcn->name, lua_tostring(hlua->T, -1)); |
| 7197 | lua_pop(hlua->T, 1); |
| 7198 | return 1; |
| 7199 | |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 7200 | case HLUA_E_ETMOUT: |
| 7201 | SEND_ERR(NULL, "Lua converter '%s': execution timeout.\n", |
| 7202 | fcn->name); |
| 7203 | return 1; |
| 7204 | |
| 7205 | case HLUA_E_NOMEM: |
| 7206 | SEND_ERR(NULL, "Lua converter '%s': out of memory error.\n", |
| 7207 | fcn->name); |
| 7208 | return 1; |
| 7209 | |
| 7210 | case HLUA_E_YIELD: /* unexpected */ |
| 7211 | SEND_ERR(NULL, "Lua converter '%s': yield not allowed.\n", |
| 7212 | fcn->name); |
| 7213 | return 1; |
| 7214 | |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7215 | case HLUA_E_ERR: |
| 7216 | /* Display log. */ |
| 7217 | SEND_ERR(NULL, "Lua cli '%s' return an unknown error.\n", |
| 7218 | fcn->name); |
| 7219 | return 1; |
| 7220 | |
| 7221 | default: |
| 7222 | return 1; |
| 7223 | } |
| 7224 | |
| 7225 | return 1; |
| 7226 | } |
| 7227 | |
| 7228 | static void hlua_cli_io_release_fct(struct appctx *appctx) |
| 7229 | { |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7230 | hlua_ctx_destroy(appctx->ctx.hlua_cli.hlua); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7231 | appctx->ctx.hlua_cli.hlua = NULL; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7232 | } |
| 7233 | |
| 7234 | /* This function is an LUA binding used for registering |
| 7235 | * new keywords in the cli. It expects a list of keywords |
| 7236 | * which are the "path". It is limited to 5 keywords. A |
| 7237 | * description of the command, a function to be executed |
| 7238 | * for the parsing and a function for io handlers. |
| 7239 | */ |
| 7240 | __LJMP static int hlua_register_cli(lua_State *L) |
| 7241 | { |
| 7242 | struct cli_kw_list *cli_kws; |
| 7243 | const char *message; |
| 7244 | int ref_io; |
| 7245 | int len; |
| 7246 | struct hlua_function *fcn; |
| 7247 | int index; |
| 7248 | int i; |
| 7249 | |
| 7250 | MAY_LJMP(check_args(L, 3, "register_cli")); |
| 7251 | |
| 7252 | /* First argument : an array of maximum 5 keywords. */ |
| 7253 | if (!lua_istable(L, 1)) |
| 7254 | WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table")); |
| 7255 | |
| 7256 | /* Second argument : string with contextual message. */ |
| 7257 | message = MAY_LJMP(luaL_checkstring(L, 2)); |
| 7258 | |
| 7259 | /* Third and fourth argument : lua function. */ |
| 7260 | ref_io = MAY_LJMP(hlua_checkfunction(L, 3)); |
| 7261 | |
| 7262 | /* Allocate and fill the sample fetch keyword struct. */ |
| 7263 | cli_kws = calloc(1, sizeof(*cli_kws) + sizeof(struct cli_kw) * 2); |
| 7264 | if (!cli_kws) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 7265 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7266 | fcn = calloc(1, sizeof(*fcn)); |
| 7267 | if (!fcn) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 7268 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7269 | |
| 7270 | /* Fill path. */ |
| 7271 | index = 0; |
| 7272 | lua_pushnil(L); |
| 7273 | while(lua_next(L, 1) != 0) { |
| 7274 | if (index >= 5) |
| 7275 | WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table with a maximum of 5 entries")); |
| 7276 | if (lua_type(L, -1) != LUA_TSTRING) |
| 7277 | WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table filled with strings")); |
| 7278 | cli_kws->kw[0].str_kw[index] = strdup(lua_tostring(L, -1)); |
| 7279 | if (!cli_kws->kw[0].str_kw[index]) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 7280 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7281 | index++; |
| 7282 | lua_pop(L, 1); |
| 7283 | } |
| 7284 | |
| 7285 | /* Copy help message. */ |
| 7286 | cli_kws->kw[0].usage = strdup(message); |
| 7287 | if (!cli_kws->kw[0].usage) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 7288 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7289 | |
| 7290 | /* Fill fcn io handler. */ |
| 7291 | len = strlen("<lua.cli>") + 1; |
| 7292 | for (i = 0; i < index; i++) |
| 7293 | len += strlen(cli_kws->kw[0].str_kw[i]) + 1; |
| 7294 | fcn->name = calloc(1, len); |
| 7295 | if (!fcn->name) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 7296 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7297 | strncat((char *)fcn->name, "<lua.cli", len); |
| 7298 | for (i = 0; i < index; i++) { |
| 7299 | strncat((char *)fcn->name, ".", len); |
| 7300 | strncat((char *)fcn->name, cli_kws->kw[0].str_kw[i], len); |
| 7301 | } |
| 7302 | strncat((char *)fcn->name, ">", len); |
| 7303 | fcn->function_ref = ref_io; |
| 7304 | |
| 7305 | /* Fill last entries. */ |
| 7306 | cli_kws->kw[0].private = fcn; |
| 7307 | cli_kws->kw[0].parse = hlua_cli_parse_fct; |
| 7308 | cli_kws->kw[0].io_handler = hlua_cli_io_handler_fct; |
| 7309 | cli_kws->kw[0].io_release = hlua_cli_io_release_fct; |
| 7310 | |
| 7311 | /* Register this new converter */ |
| 7312 | cli_register_kw(cli_kws); |
| 7313 | |
| 7314 | return 0; |
| 7315 | } |
| 7316 | |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 7317 | static int hlua_read_timeout(char **args, int section_type, struct proxy *curpx, |
| 7318 | struct proxy *defpx, const char *file, int line, |
| 7319 | char **err, unsigned int *timeout) |
| 7320 | { |
| 7321 | const char *error; |
| 7322 | |
| 7323 | error = parse_time_err(args[1], timeout, TIME_UNIT_MS); |
Willy Tarreau | 9faebe3 | 2019-06-07 19:00:37 +0200 | [diff] [blame] | 7324 | if (error == PARSE_TIME_OVER) { |
| 7325 | memprintf(err, "timer overflow in argument <%s> to <%s> (maximum value is 2147483647 ms or ~24.8 days)", |
| 7326 | args[1], args[0]); |
| 7327 | return -1; |
| 7328 | } |
| 7329 | else if (error == PARSE_TIME_UNDER) { |
| 7330 | memprintf(err, "timer underflow in argument <%s> to <%s> (minimum non-null value is 1 ms)", |
| 7331 | args[1], args[0]); |
| 7332 | return -1; |
| 7333 | } |
| 7334 | else if (error) { |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 7335 | memprintf(err, "%s: invalid timeout", args[0]); |
| 7336 | return -1; |
| 7337 | } |
| 7338 | return 0; |
| 7339 | } |
| 7340 | |
| 7341 | static int hlua_session_timeout(char **args, int section_type, struct proxy *curpx, |
| 7342 | struct proxy *defpx, const char *file, int line, |
| 7343 | char **err) |
| 7344 | { |
| 7345 | return hlua_read_timeout(args, section_type, curpx, defpx, |
| 7346 | file, line, err, &hlua_timeout_session); |
| 7347 | } |
| 7348 | |
| 7349 | static int hlua_task_timeout(char **args, int section_type, struct proxy *curpx, |
| 7350 | struct proxy *defpx, const char *file, int line, |
| 7351 | char **err) |
| 7352 | { |
| 7353 | return hlua_read_timeout(args, section_type, curpx, defpx, |
| 7354 | file, line, err, &hlua_timeout_task); |
| 7355 | } |
| 7356 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7357 | static int hlua_applet_timeout(char **args, int section_type, struct proxy *curpx, |
| 7358 | struct proxy *defpx, const char *file, int line, |
| 7359 | char **err) |
| 7360 | { |
| 7361 | return hlua_read_timeout(args, section_type, curpx, defpx, |
| 7362 | file, line, err, &hlua_timeout_applet); |
| 7363 | } |
| 7364 | |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 7365 | static int hlua_forced_yield(char **args, int section_type, struct proxy *curpx, |
| 7366 | struct proxy *defpx, const char *file, int line, |
| 7367 | char **err) |
| 7368 | { |
| 7369 | char *error; |
| 7370 | |
| 7371 | hlua_nb_instruction = strtoll(args[1], &error, 10); |
| 7372 | if (*error != '\0') { |
| 7373 | memprintf(err, "%s: invalid number", args[0]); |
| 7374 | return -1; |
| 7375 | } |
| 7376 | return 0; |
| 7377 | } |
| 7378 | |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 7379 | static int hlua_parse_maxmem(char **args, int section_type, struct proxy *curpx, |
| 7380 | struct proxy *defpx, const char *file, int line, |
| 7381 | char **err) |
| 7382 | { |
| 7383 | char *error; |
| 7384 | |
| 7385 | if (*(args[1]) == 0) { |
| 7386 | memprintf(err, "'%s' expects an integer argument (Lua memory size in MB).\n", args[0]); |
| 7387 | return -1; |
| 7388 | } |
| 7389 | hlua_global_allocator.limit = strtoll(args[1], &error, 10) * 1024L * 1024L; |
| 7390 | if (*error != '\0') { |
| 7391 | memprintf(err, "%s: invalid number %s (error at '%c')", args[0], args[1], *error); |
| 7392 | return -1; |
| 7393 | } |
| 7394 | return 0; |
| 7395 | } |
| 7396 | |
| 7397 | |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 7398 | /* This function is called by the main configuration key "lua-load". It loads and |
| 7399 | * execute an lua file during the parsing of the HAProxy configuration file. It is |
| 7400 | * the main lua entry point. |
| 7401 | * |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 7402 | * This function runs with the HAProxy keywords API. It returns -1 if an error |
| 7403 | * occurs, otherwise it returns 0. |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 7404 | * |
| 7405 | * In some error case, LUA set an error message in top of the stack. This function |
| 7406 | * returns this error message in the HAProxy logs and pop it from the stack. |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 7407 | * |
| 7408 | * This function can fail with an abort() due to an Lua critical error. |
| 7409 | * We are in the configuration parsing process of HAProxy, this abort() is |
| 7410 | * tolerated. |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 7411 | */ |
| 7412 | static int hlua_load(char **args, int section_type, struct proxy *curpx, |
| 7413 | struct proxy *defpx, const char *file, int line, |
| 7414 | char **err) |
| 7415 | { |
| 7416 | int error; |
| 7417 | |
| 7418 | /* Just load and compile the file. */ |
| 7419 | error = luaL_loadfile(gL.T, args[1]); |
| 7420 | if (error) { |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 7421 | memprintf(err, "error in Lua file '%s': %s", args[1], lua_tostring(gL.T, -1)); |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 7422 | lua_pop(gL.T, 1); |
| 7423 | return -1; |
| 7424 | } |
| 7425 | |
| 7426 | /* If no syntax error where detected, execute the code. */ |
| 7427 | error = lua_pcall(gL.T, 0, LUA_MULTRET, 0); |
| 7428 | switch (error) { |
| 7429 | case LUA_OK: |
| 7430 | break; |
| 7431 | case LUA_ERRRUN: |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 7432 | memprintf(err, "Lua runtime error: %s\n", lua_tostring(gL.T, -1)); |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 7433 | lua_pop(gL.T, 1); |
| 7434 | return -1; |
| 7435 | case LUA_ERRMEM: |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 7436 | memprintf(err, "Lua out of memory error.n"); |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 7437 | return -1; |
| 7438 | case LUA_ERRERR: |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 7439 | memprintf(err, "Lua message handler error: %s\n", lua_tostring(gL.T, -1)); |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 7440 | lua_pop(gL.T, 1); |
| 7441 | return -1; |
| 7442 | case LUA_ERRGCMM: |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 7443 | memprintf(err, "Lua garbage collector error: %s\n", lua_tostring(gL.T, -1)); |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 7444 | lua_pop(gL.T, 1); |
| 7445 | return -1; |
| 7446 | default: |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 7447 | memprintf(err, "Lua unknonwn error: %s\n", lua_tostring(gL.T, -1)); |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 7448 | lua_pop(gL.T, 1); |
| 7449 | return -1; |
| 7450 | } |
| 7451 | |
| 7452 | return 0; |
| 7453 | } |
| 7454 | |
| 7455 | /* configuration keywords declaration */ |
| 7456 | static struct cfg_kw_list cfg_kws = {{ },{ |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 7457 | { CFG_GLOBAL, "lua-load", hlua_load }, |
| 7458 | { CFG_GLOBAL, "tune.lua.session-timeout", hlua_session_timeout }, |
| 7459 | { CFG_GLOBAL, "tune.lua.task-timeout", hlua_task_timeout }, |
Thierry FOURNIER | 56da101 | 2015-10-01 08:42:31 +0200 | [diff] [blame] | 7460 | { CFG_GLOBAL, "tune.lua.service-timeout", hlua_applet_timeout }, |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 7461 | { CFG_GLOBAL, "tune.lua.forced-yield", hlua_forced_yield }, |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 7462 | { CFG_GLOBAL, "tune.lua.maxmem", hlua_parse_maxmem }, |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 7463 | { 0, NULL, NULL }, |
| 7464 | }}; |
| 7465 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 7466 | INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws); |
| 7467 | |
Christopher Faulet | afd8f10 | 2018-11-08 11:34:21 +0100 | [diff] [blame] | 7468 | |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 7469 | /* This function can fail with an abort() due to an Lua critical error. |
| 7470 | * We are in the initialisation process of HAProxy, this abort() is |
| 7471 | * tolerated. |
| 7472 | */ |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 7473 | int hlua_post_init() |
| 7474 | { |
| 7475 | struct hlua_init_function *init; |
| 7476 | const char *msg; |
| 7477 | enum hlua_exec ret; |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 7478 | const char *error; |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 7479 | |
Thierry Fournier | 3d4a675 | 2016-02-19 20:53:30 +0100 | [diff] [blame] | 7480 | /* Call post initialisation function in safe environement. */ |
| 7481 | if (!SET_SAFE_LJMP(gL.T)) { |
| 7482 | if (lua_type(gL.T, -1) == LUA_TSTRING) |
| 7483 | error = lua_tostring(gL.T, -1); |
| 7484 | else |
| 7485 | error = "critical error"; |
| 7486 | fprintf(stderr, "Lua post-init: %s.\n", error); |
| 7487 | exit(1); |
| 7488 | } |
Frédéric Lécaille | 54f2bcf | 2018-08-29 13:46:24 +0200 | [diff] [blame] | 7489 | |
| 7490 | #if USE_OPENSSL |
| 7491 | /* Initialize SSL server. */ |
| 7492 | if (socket_ssl.xprt->prepare_srv) { |
| 7493 | int saved_used_backed = global.ssl_used_backend; |
| 7494 | // don't affect maxconn automatic computation |
| 7495 | socket_ssl.xprt->prepare_srv(&socket_ssl); |
| 7496 | global.ssl_used_backend = saved_used_backed; |
| 7497 | } |
| 7498 | #endif |
| 7499 | |
Thierry Fournier | 3d4a675 | 2016-02-19 20:53:30 +0100 | [diff] [blame] | 7500 | hlua_fcn_post_init(gL.T); |
| 7501 | RESET_SAFE_LJMP(gL.T); |
| 7502 | |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 7503 | list_for_each_entry(init, &hlua_init_functions, l) { |
| 7504 | lua_rawgeti(gL.T, LUA_REGISTRYINDEX, init->function_ref); |
| 7505 | ret = hlua_ctx_resume(&gL, 0); |
| 7506 | switch (ret) { |
| 7507 | case HLUA_E_OK: |
| 7508 | lua_pop(gL.T, -1); |
| 7509 | return 1; |
| 7510 | case HLUA_E_AGAIN: |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 7511 | ha_alert("Lua init: yield not allowed.\n"); |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 7512 | return 0; |
| 7513 | case HLUA_E_ERRMSG: |
| 7514 | msg = lua_tostring(gL.T, -1); |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 7515 | ha_alert("lua init: %s.\n", msg); |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 7516 | return 0; |
| 7517 | case HLUA_E_ERR: |
| 7518 | default: |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 7519 | ha_alert("Lua init: unknown runtime error.\n"); |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 7520 | return 0; |
| 7521 | } |
| 7522 | } |
| 7523 | return 1; |
| 7524 | } |
| 7525 | |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 7526 | /* The memory allocator used by the Lua stack. <ud> is a pointer to the |
| 7527 | * allocator's context. <ptr> is the pointer to alloc/free/realloc. <osize> |
| 7528 | * is the previously allocated size or the kind of object in case of a new |
| 7529 | * allocation. <nsize> is the requested new size. |
| 7530 | */ |
| 7531 | static void *hlua_alloc(void *ud, void *ptr, size_t osize, size_t nsize) |
| 7532 | { |
| 7533 | struct hlua_mem_allocator *zone = ud; |
| 7534 | |
| 7535 | if (nsize == 0) { |
| 7536 | /* it's a free */ |
| 7537 | if (ptr) |
| 7538 | zone->allocated -= osize; |
| 7539 | free(ptr); |
| 7540 | return NULL; |
| 7541 | } |
| 7542 | |
| 7543 | if (!ptr) { |
| 7544 | /* it's a new allocation */ |
| 7545 | if (zone->limit && zone->allocated + nsize > zone->limit) |
| 7546 | return NULL; |
| 7547 | |
| 7548 | ptr = malloc(nsize); |
| 7549 | if (ptr) |
| 7550 | zone->allocated += nsize; |
| 7551 | return ptr; |
| 7552 | } |
| 7553 | |
| 7554 | /* it's a realloc */ |
| 7555 | if (zone->limit && zone->allocated + nsize - osize > zone->limit) |
| 7556 | return NULL; |
| 7557 | |
| 7558 | ptr = realloc(ptr, nsize); |
| 7559 | if (ptr) |
| 7560 | zone->allocated += nsize - osize; |
| 7561 | return ptr; |
| 7562 | } |
| 7563 | |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 7564 | /* Ithis function can fail with an abort() due to an Lua critical error. |
| 7565 | * We are in the initialisation process of HAProxy, this abort() is |
| 7566 | * tolerated. |
| 7567 | */ |
Thierry FOURNIER | 6f1fd48 | 2015-01-23 14:06:13 +0100 | [diff] [blame] | 7568 | void hlua_init(void) |
| 7569 | { |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 7570 | int i; |
Thierry FOURNIER | d0fa538 | 2015-02-16 20:14:51 +0100 | [diff] [blame] | 7571 | int idx; |
| 7572 | struct sample_fetch *sf; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 7573 | struct sample_conv *sc; |
Thierry FOURNIER | d0fa538 | 2015-02-16 20:14:51 +0100 | [diff] [blame] | 7574 | char *p; |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 7575 | const char *error_msg; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 7576 | #ifdef USE_OPENSSL |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 7577 | struct srv_kw *kw; |
| 7578 | int tmp_error; |
| 7579 | char *error; |
Thierry FOURNIER | 36d1374 | 2015-03-17 16:48:53 +0100 | [diff] [blame] | 7580 | char *args[] = { /* SSL client configuration. */ |
| 7581 | "ssl", |
| 7582 | "verify", |
| 7583 | "none", |
Thierry FOURNIER | 36d1374 | 2015-03-17 16:48:53 +0100 | [diff] [blame] | 7584 | NULL |
| 7585 | }; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 7586 | #endif |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 7587 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 7588 | /* Init main lua stack. */ |
| 7589 | gL.Mref = LUA_REFNIL; |
Thierry FOURNIER | a097fdf | 2015-03-03 15:17:35 +0100 | [diff] [blame] | 7590 | gL.flags = 0; |
Thierry FOURNIER | 9ff7e6e | 2015-01-23 11:08:20 +0100 | [diff] [blame] | 7591 | LIST_INIT(&gL.com); |
Willy Tarreau | 42ef75f | 2017-04-12 21:40:29 +0200 | [diff] [blame] | 7592 | gL.T = lua_newstate(hlua_alloc, &hlua_global_allocator); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 7593 | hlua_sethlua(&gL); |
| 7594 | gL.Tref = LUA_REFNIL; |
| 7595 | gL.task = NULL; |
| 7596 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 7597 | /* From this point, until the end of the initialisation function, |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 7598 | * the Lua function can fail with an abort. We are in the initialisation |
| 7599 | * process of HAProxy, this abort() is tolerated. |
| 7600 | */ |
| 7601 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 7602 | /* Initialise lua. */ |
| 7603 | luaL_openlibs(gL.T); |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 7604 | |
Thierry Fournier | 75933d4 | 2016-01-21 09:30:18 +0100 | [diff] [blame] | 7605 | /* Set safe environment for the initialisation. */ |
| 7606 | if (!SET_SAFE_LJMP(gL.T)) { |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 7607 | if (lua_type(gL.T, -1) == LUA_TSTRING) |
| 7608 | error_msg = lua_tostring(gL.T, -1); |
| 7609 | else |
| 7610 | error_msg = "critical error"; |
| 7611 | fprintf(stderr, "Lua init: %s.\n", error_msg); |
Thierry Fournier | 75933d4 | 2016-01-21 09:30:18 +0100 | [diff] [blame] | 7612 | exit(1); |
| 7613 | } |
| 7614 | |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 7615 | /* |
| 7616 | * |
| 7617 | * Create "core" object. |
| 7618 | * |
| 7619 | */ |
| 7620 | |
Thierry FOURNIER | a2d8c65 | 2015-03-11 17:29:39 +0100 | [diff] [blame] | 7621 | /* This table entry is the object "core" base. */ |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 7622 | lua_newtable(gL.T); |
| 7623 | |
| 7624 | /* Push the loglevel constants. */ |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 7625 | for (i = 0; i < NB_LOG_LEVELS; i++) |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 7626 | hlua_class_const_int(gL.T, log_levels[i], i); |
| 7627 | |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 7628 | /* Register special functions. */ |
| 7629 | hlua_class_function(gL.T, "register_init", hlua_register_init); |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 7630 | hlua_class_function(gL.T, "register_task", hlua_register_task); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 7631 | hlua_class_function(gL.T, "register_fetches", hlua_register_fetches); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 7632 | hlua_class_function(gL.T, "register_converters", hlua_register_converters); |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7633 | hlua_class_function(gL.T, "register_action", hlua_register_action); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7634 | hlua_class_function(gL.T, "register_service", hlua_register_service); |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7635 | hlua_class_function(gL.T, "register_cli", hlua_register_cli); |
Thierry FOURNIER | 13416fe | 2015-02-17 15:01:59 +0100 | [diff] [blame] | 7636 | hlua_class_function(gL.T, "yield", hlua_yield); |
Willy Tarreau | 5955166 | 2015-03-10 14:23:13 +0100 | [diff] [blame] | 7637 | hlua_class_function(gL.T, "set_nice", hlua_set_nice); |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 7638 | hlua_class_function(gL.T, "sleep", hlua_sleep); |
| 7639 | hlua_class_function(gL.T, "msleep", hlua_msleep); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 7640 | hlua_class_function(gL.T, "add_acl", hlua_add_acl); |
| 7641 | hlua_class_function(gL.T, "del_acl", hlua_del_acl); |
| 7642 | hlua_class_function(gL.T, "set_map", hlua_set_map); |
| 7643 | hlua_class_function(gL.T, "del_map", hlua_del_map); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 7644 | hlua_class_function(gL.T, "tcp", hlua_socket_new); |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 7645 | hlua_class_function(gL.T, "log", hlua_log); |
| 7646 | hlua_class_function(gL.T, "Debug", hlua_log_debug); |
| 7647 | hlua_class_function(gL.T, "Info", hlua_log_info); |
| 7648 | hlua_class_function(gL.T, "Warning", hlua_log_warning); |
| 7649 | hlua_class_function(gL.T, "Alert", hlua_log_alert); |
Thierry FOURNIER | 0a99b89 | 2015-08-26 00:14:17 +0200 | [diff] [blame] | 7650 | hlua_class_function(gL.T, "done", hlua_done); |
Thierry Fournier | fb0b546 | 2016-01-21 09:28:58 +0100 | [diff] [blame] | 7651 | hlua_fcn_reg_core_fcn(gL.T); |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 7652 | |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 7653 | lua_setglobal(gL.T, "core"); |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 7654 | |
| 7655 | /* |
| 7656 | * |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 7657 | * Register class Map |
| 7658 | * |
| 7659 | */ |
| 7660 | |
| 7661 | /* This table entry is the object "Map" base. */ |
| 7662 | lua_newtable(gL.T); |
| 7663 | |
| 7664 | /* register pattern types. */ |
| 7665 | for (i=0; i<PAT_MATCH_NUM; i++) |
| 7666 | hlua_class_const_int(gL.T, pat_match_names[i], i); |
Thierry FOURNIER | 4dc7197 | 2017-01-28 08:33:08 +0100 | [diff] [blame] | 7667 | for (i=0; i<PAT_MATCH_NUM; i++) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7668 | snprintf(trash.area, trash.size, "_%s", pat_match_names[i]); |
| 7669 | hlua_class_const_int(gL.T, trash.area, i); |
Thierry FOURNIER | 4dc7197 | 2017-01-28 08:33:08 +0100 | [diff] [blame] | 7670 | } |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 7671 | |
| 7672 | /* register constructor. */ |
| 7673 | hlua_class_function(gL.T, "new", hlua_map_new); |
| 7674 | |
| 7675 | /* Create and fill the metatable. */ |
| 7676 | lua_newtable(gL.T); |
| 7677 | |
| 7678 | /* Create and fille the __index entry. */ |
| 7679 | lua_pushstring(gL.T, "__index"); |
| 7680 | lua_newtable(gL.T); |
| 7681 | |
| 7682 | /* Register . */ |
| 7683 | hlua_class_function(gL.T, "lookup", hlua_map_lookup); |
| 7684 | hlua_class_function(gL.T, "slookup", hlua_map_slookup); |
| 7685 | |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 7686 | lua_rawset(gL.T, -3); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 7687 | |
Thierry Fournier | 45e78d7 | 2016-02-19 18:34:46 +0100 | [diff] [blame] | 7688 | /* Register previous table in the registry with reference and named entry. |
| 7689 | * The function hlua_register_metatable() pops the stack, so we |
| 7690 | * previously create a copy of the table. |
| 7691 | */ |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 7692 | lua_pushvalue(gL.T, -1); /* Copy the -1 entry and push it on the stack. */ |
Thierry Fournier | 45e78d7 | 2016-02-19 18:34:46 +0100 | [diff] [blame] | 7693 | class_map_ref = hlua_register_metatable(gL.T, CLASS_MAP); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 7694 | |
| 7695 | /* Assign the metatable to the mai Map object. */ |
| 7696 | lua_setmetatable(gL.T, -2); |
| 7697 | |
| 7698 | /* Set a name to the table. */ |
| 7699 | lua_setglobal(gL.T, "Map"); |
| 7700 | |
| 7701 | /* |
| 7702 | * |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 7703 | * Register class Channel |
| 7704 | * |
| 7705 | */ |
| 7706 | |
| 7707 | /* Create and fill the metatable. */ |
| 7708 | lua_newtable(gL.T); |
| 7709 | |
| 7710 | /* Create and fille the __index entry. */ |
| 7711 | lua_pushstring(gL.T, "__index"); |
| 7712 | lua_newtable(gL.T); |
| 7713 | |
| 7714 | /* Register . */ |
| 7715 | hlua_class_function(gL.T, "get", hlua_channel_get); |
| 7716 | hlua_class_function(gL.T, "dup", hlua_channel_dup); |
| 7717 | hlua_class_function(gL.T, "getline", hlua_channel_getline); |
| 7718 | hlua_class_function(gL.T, "set", hlua_channel_set); |
| 7719 | hlua_class_function(gL.T, "append", hlua_channel_append); |
| 7720 | hlua_class_function(gL.T, "send", hlua_channel_send); |
| 7721 | hlua_class_function(gL.T, "forward", hlua_channel_forward); |
| 7722 | hlua_class_function(gL.T, "get_in_len", hlua_channel_get_in_len); |
| 7723 | hlua_class_function(gL.T, "get_out_len", hlua_channel_get_out_len); |
Thierry FOURNIER / OZON.IO | 65192f3 | 2016-11-07 15:28:40 +0100 | [diff] [blame] | 7724 | hlua_class_function(gL.T, "is_full", hlua_channel_is_full); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 7725 | |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 7726 | lua_rawset(gL.T, -3); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 7727 | |
| 7728 | /* Register previous table in the registry with reference and named entry. */ |
Thierry Fournier | 45e78d7 | 2016-02-19 18:34:46 +0100 | [diff] [blame] | 7729 | class_channel_ref = hlua_register_metatable(gL.T, CLASS_CHANNEL); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 7730 | |
| 7731 | /* |
| 7732 | * |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 7733 | * Register class Fetches |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 7734 | * |
| 7735 | */ |
| 7736 | |
| 7737 | /* Create and fill the metatable. */ |
| 7738 | lua_newtable(gL.T); |
| 7739 | |
| 7740 | /* Create and fille the __index entry. */ |
| 7741 | lua_pushstring(gL.T, "__index"); |
| 7742 | lua_newtable(gL.T); |
| 7743 | |
Thierry FOURNIER | d0fa538 | 2015-02-16 20:14:51 +0100 | [diff] [blame] | 7744 | /* Browse existing fetches and create the associated |
| 7745 | * object method. |
| 7746 | */ |
| 7747 | sf = NULL; |
| 7748 | while ((sf = sample_fetch_getnext(sf, &idx)) != NULL) { |
| 7749 | |
| 7750 | /* Dont register the keywork if the arguments check function are |
| 7751 | * not safe during the runtime. |
| 7752 | */ |
| 7753 | if ((sf->val_args != NULL) && |
| 7754 | (sf->val_args != val_payload_lv) && |
| 7755 | (sf->val_args != val_hdr)) |
| 7756 | continue; |
| 7757 | |
| 7758 | /* gL.Tua doesn't support '.' and '-' in the function names, replace it |
| 7759 | * by an underscore. |
| 7760 | */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7761 | strncpy(trash.area, sf->kw, trash.size); |
| 7762 | trash.area[trash.size - 1] = '\0'; |
| 7763 | for (p = trash.area; *p; p++) |
Thierry FOURNIER | d0fa538 | 2015-02-16 20:14:51 +0100 | [diff] [blame] | 7764 | if (*p == '.' || *p == '-' || *p == '+') |
| 7765 | *p = '_'; |
| 7766 | |
| 7767 | /* Register the function. */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7768 | lua_pushstring(gL.T, trash.area); |
Willy Tarreau | 2ec2274 | 2015-03-10 14:27:20 +0100 | [diff] [blame] | 7769 | lua_pushlightuserdata(gL.T, sf); |
Thierry FOURNIER | d0fa538 | 2015-02-16 20:14:51 +0100 | [diff] [blame] | 7770 | lua_pushcclosure(gL.T, hlua_run_sample_fetch, 1); |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 7771 | lua_rawset(gL.T, -3); |
Thierry FOURNIER | d0fa538 | 2015-02-16 20:14:51 +0100 | [diff] [blame] | 7772 | } |
| 7773 | |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 7774 | lua_rawset(gL.T, -3); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 7775 | |
| 7776 | /* Register previous table in the registry with reference and named entry. */ |
Thierry Fournier | 45e78d7 | 2016-02-19 18:34:46 +0100 | [diff] [blame] | 7777 | class_fetches_ref = hlua_register_metatable(gL.T, CLASS_FETCHES); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 7778 | |
| 7779 | /* |
| 7780 | * |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 7781 | * Register class Converters |
| 7782 | * |
| 7783 | */ |
| 7784 | |
| 7785 | /* Create and fill the metatable. */ |
| 7786 | lua_newtable(gL.T); |
| 7787 | |
| 7788 | /* Create and fill the __index entry. */ |
| 7789 | lua_pushstring(gL.T, "__index"); |
| 7790 | lua_newtable(gL.T); |
| 7791 | |
| 7792 | /* Browse existing converters and create the associated |
| 7793 | * object method. |
| 7794 | */ |
| 7795 | sc = NULL; |
| 7796 | while ((sc = sample_conv_getnext(sc, &idx)) != NULL) { |
| 7797 | /* Dont register the keywork if the arguments check function are |
| 7798 | * not safe during the runtime. |
| 7799 | */ |
| 7800 | if (sc->val_args != NULL) |
| 7801 | continue; |
| 7802 | |
| 7803 | /* gL.Tua doesn't support '.' and '-' in the function names, replace it |
| 7804 | * by an underscore. |
| 7805 | */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7806 | strncpy(trash.area, sc->kw, trash.size); |
| 7807 | trash.area[trash.size - 1] = '\0'; |
| 7808 | for (p = trash.area; *p; p++) |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 7809 | if (*p == '.' || *p == '-' || *p == '+') |
| 7810 | *p = '_'; |
| 7811 | |
| 7812 | /* Register the function. */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7813 | lua_pushstring(gL.T, trash.area); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 7814 | lua_pushlightuserdata(gL.T, sc); |
| 7815 | lua_pushcclosure(gL.T, hlua_run_sample_conv, 1); |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 7816 | lua_rawset(gL.T, -3); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 7817 | } |
| 7818 | |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 7819 | lua_rawset(gL.T, -3); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 7820 | |
| 7821 | /* Register previous table in the registry with reference and named entry. */ |
Thierry Fournier | 45e78d7 | 2016-02-19 18:34:46 +0100 | [diff] [blame] | 7822 | class_converters_ref = hlua_register_metatable(gL.T, CLASS_CONVERTERS); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 7823 | |
| 7824 | /* |
| 7825 | * |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 7826 | * Register class HTTP |
| 7827 | * |
| 7828 | */ |
| 7829 | |
| 7830 | /* Create and fill the metatable. */ |
| 7831 | lua_newtable(gL.T); |
| 7832 | |
| 7833 | /* Create and fille the __index entry. */ |
| 7834 | lua_pushstring(gL.T, "__index"); |
| 7835 | lua_newtable(gL.T); |
| 7836 | |
| 7837 | /* Register Lua functions. */ |
| 7838 | hlua_class_function(gL.T, "req_get_headers",hlua_http_req_get_headers); |
| 7839 | hlua_class_function(gL.T, "req_del_header", hlua_http_req_del_hdr); |
| 7840 | hlua_class_function(gL.T, "req_rep_header", hlua_http_req_rep_hdr); |
| 7841 | hlua_class_function(gL.T, "req_rep_value", hlua_http_req_rep_val); |
| 7842 | hlua_class_function(gL.T, "req_add_header", hlua_http_req_add_hdr); |
| 7843 | hlua_class_function(gL.T, "req_set_header", hlua_http_req_set_hdr); |
| 7844 | hlua_class_function(gL.T, "req_set_method", hlua_http_req_set_meth); |
| 7845 | hlua_class_function(gL.T, "req_set_path", hlua_http_req_set_path); |
| 7846 | hlua_class_function(gL.T, "req_set_query", hlua_http_req_set_query); |
| 7847 | hlua_class_function(gL.T, "req_set_uri", hlua_http_req_set_uri); |
| 7848 | |
| 7849 | hlua_class_function(gL.T, "res_get_headers",hlua_http_res_get_headers); |
| 7850 | hlua_class_function(gL.T, "res_del_header", hlua_http_res_del_hdr); |
| 7851 | hlua_class_function(gL.T, "res_rep_header", hlua_http_res_rep_hdr); |
| 7852 | hlua_class_function(gL.T, "res_rep_value", hlua_http_res_rep_val); |
| 7853 | hlua_class_function(gL.T, "res_add_header", hlua_http_res_add_hdr); |
| 7854 | hlua_class_function(gL.T, "res_set_header", hlua_http_res_set_hdr); |
Thierry FOURNIER | 35d70ef | 2015-08-26 16:21:56 +0200 | [diff] [blame] | 7855 | hlua_class_function(gL.T, "res_set_status", hlua_http_res_set_status); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 7856 | |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 7857 | lua_rawset(gL.T, -3); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 7858 | |
| 7859 | /* Register previous table in the registry with reference and named entry. */ |
Thierry Fournier | 45e78d7 | 2016-02-19 18:34:46 +0100 | [diff] [blame] | 7860 | class_http_ref = hlua_register_metatable(gL.T, CLASS_HTTP); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 7861 | |
| 7862 | /* |
| 7863 | * |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7864 | * Register class AppletTCP |
| 7865 | * |
| 7866 | */ |
| 7867 | |
| 7868 | /* Create and fill the metatable. */ |
| 7869 | lua_newtable(gL.T); |
| 7870 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7871 | /* Create and fille the __index entry. */ |
| 7872 | lua_pushstring(gL.T, "__index"); |
| 7873 | lua_newtable(gL.T); |
| 7874 | |
| 7875 | /* Register Lua functions. */ |
Thierry FOURNIER / OZON.IO | 3e1d791 | 2016-12-12 12:29:34 +0100 | [diff] [blame] | 7876 | hlua_class_function(gL.T, "getline", hlua_applet_tcp_getline); |
| 7877 | hlua_class_function(gL.T, "receive", hlua_applet_tcp_recv); |
| 7878 | hlua_class_function(gL.T, "send", hlua_applet_tcp_send); |
| 7879 | hlua_class_function(gL.T, "set_priv", hlua_applet_tcp_set_priv); |
| 7880 | hlua_class_function(gL.T, "get_priv", hlua_applet_tcp_get_priv); |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 7881 | hlua_class_function(gL.T, "set_var", hlua_applet_tcp_set_var); |
| 7882 | hlua_class_function(gL.T, "unset_var", hlua_applet_tcp_unset_var); |
| 7883 | hlua_class_function(gL.T, "get_var", hlua_applet_tcp_get_var); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7884 | |
| 7885 | lua_settable(gL.T, -3); |
| 7886 | |
| 7887 | /* Register previous table in the registry with reference and named entry. */ |
Thierry Fournier | 45e78d7 | 2016-02-19 18:34:46 +0100 | [diff] [blame] | 7888 | class_applet_tcp_ref = hlua_register_metatable(gL.T, CLASS_APPLET_TCP); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7889 | |
| 7890 | /* |
| 7891 | * |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7892 | * Register class AppletHTTP |
| 7893 | * |
| 7894 | */ |
| 7895 | |
| 7896 | /* Create and fill the metatable. */ |
| 7897 | lua_newtable(gL.T); |
| 7898 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7899 | /* Create and fille the __index entry. */ |
| 7900 | lua_pushstring(gL.T, "__index"); |
| 7901 | lua_newtable(gL.T); |
| 7902 | |
| 7903 | /* Register Lua functions. */ |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 7904 | hlua_class_function(gL.T, "set_priv", hlua_applet_http_set_priv); |
| 7905 | hlua_class_function(gL.T, "get_priv", hlua_applet_http_get_priv); |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 7906 | hlua_class_function(gL.T, "set_var", hlua_applet_http_set_var); |
| 7907 | hlua_class_function(gL.T, "unset_var", hlua_applet_http_unset_var); |
| 7908 | hlua_class_function(gL.T, "get_var", hlua_applet_http_get_var); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7909 | hlua_class_function(gL.T, "getline", hlua_applet_http_getline); |
| 7910 | hlua_class_function(gL.T, "receive", hlua_applet_http_recv); |
| 7911 | hlua_class_function(gL.T, "send", hlua_applet_http_send); |
| 7912 | hlua_class_function(gL.T, "add_header", hlua_applet_http_addheader); |
| 7913 | hlua_class_function(gL.T, "set_status", hlua_applet_http_status); |
| 7914 | hlua_class_function(gL.T, "start_response", hlua_applet_http_start_response); |
| 7915 | |
| 7916 | lua_settable(gL.T, -3); |
| 7917 | |
| 7918 | /* Register previous table in the registry with reference and named entry. */ |
Thierry Fournier | 45e78d7 | 2016-02-19 18:34:46 +0100 | [diff] [blame] | 7919 | class_applet_http_ref = hlua_register_metatable(gL.T, CLASS_APPLET_HTTP); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7920 | |
| 7921 | /* |
| 7922 | * |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 7923 | * Register class TXN |
| 7924 | * |
| 7925 | */ |
| 7926 | |
| 7927 | /* Create and fill the metatable. */ |
| 7928 | lua_newtable(gL.T); |
| 7929 | |
| 7930 | /* Create and fille the __index entry. */ |
| 7931 | lua_pushstring(gL.T, "__index"); |
| 7932 | lua_newtable(gL.T); |
| 7933 | |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 7934 | /* Register Lua functions. */ |
Patrick Hemmer | 268a707 | 2018-05-11 12:52:31 -0400 | [diff] [blame] | 7935 | hlua_class_function(gL.T, "set_priv", hlua_set_priv); |
| 7936 | hlua_class_function(gL.T, "get_priv", hlua_get_priv); |
| 7937 | hlua_class_function(gL.T, "set_var", hlua_set_var); |
| 7938 | hlua_class_function(gL.T, "unset_var", hlua_unset_var); |
| 7939 | hlua_class_function(gL.T, "get_var", hlua_get_var); |
| 7940 | hlua_class_function(gL.T, "done", hlua_txn_done); |
| 7941 | hlua_class_function(gL.T, "set_loglevel", hlua_txn_set_loglevel); |
| 7942 | hlua_class_function(gL.T, "set_tos", hlua_txn_set_tos); |
| 7943 | hlua_class_function(gL.T, "set_mark", hlua_txn_set_mark); |
| 7944 | hlua_class_function(gL.T, "set_priority_class", hlua_txn_set_priority_class); |
| 7945 | hlua_class_function(gL.T, "set_priority_offset", hlua_txn_set_priority_offset); |
| 7946 | hlua_class_function(gL.T, "deflog", hlua_txn_deflog); |
| 7947 | hlua_class_function(gL.T, "log", hlua_txn_log); |
| 7948 | hlua_class_function(gL.T, "Debug", hlua_txn_log_debug); |
| 7949 | hlua_class_function(gL.T, "Info", hlua_txn_log_info); |
| 7950 | hlua_class_function(gL.T, "Warning", hlua_txn_log_warning); |
| 7951 | hlua_class_function(gL.T, "Alert", hlua_txn_log_alert); |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 7952 | |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 7953 | lua_rawset(gL.T, -3); |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 7954 | |
| 7955 | /* Register previous table in the registry with reference and named entry. */ |
Thierry Fournier | 45e78d7 | 2016-02-19 18:34:46 +0100 | [diff] [blame] | 7956 | class_txn_ref = hlua_register_metatable(gL.T, CLASS_TXN); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 7957 | |
| 7958 | /* |
| 7959 | * |
| 7960 | * Register class Socket |
| 7961 | * |
| 7962 | */ |
| 7963 | |
| 7964 | /* Create and fill the metatable. */ |
| 7965 | lua_newtable(gL.T); |
| 7966 | |
| 7967 | /* Create and fille the __index entry. */ |
| 7968 | lua_pushstring(gL.T, "__index"); |
| 7969 | lua_newtable(gL.T); |
| 7970 | |
Baptiste Assmann | 84bb493 | 2015-03-02 21:40:06 +0100 | [diff] [blame] | 7971 | #ifdef USE_OPENSSL |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 7972 | hlua_class_function(gL.T, "connect_ssl", hlua_socket_connect_ssl); |
Baptiste Assmann | 84bb493 | 2015-03-02 21:40:06 +0100 | [diff] [blame] | 7973 | #endif |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 7974 | hlua_class_function(gL.T, "connect", hlua_socket_connect); |
| 7975 | hlua_class_function(gL.T, "send", hlua_socket_send); |
| 7976 | hlua_class_function(gL.T, "receive", hlua_socket_receive); |
| 7977 | hlua_class_function(gL.T, "close", hlua_socket_close); |
| 7978 | hlua_class_function(gL.T, "getpeername", hlua_socket_getpeername); |
| 7979 | hlua_class_function(gL.T, "getsockname", hlua_socket_getsockname); |
| 7980 | hlua_class_function(gL.T, "setoption", hlua_socket_setoption); |
| 7981 | hlua_class_function(gL.T, "settimeout", hlua_socket_settimeout); |
| 7982 | |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 7983 | lua_rawset(gL.T, -3); /* Push the last 2 entries in the table at index -3 */ |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 7984 | |
| 7985 | /* Register the garbage collector entry. */ |
| 7986 | lua_pushstring(gL.T, "__gc"); |
| 7987 | lua_pushcclosure(gL.T, hlua_socket_gc, 0); |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 7988 | lua_rawset(gL.T, -3); /* Push the last 2 entries in the table at index -3 */ |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 7989 | |
| 7990 | /* Register previous table in the registry with reference and named entry. */ |
Thierry Fournier | 45e78d7 | 2016-02-19 18:34:46 +0100 | [diff] [blame] | 7991 | class_socket_ref = hlua_register_metatable(gL.T, CLASS_SOCKET); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 7992 | |
| 7993 | /* Proxy and server configuration initialisation. */ |
| 7994 | memset(&socket_proxy, 0, sizeof(socket_proxy)); |
| 7995 | init_new_proxy(&socket_proxy); |
| 7996 | socket_proxy.parent = NULL; |
| 7997 | socket_proxy.last_change = now.tv_sec; |
| 7998 | socket_proxy.id = "LUA-SOCKET"; |
| 7999 | socket_proxy.cap = PR_CAP_FE | PR_CAP_BE; |
| 8000 | socket_proxy.maxconn = 0; |
| 8001 | socket_proxy.accept = NULL; |
| 8002 | socket_proxy.options2 |= PR_O2_INDEPSTR; |
| 8003 | socket_proxy.srv = NULL; |
| 8004 | socket_proxy.conn_retries = 0; |
| 8005 | socket_proxy.timeout.connect = 5000; /* By default the timeout connection is 5s. */ |
| 8006 | |
| 8007 | /* Init TCP server: unchanged parameters */ |
| 8008 | memset(&socket_tcp, 0, sizeof(socket_tcp)); |
| 8009 | socket_tcp.next = NULL; |
| 8010 | socket_tcp.proxy = &socket_proxy; |
| 8011 | socket_tcp.obj_type = OBJ_TYPE_SERVER; |
| 8012 | LIST_INIT(&socket_tcp.actconns); |
Patrick Hemmer | 0355dab | 2018-05-11 12:52:31 -0400 | [diff] [blame] | 8013 | socket_tcp.pendconns = EB_ROOT; |
Christopher Faulet | 40a007c | 2017-07-03 15:41:01 +0200 | [diff] [blame] | 8014 | socket_tcp.priv_conns = NULL; |
| 8015 | socket_tcp.idle_conns = NULL; |
| 8016 | socket_tcp.safe_conns = NULL; |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 8017 | socket_tcp.next_state = SRV_ST_RUNNING; /* early server setup */ |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 8018 | socket_tcp.last_change = 0; |
| 8019 | socket_tcp.id = "LUA-TCP-CONN"; |
| 8020 | socket_tcp.check.state &= ~CHK_ST_ENABLED; /* Disable health checks. */ |
| 8021 | socket_tcp.agent.state &= ~CHK_ST_ENABLED; /* Disable health checks. */ |
| 8022 | socket_tcp.pp_opts = 0; /* Remove proxy protocol. */ |
| 8023 | |
| 8024 | /* XXX: Copy default parameter from default server, |
| 8025 | * but the default server is not initialized. |
| 8026 | */ |
| 8027 | socket_tcp.maxqueue = socket_proxy.defsrv.maxqueue; |
| 8028 | socket_tcp.minconn = socket_proxy.defsrv.minconn; |
| 8029 | socket_tcp.maxconn = socket_proxy.defsrv.maxconn; |
| 8030 | socket_tcp.slowstart = socket_proxy.defsrv.slowstart; |
| 8031 | socket_tcp.onerror = socket_proxy.defsrv.onerror; |
| 8032 | socket_tcp.onmarkeddown = socket_proxy.defsrv.onmarkeddown; |
| 8033 | socket_tcp.onmarkedup = socket_proxy.defsrv.onmarkedup; |
| 8034 | socket_tcp.consecutive_errors_limit = socket_proxy.defsrv.consecutive_errors_limit; |
| 8035 | socket_tcp.uweight = socket_proxy.defsrv.iweight; |
| 8036 | socket_tcp.iweight = socket_proxy.defsrv.iweight; |
| 8037 | |
| 8038 | socket_tcp.check.status = HCHK_STATUS_INI; |
| 8039 | socket_tcp.check.rise = socket_proxy.defsrv.check.rise; |
| 8040 | socket_tcp.check.fall = socket_proxy.defsrv.check.fall; |
| 8041 | socket_tcp.check.health = socket_tcp.check.rise; /* socket, but will fall down at first failure */ |
| 8042 | socket_tcp.check.server = &socket_tcp; |
| 8043 | |
| 8044 | socket_tcp.agent.status = HCHK_STATUS_INI; |
| 8045 | socket_tcp.agent.rise = socket_proxy.defsrv.agent.rise; |
| 8046 | socket_tcp.agent.fall = socket_proxy.defsrv.agent.fall; |
| 8047 | socket_tcp.agent.health = socket_tcp.agent.rise; /* socket, but will fall down at first failure */ |
| 8048 | socket_tcp.agent.server = &socket_tcp; |
| 8049 | |
Willy Tarreau | a261e9b | 2016-12-22 20:44:00 +0100 | [diff] [blame] | 8050 | socket_tcp.xprt = xprt_get(XPRT_RAW); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 8051 | |
| 8052 | #ifdef USE_OPENSSL |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 8053 | /* Init TCP server: unchanged parameters */ |
| 8054 | memset(&socket_ssl, 0, sizeof(socket_ssl)); |
| 8055 | socket_ssl.next = NULL; |
| 8056 | socket_ssl.proxy = &socket_proxy; |
| 8057 | socket_ssl.obj_type = OBJ_TYPE_SERVER; |
| 8058 | LIST_INIT(&socket_ssl.actconns); |
Patrick Hemmer | 0355dab | 2018-05-11 12:52:31 -0400 | [diff] [blame] | 8059 | socket_ssl.pendconns = EB_ROOT; |
Willy Tarreau | b784b35 | 2019-02-07 14:48:24 +0100 | [diff] [blame] | 8060 | socket_ssl.priv_conns = NULL; |
| 8061 | socket_ssl.idle_conns = NULL; |
| 8062 | socket_ssl.safe_conns = NULL; |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 8063 | socket_ssl.next_state = SRV_ST_RUNNING; /* early server setup */ |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 8064 | socket_ssl.last_change = 0; |
| 8065 | socket_ssl.id = "LUA-SSL-CONN"; |
| 8066 | socket_ssl.check.state &= ~CHK_ST_ENABLED; /* Disable health checks. */ |
| 8067 | socket_ssl.agent.state &= ~CHK_ST_ENABLED; /* Disable health checks. */ |
| 8068 | socket_ssl.pp_opts = 0; /* Remove proxy protocol. */ |
| 8069 | |
| 8070 | /* XXX: Copy default parameter from default server, |
| 8071 | * but the default server is not initialized. |
| 8072 | */ |
| 8073 | socket_ssl.maxqueue = socket_proxy.defsrv.maxqueue; |
| 8074 | socket_ssl.minconn = socket_proxy.defsrv.minconn; |
| 8075 | socket_ssl.maxconn = socket_proxy.defsrv.maxconn; |
| 8076 | socket_ssl.slowstart = socket_proxy.defsrv.slowstart; |
| 8077 | socket_ssl.onerror = socket_proxy.defsrv.onerror; |
| 8078 | socket_ssl.onmarkeddown = socket_proxy.defsrv.onmarkeddown; |
| 8079 | socket_ssl.onmarkedup = socket_proxy.defsrv.onmarkedup; |
| 8080 | socket_ssl.consecutive_errors_limit = socket_proxy.defsrv.consecutive_errors_limit; |
| 8081 | socket_ssl.uweight = socket_proxy.defsrv.iweight; |
| 8082 | socket_ssl.iweight = socket_proxy.defsrv.iweight; |
| 8083 | |
| 8084 | socket_ssl.check.status = HCHK_STATUS_INI; |
| 8085 | socket_ssl.check.rise = socket_proxy.defsrv.check.rise; |
| 8086 | socket_ssl.check.fall = socket_proxy.defsrv.check.fall; |
| 8087 | socket_ssl.check.health = socket_ssl.check.rise; /* socket, but will fall down at first failure */ |
| 8088 | socket_ssl.check.server = &socket_ssl; |
| 8089 | |
| 8090 | socket_ssl.agent.status = HCHK_STATUS_INI; |
| 8091 | socket_ssl.agent.rise = socket_proxy.defsrv.agent.rise; |
| 8092 | socket_ssl.agent.fall = socket_proxy.defsrv.agent.fall; |
| 8093 | socket_ssl.agent.health = socket_ssl.agent.rise; /* socket, but will fall down at first failure */ |
| 8094 | socket_ssl.agent.server = &socket_ssl; |
| 8095 | |
Thierry FOURNIER | 36d1374 | 2015-03-17 16:48:53 +0100 | [diff] [blame] | 8096 | socket_ssl.use_ssl = 1; |
Willy Tarreau | a261e9b | 2016-12-22 20:44:00 +0100 | [diff] [blame] | 8097 | socket_ssl.xprt = xprt_get(XPRT_SSL); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 8098 | |
Thierry FOURNIER | 36d1374 | 2015-03-17 16:48:53 +0100 | [diff] [blame] | 8099 | for (idx = 0; args[idx] != NULL; idx++) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 8100 | if ((kw = srv_find_kw(args[idx])) != NULL) { /* Maybe it's registered server keyword */ |
| 8101 | /* |
| 8102 | * |
| 8103 | * If the keyword is not known, we can search in the registered |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 8104 | * server keywords. This is useful to configure special SSL |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 8105 | * features like client certificates and ssl_verify. |
| 8106 | * |
| 8107 | */ |
| 8108 | tmp_error = kw->parse(args, &idx, &socket_proxy, &socket_ssl, &error); |
| 8109 | if (tmp_error != 0) { |
| 8110 | fprintf(stderr, "INTERNAL ERROR: %s\n", error); |
| 8111 | abort(); /* This must be never arrives because the command line |
| 8112 | not editable by the user. */ |
| 8113 | } |
| 8114 | idx += kw->skip; |
| 8115 | } |
| 8116 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 8117 | #endif |
Thierry Fournier | 75933d4 | 2016-01-21 09:30:18 +0100 | [diff] [blame] | 8118 | |
| 8119 | RESET_SAFE_LJMP(gL.T); |
Thierry FOURNIER | 6f1fd48 | 2015-01-23 14:06:13 +0100 | [diff] [blame] | 8120 | } |
Willy Tarreau | bb57d94 | 2016-12-21 19:04:56 +0100 | [diff] [blame] | 8121 | |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 8122 | static void hlua_register_build_options(void) |
| 8123 | { |
Willy Tarreau | bb57d94 | 2016-12-21 19:04:56 +0100 | [diff] [blame] | 8124 | char *ptr = NULL; |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 8125 | |
Willy Tarreau | bb57d94 | 2016-12-21 19:04:56 +0100 | [diff] [blame] | 8126 | memprintf(&ptr, "Built with Lua version : %s", LUA_RELEASE); |
| 8127 | hap_register_build_opts(ptr, 1); |
| 8128 | } |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 8129 | |
| 8130 | INITCALL0(STG_REGISTER, hlua_register_build_options); |