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> |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 14 | #include <setjmp.h> |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 15 | |
Thierry FOURNIER | 6f1fd48 | 2015-01-23 14:06:13 +0100 | [diff] [blame] | 16 | #include <lauxlib.h> |
| 17 | #include <lua.h> |
| 18 | #include <lualib.h> |
| 19 | |
Thierry FOURNIER | 463119c | 2015-03-10 00:35:36 +0100 | [diff] [blame] | 20 | #if !defined(LUA_VERSION_NUM) || LUA_VERSION_NUM < 503 |
| 21 | #error "Requires Lua 5.3 or later." |
Cyril Bonté | dc0306e | 2015-03-02 00:08:40 +0100 | [diff] [blame] | 22 | #endif |
| 23 | |
Willy Tarreau | 8d2b777 | 2020-05-27 10:58:19 +0200 | [diff] [blame] | 24 | #include <import/ebpttree.h> |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 25 | |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 26 | #include <haproxy/api.h> |
| 27 | #include <haproxy/applet.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 28 | #include <haproxy/arg.h> |
Christopher Faulet | d25d926 | 2020-08-06 11:04:46 +0200 | [diff] [blame] | 29 | #include <haproxy/auth.h> |
Willy Tarreau | 6be7849 | 2020-06-05 00:00:29 +0200 | [diff] [blame] | 30 | #include <haproxy/cfgparse.h> |
Willy Tarreau | f1d32c4 | 2020-06-04 21:07:02 +0200 | [diff] [blame] | 31 | #include <haproxy/channel.h> |
Willy Tarreau | 83487a8 | 2020-06-04 20:19:54 +0200 | [diff] [blame] | 32 | #include <haproxy/cli.h> |
Willy Tarreau | 7ea393d | 2020-06-04 18:02:10 +0200 | [diff] [blame] | 33 | #include <haproxy/connection.h> |
Willy Tarreau | 5413a87 | 2020-06-02 19:33:08 +0200 | [diff] [blame] | 34 | #include <haproxy/h1.h> |
Willy Tarreau | 8641605 | 2020-06-04 09:20:54 +0200 | [diff] [blame] | 35 | #include <haproxy/hlua.h> |
Willy Tarreau | 8c79400 | 2020-06-04 10:05:25 +0200 | [diff] [blame] | 36 | #include <haproxy/hlua_fcn.h> |
Willy Tarreau | c2b1ff0 | 2020-06-04 21:21:03 +0200 | [diff] [blame] | 37 | #include <haproxy/http_ana.h> |
Willy Tarreau | 126ba3a | 2020-06-04 18:26:43 +0200 | [diff] [blame] | 38 | #include <haproxy/http_fetch.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 39 | #include <haproxy/http_htx.h> |
Willy Tarreau | c761f84 | 2020-06-04 11:40:28 +0200 | [diff] [blame] | 40 | #include <haproxy/http_rules.h> |
Willy Tarreau | 36979d9 | 2020-06-05 17:27:29 +0200 | [diff] [blame] | 41 | #include <haproxy/log.h> |
Willy Tarreau | 2cd5809 | 2020-06-04 15:10:43 +0200 | [diff] [blame] | 42 | #include <haproxy/map.h> |
Willy Tarreau | 8efbdfb | 2020-06-04 11:29:21 +0200 | [diff] [blame] | 43 | #include <haproxy/obj_type.h> |
Willy Tarreau | 225a90a | 2020-06-04 15:06:28 +0200 | [diff] [blame] | 44 | #include <haproxy/pattern.h> |
Willy Tarreau | 469509b | 2020-06-04 15:13:30 +0200 | [diff] [blame] | 45 | #include <haproxy/payload.h> |
Willy Tarreau | a264d96 | 2020-06-04 22:29:18 +0200 | [diff] [blame] | 46 | #include <haproxy/proxy-t.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 47 | #include <haproxy/regex.h> |
Willy Tarreau | e6ce10b | 2020-06-04 15:33:47 +0200 | [diff] [blame] | 48 | #include <haproxy/sample.h> |
Willy Tarreau | 1e56f92 | 2020-06-04 23:20:13 +0200 | [diff] [blame] | 49 | #include <haproxy/server-t.h> |
Willy Tarreau | 48d25b3 | 2020-06-04 18:58:52 +0200 | [diff] [blame] | 50 | #include <haproxy/session.h> |
Willy Tarreau | 2eec9b5 | 2020-06-04 19:58:55 +0200 | [diff] [blame] | 51 | #include <haproxy/stats-t.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 52 | #include <haproxy/stream.h> |
Willy Tarreau | 5e539c9 | 2020-06-04 20:45:39 +0200 | [diff] [blame] | 53 | #include <haproxy/stream_interface.h> |
Willy Tarreau | cea0e1b | 2020-06-04 17:25:40 +0200 | [diff] [blame] | 54 | #include <haproxy/task.h> |
Willy Tarreau | 8b550af | 2020-06-04 17:42:48 +0200 | [diff] [blame] | 55 | #include <haproxy/tcp_rules.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 56 | #include <haproxy/thread.h> |
Willy Tarreau | 48fbcae | 2020-06-03 18:09:46 +0200 | [diff] [blame] | 57 | #include <haproxy/tools.h> |
Willy Tarreau | a171892 | 2020-06-04 16:25:31 +0200 | [diff] [blame] | 58 | #include <haproxy/vars.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 59 | #include <haproxy/xref.h> |
| 60 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 61 | |
Thierry FOURNIER | 6f1fd48 | 2015-01-23 14:06:13 +0100 | [diff] [blame] | 62 | /* Lua uses longjmp to perform yield or throwing errors. This |
| 63 | * macro is used only for identifying the function that can |
| 64 | * not return because a longjmp is executed. |
| 65 | * __LJMP marks a prototype of hlua file that can use longjmp. |
| 66 | * WILL_LJMP() marks an lua function that will use longjmp. |
| 67 | * MAY_LJMP() marks an lua function that may use longjmp. |
| 68 | */ |
| 69 | #define __LJMP |
Willy Tarreau | 4e7cc33 | 2018-10-20 17:45:48 +0200 | [diff] [blame] | 70 | #define WILL_LJMP(func) do { func; my_unreachable(); } while(0) |
Thierry FOURNIER | 6f1fd48 | 2015-01-23 14:06:13 +0100 | [diff] [blame] | 71 | #define MAY_LJMP(func) func |
| 72 | |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 73 | /* This couple of function executes securely some Lua calls outside of |
| 74 | * the lua runtime environment. Each Lua call can return a longjmp |
| 75 | * if it encounter a memory error. |
| 76 | * |
| 77 | * Lua documentation extract: |
| 78 | * |
| 79 | * If an error happens outside any protected environment, Lua calls |
| 80 | * a panic function (see lua_atpanic) and then calls abort, thus |
| 81 | * exiting the host application. Your panic function can avoid this |
| 82 | * exit by never returning (e.g., doing a long jump to your own |
| 83 | * recovery point outside Lua). |
| 84 | * |
| 85 | * The panic function runs as if it were a message handler (see |
| 86 | * §2.3); in particular, the error message is at the top of the |
| 87 | * stack. However, there is no guarantee about stack space. To push |
| 88 | * anything on the stack, the panic function must first check the |
| 89 | * available space (see §4.2). |
| 90 | * |
| 91 | * We must check all the Lua entry point. This includes: |
| 92 | * - The include/proto/hlua.h exported functions |
| 93 | * - the task wrapper function |
| 94 | * - The action wrapper function |
| 95 | * - The converters wrapper function |
| 96 | * - The sample-fetch wrapper functions |
| 97 | * |
Ilya Shipitsin | 46a030c | 2020-07-05 16:36:08 +0500 | [diff] [blame] | 98 | * It is tolerated that the initialisation function returns an abort. |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 99 | * Before each Lua abort, an error message is written on stderr. |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 100 | * |
| 101 | * The macro SET_SAFE_LJMP initialise the longjmp. The Macro |
| 102 | * RESET_SAFE_LJMP reset the longjmp. These function must be macro |
| 103 | * because they must be exists in the program stack when the longjmp |
| 104 | * is called. |
Thierry FOURNIER | 61ba0e2 | 2017-07-12 11:41:21 +0200 | [diff] [blame] | 105 | * |
| 106 | * Note that the Lua processing is not really thread safe. It provides |
| 107 | * heavy system which consists to add our own lock function in the Lua |
| 108 | * code and recompile the library. This system will probably not accepted |
| 109 | * by maintainers of various distribs. |
| 110 | * |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 111 | * Our main execution point of the Lua is the function lua_resume(). A |
Thierry FOURNIER | 61ba0e2 | 2017-07-12 11:41:21 +0200 | [diff] [blame] | 112 | * quick looking on the Lua sources displays a lua_lock() a the start |
| 113 | * of function and a lua_unlock() at the end of the function. So I |
| 114 | * conclude that the Lua thread safe mode just perform a mutex around |
| 115 | * all execution. So I prefer to do this in the HAProxy code, it will be |
| 116 | * easier for distro maintainers. |
| 117 | * |
| 118 | * Note that the HAProxy lua functions rounded by the macro SET_SAFE_LJMP |
| 119 | * and RESET_SAFE_LJMP manipulates the Lua stack, so it will be careful |
| 120 | * to set mutex around these functions. |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 121 | */ |
Willy Tarreau | 86abe44 | 2018-11-25 20:12:18 +0100 | [diff] [blame] | 122 | __decl_spinlock(hlua_global_lock); |
Thierry FOURNIER | ffbad79 | 2017-07-12 11:39:04 +0200 | [diff] [blame] | 123 | THREAD_LOCAL jmp_buf safe_ljmp_env; |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 124 | static int hlua_panic_safe(lua_State *L) { return 0; } |
Willy Tarreau | 9d6bb5a | 2020-02-06 15:55:41 +0100 | [diff] [blame] | 125 | static int hlua_panic_ljmp(lua_State *L) { WILL_LJMP(longjmp(safe_ljmp_env, 1)); } |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 126 | |
Thierry Fournier | 62a22aa | 2020-11-28 21:06:35 +0100 | [diff] [blame] | 127 | /* This is the chained list of struct hlua_function referenced |
| 128 | * for haproxy action, sample-fetches, converters, cli and |
| 129 | * applet bindings. It is used for a post-initialisation control. |
| 130 | */ |
| 131 | static struct list referenced_functions = LIST_HEAD_INIT(referenced_functions); |
| 132 | |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 133 | /* This variable is used only during initialization to identify the Lua state |
| 134 | * currently being initialized. 0 is the common lua state, 1 to n are the Lua |
| 135 | * states dedicated to each thread (in this case hlua_state_id==tid+1). |
| 136 | */ |
| 137 | static int hlua_state_id; |
| 138 | |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 139 | /* This is a NULL-terminated list of lua file which are referenced to load per thread */ |
| 140 | static char **per_thread_load = NULL; |
| 141 | |
| 142 | lua_State *hlua_init_state(int thread_id); |
| 143 | |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 144 | #define SET_SAFE_LJMP_L(__L, __HLUA) \ |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 145 | ({ \ |
| 146 | int ret; \ |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 147 | if ((__HLUA)->state_id == 0) \ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 148 | HA_SPIN_LOCK(LUA_LOCK, &hlua_global_lock); \ |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 149 | if (setjmp(safe_ljmp_env) != 0) { \ |
| 150 | lua_atpanic(__L, hlua_panic_safe); \ |
| 151 | ret = 0; \ |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 152 | if ((__HLUA)->state_id == 0) \ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 153 | HA_SPIN_UNLOCK(LUA_LOCK, &hlua_global_lock); \ |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 154 | } else { \ |
| 155 | lua_atpanic(__L, hlua_panic_ljmp); \ |
| 156 | ret = 1; \ |
| 157 | } \ |
| 158 | ret; \ |
| 159 | }) |
| 160 | |
| 161 | /* If we are the last function catching Lua errors, we |
| 162 | * must reset the panic function. |
| 163 | */ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 164 | #define RESET_SAFE_LJMP_L(__L, __HLUA) \ |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 165 | do { \ |
| 166 | lua_atpanic(__L, hlua_panic_safe); \ |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 167 | if ((__HLUA)->state_id == 0) \ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 168 | HA_SPIN_UNLOCK(LUA_LOCK, &hlua_global_lock); \ |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 169 | } while(0) |
| 170 | |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 171 | #define SET_SAFE_LJMP(__HLUA) \ |
| 172 | SET_SAFE_LJMP_L((__HLUA)->T, __HLUA) |
| 173 | |
| 174 | #define RESET_SAFE_LJMP(__HLUA) \ |
| 175 | RESET_SAFE_LJMP_L((__HLUA)->T, __HLUA) |
| 176 | |
| 177 | #define SET_SAFE_LJMP_PARENT(__HLUA) \ |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 178 | SET_SAFE_LJMP_L(hlua_states[(__HLUA)->state_id], __HLUA) |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 179 | |
| 180 | #define RESET_SAFE_LJMP_PARENT(__HLUA) \ |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 181 | RESET_SAFE_LJMP_L(hlua_states[(__HLUA)->state_id], __HLUA) |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 182 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 183 | /* Applet status flags */ |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 184 | #define APPLET_DONE 0x01 /* applet processing is done. */ |
Christopher Faulet | 18c2e8d | 2019-03-01 12:02:08 +0100 | [diff] [blame] | 185 | /* unused: 0x02 */ |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 186 | #define APPLET_HDR_SENT 0x04 /* Response header sent. */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 187 | /* unused: 0x08, 0x10 */ |
Thierry FOURNIER | d93ea2b | 2015-12-20 19:14:52 +0100 | [diff] [blame] | 188 | #define APPLET_HTTP11 0x20 /* Last chunk sent. */ |
Christopher Faulet | 56a3d6e | 2019-02-27 22:06:23 +0100 | [diff] [blame] | 189 | #define APPLET_RSP_SENT 0x40 /* The response was fully sent */ |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 190 | |
Thierry Fournier | afc63e2 | 2020-11-28 17:06:51 +0100 | [diff] [blame] | 191 | /* The main Lua execution context. The 0 index is the |
| 192 | * common state shared by all threads. |
| 193 | */ |
Willy Tarreau | 186f376 | 2020-12-04 11:48:12 +0100 | [diff] [blame] | 194 | static lua_State *hlua_states[MAX_THREADS + 1]; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 195 | |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 196 | /* This is the memory pool containing struct lua for applets |
| 197 | * (including cli). |
| 198 | */ |
Willy Tarreau | 8ceae72 | 2018-11-26 11:58:30 +0100 | [diff] [blame] | 199 | DECLARE_STATIC_POOL(pool_head_hlua, "hlua", sizeof(struct hlua)); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 200 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 201 | /* Used for Socket connection. */ |
| 202 | static struct proxy socket_proxy; |
| 203 | static struct server socket_tcp; |
| 204 | #ifdef USE_OPENSSL |
| 205 | static struct server socket_ssl; |
| 206 | #endif |
| 207 | |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 208 | /* List head of the function called at the initialisation time. */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 209 | struct list hlua_init_functions[MAX_THREADS + 1]; |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 210 | |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 211 | /* The following variables contains the reference of the different |
| 212 | * Lua classes. These references are useful for identify metadata |
| 213 | * associated with an object. |
| 214 | */ |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 215 | static int class_txn_ref; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 216 | static int class_socket_ref; |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 217 | static int class_channel_ref; |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 218 | static int class_fetches_ref; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 219 | static int class_converters_ref; |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 220 | static int class_http_ref; |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 221 | static int class_map_ref; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 222 | static int class_applet_tcp_ref; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 223 | static int class_applet_http_ref; |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 224 | static int class_txn_reply_ref; |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 225 | |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 226 | /* Global Lua execution timeout. By default Lua, execution linked |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 227 | * with stream (actions, sample-fetches and converters) have a |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 228 | * short timeout. Lua linked with tasks doesn't have a timeout |
| 229 | * because a task may remain alive during all the haproxy execution. |
| 230 | */ |
| 231 | static unsigned int hlua_timeout_session = 4000; /* session timeout. */ |
| 232 | static unsigned int hlua_timeout_task = TICK_ETERNITY; /* task timeout. */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 233 | static unsigned int hlua_timeout_applet = 4000; /* applet timeout. */ |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 234 | |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 235 | /* Interrupts the Lua processing each "hlua_nb_instruction" instructions. |
| 236 | * it is used for preventing infinite loops. |
| 237 | * |
| 238 | * I test the scheer with an infinite loop containing one incrementation |
| 239 | * and one test. I run this loop between 10 seconds, I raise a ceil of |
| 240 | * 710M loops from one interrupt each 9000 instructions, so I fix the value |
| 241 | * to one interrupt each 10 000 instructions. |
| 242 | * |
| 243 | * configured | Number of |
| 244 | * instructions | loops executed |
| 245 | * between two | in milions |
| 246 | * forced yields | |
| 247 | * ---------------+--------------- |
| 248 | * 10 | 160 |
| 249 | * 500 | 670 |
| 250 | * 1000 | 680 |
| 251 | * 5000 | 700 |
| 252 | * 7000 | 700 |
| 253 | * 8000 | 700 |
| 254 | * 9000 | 710 <- ceil |
| 255 | * 10000 | 710 |
| 256 | * 100000 | 710 |
| 257 | * 1000000 | 710 |
| 258 | * |
| 259 | */ |
| 260 | static unsigned int hlua_nb_instruction = 10000; |
| 261 | |
Willy Tarreau | cdb5346 | 2020-12-02 12:12:00 +0100 | [diff] [blame] | 262 | /* Descriptor for the memory allocation state. The limit is pre-initialised to |
| 263 | * 0 until it is replaced by "tune.lua.maxmem" during the config parsing, or it |
| 264 | * is replaced with ~0 during post_init after everything was loaded. This way |
| 265 | * it is guaranteed that if limit is ~0 the boot is complete and that if it's |
| 266 | * zero it's not yet limited and proper accounting is required. |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 267 | */ |
| 268 | struct hlua_mem_allocator { |
| 269 | size_t allocated; |
| 270 | size_t limit; |
| 271 | }; |
| 272 | |
Willy Tarreau | cdb5346 | 2020-12-02 12:12:00 +0100 | [diff] [blame] | 273 | static struct hlua_mem_allocator hlua_global_allocator THREAD_ALIGNED(64); |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 274 | |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 275 | /* These functions converts types between HAProxy internal args or |
| 276 | * sample and LUA types. Another function permits to check if the |
| 277 | * LUA stack contains arguments according with an required ARG_T |
| 278 | * format. |
| 279 | */ |
| 280 | static int hlua_arg2lua(lua_State *L, const struct arg *arg); |
| 281 | static int hlua_lua2arg(lua_State *L, int ud, struct arg *arg); |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 282 | __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] | 283 | uint64_t mask, struct proxy *p); |
Willy Tarreau | 5eadada | 2015-03-10 17:28:54 +0100 | [diff] [blame] | 284 | static int hlua_smp2lua(lua_State *L, struct sample *smp); |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 285 | static int hlua_smp2lua_str(lua_State *L, struct sample *smp); |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 286 | static int hlua_lua2smp(lua_State *L, int ud, struct sample *smp); |
| 287 | |
Christopher Faulet | 9d1332b | 2020-02-24 16:46:16 +0100 | [diff] [blame] | 288 | __LJMP static int hlua_http_get_headers(lua_State *L, struct http_msg *msg); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 289 | |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 290 | struct prepend_path { |
| 291 | struct list l; |
| 292 | char *type; |
| 293 | char *path; |
| 294 | }; |
| 295 | |
| 296 | static struct list prepend_path_list = LIST_HEAD_INIT(prepend_path_list); |
| 297 | |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 298 | #define SEND_ERR(__be, __fmt, __args...) \ |
| 299 | do { \ |
| 300 | send_log(__be, LOG_ERR, __fmt, ## __args); \ |
| 301 | if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) \ |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 302 | ha_alert(__fmt, ## __args); \ |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 303 | } while (0) |
| 304 | |
Thierry Fournier | 62a22aa | 2020-11-28 21:06:35 +0100 | [diff] [blame] | 305 | static inline struct hlua_function *new_hlua_function() |
| 306 | { |
| 307 | struct hlua_function *fcn; |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 308 | int i; |
Thierry Fournier | 62a22aa | 2020-11-28 21:06:35 +0100 | [diff] [blame] | 309 | |
| 310 | fcn = calloc(1, sizeof(*fcn)); |
| 311 | if (!fcn) |
| 312 | return NULL; |
| 313 | LIST_ADDQ(&referenced_functions, &fcn->l); |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 314 | for (i = 0; i < MAX_THREADS + 1; i++) |
| 315 | fcn->function_ref[i] = -1; |
Thierry Fournier | 62a22aa | 2020-11-28 21:06:35 +0100 | [diff] [blame] | 316 | return fcn; |
| 317 | } |
| 318 | |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 319 | /* If the common state is set, the stack id is 0, otherwise it is the tid + 1 */ |
| 320 | static inline int fcn_ref_to_stack_id(struct hlua_function *fcn) |
| 321 | { |
| 322 | if (fcn->function_ref[0] == -1) |
| 323 | return tid + 1; |
| 324 | return 0; |
| 325 | } |
| 326 | |
Thierry FOURNIER | e8b9a40 | 2015-02-25 18:48:12 +0100 | [diff] [blame] | 327 | /* Used to check an Lua function type in the stack. It creates and |
| 328 | * returns a reference of the function. This function throws an |
| 329 | * error if the rgument is not a "function". |
| 330 | */ |
| 331 | __LJMP unsigned int hlua_checkfunction(lua_State *L, int argno) |
| 332 | { |
| 333 | if (!lua_isfunction(L, argno)) { |
Thierry FOURNIER | fd1e955 | 2018-02-23 18:41:18 +0100 | [diff] [blame] | 334 | 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] | 335 | WILL_LJMP(luaL_argerror(L, argno, msg)); |
| 336 | } |
| 337 | lua_pushvalue(L, argno); |
| 338 | return luaL_ref(L, LUA_REGISTRYINDEX); |
| 339 | } |
| 340 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 341 | /* Return the string that is of the top of the stack. */ |
| 342 | const char *hlua_get_top_error_string(lua_State *L) |
| 343 | { |
| 344 | if (lua_gettop(L) < 1) |
| 345 | return "unknown error"; |
| 346 | if (lua_type(L, -1) != LUA_TSTRING) |
| 347 | return "unknown error"; |
| 348 | return lua_tostring(L, -1); |
| 349 | } |
| 350 | |
Thierry FOURNIER | fc044c9 | 2018-06-07 14:40:48 +0200 | [diff] [blame] | 351 | __LJMP static const char *hlua_traceback(lua_State *L) |
| 352 | { |
| 353 | lua_Debug ar; |
| 354 | int level = 0; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 355 | struct buffer *msg = get_trash_chunk(); |
Thierry FOURNIER | fc044c9 | 2018-06-07 14:40:48 +0200 | [diff] [blame] | 356 | int filled = 0; |
| 357 | |
| 358 | while (lua_getstack(L, level++, &ar)) { |
| 359 | |
| 360 | /* Add separator */ |
| 361 | if (filled) |
| 362 | chunk_appendf(msg, ", "); |
| 363 | filled = 1; |
| 364 | |
| 365 | /* Fill fields: |
| 366 | * 'S': fills in the fields source, short_src, linedefined, lastlinedefined, and what; |
| 367 | * 'l': fills in the field currentline; |
| 368 | * 'n': fills in the field name and namewhat; |
| 369 | * 't': fills in the field istailcall; |
| 370 | */ |
| 371 | lua_getinfo(L, "Slnt", &ar); |
| 372 | |
| 373 | /* Append code localisation */ |
| 374 | if (ar.currentline > 0) |
| 375 | chunk_appendf(msg, "%s:%d ", ar.short_src, ar.currentline); |
| 376 | else |
| 377 | chunk_appendf(msg, "%s ", ar.short_src); |
| 378 | |
| 379 | /* |
| 380 | * Get function name |
| 381 | * |
| 382 | * if namewhat is no empty, name is defined. |
| 383 | * what contains "Lua" for Lua function, "C" for C function, |
| 384 | * or "main" for main code. |
| 385 | */ |
| 386 | if (*ar.namewhat != '\0' && ar.name != NULL) /* is there a name from code? */ |
| 387 | chunk_appendf(msg, "%s '%s'", ar.namewhat, ar.name); /* use it */ |
| 388 | |
| 389 | else if (*ar.what == 'm') /* "main", the code is not executed in a function */ |
| 390 | chunk_appendf(msg, "main chunk"); |
| 391 | |
| 392 | else if (*ar.what != 'C') /* for Lua functions, use <file:line> */ |
| 393 | chunk_appendf(msg, "C function line %d", ar.linedefined); |
| 394 | |
| 395 | else /* nothing left... */ |
| 396 | chunk_appendf(msg, "?"); |
| 397 | |
| 398 | |
| 399 | /* Display tailed call */ |
| 400 | if (ar.istailcall) |
| 401 | chunk_appendf(msg, " ..."); |
| 402 | } |
| 403 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 404 | return msg->area; |
Thierry FOURNIER | fc044c9 | 2018-06-07 14:40:48 +0200 | [diff] [blame] | 405 | } |
| 406 | |
| 407 | |
Thierry FOURNIER | e8b9a40 | 2015-02-25 18:48:12 +0100 | [diff] [blame] | 408 | /* This function check the number of arguments available in the |
| 409 | * stack. If the number of arguments available is not the same |
Ilya Shipitsin | c02a23f | 2020-05-06 00:53:22 +0500 | [diff] [blame] | 410 | * then <nb> an error is thrown. |
Thierry FOURNIER | e8b9a40 | 2015-02-25 18:48:12 +0100 | [diff] [blame] | 411 | */ |
| 412 | __LJMP static inline void check_args(lua_State *L, int nb, char *fcn) |
| 413 | { |
| 414 | if (lua_gettop(L) == nb) |
| 415 | return; |
| 416 | WILL_LJMP(luaL_error(L, "'%s' needs %d arguments", fcn, nb)); |
| 417 | } |
| 418 | |
Mark Lakes | 22154b4 | 2018-01-29 14:38:40 -0800 | [diff] [blame] | 419 | /* This function pushes an error string prefixed by the file name |
Thierry FOURNIER | e8b9a40 | 2015-02-25 18:48:12 +0100 | [diff] [blame] | 420 | * and the line number where the error is encountered. |
| 421 | */ |
| 422 | static int hlua_pusherror(lua_State *L, const char *fmt, ...) |
| 423 | { |
| 424 | va_list argp; |
| 425 | va_start(argp, fmt); |
| 426 | luaL_where(L, 1); |
| 427 | lua_pushvfstring(L, fmt, argp); |
| 428 | va_end(argp); |
| 429 | lua_concat(L, 2); |
| 430 | return 1; |
| 431 | } |
| 432 | |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 433 | /* This functions is used with sample fetch and converters. It |
| 434 | * converts the HAProxy configuration argument in a lua stack |
| 435 | * values. |
| 436 | * |
| 437 | * It takes an array of "arg", and each entry of the array is |
| 438 | * converted and pushed in the LUA stack. |
| 439 | */ |
| 440 | static int hlua_arg2lua(lua_State *L, const struct arg *arg) |
| 441 | { |
| 442 | switch (arg->type) { |
| 443 | case ARGT_SINT: |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 444 | case ARGT_TIME: |
| 445 | case ARGT_SIZE: |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 446 | lua_pushinteger(L, arg->data.sint); |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 447 | break; |
| 448 | |
| 449 | case ARGT_STR: |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 450 | lua_pushlstring(L, arg->data.str.area, arg->data.str.data); |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 451 | break; |
| 452 | |
| 453 | case ARGT_IPV4: |
| 454 | case ARGT_IPV6: |
| 455 | case ARGT_MSK4: |
| 456 | case ARGT_MSK6: |
| 457 | case ARGT_FE: |
| 458 | case ARGT_BE: |
| 459 | case ARGT_TAB: |
| 460 | case ARGT_SRV: |
| 461 | case ARGT_USR: |
| 462 | case ARGT_MAP: |
| 463 | default: |
| 464 | lua_pushnil(L); |
| 465 | break; |
| 466 | } |
| 467 | return 1; |
| 468 | } |
| 469 | |
Ilya Shipitsin | c02a23f | 2020-05-06 00:53:22 +0500 | [diff] [blame] | 470 | /* This function take one entry in an LUA stack at the index "ud", |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 471 | * and try to convert it in an HAProxy argument entry. This is useful |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 472 | * with sample fetch wrappers. The input arguments are given to the |
| 473 | * lua wrapper and converted as arg list by the function. |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 474 | */ |
| 475 | static int hlua_lua2arg(lua_State *L, int ud, struct arg *arg) |
| 476 | { |
| 477 | switch (lua_type(L, ud)) { |
| 478 | |
| 479 | case LUA_TNUMBER: |
| 480 | case LUA_TBOOLEAN: |
| 481 | arg->type = ARGT_SINT; |
| 482 | arg->data.sint = lua_tointeger(L, ud); |
| 483 | break; |
| 484 | |
| 485 | case LUA_TSTRING: |
| 486 | arg->type = ARGT_STR; |
Tim Duesterhus | 2e89dec | 2019-09-29 23:03:08 +0200 | [diff] [blame] | 487 | arg->data.str.area = (char *)lua_tolstring(L, ud, &arg->data.str.data); |
Tim Duesterhus | 29d2e8a | 2019-09-29 23:03:07 +0200 | [diff] [blame] | 488 | /* We don't know the actual size of the underlying allocation, so be conservative. */ |
Christopher Faulet | fdea1b6 | 2020-08-06 08:29:18 +0200 | [diff] [blame] | 489 | arg->data.str.size = arg->data.str.data+1; /* count the terminating null byte */ |
Tim Duesterhus | 29d2e8a | 2019-09-29 23:03:07 +0200 | [diff] [blame] | 490 | arg->data.str.head = 0; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 491 | break; |
| 492 | |
| 493 | case LUA_TUSERDATA: |
| 494 | case LUA_TNIL: |
| 495 | case LUA_TTABLE: |
| 496 | case LUA_TFUNCTION: |
| 497 | case LUA_TTHREAD: |
| 498 | case LUA_TLIGHTUSERDATA: |
| 499 | arg->type = ARGT_SINT; |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 500 | arg->data.sint = 0; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 501 | break; |
| 502 | } |
| 503 | return 1; |
| 504 | } |
| 505 | |
| 506 | /* the following functions are used to convert a struct sample |
| 507 | * in Lua type. This useful to convert the return of the |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 508 | * fetches or converters. |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 509 | */ |
Willy Tarreau | 5eadada | 2015-03-10 17:28:54 +0100 | [diff] [blame] | 510 | static int hlua_smp2lua(lua_State *L, struct sample *smp) |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 511 | { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 512 | switch (smp->data.type) { |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 513 | case SMP_T_SINT: |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 514 | case SMP_T_BOOL: |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 515 | lua_pushinteger(L, smp->data.u.sint); |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 516 | break; |
| 517 | |
| 518 | case SMP_T_BIN: |
| 519 | case SMP_T_STR: |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 520 | 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] | 521 | break; |
| 522 | |
| 523 | case SMP_T_METH: |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 524 | switch (smp->data.u.meth.meth) { |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 525 | case HTTP_METH_OPTIONS: lua_pushstring(L, "OPTIONS"); break; |
| 526 | case HTTP_METH_GET: lua_pushstring(L, "GET"); break; |
| 527 | case HTTP_METH_HEAD: lua_pushstring(L, "HEAD"); break; |
| 528 | case HTTP_METH_POST: lua_pushstring(L, "POST"); break; |
| 529 | case HTTP_METH_PUT: lua_pushstring(L, "PUT"); break; |
| 530 | case HTTP_METH_DELETE: lua_pushstring(L, "DELETE"); break; |
| 531 | case HTTP_METH_TRACE: lua_pushstring(L, "TRACE"); break; |
| 532 | case HTTP_METH_CONNECT: lua_pushstring(L, "CONNECT"); break; |
| 533 | case HTTP_METH_OTHER: |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 534 | 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] | 535 | break; |
| 536 | default: |
| 537 | lua_pushnil(L); |
| 538 | break; |
| 539 | } |
| 540 | break; |
| 541 | |
| 542 | case SMP_T_IPV4: |
| 543 | case SMP_T_IPV6: |
| 544 | 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] | 545 | if (sample_casts[smp->data.type][SMP_T_STR] && |
| 546 | sample_casts[smp->data.type][SMP_T_STR](smp)) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 547 | 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] | 548 | else |
| 549 | lua_pushnil(L); |
| 550 | break; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 551 | default: |
| 552 | lua_pushnil(L); |
| 553 | break; |
| 554 | } |
| 555 | return 1; |
| 556 | } |
| 557 | |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 558 | /* the following functions are used to convert a struct sample |
| 559 | * in Lua strings. This is useful to convert the return of the |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 560 | * fetches or converters. |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 561 | */ |
| 562 | static int hlua_smp2lua_str(lua_State *L, struct sample *smp) |
| 563 | { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 564 | switch (smp->data.type) { |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 565 | |
| 566 | case SMP_T_BIN: |
| 567 | case SMP_T_STR: |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 568 | 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] | 569 | break; |
| 570 | |
| 571 | case SMP_T_METH: |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 572 | switch (smp->data.u.meth.meth) { |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 573 | case HTTP_METH_OPTIONS: lua_pushstring(L, "OPTIONS"); break; |
| 574 | case HTTP_METH_GET: lua_pushstring(L, "GET"); break; |
| 575 | case HTTP_METH_HEAD: lua_pushstring(L, "HEAD"); break; |
| 576 | case HTTP_METH_POST: lua_pushstring(L, "POST"); break; |
| 577 | case HTTP_METH_PUT: lua_pushstring(L, "PUT"); break; |
| 578 | case HTTP_METH_DELETE: lua_pushstring(L, "DELETE"); break; |
| 579 | case HTTP_METH_TRACE: lua_pushstring(L, "TRACE"); break; |
| 580 | case HTTP_METH_CONNECT: lua_pushstring(L, "CONNECT"); break; |
| 581 | case HTTP_METH_OTHER: |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 582 | 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] | 583 | break; |
| 584 | default: |
| 585 | lua_pushstring(L, ""); |
| 586 | break; |
| 587 | } |
| 588 | break; |
| 589 | |
| 590 | case SMP_T_SINT: |
| 591 | case SMP_T_BOOL: |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 592 | case SMP_T_IPV4: |
| 593 | case SMP_T_IPV6: |
| 594 | 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] | 595 | if (sample_casts[smp->data.type][SMP_T_STR] && |
| 596 | sample_casts[smp->data.type][SMP_T_STR](smp)) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 597 | 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] | 598 | else |
| 599 | lua_pushstring(L, ""); |
| 600 | break; |
| 601 | default: |
| 602 | lua_pushstring(L, ""); |
| 603 | break; |
| 604 | } |
| 605 | return 1; |
| 606 | } |
| 607 | |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 608 | /* the following functions are used to convert an Lua type in a |
| 609 | * struct sample. This is useful to provide data from a converter |
| 610 | * to the LUA code. |
| 611 | */ |
| 612 | static int hlua_lua2smp(lua_State *L, int ud, struct sample *smp) |
| 613 | { |
| 614 | switch (lua_type(L, ud)) { |
| 615 | |
| 616 | case LUA_TNUMBER: |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 617 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 618 | smp->data.u.sint = lua_tointeger(L, ud); |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 619 | break; |
| 620 | |
| 621 | |
| 622 | case LUA_TBOOLEAN: |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 623 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 624 | smp->data.u.sint = lua_toboolean(L, ud); |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 625 | break; |
| 626 | |
| 627 | case LUA_TSTRING: |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 628 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 629 | smp->flags |= SMP_F_CONST; |
Tim Duesterhus | 2e89dec | 2019-09-29 23:03:08 +0200 | [diff] [blame] | 630 | smp->data.u.str.area = (char *)lua_tolstring(L, ud, &smp->data.u.str.data); |
Tim Duesterhus | 29d2e8a | 2019-09-29 23:03:07 +0200 | [diff] [blame] | 631 | /* We don't know the actual size of the underlying allocation, so be conservative. */ |
Christopher Faulet | fdea1b6 | 2020-08-06 08:29:18 +0200 | [diff] [blame] | 632 | smp->data.u.str.size = smp->data.u.str.data+1; /* count the terminating null byte */ |
Tim Duesterhus | 29d2e8a | 2019-09-29 23:03:07 +0200 | [diff] [blame] | 633 | smp->data.u.str.head = 0; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 634 | break; |
| 635 | |
| 636 | case LUA_TUSERDATA: |
| 637 | case LUA_TNIL: |
| 638 | case LUA_TTABLE: |
| 639 | case LUA_TFUNCTION: |
| 640 | case LUA_TTHREAD: |
| 641 | case LUA_TLIGHTUSERDATA: |
Thierry FOURNIER | 93405e1 | 2015-08-26 14:19:03 +0200 | [diff] [blame] | 642 | case LUA_TNONE: |
| 643 | default: |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 644 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 645 | smp->data.u.sint = 0; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 646 | break; |
| 647 | } |
| 648 | return 1; |
| 649 | } |
| 650 | |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 651 | /* This function check the "argp" built by another conversion function |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 652 | * 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] | 653 | * 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] | 654 | * |
Ilya Shipitsin | c02a23f | 2020-05-06 00:53:22 +0500 | [diff] [blame] | 655 | * This function assumes that the argp argument contains ARGM_NBARGS + 1 |
Thierry FOURNIER | 3caa039 | 2015-03-13 13:38:17 +0100 | [diff] [blame] | 656 | * entries. |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 657 | */ |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 658 | __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] | 659 | uint64_t mask, struct proxy *p) |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 660 | { |
| 661 | int min_arg; |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 662 | int i, idx; |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 663 | struct proxy *px; |
Christopher Faulet | d25d926 | 2020-08-06 11:04:46 +0200 | [diff] [blame] | 664 | struct userlist *ul; |
Christopher Faulet | fd2e906 | 2020-08-06 11:10:57 +0200 | [diff] [blame] | 665 | struct my_regex *reg; |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 666 | const char *msg = NULL; |
Christopher Faulet | fd2e906 | 2020-08-06 11:10:57 +0200 | [diff] [blame] | 667 | char *sname, *pname, *err = NULL; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 668 | |
| 669 | idx = 0; |
| 670 | min_arg = ARGM(mask); |
| 671 | mask >>= ARGM_BITS; |
| 672 | |
| 673 | while (1) { |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 674 | struct buffer tmp = BUF_NULL; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 675 | |
| 676 | /* Check oversize. */ |
| 677 | if (idx >= ARGM_NBARGS && argp[idx].type != ARGT_STOP) { |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 678 | msg = "Malformed argument mask"; |
| 679 | goto error; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 680 | } |
| 681 | |
| 682 | /* Check for mandatory arguments. */ |
| 683 | if (argp[idx].type == ARGT_STOP) { |
Thierry FOURNIER | 3caa039 | 2015-03-13 13:38:17 +0100 | [diff] [blame] | 684 | if (idx < min_arg) { |
| 685 | |
| 686 | /* If miss other argument than the first one, we return an error. */ |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 687 | if (idx > 0) { |
| 688 | msg = "Mandatory argument expected"; |
| 689 | goto error; |
| 690 | } |
Thierry FOURNIER | 3caa039 | 2015-03-13 13:38:17 +0100 | [diff] [blame] | 691 | |
| 692 | /* If first argument have a certain type, some default values |
| 693 | * may be used. See the function smp_resolve_args(). |
| 694 | */ |
| 695 | switch (mask & ARGT_MASK) { |
| 696 | |
| 697 | case ARGT_FE: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 698 | if (!(p->cap & PR_CAP_FE)) { |
| 699 | msg = "Mandatory argument expected"; |
| 700 | goto error; |
| 701 | } |
Thierry FOURNIER | 3caa039 | 2015-03-13 13:38:17 +0100 | [diff] [blame] | 702 | argp[idx].data.prx = p; |
| 703 | argp[idx].type = ARGT_FE; |
| 704 | argp[idx+1].type = ARGT_STOP; |
| 705 | break; |
| 706 | |
| 707 | case ARGT_BE: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 708 | if (!(p->cap & PR_CAP_BE)) { |
| 709 | msg = "Mandatory argument expected"; |
| 710 | goto error; |
| 711 | } |
Thierry FOURNIER | 3caa039 | 2015-03-13 13:38:17 +0100 | [diff] [blame] | 712 | argp[idx].data.prx = p; |
| 713 | argp[idx].type = ARGT_BE; |
| 714 | argp[idx+1].type = ARGT_STOP; |
| 715 | break; |
| 716 | |
| 717 | case ARGT_TAB: |
| 718 | argp[idx].data.prx = p; |
| 719 | argp[idx].type = ARGT_TAB; |
| 720 | argp[idx+1].type = ARGT_STOP; |
| 721 | break; |
| 722 | |
| 723 | default: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 724 | msg = "Mandatory argument expected"; |
| 725 | goto error; |
Thierry FOURNIER | 3caa039 | 2015-03-13 13:38:17 +0100 | [diff] [blame] | 726 | break; |
| 727 | } |
| 728 | } |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 729 | break; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 730 | } |
| 731 | |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 732 | /* Check for exceed the number of required argument. */ |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 733 | if ((mask & ARGT_MASK) == ARGT_STOP && |
| 734 | argp[idx].type != ARGT_STOP) { |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 735 | msg = "Last argument expected"; |
| 736 | goto error; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 737 | } |
| 738 | |
| 739 | if ((mask & ARGT_MASK) == ARGT_STOP && |
| 740 | argp[idx].type == ARGT_STOP) { |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 741 | break; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 742 | } |
| 743 | |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 744 | /* Convert some argument types. All string in argp[] are for not |
| 745 | * duplicated yet. |
| 746 | */ |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 747 | switch (mask & ARGT_MASK) { |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 748 | case ARGT_SINT: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 749 | if (argp[idx].type != ARGT_SINT) { |
| 750 | msg = "integer expected"; |
| 751 | goto error; |
| 752 | } |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 753 | argp[idx].type = ARGT_SINT; |
| 754 | break; |
| 755 | |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 756 | case ARGT_TIME: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 757 | if (argp[idx].type != ARGT_SINT) { |
| 758 | msg = "integer expected"; |
| 759 | goto error; |
| 760 | } |
Thierry FOURNIER | 29176f3 | 2015-07-07 00:41:29 +0200 | [diff] [blame] | 761 | argp[idx].type = ARGT_TIME; |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 762 | break; |
| 763 | |
| 764 | case ARGT_SIZE: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 765 | if (argp[idx].type != ARGT_SINT) { |
| 766 | msg = "integer expected"; |
| 767 | goto error; |
| 768 | } |
Thierry FOURNIER | 29176f3 | 2015-07-07 00:41:29 +0200 | [diff] [blame] | 769 | argp[idx].type = ARGT_SIZE; |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 770 | break; |
| 771 | |
| 772 | case ARGT_FE: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 773 | if (argp[idx].type != ARGT_STR) { |
| 774 | msg = "string expected"; |
| 775 | goto error; |
| 776 | } |
Christopher Faulet | fdea1b6 | 2020-08-06 08:29:18 +0200 | [diff] [blame] | 777 | argp[idx].data.prx = proxy_fe_by_name(argp[idx].data.str.area); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 778 | if (!argp[idx].data.prx) { |
| 779 | msg = "frontend doesn't exist"; |
| 780 | goto error; |
| 781 | } |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 782 | argp[idx].type = ARGT_FE; |
| 783 | break; |
| 784 | |
| 785 | case ARGT_BE: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 786 | if (argp[idx].type != ARGT_STR) { |
| 787 | msg = "string expected"; |
| 788 | goto error; |
| 789 | } |
Christopher Faulet | fdea1b6 | 2020-08-06 08:29:18 +0200 | [diff] [blame] | 790 | argp[idx].data.prx = proxy_be_by_name(argp[idx].data.str.area); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 791 | if (!argp[idx].data.prx) { |
| 792 | msg = "backend doesn't exist"; |
| 793 | goto error; |
| 794 | } |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 795 | argp[idx].type = ARGT_BE; |
| 796 | break; |
| 797 | |
| 798 | case ARGT_TAB: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 799 | if (argp[idx].type != ARGT_STR) { |
| 800 | msg = "string expected"; |
| 801 | goto error; |
| 802 | } |
Christopher Faulet | fdea1b6 | 2020-08-06 08:29:18 +0200 | [diff] [blame] | 803 | argp[idx].data.t = stktable_find_by_name(argp[idx].data.str.area); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 804 | if (!argp[idx].data.t) { |
| 805 | msg = "table doesn't exist"; |
| 806 | goto error; |
| 807 | } |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 808 | argp[idx].type = ARGT_TAB; |
| 809 | break; |
| 810 | |
| 811 | case ARGT_SRV: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 812 | if (argp[idx].type != ARGT_STR) { |
| 813 | msg = "string expected"; |
| 814 | goto error; |
| 815 | } |
Christopher Faulet | fdea1b6 | 2020-08-06 08:29:18 +0200 | [diff] [blame] | 816 | sname = strrchr(argp[idx].data.str.area, '/'); |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 817 | if (sname) { |
| 818 | *sname++ = '\0'; |
Christopher Faulet | fdea1b6 | 2020-08-06 08:29:18 +0200 | [diff] [blame] | 819 | pname = argp[idx].data.str.area; |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 820 | px = proxy_be_by_name(pname); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 821 | if (!px) { |
| 822 | msg = "backend doesn't exist"; |
| 823 | goto error; |
| 824 | } |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 825 | } |
| 826 | else { |
Christopher Faulet | fdea1b6 | 2020-08-06 08:29:18 +0200 | [diff] [blame] | 827 | sname = argp[idx].data.str.area; |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 828 | px = p; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 829 | } |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 830 | argp[idx].data.srv = findserver(px, sname); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 831 | if (!argp[idx].data.srv) { |
| 832 | msg = "server doesn't exist"; |
| 833 | goto error; |
| 834 | } |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 835 | argp[idx].type = ARGT_SRV; |
| 836 | break; |
| 837 | |
| 838 | case ARGT_IPV4: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 839 | if (argp[idx].type != ARGT_STR) { |
| 840 | msg = "string expected"; |
| 841 | goto error; |
| 842 | } |
| 843 | if (inet_pton(AF_INET, argp[idx].data.str.area, &argp[idx].data.ipv4)) { |
| 844 | msg = "invalid IPv4 address"; |
| 845 | goto error; |
| 846 | } |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 847 | argp[idx].type = ARGT_IPV4; |
| 848 | break; |
| 849 | |
| 850 | case ARGT_MSK4: |
Christopher Faulet | e663a6e | 2020-08-07 09:11:22 +0200 | [diff] [blame] | 851 | if (argp[idx].type == ARGT_SINT) |
| 852 | len2mask4(argp[idx].data.sint, &argp[idx].data.ipv4); |
| 853 | else if (argp[idx].type == ARGT_STR) { |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 854 | if (!str2mask(argp[idx].data.str.area, &argp[idx].data.ipv4)) { |
| 855 | msg = "invalid IPv4 mask"; |
| 856 | goto error; |
| 857 | } |
| 858 | } |
| 859 | else { |
| 860 | msg = "integer or string expected"; |
| 861 | goto error; |
Christopher Faulet | e663a6e | 2020-08-07 09:11:22 +0200 | [diff] [blame] | 862 | } |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 863 | argp[idx].type = ARGT_MSK4; |
| 864 | break; |
| 865 | |
| 866 | case ARGT_IPV6: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 867 | if (argp[idx].type != ARGT_STR) { |
| 868 | msg = "string expected"; |
| 869 | goto error; |
| 870 | } |
| 871 | if (inet_pton(AF_INET6, argp[idx].data.str.area, &argp[idx].data.ipv6)) { |
| 872 | msg = "invalid IPv6 address"; |
| 873 | goto error; |
| 874 | } |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 875 | argp[idx].type = ARGT_IPV6; |
| 876 | break; |
| 877 | |
| 878 | case ARGT_MSK6: |
Christopher Faulet | e663a6e | 2020-08-07 09:11:22 +0200 | [diff] [blame] | 879 | if (argp[idx].type == ARGT_SINT) |
| 880 | len2mask6(argp[idx].data.sint, &argp[idx].data.ipv6); |
| 881 | else if (argp[idx].type == ARGT_STR) { |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 882 | if (!str2mask6(argp[idx].data.str.area, &argp[idx].data.ipv6)) { |
| 883 | msg = "invalid IPv6 mask"; |
| 884 | goto error; |
| 885 | } |
| 886 | } |
| 887 | else { |
| 888 | msg = "integer or string expected"; |
| 889 | goto error; |
Christopher Faulet | e663a6e | 2020-08-07 09:11:22 +0200 | [diff] [blame] | 890 | } |
Tim Duesterhus | b814da6 | 2018-01-25 16:24:50 +0100 | [diff] [blame] | 891 | argp[idx].type = ARGT_MSK6; |
| 892 | break; |
| 893 | |
Christopher Faulet | fd2e906 | 2020-08-06 11:10:57 +0200 | [diff] [blame] | 894 | case ARGT_REG: |
| 895 | if (argp[idx].type != ARGT_STR) { |
| 896 | msg = "string expected"; |
| 897 | goto error; |
| 898 | } |
| 899 | reg = regex_comp(argp[idx].data.str.area, !(argp[idx].type_flags & ARGF_REG_ICASE), 1, &err); |
| 900 | if (!reg) { |
| 901 | msg = lua_pushfstring(L, "error compiling regex '%s' : '%s'", |
| 902 | argp[idx].data.str.area, err); |
| 903 | free(err); |
| 904 | goto error; |
| 905 | } |
| 906 | argp[idx].type = ARGT_REG; |
| 907 | argp[idx].data.reg = reg; |
| 908 | break; |
| 909 | |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 910 | case ARGT_USR: |
Christopher Faulet | d25d926 | 2020-08-06 11:04:46 +0200 | [diff] [blame] | 911 | if (argp[idx].type != ARGT_STR) { |
| 912 | msg = "string expected"; |
| 913 | goto error; |
| 914 | } |
| 915 | if (p->uri_auth && p->uri_auth->userlist && |
| 916 | !strcmp(p->uri_auth->userlist->name, argp[idx].data.str.area)) |
| 917 | ul = p->uri_auth->userlist; |
| 918 | else |
| 919 | ul = auth_find_userlist(argp[idx].data.str.area); |
| 920 | |
| 921 | if (!ul) { |
| 922 | msg = lua_pushfstring(L, "unable to find userlist '%s'", argp[idx].data.str.area); |
| 923 | goto error; |
| 924 | } |
| 925 | argp[idx].type = ARGT_USR; |
| 926 | argp[idx].data.usr = ul; |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 927 | break; |
| 928 | |
| 929 | case ARGT_STR: |
| 930 | if (!chunk_dup(&tmp, &argp[idx].data.str)) { |
| 931 | msg = "unable to duplicate string arg"; |
| 932 | goto error; |
| 933 | } |
| 934 | argp[idx].data.str = tmp; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 935 | break; |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 936 | |
Christopher Faulet | d25d926 | 2020-08-06 11:04:46 +0200 | [diff] [blame] | 937 | case ARGT_MAP: |
Christopher Faulet | d25d926 | 2020-08-06 11:04:46 +0200 | [diff] [blame] | 938 | msg = "type not yet supported"; |
| 939 | goto error; |
| 940 | break; |
| 941 | |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 942 | } |
| 943 | |
| 944 | /* Check for type of argument. */ |
| 945 | if ((mask & ARGT_MASK) != argp[idx].type) { |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 946 | msg = lua_pushfstring(L, "'%s' expected, got '%s'", |
| 947 | arg_type_names[(mask & ARGT_MASK)], |
| 948 | arg_type_names[argp[idx].type & ARGT_MASK]); |
| 949 | goto error; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 950 | } |
| 951 | |
| 952 | /* Next argument. */ |
| 953 | mask >>= ARGT_BITS; |
| 954 | idx++; |
| 955 | } |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 956 | return 0; |
| 957 | |
| 958 | error: |
| 959 | for (i = 0; i < idx; i++) { |
| 960 | if (argp[i].type == ARGT_STR) |
| 961 | chunk_destroy(&argp[i].data.str); |
Christopher Faulet | fd2e906 | 2020-08-06 11:10:57 +0200 | [diff] [blame] | 962 | else if (argp[i].type == ARGT_REG) |
| 963 | regex_free(argp[i].data.reg); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 964 | } |
| 965 | WILL_LJMP(luaL_argerror(L, first + idx, msg)); |
| 966 | return 0; /* Never reached */ |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 967 | } |
| 968 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 969 | /* |
Ilya Shipitsin | c02a23f | 2020-05-06 00:53:22 +0500 | [diff] [blame] | 970 | * The following functions are used to make correspondence between the the |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 971 | * executed lua pointer and the "struct hlua *" that contain the context. |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 972 | * |
| 973 | * - hlua_gethlua : return the hlua context associated with an lua_State. |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 974 | * - hlua_sethlua : create the association between hlua context and lua_state. |
| 975 | */ |
| 976 | static inline struct hlua *hlua_gethlua(lua_State *L) |
| 977 | { |
Thierry FOURNIER | 38c5fd6 | 2015-03-10 02:40:29 +0100 | [diff] [blame] | 978 | struct hlua **hlua = lua_getextraspace(L); |
| 979 | return *hlua; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 980 | } |
| 981 | static inline void hlua_sethlua(struct hlua *hlua) |
| 982 | { |
Thierry FOURNIER | 38c5fd6 | 2015-03-10 02:40:29 +0100 | [diff] [blame] | 983 | struct hlua **hlua_store = lua_getextraspace(hlua->T); |
| 984 | *hlua_store = hlua; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 985 | } |
| 986 | |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 987 | /* This function is used to send logs. It try to send on screen (stderr) |
| 988 | * and on the default syslog server. |
| 989 | */ |
| 990 | static inline void hlua_sendlog(struct proxy *px, int level, const char *msg) |
| 991 | { |
| 992 | struct tm tm; |
| 993 | char *p; |
| 994 | |
| 995 | /* Cleanup the log message. */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 996 | p = trash.area; |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 997 | for (; *msg != '\0'; msg++, p++) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 998 | if (p >= trash.area + trash.size - 1) { |
Thierry FOURNIER | ccf0063 | 2015-09-16 12:47:03 +0200 | [diff] [blame] | 999 | /* Break the message if exceed the buffer size. */ |
| 1000 | *(p-4) = ' '; |
| 1001 | *(p-3) = '.'; |
| 1002 | *(p-2) = '.'; |
| 1003 | *(p-1) = '.'; |
| 1004 | break; |
| 1005 | } |
Willy Tarreau | 9080711 | 2020-02-25 08:16:33 +0100 | [diff] [blame] | 1006 | if (isprint((unsigned char)*msg)) |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 1007 | *p = *msg; |
| 1008 | else |
| 1009 | *p = '.'; |
| 1010 | } |
| 1011 | *p = '\0'; |
| 1012 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1013 | send_log(px, level, "%s\n", trash.area); |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 1014 | if (!(global.mode & MODE_QUIET) || (global.mode & (MODE_VERBOSE | MODE_STARTING))) { |
Christopher Faulet | f98d821 | 2020-10-02 18:13:52 +0200 | [diff] [blame] | 1015 | if (level == LOG_DEBUG && !(global.mode & MODE_DEBUG)) |
| 1016 | return; |
| 1017 | |
Willy Tarreau | a678b43 | 2015-08-28 10:14:59 +0200 | [diff] [blame] | 1018 | get_localtime(date.tv_sec, &tm); |
| 1019 | fprintf(stderr, "[%s] %03d/%02d%02d%02d (%d) : %s\n", |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 1020 | 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] | 1021 | (int)getpid(), trash.area); |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 1022 | fflush(stderr); |
| 1023 | } |
| 1024 | } |
| 1025 | |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1026 | /* This function just ensure that the yield will be always |
| 1027 | * returned with a timeout and permit to set some flags |
| 1028 | */ |
| 1029 | __LJMP void hlua_yieldk(lua_State *L, int nresults, int ctx, |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 1030 | lua_KFunction k, int timeout, unsigned int flags) |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1031 | { |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 1032 | struct hlua *hlua; |
| 1033 | |
| 1034 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 1035 | hlua = hlua_gethlua(L); |
| 1036 | if (!hlua) { |
| 1037 | return; |
| 1038 | } |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1039 | |
| 1040 | /* Set the wake timeout. If timeout is required, we set |
| 1041 | * the expiration time. |
| 1042 | */ |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 1043 | hlua->wake_time = timeout; |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1044 | |
Thierry FOURNIER | 4abd3ae | 2015-03-03 17:29:06 +0100 | [diff] [blame] | 1045 | hlua->flags |= flags; |
| 1046 | |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1047 | /* Process the yield. */ |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 1048 | MAY_LJMP(lua_yieldk(L, nresults, ctx, k)); |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1049 | } |
| 1050 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1051 | /* This function initialises the Lua environment stored in the stream. |
| 1052 | * 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] | 1053 | * 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] | 1054 | * |
| 1055 | * This function is particular. it initialises a new Lua thread. If the |
| 1056 | * initialisation fails (example: out of memory error), the lua function |
| 1057 | * throws an error (longjmp). |
| 1058 | * |
Thierry FOURNIER | bf90ce1 | 2019-01-06 19:04:24 +0100 | [diff] [blame] | 1059 | * In some case (at least one), this function can be called from safe |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 1060 | * environment, so we must not initialise it. While the support of |
Thierry FOURNIER | bf90ce1 | 2019-01-06 19:04:24 +0100 | [diff] [blame] | 1061 | * threads appear, the safe environment set a lock to ensure only one |
| 1062 | * Lua execution at a time. If we initialize safe environment in another |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 1063 | * safe environment, we have a dead lock. |
Thierry FOURNIER | bf90ce1 | 2019-01-06 19:04:24 +0100 | [diff] [blame] | 1064 | * |
| 1065 | * set "already_safe" true if the context is initialized form safe |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 1066 | * Lua function. |
Thierry FOURNIER | bf90ce1 | 2019-01-06 19:04:24 +0100 | [diff] [blame] | 1067 | * |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 1068 | * This function manipulates two Lua stacks: the main and the thread. Only |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 1069 | * the main stack can fail. The thread is not manipulated. This function |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 1070 | * MUST NOT manipulate the created thread stack state, because it is not |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 1071 | * protected against errors thrown by the thread stack. |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1072 | */ |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1073 | int hlua_ctx_init(struct hlua *lua, int state_id, struct task *task, int already_safe) |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1074 | { |
| 1075 | lua->Mref = LUA_REFNIL; |
Thierry FOURNIER | a097fdf | 2015-03-03 15:17:35 +0100 | [diff] [blame] | 1076 | lua->flags = 0; |
Willy Tarreau | f31af93 | 2020-01-14 09:59:38 +0100 | [diff] [blame] | 1077 | lua->gc_count = 0; |
Christopher Faulet | bc275a9 | 2020-02-26 14:55:16 +0100 | [diff] [blame] | 1078 | lua->wake_time = TICK_ETERNITY; |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1079 | lua->state_id = state_id; |
Thierry FOURNIER | 9ff7e6e | 2015-01-23 11:08:20 +0100 | [diff] [blame] | 1080 | LIST_INIT(&lua->com); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 1081 | if (!already_safe) { |
| 1082 | if (!SET_SAFE_LJMP_PARENT(lua)) { |
| 1083 | lua->Tref = LUA_REFNIL; |
| 1084 | return 0; |
| 1085 | } |
| 1086 | } |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1087 | lua->T = lua_newthread(hlua_states[state_id]); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1088 | if (!lua->T) { |
| 1089 | lua->Tref = LUA_REFNIL; |
Thierry FOURNIER | bf90ce1 | 2019-01-06 19:04:24 +0100 | [diff] [blame] | 1090 | if (!already_safe) |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 1091 | RESET_SAFE_LJMP_PARENT(lua); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1092 | return 0; |
| 1093 | } |
| 1094 | hlua_sethlua(lua); |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1095 | lua->Tref = luaL_ref(hlua_states[state_id], LUA_REGISTRYINDEX); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1096 | lua->task = task; |
Thierry FOURNIER | bf90ce1 | 2019-01-06 19:04:24 +0100 | [diff] [blame] | 1097 | if (!already_safe) |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 1098 | RESET_SAFE_LJMP_PARENT(lua); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1099 | return 1; |
| 1100 | } |
| 1101 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1102 | /* Used to destroy the Lua coroutine when the attached stream or task |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1103 | * is destroyed. The destroy also the memory context. The struct "lua" |
| 1104 | * is not freed. |
| 1105 | */ |
| 1106 | void hlua_ctx_destroy(struct hlua *lua) |
| 1107 | { |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 1108 | if (!lua) |
Thierry FOURNIER | a718b29 | 2015-03-04 16:48:34 +0100 | [diff] [blame] | 1109 | return; |
| 1110 | |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 1111 | if (!lua->T) |
| 1112 | goto end; |
| 1113 | |
Thierry FOURNIER | 9ff7e6e | 2015-01-23 11:08:20 +0100 | [diff] [blame] | 1114 | /* Purge all the pending signals. */ |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1115 | notification_purge(&lua->com); |
Thierry FOURNIER | 9ff7e6e | 2015-01-23 11:08:20 +0100 | [diff] [blame] | 1116 | |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 1117 | if (!SET_SAFE_LJMP(lua)) |
Thierry FOURNIER | 75d0208 | 2017-07-12 13:41:33 +0200 | [diff] [blame] | 1118 | return; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1119 | luaL_unref(lua->T, LUA_REGISTRYINDEX, lua->Mref); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 1120 | RESET_SAFE_LJMP(lua); |
Thierry FOURNIER | 5a50a85 | 2015-09-23 16:59:28 +0200 | [diff] [blame] | 1121 | |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 1122 | if (!SET_SAFE_LJMP_PARENT(lua)) |
Thierry FOURNIER | 75d0208 | 2017-07-12 13:41:33 +0200 | [diff] [blame] | 1123 | return; |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1124 | luaL_unref(hlua_states[lua->state_id], LUA_REGISTRYINDEX, lua->Tref); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 1125 | RESET_SAFE_LJMP_PARENT(lua); |
Thierry FOURNIER | 5a50a85 | 2015-09-23 16:59:28 +0200 | [diff] [blame] | 1126 | /* Forces a garbage collecting process. If the Lua program is finished |
| 1127 | * without error, we run the GC on the thread pointer. Its freed all |
| 1128 | * the unused memory. |
| 1129 | * If the thread is finnish with an error or is currently yielded, |
| 1130 | * it seems that the GC applied on the thread doesn't clean anything, |
| 1131 | * so e run the GC on the main thread. |
| 1132 | * NOTE: maybe this action locks all the Lua threads untiml the en of |
| 1133 | * the garbage collection. |
| 1134 | */ |
Willy Tarreau | f31af93 | 2020-01-14 09:59:38 +0100 | [diff] [blame] | 1135 | if (lua->gc_count) { |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 1136 | if (!SET_SAFE_LJMP_PARENT(lua)) |
Thierry FOURNIER | 75d0208 | 2017-07-12 13:41:33 +0200 | [diff] [blame] | 1137 | return; |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1138 | lua_gc(hlua_states[lua->state_id], LUA_GCCOLLECT, 0); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 1139 | RESET_SAFE_LJMP_PARENT(lua); |
Thierry FOURNIER | 7c39ab4 | 2015-09-27 22:53:33 +0200 | [diff] [blame] | 1140 | } |
Thierry FOURNIER | 5a50a85 | 2015-09-23 16:59:28 +0200 | [diff] [blame] | 1141 | |
Thierry FOURNIER | a7b536b | 2015-09-21 22:50:24 +0200 | [diff] [blame] | 1142 | lua->T = NULL; |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 1143 | |
| 1144 | end: |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 1145 | pool_free(pool_head_hlua, lua); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1146 | } |
| 1147 | |
| 1148 | /* This function is used to restore the Lua context when a coroutine |
| 1149 | * fails. This function copy the common memory between old coroutine |
| 1150 | * and the new coroutine. The old coroutine is destroyed, and its |
| 1151 | * replaced by the new coroutine. |
| 1152 | * If the flag "keep_msg" is set, the last entry of the old is assumed |
| 1153 | * as string error message and it is copied in the new stack. |
| 1154 | */ |
| 1155 | static int hlua_ctx_renew(struct hlua *lua, int keep_msg) |
| 1156 | { |
| 1157 | lua_State *T; |
| 1158 | int new_ref; |
| 1159 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1160 | /* New Lua coroutine. */ |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1161 | T = lua_newthread(hlua_states[lua->state_id]); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1162 | if (!T) |
| 1163 | return 0; |
| 1164 | |
| 1165 | /* Copy last error message. */ |
| 1166 | if (keep_msg) |
| 1167 | lua_xmove(lua->T, T, 1); |
| 1168 | |
| 1169 | /* Copy data between the coroutines. */ |
| 1170 | lua_rawgeti(lua->T, LUA_REGISTRYINDEX, lua->Mref); |
| 1171 | lua_xmove(lua->T, T, 1); |
Ilya Shipitsin | 46a030c | 2020-07-05 16:36:08 +0500 | [diff] [blame] | 1172 | new_ref = luaL_ref(T, LUA_REGISTRYINDEX); /* Value popped. */ |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1173 | |
| 1174 | /* Destroy old data. */ |
| 1175 | luaL_unref(lua->T, LUA_REGISTRYINDEX, lua->Mref); |
| 1176 | |
| 1177 | /* The thread is garbage collected by Lua. */ |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1178 | luaL_unref(hlua_states[lua->state_id], LUA_REGISTRYINDEX, lua->Tref); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1179 | |
| 1180 | /* Fill the struct with the new coroutine values. */ |
| 1181 | lua->Mref = new_ref; |
| 1182 | lua->T = T; |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1183 | lua->Tref = luaL_ref(hlua_states[lua->state_id], LUA_REGISTRYINDEX); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1184 | |
| 1185 | /* Set context. */ |
| 1186 | hlua_sethlua(lua); |
| 1187 | |
| 1188 | return 1; |
| 1189 | } |
| 1190 | |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 1191 | void hlua_hook(lua_State *L, lua_Debug *ar) |
| 1192 | { |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 1193 | struct hlua *hlua; |
| 1194 | |
| 1195 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 1196 | hlua = hlua_gethlua(L); |
| 1197 | if (!hlua) |
| 1198 | return; |
Thierry FOURNIER | cae49c9 | 2015-03-06 14:05:24 +0100 | [diff] [blame] | 1199 | |
| 1200 | /* Lua cannot yield when its returning from a function, |
| 1201 | * so, we can fix the interrupt hook to 1 instruction, |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 1202 | * expecting that the function is finished. |
Thierry FOURNIER | cae49c9 | 2015-03-06 14:05:24 +0100 | [diff] [blame] | 1203 | */ |
| 1204 | if (lua_gethookmask(L) & LUA_MASKRET) { |
| 1205 | lua_sethook(hlua->T, hlua_hook, LUA_MASKCOUNT, 1); |
| 1206 | return; |
| 1207 | } |
| 1208 | |
| 1209 | /* restore the interrupt condition. */ |
| 1210 | lua_sethook(hlua->T, hlua_hook, LUA_MASKCOUNT, hlua_nb_instruction); |
| 1211 | |
| 1212 | /* If we interrupt the Lua processing in yieldable state, we yield. |
| 1213 | * If the state is not yieldable, trying yield causes an error. |
| 1214 | */ |
| 1215 | if (lua_isyieldable(L)) |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 1216 | MAY_LJMP(hlua_yieldk(L, 0, 0, NULL, TICK_ETERNITY, HLUA_CTRLYIELD)); |
Thierry FOURNIER | cae49c9 | 2015-03-06 14:05:24 +0100 | [diff] [blame] | 1217 | |
Thierry FOURNIER | a85cfb1 | 2015-03-13 14:50:06 +0100 | [diff] [blame] | 1218 | /* If we cannot yield, update the clock and check the timeout. */ |
| 1219 | tv_update_date(0, 1); |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 1220 | hlua->run_time += now_ms - hlua->start_time; |
| 1221 | if (hlua->max_time && hlua->run_time >= hlua->max_time) { |
Thierry FOURNIER | cae49c9 | 2015-03-06 14:05:24 +0100 | [diff] [blame] | 1222 | lua_pushfstring(L, "execution timeout"); |
| 1223 | WILL_LJMP(lua_error(L)); |
| 1224 | } |
| 1225 | |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 1226 | /* Update the start time. */ |
| 1227 | hlua->start_time = now_ms; |
| 1228 | |
Thierry FOURNIER | cae49c9 | 2015-03-06 14:05:24 +0100 | [diff] [blame] | 1229 | /* Try to interrupt the process at the end of the current |
| 1230 | * unyieldable function. |
| 1231 | */ |
| 1232 | 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] | 1233 | } |
| 1234 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1235 | /* This function start or resumes the Lua stack execution. If the flag |
| 1236 | * "yield_allowed" if no set and the LUA stack execution returns a yield |
| 1237 | * The function return an error. |
| 1238 | * |
| 1239 | * The function can returns 4 values: |
| 1240 | * - HLUA_E_OK : The execution is terminated without any errors. |
| 1241 | * - HLUA_E_AGAIN : The execution must continue at the next associated |
| 1242 | * task wakeup. |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 1243 | * - 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] | 1244 | * the top of the stack. |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 1245 | * - HLUA_E_ERR : An error has occurred without error message. |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1246 | * |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 1247 | * 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] | 1248 | * LUA code. |
| 1249 | */ |
| 1250 | static enum hlua_exec hlua_ctx_resume(struct hlua *lua, int yield_allowed) |
| 1251 | { |
Christopher Faulet | 08ed98f | 2020-07-28 10:33:25 +0200 | [diff] [blame] | 1252 | #if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504 |
| 1253 | int nres; |
| 1254 | #endif |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1255 | int ret; |
| 1256 | const char *msg; |
Thierry FOURNIER | fc044c9 | 2018-06-07 14:40:48 +0200 | [diff] [blame] | 1257 | const char *trace; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1258 | |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 1259 | /* Initialise run time counter. */ |
| 1260 | if (!HLUA_IS_RUNNING(lua)) |
| 1261 | lua->run_time = 0; |
Thierry FOURNIER | dc9ca96 | 2015-03-05 11:16:52 +0100 | [diff] [blame] | 1262 | |
Thierry FOURNIER | 61ba0e2 | 2017-07-12 11:41:21 +0200 | [diff] [blame] | 1263 | /* Lock the whole Lua execution. This lock must be before the |
| 1264 | * label "resume_execution". |
| 1265 | */ |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1266 | if (lua->state_id == 0) |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 1267 | HA_SPIN_LOCK(LUA_LOCK, &hlua_global_lock); |
Thierry FOURNIER | 61ba0e2 | 2017-07-12 11:41:21 +0200 | [diff] [blame] | 1268 | |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 1269 | resume_execution: |
| 1270 | |
| 1271 | /* This hook interrupts the Lua processing each 'hlua_nb_instruction' |
| 1272 | * instructions. it is used for preventing infinite loops. |
| 1273 | */ |
| 1274 | lua_sethook(lua->T, hlua_hook, LUA_MASKCOUNT, hlua_nb_instruction); |
| 1275 | |
Thierry FOURNIER | 1bfc09b | 2015-03-05 17:10:14 +0100 | [diff] [blame] | 1276 | /* Remove all flags except the running flags. */ |
Thierry FOURNIER | 2f3867f | 2015-09-28 01:02:01 +0200 | [diff] [blame] | 1277 | HLUA_SET_RUN(lua); |
| 1278 | HLUA_CLR_CTRLYIELD(lua); |
| 1279 | HLUA_CLR_WAKERESWR(lua); |
| 1280 | HLUA_CLR_WAKEREQWR(lua); |
Thierry FOURNIER | 1bfc09b | 2015-03-05 17:10:14 +0100 | [diff] [blame] | 1281 | |
Christopher Faulet | bc275a9 | 2020-02-26 14:55:16 +0100 | [diff] [blame] | 1282 | /* Update the start time and reset wake_time. */ |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 1283 | lua->start_time = now_ms; |
Christopher Faulet | bc275a9 | 2020-02-26 14:55:16 +0100 | [diff] [blame] | 1284 | lua->wake_time = TICK_ETERNITY; |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 1285 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1286 | /* Call the function. */ |
Christopher Faulet | 08ed98f | 2020-07-28 10:33:25 +0200 | [diff] [blame] | 1287 | #if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504 |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1288 | ret = lua_resume(lua->T, hlua_states[lua->state_id], lua->nargs, &nres); |
Christopher Faulet | 08ed98f | 2020-07-28 10:33:25 +0200 | [diff] [blame] | 1289 | #else |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1290 | ret = lua_resume(lua->T, hlua_states[lua->state_id], lua->nargs); |
Christopher Faulet | 08ed98f | 2020-07-28 10:33:25 +0200 | [diff] [blame] | 1291 | #endif |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1292 | switch (ret) { |
| 1293 | |
| 1294 | case LUA_OK: |
| 1295 | ret = HLUA_E_OK; |
| 1296 | break; |
| 1297 | |
| 1298 | case LUA_YIELD: |
Thierry FOURNIER | dc9ca96 | 2015-03-05 11:16:52 +0100 | [diff] [blame] | 1299 | /* Check if the execution timeout is expired. It it is the case, we |
| 1300 | * break the Lua execution. |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 1301 | */ |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 1302 | tv_update_date(0, 1); |
| 1303 | lua->run_time += now_ms - lua->start_time; |
| 1304 | if (lua->max_time && lua->run_time > lua->max_time) { |
Thierry FOURNIER | dc9ca96 | 2015-03-05 11:16:52 +0100 | [diff] [blame] | 1305 | lua_settop(lua->T, 0); /* Empty the stack. */ |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 1306 | ret = HLUA_E_ETMOUT; |
Thierry FOURNIER | dc9ca96 | 2015-03-05 11:16:52 +0100 | [diff] [blame] | 1307 | break; |
| 1308 | } |
| 1309 | /* Process the forced yield. if the general yield is not allowed or |
| 1310 | * if no task were associated this the current Lua execution |
| 1311 | * coroutine, we resume the execution. Else we want to return in the |
| 1312 | * scheduler and we want to be waked up again, to continue the |
| 1313 | * current Lua execution. So we schedule our own task. |
| 1314 | */ |
| 1315 | if (HLUA_IS_CTRLYIELDING(lua)) { |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 1316 | if (!yield_allowed || !lua->task) |
| 1317 | goto resume_execution; |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 1318 | task_wakeup(lua->task, TASK_WOKEN_MSG); |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 1319 | } |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1320 | if (!yield_allowed) { |
| 1321 | lua_settop(lua->T, 0); /* Empty the stack. */ |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 1322 | ret = HLUA_E_YIELD; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1323 | break; |
| 1324 | } |
| 1325 | ret = HLUA_E_AGAIN; |
| 1326 | break; |
| 1327 | |
| 1328 | case LUA_ERRRUN: |
Thierry FOURNIER | 0a99b89 | 2015-08-26 00:14:17 +0200 | [diff] [blame] | 1329 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 1330 | /* Special exit case. The traditional exit is returned as an error |
Thierry FOURNIER | 0a99b89 | 2015-08-26 00:14:17 +0200 | [diff] [blame] | 1331 | * because the errors ares the only one mean to return immediately |
| 1332 | * from and lua execution. |
| 1333 | */ |
| 1334 | if (lua->flags & HLUA_EXIT) { |
| 1335 | ret = HLUA_E_OK; |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 1336 | hlua_ctx_renew(lua, 1); |
Thierry FOURNIER | 0a99b89 | 2015-08-26 00:14:17 +0200 | [diff] [blame] | 1337 | break; |
| 1338 | } |
| 1339 | |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1340 | lua->wake_time = TICK_ETERNITY; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1341 | if (!lua_checkstack(lua->T, 1)) { |
| 1342 | ret = HLUA_E_ERR; |
| 1343 | break; |
| 1344 | } |
| 1345 | msg = lua_tostring(lua->T, -1); |
| 1346 | lua_settop(lua->T, 0); /* Empty the stack. */ |
| 1347 | lua_pop(lua->T, 1); |
Thierry FOURNIER | fc044c9 | 2018-06-07 14:40:48 +0200 | [diff] [blame] | 1348 | trace = hlua_traceback(lua->T); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1349 | if (msg) |
Thierry Fournier | 46278ff | 2020-11-29 11:48:12 +0100 | [diff] [blame] | 1350 | lua_pushfstring(lua->T, "[state-id %d] runtime error: %s from %s", lua->state_id, msg, trace); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1351 | else |
Thierry Fournier | 46278ff | 2020-11-29 11:48:12 +0100 | [diff] [blame] | 1352 | lua_pushfstring(lua->T, "[state-id %d] unknown runtime error from %s", lua->state_id, trace); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1353 | ret = HLUA_E_ERRMSG; |
| 1354 | break; |
| 1355 | |
| 1356 | case LUA_ERRMEM: |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1357 | lua->wake_time = TICK_ETERNITY; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1358 | lua_settop(lua->T, 0); /* Empty the stack. */ |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 1359 | ret = HLUA_E_NOMEM; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1360 | break; |
| 1361 | |
| 1362 | case LUA_ERRERR: |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1363 | lua->wake_time = TICK_ETERNITY; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1364 | if (!lua_checkstack(lua->T, 1)) { |
| 1365 | ret = HLUA_E_ERR; |
| 1366 | break; |
| 1367 | } |
| 1368 | msg = lua_tostring(lua->T, -1); |
| 1369 | lua_settop(lua->T, 0); /* Empty the stack. */ |
| 1370 | lua_pop(lua->T, 1); |
| 1371 | if (msg) |
Thierry Fournier | 46278ff | 2020-11-29 11:48:12 +0100 | [diff] [blame] | 1372 | lua_pushfstring(lua->T, "[state-id %d] message handler error: %s", lua->state_id, msg); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1373 | else |
Thierry Fournier | 46278ff | 2020-11-29 11:48:12 +0100 | [diff] [blame] | 1374 | lua_pushfstring(lua->T, "[state-id %d] message handler error", lua->state_id); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1375 | ret = HLUA_E_ERRMSG; |
| 1376 | break; |
| 1377 | |
| 1378 | default: |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1379 | lua->wake_time = TICK_ETERNITY; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1380 | lua_settop(lua->T, 0); /* Empty the stack. */ |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 1381 | ret = HLUA_E_ERR; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1382 | break; |
| 1383 | } |
| 1384 | |
| 1385 | switch (ret) { |
| 1386 | case HLUA_E_AGAIN: |
| 1387 | break; |
| 1388 | |
| 1389 | case HLUA_E_ERRMSG: |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1390 | notification_purge(&lua->com); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1391 | hlua_ctx_renew(lua, 1); |
Thierry FOURNIER | a097fdf | 2015-03-03 15:17:35 +0100 | [diff] [blame] | 1392 | HLUA_CLR_RUN(lua); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1393 | break; |
| 1394 | |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 1395 | case HLUA_E_ETMOUT: |
| 1396 | case HLUA_E_NOMEM: |
| 1397 | case HLUA_E_YIELD: |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1398 | case HLUA_E_ERR: |
Thierry FOURNIER | a097fdf | 2015-03-03 15:17:35 +0100 | [diff] [blame] | 1399 | HLUA_CLR_RUN(lua); |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1400 | notification_purge(&lua->com); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1401 | hlua_ctx_renew(lua, 0); |
| 1402 | break; |
| 1403 | |
| 1404 | case HLUA_E_OK: |
Thierry FOURNIER | a097fdf | 2015-03-03 15:17:35 +0100 | [diff] [blame] | 1405 | HLUA_CLR_RUN(lua); |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1406 | notification_purge(&lua->com); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1407 | break; |
| 1408 | } |
| 1409 | |
Thierry FOURNIER | 61ba0e2 | 2017-07-12 11:41:21 +0200 | [diff] [blame] | 1410 | /* This is the main exit point, remove the Lua lock. */ |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1411 | if (lua->state_id == 0) |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 1412 | HA_SPIN_UNLOCK(LUA_LOCK, &hlua_global_lock); |
Thierry FOURNIER | 61ba0e2 | 2017-07-12 11:41:21 +0200 | [diff] [blame] | 1413 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1414 | return ret; |
| 1415 | } |
| 1416 | |
Thierry FOURNIER | 0a99b89 | 2015-08-26 00:14:17 +0200 | [diff] [blame] | 1417 | /* This function exit the current code. */ |
| 1418 | __LJMP static int hlua_done(lua_State *L) |
| 1419 | { |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 1420 | struct hlua *hlua; |
| 1421 | |
| 1422 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 1423 | hlua = hlua_gethlua(L); |
| 1424 | if (!hlua) |
| 1425 | return 0; |
Thierry FOURNIER | 0a99b89 | 2015-08-26 00:14:17 +0200 | [diff] [blame] | 1426 | |
| 1427 | hlua->flags |= HLUA_EXIT; |
| 1428 | WILL_LJMP(lua_error(L)); |
| 1429 | |
| 1430 | return 0; |
| 1431 | } |
| 1432 | |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1433 | /* This function is an LUA binding. It provides a function |
| 1434 | * for deleting ACL from a referenced ACL file. |
| 1435 | */ |
| 1436 | __LJMP static int hlua_del_acl(lua_State *L) |
| 1437 | { |
| 1438 | const char *name; |
| 1439 | const char *key; |
| 1440 | struct pat_ref *ref; |
| 1441 | |
| 1442 | MAY_LJMP(check_args(L, 2, "del_acl")); |
| 1443 | |
| 1444 | name = MAY_LJMP(luaL_checkstring(L, 1)); |
| 1445 | key = MAY_LJMP(luaL_checkstring(L, 2)); |
| 1446 | |
| 1447 | ref = pat_ref_lookup(name); |
| 1448 | if (!ref) |
Vincent Bernat | a72db18 | 2015-10-06 16:05:59 +0200 | [diff] [blame] | 1449 | WILL_LJMP(luaL_error(L, "'del_acl': unknown acl file '%s'", name)); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1450 | |
Christopher Faulet | 5cf2dfc | 2020-06-03 18:39:16 +0200 | [diff] [blame] | 1451 | HA_SPIN_LOCK(PATREF_LOCK, &ref->lock); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1452 | pat_ref_delete(ref, key); |
Christopher Faulet | 5cf2dfc | 2020-06-03 18:39:16 +0200 | [diff] [blame] | 1453 | HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1454 | return 0; |
| 1455 | } |
| 1456 | |
| 1457 | /* This function is an LUA binding. It provides a function |
| 1458 | * for deleting map entry from a referenced map file. |
| 1459 | */ |
| 1460 | static int hlua_del_map(lua_State *L) |
| 1461 | { |
| 1462 | const char *name; |
| 1463 | const char *key; |
| 1464 | struct pat_ref *ref; |
| 1465 | |
| 1466 | MAY_LJMP(check_args(L, 2, "del_map")); |
| 1467 | |
| 1468 | name = MAY_LJMP(luaL_checkstring(L, 1)); |
| 1469 | key = MAY_LJMP(luaL_checkstring(L, 2)); |
| 1470 | |
| 1471 | ref = pat_ref_lookup(name); |
| 1472 | if (!ref) |
Vincent Bernat | a72db18 | 2015-10-06 16:05:59 +0200 | [diff] [blame] | 1473 | WILL_LJMP(luaL_error(L, "'del_map': unknown acl file '%s'", name)); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1474 | |
Christopher Faulet | 5cf2dfc | 2020-06-03 18:39:16 +0200 | [diff] [blame] | 1475 | HA_SPIN_LOCK(PATREF_LOCK, &ref->lock); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1476 | pat_ref_delete(ref, key); |
Christopher Faulet | 5cf2dfc | 2020-06-03 18:39:16 +0200 | [diff] [blame] | 1477 | HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1478 | return 0; |
| 1479 | } |
| 1480 | |
| 1481 | /* This function is an LUA binding. It provides a function |
| 1482 | * for adding ACL pattern from a referenced ACL file. |
| 1483 | */ |
| 1484 | static int hlua_add_acl(lua_State *L) |
| 1485 | { |
| 1486 | const char *name; |
| 1487 | const char *key; |
| 1488 | struct pat_ref *ref; |
| 1489 | |
| 1490 | MAY_LJMP(check_args(L, 2, "add_acl")); |
| 1491 | |
| 1492 | name = MAY_LJMP(luaL_checkstring(L, 1)); |
| 1493 | key = MAY_LJMP(luaL_checkstring(L, 2)); |
| 1494 | |
| 1495 | ref = pat_ref_lookup(name); |
| 1496 | if (!ref) |
Vincent Bernat | a72db18 | 2015-10-06 16:05:59 +0200 | [diff] [blame] | 1497 | WILL_LJMP(luaL_error(L, "'add_acl': unknown acl file '%s'", name)); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1498 | |
Christopher Faulet | 5cf2dfc | 2020-06-03 18:39:16 +0200 | [diff] [blame] | 1499 | HA_SPIN_LOCK(PATREF_LOCK, &ref->lock); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1500 | if (pat_ref_find_elt(ref, key) == NULL) |
| 1501 | pat_ref_add(ref, key, NULL, NULL); |
Christopher Faulet | 5cf2dfc | 2020-06-03 18:39:16 +0200 | [diff] [blame] | 1502 | HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1503 | return 0; |
| 1504 | } |
| 1505 | |
| 1506 | /* This function is an LUA binding. It provides a function |
| 1507 | * for setting map pattern and sample from a referenced map |
| 1508 | * file. |
| 1509 | */ |
| 1510 | static int hlua_set_map(lua_State *L) |
| 1511 | { |
| 1512 | const char *name; |
| 1513 | const char *key; |
| 1514 | const char *value; |
| 1515 | struct pat_ref *ref; |
| 1516 | |
| 1517 | MAY_LJMP(check_args(L, 3, "set_map")); |
| 1518 | |
| 1519 | name = MAY_LJMP(luaL_checkstring(L, 1)); |
| 1520 | key = MAY_LJMP(luaL_checkstring(L, 2)); |
| 1521 | value = MAY_LJMP(luaL_checkstring(L, 3)); |
| 1522 | |
| 1523 | ref = pat_ref_lookup(name); |
| 1524 | if (!ref) |
Vincent Bernat | a72db18 | 2015-10-06 16:05:59 +0200 | [diff] [blame] | 1525 | WILL_LJMP(luaL_error(L, "'set_map': unknown map file '%s'", name)); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1526 | |
Christopher Faulet | 5cf2dfc | 2020-06-03 18:39:16 +0200 | [diff] [blame] | 1527 | HA_SPIN_LOCK(PATREF_LOCK, &ref->lock); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1528 | if (pat_ref_find_elt(ref, key) != NULL) |
| 1529 | pat_ref_set(ref, key, value, NULL); |
| 1530 | else |
| 1531 | pat_ref_add(ref, key, value, NULL); |
Christopher Faulet | 5cf2dfc | 2020-06-03 18:39:16 +0200 | [diff] [blame] | 1532 | HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1533 | return 0; |
| 1534 | } |
| 1535 | |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 1536 | /* A class is a lot of memory that contain data. This data can be a table, |
| 1537 | * an integer or user data. This data is associated with a metatable. This |
Ilya Shipitsin | c02a23f | 2020-05-06 00:53:22 +0500 | [diff] [blame] | 1538 | * metatable have an original version registered in the global context with |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 1539 | * the name of the object (_G[<name>] = <metable> ). |
| 1540 | * |
| 1541 | * A metable is a table that modify the standard behavior of a standard |
| 1542 | * access to the associated data. The entries of this new metatable are |
| 1543 | * defined as is: |
| 1544 | * |
| 1545 | * http://lua-users.org/wiki/MetatableEvents |
| 1546 | * |
| 1547 | * __index |
| 1548 | * |
| 1549 | * we access an absent field in a table, the result is nil. This is |
| 1550 | * true, but it is not the whole truth. Actually, such access triggers |
| 1551 | * the interpreter to look for an __index metamethod: If there is no |
| 1552 | * such method, as usually happens, then the access results in nil; |
| 1553 | * otherwise, the metamethod will provide the result. |
| 1554 | * |
| 1555 | * Control 'prototype' inheritance. When accessing "myTable[key]" and |
| 1556 | * the key does not appear in the table, but the metatable has an __index |
| 1557 | * property: |
| 1558 | * |
| 1559 | * - if the value is a function, the function is called, passing in the |
| 1560 | * table and the key; the return value of that function is returned as |
| 1561 | * the result. |
| 1562 | * |
| 1563 | * - if the value is another table, the value of the key in that table is |
| 1564 | * asked for and returned (and if it doesn't exist in that table, but that |
| 1565 | * table's metatable has an __index property, then it continues on up) |
| 1566 | * |
| 1567 | * - Use "rawget(myTable,key)" to skip this metamethod. |
| 1568 | * |
| 1569 | * http://www.lua.org/pil/13.4.1.html |
| 1570 | * |
| 1571 | * __newindex |
| 1572 | * |
| 1573 | * Like __index, but control property assignment. |
| 1574 | * |
| 1575 | * __mode - Control weak references. A string value with one or both |
| 1576 | * of the characters 'k' and 'v' which specifies that the the |
| 1577 | * keys and/or values in the table are weak references. |
| 1578 | * |
| 1579 | * __call - Treat a table like a function. When a table is followed by |
| 1580 | * parenthesis such as "myTable( 'foo' )" and the metatable has |
| 1581 | * a __call key pointing to a function, that function is invoked |
| 1582 | * (passing any specified arguments) and the return value is |
| 1583 | * returned. |
| 1584 | * |
| 1585 | * __metatable - Hide the metatable. When "getmetatable( myTable )" is |
| 1586 | * called, if the metatable for myTable has a __metatable |
| 1587 | * key, the value of that key is returned instead of the |
| 1588 | * actual metatable. |
| 1589 | * |
| 1590 | * __tostring - Control string representation. When the builtin |
| 1591 | * "tostring( myTable )" function is called, if the metatable |
| 1592 | * for myTable has a __tostring property set to a function, |
| 1593 | * that function is invoked (passing myTable to it) and the |
| 1594 | * return value is used as the string representation. |
| 1595 | * |
| 1596 | * __len - Control table length. When the table length is requested using |
| 1597 | * the length operator ( '#' ), if the metatable for myTable has |
| 1598 | * a __len key pointing to a function, that function is invoked |
| 1599 | * (passing myTable to it) and the return value used as the value |
| 1600 | * of "#myTable". |
| 1601 | * |
| 1602 | * __gc - Userdata finalizer code. When userdata is set to be garbage |
| 1603 | * collected, if the metatable has a __gc field pointing to a |
| 1604 | * function, that function is first invoked, passing the userdata |
| 1605 | * to it. The __gc metamethod is not called for tables. |
| 1606 | * (See http://lua-users.org/lists/lua-l/2006-11/msg00508.html) |
| 1607 | * |
| 1608 | * Special metamethods for redefining standard operators: |
| 1609 | * http://www.lua.org/pil/13.1.html |
| 1610 | * |
| 1611 | * __add "+" |
| 1612 | * __sub "-" |
| 1613 | * __mul "*" |
| 1614 | * __div "/" |
| 1615 | * __unm "!" |
| 1616 | * __pow "^" |
| 1617 | * __concat ".." |
| 1618 | * |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 1619 | * Special methods for redefining standard relations |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 1620 | * http://www.lua.org/pil/13.2.html |
| 1621 | * |
| 1622 | * __eq "==" |
| 1623 | * __lt "<" |
| 1624 | * __le "<=" |
| 1625 | */ |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1626 | |
| 1627 | /* |
| 1628 | * |
| 1629 | * |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1630 | * Class Map |
| 1631 | * |
| 1632 | * |
| 1633 | */ |
| 1634 | |
| 1635 | /* Returns a struct hlua_map if the stack entry "ud" is |
| 1636 | * a class session, otherwise it throws an error. |
| 1637 | */ |
| 1638 | __LJMP static struct map_descriptor *hlua_checkmap(lua_State *L, int ud) |
| 1639 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 1640 | return MAY_LJMP(hlua_checkudata(L, ud, class_map_ref)); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1641 | } |
| 1642 | |
| 1643 | /* This function is the map constructor. It don't need |
| 1644 | * the class Map object. It creates and return a new Map |
| 1645 | * object. It must be called only during "body" or "init" |
| 1646 | * context because it process some filesystem accesses. |
| 1647 | */ |
| 1648 | __LJMP static int hlua_map_new(struct lua_State *L) |
| 1649 | { |
| 1650 | const char *fn; |
| 1651 | int match = PAT_MATCH_STR; |
| 1652 | struct sample_conv conv; |
| 1653 | const char *file = ""; |
| 1654 | int line = 0; |
| 1655 | lua_Debug ar; |
| 1656 | char *err = NULL; |
| 1657 | struct arg args[2]; |
| 1658 | |
| 1659 | if (lua_gettop(L) < 1 || lua_gettop(L) > 2) |
| 1660 | WILL_LJMP(luaL_error(L, "'new' needs at least 1 argument.")); |
| 1661 | |
| 1662 | fn = MAY_LJMP(luaL_checkstring(L, 1)); |
| 1663 | |
| 1664 | if (lua_gettop(L) >= 2) { |
| 1665 | match = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 1666 | if (match < 0 || match >= PAT_MATCH_NUM) |
| 1667 | WILL_LJMP(luaL_error(L, "'new' needs a valid match method.")); |
| 1668 | } |
| 1669 | |
| 1670 | /* Get Lua filename and line number. */ |
| 1671 | if (lua_getstack(L, 1, &ar)) { /* check function at level */ |
| 1672 | lua_getinfo(L, "Sl", &ar); /* get info about it */ |
| 1673 | if (ar.currentline > 0) { /* is there info? */ |
| 1674 | file = ar.short_src; |
| 1675 | line = ar.currentline; |
| 1676 | } |
| 1677 | } |
| 1678 | |
| 1679 | /* fill fake sample_conv struct. */ |
| 1680 | conv.kw = ""; /* unused. */ |
| 1681 | conv.process = NULL; /* unused. */ |
| 1682 | conv.arg_mask = 0; /* unused. */ |
| 1683 | conv.val_args = NULL; /* unused. */ |
| 1684 | conv.out_type = SMP_T_STR; |
| 1685 | conv.private = (void *)(long)match; |
| 1686 | switch (match) { |
| 1687 | case PAT_MATCH_STR: conv.in_type = SMP_T_STR; break; |
| 1688 | case PAT_MATCH_BEG: conv.in_type = SMP_T_STR; break; |
| 1689 | case PAT_MATCH_SUB: conv.in_type = SMP_T_STR; break; |
| 1690 | case PAT_MATCH_DIR: conv.in_type = SMP_T_STR; break; |
| 1691 | case PAT_MATCH_DOM: conv.in_type = SMP_T_STR; break; |
| 1692 | case PAT_MATCH_END: conv.in_type = SMP_T_STR; break; |
| 1693 | case PAT_MATCH_REG: conv.in_type = SMP_T_STR; break; |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 1694 | case PAT_MATCH_INT: conv.in_type = SMP_T_SINT; break; |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1695 | case PAT_MATCH_IP: conv.in_type = SMP_T_ADDR; break; |
| 1696 | default: |
| 1697 | WILL_LJMP(luaL_error(L, "'new' doesn't support this match mode.")); |
| 1698 | } |
| 1699 | |
| 1700 | /* fill fake args. */ |
| 1701 | args[0].type = ARGT_STR; |
Christopher Faulet | 73292e9 | 2020-08-06 08:40:09 +0200 | [diff] [blame] | 1702 | args[0].data.str.area = strdup(fn); |
| 1703 | args[0].data.str.data = strlen(fn); |
| 1704 | args[0].data.str.size = args[0].data.str.data+1; |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1705 | args[1].type = ARGT_STOP; |
| 1706 | |
| 1707 | /* load the map. */ |
| 1708 | if (!sample_load_map(args, &conv, file, line, &err)) { |
| 1709 | /* error case: we cant use luaL_error because we must |
| 1710 | * free the err variable. |
| 1711 | */ |
| 1712 | luaL_where(L, 1); |
| 1713 | lua_pushfstring(L, "'new': %s.", err); |
| 1714 | lua_concat(L, 2); |
| 1715 | free(err); |
Christopher Faulet | 6ad7df4 | 2020-08-07 11:45:18 +0200 | [diff] [blame] | 1716 | chunk_destroy(&args[0].data.str); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1717 | WILL_LJMP(lua_error(L)); |
| 1718 | } |
| 1719 | |
| 1720 | /* create the lua object. */ |
| 1721 | lua_newtable(L); |
| 1722 | lua_pushlightuserdata(L, args[0].data.map); |
| 1723 | lua_rawseti(L, -2, 0); |
| 1724 | |
| 1725 | /* Pop a class Map metatable and affect it to the userdata. */ |
| 1726 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_map_ref); |
| 1727 | lua_setmetatable(L, -2); |
| 1728 | |
| 1729 | |
| 1730 | return 1; |
| 1731 | } |
| 1732 | |
| 1733 | __LJMP static inline int _hlua_map_lookup(struct lua_State *L, int str) |
| 1734 | { |
| 1735 | struct map_descriptor *desc; |
| 1736 | struct pattern *pat; |
| 1737 | struct sample smp; |
| 1738 | |
| 1739 | MAY_LJMP(check_args(L, 2, "lookup")); |
| 1740 | desc = MAY_LJMP(hlua_checkmap(L, 1)); |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 1741 | if (desc->pat.expect_type == SMP_T_SINT) { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1742 | smp.data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1743 | smp.data.u.sint = MAY_LJMP(luaL_checkinteger(L, 2)); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1744 | } |
| 1745 | else { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1746 | smp.data.type = SMP_T_STR; |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1747 | smp.flags = SMP_F_CONST; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1748 | smp.data.u.str.area = (char *)MAY_LJMP(luaL_checklstring(L, 2, (size_t *)&smp.data.u.str.data)); |
Thierry Fournier | 91dc0c0 | 2020-11-10 20:38:20 +0100 | [diff] [blame] | 1749 | smp.data.u.str.size = smp.data.u.str.data + 1; |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1750 | } |
| 1751 | |
| 1752 | pat = pattern_exec_match(&desc->pat, &smp, 1); |
Thierry FOURNIER | 503bb09 | 2015-08-19 08:35:43 +0200 | [diff] [blame] | 1753 | if (!pat || !pat->data) { |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1754 | if (str) |
| 1755 | lua_pushstring(L, ""); |
| 1756 | else |
| 1757 | lua_pushnil(L); |
| 1758 | return 1; |
| 1759 | } |
| 1760 | |
| 1761 | /* 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] | 1762 | 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] | 1763 | return 1; |
| 1764 | } |
| 1765 | |
| 1766 | __LJMP static int hlua_map_lookup(struct lua_State *L) |
| 1767 | { |
| 1768 | return _hlua_map_lookup(L, 0); |
| 1769 | } |
| 1770 | |
| 1771 | __LJMP static int hlua_map_slookup(struct lua_State *L) |
| 1772 | { |
| 1773 | return _hlua_map_lookup(L, 1); |
| 1774 | } |
| 1775 | |
| 1776 | /* |
| 1777 | * |
| 1778 | * |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1779 | * Class Socket |
| 1780 | * |
| 1781 | * |
| 1782 | */ |
| 1783 | |
| 1784 | __LJMP static struct hlua_socket *hlua_checksocket(lua_State *L, int ud) |
| 1785 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 1786 | return MAY_LJMP(hlua_checkudata(L, ud, class_socket_ref)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1787 | } |
| 1788 | |
| 1789 | /* 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] | 1790 | * connection. It is used for notify space available to send or data |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1791 | * received. |
| 1792 | */ |
Willy Tarreau | 00a37f0 | 2015-04-13 12:05:19 +0200 | [diff] [blame] | 1793 | static void hlua_socket_handler(struct appctx *appctx) |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1794 | { |
Willy Tarreau | 00a37f0 | 2015-04-13 12:05:19 +0200 | [diff] [blame] | 1795 | struct stream_interface *si = appctx->owner; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1796 | |
Thierry FOURNIER | b13b20a | 2017-07-16 20:48:54 +0200 | [diff] [blame] | 1797 | if (appctx->ctx.hlua_cosocket.die) { |
| 1798 | si_shutw(si); |
| 1799 | si_shutr(si); |
| 1800 | si_ic(si)->flags |= CF_READ_NULL; |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1801 | notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read); |
| 1802 | notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write); |
Thierry FOURNIER | b13b20a | 2017-07-16 20:48:54 +0200 | [diff] [blame] | 1803 | stream_shutdown(si_strm(si), SF_ERR_KILLED); |
| 1804 | } |
| 1805 | |
Thierry FOURNIER | 6d695e6 | 2015-09-27 19:29:38 +0200 | [diff] [blame] | 1806 | /* If we cant write, wakeup the pending write signals. */ |
| 1807 | if (channel_output_closed(si_ic(si))) |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1808 | notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write); |
Thierry FOURNIER | 6d695e6 | 2015-09-27 19:29:38 +0200 | [diff] [blame] | 1809 | |
| 1810 | /* If we cant read, wakeup the pending read signals. */ |
| 1811 | if (channel_input_closed(si_oc(si))) |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1812 | notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read); |
Thierry FOURNIER | 6d695e6 | 2015-09-27 19:29:38 +0200 | [diff] [blame] | 1813 | |
Willy Tarreau | 5a0b25d | 2019-07-18 18:01:14 +0200 | [diff] [blame] | 1814 | /* if the connection is not established, inform the stream that we want |
Thierry FOURNIER | 316e319 | 2015-09-04 18:25:53 +0200 | [diff] [blame] | 1815 | * to be notified whenever the connection completes. |
| 1816 | */ |
Willy Tarreau | 5a0b25d | 2019-07-18 18:01:14 +0200 | [diff] [blame] | 1817 | if (si_opposite(si)->state < SI_ST_EST) { |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 1818 | si_cant_get(si); |
Willy Tarreau | 12c2423 | 2018-12-06 15:29:50 +0100 | [diff] [blame] | 1819 | si_rx_conn_blk(si); |
Willy Tarreau | 3367d41 | 2018-11-15 10:57:41 +0100 | [diff] [blame] | 1820 | si_rx_endp_more(si); |
Willy Tarreau | d4da196 | 2015-04-20 01:31:23 +0200 | [diff] [blame] | 1821 | return; |
Thierry FOURNIER | 316e319 | 2015-09-04 18:25:53 +0200 | [diff] [blame] | 1822 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1823 | |
| 1824 | /* This function is called after the connect. */ |
Thierry FOURNIER | 18d0990 | 2016-12-16 09:25:38 +0100 | [diff] [blame] | 1825 | appctx->ctx.hlua_cosocket.connected = 1; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1826 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 1827 | /* 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] | 1828 | if (channel_may_recv(si_ic(si))) |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1829 | notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1830 | |
| 1831 | /* Wake the tasks which wants to read if the buffer contains data. */ |
Thierry FOURNIER | eba6f64 | 2015-09-26 22:01:07 +0200 | [diff] [blame] | 1832 | if (!channel_is_empty(si_oc(si))) |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1833 | notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read); |
Thierry FOURNIER | 101b976 | 2018-05-27 01:27:40 +0200 | [diff] [blame] | 1834 | |
| 1835 | /* Some data were injected in the buffer, notify the stream |
| 1836 | * interface. |
| 1837 | */ |
| 1838 | if (!channel_is_empty(si_ic(si))) |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 1839 | si_update(si); |
Thierry FOURNIER | 101b976 | 2018-05-27 01:27:40 +0200 | [diff] [blame] | 1840 | |
| 1841 | /* If write notifications are registered, we considers we want |
Willy Tarreau | 3367d41 | 2018-11-15 10:57:41 +0100 | [diff] [blame] | 1842 | * to write, so we clear the blocking flag. |
Thierry FOURNIER | 101b976 | 2018-05-27 01:27:40 +0200 | [diff] [blame] | 1843 | */ |
| 1844 | if (notification_registered(&appctx->ctx.hlua_cosocket.wake_on_write)) |
Willy Tarreau | 3367d41 | 2018-11-15 10:57:41 +0100 | [diff] [blame] | 1845 | si_rx_endp_more(si); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1846 | } |
| 1847 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1848 | /* This function is called when the "struct stream" is destroyed. |
| 1849 | * Remove the link from the object to this stream. |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1850 | * Wake all the pending signals. |
| 1851 | */ |
Willy Tarreau | 00a37f0 | 2015-04-13 12:05:19 +0200 | [diff] [blame] | 1852 | static void hlua_socket_release(struct appctx *appctx) |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1853 | { |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 1854 | struct xref *peer; |
| 1855 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1856 | /* Remove my link in the original object. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 1857 | peer = xref_get_peer_and_lock(&appctx->ctx.hlua_cosocket.xref); |
| 1858 | if (peer) |
| 1859 | xref_disconnect(&appctx->ctx.hlua_cosocket.xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1860 | |
| 1861 | /* Wake all the task waiting for me. */ |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1862 | notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read); |
| 1863 | notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1864 | } |
| 1865 | |
| 1866 | /* If the garbage collectio of the object is launch, nobody |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1867 | * uses this object. If the stream does not exists, just quit. |
| 1868 | * Send the shutdown signal to the stream. In some cases, |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1869 | * pending signal can rest in the read and write lists. destroy |
| 1870 | * it. |
| 1871 | */ |
| 1872 | __LJMP static int hlua_socket_gc(lua_State *L) |
| 1873 | { |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 1874 | struct hlua_socket *socket; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1875 | struct appctx *appctx; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1876 | struct xref *peer; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1877 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 1878 | MAY_LJMP(check_args(L, 1, "__gc")); |
| 1879 | |
| 1880 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 1881 | peer = xref_get_peer_and_lock(&socket->xref); |
| 1882 | if (!peer) |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1883 | return 0; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1884 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1885 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1886 | /* Set the flag which destroy the session. */ |
Thierry FOURNIER | b13b20a | 2017-07-16 20:48:54 +0200 | [diff] [blame] | 1887 | appctx->ctx.hlua_cosocket.die = 1; |
| 1888 | appctx_wakeup(appctx); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1889 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1890 | /* Remove all reference between the Lua stack and the coroutine stream. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 1891 | xref_disconnect(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1892 | return 0; |
| 1893 | } |
| 1894 | |
| 1895 | /* The close function send shutdown signal and break the |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1896 | * links between the stream and the object. |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1897 | */ |
sada | 05ed330 | 2018-05-11 11:48:18 -0700 | [diff] [blame] | 1898 | __LJMP static int hlua_socket_close_helper(lua_State *L) |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1899 | { |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 1900 | struct hlua_socket *socket; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1901 | struct appctx *appctx; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1902 | struct xref *peer; |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 1903 | struct hlua *hlua; |
| 1904 | |
| 1905 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 1906 | hlua = hlua_gethlua(L); |
| 1907 | if (!hlua) |
| 1908 | return 0; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1909 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 1910 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 1911 | |
| 1912 | /* Check if we run on the same thread than the xreator thread. |
| 1913 | * We cannot access to the socket if the thread is different. |
| 1914 | */ |
| 1915 | if (socket->tid != tid) |
| 1916 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 1917 | |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 1918 | peer = xref_get_peer_and_lock(&socket->xref); |
| 1919 | if (!peer) |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1920 | return 0; |
Willy Tarreau | f31af93 | 2020-01-14 09:59:38 +0100 | [diff] [blame] | 1921 | |
| 1922 | hlua->gc_count--; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1923 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1924 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1925 | /* Set the flag which destroy the session. */ |
Thierry FOURNIER | b13b20a | 2017-07-16 20:48:54 +0200 | [diff] [blame] | 1926 | appctx->ctx.hlua_cosocket.die = 1; |
| 1927 | appctx_wakeup(appctx); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1928 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1929 | /* Remove all reference between the Lua stack and the coroutine stream. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 1930 | xref_disconnect(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1931 | return 0; |
| 1932 | } |
| 1933 | |
sada | 05ed330 | 2018-05-11 11:48:18 -0700 | [diff] [blame] | 1934 | /* The close function calls close_helper. |
| 1935 | */ |
| 1936 | __LJMP static int hlua_socket_close(lua_State *L) |
| 1937 | { |
| 1938 | MAY_LJMP(check_args(L, 1, "close")); |
| 1939 | return hlua_socket_close_helper(L); |
| 1940 | } |
| 1941 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1942 | /* This Lua function assumes that the stack contain three parameters. |
| 1943 | * 1 - USERDATA containing a struct socket |
| 1944 | * 2 - INTEGER with values of the macro defined below |
| 1945 | * If the integer is -1, we must read at most one line. |
| 1946 | * If the integer is -2, we ust read all the data until the |
| 1947 | * end of the stream. |
| 1948 | * If the integer is positive value, we must read a number of |
| 1949 | * bytes corresponding to this value. |
| 1950 | */ |
| 1951 | #define HLSR_READ_LINE (-1) |
| 1952 | #define HLSR_READ_ALL (-2) |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 1953 | __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] | 1954 | { |
| 1955 | struct hlua_socket *socket = MAY_LJMP(hlua_checksocket(L, 1)); |
| 1956 | int wanted = lua_tointeger(L, 2); |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 1957 | struct hlua *hlua; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1958 | struct appctx *appctx; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 1959 | size_t len; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1960 | int nblk; |
Willy Tarreau | 206ba83 | 2018-06-14 15:27:31 +0200 | [diff] [blame] | 1961 | const char *blk1; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 1962 | size_t len1; |
Willy Tarreau | 206ba83 | 2018-06-14 15:27:31 +0200 | [diff] [blame] | 1963 | const char *blk2; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 1964 | size_t len2; |
Thierry FOURNIER | 0054392 | 2015-03-09 18:35:06 +0100 | [diff] [blame] | 1965 | int skip_at_end = 0; |
Willy Tarreau | 8138967 | 2015-03-10 12:03:52 +0100 | [diff] [blame] | 1966 | struct channel *oc; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1967 | struct stream_interface *si; |
| 1968 | struct stream *s; |
| 1969 | struct xref *peer; |
Thierry FOURNIER | 8c126c7 | 2018-05-25 16:27:44 +0200 | [diff] [blame] | 1970 | int missing_bytes; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1971 | |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 1972 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 1973 | hlua = hlua_gethlua(L); |
| 1974 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1975 | /* Check if this lua stack is schedulable. */ |
| 1976 | if (!hlua || !hlua->task) |
| 1977 | WILL_LJMP(luaL_error(L, "The 'receive' function is only allowed in " |
| 1978 | "'frontend', 'backend' or 'task'")); |
| 1979 | |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 1980 | /* Check if we run on the same thread than the xreator thread. |
| 1981 | * We cannot access to the socket if the thread is different. |
| 1982 | */ |
| 1983 | if (socket->tid != tid) |
| 1984 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 1985 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1986 | /* check for connection break. If some data where read, return it. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 1987 | peer = xref_get_peer_and_lock(&socket->xref); |
| 1988 | if (!peer) |
| 1989 | goto no_peer; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1990 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
| 1991 | si = appctx->owner; |
| 1992 | s = si_strm(si); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1993 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1994 | oc = &s->res; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1995 | if (wanted == HLSR_READ_LINE) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1996 | /* Read line. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 1997 | nblk = co_getline_nc(oc, &blk1, &len1, &blk2, &len2); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1998 | if (nblk < 0) /* Connection close. */ |
| 1999 | goto connection_closed; |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 2000 | if (nblk == 0) /* No data available. */ |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2001 | goto connection_empty; |
Thierry FOURNIER | 0054392 | 2015-03-09 18:35:06 +0100 | [diff] [blame] | 2002 | |
| 2003 | /* remove final \r\n. */ |
| 2004 | if (nblk == 1) { |
| 2005 | if (blk1[len1-1] == '\n') { |
| 2006 | len1--; |
| 2007 | skip_at_end++; |
| 2008 | if (blk1[len1-1] == '\r') { |
| 2009 | len1--; |
| 2010 | skip_at_end++; |
| 2011 | } |
| 2012 | } |
| 2013 | } |
| 2014 | else { |
| 2015 | if (blk2[len2-1] == '\n') { |
| 2016 | len2--; |
| 2017 | skip_at_end++; |
| 2018 | if (blk2[len2-1] == '\r') { |
| 2019 | len2--; |
| 2020 | skip_at_end++; |
| 2021 | } |
| 2022 | } |
| 2023 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2024 | } |
| 2025 | |
| 2026 | else if (wanted == HLSR_READ_ALL) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2027 | /* Read all the available data. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 2028 | nblk = co_getblk_nc(oc, &blk1, &len1, &blk2, &len2); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2029 | if (nblk < 0) /* Connection close. */ |
| 2030 | goto connection_closed; |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 2031 | if (nblk == 0) /* No data available. */ |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2032 | goto connection_empty; |
| 2033 | } |
| 2034 | |
| 2035 | else { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2036 | /* Read a block of data. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 2037 | nblk = co_getblk_nc(oc, &blk1, &len1, &blk2, &len2); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2038 | if (nblk < 0) /* Connection close. */ |
| 2039 | goto connection_closed; |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 2040 | if (nblk == 0) /* No data available. */ |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2041 | goto connection_empty; |
| 2042 | |
Thierry FOURNIER | 8c126c7 | 2018-05-25 16:27:44 +0200 | [diff] [blame] | 2043 | missing_bytes = wanted - socket->b.n; |
| 2044 | if (len1 > missing_bytes) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2045 | nblk = 1; |
Thierry FOURNIER | 8c126c7 | 2018-05-25 16:27:44 +0200 | [diff] [blame] | 2046 | len1 = missing_bytes; |
| 2047 | } if (nblk == 2 && len1 + len2 > missing_bytes) |
| 2048 | len2 = missing_bytes - len1; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2049 | } |
| 2050 | |
| 2051 | len = len1; |
| 2052 | |
| 2053 | luaL_addlstring(&socket->b, blk1, len1); |
| 2054 | if (nblk == 2) { |
| 2055 | len += len2; |
| 2056 | luaL_addlstring(&socket->b, blk2, len2); |
| 2057 | } |
| 2058 | |
| 2059 | /* Consume data. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 2060 | co_skip(oc, len + skip_at_end); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2061 | |
| 2062 | /* Don't wait anything. */ |
Thierry FOURNIER | 7e4ee47 | 2018-05-25 15:03:50 +0200 | [diff] [blame] | 2063 | appctx_wakeup(appctx); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2064 | |
| 2065 | /* If the pattern reclaim to read all the data |
| 2066 | * in the connection, got out. |
| 2067 | */ |
| 2068 | if (wanted == HLSR_READ_ALL) |
| 2069 | goto connection_empty; |
Thierry FOURNIER | 8c126c7 | 2018-05-25 16:27:44 +0200 | [diff] [blame] | 2070 | else if (wanted >= 0 && socket->b.n < wanted) |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2071 | goto connection_empty; |
| 2072 | |
| 2073 | /* Return result. */ |
| 2074 | luaL_pushresult(&socket->b); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2075 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2076 | return 1; |
| 2077 | |
| 2078 | connection_closed: |
| 2079 | |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2080 | xref_unlock(&socket->xref, peer); |
| 2081 | |
| 2082 | no_peer: |
| 2083 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2084 | /* If the buffer containds data. */ |
| 2085 | if (socket->b.n > 0) { |
| 2086 | luaL_pushresult(&socket->b); |
| 2087 | return 1; |
| 2088 | } |
| 2089 | lua_pushnil(L); |
| 2090 | lua_pushstring(L, "connection closed."); |
| 2091 | return 2; |
| 2092 | |
| 2093 | connection_empty: |
| 2094 | |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2095 | if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_read, hlua->task)) { |
| 2096 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2097 | WILL_LJMP(luaL_error(L, "out of memory")); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2098 | } |
| 2099 | xref_unlock(&socket->xref, peer); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 2100 | 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] | 2101 | return 0; |
| 2102 | } |
| 2103 | |
Tim Duesterhus | b33754c | 2018-01-04 19:32:14 +0100 | [diff] [blame] | 2104 | /* This Lua function gets two parameters. The first one can be string |
| 2105 | * or a number. If the string is "*l", the user requires one line. If |
| 2106 | * 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] | 2107 | * If the value is a number, the user require a number of bytes equal |
| 2108 | * to the value. The default value is "*l" (a line). |
| 2109 | * |
Tim Duesterhus | b33754c | 2018-01-04 19:32:14 +0100 | [diff] [blame] | 2110 | * This parameter with a variable type is converted in integer. This |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2111 | * integer takes this values: |
| 2112 | * -1 : read a line |
| 2113 | * -2 : read all the stream |
Tim Duesterhus | b33754c | 2018-01-04 19:32:14 +0100 | [diff] [blame] | 2114 | * >0 : amount of bytes. |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2115 | * |
Tim Duesterhus | b33754c | 2018-01-04 19:32:14 +0100 | [diff] [blame] | 2116 | * The second parameter is optional. It contains a string that must be |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2117 | * concatenated with the read data. |
| 2118 | */ |
| 2119 | __LJMP static int hlua_socket_receive(struct lua_State *L) |
| 2120 | { |
| 2121 | int wanted = HLSR_READ_LINE; |
| 2122 | const char *pattern; |
| 2123 | int type; |
| 2124 | char *error; |
| 2125 | size_t len; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2126 | struct hlua_socket *socket; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2127 | |
| 2128 | if (lua_gettop(L) < 1 || lua_gettop(L) > 3) |
| 2129 | WILL_LJMP(luaL_error(L, "The 'receive' function requires between 1 and 3 arguments.")); |
| 2130 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2131 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2132 | |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2133 | /* Check if we run on the same thread than the xreator thread. |
| 2134 | * We cannot access to the socket if the thread is different. |
| 2135 | */ |
| 2136 | if (socket->tid != tid) |
| 2137 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 2138 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2139 | /* check for pattern. */ |
| 2140 | if (lua_gettop(L) >= 2) { |
| 2141 | type = lua_type(L, 2); |
| 2142 | if (type == LUA_TSTRING) { |
| 2143 | pattern = lua_tostring(L, 2); |
| 2144 | if (strcmp(pattern, "*a") == 0) |
| 2145 | wanted = HLSR_READ_ALL; |
| 2146 | else if (strcmp(pattern, "*l") == 0) |
| 2147 | wanted = HLSR_READ_LINE; |
| 2148 | else { |
| 2149 | wanted = strtoll(pattern, &error, 10); |
| 2150 | if (*error != '\0') |
| 2151 | WILL_LJMP(luaL_error(L, "Unsupported pattern.")); |
| 2152 | } |
| 2153 | } |
| 2154 | else if (type == LUA_TNUMBER) { |
| 2155 | wanted = lua_tointeger(L, 2); |
| 2156 | if (wanted < 0) |
| 2157 | WILL_LJMP(luaL_error(L, "Unsupported size.")); |
| 2158 | } |
| 2159 | } |
| 2160 | |
| 2161 | /* Set pattern. */ |
| 2162 | lua_pushinteger(L, wanted); |
Tim Duesterhus | c6e377e | 2018-01-04 19:32:13 +0100 | [diff] [blame] | 2163 | |
| 2164 | /* Check if we would replace the top by itself. */ |
| 2165 | if (lua_gettop(L) != 2) |
| 2166 | lua_replace(L, 2); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2167 | |
Tim Duesterhus | b33754c | 2018-01-04 19:32:14 +0100 | [diff] [blame] | 2168 | /* init buffer, and fill it with prefix. */ |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2169 | luaL_buffinit(L, &socket->b); |
| 2170 | |
| 2171 | /* Check prefix. */ |
| 2172 | if (lua_gettop(L) >= 3) { |
| 2173 | if (lua_type(L, 3) != LUA_TSTRING) |
| 2174 | WILL_LJMP(luaL_error(L, "Expect a 'string' for the prefix")); |
| 2175 | pattern = lua_tolstring(L, 3, &len); |
| 2176 | luaL_addlstring(&socket->b, pattern, len); |
| 2177 | } |
| 2178 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2179 | return __LJMP(hlua_socket_receive_yield(L, 0, 0)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2180 | } |
| 2181 | |
| 2182 | /* Write the Lua input string in the output buffer. |
Mark Lakes | 22154b4 | 2018-01-29 14:38:40 -0800 | [diff] [blame] | 2183 | * This function returns a yield if no space is available. |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2184 | */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2185 | 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] | 2186 | { |
| 2187 | struct hlua_socket *socket; |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 2188 | struct hlua *hlua; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2189 | struct appctx *appctx; |
| 2190 | size_t buf_len; |
| 2191 | const char *buf; |
| 2192 | int len; |
| 2193 | int send_len; |
| 2194 | int sent; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2195 | struct xref *peer; |
| 2196 | struct stream_interface *si; |
| 2197 | struct stream *s; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2198 | |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 2199 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 2200 | hlua = hlua_gethlua(L); |
| 2201 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2202 | /* Check if this lua stack is schedulable. */ |
| 2203 | if (!hlua || !hlua->task) |
| 2204 | WILL_LJMP(luaL_error(L, "The 'write' function is only allowed in " |
| 2205 | "'frontend', 'backend' or 'task'")); |
| 2206 | |
| 2207 | /* Get object */ |
| 2208 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
| 2209 | buf = MAY_LJMP(luaL_checklstring(L, 2, &buf_len)); |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2210 | sent = MAY_LJMP(luaL_checkinteger(L, 3)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2211 | |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2212 | /* Check if we run on the same thread than the xreator thread. |
| 2213 | * We cannot access to the socket if the thread is different. |
| 2214 | */ |
| 2215 | if (socket->tid != tid) |
| 2216 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 2217 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2218 | /* check for connection break. If some data where read, return it. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2219 | peer = xref_get_peer_and_lock(&socket->xref); |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2220 | if (!peer) { |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2221 | lua_pushinteger(L, -1); |
| 2222 | return 1; |
| 2223 | } |
| 2224 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
| 2225 | si = appctx->owner; |
| 2226 | s = si_strm(si); |
| 2227 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2228 | /* Check for connection close. */ |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2229 | if (channel_output_closed(&s->req)) { |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2230 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2231 | lua_pushinteger(L, -1); |
| 2232 | return 1; |
| 2233 | } |
| 2234 | |
| 2235 | /* Update the input buffer data. */ |
| 2236 | buf += sent; |
| 2237 | send_len = buf_len - sent; |
| 2238 | |
| 2239 | /* All the data are sent. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2240 | if (sent >= buf_len) { |
| 2241 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2242 | return 1; /* Implicitly return the length sent. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2243 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2244 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 2245 | /* Check if the buffer is available because HAProxy doesn't allocate |
Thierry FOURNIER | 486d52a | 2015-03-09 17:51:43 +0100 | [diff] [blame] | 2246 | * the request buffer if its not required. |
| 2247 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2248 | if (s->req.buf.size == 0) { |
Willy Tarreau | 581abd3 | 2018-10-25 10:21:41 +0200 | [diff] [blame] | 2249 | if (!si_alloc_ibuf(si, &appctx->buffer_wait)) |
Christopher Faulet | 33834b1 | 2016-12-19 09:29:06 +0100 | [diff] [blame] | 2250 | goto hlua_socket_write_yield_return; |
Thierry FOURNIER | 486d52a | 2015-03-09 17:51:43 +0100 | [diff] [blame] | 2251 | } |
| 2252 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 2253 | /* Check for available space. */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2254 | len = b_room(&s->req.buf); |
Christopher Faulet | 33834b1 | 2016-12-19 09:29:06 +0100 | [diff] [blame] | 2255 | if (len <= 0) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2256 | goto hlua_socket_write_yield_return; |
Christopher Faulet | 33834b1 | 2016-12-19 09:29:06 +0100 | [diff] [blame] | 2257 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2258 | |
| 2259 | /* send data */ |
| 2260 | if (len < send_len) |
| 2261 | send_len = len; |
Thierry FOURNIER | 66b8919 | 2018-05-27 01:14:47 +0200 | [diff] [blame] | 2262 | len = ci_putblk(&s->req, buf, send_len); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2263 | |
| 2264 | /* "Not enough space" (-1), "Buffer too little to contain |
| 2265 | * the data" (-2) are not expected because the available length |
| 2266 | * is tested. |
| 2267 | * Other unknown error are also not expected. |
| 2268 | */ |
| 2269 | if (len <= 0) { |
Willy Tarreau | bc18da1 | 2015-03-13 14:00:47 +0100 | [diff] [blame] | 2270 | if (len == -1) |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2271 | s->req.flags |= CF_WAKE_WRITE; |
Willy Tarreau | bc18da1 | 2015-03-13 14:00:47 +0100 | [diff] [blame] | 2272 | |
sada | 05ed330 | 2018-05-11 11:48:18 -0700 | [diff] [blame] | 2273 | MAY_LJMP(hlua_socket_close_helper(L)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2274 | lua_pop(L, 1); |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2275 | lua_pushinteger(L, -1); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2276 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2277 | return 1; |
| 2278 | } |
| 2279 | |
| 2280 | /* update buffers. */ |
Thierry FOURNIER | 101b976 | 2018-05-27 01:27:40 +0200 | [diff] [blame] | 2281 | appctx_wakeup(appctx); |
Willy Tarreau | de70fa1 | 2015-09-26 11:25:05 +0200 | [diff] [blame] | 2282 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2283 | s->req.rex = TICK_ETERNITY; |
| 2284 | s->res.wex = TICK_ETERNITY; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2285 | |
| 2286 | /* Update length sent. */ |
| 2287 | lua_pop(L, 1); |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2288 | lua_pushinteger(L, sent + len); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2289 | |
| 2290 | /* All the data buffer is sent ? */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2291 | if (sent + len >= buf_len) { |
| 2292 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2293 | return 1; |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2294 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2295 | |
| 2296 | hlua_socket_write_yield_return: |
Thierry FOURNIER | ba42fcd | 2018-05-27 00:59:48 +0200 | [diff] [blame] | 2297 | if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_write, hlua->task)) { |
| 2298 | xref_unlock(&socket->xref, peer); |
| 2299 | WILL_LJMP(luaL_error(L, "out of memory")); |
| 2300 | } |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2301 | xref_unlock(&socket->xref, peer); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 2302 | 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] | 2303 | return 0; |
| 2304 | } |
| 2305 | |
| 2306 | /* This function initiate the send of data. It just check the input |
| 2307 | * parameters and push an integer in the Lua stack that contain the |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 2308 | * 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] | 2309 | * "hlua_socket_write_yield" that can yield. |
| 2310 | * |
| 2311 | * The Lua function gets between 3 and 4 parameters. The first one is |
| 2312 | * the associated object. The second is a string buffer. The third is |
| 2313 | * a facultative integer that represents where is the buffer position |
| 2314 | * of the start of the data that can send. The first byte is the |
| 2315 | * position "1". The default value is "1". The fourth argument is a |
| 2316 | * facultative integer that represents where is the buffer position |
| 2317 | * of the end of the data that can send. The default is the last byte. |
| 2318 | */ |
| 2319 | static int hlua_socket_send(struct lua_State *L) |
| 2320 | { |
| 2321 | int i; |
| 2322 | int j; |
| 2323 | const char *buf; |
| 2324 | size_t buf_len; |
| 2325 | |
| 2326 | /* Check number of arguments. */ |
| 2327 | if (lua_gettop(L) < 2 || lua_gettop(L) > 4) |
| 2328 | WILL_LJMP(luaL_error(L, "'send' needs between 2 and 4 arguments")); |
| 2329 | |
| 2330 | /* Get the string. */ |
| 2331 | buf = MAY_LJMP(luaL_checklstring(L, 2, &buf_len)); |
| 2332 | |
| 2333 | /* Get and check j. */ |
| 2334 | if (lua_gettop(L) == 4) { |
| 2335 | j = MAY_LJMP(luaL_checkinteger(L, 4)); |
| 2336 | if (j < 0) |
| 2337 | j = buf_len + j + 1; |
| 2338 | if (j > buf_len) |
| 2339 | j = buf_len + 1; |
| 2340 | lua_pop(L, 1); |
| 2341 | } |
| 2342 | else |
| 2343 | j = buf_len; |
| 2344 | |
| 2345 | /* Get and check i. */ |
| 2346 | if (lua_gettop(L) == 3) { |
| 2347 | i = MAY_LJMP(luaL_checkinteger(L, 3)); |
| 2348 | if (i < 0) |
| 2349 | i = buf_len + i + 1; |
| 2350 | if (i > buf_len) |
| 2351 | i = buf_len + 1; |
| 2352 | lua_pop(L, 1); |
| 2353 | } else |
| 2354 | i = 1; |
| 2355 | |
| 2356 | /* Check bth i and j. */ |
| 2357 | if (i > j) { |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2358 | lua_pushinteger(L, 0); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2359 | return 1; |
| 2360 | } |
| 2361 | if (i == 0 && j == 0) { |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2362 | lua_pushinteger(L, 0); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2363 | return 1; |
| 2364 | } |
| 2365 | if (i == 0) |
| 2366 | i = 1; |
| 2367 | if (j == 0) |
| 2368 | j = 1; |
| 2369 | |
| 2370 | /* Pop the string. */ |
| 2371 | lua_pop(L, 1); |
| 2372 | |
| 2373 | /* Update the buffer length. */ |
| 2374 | buf += i - 1; |
| 2375 | buf_len = j - i + 1; |
| 2376 | lua_pushlstring(L, buf, buf_len); |
| 2377 | |
| 2378 | /* This unsigned is used to remember the amount of sent data. */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2379 | lua_pushinteger(L, 0); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2380 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2381 | return MAY_LJMP(hlua_socket_write_yield(L, 0, 0)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2382 | } |
| 2383 | |
Willy Tarreau | 22b0a68 | 2015-06-17 19:43:49 +0200 | [diff] [blame] | 2384 | #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] | 2385 | __LJMP static inline int hlua_socket_info(struct lua_State *L, struct sockaddr_storage *addr) |
| 2386 | { |
| 2387 | static char buffer[SOCKET_INFO_MAX_LEN]; |
| 2388 | int ret; |
| 2389 | int len; |
| 2390 | char *p; |
| 2391 | |
| 2392 | ret = addr_to_str(addr, buffer+1, SOCKET_INFO_MAX_LEN-1); |
| 2393 | if (ret <= 0) { |
| 2394 | lua_pushnil(L); |
| 2395 | return 1; |
| 2396 | } |
| 2397 | |
| 2398 | if (ret == AF_UNIX) { |
| 2399 | lua_pushstring(L, buffer+1); |
| 2400 | return 1; |
| 2401 | } |
| 2402 | else if (ret == AF_INET6) { |
| 2403 | buffer[0] = '['; |
| 2404 | len = strlen(buffer); |
| 2405 | buffer[len] = ']'; |
| 2406 | len++; |
| 2407 | buffer[len] = ':'; |
| 2408 | len++; |
| 2409 | p = buffer; |
| 2410 | } |
| 2411 | else if (ret == AF_INET) { |
| 2412 | p = buffer + 1; |
| 2413 | len = strlen(p); |
| 2414 | p[len] = ':'; |
| 2415 | len++; |
| 2416 | } |
| 2417 | else { |
| 2418 | lua_pushnil(L); |
| 2419 | return 1; |
| 2420 | } |
| 2421 | |
| 2422 | if (port_to_str(addr, p + len, SOCKET_INFO_MAX_LEN-1 - len) <= 0) { |
| 2423 | lua_pushnil(L); |
| 2424 | return 1; |
| 2425 | } |
| 2426 | |
| 2427 | lua_pushstring(L, p); |
| 2428 | return 1; |
| 2429 | } |
| 2430 | |
| 2431 | /* Returns information about the peer of the connection. */ |
| 2432 | __LJMP static int hlua_socket_getpeername(struct lua_State *L) |
| 2433 | { |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2434 | struct hlua_socket *socket; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2435 | struct xref *peer; |
| 2436 | struct appctx *appctx; |
| 2437 | struct stream_interface *si; |
| 2438 | struct stream *s; |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2439 | int ret; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2440 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2441 | MAY_LJMP(check_args(L, 1, "getpeername")); |
| 2442 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2443 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2444 | |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2445 | /* Check if we run on the same thread than the xreator thread. |
| 2446 | * We cannot access to the socket if the thread is different. |
| 2447 | */ |
| 2448 | if (socket->tid != tid) |
| 2449 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 2450 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2451 | /* check for connection break. If some data where read, return it. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2452 | peer = xref_get_peer_and_lock(&socket->xref); |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2453 | if (!peer) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2454 | lua_pushnil(L); |
| 2455 | return 1; |
| 2456 | } |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2457 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
| 2458 | si = appctx->owner; |
| 2459 | s = si_strm(si); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2460 | |
Willy Tarreau | 5a0b25d | 2019-07-18 18:01:14 +0200 | [diff] [blame] | 2461 | if (!s->target_addr) { |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2462 | xref_unlock(&socket->xref, peer); |
Willy Tarreau | a71f642 | 2016-11-16 17:00:14 +0100 | [diff] [blame] | 2463 | lua_pushnil(L); |
| 2464 | return 1; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2465 | } |
| 2466 | |
Willy Tarreau | 5a0b25d | 2019-07-18 18:01:14 +0200 | [diff] [blame] | 2467 | ret = MAY_LJMP(hlua_socket_info(L, s->target_addr)); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2468 | xref_unlock(&socket->xref, peer); |
| 2469 | return ret; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2470 | } |
| 2471 | |
| 2472 | /* Returns information about my connection side. */ |
| 2473 | static int hlua_socket_getsockname(struct lua_State *L) |
| 2474 | { |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2475 | struct hlua_socket *socket; |
| 2476 | struct connection *conn; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2477 | struct appctx *appctx; |
| 2478 | struct xref *peer; |
| 2479 | struct stream_interface *si; |
| 2480 | struct stream *s; |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2481 | int ret; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2482 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2483 | MAY_LJMP(check_args(L, 1, "getsockname")); |
| 2484 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2485 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2486 | |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2487 | /* Check if we run on the same thread than the xreator thread. |
| 2488 | * We cannot access to the socket if the thread is different. |
| 2489 | */ |
| 2490 | if (socket->tid != tid) |
| 2491 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 2492 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2493 | /* check for connection break. If some data where read, return it. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2494 | peer = xref_get_peer_and_lock(&socket->xref); |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2495 | if (!peer) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2496 | lua_pushnil(L); |
| 2497 | return 1; |
| 2498 | } |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2499 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
| 2500 | si = appctx->owner; |
| 2501 | s = si_strm(si); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2502 | |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 2503 | conn = cs_conn(objt_cs(s->si[1].end)); |
Willy Tarreau | 5a0b25d | 2019-07-18 18:01:14 +0200 | [diff] [blame] | 2504 | if (!conn || !conn_get_src(conn)) { |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2505 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2506 | lua_pushnil(L); |
| 2507 | return 1; |
| 2508 | } |
| 2509 | |
Willy Tarreau | 9da9a6f | 2019-07-17 14:49:44 +0200 | [diff] [blame] | 2510 | ret = hlua_socket_info(L, conn->src); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2511 | xref_unlock(&socket->xref, peer); |
| 2512 | return ret; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2513 | } |
| 2514 | |
| 2515 | /* This struct define the applet. */ |
Willy Tarreau | 3057645 | 2015-04-13 13:50:30 +0200 | [diff] [blame] | 2516 | static struct applet update_applet = { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2517 | .obj_type = OBJ_TYPE_APPLET, |
| 2518 | .name = "<LUA_TCP>", |
| 2519 | .fct = hlua_socket_handler, |
| 2520 | .release = hlua_socket_release, |
| 2521 | }; |
| 2522 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2523 | __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] | 2524 | { |
| 2525 | struct hlua_socket *socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 2526 | struct hlua *hlua; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2527 | struct xref *peer; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2528 | struct appctx *appctx; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2529 | struct stream_interface *si; |
| 2530 | struct stream *s; |
| 2531 | |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 2532 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 2533 | hlua = hlua_gethlua(L); |
| 2534 | if (!hlua) |
| 2535 | return 0; |
| 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 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2543 | /* check for connection break. If some data where 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 | lua_pushnil(L); |
| 2547 | lua_pushstring(L, "Can't connect"); |
| 2548 | return 2; |
| 2549 | } |
| 2550 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
| 2551 | si = appctx->owner; |
| 2552 | s = si_strm(si); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2553 | |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2554 | /* Check if we run on the same thread than the xreator thread. |
| 2555 | * We cannot access to the socket if the thread is different. |
| 2556 | */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2557 | if (socket->tid != tid) { |
| 2558 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2559 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2560 | } |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2561 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2562 | /* Check for connection close. */ |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2563 | if (!hlua || channel_output_closed(&s->req)) { |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2564 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2565 | lua_pushnil(L); |
| 2566 | lua_pushstring(L, "Can't connect"); |
| 2567 | return 2; |
| 2568 | } |
| 2569 | |
Willy Tarreau | e09101e | 2018-10-16 17:37:12 +0200 | [diff] [blame] | 2570 | appctx = __objt_appctx(s->si[0].end); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2571 | |
| 2572 | /* Check for connection established. */ |
Thierry FOURNIER | 18d0990 | 2016-12-16 09:25:38 +0100 | [diff] [blame] | 2573 | if (appctx->ctx.hlua_cosocket.connected) { |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2574 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2575 | lua_pushinteger(L, 1); |
| 2576 | return 1; |
| 2577 | } |
| 2578 | |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2579 | if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_write, hlua->task)) { |
| 2580 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2581 | WILL_LJMP(luaL_error(L, "out of memory error")); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2582 | } |
| 2583 | xref_unlock(&socket->xref, peer); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 2584 | 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] | 2585 | return 0; |
| 2586 | } |
| 2587 | |
| 2588 | /* This function fail or initite the connection. */ |
| 2589 | __LJMP static int hlua_socket_connect(struct lua_State *L) |
| 2590 | { |
| 2591 | struct hlua_socket *socket; |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2592 | int port = -1; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2593 | const char *ip; |
Thierry FOURNIER | 95ad96a | 2015-03-09 18:12:40 +0100 | [diff] [blame] | 2594 | struct hlua *hlua; |
| 2595 | struct appctx *appctx; |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2596 | int low, high; |
| 2597 | struct sockaddr_storage *addr; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2598 | struct xref *peer; |
| 2599 | struct stream_interface *si; |
| 2600 | struct stream *s; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2601 | |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2602 | if (lua_gettop(L) < 2) |
| 2603 | WILL_LJMP(luaL_error(L, "connect: need at least 2 arguments")); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2604 | |
| 2605 | /* Get args. */ |
| 2606 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2607 | |
| 2608 | /* Check if we run on the same thread than the xreator thread. |
| 2609 | * We cannot access to the socket if the thread is different. |
| 2610 | */ |
| 2611 | if (socket->tid != tid) |
| 2612 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 2613 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2614 | ip = MAY_LJMP(luaL_checkstring(L, 2)); |
Tim Duesterhus | 6edab86 | 2018-01-06 19:04:45 +0100 | [diff] [blame] | 2615 | if (lua_gettop(L) >= 3) { |
| 2616 | luaL_Buffer b; |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2617 | port = MAY_LJMP(luaL_checkinteger(L, 3)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2618 | |
Tim Duesterhus | 6edab86 | 2018-01-06 19:04:45 +0100 | [diff] [blame] | 2619 | /* Force the ip to end with a colon, to support IPv6 addresses |
| 2620 | * that are not enclosed within square brackets. |
| 2621 | */ |
| 2622 | if (port > 0) { |
| 2623 | luaL_buffinit(L, &b); |
| 2624 | luaL_addstring(&b, ip); |
| 2625 | luaL_addchar(&b, ':'); |
| 2626 | luaL_pushresult(&b); |
| 2627 | ip = lua_tolstring(L, lua_gettop(L), NULL); |
| 2628 | } |
| 2629 | } |
| 2630 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2631 | /* check for connection break. If some data where read, return it. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2632 | peer = xref_get_peer_and_lock(&socket->xref); |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2633 | if (!peer) { |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2634 | lua_pushnil(L); |
| 2635 | return 1; |
| 2636 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2637 | |
| 2638 | /* Parse ip address. */ |
Willy Tarreau | 5fc9328 | 2020-09-16 18:25:03 +0200 | [diff] [blame] | 2639 | addr = str2sa_range(ip, NULL, &low, &high, NULL, NULL, NULL, NULL, NULL, PA_O_PORT_OK | PA_O_STREAM); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2640 | if (!addr) { |
| 2641 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2642 | WILL_LJMP(luaL_error(L, "connect: cannot parse destination address '%s'", ip)); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2643 | } |
Willy Tarreau | 9da9a6f | 2019-07-17 14:49:44 +0200 | [diff] [blame] | 2644 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2645 | /* Set port. */ |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2646 | if (low == 0) { |
Willy Tarreau | 1c8d32b | 2019-07-18 15:47:45 +0200 | [diff] [blame] | 2647 | if (addr->ss_family == AF_INET) { |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2648 | if (port == -1) { |
| 2649 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2650 | WILL_LJMP(luaL_error(L, "connect: port missing")); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2651 | } |
Willy Tarreau | 1c8d32b | 2019-07-18 15:47:45 +0200 | [diff] [blame] | 2652 | ((struct sockaddr_in *)addr)->sin_port = htons(port); |
| 2653 | } else if (addr->ss_family == AF_INET6) { |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2654 | if (port == -1) { |
| 2655 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2656 | WILL_LJMP(luaL_error(L, "connect: port missing")); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2657 | } |
Willy Tarreau | 1c8d32b | 2019-07-18 15:47:45 +0200 | [diff] [blame] | 2658 | ((struct sockaddr_in6 *)addr)->sin6_port = htons(port); |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2659 | } |
| 2660 | } |
Willy Tarreau | 1c8d32b | 2019-07-18 15:47:45 +0200 | [diff] [blame] | 2661 | |
Willy Tarreau | 5a0b25d | 2019-07-18 18:01:14 +0200 | [diff] [blame] | 2662 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
| 2663 | si = appctx->owner; |
| 2664 | s = si_strm(si); |
Willy Tarreau | 1c8d32b | 2019-07-18 15:47:45 +0200 | [diff] [blame] | 2665 | |
Willy Tarreau | 9b7587a | 2020-10-15 07:32:10 +0200 | [diff] [blame] | 2666 | if (!sockaddr_alloc(&s->target_addr, addr, sizeof(*addr))) { |
Willy Tarreau | 1c8d32b | 2019-07-18 15:47:45 +0200 | [diff] [blame] | 2667 | xref_unlock(&socket->xref, peer); |
| 2668 | WILL_LJMP(luaL_error(L, "connect: internal error")); |
| 2669 | } |
Willy Tarreau | 5a0b25d | 2019-07-18 18:01:14 +0200 | [diff] [blame] | 2670 | s->flags |= SF_ADDR_SET; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2671 | |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 2672 | /* Get hlua struct, or NULL if we execute from main lua state */ |
Thierry FOURNIER | 95ad96a | 2015-03-09 18:12:40 +0100 | [diff] [blame] | 2673 | hlua = hlua_gethlua(L); |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 2674 | if (!hlua) |
| 2675 | return 0; |
Willy Tarreau | bdc97a8 | 2015-08-24 15:42:28 +0200 | [diff] [blame] | 2676 | |
| 2677 | /* inform the stream that we want to be notified whenever the |
| 2678 | * connection completes. |
| 2679 | */ |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 2680 | si_cant_get(&s->si[0]); |
Willy Tarreau | 3367d41 | 2018-11-15 10:57:41 +0100 | [diff] [blame] | 2681 | si_rx_endp_more(&s->si[0]); |
Thierry FOURNIER | 8c8fbbe | 2015-09-26 17:02:35 +0200 | [diff] [blame] | 2682 | appctx_wakeup(appctx); |
Willy Tarreau | bdc97a8 | 2015-08-24 15:42:28 +0200 | [diff] [blame] | 2683 | |
Willy Tarreau | f31af93 | 2020-01-14 09:59:38 +0100 | [diff] [blame] | 2684 | hlua->gc_count++; |
Thierry FOURNIER | 7c39ab4 | 2015-09-27 22:53:33 +0200 | [diff] [blame] | 2685 | |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2686 | if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_write, hlua->task)) { |
| 2687 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 95ad96a | 2015-03-09 18:12:40 +0100 | [diff] [blame] | 2688 | WILL_LJMP(luaL_error(L, "out of memory")); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2689 | } |
| 2690 | xref_unlock(&socket->xref, peer); |
PiBa-NL | 706d5ee | 2018-05-05 23:51:42 +0200 | [diff] [blame] | 2691 | |
| 2692 | task_wakeup(s->task, TASK_WOKEN_INIT); |
| 2693 | /* Return yield waiting for connection. */ |
| 2694 | |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 2695 | 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] | 2696 | |
| 2697 | return 0; |
| 2698 | } |
| 2699 | |
Baptiste Assmann | 84bb493 | 2015-03-02 21:40:06 +0100 | [diff] [blame] | 2700 | #ifdef USE_OPENSSL |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2701 | __LJMP static int hlua_socket_connect_ssl(struct lua_State *L) |
| 2702 | { |
| 2703 | struct hlua_socket *socket; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2704 | struct xref *peer; |
| 2705 | struct appctx *appctx; |
| 2706 | struct stream_interface *si; |
| 2707 | struct stream *s; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2708 | |
| 2709 | MAY_LJMP(check_args(L, 3, "connect_ssl")); |
| 2710 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2711 | |
| 2712 | /* check for connection break. If some data where read, return it. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2713 | peer = xref_get_peer_and_lock(&socket->xref); |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2714 | if (!peer) { |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2715 | lua_pushnil(L); |
| 2716 | return 1; |
| 2717 | } |
| 2718 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
| 2719 | si = appctx->owner; |
| 2720 | s = si_strm(si); |
| 2721 | |
| 2722 | s->target = &socket_ssl.obj_type; |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2723 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2724 | return MAY_LJMP(hlua_socket_connect(L)); |
| 2725 | } |
Baptiste Assmann | 84bb493 | 2015-03-02 21:40:06 +0100 | [diff] [blame] | 2726 | #endif |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2727 | |
| 2728 | __LJMP static int hlua_socket_setoption(struct lua_State *L) |
| 2729 | { |
| 2730 | return 0; |
| 2731 | } |
| 2732 | |
| 2733 | __LJMP static int hlua_socket_settimeout(struct lua_State *L) |
| 2734 | { |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2735 | struct hlua_socket *socket; |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2736 | int tmout; |
Mark Lakes | 56cc125 | 2018-03-27 09:48:06 +0200 | [diff] [blame] | 2737 | double dtmout; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2738 | struct xref *peer; |
| 2739 | struct appctx *appctx; |
| 2740 | struct stream_interface *si; |
| 2741 | struct stream *s; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2742 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2743 | MAY_LJMP(check_args(L, 2, "settimeout")); |
| 2744 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2745 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Mark Lakes | 56cc125 | 2018-03-27 09:48:06 +0200 | [diff] [blame] | 2746 | |
Cyril Bonté | 7ee465f | 2018-08-19 22:08:50 +0200 | [diff] [blame] | 2747 | /* convert the timeout to millis */ |
| 2748 | dtmout = MAY_LJMP(luaL_checknumber(L, 2)) * 1000; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2749 | |
Thierry Fournier | 17a921b | 2018-03-08 09:59:02 +0100 | [diff] [blame] | 2750 | /* Check for negative values */ |
Mark Lakes | 56cc125 | 2018-03-27 09:48:06 +0200 | [diff] [blame] | 2751 | if (dtmout < 0) |
Thierry Fournier | 17a921b | 2018-03-08 09:59:02 +0100 | [diff] [blame] | 2752 | WILL_LJMP(luaL_error(L, "settimeout: cannot set negatives values")); |
| 2753 | |
Mark Lakes | 56cc125 | 2018-03-27 09:48:06 +0200 | [diff] [blame] | 2754 | if (dtmout > INT_MAX) /* overflow check */ |
Cyril Bonté | 7ee465f | 2018-08-19 22:08:50 +0200 | [diff] [blame] | 2755 | 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] | 2756 | |
| 2757 | tmout = MS_TO_TICKS((int)dtmout); |
Cyril Bonté | 7ee465f | 2018-08-19 22:08:50 +0200 | [diff] [blame] | 2758 | if (tmout == 0) |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 2759 | tmout++; /* very small timeouts are adjusted to a minimum of 1ms */ |
Mark Lakes | 56cc125 | 2018-03-27 09:48:06 +0200 | [diff] [blame] | 2760 | |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2761 | /* Check if we run on the same thread than the xreator thread. |
| 2762 | * We cannot access to the socket if the thread is different. |
| 2763 | */ |
| 2764 | if (socket->tid != tid) |
| 2765 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 2766 | |
Mark Lakes | 56cc125 | 2018-03-27 09:48:06 +0200 | [diff] [blame] | 2767 | /* check for connection break. If some data were read, return it. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2768 | peer = xref_get_peer_and_lock(&socket->xref); |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2769 | if (!peer) { |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2770 | hlua_pusherror(L, "socket: not yet initialised, you can't set timeouts."); |
| 2771 | WILL_LJMP(lua_error(L)); |
| 2772 | return 0; |
| 2773 | } |
| 2774 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
| 2775 | si = appctx->owner; |
| 2776 | s = si_strm(si); |
| 2777 | |
Cyril Bonté | 7bb6345 | 2018-08-17 23:51:02 +0200 | [diff] [blame] | 2778 | s->sess->fe->timeout.connect = tmout; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2779 | s->req.rto = tmout; |
| 2780 | s->req.wto = tmout; |
| 2781 | s->res.rto = tmout; |
| 2782 | s->res.wto = tmout; |
Cyril Bonté | 7bb6345 | 2018-08-17 23:51:02 +0200 | [diff] [blame] | 2783 | s->req.rex = tick_add_ifset(now_ms, tmout); |
| 2784 | s->req.wex = tick_add_ifset(now_ms, tmout); |
| 2785 | s->res.rex = tick_add_ifset(now_ms, tmout); |
| 2786 | s->res.wex = tick_add_ifset(now_ms, tmout); |
| 2787 | |
| 2788 | s->task->expire = tick_add_ifset(now_ms, tmout); |
| 2789 | task_queue(s->task); |
| 2790 | |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2791 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2792 | |
Thierry Fournier | e9636f1 | 2018-03-08 09:54:32 +0100 | [diff] [blame] | 2793 | lua_pushinteger(L, 1); |
Tim Duesterhus | 119a5f1 | 2018-01-06 19:16:25 +0100 | [diff] [blame] | 2794 | return 1; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2795 | } |
| 2796 | |
| 2797 | __LJMP static int hlua_socket_new(lua_State *L) |
| 2798 | { |
| 2799 | struct hlua_socket *socket; |
| 2800 | struct appctx *appctx; |
Willy Tarreau | 15b5e14 | 2015-04-04 14:38:25 +0200 | [diff] [blame] | 2801 | struct session *sess; |
Willy Tarreau | 61cf7c8 | 2015-04-06 00:48:33 +0200 | [diff] [blame] | 2802 | struct stream *strm; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2803 | |
| 2804 | /* Check stack size. */ |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 2805 | if (!lua_checkstack(L, 3)) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2806 | hlua_pusherror(L, "socket: full stack"); |
| 2807 | goto out_fail_conf; |
| 2808 | } |
| 2809 | |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 2810 | /* Create the object: obj[0] = userdata. */ |
| 2811 | lua_newtable(L); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2812 | socket = MAY_LJMP(lua_newuserdata(L, sizeof(*socket))); |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 2813 | lua_rawseti(L, -2, 0); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2814 | memset(socket, 0, sizeof(*socket)); |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2815 | socket->tid = tid; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2816 | |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 2817 | /* Check if the various memory pools are initialized. */ |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 2818 | if (!pool_head_stream || !pool_head_buffer) { |
Thierry FOURNIER | 4a6170c | 2015-03-09 17:07:10 +0100 | [diff] [blame] | 2819 | hlua_pusherror(L, "socket: uninitialized pools."); |
| 2820 | goto out_fail_conf; |
| 2821 | } |
| 2822 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 2823 | /* Pop a class stream metatable and affect it to the userdata. */ |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2824 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_socket_ref); |
| 2825 | lua_setmetatable(L, -2); |
| 2826 | |
Willy Tarreau | d420a97 | 2015-04-06 00:39:18 +0200 | [diff] [blame] | 2827 | /* Create the applet context */ |
Willy Tarreau | 5f4a47b | 2017-10-31 15:59:32 +0100 | [diff] [blame] | 2828 | appctx = appctx_new(&update_applet, tid_bit); |
Willy Tarreau | 61cf7c8 | 2015-04-06 00:48:33 +0200 | [diff] [blame] | 2829 | if (!appctx) { |
| 2830 | hlua_pusherror(L, "socket: out of memory"); |
Willy Tarreau | feb7640 | 2015-04-03 14:10:06 +0200 | [diff] [blame] | 2831 | goto out_fail_conf; |
Willy Tarreau | 61cf7c8 | 2015-04-06 00:48:33 +0200 | [diff] [blame] | 2832 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2833 | |
Thierry FOURNIER | 18d0990 | 2016-12-16 09:25:38 +0100 | [diff] [blame] | 2834 | appctx->ctx.hlua_cosocket.connected = 0; |
Thierry FOURNIER | b13b20a | 2017-07-16 20:48:54 +0200 | [diff] [blame] | 2835 | appctx->ctx.hlua_cosocket.die = 0; |
Thierry FOURNIER | 18d0990 | 2016-12-16 09:25:38 +0100 | [diff] [blame] | 2836 | LIST_INIT(&appctx->ctx.hlua_cosocket.wake_on_write); |
| 2837 | LIST_INIT(&appctx->ctx.hlua_cosocket.wake_on_read); |
Willy Tarreau | b2bf833 | 2015-04-04 15:58:58 +0200 | [diff] [blame] | 2838 | |
Willy Tarreau | d420a97 | 2015-04-06 00:39:18 +0200 | [diff] [blame] | 2839 | /* Now create a session, task and stream for this applet */ |
| 2840 | sess = session_new(&socket_proxy, NULL, &appctx->obj_type); |
| 2841 | if (!sess) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2842 | hlua_pusherror(L, "socket: out of memory"); |
Willy Tarreau | d420a97 | 2015-04-06 00:39:18 +0200 | [diff] [blame] | 2843 | goto out_fail_sess; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2844 | } |
| 2845 | |
Willy Tarreau | 87787ac | 2017-08-28 16:22:54 +0200 | [diff] [blame] | 2846 | strm = stream_new(sess, &appctx->obj_type); |
Willy Tarreau | 61cf7c8 | 2015-04-06 00:48:33 +0200 | [diff] [blame] | 2847 | if (!strm) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2848 | hlua_pusherror(L, "socket: out of memory"); |
Willy Tarreau | d420a97 | 2015-04-06 00:39:18 +0200 | [diff] [blame] | 2849 | goto out_fail_stream; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2850 | } |
| 2851 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2852 | /* Initialise cross reference between stream and Lua socket object. */ |
| 2853 | xref_create(&socket->xref, &appctx->ctx.hlua_cosocket.xref); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2854 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2855 | /* Configure "right" stream interface. this "si" is used to connect |
| 2856 | * and retrieve data from the server. The connection is initialized |
| 2857 | * with the "struct server". |
| 2858 | */ |
Willy Tarreau | 61cf7c8 | 2015-04-06 00:48:33 +0200 | [diff] [blame] | 2859 | si_set_state(&strm->si[1], SI_ST_ASS); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2860 | |
| 2861 | /* Force destination server. */ |
Willy Tarreau | 5a0b25d | 2019-07-18 18:01:14 +0200 | [diff] [blame] | 2862 | strm->flags |= SF_DIRECT | SF_ASSIGNED | SF_BE_ASSIGNED; |
Willy Tarreau | 61cf7c8 | 2015-04-06 00:48:33 +0200 | [diff] [blame] | 2863 | strm->target = &socket_tcp.obj_type; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2864 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2865 | return 1; |
| 2866 | |
Willy Tarreau | d420a97 | 2015-04-06 00:39:18 +0200 | [diff] [blame] | 2867 | out_fail_stream: |
Willy Tarreau | 11c3624 | 2015-04-04 15:54:03 +0200 | [diff] [blame] | 2868 | session_free(sess); |
Willy Tarreau | d420a97 | 2015-04-06 00:39:18 +0200 | [diff] [blame] | 2869 | out_fail_sess: |
| 2870 | appctx_free(appctx); |
| 2871 | out_fail_conf: |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2872 | WILL_LJMP(lua_error(L)); |
| 2873 | return 0; |
| 2874 | } |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 2875 | |
| 2876 | /* |
| 2877 | * |
| 2878 | * |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2879 | * Class Channel |
| 2880 | * |
| 2881 | * |
| 2882 | */ |
| 2883 | |
| 2884 | /* Returns the struct hlua_channel join to the class channel in the |
| 2885 | * stack entry "ud" or throws an argument error. |
| 2886 | */ |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 2887 | __LJMP static struct channel *hlua_checkchannel(lua_State *L, int ud) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2888 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 2889 | return MAY_LJMP(hlua_checkudata(L, ud, class_channel_ref)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2890 | } |
| 2891 | |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 2892 | /* Pushes the channel onto the top of the stack. If the stask does not have a |
| 2893 | * free slots, the function fails and returns 0; |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2894 | */ |
Willy Tarreau | 2a71af4 | 2015-03-10 13:51:50 +0100 | [diff] [blame] | 2895 | static int hlua_channel_new(lua_State *L, struct channel *channel) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2896 | { |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2897 | /* Check stack size. */ |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 2898 | if (!lua_checkstack(L, 3)) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2899 | return 0; |
| 2900 | |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 2901 | lua_newtable(L); |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 2902 | lua_pushlightuserdata(L, channel); |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 2903 | lua_rawseti(L, -2, 0); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2904 | |
| 2905 | /* Pop a class sesison metatable and affect it to the userdata. */ |
| 2906 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_channel_ref); |
| 2907 | lua_setmetatable(L, -2); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2908 | return 1; |
| 2909 | } |
| 2910 | |
| 2911 | /* Duplicate all the data present in the input channel and put it |
| 2912 | * in a string LUA variables. Returns -1 and push a nil value in |
| 2913 | * the stack if the channel is closed and all the data are consumed, |
| 2914 | * returns 0 if no data are available, otherwise it returns the length |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 2915 | * of the built string. |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2916 | */ |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 2917 | static inline int _hlua_channel_dup(struct channel *chn, lua_State *L) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2918 | { |
| 2919 | char *blk1; |
| 2920 | char *blk2; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 2921 | size_t len1; |
| 2922 | size_t len2; |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2923 | int ret; |
| 2924 | luaL_Buffer b; |
| 2925 | |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 2926 | ret = ci_getblk_nc(chn, &blk1, &len1, &blk2, &len2); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2927 | if (unlikely(ret == 0)) |
| 2928 | return 0; |
| 2929 | |
| 2930 | if (unlikely(ret < 0)) { |
| 2931 | lua_pushnil(L); |
| 2932 | return -1; |
| 2933 | } |
| 2934 | |
| 2935 | luaL_buffinit(L, &b); |
| 2936 | luaL_addlstring(&b, blk1, len1); |
| 2937 | if (unlikely(ret == 2)) |
| 2938 | luaL_addlstring(&b, blk2, len2); |
| 2939 | luaL_pushresult(&b); |
| 2940 | |
| 2941 | if (unlikely(ret == 2)) |
| 2942 | return len1 + len2; |
| 2943 | return len1; |
| 2944 | } |
| 2945 | |
| 2946 | /* "_hlua_channel_dup" wrapper. If no data are available, it returns |
| 2947 | * a yield. This function keep the data in the buffer. |
| 2948 | */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2949 | __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] | 2950 | { |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 2951 | struct channel *chn; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2952 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2953 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
| 2954 | |
Thierry Fournier | 77016da | 2020-08-15 14:35:51 +0200 | [diff] [blame] | 2955 | if (chn_strm(chn)->be->mode == PR_MODE_HTTP) { |
| 2956 | lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode."); |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 2957 | WILL_LJMP(lua_error(L)); |
Thierry Fournier | 77016da | 2020-08-15 14:35:51 +0200 | [diff] [blame] | 2958 | } |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 2959 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2960 | if (_hlua_channel_dup(chn, L) == 0) |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 2961 | 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] | 2962 | return 1; |
| 2963 | } |
| 2964 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2965 | /* Check arguments for the function "hlua_channel_dup_yield". */ |
| 2966 | __LJMP static int hlua_channel_dup(lua_State *L) |
| 2967 | { |
| 2968 | MAY_LJMP(check_args(L, 1, "dup")); |
| 2969 | MAY_LJMP(hlua_checkchannel(L, 1)); |
| 2970 | return MAY_LJMP(hlua_channel_dup_yield(L, 0, 0)); |
| 2971 | } |
| 2972 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2973 | /* "_hlua_channel_dup" wrapper. If no data are available, it returns |
| 2974 | * a yield. This function consumes the data in the buffer. It returns |
| 2975 | * a string containing the data or a nil pointer if no data are available |
| 2976 | * and the channel is closed. |
| 2977 | */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2978 | __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] | 2979 | { |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 2980 | struct channel *chn; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2981 | int ret; |
| 2982 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2983 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2984 | |
Thierry Fournier | 77016da | 2020-08-15 14:35:51 +0200 | [diff] [blame] | 2985 | if (chn_strm(chn)->be->mode == PR_MODE_HTTP) { |
| 2986 | lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode."); |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 2987 | WILL_LJMP(lua_error(L)); |
Thierry Fournier | 77016da | 2020-08-15 14:35:51 +0200 | [diff] [blame] | 2988 | } |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 2989 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2990 | ret = _hlua_channel_dup(chn, L); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2991 | if (unlikely(ret == 0)) |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 2992 | 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] | 2993 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2994 | if (unlikely(ret == -1)) |
| 2995 | return 1; |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2996 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2997 | b_sub(&chn->buf, ret); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2998 | return 1; |
| 2999 | } |
| 3000 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3001 | /* Check arguments for the function "hlua_channel_get_yield". */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3002 | __LJMP static int hlua_channel_get(lua_State *L) |
| 3003 | { |
| 3004 | MAY_LJMP(check_args(L, 1, "get")); |
| 3005 | MAY_LJMP(hlua_checkchannel(L, 1)); |
| 3006 | return MAY_LJMP(hlua_channel_get_yield(L, 0, 0)); |
| 3007 | } |
| 3008 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3009 | /* This functions consumes and returns one line. If the channel is closed, |
| 3010 | * 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] | 3011 | * 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] | 3012 | * value. |
| 3013 | */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3014 | __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] | 3015 | { |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3016 | char *blk1; |
| 3017 | char *blk2; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 3018 | size_t len1; |
| 3019 | size_t len2; |
| 3020 | size_t len; |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3021 | struct channel *chn; |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3022 | int ret; |
| 3023 | luaL_Buffer b; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3024 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3025 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
| 3026 | |
Thierry Fournier | 77016da | 2020-08-15 14:35:51 +0200 | [diff] [blame] | 3027 | if (chn_strm(chn)->be->mode == PR_MODE_HTTP) { |
| 3028 | lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode."); |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 3029 | WILL_LJMP(lua_error(L)); |
Thierry Fournier | 77016da | 2020-08-15 14:35:51 +0200 | [diff] [blame] | 3030 | } |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 3031 | |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 3032 | ret = ci_getline_nc(chn, &blk1, &len1, &blk2, &len2); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3033 | if (ret == 0) |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 3034 | 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] | 3035 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3036 | if (ret == -1) { |
| 3037 | lua_pushnil(L); |
| 3038 | return 1; |
| 3039 | } |
| 3040 | |
| 3041 | luaL_buffinit(L, &b); |
| 3042 | luaL_addlstring(&b, blk1, len1); |
| 3043 | len = len1; |
| 3044 | if (unlikely(ret == 2)) { |
| 3045 | luaL_addlstring(&b, blk2, len2); |
| 3046 | len += len2; |
| 3047 | } |
| 3048 | luaL_pushresult(&b); |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3049 | 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] | 3050 | return 1; |
| 3051 | } |
| 3052 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3053 | /* Check arguments for the function "hlua_channel_getline_yield". */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3054 | __LJMP static int hlua_channel_getline(lua_State *L) |
| 3055 | { |
| 3056 | MAY_LJMP(check_args(L, 1, "getline")); |
| 3057 | MAY_LJMP(hlua_checkchannel(L, 1)); |
| 3058 | return MAY_LJMP(hlua_channel_getline_yield(L, 0, 0)); |
| 3059 | } |
| 3060 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3061 | /* This function takes a string as input, and append it at the |
| 3062 | * input side of channel. If the data is too big, but a space |
| 3063 | * is probably available after sending some data, the function |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3064 | * yields. If the data is bigger than the buffer, or if the |
| 3065 | * channel is closed, it returns -1. Otherwise, it returns the |
| 3066 | * amount of data written. |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3067 | */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3068 | __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] | 3069 | { |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3070 | struct channel *chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3071 | size_t len; |
| 3072 | const char *str = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 3073 | int l = MAY_LJMP(luaL_checkinteger(L, 3)); |
| 3074 | int ret; |
| 3075 | int max; |
| 3076 | |
Thierry Fournier | 77016da | 2020-08-15 14:35:51 +0200 | [diff] [blame] | 3077 | if (chn_strm(chn)->be->mode == PR_MODE_HTTP) { |
| 3078 | lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode."); |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 3079 | WILL_LJMP(lua_error(L)); |
Thierry Fournier | 77016da | 2020-08-15 14:35:51 +0200 | [diff] [blame] | 3080 | } |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 3081 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3082 | /* Check if the buffer is available because HAProxy doesn't allocate |
Christopher Faulet | a73e59b | 2016-12-09 17:30:18 +0100 | [diff] [blame] | 3083 | * the request buffer if its not required. |
| 3084 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3085 | if (chn->buf.size == 0) { |
Willy Tarreau | 4b962a4 | 2018-11-15 11:03:21 +0100 | [diff] [blame] | 3086 | si_rx_buff_blk(chn_prod(chn)); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 3087 | 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] | 3088 | } |
| 3089 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3090 | max = channel_recv_limit(chn) - b_data(&chn->buf); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3091 | if (max > len - l) |
| 3092 | max = len - l; |
| 3093 | |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 3094 | ret = ci_putblk(chn, str + l, max); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3095 | if (ret == -2 || ret == -3) { |
| 3096 | lua_pushinteger(L, -1); |
| 3097 | return 1; |
| 3098 | } |
Willy Tarreau | bc18da1 | 2015-03-13 14:00:47 +0100 | [diff] [blame] | 3099 | if (ret == -1) { |
| 3100 | chn->flags |= CF_WAKE_WRITE; |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 3101 | 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] | 3102 | } |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3103 | l += ret; |
| 3104 | lua_pop(L, 1); |
| 3105 | lua_pushinteger(L, l); |
| 3106 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3107 | max = channel_recv_limit(chn) - b_data(&chn->buf); |
Willy Tarreau | a79021a | 2018-06-15 18:07:57 +0200 | [diff] [blame] | 3108 | if (max == 0 && co_data(chn) == 0) { |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3109 | /* There are no space available, and the output buffer is empty. |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3110 | * in this case, we cannot add more data, so we cannot yield, |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 3111 | * we return the amount of copied data. |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3112 | */ |
| 3113 | return 1; |
| 3114 | } |
| 3115 | if (l < len) |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 3116 | 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] | 3117 | return 1; |
| 3118 | } |
| 3119 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3120 | /* Just a wrapper of "hlua_channel_append_yield". It returns the length |
| 3121 | * 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] | 3122 | * buffer size is too little for the data. |
| 3123 | */ |
| 3124 | __LJMP static int hlua_channel_append(lua_State *L) |
| 3125 | { |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3126 | size_t len; |
| 3127 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3128 | MAY_LJMP(check_args(L, 2, "append")); |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3129 | MAY_LJMP(hlua_checkchannel(L, 1)); |
| 3130 | MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 3131 | MAY_LJMP(luaL_checkinteger(L, 3)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3132 | lua_pushinteger(L, 0); |
| 3133 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3134 | return MAY_LJMP(hlua_channel_append_yield(L, 0, 0)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3135 | } |
| 3136 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3137 | /* Just a wrapper of "hlua_channel_append_yield". This wrapper starts |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3138 | * his process by cleaning the buffer. The result is a replacement |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3139 | * of the current data. It returns the length of the written string, |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3140 | * or -1 if the channel is closed or if the buffer size is too |
| 3141 | * little for the data. |
| 3142 | */ |
| 3143 | __LJMP static int hlua_channel_set(lua_State *L) |
| 3144 | { |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3145 | struct channel *chn; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3146 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3147 | MAY_LJMP(check_args(L, 2, "set")); |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3148 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3149 | lua_pushinteger(L, 0); |
| 3150 | |
Thierry Fournier | 77016da | 2020-08-15 14:35:51 +0200 | [diff] [blame] | 3151 | if (chn_strm(chn)->be->mode == PR_MODE_HTTP) { |
| 3152 | lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode."); |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 3153 | WILL_LJMP(lua_error(L)); |
Thierry Fournier | 77016da | 2020-08-15 14:35:51 +0200 | [diff] [blame] | 3154 | } |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 3155 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3156 | b_set_data(&chn->buf, co_data(chn)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3157 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3158 | return MAY_LJMP(hlua_channel_append_yield(L, 0, 0)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3159 | } |
| 3160 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3161 | /* Append data in the output side of the buffer. This data is immediately |
| 3162 | * sent. The function returns the amount of data written. If the buffer |
| 3163 | * cannot contain the data, the function yields. The function returns -1 |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3164 | * if the channel is closed. |
| 3165 | */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3166 | __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] | 3167 | { |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3168 | struct channel *chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3169 | size_t len; |
| 3170 | const char *str = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 3171 | int l = MAY_LJMP(luaL_checkinteger(L, 3)); |
| 3172 | int max; |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 3173 | struct hlua *hlua; |
| 3174 | |
| 3175 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 3176 | hlua = hlua_gethlua(L); |
| 3177 | if (!hlua) { |
| 3178 | lua_pushnil(L); |
| 3179 | return 1; |
| 3180 | } |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3181 | |
Thierry Fournier | 77016da | 2020-08-15 14:35:51 +0200 | [diff] [blame] | 3182 | if (chn_strm(chn)->be->mode == PR_MODE_HTTP) { |
| 3183 | lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode."); |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 3184 | WILL_LJMP(lua_error(L)); |
Thierry Fournier | 77016da | 2020-08-15 14:35:51 +0200 | [diff] [blame] | 3185 | } |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 3186 | |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3187 | if (unlikely(channel_output_closed(chn))) { |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3188 | lua_pushinteger(L, -1); |
| 3189 | return 1; |
| 3190 | } |
| 3191 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3192 | /* Check if the buffer is available because HAProxy doesn't allocate |
Thierry FOURNIER | 3e3a608 | 2015-03-05 17:06:12 +0100 | [diff] [blame] | 3193 | * the request buffer if its not required. |
| 3194 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3195 | if (chn->buf.size == 0) { |
Willy Tarreau | 4b962a4 | 2018-11-15 11:03:21 +0100 | [diff] [blame] | 3196 | si_rx_buff_blk(chn_prod(chn)); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 3197 | 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] | 3198 | } |
| 3199 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3200 | /* The written data will be immediately sent, so we can check |
| 3201 | * the available space without taking in account the reserve. |
| 3202 | * The reserve is guaranteed for the processing of incoming |
Thierry FOURNIER | deb5d73 | 2015-03-06 01:07:45 +0100 | [diff] [blame] | 3203 | * data, because the buffer will be flushed. |
| 3204 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3205 | max = b_room(&chn->buf); |
Thierry FOURNIER | deb5d73 | 2015-03-06 01:07:45 +0100 | [diff] [blame] | 3206 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3207 | /* If there is no space available, and the output buffer is empty. |
Thierry FOURNIER | deb5d73 | 2015-03-06 01:07:45 +0100 | [diff] [blame] | 3208 | * in this case, we cannot add more data, so we cannot yield, |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 3209 | * we return the amount of copied data. |
Thierry FOURNIER | deb5d73 | 2015-03-06 01:07:45 +0100 | [diff] [blame] | 3210 | */ |
Willy Tarreau | a79021a | 2018-06-15 18:07:57 +0200 | [diff] [blame] | 3211 | if (max == 0 && co_data(chn) == 0) |
Thierry FOURNIER | deb5d73 | 2015-03-06 01:07:45 +0100 | [diff] [blame] | 3212 | return 1; |
| 3213 | |
| 3214 | /* Adjust the real required length. */ |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3215 | if (max > len - l) |
| 3216 | max = len - l; |
| 3217 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3218 | /* The buffer available size may be not contiguous. This test |
Thierry FOURNIER | deb5d73 | 2015-03-06 01:07:45 +0100 | [diff] [blame] | 3219 | * detects a non contiguous buffer and realign it. |
| 3220 | */ |
Willy Tarreau | 3f67999 | 2018-06-15 15:06:42 +0200 | [diff] [blame] | 3221 | if (ci_space_for_replace(chn) < max) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3222 | channel_slow_realign(chn, trash.area); |
Thierry FOURNIER | deb5d73 | 2015-03-06 01:07:45 +0100 | [diff] [blame] | 3223 | |
| 3224 | /* Copy input data in the buffer. */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3225 | 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] | 3226 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3227 | /* buffer replace considers that the input part is filled. |
| 3228 | * so, I must forward these new data in the output part. |
| 3229 | */ |
Willy Tarreau | bcbd393 | 2018-06-06 07:13:22 +0200 | [diff] [blame] | 3230 | c_adv(chn, max); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3231 | |
| 3232 | l += max; |
| 3233 | lua_pop(L, 1); |
| 3234 | lua_pushinteger(L, l); |
| 3235 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3236 | /* If there is no space available, and the output buffer is empty. |
Thierry FOURNIER | deb5d73 | 2015-03-06 01:07:45 +0100 | [diff] [blame] | 3237 | * in this case, we cannot add more data, so we cannot yield, |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 3238 | * we return the amount of copied data. |
Thierry FOURNIER | deb5d73 | 2015-03-06 01:07:45 +0100 | [diff] [blame] | 3239 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3240 | max = b_room(&chn->buf); |
Willy Tarreau | a79021a | 2018-06-15 18:07:57 +0200 | [diff] [blame] | 3241 | if (max == 0 && co_data(chn) == 0) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3242 | return 1; |
Thierry FOURNIER | deb5d73 | 2015-03-06 01:07:45 +0100 | [diff] [blame] | 3243 | |
Thierry FOURNIER | ef6a211 | 2015-03-05 17:45:34 +0100 | [diff] [blame] | 3244 | if (l < len) { |
| 3245 | /* If we are waiting for space in the response buffer, we |
| 3246 | * must set the flag WAKERESWR. This flag required the task |
| 3247 | * wake up if any activity is detected on the response buffer. |
| 3248 | */ |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3249 | if (chn->flags & CF_ISRESP) |
Thierry FOURNIER | ef6a211 | 2015-03-05 17:45:34 +0100 | [diff] [blame] | 3250 | HLUA_SET_WAKERESWR(hlua); |
Thierry FOURNIER | 53e08ec | 2015-03-06 00:35:53 +0100 | [diff] [blame] | 3251 | else |
| 3252 | HLUA_SET_WAKEREQWR(hlua); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 3253 | 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] | 3254 | } |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3255 | |
| 3256 | return 1; |
| 3257 | } |
| 3258 | |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 3259 | /* Just a wrapper of "_hlua_channel_send". This wrapper permits |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3260 | * yield the LUA process, and resume it without checking the |
| 3261 | * input arguments. |
| 3262 | */ |
| 3263 | __LJMP static int hlua_channel_send(lua_State *L) |
| 3264 | { |
| 3265 | MAY_LJMP(check_args(L, 2, "send")); |
| 3266 | lua_pushinteger(L, 0); |
| 3267 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3268 | return MAY_LJMP(hlua_channel_send_yield(L, 0, 0)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3269 | } |
| 3270 | |
| 3271 | /* This function forward and amount of butes. The data pass from |
| 3272 | * the input side of the buffer to the output side, and can be |
| 3273 | * forwarded. This function never fails. |
| 3274 | * |
| 3275 | * The Lua function takes an amount of bytes to be forwarded in |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 3276 | * input. It returns the number of bytes forwarded. |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3277 | */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3278 | __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] | 3279 | { |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3280 | struct channel *chn; |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3281 | int len; |
| 3282 | int l; |
| 3283 | int max; |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 3284 | struct hlua *hlua; |
| 3285 | |
| 3286 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 3287 | hlua = hlua_gethlua(L); |
| 3288 | if (!hlua) |
| 3289 | return 1; |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3290 | |
| 3291 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 3292 | |
Thierry Fournier | 77016da | 2020-08-15 14:35:51 +0200 | [diff] [blame] | 3293 | if (chn_strm(chn)->be->mode == PR_MODE_HTTP) { |
| 3294 | lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode."); |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 3295 | WILL_LJMP(lua_error(L)); |
Thierry Fournier | 77016da | 2020-08-15 14:35:51 +0200 | [diff] [blame] | 3296 | } |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 3297 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3298 | len = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 3299 | l = MAY_LJMP(luaL_checkinteger(L, -1)); |
| 3300 | |
| 3301 | max = len - l; |
Willy Tarreau | a79021a | 2018-06-15 18:07:57 +0200 | [diff] [blame] | 3302 | if (max > ci_data(chn)) |
| 3303 | max = ci_data(chn); |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3304 | channel_forward(chn, max); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3305 | l += max; |
| 3306 | |
| 3307 | lua_pop(L, 1); |
| 3308 | lua_pushinteger(L, l); |
| 3309 | |
| 3310 | /* Check if it miss bytes to forward. */ |
| 3311 | if (l < len) { |
| 3312 | /* The the input channel or the output channel are closed, we |
| 3313 | * must return the amount of data forwarded. |
| 3314 | */ |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3315 | if (channel_input_closed(chn) || channel_output_closed(chn)) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3316 | return 1; |
| 3317 | |
Thierry FOURNIER | ef6a211 | 2015-03-05 17:45:34 +0100 | [diff] [blame] | 3318 | /* If we are waiting for space data in the response buffer, we |
| 3319 | * must set the flag WAKERESWR. This flag required the task |
| 3320 | * wake up if any activity is detected on the response buffer. |
| 3321 | */ |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3322 | if (chn->flags & CF_ISRESP) |
Thierry FOURNIER | ef6a211 | 2015-03-05 17:45:34 +0100 | [diff] [blame] | 3323 | HLUA_SET_WAKERESWR(hlua); |
Thierry FOURNIER | 53e08ec | 2015-03-06 00:35:53 +0100 | [diff] [blame] | 3324 | else |
| 3325 | HLUA_SET_WAKEREQWR(hlua); |
Thierry FOURNIER | ef6a211 | 2015-03-05 17:45:34 +0100 | [diff] [blame] | 3326 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3327 | /* Otherwise, we can yield waiting for new data in the inpout side. */ |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 3328 | 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] | 3329 | } |
| 3330 | |
| 3331 | return 1; |
| 3332 | } |
| 3333 | |
| 3334 | /* Just check the input and prepare the stack for the previous |
| 3335 | * function "hlua_channel_forward_yield" |
| 3336 | */ |
| 3337 | __LJMP static int hlua_channel_forward(lua_State *L) |
| 3338 | { |
| 3339 | MAY_LJMP(check_args(L, 2, "forward")); |
| 3340 | MAY_LJMP(hlua_checkchannel(L, 1)); |
| 3341 | MAY_LJMP(luaL_checkinteger(L, 2)); |
| 3342 | |
| 3343 | lua_pushinteger(L, 0); |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3344 | return MAY_LJMP(hlua_channel_forward_yield(L, 0, 0)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3345 | } |
| 3346 | |
| 3347 | /* Just returns the number of bytes available in the input |
| 3348 | * side of the buffer. This function never fails. |
| 3349 | */ |
| 3350 | __LJMP static int hlua_channel_get_in_len(lua_State *L) |
| 3351 | { |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3352 | struct channel *chn; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3353 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3354 | MAY_LJMP(check_args(L, 1, "get_in_len")); |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3355 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Christopher Faulet | a3ceac1 | 2018-12-14 13:39:09 +0100 | [diff] [blame] | 3356 | if (IS_HTX_STRM(chn_strm(chn))) { |
| 3357 | struct htx *htx = htxbuf(&chn->buf); |
| 3358 | lua_pushinteger(L, htx->data - co_data(chn)); |
| 3359 | } |
| 3360 | else |
| 3361 | lua_pushinteger(L, ci_data(chn)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3362 | return 1; |
| 3363 | } |
| 3364 | |
Thierry FOURNIER / OZON.IO | 65192f3 | 2016-11-07 15:28:40 +0100 | [diff] [blame] | 3365 | /* Returns true if the channel is full. */ |
| 3366 | __LJMP static int hlua_channel_is_full(lua_State *L) |
| 3367 | { |
| 3368 | struct channel *chn; |
Thierry FOURNIER / OZON.IO | 65192f3 | 2016-11-07 15:28:40 +0100 | [diff] [blame] | 3369 | |
| 3370 | MAY_LJMP(check_args(L, 1, "is_full")); |
| 3371 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Christopher Faulet | 0ec740e | 2020-02-26 11:59:19 +0100 | [diff] [blame] | 3372 | /* ignore the reserve, we are not on a producer side (ie in an |
| 3373 | * applet). |
| 3374 | */ |
| 3375 | lua_pushboolean(L, channel_full(chn, 0)); |
Thierry FOURNIER / OZON.IO | 65192f3 | 2016-11-07 15:28:40 +0100 | [diff] [blame] | 3376 | return 1; |
| 3377 | } |
| 3378 | |
Christopher Faulet | 2ac9ba2 | 2020-02-25 10:15:50 +0100 | [diff] [blame] | 3379 | /* Returns true if the channel is the response channel. */ |
| 3380 | __LJMP static int hlua_channel_is_resp(lua_State *L) |
| 3381 | { |
| 3382 | struct channel *chn; |
| 3383 | |
| 3384 | MAY_LJMP(check_args(L, 1, "is_resp")); |
| 3385 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
| 3386 | |
| 3387 | lua_pushboolean(L, !!(chn->flags & CF_ISRESP)); |
| 3388 | return 1; |
| 3389 | } |
| 3390 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3391 | /* Just returns the number of bytes available in the output |
| 3392 | * side of the buffer. This function never fails. |
| 3393 | */ |
| 3394 | __LJMP static int hlua_channel_get_out_len(lua_State *L) |
| 3395 | { |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3396 | struct channel *chn; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3397 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3398 | MAY_LJMP(check_args(L, 1, "get_out_len")); |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3399 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Willy Tarreau | a79021a | 2018-06-15 18:07:57 +0200 | [diff] [blame] | 3400 | lua_pushinteger(L, co_data(chn)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3401 | return 1; |
| 3402 | } |
| 3403 | |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3404 | /* |
| 3405 | * |
| 3406 | * |
| 3407 | * Class Fetches |
| 3408 | * |
| 3409 | * |
| 3410 | */ |
| 3411 | |
| 3412 | /* Returns a struct hlua_session if the stack entry "ud" is |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 3413 | * a class stream, otherwise it throws an error. |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3414 | */ |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 3415 | __LJMP static struct hlua_smp *hlua_checkfetches(lua_State *L, int ud) |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3416 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 3417 | return MAY_LJMP(hlua_checkudata(L, ud, class_fetches_ref)); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3418 | } |
| 3419 | |
| 3420 | /* This function creates and push in the stack a fetch object according |
| 3421 | * with a current TXN. |
| 3422 | */ |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 3423 | 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] | 3424 | { |
Willy Tarreau | 7073c47 | 2015-04-06 11:15:40 +0200 | [diff] [blame] | 3425 | struct hlua_smp *hsmp; |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3426 | |
| 3427 | /* Check stack size. */ |
| 3428 | if (!lua_checkstack(L, 3)) |
| 3429 | return 0; |
| 3430 | |
| 3431 | /* Create the object: obj[0] = userdata. |
| 3432 | * Note that the base of the Fetches object is the |
| 3433 | * transaction object. |
| 3434 | */ |
| 3435 | lua_newtable(L); |
Willy Tarreau | 7073c47 | 2015-04-06 11:15:40 +0200 | [diff] [blame] | 3436 | hsmp = lua_newuserdata(L, sizeof(*hsmp)); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3437 | lua_rawseti(L, -2, 0); |
| 3438 | |
Willy Tarreau | 7073c47 | 2015-04-06 11:15:40 +0200 | [diff] [blame] | 3439 | hsmp->s = txn->s; |
| 3440 | hsmp->p = txn->p; |
Thierry FOURNIER | c4eebc8 | 2015-11-02 10:01:59 +0100 | [diff] [blame] | 3441 | hsmp->dir = txn->dir; |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 3442 | hsmp->flags = flags; |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3443 | |
| 3444 | /* Pop a class sesison metatable and affect it to the userdata. */ |
| 3445 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_fetches_ref); |
| 3446 | lua_setmetatable(L, -2); |
| 3447 | |
| 3448 | return 1; |
| 3449 | } |
| 3450 | |
| 3451 | /* This function is an LUA binding. It is called with each sample-fetch. |
| 3452 | * It uses closure argument to store the associated sample-fetch. It |
| 3453 | * returns only one argument or throws an error. An error is thrown |
| 3454 | * only if an error is encountered during the argument parsing. If |
| 3455 | * the "sample-fetch" function fails, nil is returned. |
| 3456 | */ |
| 3457 | __LJMP static int hlua_run_sample_fetch(lua_State *L) |
| 3458 | { |
Willy Tarreau | b2ccb56 | 2015-04-06 11:11:15 +0200 | [diff] [blame] | 3459 | struct hlua_smp *hsmp; |
Willy Tarreau | 2ec2274 | 2015-03-10 14:27:20 +0100 | [diff] [blame] | 3460 | struct sample_fetch *f; |
Frédéric Lécaille | f874a83 | 2018-06-15 13:56:04 +0200 | [diff] [blame] | 3461 | struct arg args[ARGM_NBARGS + 1] = {{0}}; |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3462 | int i; |
| 3463 | struct sample smp; |
| 3464 | |
| 3465 | /* Get closure arguments. */ |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 3466 | f = lua_touserdata(L, lua_upvalueindex(1)); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3467 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3468 | /* Get traditional arguments. */ |
Willy Tarreau | b2ccb56 | 2015-04-06 11:11:15 +0200 | [diff] [blame] | 3469 | hsmp = MAY_LJMP(hlua_checkfetches(L, 1)); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3470 | |
Thierry FOURNIER | ca98866 | 2015-12-20 18:43:03 +0100 | [diff] [blame] | 3471 | /* Check execution authorization. */ |
| 3472 | if (f->use & SMP_USE_HTTP_ANY && |
| 3473 | !(hsmp->flags & HLUA_F_MAY_USE_HTTP)) { |
| 3474 | lua_pushfstring(L, "the sample-fetch '%s' needs an HTTP parser which " |
| 3475 | "is not available in Lua services", f->kw); |
| 3476 | WILL_LJMP(lua_error(L)); |
| 3477 | } |
| 3478 | |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3479 | /* Get extra arguments. */ |
| 3480 | for (i = 0; i < lua_gettop(L) - 1; i++) { |
| 3481 | if (i >= ARGM_NBARGS) |
| 3482 | break; |
| 3483 | hlua_lua2arg(L, i + 2, &args[i]); |
| 3484 | } |
| 3485 | args[i].type = ARGT_STOP; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3486 | args[i].data.str.area = NULL; |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3487 | |
| 3488 | /* Check arguments. */ |
Willy Tarreau | b2ccb56 | 2015-04-06 11:11:15 +0200 | [diff] [blame] | 3489 | 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] | 3490 | |
| 3491 | /* Run the special args checker. */ |
Willy Tarreau | 2ec2274 | 2015-03-10 14:27:20 +0100 | [diff] [blame] | 3492 | if (f->val_args && !f->val_args(args, NULL)) { |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3493 | lua_pushfstring(L, "error in arguments"); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 3494 | goto error; |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3495 | } |
| 3496 | |
| 3497 | /* Initialise the sample. */ |
| 3498 | memset(&smp, 0, sizeof(smp)); |
| 3499 | |
| 3500 | /* Run the sample fetch process. */ |
Willy Tarreau | 1777ea6 | 2016-03-10 16:15:46 +0100 | [diff] [blame] | 3501 | 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] | 3502 | if (!f->process(args, &smp, f->kw, f->private)) { |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 3503 | if (hsmp->flags & HLUA_F_AS_STRING) |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 3504 | lua_pushstring(L, ""); |
| 3505 | else |
| 3506 | lua_pushnil(L); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 3507 | goto end; |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3508 | } |
| 3509 | |
| 3510 | /* Convert the returned sample in lua value. */ |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 3511 | if (hsmp->flags & HLUA_F_AS_STRING) |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 3512 | hlua_smp2lua_str(L, &smp); |
| 3513 | else |
| 3514 | hlua_smp2lua(L, &smp); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 3515 | |
| 3516 | end: |
| 3517 | for (i = 0; args[i].type != ARGT_STOP; i++) { |
| 3518 | if (args[i].type == ARGT_STR) |
| 3519 | chunk_destroy(&args[i].data.str); |
Christopher Faulet | fd2e906 | 2020-08-06 11:10:57 +0200 | [diff] [blame] | 3520 | else if (args[i].type == ARGT_REG) |
| 3521 | regex_free(args[i].data.reg); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 3522 | } |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3523 | return 1; |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 3524 | |
| 3525 | error: |
| 3526 | for (i = 0; args[i].type != ARGT_STOP; i++) { |
| 3527 | if (args[i].type == ARGT_STR) |
| 3528 | chunk_destroy(&args[i].data.str); |
Christopher Faulet | fd2e906 | 2020-08-06 11:10:57 +0200 | [diff] [blame] | 3529 | else if (args[i].type == ARGT_REG) |
| 3530 | regex_free(args[i].data.reg); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 3531 | } |
| 3532 | WILL_LJMP(lua_error(L)); |
| 3533 | return 0; /* Never reached */ |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3534 | } |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3535 | |
| 3536 | /* |
| 3537 | * |
| 3538 | * |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3539 | * Class Converters |
| 3540 | * |
| 3541 | * |
| 3542 | */ |
| 3543 | |
| 3544 | /* Returns a struct hlua_session if the stack entry "ud" is |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 3545 | * a class stream, otherwise it throws an error. |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3546 | */ |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 3547 | __LJMP static struct hlua_smp *hlua_checkconverters(lua_State *L, int ud) |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3548 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 3549 | return MAY_LJMP(hlua_checkudata(L, ud, class_converters_ref)); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3550 | } |
| 3551 | |
| 3552 | /* This function creates and push in the stack a Converters object |
| 3553 | * according with a current TXN. |
| 3554 | */ |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 3555 | 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] | 3556 | { |
Willy Tarreau | 7073c47 | 2015-04-06 11:15:40 +0200 | [diff] [blame] | 3557 | struct hlua_smp *hsmp; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3558 | |
| 3559 | /* Check stack size. */ |
| 3560 | if (!lua_checkstack(L, 3)) |
| 3561 | return 0; |
| 3562 | |
| 3563 | /* Create the object: obj[0] = userdata. |
| 3564 | * Note that the base of the Converters object is the |
| 3565 | * same than the TXN object. |
| 3566 | */ |
| 3567 | lua_newtable(L); |
Willy Tarreau | 7073c47 | 2015-04-06 11:15:40 +0200 | [diff] [blame] | 3568 | hsmp = lua_newuserdata(L, sizeof(*hsmp)); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3569 | lua_rawseti(L, -2, 0); |
| 3570 | |
Willy Tarreau | 7073c47 | 2015-04-06 11:15:40 +0200 | [diff] [blame] | 3571 | hsmp->s = txn->s; |
| 3572 | hsmp->p = txn->p; |
Thierry FOURNIER | c4eebc8 | 2015-11-02 10:01:59 +0100 | [diff] [blame] | 3573 | hsmp->dir = txn->dir; |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 3574 | hsmp->flags = flags; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3575 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 3576 | /* Pop a class stream metatable and affect it to the table. */ |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3577 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_converters_ref); |
| 3578 | lua_setmetatable(L, -2); |
| 3579 | |
| 3580 | return 1; |
| 3581 | } |
| 3582 | |
| 3583 | /* This function is an LUA binding. It is called with each converter. |
| 3584 | * It uses closure argument to store the associated converter. It |
| 3585 | * returns only one argument or throws an error. An error is thrown |
| 3586 | * only if an error is encountered during the argument parsing. If |
| 3587 | * the converter function function fails, nil is returned. |
| 3588 | */ |
| 3589 | __LJMP static int hlua_run_sample_conv(lua_State *L) |
| 3590 | { |
Willy Tarreau | da5f108 | 2015-04-06 11:17:13 +0200 | [diff] [blame] | 3591 | struct hlua_smp *hsmp; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3592 | struct sample_conv *conv; |
Frédéric Lécaille | f874a83 | 2018-06-15 13:56:04 +0200 | [diff] [blame] | 3593 | struct arg args[ARGM_NBARGS + 1] = {{0}}; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3594 | int i; |
| 3595 | struct sample smp; |
| 3596 | |
| 3597 | /* Get closure arguments. */ |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 3598 | conv = lua_touserdata(L, lua_upvalueindex(1)); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3599 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3600 | /* Get traditional arguments. */ |
Willy Tarreau | da5f108 | 2015-04-06 11:17:13 +0200 | [diff] [blame] | 3601 | hsmp = MAY_LJMP(hlua_checkconverters(L, 1)); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3602 | |
| 3603 | /* Get extra arguments. */ |
| 3604 | for (i = 0; i < lua_gettop(L) - 2; i++) { |
| 3605 | if (i >= ARGM_NBARGS) |
| 3606 | break; |
| 3607 | hlua_lua2arg(L, i + 3, &args[i]); |
| 3608 | } |
| 3609 | args[i].type = ARGT_STOP; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3610 | args[i].data.str.area = NULL; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3611 | |
| 3612 | /* Check arguments. */ |
Willy Tarreau | da5f108 | 2015-04-06 11:17:13 +0200 | [diff] [blame] | 3613 | 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] | 3614 | |
| 3615 | /* Run the special args checker. */ |
| 3616 | if (conv->val_args && !conv->val_args(args, conv, "", 0, NULL)) { |
| 3617 | hlua_pusherror(L, "error in arguments"); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 3618 | goto error; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3619 | } |
| 3620 | |
| 3621 | /* Initialise the sample. */ |
Amaury Denoyelle | bc0af6a | 2020-10-29 17:21:20 +0100 | [diff] [blame] | 3622 | memset(&smp, 0, sizeof(smp)); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3623 | if (!hlua_lua2smp(L, 2, &smp)) { |
| 3624 | hlua_pusherror(L, "error in the input argument"); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 3625 | goto error; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3626 | } |
| 3627 | |
Willy Tarreau | 1777ea6 | 2016-03-10 16:15:46 +0100 | [diff] [blame] | 3628 | smp_set_owner(&smp, hsmp->p, hsmp->s->sess, hsmp->s, hsmp->dir & SMP_OPT_DIR); |
| 3629 | |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3630 | /* Apply expected cast. */ |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 3631 | if (!sample_casts[smp.data.type][conv->in_type]) { |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3632 | hlua_pusherror(L, "invalid input argument: cannot cast '%s' to '%s'", |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 3633 | smp_to_type[smp.data.type], smp_to_type[conv->in_type]); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 3634 | goto error; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3635 | } |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 3636 | if (sample_casts[smp.data.type][conv->in_type] != c_none && |
| 3637 | !sample_casts[smp.data.type][conv->in_type](&smp)) { |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3638 | hlua_pusherror(L, "error during the input argument casting"); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 3639 | goto error; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3640 | } |
| 3641 | |
| 3642 | /* Run the sample conversion process. */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 3643 | if (!conv->process(args, &smp, conv->private)) { |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 3644 | if (hsmp->flags & HLUA_F_AS_STRING) |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 3645 | lua_pushstring(L, ""); |
| 3646 | else |
Willy Tarreau | a678b43 | 2015-08-28 10:14:59 +0200 | [diff] [blame] | 3647 | lua_pushnil(L); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 3648 | goto end; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3649 | } |
| 3650 | |
| 3651 | /* Convert the returned sample in lua value. */ |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 3652 | if (hsmp->flags & HLUA_F_AS_STRING) |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 3653 | hlua_smp2lua_str(L, &smp); |
| 3654 | else |
| 3655 | hlua_smp2lua(L, &smp); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 3656 | end: |
| 3657 | for (i = 0; args[i].type != ARGT_STOP; i++) { |
| 3658 | if (args[i].type == ARGT_STR) |
| 3659 | chunk_destroy(&args[i].data.str); |
Christopher Faulet | fd2e906 | 2020-08-06 11:10:57 +0200 | [diff] [blame] | 3660 | else if (args[i].type == ARGT_REG) |
| 3661 | regex_free(args[i].data.reg); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 3662 | } |
Willy Tarreau | a678b43 | 2015-08-28 10:14:59 +0200 | [diff] [blame] | 3663 | return 1; |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 3664 | |
| 3665 | error: |
| 3666 | for (i = 0; args[i].type != ARGT_STOP; i++) { |
| 3667 | if (args[i].type == ARGT_STR) |
| 3668 | chunk_destroy(&args[i].data.str); |
Christopher Faulet | fd2e906 | 2020-08-06 11:10:57 +0200 | [diff] [blame] | 3669 | else if (args[i].type == ARGT_REG) |
| 3670 | regex_free(args[i].data.reg); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 3671 | } |
| 3672 | WILL_LJMP(lua_error(L)); |
| 3673 | return 0; /* Never reached */ |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3674 | } |
| 3675 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3676 | /* |
| 3677 | * |
| 3678 | * |
| 3679 | * Class AppletTCP |
| 3680 | * |
| 3681 | * |
| 3682 | */ |
| 3683 | |
| 3684 | /* Returns a struct hlua_txn if the stack entry "ud" is |
| 3685 | * a class stream, otherwise it throws an error. |
| 3686 | */ |
| 3687 | __LJMP static struct hlua_appctx *hlua_checkapplet_tcp(lua_State *L, int ud) |
| 3688 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 3689 | return MAY_LJMP(hlua_checkudata(L, ud, class_applet_tcp_ref)); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3690 | } |
| 3691 | |
| 3692 | /* This function creates and push in the stack an Applet object |
| 3693 | * according with a current TXN. |
| 3694 | */ |
| 3695 | static int hlua_applet_tcp_new(lua_State *L, struct appctx *ctx) |
| 3696 | { |
| 3697 | struct hlua_appctx *appctx; |
| 3698 | struct stream_interface *si = ctx->owner; |
| 3699 | struct stream *s = si_strm(si); |
| 3700 | struct proxy *p = s->be; |
| 3701 | |
| 3702 | /* Check stack size. */ |
| 3703 | if (!lua_checkstack(L, 3)) |
| 3704 | return 0; |
| 3705 | |
| 3706 | /* Create the object: obj[0] = userdata. |
| 3707 | * Note that the base of the Converters object is the |
| 3708 | * same than the TXN object. |
| 3709 | */ |
| 3710 | lua_newtable(L); |
| 3711 | appctx = lua_newuserdata(L, sizeof(*appctx)); |
| 3712 | lua_rawseti(L, -2, 0); |
| 3713 | appctx->appctx = ctx; |
| 3714 | appctx->htxn.s = s; |
| 3715 | appctx->htxn.p = p; |
| 3716 | |
| 3717 | /* Create the "f" field that contains a list of fetches. */ |
| 3718 | lua_pushstring(L, "f"); |
| 3719 | if (!hlua_fetches_new(L, &appctx->htxn, 0)) |
| 3720 | return 0; |
| 3721 | lua_settable(L, -3); |
| 3722 | |
| 3723 | /* Create the "sf" field that contains a list of stringsafe fetches. */ |
| 3724 | lua_pushstring(L, "sf"); |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 3725 | if (!hlua_fetches_new(L, &appctx->htxn, HLUA_F_AS_STRING)) |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3726 | return 0; |
| 3727 | lua_settable(L, -3); |
| 3728 | |
| 3729 | /* Create the "c" field that contains a list of converters. */ |
| 3730 | lua_pushstring(L, "c"); |
| 3731 | if (!hlua_converters_new(L, &appctx->htxn, 0)) |
| 3732 | return 0; |
| 3733 | lua_settable(L, -3); |
| 3734 | |
| 3735 | /* Create the "sc" field that contains a list of stringsafe converters. */ |
| 3736 | lua_pushstring(L, "sc"); |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 3737 | if (!hlua_converters_new(L, &appctx->htxn, HLUA_F_AS_STRING)) |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3738 | return 0; |
| 3739 | lua_settable(L, -3); |
| 3740 | |
| 3741 | /* Pop a class stream metatable and affect it to the table. */ |
| 3742 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_applet_tcp_ref); |
| 3743 | lua_setmetatable(L, -2); |
| 3744 | |
| 3745 | return 1; |
| 3746 | } |
| 3747 | |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 3748 | __LJMP static int hlua_applet_tcp_set_var(lua_State *L) |
| 3749 | { |
| 3750 | struct hlua_appctx *appctx; |
| 3751 | struct stream *s; |
| 3752 | const char *name; |
| 3753 | size_t len; |
| 3754 | struct sample smp; |
| 3755 | |
Tim Duesterhus | 4e172c9 | 2020-05-19 13:49:42 +0200 | [diff] [blame] | 3756 | if (lua_gettop(L) < 3 || lua_gettop(L) > 4) |
| 3757 | WILL_LJMP(luaL_error(L, "'set_var' needs between 3 and 4 arguments")); |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 3758 | |
| 3759 | /* It is useles to retrieve the stream, but this function |
| 3760 | * runs only in a stream context. |
| 3761 | */ |
| 3762 | appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 3763 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 3764 | s = appctx->htxn.s; |
| 3765 | |
| 3766 | /* Converts the third argument in a sample. */ |
Amaury Denoyelle | bc0af6a | 2020-10-29 17:21:20 +0100 | [diff] [blame] | 3767 | memset(&smp, 0, sizeof(smp)); |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 3768 | hlua_lua2smp(L, 3, &smp); |
| 3769 | |
| 3770 | /* Store the sample in a variable. */ |
| 3771 | smp_set_owner(&smp, s->be, s->sess, s, 0); |
Tim Duesterhus | 4e172c9 | 2020-05-19 13:49:42 +0200 | [diff] [blame] | 3772 | |
| 3773 | if (lua_gettop(L) == 4 && lua_toboolean(L, 4)) |
| 3774 | lua_pushboolean(L, vars_set_by_name_ifexist(name, len, &smp) != 0); |
| 3775 | else |
| 3776 | lua_pushboolean(L, vars_set_by_name(name, len, &smp) != 0); |
| 3777 | |
Tim Duesterhus | 84ebc13 | 2020-05-19 13:49:41 +0200 | [diff] [blame] | 3778 | return 1; |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 3779 | } |
| 3780 | |
| 3781 | __LJMP static int hlua_applet_tcp_unset_var(lua_State *L) |
| 3782 | { |
| 3783 | struct hlua_appctx *appctx; |
| 3784 | struct stream *s; |
| 3785 | const char *name; |
| 3786 | size_t len; |
| 3787 | struct sample smp; |
| 3788 | |
| 3789 | MAY_LJMP(check_args(L, 2, "unset_var")); |
| 3790 | |
| 3791 | /* It is useles to retrieve the stream, but this function |
| 3792 | * runs only in a stream context. |
| 3793 | */ |
| 3794 | appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 3795 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 3796 | s = appctx->htxn.s; |
| 3797 | |
| 3798 | /* Unset the variable. */ |
| 3799 | smp_set_owner(&smp, s->be, s->sess, s, 0); |
Tim Duesterhus | 84ebc13 | 2020-05-19 13:49:41 +0200 | [diff] [blame] | 3800 | lua_pushboolean(L, vars_unset_by_name_ifexist(name, len, &smp) != 0); |
| 3801 | return 1; |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 3802 | } |
| 3803 | |
| 3804 | __LJMP static int hlua_applet_tcp_get_var(lua_State *L) |
| 3805 | { |
| 3806 | struct hlua_appctx *appctx; |
| 3807 | struct stream *s; |
| 3808 | const char *name; |
| 3809 | size_t len; |
| 3810 | struct sample smp; |
| 3811 | |
| 3812 | MAY_LJMP(check_args(L, 2, "get_var")); |
| 3813 | |
| 3814 | /* It is useles to retrieve the stream, but this function |
| 3815 | * runs only in a stream context. |
| 3816 | */ |
| 3817 | appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 3818 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 3819 | s = appctx->htxn.s; |
| 3820 | |
| 3821 | smp_set_owner(&smp, s->be, s->sess, s, 0); |
| 3822 | if (!vars_get_by_name(name, len, &smp)) { |
| 3823 | lua_pushnil(L); |
| 3824 | return 1; |
| 3825 | } |
| 3826 | |
| 3827 | return hlua_smp2lua(L, &smp); |
| 3828 | } |
| 3829 | |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 3830 | __LJMP static int hlua_applet_tcp_set_priv(lua_State *L) |
| 3831 | { |
| 3832 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 3833 | struct stream *s = appctx->htxn.s; |
Thierry FOURNIER | 3b0a6d4 | 2016-12-16 08:48:32 +0100 | [diff] [blame] | 3834 | struct hlua *hlua; |
| 3835 | |
| 3836 | /* 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] | 3837 | if (!s->hlua) |
| 3838 | return 0; |
| 3839 | hlua = s->hlua; |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 3840 | |
| 3841 | MAY_LJMP(check_args(L, 2, "set_priv")); |
| 3842 | |
| 3843 | /* Remove previous value. */ |
Thierry FOURNIER | e068b60 | 2017-04-26 13:27:05 +0200 | [diff] [blame] | 3844 | luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref); |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 3845 | |
| 3846 | /* Get and store new value. */ |
| 3847 | lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */ |
| 3848 | hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */ |
| 3849 | |
| 3850 | return 0; |
| 3851 | } |
| 3852 | |
| 3853 | __LJMP static int hlua_applet_tcp_get_priv(lua_State *L) |
| 3854 | { |
| 3855 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 3856 | struct stream *s = appctx->htxn.s; |
Thierry FOURNIER | 3b0a6d4 | 2016-12-16 08:48:32 +0100 | [diff] [blame] | 3857 | struct hlua *hlua; |
| 3858 | |
| 3859 | /* 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] | 3860 | if (!s->hlua) { |
| 3861 | lua_pushnil(L); |
| 3862 | return 1; |
| 3863 | } |
| 3864 | hlua = s->hlua; |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 3865 | |
| 3866 | /* Push configuration index in the stack. */ |
| 3867 | lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref); |
| 3868 | |
| 3869 | return 1; |
| 3870 | } |
| 3871 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3872 | /* If expected data not yet available, it returns a yield. This function |
| 3873 | * consumes the data in the buffer. It returns a string containing the |
| 3874 | * data. This string can be empty. |
| 3875 | */ |
| 3876 | __LJMP static int hlua_applet_tcp_getline_yield(lua_State *L, int status, lua_KContext ctx) |
| 3877 | { |
| 3878 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 3879 | struct stream_interface *si = appctx->appctx->owner; |
| 3880 | int ret; |
Willy Tarreau | 206ba83 | 2018-06-14 15:27:31 +0200 | [diff] [blame] | 3881 | const char *blk1; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 3882 | size_t len1; |
Willy Tarreau | 206ba83 | 2018-06-14 15:27:31 +0200 | [diff] [blame] | 3883 | const char *blk2; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 3884 | size_t len2; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3885 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3886 | /* Read the maximum amount of data available. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 3887 | ret = co_getline_nc(si_oc(si), &blk1, &len1, &blk2, &len2); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3888 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3889 | /* Data not yet available. return yield. */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3890 | if (ret == 0) { |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 3891 | si_cant_get(si); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 3892 | 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] | 3893 | } |
| 3894 | |
| 3895 | /* End of data: commit the total strings and return. */ |
| 3896 | if (ret < 0) { |
| 3897 | luaL_pushresult(&appctx->b); |
| 3898 | return 1; |
| 3899 | } |
| 3900 | |
| 3901 | /* Ensure that the block 2 length is usable. */ |
| 3902 | if (ret == 1) |
| 3903 | len2 = 0; |
| 3904 | |
| 3905 | /* dont check the max length read and dont check. */ |
| 3906 | luaL_addlstring(&appctx->b, blk1, len1); |
| 3907 | luaL_addlstring(&appctx->b, blk2, len2); |
| 3908 | |
| 3909 | /* Consume input channel output buffer data. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 3910 | co_skip(si_oc(si), len1 + len2); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3911 | luaL_pushresult(&appctx->b); |
| 3912 | return 1; |
| 3913 | } |
| 3914 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3915 | /* Check arguments for the function "hlua_channel_get_yield". */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3916 | __LJMP static int hlua_applet_tcp_getline(lua_State *L) |
| 3917 | { |
| 3918 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 3919 | |
| 3920 | /* Initialise the string catenation. */ |
| 3921 | luaL_buffinit(L, &appctx->b); |
| 3922 | |
| 3923 | return MAY_LJMP(hlua_applet_tcp_getline_yield(L, 0, 0)); |
| 3924 | } |
| 3925 | |
| 3926 | /* If expected data not yet available, it returns a yield. This function |
| 3927 | * consumes the data in the buffer. It returns a string containing the |
| 3928 | * data. This string can be empty. |
| 3929 | */ |
| 3930 | __LJMP static int hlua_applet_tcp_recv_yield(lua_State *L, int status, lua_KContext ctx) |
| 3931 | { |
| 3932 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 3933 | struct stream_interface *si = appctx->appctx->owner; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 3934 | size_t len = MAY_LJMP(luaL_checkinteger(L, 2)); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3935 | int ret; |
Willy Tarreau | 206ba83 | 2018-06-14 15:27:31 +0200 | [diff] [blame] | 3936 | const char *blk1; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 3937 | size_t len1; |
Willy Tarreau | 206ba83 | 2018-06-14 15:27:31 +0200 | [diff] [blame] | 3938 | const char *blk2; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 3939 | size_t len2; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3940 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3941 | /* Read the maximum amount of data available. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 3942 | ret = co_getblk_nc(si_oc(si), &blk1, &len1, &blk2, &len2); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3943 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3944 | /* Data not yet available. return yield. */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3945 | if (ret == 0) { |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 3946 | si_cant_get(si); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 3947 | 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] | 3948 | } |
| 3949 | |
| 3950 | /* End of data: commit the total strings and return. */ |
| 3951 | if (ret < 0) { |
| 3952 | luaL_pushresult(&appctx->b); |
| 3953 | return 1; |
| 3954 | } |
| 3955 | |
| 3956 | /* Ensure that the block 2 length is usable. */ |
| 3957 | if (ret == 1) |
| 3958 | len2 = 0; |
| 3959 | |
| 3960 | if (len == -1) { |
| 3961 | |
| 3962 | /* If len == -1, catenate all the data avalaile and |
| 3963 | * yield because we want to get all the data until |
| 3964 | * the end of data stream. |
| 3965 | */ |
| 3966 | luaL_addlstring(&appctx->b, blk1, len1); |
| 3967 | luaL_addlstring(&appctx->b, blk2, len2); |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 3968 | co_skip(si_oc(si), len1 + len2); |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 3969 | si_cant_get(si); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 3970 | 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] | 3971 | |
| 3972 | } else { |
| 3973 | |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 3974 | /* Copy the first block caping to the length required. */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3975 | if (len1 > len) |
| 3976 | len1 = len; |
| 3977 | luaL_addlstring(&appctx->b, blk1, len1); |
| 3978 | len -= len1; |
| 3979 | |
| 3980 | /* Copy the second block. */ |
| 3981 | if (len2 > len) |
| 3982 | len2 = len; |
| 3983 | luaL_addlstring(&appctx->b, blk2, len2); |
| 3984 | len -= len2; |
| 3985 | |
| 3986 | /* Consume input channel output buffer data. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 3987 | co_skip(si_oc(si), len1 + len2); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3988 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3989 | /* If there is no other data available, yield waiting for new data. */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3990 | if (len > 0) { |
| 3991 | lua_pushinteger(L, len); |
| 3992 | lua_replace(L, 2); |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 3993 | si_cant_get(si); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 3994 | 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] | 3995 | } |
| 3996 | |
| 3997 | /* return the result. */ |
| 3998 | luaL_pushresult(&appctx->b); |
| 3999 | return 1; |
| 4000 | } |
| 4001 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 4002 | /* we never execute this */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4003 | hlua_pusherror(L, "Lua: internal error"); |
| 4004 | WILL_LJMP(lua_error(L)); |
| 4005 | return 0; |
| 4006 | } |
| 4007 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 4008 | /* Check arguments for the function "hlua_channel_get_yield". */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4009 | __LJMP static int hlua_applet_tcp_recv(lua_State *L) |
| 4010 | { |
| 4011 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 4012 | int len = -1; |
| 4013 | |
| 4014 | if (lua_gettop(L) > 2) |
| 4015 | WILL_LJMP(luaL_error(L, "The 'recv' function requires between 1 and 2 arguments.")); |
| 4016 | if (lua_gettop(L) >= 2) { |
| 4017 | len = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 4018 | lua_pop(L, 1); |
| 4019 | } |
| 4020 | |
| 4021 | /* Confirm or set the required length */ |
| 4022 | lua_pushinteger(L, len); |
| 4023 | |
| 4024 | /* Initialise the string catenation. */ |
| 4025 | luaL_buffinit(L, &appctx->b); |
| 4026 | |
| 4027 | return MAY_LJMP(hlua_applet_tcp_recv_yield(L, 0, 0)); |
| 4028 | } |
| 4029 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 4030 | /* Append data in the output side of the buffer. This data is immediately |
| 4031 | * sent. The function returns the amount of data written. If the buffer |
| 4032 | * cannot contain the data, the function yields. The function returns -1 |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4033 | * if the channel is closed. |
| 4034 | */ |
| 4035 | __LJMP static int hlua_applet_tcp_send_yield(lua_State *L, int status, lua_KContext ctx) |
| 4036 | { |
| 4037 | size_t len; |
| 4038 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 4039 | const char *str = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 4040 | int l = MAY_LJMP(luaL_checkinteger(L, 3)); |
| 4041 | struct stream_interface *si = appctx->appctx->owner; |
| 4042 | struct channel *chn = si_ic(si); |
| 4043 | int max; |
| 4044 | |
| 4045 | /* Get the max amount of data which can write as input in the channel. */ |
| 4046 | max = channel_recv_max(chn); |
| 4047 | if (max > (len - l)) |
| 4048 | max = len - l; |
| 4049 | |
| 4050 | /* Copy data. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 4051 | ci_putblk(chn, str + l, max); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4052 | |
| 4053 | /* update counters. */ |
| 4054 | l += max; |
| 4055 | lua_pop(L, 1); |
| 4056 | lua_pushinteger(L, l); |
| 4057 | |
| 4058 | /* If some data is not send, declares the situation to the |
| 4059 | * applet, and returns a yield. |
| 4060 | */ |
| 4061 | if (l < len) { |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 4062 | si_rx_room_blk(si); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 4063 | 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] | 4064 | } |
| 4065 | |
| 4066 | return 1; |
| 4067 | } |
| 4068 | |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 4069 | /* Just a wrapper of "hlua_applet_tcp_send_yield". This wrapper permits |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4070 | * yield the LUA process, and resume it without checking the |
| 4071 | * input arguments. |
| 4072 | */ |
| 4073 | __LJMP static int hlua_applet_tcp_send(lua_State *L) |
| 4074 | { |
| 4075 | MAY_LJMP(check_args(L, 2, "send")); |
| 4076 | lua_pushinteger(L, 0); |
| 4077 | |
| 4078 | return MAY_LJMP(hlua_applet_tcp_send_yield(L, 0, 0)); |
| 4079 | } |
| 4080 | |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 4081 | /* |
| 4082 | * |
| 4083 | * |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4084 | * Class AppletHTTP |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4085 | * |
| 4086 | * |
| 4087 | */ |
| 4088 | |
| 4089 | /* Returns a struct hlua_txn if the stack entry "ud" is |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 4090 | * a class stream, otherwise it throws an error. |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4091 | */ |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4092 | __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] | 4093 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 4094 | return MAY_LJMP(hlua_checkudata(L, ud, class_applet_http_ref)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4095 | } |
| 4096 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4097 | /* This function creates and push in the stack an Applet object |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4098 | * according with a current TXN. |
| 4099 | */ |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4100 | static int hlua_applet_http_new(lua_State *L, struct appctx *ctx) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4101 | { |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4102 | struct hlua_appctx *appctx; |
Thierry FOURNIER | 841475e | 2015-12-11 17:10:09 +0100 | [diff] [blame] | 4103 | struct hlua_txn htxn; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4104 | struct stream_interface *si = ctx->owner; |
| 4105 | struct stream *s = si_strm(si); |
| 4106 | struct proxy *px = s->be; |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4107 | struct htx *htx; |
| 4108 | struct htx_blk *blk; |
| 4109 | struct htx_sl *sl; |
| 4110 | struct ist path; |
| 4111 | unsigned long long len = 0; |
| 4112 | int32_t pos; |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4113 | |
| 4114 | /* Check stack size. */ |
| 4115 | if (!lua_checkstack(L, 3)) |
| 4116 | return 0; |
| 4117 | |
| 4118 | /* Create the object: obj[0] = userdata. |
| 4119 | * Note that the base of the Converters object is the |
| 4120 | * same than the TXN object. |
| 4121 | */ |
| 4122 | lua_newtable(L); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4123 | appctx = lua_newuserdata(L, sizeof(*appctx)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4124 | lua_rawseti(L, -2, 0); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4125 | appctx->appctx = ctx; |
| 4126 | appctx->appctx->ctx.hlua_apphttp.status = 200; /* Default status code returned. */ |
Robin H. Johnson | 52f5db2 | 2017-01-01 13:10:52 -0800 | [diff] [blame] | 4127 | 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] | 4128 | appctx->htxn.s = s; |
| 4129 | appctx->htxn.p = px; |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4130 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4131 | /* Create the "f" field that contains a list of fetches. */ |
| 4132 | lua_pushstring(L, "f"); |
| 4133 | if (!hlua_fetches_new(L, &appctx->htxn, 0)) |
| 4134 | return 0; |
| 4135 | lua_settable(L, -3); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4136 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4137 | /* Create the "sf" field that contains a list of stringsafe fetches. */ |
| 4138 | lua_pushstring(L, "sf"); |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 4139 | if (!hlua_fetches_new(L, &appctx->htxn, HLUA_F_AS_STRING)) |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4140 | return 0; |
| 4141 | lua_settable(L, -3); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4142 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4143 | /* Create the "c" field that contains a list of converters. */ |
| 4144 | lua_pushstring(L, "c"); |
| 4145 | if (!hlua_converters_new(L, &appctx->htxn, 0)) |
| 4146 | return 0; |
| 4147 | lua_settable(L, -3); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4148 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4149 | /* Create the "sc" field that contains a list of stringsafe converters. */ |
| 4150 | lua_pushstring(L, "sc"); |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 4151 | if (!hlua_converters_new(L, &appctx->htxn, HLUA_F_AS_STRING)) |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4152 | return 0; |
| 4153 | lua_settable(L, -3); |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 4154 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4155 | htx = htxbuf(&s->req.buf); |
| 4156 | blk = htx_get_first_blk(htx); |
Christopher Faulet | ea00973 | 2019-11-18 15:50:25 +0100 | [diff] [blame] | 4157 | BUG_ON(!blk || htx_get_blk_type(blk) != HTX_BLK_REQ_SL); |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4158 | sl = htx_get_blk_ptr(htx, blk); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4159 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4160 | /* Stores the request method. */ |
| 4161 | lua_pushstring(L, "method"); |
| 4162 | lua_pushlstring(L, HTX_SL_REQ_MPTR(sl), HTX_SL_REQ_MLEN(sl)); |
| 4163 | lua_settable(L, -3); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4164 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4165 | /* Stores the http version. */ |
| 4166 | lua_pushstring(L, "version"); |
| 4167 | lua_pushlstring(L, HTX_SL_REQ_VPTR(sl), HTX_SL_REQ_VLEN(sl)); |
| 4168 | lua_settable(L, -3); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4169 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4170 | /* creates an array of headers. hlua_http_get_headers() crates and push |
| 4171 | * the array on the top of the stack. |
| 4172 | */ |
| 4173 | lua_pushstring(L, "headers"); |
| 4174 | htxn.s = s; |
| 4175 | htxn.p = px; |
| 4176 | htxn.dir = SMP_OPT_DIR_REQ; |
Christopher Faulet | 9d1332b | 2020-02-24 16:46:16 +0100 | [diff] [blame] | 4177 | if (!hlua_http_get_headers(L, &htxn.s->txn->req)) |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4178 | return 0; |
| 4179 | lua_settable(L, -3); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4180 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4181 | path = http_get_path(htx_sl_req_uri(sl)); |
Tim Duesterhus | ed52637 | 2020-03-05 17:56:33 +0100 | [diff] [blame] | 4182 | if (isttest(path)) { |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4183 | char *p, *q, *end; |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4184 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4185 | p = path.ptr; |
| 4186 | end = path.ptr + path.len; |
| 4187 | q = p; |
| 4188 | while (q < end && *q != '?') |
| 4189 | q++; |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4190 | |
Thierry FOURNIER | 7d38863 | 2017-02-22 02:06:16 +0100 | [diff] [blame] | 4191 | /* Stores the request path. */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4192 | lua_pushstring(L, "path"); |
| 4193 | lua_pushlstring(L, p, q - p); |
Thierry FOURNIER | 7d38863 | 2017-02-22 02:06:16 +0100 | [diff] [blame] | 4194 | lua_settable(L, -3); |
Thierry FOURNIER | 04c57b3 | 2015-03-18 13:43:10 +0100 | [diff] [blame] | 4195 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4196 | /* Stores the query string. */ |
| 4197 | lua_pushstring(L, "qs"); |
| 4198 | if (*q == '?') |
| 4199 | q++; |
| 4200 | lua_pushlstring(L, q, end - q); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4201 | lua_settable(L, -3); |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4202 | } |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4203 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4204 | for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) { |
| 4205 | struct htx_blk *blk = htx_get_blk(htx, pos); |
| 4206 | enum htx_blk_type type = htx_get_blk_type(blk); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4207 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4208 | if (type == HTX_BLK_EOM || type == HTX_BLK_TLR || type == HTX_BLK_EOT) |
| 4209 | break; |
| 4210 | if (type == HTX_BLK_DATA) |
| 4211 | len += htx_get_blksz(blk); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4212 | } |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4213 | if (htx->extra != ULLONG_MAX) |
| 4214 | len += htx->extra; |
| 4215 | |
| 4216 | /* Stores the request path. */ |
| 4217 | lua_pushstring(L, "length"); |
| 4218 | lua_pushinteger(L, len); |
| 4219 | lua_settable(L, -3); |
Thierry FOURNIER | 04c57b3 | 2015-03-18 13:43:10 +0100 | [diff] [blame] | 4220 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4221 | /* Create an empty array of HTTP request headers. */ |
| 4222 | lua_pushstring(L, "response"); |
| 4223 | lua_newtable(L); |
| 4224 | lua_settable(L, -3); |
Thierry FOURNIER | 04c57b3 | 2015-03-18 13:43:10 +0100 | [diff] [blame] | 4225 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4226 | /* Pop a class stream metatable and affect it to the table. */ |
| 4227 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_applet_http_ref); |
| 4228 | lua_setmetatable(L, -2); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4229 | |
| 4230 | return 1; |
| 4231 | } |
| 4232 | |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4233 | __LJMP static int hlua_applet_http_set_var(lua_State *L) |
| 4234 | { |
| 4235 | struct hlua_appctx *appctx; |
| 4236 | struct stream *s; |
| 4237 | const char *name; |
| 4238 | size_t len; |
| 4239 | struct sample smp; |
| 4240 | |
Tim Duesterhus | 4e172c9 | 2020-05-19 13:49:42 +0200 | [diff] [blame] | 4241 | if (lua_gettop(L) < 3 || lua_gettop(L) > 4) |
| 4242 | WILL_LJMP(luaL_error(L, "'set_var' needs between 3 and 4 arguments")); |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4243 | |
| 4244 | /* It is useles to retrieve the stream, but this function |
| 4245 | * runs only in a stream context. |
| 4246 | */ |
| 4247 | appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4248 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 4249 | s = appctx->htxn.s; |
| 4250 | |
| 4251 | /* Converts the third argument in a sample. */ |
Amaury Denoyelle | bc0af6a | 2020-10-29 17:21:20 +0100 | [diff] [blame] | 4252 | memset(&smp, 0, sizeof(smp)); |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4253 | hlua_lua2smp(L, 3, &smp); |
| 4254 | |
| 4255 | /* Store the sample in a variable. */ |
| 4256 | smp_set_owner(&smp, s->be, s->sess, s, 0); |
Tim Duesterhus | 4e172c9 | 2020-05-19 13:49:42 +0200 | [diff] [blame] | 4257 | |
| 4258 | if (lua_gettop(L) == 4 && lua_toboolean(L, 4)) |
| 4259 | lua_pushboolean(L, vars_set_by_name_ifexist(name, len, &smp) != 0); |
| 4260 | else |
| 4261 | lua_pushboolean(L, vars_set_by_name(name, len, &smp) != 0); |
| 4262 | |
Tim Duesterhus | 84ebc13 | 2020-05-19 13:49:41 +0200 | [diff] [blame] | 4263 | return 1; |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4264 | } |
| 4265 | |
| 4266 | __LJMP static int hlua_applet_http_unset_var(lua_State *L) |
| 4267 | { |
| 4268 | struct hlua_appctx *appctx; |
| 4269 | struct stream *s; |
| 4270 | const char *name; |
| 4271 | size_t len; |
| 4272 | struct sample smp; |
| 4273 | |
| 4274 | MAY_LJMP(check_args(L, 2, "unset_var")); |
| 4275 | |
| 4276 | /* It is useles to retrieve the stream, but this function |
| 4277 | * runs only in a stream context. |
| 4278 | */ |
| 4279 | appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4280 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 4281 | s = appctx->htxn.s; |
| 4282 | |
| 4283 | /* Unset the variable. */ |
| 4284 | smp_set_owner(&smp, s->be, s->sess, s, 0); |
Tim Duesterhus | 84ebc13 | 2020-05-19 13:49:41 +0200 | [diff] [blame] | 4285 | lua_pushboolean(L, vars_unset_by_name_ifexist(name, len, &smp) != 0); |
| 4286 | return 1; |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4287 | } |
| 4288 | |
| 4289 | __LJMP static int hlua_applet_http_get_var(lua_State *L) |
| 4290 | { |
| 4291 | struct hlua_appctx *appctx; |
| 4292 | struct stream *s; |
| 4293 | const char *name; |
| 4294 | size_t len; |
| 4295 | struct sample smp; |
| 4296 | |
| 4297 | MAY_LJMP(check_args(L, 2, "get_var")); |
| 4298 | |
| 4299 | /* It is useles to retrieve the stream, but this function |
| 4300 | * runs only in a stream context. |
| 4301 | */ |
| 4302 | appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4303 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 4304 | s = appctx->htxn.s; |
| 4305 | |
| 4306 | smp_set_owner(&smp, s->be, s->sess, s, 0); |
| 4307 | if (!vars_get_by_name(name, len, &smp)) { |
| 4308 | lua_pushnil(L); |
| 4309 | return 1; |
| 4310 | } |
| 4311 | |
| 4312 | return hlua_smp2lua(L, &smp); |
| 4313 | } |
| 4314 | |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 4315 | __LJMP static int hlua_applet_http_set_priv(lua_State *L) |
| 4316 | { |
| 4317 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4318 | struct stream *s = appctx->htxn.s; |
Thierry FOURNIER | 3b0a6d4 | 2016-12-16 08:48:32 +0100 | [diff] [blame] | 4319 | struct hlua *hlua; |
| 4320 | |
| 4321 | /* 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] | 4322 | if (!s->hlua) |
| 4323 | return 0; |
| 4324 | hlua = s->hlua; |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 4325 | |
| 4326 | MAY_LJMP(check_args(L, 2, "set_priv")); |
| 4327 | |
| 4328 | /* Remove previous value. */ |
Thierry FOURNIER | e068b60 | 2017-04-26 13:27:05 +0200 | [diff] [blame] | 4329 | luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref); |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 4330 | |
| 4331 | /* Get and store new value. */ |
| 4332 | lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */ |
| 4333 | hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */ |
| 4334 | |
| 4335 | return 0; |
| 4336 | } |
| 4337 | |
| 4338 | __LJMP static int hlua_applet_http_get_priv(lua_State *L) |
| 4339 | { |
| 4340 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4341 | struct stream *s = appctx->htxn.s; |
Thierry FOURNIER | 3b0a6d4 | 2016-12-16 08:48:32 +0100 | [diff] [blame] | 4342 | struct hlua *hlua; |
| 4343 | |
| 4344 | /* 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] | 4345 | if (!s->hlua) { |
| 4346 | lua_pushnil(L); |
| 4347 | return 1; |
| 4348 | } |
| 4349 | hlua = s->hlua; |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 4350 | |
| 4351 | /* Push configuration index in the stack. */ |
| 4352 | lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref); |
| 4353 | |
| 4354 | return 1; |
| 4355 | } |
| 4356 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4357 | /* If expected data not yet available, it returns a yield. This function |
| 4358 | * consumes the data in the buffer. It returns a string containing the |
| 4359 | * data. This string can be empty. |
| 4360 | */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4361 | __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] | 4362 | { |
| 4363 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4364 | struct stream_interface *si = appctx->appctx->owner; |
| 4365 | struct channel *req = si_oc(si); |
| 4366 | struct htx *htx; |
| 4367 | struct htx_blk *blk; |
| 4368 | size_t count; |
| 4369 | int stop = 0; |
| 4370 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4371 | htx = htx_from_buf(&req->buf); |
| 4372 | count = co_data(req); |
Christopher Faulet | a3f1550 | 2019-05-13 15:27:23 +0200 | [diff] [blame] | 4373 | blk = htx_get_first_blk(htx); |
Christopher Faulet | cc26b13 | 2018-12-18 21:20:57 +0100 | [diff] [blame] | 4374 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4375 | while (count && !stop && blk) { |
| 4376 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 4377 | uint32_t sz = htx_get_blksz(blk); |
| 4378 | struct ist v; |
| 4379 | uint32_t vlen; |
| 4380 | char *nl; |
| 4381 | |
Christopher Faulet | e461e34 | 2018-12-18 16:43:35 +0100 | [diff] [blame] | 4382 | if (type == HTX_BLK_EOM) { |
| 4383 | stop = 1; |
| 4384 | break; |
| 4385 | } |
| 4386 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4387 | vlen = sz; |
| 4388 | if (vlen > count) { |
| 4389 | if (type != HTX_BLK_DATA) |
| 4390 | break; |
| 4391 | vlen = count; |
| 4392 | } |
| 4393 | |
| 4394 | switch (type) { |
| 4395 | case HTX_BLK_UNUSED: |
| 4396 | break; |
| 4397 | |
| 4398 | case HTX_BLK_DATA: |
| 4399 | v = htx_get_blk_value(htx, blk); |
| 4400 | v.len = vlen; |
| 4401 | nl = istchr(v, '\n'); |
| 4402 | if (nl != NULL) { |
| 4403 | stop = 1; |
| 4404 | vlen = nl - v.ptr + 1; |
| 4405 | } |
| 4406 | luaL_addlstring(&appctx->b, v.ptr, vlen); |
| 4407 | break; |
| 4408 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4409 | case HTX_BLK_TLR: |
| 4410 | case HTX_BLK_EOM: |
| 4411 | stop = 1; |
| 4412 | break; |
| 4413 | |
| 4414 | default: |
| 4415 | break; |
| 4416 | } |
| 4417 | |
| 4418 | co_set_data(req, co_data(req) - vlen); |
| 4419 | count -= vlen; |
| 4420 | if (sz == vlen) |
| 4421 | blk = htx_remove_blk(htx, blk); |
| 4422 | else { |
| 4423 | htx_cut_data_blk(htx, blk, vlen); |
| 4424 | break; |
| 4425 | } |
| 4426 | } |
| 4427 | |
Christopher Faulet | 0ae79d0 | 2019-02-27 21:36:59 +0100 | [diff] [blame] | 4428 | htx_to_buf(htx, &req->buf); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4429 | if (!stop) { |
| 4430 | si_cant_get(si); |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4431 | 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] | 4432 | } |
| 4433 | |
| 4434 | /* return the result. */ |
| 4435 | luaL_pushresult(&appctx->b); |
| 4436 | return 1; |
| 4437 | } |
| 4438 | |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4439 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 4440 | /* Check arguments for the function "hlua_channel_get_yield". */ |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4441 | __LJMP static int hlua_applet_http_getline(lua_State *L) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4442 | { |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4443 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4444 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4445 | /* Initialise the string catenation. */ |
| 4446 | luaL_buffinit(L, &appctx->b); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4447 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4448 | return MAY_LJMP(hlua_applet_http_getline_yield(L, 0, 0)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4449 | } |
| 4450 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4451 | /* If expected data not yet available, it returns a yield. This function |
| 4452 | * consumes the data in the buffer. It returns a string containing the |
| 4453 | * data. This string can be empty. |
| 4454 | */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4455 | __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] | 4456 | { |
| 4457 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4458 | struct stream_interface *si = appctx->appctx->owner; |
| 4459 | struct channel *req = si_oc(si); |
| 4460 | struct htx *htx; |
| 4461 | struct htx_blk *blk; |
| 4462 | size_t count; |
| 4463 | int len; |
| 4464 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4465 | htx = htx_from_buf(&req->buf); |
| 4466 | len = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 4467 | count = co_data(req); |
Christopher Faulet | 29f1758 | 2019-05-23 11:03:26 +0200 | [diff] [blame] | 4468 | blk = htx_get_head_blk(htx); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4469 | while (count && len && blk) { |
| 4470 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 4471 | uint32_t sz = htx_get_blksz(blk); |
| 4472 | struct ist v; |
| 4473 | uint32_t vlen; |
| 4474 | |
Christopher Faulet | e461e34 | 2018-12-18 16:43:35 +0100 | [diff] [blame] | 4475 | if (type == HTX_BLK_EOM) { |
| 4476 | len = 0; |
| 4477 | break; |
| 4478 | } |
| 4479 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4480 | vlen = sz; |
| 4481 | if (len > 0 && vlen > len) |
| 4482 | vlen = len; |
| 4483 | if (vlen > count) { |
| 4484 | if (type != HTX_BLK_DATA) |
| 4485 | break; |
| 4486 | vlen = count; |
| 4487 | } |
| 4488 | |
| 4489 | switch (type) { |
| 4490 | case HTX_BLK_UNUSED: |
| 4491 | break; |
| 4492 | |
| 4493 | case HTX_BLK_DATA: |
| 4494 | v = htx_get_blk_value(htx, blk); |
| 4495 | luaL_addlstring(&appctx->b, v.ptr, vlen); |
| 4496 | break; |
| 4497 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4498 | case HTX_BLK_TLR: |
| 4499 | case HTX_BLK_EOM: |
| 4500 | len = 0; |
| 4501 | break; |
| 4502 | |
| 4503 | default: |
| 4504 | break; |
| 4505 | } |
| 4506 | |
| 4507 | co_set_data(req, co_data(req) - vlen); |
| 4508 | count -= vlen; |
| 4509 | if (len > 0) |
| 4510 | len -= vlen; |
| 4511 | if (sz == vlen) |
| 4512 | blk = htx_remove_blk(htx, blk); |
| 4513 | else { |
| 4514 | htx_cut_data_blk(htx, blk, vlen); |
| 4515 | break; |
| 4516 | } |
| 4517 | } |
| 4518 | |
Christopher Faulet | 0ae79d0 | 2019-02-27 21:36:59 +0100 | [diff] [blame] | 4519 | htx_to_buf(htx, &req->buf); |
| 4520 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4521 | /* If we are no other data available, yield waiting for new data. */ |
| 4522 | if (len) { |
| 4523 | if (len > 0) { |
| 4524 | lua_pushinteger(L, len); |
| 4525 | lua_replace(L, 2); |
| 4526 | } |
| 4527 | si_cant_get(si); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 4528 | 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] | 4529 | } |
| 4530 | |
| 4531 | /* return the result. */ |
| 4532 | luaL_pushresult(&appctx->b); |
| 4533 | return 1; |
| 4534 | } |
| 4535 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 4536 | /* Check arguments for the function "hlua_channel_get_yield". */ |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4537 | __LJMP static int hlua_applet_http_recv(lua_State *L) |
| 4538 | { |
| 4539 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4540 | int len = -1; |
| 4541 | |
| 4542 | /* Check arguments. */ |
| 4543 | if (lua_gettop(L) > 2) |
| 4544 | WILL_LJMP(luaL_error(L, "The 'recv' function requires between 1 and 2 arguments.")); |
| 4545 | if (lua_gettop(L) >= 2) { |
| 4546 | len = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 4547 | lua_pop(L, 1); |
| 4548 | } |
| 4549 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4550 | lua_pushinteger(L, len); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4551 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4552 | /* Initialise the string catenation. */ |
| 4553 | luaL_buffinit(L, &appctx->b); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4554 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4555 | return MAY_LJMP(hlua_applet_http_recv_yield(L, 0, 0)); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4556 | } |
| 4557 | |
| 4558 | /* Append data in the output side of the buffer. This data is immediately |
| 4559 | * sent. The function returns the amount of data written. If the buffer |
| 4560 | * cannot contain the data, the function yields. The function returns -1 |
| 4561 | * if the channel is closed. |
| 4562 | */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4563 | __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] | 4564 | { |
| 4565 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4566 | struct stream_interface *si = appctx->appctx->owner; |
| 4567 | struct channel *res = si_ic(si); |
| 4568 | struct htx *htx = htx_from_buf(&res->buf); |
| 4569 | const char *data; |
| 4570 | size_t len; |
| 4571 | int l = MAY_LJMP(luaL_checkinteger(L, 3)); |
| 4572 | int max; |
| 4573 | |
Christopher Faulet | 9060fc0 | 2019-07-03 11:39:30 +0200 | [diff] [blame] | 4574 | max = htx_get_max_blksz(htx, channel_htx_recv_max(res, htx)); |
Christopher Faulet | 4b0e9b2 | 2019-01-09 12:16:58 +0100 | [diff] [blame] | 4575 | if (!max) |
| 4576 | goto snd_yield; |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4577 | |
| 4578 | data = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 4579 | |
| 4580 | /* Get the max amount of data which can write as input in the channel. */ |
| 4581 | if (max > (len - l)) |
| 4582 | max = len - l; |
| 4583 | |
| 4584 | /* Copy data. */ |
Willy Tarreau | 0a7ef02 | 2019-05-28 10:30:11 +0200 | [diff] [blame] | 4585 | max = htx_add_data(htx, ist2(data + l, max)); |
Christopher Faulet | f6cce3f | 2019-02-27 21:20:09 +0100 | [diff] [blame] | 4586 | channel_add_input(res, max); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4587 | |
| 4588 | /* update counters. */ |
| 4589 | l += max; |
| 4590 | lua_pop(L, 1); |
| 4591 | lua_pushinteger(L, l); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4592 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4593 | /* If some data is not send, declares the situation to the |
| 4594 | * applet, and returns a yield. |
| 4595 | */ |
| 4596 | if (l < len) { |
Christopher Faulet | 4b0e9b2 | 2019-01-09 12:16:58 +0100 | [diff] [blame] | 4597 | snd_yield: |
Christopher Faulet | 0ae79d0 | 2019-02-27 21:36:59 +0100 | [diff] [blame] | 4598 | htx_to_buf(htx, &res->buf); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4599 | si_rx_room_blk(si); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 4600 | 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] | 4601 | } |
| 4602 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4603 | htx_to_buf(htx, &res->buf); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4604 | return 1; |
| 4605 | } |
| 4606 | |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 4607 | /* Just a wrapper of "hlua_applet_send_yield". This wrapper permits |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4608 | * yield the LUA process, and resume it without checking the |
| 4609 | * input arguments. |
| 4610 | */ |
| 4611 | __LJMP static int hlua_applet_http_send(lua_State *L) |
| 4612 | { |
| 4613 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4614 | |
| 4615 | /* We want to send some data. Headers must be sent. */ |
| 4616 | if (!(appctx->appctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT)) { |
| 4617 | hlua_pusherror(L, "Lua: 'send' you must call start_response() before sending data."); |
| 4618 | WILL_LJMP(lua_error(L)); |
| 4619 | } |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4620 | |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 4621 | /* This integer is used for followinf the amount of data sent. */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4622 | lua_pushinteger(L, 0); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4623 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4624 | return MAY_LJMP(hlua_applet_http_send_yield(L, 0, 0)); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4625 | } |
| 4626 | |
| 4627 | __LJMP static int hlua_applet_http_addheader(lua_State *L) |
| 4628 | { |
| 4629 | const char *name; |
| 4630 | int ret; |
| 4631 | |
| 4632 | MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4633 | name = MAY_LJMP(luaL_checkstring(L, 2)); |
| 4634 | MAY_LJMP(luaL_checkstring(L, 3)); |
| 4635 | |
| 4636 | /* Push in the stack the "response" entry. */ |
| 4637 | ret = lua_getfield(L, 1, "response"); |
| 4638 | if (ret != LUA_TTABLE) { |
| 4639 | hlua_pusherror(L, "Lua: 'add_header' internal error: AppletHTTP['response'] " |
| 4640 | "is expected as an array. %s found", lua_typename(L, ret)); |
| 4641 | WILL_LJMP(lua_error(L)); |
| 4642 | } |
| 4643 | |
| 4644 | /* check if the header is already registered if it is not |
| 4645 | * the case, register it. |
| 4646 | */ |
| 4647 | ret = lua_getfield(L, -1, name); |
| 4648 | if (ret == LUA_TNIL) { |
| 4649 | |
| 4650 | /* Entry not found. */ |
| 4651 | lua_pop(L, 1); /* remove the nil. The "response" table is the top of the stack. */ |
| 4652 | |
| 4653 | /* Insert the new header name in the array in the top of the stack. |
| 4654 | * It left the new array in the top of the stack. |
| 4655 | */ |
| 4656 | lua_newtable(L); |
| 4657 | lua_pushvalue(L, 2); |
| 4658 | lua_pushvalue(L, -2); |
| 4659 | lua_settable(L, -4); |
| 4660 | |
| 4661 | } else if (ret != LUA_TTABLE) { |
| 4662 | |
| 4663 | /* corruption error. */ |
| 4664 | hlua_pusherror(L, "Lua: 'add_header' internal error: AppletHTTP['response']['%s'] " |
| 4665 | "is expected as an array. %s found", name, lua_typename(L, ret)); |
| 4666 | WILL_LJMP(lua_error(L)); |
| 4667 | } |
| 4668 | |
| 4669 | /* Now the top od thestack is an array of values. We push |
| 4670 | * the header value as new entry. |
| 4671 | */ |
| 4672 | lua_pushvalue(L, 3); |
| 4673 | ret = lua_rawlen(L, -2); |
| 4674 | lua_rawseti(L, -2, ret + 1); |
| 4675 | lua_pushboolean(L, 1); |
| 4676 | return 1; |
| 4677 | } |
| 4678 | |
| 4679 | __LJMP static int hlua_applet_http_status(lua_State *L) |
| 4680 | { |
| 4681 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4682 | int status = MAY_LJMP(luaL_checkinteger(L, 2)); |
Robin H. Johnson | 52f5db2 | 2017-01-01 13:10:52 -0800 | [diff] [blame] | 4683 | const char *reason = MAY_LJMP(luaL_optlstring(L, 3, NULL, NULL)); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4684 | |
| 4685 | if (status < 100 || status > 599) { |
| 4686 | lua_pushboolean(L, 0); |
| 4687 | return 1; |
| 4688 | } |
| 4689 | |
| 4690 | appctx->appctx->ctx.hlua_apphttp.status = status; |
Robin H. Johnson | 52f5db2 | 2017-01-01 13:10:52 -0800 | [diff] [blame] | 4691 | appctx->appctx->ctx.hlua_apphttp.reason = reason; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4692 | lua_pushboolean(L, 1); |
| 4693 | return 1; |
| 4694 | } |
| 4695 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4696 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4697 | __LJMP static int hlua_applet_http_send_response(lua_State *L) |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4698 | { |
| 4699 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4700 | struct stream_interface *si = appctx->appctx->owner; |
| 4701 | struct channel *res = si_ic(si); |
| 4702 | struct htx *htx; |
| 4703 | struct htx_sl *sl; |
| 4704 | struct h1m h1m; |
| 4705 | const char *status, *reason; |
| 4706 | const char *name, *value; |
| 4707 | size_t nlen, vlen; |
| 4708 | unsigned int flags; |
| 4709 | |
| 4710 | /* Send the message at once. */ |
| 4711 | htx = htx_from_buf(&res->buf); |
| 4712 | h1m_init_res(&h1m); |
| 4713 | |
| 4714 | /* Use the same http version than the request. */ |
| 4715 | status = ultoa_r(appctx->appctx->ctx.hlua_apphttp.status, trash.area, trash.size); |
| 4716 | reason = appctx->appctx->ctx.hlua_apphttp.reason; |
| 4717 | if (reason == NULL) |
| 4718 | reason = http_get_reason(appctx->appctx->ctx.hlua_apphttp.status); |
| 4719 | if (appctx->appctx->ctx.hlua_apphttp.flags & APPLET_HTTP11) { |
| 4720 | flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11); |
| 4721 | sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"), ist(status), ist(reason)); |
| 4722 | } |
| 4723 | else { |
| 4724 | flags = HTX_SL_F_IS_RESP; |
| 4725 | sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.0"), ist(status), ist(reason)); |
| 4726 | } |
| 4727 | if (!sl) { |
| 4728 | hlua_pusherror(L, "Lua applet http '%s': Failed to create response.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 4729 | appctx->appctx->rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4730 | WILL_LJMP(lua_error(L)); |
| 4731 | } |
| 4732 | sl->info.res.status = appctx->appctx->ctx.hlua_apphttp.status; |
| 4733 | |
| 4734 | /* Get the array associated to the field "response" in the object AppletHTTP. */ |
| 4735 | lua_pushvalue(L, 0); |
| 4736 | if (lua_getfield(L, 1, "response") != LUA_TTABLE) { |
| 4737 | hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response'] missing.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 4738 | appctx->appctx->rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4739 | WILL_LJMP(lua_error(L)); |
| 4740 | } |
| 4741 | |
| 4742 | /* Browse the list of headers. */ |
| 4743 | lua_pushnil(L); |
| 4744 | while(lua_next(L, -2) != 0) { |
| 4745 | /* We expect a string as -2. */ |
| 4746 | if (lua_type(L, -2) != LUA_TSTRING) { |
| 4747 | hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response'][] element must be a string. got %s.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 4748 | appctx->appctx->rule->arg.hlua_rule->fcn->name, |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4749 | lua_typename(L, lua_type(L, -2))); |
| 4750 | WILL_LJMP(lua_error(L)); |
| 4751 | } |
| 4752 | name = lua_tolstring(L, -2, &nlen); |
| 4753 | |
| 4754 | /* We expect an array as -1. */ |
| 4755 | if (lua_type(L, -1) != LUA_TTABLE) { |
| 4756 | hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response']['%s'] element must be an table. got %s.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 4757 | appctx->appctx->rule->arg.hlua_rule->fcn->name, |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4758 | name, |
| 4759 | lua_typename(L, lua_type(L, -1))); |
| 4760 | WILL_LJMP(lua_error(L)); |
| 4761 | } |
| 4762 | |
| 4763 | /* Browse the table who is on the top of the stack. */ |
| 4764 | lua_pushnil(L); |
| 4765 | while(lua_next(L, -2) != 0) { |
| 4766 | int id; |
| 4767 | |
| 4768 | /* We expect a number as -2. */ |
| 4769 | if (lua_type(L, -2) != LUA_TNUMBER) { |
| 4770 | hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response']['%s'][] element must be a number. got %s.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 4771 | appctx->appctx->rule->arg.hlua_rule->fcn->name, |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4772 | name, |
| 4773 | lua_typename(L, lua_type(L, -2))); |
| 4774 | WILL_LJMP(lua_error(L)); |
| 4775 | } |
| 4776 | id = lua_tointeger(L, -2); |
| 4777 | |
| 4778 | /* We expect a string as -2. */ |
| 4779 | if (lua_type(L, -1) != LUA_TSTRING) { |
| 4780 | hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response']['%s'][%d] element must be a string. got %s.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 4781 | appctx->appctx->rule->arg.hlua_rule->fcn->name, |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4782 | name, id, |
| 4783 | lua_typename(L, lua_type(L, -1))); |
| 4784 | WILL_LJMP(lua_error(L)); |
| 4785 | } |
| 4786 | value = lua_tolstring(L, -1, &vlen); |
| 4787 | |
| 4788 | /* Simple Protocol checks. */ |
| 4789 | if (isteqi(ist2(name, nlen), ist("transfer-encoding"))) |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 4790 | h1_parse_xfer_enc_header(&h1m, ist2(value, vlen)); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4791 | else if (isteqi(ist2(name, nlen), ist("content-length"))) { |
| 4792 | struct ist v = ist2(value, vlen); |
| 4793 | int ret; |
| 4794 | |
| 4795 | ret = h1_parse_cont_len_header(&h1m, &v); |
| 4796 | if (ret < 0) { |
| 4797 | hlua_pusherror(L, "Lua applet http '%s': Invalid '%s' header.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 4798 | appctx->appctx->rule->arg.hlua_rule->fcn->name, |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4799 | name); |
| 4800 | WILL_LJMP(lua_error(L)); |
| 4801 | } |
| 4802 | else if (ret == 0) |
| 4803 | goto next; /* Skip it */ |
| 4804 | } |
| 4805 | |
| 4806 | /* Add a new header */ |
| 4807 | if (!htx_add_header(htx, ist2(name, nlen), ist2(value, vlen))) { |
| 4808 | hlua_pusherror(L, "Lua applet http '%s': Failed to add header '%s' in the response.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 4809 | appctx->appctx->rule->arg.hlua_rule->fcn->name, |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4810 | name); |
| 4811 | WILL_LJMP(lua_error(L)); |
| 4812 | } |
| 4813 | next: |
| 4814 | /* Remove the array from the stack, and get next element with a remaining string. */ |
| 4815 | lua_pop(L, 1); |
| 4816 | } |
| 4817 | |
| 4818 | /* Remove the array from the stack, and get next element with a remaining string. */ |
| 4819 | lua_pop(L, 1); |
| 4820 | } |
| 4821 | |
| 4822 | if (h1m.flags & H1_MF_CHNK) |
| 4823 | h1m.flags &= ~H1_MF_CLEN; |
| 4824 | if (h1m.flags & (H1_MF_CLEN|H1_MF_CHNK)) |
| 4825 | h1m.flags |= H1_MF_XFER_LEN; |
| 4826 | |
| 4827 | /* Uset HTX start-line flags */ |
| 4828 | if (h1m.flags & H1_MF_XFER_ENC) |
| 4829 | flags |= HTX_SL_F_XFER_ENC; |
| 4830 | if (h1m.flags & H1_MF_XFER_LEN) { |
| 4831 | flags |= HTX_SL_F_XFER_LEN; |
| 4832 | if (h1m.flags & H1_MF_CHNK) |
| 4833 | flags |= HTX_SL_F_CHNK; |
| 4834 | else if (h1m.flags & H1_MF_CLEN) |
| 4835 | flags |= HTX_SL_F_CLEN; |
| 4836 | if (h1m.body_len == 0) |
| 4837 | flags |= HTX_SL_F_BODYLESS; |
| 4838 | } |
| 4839 | sl->flags |= flags; |
| 4840 | |
| 4841 | /* If we dont have a content-length set, and the HTTP version is 1.1 |
| 4842 | * and the status code implies the presence of a message body, we must |
| 4843 | * announce a transfer encoding chunked. This is required by haproxy |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 4844 | * for the keepalive compliance. If the applet announces a transfer-encoding |
| 4845 | * chunked itself, don't do anything. |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4846 | */ |
| 4847 | if ((flags & (HTX_SL_F_VER_11|HTX_SL_F_XFER_LEN)) == HTX_SL_F_VER_11 && |
| 4848 | appctx->appctx->ctx.hlua_apphttp.status >= 200 && |
| 4849 | appctx->appctx->ctx.hlua_apphttp.status != 204 && |
| 4850 | appctx->appctx->ctx.hlua_apphttp.status != 304) { |
| 4851 | /* Add a new header */ |
| 4852 | sl->flags |= (HTX_SL_F_XFER_ENC|H1_MF_CHNK|H1_MF_XFER_LEN); |
| 4853 | if (!htx_add_header(htx, ist("transfer-encoding"), ist("chunked"))) { |
| 4854 | hlua_pusherror(L, "Lua applet http '%s': Failed to add header 'transfer-encoding' in the response.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 4855 | appctx->appctx->rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4856 | WILL_LJMP(lua_error(L)); |
| 4857 | } |
| 4858 | } |
| 4859 | |
| 4860 | /* Finalize headers. */ |
| 4861 | if (!htx_add_endof(htx, HTX_BLK_EOH)) { |
| 4862 | hlua_pusherror(L, "Lua applet http '%s': Failed create the response.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 4863 | appctx->appctx->rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4864 | WILL_LJMP(lua_error(L)); |
| 4865 | } |
| 4866 | |
| 4867 | if (htx_used_space(htx) > b_size(&res->buf) - global.tune.maxrewrite) { |
| 4868 | b_reset(&res->buf); |
| 4869 | hlua_pusherror(L, "Lua: 'start_response': response header block too big"); |
| 4870 | WILL_LJMP(lua_error(L)); |
| 4871 | } |
| 4872 | |
| 4873 | htx_to_buf(htx, &res->buf); |
Christopher Faulet | f6cce3f | 2019-02-27 21:20:09 +0100 | [diff] [blame] | 4874 | channel_add_input(res, htx->data); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4875 | |
| 4876 | /* Headers sent, set the flag. */ |
| 4877 | appctx->appctx->ctx.hlua_apphttp.flags |= APPLET_HDR_SENT; |
| 4878 | return 0; |
| 4879 | |
| 4880 | } |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4881 | /* We will build the status line and the headers of the HTTP response. |
| 4882 | * We will try send at once if its not possible, we give back the hand |
| 4883 | * waiting for more room. |
| 4884 | */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4885 | __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] | 4886 | { |
| 4887 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4888 | struct stream_interface *si = appctx->appctx->owner; |
| 4889 | struct channel *res = si_ic(si); |
| 4890 | |
| 4891 | if (co_data(res)) { |
| 4892 | si_rx_room_blk(si); |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4893 | 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] | 4894 | } |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4895 | return MAY_LJMP(hlua_applet_http_send_response(L)); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4896 | } |
| 4897 | |
| 4898 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4899 | __LJMP static int hlua_applet_http_start_response(lua_State *L) |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4900 | { |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4901 | return MAY_LJMP(hlua_applet_http_start_response_yield(L, 0, 0)); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4902 | } |
| 4903 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4904 | /* |
| 4905 | * |
| 4906 | * |
| 4907 | * Class HTTP |
| 4908 | * |
| 4909 | * |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4910 | */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4911 | |
| 4912 | /* Returns a struct hlua_txn if the stack entry "ud" is |
| 4913 | * a class stream, otherwise it throws an error. |
| 4914 | */ |
| 4915 | __LJMP static struct hlua_txn *hlua_checkhttp(lua_State *L, int ud) |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4916 | { |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4917 | return MAY_LJMP(hlua_checkudata(L, ud, class_http_ref)); |
| 4918 | } |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4919 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4920 | /* This function creates and push in the stack a HTTP object |
| 4921 | * according with a current TXN. |
| 4922 | */ |
| 4923 | static int hlua_http_new(lua_State *L, struct hlua_txn *txn) |
| 4924 | { |
| 4925 | struct hlua_txn *htxn; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4926 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4927 | /* Check stack size. */ |
| 4928 | if (!lua_checkstack(L, 3)) |
| 4929 | return 0; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4930 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4931 | /* Create the object: obj[0] = userdata. |
| 4932 | * Note that the base of the Converters object is the |
| 4933 | * same than the TXN object. |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4934 | */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4935 | lua_newtable(L); |
| 4936 | htxn = lua_newuserdata(L, sizeof(*htxn)); |
| 4937 | lua_rawseti(L, -2, 0); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4938 | |
| 4939 | htxn->s = txn->s; |
| 4940 | htxn->p = txn->p; |
Christopher Faulet | 256b69a | 2019-05-23 11:14:21 +0200 | [diff] [blame] | 4941 | htxn->dir = txn->dir; |
| 4942 | htxn->flags = txn->flags; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4943 | |
| 4944 | /* Pop a class stream metatable and affect it to the table. */ |
| 4945 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_http_ref); |
| 4946 | lua_setmetatable(L, -2); |
| 4947 | |
| 4948 | return 1; |
| 4949 | } |
| 4950 | |
| 4951 | /* This function creates ans returns an array of HTTP headers. |
| 4952 | * This function does not fails. It is used as wrapper with the |
| 4953 | * 2 following functions. |
| 4954 | */ |
Christopher Faulet | 9d1332b | 2020-02-24 16:46:16 +0100 | [diff] [blame] | 4955 | __LJMP static int hlua_http_get_headers(lua_State *L, struct http_msg *msg) |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4956 | { |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4957 | struct htx *htx; |
| 4958 | int32_t pos; |
| 4959 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4960 | /* Create the table. */ |
| 4961 | lua_newtable(L); |
| 4962 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4963 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4964 | htx = htxbuf(&msg->chn->buf); |
| 4965 | for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) { |
| 4966 | struct htx_blk *blk = htx_get_blk(htx, pos); |
| 4967 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 4968 | struct ist n, v; |
| 4969 | int len; |
Christopher Faulet | 724a12c | 2018-12-13 22:12:15 +0100 | [diff] [blame] | 4970 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4971 | if (type == HTX_BLK_HDR) { |
| 4972 | n = htx_get_blk_name(htx,blk); |
| 4973 | v = htx_get_blk_value(htx, blk); |
Christopher Faulet | 724a12c | 2018-12-13 22:12:15 +0100 | [diff] [blame] | 4974 | } |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4975 | else if (type == HTX_BLK_EOH) |
| 4976 | break; |
| 4977 | else |
| 4978 | continue; |
Christopher Faulet | 724a12c | 2018-12-13 22:12:15 +0100 | [diff] [blame] | 4979 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4980 | /* Check for existing entry: |
| 4981 | * assume that the table is on the top of the stack, and |
| 4982 | * push the key in the stack, the function lua_gettable() |
| 4983 | * perform the lookup. |
| 4984 | */ |
| 4985 | lua_pushlstring(L, n.ptr, n.len); |
| 4986 | lua_gettable(L, -2); |
Christopher Faulet | 724a12c | 2018-12-13 22:12:15 +0100 | [diff] [blame] | 4987 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4988 | switch (lua_type(L, -1)) { |
| 4989 | case LUA_TNIL: |
| 4990 | /* Table not found, create it. */ |
| 4991 | lua_pop(L, 1); /* remove the nil value. */ |
| 4992 | lua_pushlstring(L, n.ptr, n.len); /* push the header name as key. */ |
| 4993 | lua_newtable(L); /* create and push empty table. */ |
| 4994 | lua_pushlstring(L, v.ptr, v.len); /* push header value. */ |
| 4995 | lua_rawseti(L, -2, 0); /* index header value (pop it). */ |
| 4996 | 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] | 4997 | break; |
Christopher Faulet | 724a12c | 2018-12-13 22:12:15 +0100 | [diff] [blame] | 4998 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4999 | case LUA_TTABLE: |
| 5000 | /* Entry found: push the value in the table. */ |
| 5001 | len = lua_rawlen(L, -1); |
| 5002 | lua_pushlstring(L, v.ptr, v.len); /* push header value. */ |
| 5003 | lua_rawseti(L, -2, len+1); /* index header value (pop it). */ |
| 5004 | lua_pop(L, 1); /* remove the table (it is stored in the main table). */ |
| 5005 | break; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5006 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5007 | default: |
| 5008 | /* Other cases are errors. */ |
| 5009 | hlua_pusherror(L, "internal error during the parsing of headers."); |
| 5010 | WILL_LJMP(lua_error(L)); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5011 | } |
| 5012 | } |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5013 | return 1; |
| 5014 | } |
| 5015 | |
| 5016 | __LJMP static int hlua_http_req_get_headers(lua_State *L) |
| 5017 | { |
| 5018 | struct hlua_txn *htxn; |
| 5019 | |
| 5020 | MAY_LJMP(check_args(L, 1, "req_get_headers")); |
| 5021 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5022 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5023 | if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5024 | WILL_LJMP(lua_error(L)); |
| 5025 | |
Christopher Faulet | 9d1332b | 2020-02-24 16:46:16 +0100 | [diff] [blame] | 5026 | return hlua_http_get_headers(L, &htxn->s->txn->req); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5027 | } |
| 5028 | |
| 5029 | __LJMP static int hlua_http_res_get_headers(lua_State *L) |
| 5030 | { |
| 5031 | struct hlua_txn *htxn; |
| 5032 | |
| 5033 | MAY_LJMP(check_args(L, 1, "res_get_headers")); |
| 5034 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5035 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5036 | if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5037 | WILL_LJMP(lua_error(L)); |
| 5038 | |
Christopher Faulet | 9d1332b | 2020-02-24 16:46:16 +0100 | [diff] [blame] | 5039 | return hlua_http_get_headers(L, &htxn->s->txn->rsp); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5040 | } |
| 5041 | |
| 5042 | /* This function replace full header, or just a value in |
| 5043 | * the request or in the response. It is a wrapper fir the |
| 5044 | * 4 following functions. |
| 5045 | */ |
Christopher Faulet | d1914aa | 2020-02-24 16:52:46 +0100 | [diff] [blame] | 5046 | __LJMP static inline int hlua_http_rep_hdr(lua_State *L, struct http_msg *msg, int full) |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5047 | { |
| 5048 | size_t name_len; |
| 5049 | const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len)); |
| 5050 | const char *reg = MAY_LJMP(luaL_checkstring(L, 3)); |
| 5051 | const char *value = MAY_LJMP(luaL_checkstring(L, 4)); |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5052 | struct htx *htx; |
Dragan Dosen | 2674303 | 2019-04-30 15:54:36 +0200 | [diff] [blame] | 5053 | struct my_regex *re; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5054 | |
Dragan Dosen | 2674303 | 2019-04-30 15:54:36 +0200 | [diff] [blame] | 5055 | if (!(re = regex_comp(reg, 1, 1, NULL))) |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5056 | WILL_LJMP(luaL_argerror(L, 3, "invalid regex")); |
| 5057 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5058 | htx = htxbuf(&msg->chn->buf); |
Christopher Faulet | d1914aa | 2020-02-24 16:52:46 +0100 | [diff] [blame] | 5059 | http_replace_hdrs(chn_strm(msg->chn), htx, ist2(name, name_len), value, re, full); |
Dragan Dosen | 2674303 | 2019-04-30 15:54:36 +0200 | [diff] [blame] | 5060 | regex_free(re); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5061 | return 0; |
| 5062 | } |
| 5063 | |
| 5064 | __LJMP static int hlua_http_req_rep_hdr(lua_State *L) |
| 5065 | { |
| 5066 | struct hlua_txn *htxn; |
| 5067 | |
| 5068 | MAY_LJMP(check_args(L, 4, "req_rep_hdr")); |
| 5069 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5070 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5071 | if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5072 | WILL_LJMP(lua_error(L)); |
| 5073 | |
Christopher Faulet | d1914aa | 2020-02-24 16:52:46 +0100 | [diff] [blame] | 5074 | return MAY_LJMP(hlua_http_rep_hdr(L, &htxn->s->txn->req, 1)); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5075 | } |
| 5076 | |
| 5077 | __LJMP static int hlua_http_res_rep_hdr(lua_State *L) |
| 5078 | { |
| 5079 | struct hlua_txn *htxn; |
| 5080 | |
| 5081 | MAY_LJMP(check_args(L, 4, "res_rep_hdr")); |
| 5082 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5083 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5084 | if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5085 | WILL_LJMP(lua_error(L)); |
| 5086 | |
Christopher Faulet | d1914aa | 2020-02-24 16:52:46 +0100 | [diff] [blame] | 5087 | return MAY_LJMP(hlua_http_rep_hdr(L, &htxn->s->txn->rsp, 1)); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5088 | } |
| 5089 | |
| 5090 | __LJMP static int hlua_http_req_rep_val(lua_State *L) |
| 5091 | { |
| 5092 | struct hlua_txn *htxn; |
| 5093 | |
| 5094 | MAY_LJMP(check_args(L, 4, "req_rep_hdr")); |
| 5095 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5096 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5097 | if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5098 | WILL_LJMP(lua_error(L)); |
| 5099 | |
Christopher Faulet | d1914aa | 2020-02-24 16:52:46 +0100 | [diff] [blame] | 5100 | return MAY_LJMP(hlua_http_rep_hdr(L, &htxn->s->txn->req, 0)); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5101 | } |
| 5102 | |
| 5103 | __LJMP static int hlua_http_res_rep_val(lua_State *L) |
| 5104 | { |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5105 | struct hlua_txn *htxn; |
| 5106 | |
| 5107 | MAY_LJMP(check_args(L, 4, "res_rep_val")); |
| 5108 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5109 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5110 | if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5111 | WILL_LJMP(lua_error(L)); |
| 5112 | |
Christopher Faulet | d1914aa | 2020-02-24 16:52:46 +0100 | [diff] [blame] | 5113 | return MAY_LJMP(hlua_http_rep_hdr(L, &htxn->s->txn->rsp, 0)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5114 | } |
| 5115 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 5116 | /* This function deletes all the occurrences of an header. |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5117 | * It is a wrapper for the 2 following functions. |
| 5118 | */ |
Christopher Faulet | d31c7b3 | 2020-02-25 09:37:57 +0100 | [diff] [blame] | 5119 | __LJMP static inline int hlua_http_del_hdr(lua_State *L, struct http_msg *msg) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5120 | { |
| 5121 | size_t len; |
| 5122 | const char *name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5123 | struct htx *htx = htxbuf(&msg->chn->buf); |
| 5124 | struct http_hdr_ctx ctx; |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5125 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5126 | ctx.blk = NULL; |
| 5127 | while (http_find_header(htx, ist2(name, len), &ctx, 1)) |
| 5128 | http_remove_header(htx, &ctx); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5129 | return 0; |
| 5130 | } |
| 5131 | |
| 5132 | __LJMP static int hlua_http_req_del_hdr(lua_State *L) |
| 5133 | { |
| 5134 | struct hlua_txn *htxn; |
| 5135 | |
| 5136 | MAY_LJMP(check_args(L, 2, "req_del_hdr")); |
| 5137 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5138 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5139 | if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5140 | WILL_LJMP(lua_error(L)); |
| 5141 | |
Christopher Faulet | d31c7b3 | 2020-02-25 09:37:57 +0100 | [diff] [blame] | 5142 | return hlua_http_del_hdr(L, &htxn->s->txn->req); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5143 | } |
| 5144 | |
| 5145 | __LJMP static int hlua_http_res_del_hdr(lua_State *L) |
| 5146 | { |
| 5147 | struct hlua_txn *htxn; |
| 5148 | |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5149 | MAY_LJMP(check_args(L, 2, "res_del_hdr")); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5150 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5151 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5152 | if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5153 | WILL_LJMP(lua_error(L)); |
| 5154 | |
Christopher Faulet | d31c7b3 | 2020-02-25 09:37:57 +0100 | [diff] [blame] | 5155 | return hlua_http_del_hdr(L, &htxn->s->txn->rsp); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5156 | } |
| 5157 | |
| 5158 | /* This function adds an header. It is a wrapper used by |
| 5159 | * the 2 following functions. |
| 5160 | */ |
Christopher Faulet | d31c7b3 | 2020-02-25 09:37:57 +0100 | [diff] [blame] | 5161 | __LJMP static inline int hlua_http_add_hdr(lua_State *L, struct http_msg *msg) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5162 | { |
| 5163 | size_t name_len; |
| 5164 | const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len)); |
| 5165 | size_t value_len; |
| 5166 | const char *value = MAY_LJMP(luaL_checklstring(L, 3, &value_len)); |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5167 | struct htx *htx = htxbuf(&msg->chn->buf); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5168 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5169 | lua_pushboolean(L, http_add_header(htx, ist2(name, name_len), |
| 5170 | ist2(value, value_len))); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5171 | return 0; |
| 5172 | } |
| 5173 | |
| 5174 | __LJMP static int hlua_http_req_add_hdr(lua_State *L) |
| 5175 | { |
| 5176 | struct hlua_txn *htxn; |
| 5177 | |
| 5178 | MAY_LJMP(check_args(L, 3, "req_add_hdr")); |
| 5179 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5180 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5181 | if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5182 | WILL_LJMP(lua_error(L)); |
| 5183 | |
Christopher Faulet | d31c7b3 | 2020-02-25 09:37:57 +0100 | [diff] [blame] | 5184 | return hlua_http_add_hdr(L, &htxn->s->txn->req); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5185 | } |
| 5186 | |
| 5187 | __LJMP static int hlua_http_res_add_hdr(lua_State *L) |
| 5188 | { |
| 5189 | struct hlua_txn *htxn; |
| 5190 | |
| 5191 | MAY_LJMP(check_args(L, 3, "res_add_hdr")); |
| 5192 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5193 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5194 | if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5195 | WILL_LJMP(lua_error(L)); |
| 5196 | |
Christopher Faulet | d31c7b3 | 2020-02-25 09:37:57 +0100 | [diff] [blame] | 5197 | return hlua_http_add_hdr(L, &htxn->s->txn->rsp); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5198 | } |
| 5199 | |
| 5200 | static int hlua_http_req_set_hdr(lua_State *L) |
| 5201 | { |
| 5202 | struct hlua_txn *htxn; |
| 5203 | |
| 5204 | MAY_LJMP(check_args(L, 3, "req_set_hdr")); |
| 5205 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5206 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5207 | if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5208 | WILL_LJMP(lua_error(L)); |
| 5209 | |
Christopher Faulet | d31c7b3 | 2020-02-25 09:37:57 +0100 | [diff] [blame] | 5210 | hlua_http_del_hdr(L, &htxn->s->txn->req); |
| 5211 | return hlua_http_add_hdr(L, &htxn->s->txn->req); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5212 | } |
| 5213 | |
| 5214 | static int hlua_http_res_set_hdr(lua_State *L) |
| 5215 | { |
| 5216 | struct hlua_txn *htxn; |
| 5217 | |
| 5218 | MAY_LJMP(check_args(L, 3, "res_set_hdr")); |
| 5219 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5220 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5221 | if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5222 | WILL_LJMP(lua_error(L)); |
| 5223 | |
Christopher Faulet | d31c7b3 | 2020-02-25 09:37:57 +0100 | [diff] [blame] | 5224 | hlua_http_del_hdr(L, &htxn->s->txn->rsp); |
| 5225 | return hlua_http_add_hdr(L, &htxn->s->txn->rsp); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5226 | } |
| 5227 | |
| 5228 | /* This function set the method. */ |
| 5229 | static int hlua_http_req_set_meth(lua_State *L) |
| 5230 | { |
Willy Tarreau | bcb39cc | 2015-04-06 11:21:44 +0200 | [diff] [blame] | 5231 | struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5232 | size_t name_len; |
| 5233 | const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5234 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5235 | if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5236 | WILL_LJMP(lua_error(L)); |
| 5237 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 5238 | 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] | 5239 | return 1; |
| 5240 | } |
| 5241 | |
| 5242 | /* This function set the method. */ |
| 5243 | static int hlua_http_req_set_path(lua_State *L) |
| 5244 | { |
Willy Tarreau | bcb39cc | 2015-04-06 11:21:44 +0200 | [diff] [blame] | 5245 | struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5246 | size_t name_len; |
| 5247 | 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] | 5248 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5249 | if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5250 | WILL_LJMP(lua_error(L)); |
| 5251 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 5252 | 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] | 5253 | return 1; |
| 5254 | } |
| 5255 | |
| 5256 | /* This function set the query-string. */ |
| 5257 | static int hlua_http_req_set_query(lua_State *L) |
| 5258 | { |
Willy Tarreau | bcb39cc | 2015-04-06 11:21:44 +0200 | [diff] [blame] | 5259 | struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5260 | size_t name_len; |
| 5261 | const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5262 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5263 | if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5264 | WILL_LJMP(lua_error(L)); |
| 5265 | |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5266 | /* Check length. */ |
| 5267 | if (name_len > trash.size - 1) { |
| 5268 | lua_pushboolean(L, 0); |
| 5269 | return 1; |
| 5270 | } |
| 5271 | |
| 5272 | /* Add the mark question as prefix. */ |
| 5273 | chunk_reset(&trash); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 5274 | trash.area[trash.data++] = '?'; |
| 5275 | memcpy(trash.area + trash.data, name, name_len); |
| 5276 | trash.data += name_len; |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5277 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 5278 | lua_pushboolean(L, |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 5279 | 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] | 5280 | return 1; |
| 5281 | } |
| 5282 | |
| 5283 | /* This function set the uri. */ |
| 5284 | static int hlua_http_req_set_uri(lua_State *L) |
| 5285 | { |
Willy Tarreau | bcb39cc | 2015-04-06 11:21:44 +0200 | [diff] [blame] | 5286 | struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5287 | size_t name_len; |
| 5288 | const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5289 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5290 | if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5291 | WILL_LJMP(lua_error(L)); |
| 5292 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 5293 | 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] | 5294 | return 1; |
| 5295 | } |
| 5296 | |
Robin H. Johnson | 52f5db2 | 2017-01-01 13:10:52 -0800 | [diff] [blame] | 5297 | /* This function set the response code & optionally reason. */ |
Thierry FOURNIER | 35d70ef | 2015-08-26 16:21:56 +0200 | [diff] [blame] | 5298 | static int hlua_http_res_set_status(lua_State *L) |
| 5299 | { |
| 5300 | struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5301 | unsigned int code = MAY_LJMP(luaL_checkinteger(L, 2)); |
Christopher Faulet | 96bff76 | 2019-12-17 13:46:18 +0100 | [diff] [blame] | 5302 | const char *str = MAY_LJMP(luaL_optlstring(L, 3, NULL, NULL)); |
| 5303 | const struct ist reason = ist2(str, (str ? strlen(str) : 0)); |
Thierry FOURNIER | 35d70ef | 2015-08-26 16:21:56 +0200 | [diff] [blame] | 5304 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5305 | if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5306 | WILL_LJMP(lua_error(L)); |
| 5307 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 5308 | http_res_set_status(code, reason, htxn->s); |
Thierry FOURNIER | 35d70ef | 2015-08-26 16:21:56 +0200 | [diff] [blame] | 5309 | return 0; |
| 5310 | } |
| 5311 | |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5312 | /* |
| 5313 | * |
| 5314 | * |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 5315 | * Class TXN |
| 5316 | * |
| 5317 | * |
| 5318 | */ |
| 5319 | |
| 5320 | /* Returns a struct hlua_session if the stack entry "ud" is |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 5321 | * a class stream, otherwise it throws an error. |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 5322 | */ |
| 5323 | __LJMP static struct hlua_txn *hlua_checktxn(lua_State *L, int ud) |
| 5324 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 5325 | return MAY_LJMP(hlua_checkudata(L, ud, class_txn_ref)); |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 5326 | } |
| 5327 | |
Thierry FOURNIER | 053ba8ad | 2015-06-08 13:05:33 +0200 | [diff] [blame] | 5328 | __LJMP static int hlua_set_var(lua_State *L) |
| 5329 | { |
| 5330 | struct hlua_txn *htxn; |
| 5331 | const char *name; |
| 5332 | size_t len; |
| 5333 | struct sample smp; |
| 5334 | |
Tim Duesterhus | 4e172c9 | 2020-05-19 13:49:42 +0200 | [diff] [blame] | 5335 | if (lua_gettop(L) < 3 || lua_gettop(L) > 4) |
| 5336 | WILL_LJMP(luaL_error(L, "'set_var' needs between 3 and 4 arguments")); |
Thierry FOURNIER | 053ba8ad | 2015-06-08 13:05:33 +0200 | [diff] [blame] | 5337 | |
| 5338 | /* It is useles to retrieve the stream, but this function |
| 5339 | * runs only in a stream context. |
| 5340 | */ |
| 5341 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5342 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 5343 | |
| 5344 | /* Converts the third argument in a sample. */ |
Amaury Denoyelle | bc0af6a | 2020-10-29 17:21:20 +0100 | [diff] [blame] | 5345 | memset(&smp, 0, sizeof(smp)); |
Thierry FOURNIER | 053ba8ad | 2015-06-08 13:05:33 +0200 | [diff] [blame] | 5346 | hlua_lua2smp(L, 3, &smp); |
| 5347 | |
| 5348 | /* Store the sample in a variable. */ |
Willy Tarreau | 7560dd4 | 2016-03-10 16:28:58 +0100 | [diff] [blame] | 5349 | smp_set_owner(&smp, htxn->p, htxn->s->sess, htxn->s, htxn->dir & SMP_OPT_DIR); |
Tim Duesterhus | 4e172c9 | 2020-05-19 13:49:42 +0200 | [diff] [blame] | 5350 | |
| 5351 | if (lua_gettop(L) == 4 && lua_toboolean(L, 4)) |
| 5352 | lua_pushboolean(L, vars_set_by_name_ifexist(name, len, &smp) != 0); |
| 5353 | else |
| 5354 | lua_pushboolean(L, vars_set_by_name(name, len, &smp) != 0); |
| 5355 | |
Tim Duesterhus | 84ebc13 | 2020-05-19 13:49:41 +0200 | [diff] [blame] | 5356 | return 1; |
Thierry FOURNIER | 053ba8ad | 2015-06-08 13:05:33 +0200 | [diff] [blame] | 5357 | } |
| 5358 | |
Christopher Faulet | 85d79c9 | 2016-11-09 16:54:56 +0100 | [diff] [blame] | 5359 | __LJMP static int hlua_unset_var(lua_State *L) |
| 5360 | { |
| 5361 | struct hlua_txn *htxn; |
| 5362 | const char *name; |
| 5363 | size_t len; |
| 5364 | struct sample smp; |
| 5365 | |
| 5366 | MAY_LJMP(check_args(L, 2, "unset_var")); |
| 5367 | |
| 5368 | /* It is useles to retrieve the stream, but this function |
| 5369 | * runs only in a stream context. |
| 5370 | */ |
| 5371 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5372 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 5373 | |
| 5374 | /* Unset the variable. */ |
| 5375 | smp_set_owner(&smp, htxn->p, htxn->s->sess, htxn->s, htxn->dir & SMP_OPT_DIR); |
Tim Duesterhus | 84ebc13 | 2020-05-19 13:49:41 +0200 | [diff] [blame] | 5376 | lua_pushboolean(L, vars_unset_by_name_ifexist(name, len, &smp) != 0); |
| 5377 | return 1; |
Christopher Faulet | 85d79c9 | 2016-11-09 16:54:56 +0100 | [diff] [blame] | 5378 | } |
| 5379 | |
Thierry FOURNIER | 053ba8ad | 2015-06-08 13:05:33 +0200 | [diff] [blame] | 5380 | __LJMP static int hlua_get_var(lua_State *L) |
| 5381 | { |
| 5382 | struct hlua_txn *htxn; |
| 5383 | const char *name; |
| 5384 | size_t len; |
| 5385 | struct sample smp; |
| 5386 | |
| 5387 | MAY_LJMP(check_args(L, 2, "get_var")); |
| 5388 | |
| 5389 | /* It is useles to retrieve the stream, but this function |
| 5390 | * runs only in a stream context. |
| 5391 | */ |
| 5392 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5393 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 5394 | |
Willy Tarreau | 7560dd4 | 2016-03-10 16:28:58 +0100 | [diff] [blame] | 5395 | 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] | 5396 | if (!vars_get_by_name(name, len, &smp)) { |
Thierry FOURNIER | 053ba8ad | 2015-06-08 13:05:33 +0200 | [diff] [blame] | 5397 | lua_pushnil(L); |
| 5398 | return 1; |
| 5399 | } |
| 5400 | |
| 5401 | return hlua_smp2lua(L, &smp); |
| 5402 | } |
| 5403 | |
Willy Tarreau | 5955166 | 2015-03-10 14:23:13 +0100 | [diff] [blame] | 5404 | __LJMP static int hlua_set_priv(lua_State *L) |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 5405 | { |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 5406 | struct hlua *hlua; |
| 5407 | |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 5408 | MAY_LJMP(check_args(L, 2, "set_priv")); |
| 5409 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 5410 | /* It is useles to retrieve the stream, but this function |
| 5411 | * runs only in a stream context. |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 5412 | */ |
| 5413 | MAY_LJMP(hlua_checktxn(L, 1)); |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 5414 | |
| 5415 | /* Get hlua struct, or NULL if we execute from main lua state */ |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 5416 | hlua = hlua_gethlua(L); |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 5417 | if (!hlua) |
| 5418 | return 0; |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 5419 | |
| 5420 | /* Remove previous value. */ |
Thierry FOURNIER | e068b60 | 2017-04-26 13:27:05 +0200 | [diff] [blame] | 5421 | luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref); |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 5422 | |
| 5423 | /* Get and store new value. */ |
| 5424 | lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */ |
| 5425 | hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */ |
| 5426 | |
| 5427 | return 0; |
| 5428 | } |
| 5429 | |
Willy Tarreau | 5955166 | 2015-03-10 14:23:13 +0100 | [diff] [blame] | 5430 | __LJMP static int hlua_get_priv(lua_State *L) |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 5431 | { |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 5432 | struct hlua *hlua; |
| 5433 | |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 5434 | MAY_LJMP(check_args(L, 1, "get_priv")); |
| 5435 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 5436 | /* It is useles to retrieve the stream, but this function |
| 5437 | * runs only in a stream context. |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 5438 | */ |
| 5439 | MAY_LJMP(hlua_checktxn(L, 1)); |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 5440 | |
| 5441 | /* Get hlua struct, or NULL if we execute from main lua state */ |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 5442 | hlua = hlua_gethlua(L); |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 5443 | if (!hlua) { |
| 5444 | lua_pushnil(L); |
| 5445 | return 1; |
| 5446 | } |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 5447 | |
| 5448 | /* Push configuration index in the stack. */ |
| 5449 | lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref); |
| 5450 | |
| 5451 | return 1; |
| 5452 | } |
| 5453 | |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 5454 | /* Create stack entry containing a class TXN. This function |
| 5455 | * return 0 if the stack does not contains free slots, |
| 5456 | * otherwise it returns 1. |
| 5457 | */ |
Thierry FOURNIER | ab00df6 | 2016-07-14 11:42:37 +0200 | [diff] [blame] | 5458 | 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] | 5459 | { |
Willy Tarreau | de49138 | 2015-04-06 11:04:28 +0200 | [diff] [blame] | 5460 | struct hlua_txn *htxn; |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 5461 | |
| 5462 | /* Check stack size. */ |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 5463 | if (!lua_checkstack(L, 3)) |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 5464 | return 0; |
| 5465 | |
| 5466 | /* NOTE: The allocation never fails. The failure |
| 5467 | * throw an error, and the function never returns. |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 5468 | * if the throw is not available, the process is aborted. |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 5469 | */ |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 5470 | /* Create the object: obj[0] = userdata. */ |
| 5471 | lua_newtable(L); |
Willy Tarreau | de49138 | 2015-04-06 11:04:28 +0200 | [diff] [blame] | 5472 | htxn = lua_newuserdata(L, sizeof(*htxn)); |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 5473 | lua_rawseti(L, -2, 0); |
| 5474 | |
Willy Tarreau | de49138 | 2015-04-06 11:04:28 +0200 | [diff] [blame] | 5475 | htxn->s = s; |
| 5476 | htxn->p = p; |
Thierry FOURNIER | c4eebc8 | 2015-11-02 10:01:59 +0100 | [diff] [blame] | 5477 | htxn->dir = dir; |
Thierry FOURNIER | ab00df6 | 2016-07-14 11:42:37 +0200 | [diff] [blame] | 5478 | htxn->flags = flags; |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 5479 | |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 5480 | /* Create the "f" field that contains a list of fetches. */ |
| 5481 | lua_pushstring(L, "f"); |
Thierry FOURNIER | ca98866 | 2015-12-20 18:43:03 +0100 | [diff] [blame] | 5482 | if (!hlua_fetches_new(L, htxn, HLUA_F_MAY_USE_HTTP)) |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 5483 | return 0; |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 5484 | lua_rawset(L, -3); |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 5485 | |
| 5486 | /* Create the "sf" field that contains a list of stringsafe fetches. */ |
| 5487 | lua_pushstring(L, "sf"); |
Thierry FOURNIER | ca98866 | 2015-12-20 18:43:03 +0100 | [diff] [blame] | 5488 | 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] | 5489 | return 0; |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 5490 | lua_rawset(L, -3); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 5491 | |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 5492 | /* Create the "c" field that contains a list of converters. */ |
| 5493 | lua_pushstring(L, "c"); |
Willy Tarreau | de49138 | 2015-04-06 11:04:28 +0200 | [diff] [blame] | 5494 | if (!hlua_converters_new(L, htxn, 0)) |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 5495 | return 0; |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 5496 | lua_rawset(L, -3); |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 5497 | |
| 5498 | /* Create the "sc" field that contains a list of stringsafe converters. */ |
| 5499 | lua_pushstring(L, "sc"); |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 5500 | if (!hlua_converters_new(L, htxn, HLUA_F_AS_STRING)) |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 5501 | return 0; |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 5502 | lua_rawset(L, -3); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 5503 | |
Thierry FOURNIER | 397826a | 2015-03-11 19:39:09 +0100 | [diff] [blame] | 5504 | /* Create the "req" field that contains the request channel object. */ |
| 5505 | lua_pushstring(L, "req"); |
Willy Tarreau | 2a71af4 | 2015-03-10 13:51:50 +0100 | [diff] [blame] | 5506 | if (!hlua_channel_new(L, &s->req)) |
Thierry FOURNIER | 397826a | 2015-03-11 19:39:09 +0100 | [diff] [blame] | 5507 | return 0; |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 5508 | lua_rawset(L, -3); |
Thierry FOURNIER | 397826a | 2015-03-11 19:39:09 +0100 | [diff] [blame] | 5509 | |
| 5510 | /* Create the "res" field that contains the response channel object. */ |
| 5511 | lua_pushstring(L, "res"); |
Willy Tarreau | 2a71af4 | 2015-03-10 13:51:50 +0100 | [diff] [blame] | 5512 | if (!hlua_channel_new(L, &s->res)) |
Thierry FOURNIER | 397826a | 2015-03-11 19:39:09 +0100 | [diff] [blame] | 5513 | return 0; |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 5514 | lua_rawset(L, -3); |
Thierry FOURNIER | 397826a | 2015-03-11 19:39:09 +0100 | [diff] [blame] | 5515 | |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5516 | /* Creates the HTTP object is the current proxy allows http. */ |
| 5517 | lua_pushstring(L, "http"); |
| 5518 | if (p->mode == PR_MODE_HTTP) { |
Willy Tarreau | de49138 | 2015-04-06 11:04:28 +0200 | [diff] [blame] | 5519 | if (!hlua_http_new(L, htxn)) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5520 | return 0; |
| 5521 | } |
| 5522 | else |
| 5523 | lua_pushnil(L); |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 5524 | lua_rawset(L, -3); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5525 | |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 5526 | /* Pop a class sesison metatable and affect it to the userdata. */ |
| 5527 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_txn_ref); |
| 5528 | lua_setmetatable(L, -2); |
| 5529 | |
| 5530 | return 1; |
| 5531 | } |
| 5532 | |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 5533 | __LJMP static int hlua_txn_deflog(lua_State *L) |
| 5534 | { |
| 5535 | const char *msg; |
| 5536 | struct hlua_txn *htxn; |
| 5537 | |
| 5538 | MAY_LJMP(check_args(L, 2, "deflog")); |
| 5539 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5540 | msg = MAY_LJMP(luaL_checkstring(L, 2)); |
| 5541 | |
| 5542 | hlua_sendlog(htxn->s->be, htxn->s->logs.level, msg); |
| 5543 | return 0; |
| 5544 | } |
| 5545 | |
| 5546 | __LJMP static int hlua_txn_log(lua_State *L) |
| 5547 | { |
| 5548 | int level; |
| 5549 | const char *msg; |
| 5550 | struct hlua_txn *htxn; |
| 5551 | |
| 5552 | MAY_LJMP(check_args(L, 3, "log")); |
| 5553 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5554 | level = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 5555 | msg = MAY_LJMP(luaL_checkstring(L, 3)); |
| 5556 | |
| 5557 | if (level < 0 || level >= NB_LOG_LEVELS) |
| 5558 | WILL_LJMP(luaL_argerror(L, 1, "Invalid loglevel.")); |
| 5559 | |
| 5560 | hlua_sendlog(htxn->s->be, level, msg); |
| 5561 | return 0; |
| 5562 | } |
| 5563 | |
| 5564 | __LJMP static int hlua_txn_log_debug(lua_State *L) |
| 5565 | { |
| 5566 | const char *msg; |
| 5567 | struct hlua_txn *htxn; |
| 5568 | |
| 5569 | MAY_LJMP(check_args(L, 2, "Debug")); |
| 5570 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5571 | msg = MAY_LJMP(luaL_checkstring(L, 2)); |
| 5572 | hlua_sendlog(htxn->s->be, LOG_DEBUG, msg); |
| 5573 | return 0; |
| 5574 | } |
| 5575 | |
| 5576 | __LJMP static int hlua_txn_log_info(lua_State *L) |
| 5577 | { |
| 5578 | const char *msg; |
| 5579 | struct hlua_txn *htxn; |
| 5580 | |
| 5581 | MAY_LJMP(check_args(L, 2, "Info")); |
| 5582 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5583 | msg = MAY_LJMP(luaL_checkstring(L, 2)); |
| 5584 | hlua_sendlog(htxn->s->be, LOG_INFO, msg); |
| 5585 | return 0; |
| 5586 | } |
| 5587 | |
| 5588 | __LJMP static int hlua_txn_log_warning(lua_State *L) |
| 5589 | { |
| 5590 | const char *msg; |
| 5591 | struct hlua_txn *htxn; |
| 5592 | |
| 5593 | MAY_LJMP(check_args(L, 2, "Warning")); |
| 5594 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5595 | msg = MAY_LJMP(luaL_checkstring(L, 2)); |
| 5596 | hlua_sendlog(htxn->s->be, LOG_WARNING, msg); |
| 5597 | return 0; |
| 5598 | } |
| 5599 | |
| 5600 | __LJMP static int hlua_txn_log_alert(lua_State *L) |
| 5601 | { |
| 5602 | const char *msg; |
| 5603 | struct hlua_txn *htxn; |
| 5604 | |
| 5605 | MAY_LJMP(check_args(L, 2, "Alert")); |
| 5606 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5607 | msg = MAY_LJMP(luaL_checkstring(L, 2)); |
| 5608 | hlua_sendlog(htxn->s->be, LOG_ALERT, msg); |
| 5609 | return 0; |
| 5610 | } |
| 5611 | |
Thierry FOURNIER | 2cce353 | 2015-03-16 12:04:16 +0100 | [diff] [blame] | 5612 | __LJMP static int hlua_txn_set_loglevel(lua_State *L) |
| 5613 | { |
| 5614 | struct hlua_txn *htxn; |
| 5615 | int ll; |
| 5616 | |
| 5617 | MAY_LJMP(check_args(L, 2, "set_loglevel")); |
| 5618 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5619 | ll = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 5620 | |
| 5621 | if (ll < 0 || ll > 7) |
| 5622 | WILL_LJMP(luaL_argerror(L, 2, "Bad log level. It must be between 0 and 7")); |
| 5623 | |
| 5624 | htxn->s->logs.level = ll; |
| 5625 | return 0; |
| 5626 | } |
| 5627 | |
| 5628 | __LJMP static int hlua_txn_set_tos(lua_State *L) |
| 5629 | { |
| 5630 | struct hlua_txn *htxn; |
Thierry FOURNIER | 2cce353 | 2015-03-16 12:04:16 +0100 | [diff] [blame] | 5631 | int tos; |
| 5632 | |
| 5633 | MAY_LJMP(check_args(L, 2, "set_tos")); |
| 5634 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5635 | tos = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 5636 | |
Willy Tarreau | 1a18b54 | 2018-12-11 16:37:42 +0100 | [diff] [blame] | 5637 | conn_set_tos(objt_conn(htxn->s->sess->origin), tos); |
Thierry FOURNIER | 2cce353 | 2015-03-16 12:04:16 +0100 | [diff] [blame] | 5638 | return 0; |
| 5639 | } |
| 5640 | |
| 5641 | __LJMP static int hlua_txn_set_mark(lua_State *L) |
| 5642 | { |
Thierry FOURNIER | 2cce353 | 2015-03-16 12:04:16 +0100 | [diff] [blame] | 5643 | struct hlua_txn *htxn; |
Thierry FOURNIER | 2cce353 | 2015-03-16 12:04:16 +0100 | [diff] [blame] | 5644 | int mark; |
| 5645 | |
| 5646 | MAY_LJMP(check_args(L, 2, "set_mark")); |
| 5647 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5648 | mark = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 5649 | |
Lukas Tribus | 579e3e3 | 2019-08-11 18:03:45 +0200 | [diff] [blame] | 5650 | conn_set_mark(objt_conn(htxn->s->sess->origin), mark); |
Thierry FOURNIER | 2cce353 | 2015-03-16 12:04:16 +0100 | [diff] [blame] | 5651 | return 0; |
| 5652 | } |
| 5653 | |
Patrick Hemmer | 268a707 | 2018-05-11 12:52:31 -0400 | [diff] [blame] | 5654 | __LJMP static int hlua_txn_set_priority_class(lua_State *L) |
| 5655 | { |
| 5656 | struct hlua_txn *htxn; |
| 5657 | |
| 5658 | MAY_LJMP(check_args(L, 2, "set_priority_class")); |
| 5659 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5660 | htxn->s->priority_class = queue_limit_class(MAY_LJMP(luaL_checkinteger(L, 2))); |
| 5661 | return 0; |
| 5662 | } |
| 5663 | |
| 5664 | __LJMP static int hlua_txn_set_priority_offset(lua_State *L) |
| 5665 | { |
| 5666 | struct hlua_txn *htxn; |
| 5667 | |
| 5668 | MAY_LJMP(check_args(L, 2, "set_priority_offset")); |
| 5669 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5670 | htxn->s->priority_offset = queue_limit_offset(MAY_LJMP(luaL_checkinteger(L, 2))); |
| 5671 | return 0; |
| 5672 | } |
| 5673 | |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 5674 | /* Forward the Reply object to the client. This function converts the reply in |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 5675 | * HTX an push it to into the response channel. It is response to forward the |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 5676 | * message and terminate the transaction. It returns 1 on success and 0 on |
| 5677 | * error. The Reply must be on top of the stack. |
| 5678 | */ |
| 5679 | __LJMP static int hlua_txn_forward_reply(lua_State *L, struct stream *s) |
| 5680 | { |
| 5681 | struct htx *htx; |
| 5682 | struct htx_sl *sl; |
| 5683 | struct h1m h1m; |
| 5684 | const char *status, *reason, *body; |
| 5685 | size_t status_len, reason_len, body_len; |
| 5686 | int ret, code, flags; |
| 5687 | |
| 5688 | code = 200; |
| 5689 | status = "200"; |
| 5690 | status_len = 3; |
| 5691 | ret = lua_getfield(L, -1, "status"); |
| 5692 | if (ret == LUA_TNUMBER) { |
| 5693 | code = lua_tointeger(L, -1); |
| 5694 | status = lua_tolstring(L, -1, &status_len); |
| 5695 | } |
| 5696 | lua_pop(L, 1); |
| 5697 | |
| 5698 | reason = http_get_reason(code); |
| 5699 | reason_len = strlen(reason); |
| 5700 | ret = lua_getfield(L, -1, "reason"); |
| 5701 | if (ret == LUA_TSTRING) |
| 5702 | reason = lua_tolstring(L, -1, &reason_len); |
| 5703 | lua_pop(L, 1); |
| 5704 | |
| 5705 | body = NULL; |
| 5706 | body_len = 0; |
| 5707 | ret = lua_getfield(L, -1, "body"); |
| 5708 | if (ret == LUA_TSTRING) |
| 5709 | body = lua_tolstring(L, -1, &body_len); |
| 5710 | lua_pop(L, 1); |
| 5711 | |
| 5712 | /* Prepare the response before inserting the headers */ |
| 5713 | h1m_init_res(&h1m); |
| 5714 | htx = htx_from_buf(&s->res.buf); |
| 5715 | channel_htx_truncate(&s->res, htx); |
| 5716 | if (s->txn->req.flags & HTTP_MSGF_VER_11) { |
| 5717 | flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11); |
| 5718 | sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"), |
| 5719 | ist2(status, status_len), ist2(reason, reason_len)); |
| 5720 | } |
| 5721 | else { |
| 5722 | flags = HTX_SL_F_IS_RESP; |
| 5723 | sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.0"), |
| 5724 | ist2(status, status_len), ist2(reason, reason_len)); |
| 5725 | } |
| 5726 | if (!sl) |
| 5727 | goto fail; |
| 5728 | sl->info.res.status = code; |
| 5729 | |
| 5730 | /* Push in the stack the "headers" entry. */ |
| 5731 | ret = lua_getfield(L, -1, "headers"); |
| 5732 | if (ret != LUA_TTABLE) |
| 5733 | goto skip_headers; |
| 5734 | |
| 5735 | lua_pushnil(L); |
| 5736 | while (lua_next(L, -2) != 0) { |
| 5737 | struct ist name, value; |
| 5738 | const char *n, *v; |
| 5739 | size_t nlen, vlen; |
| 5740 | |
| 5741 | if (!lua_isstring(L, -2) || !lua_istable(L, -1)) { |
| 5742 | /* Skip element if the key is not a string or if the value is not a table */ |
| 5743 | goto next_hdr; |
| 5744 | } |
| 5745 | |
| 5746 | n = lua_tolstring(L, -2, &nlen); |
| 5747 | name = ist2(n, nlen); |
| 5748 | if (isteqi(name, ist("content-length"))) { |
| 5749 | /* Always skip content-length header. It will be added |
| 5750 | * later with the correct len |
| 5751 | */ |
| 5752 | goto next_hdr; |
| 5753 | } |
| 5754 | |
| 5755 | /* Loop on header's values */ |
| 5756 | lua_pushnil(L); |
| 5757 | while (lua_next(L, -2)) { |
| 5758 | if (!lua_isstring(L, -1)) { |
| 5759 | /* Skip the value if it is not a string */ |
| 5760 | goto next_value; |
| 5761 | } |
| 5762 | |
| 5763 | v = lua_tolstring(L, -1, &vlen); |
| 5764 | value = ist2(v, vlen); |
| 5765 | |
| 5766 | if (isteqi(name, ist("transfer-encoding"))) |
| 5767 | h1_parse_xfer_enc_header(&h1m, value); |
| 5768 | if (!htx_add_header(htx, ist2(n, nlen), ist2(v, vlen))) |
| 5769 | goto fail; |
| 5770 | |
| 5771 | next_value: |
| 5772 | lua_pop(L, 1); |
| 5773 | } |
| 5774 | |
| 5775 | next_hdr: |
| 5776 | lua_pop(L, 1); |
| 5777 | } |
| 5778 | skip_headers: |
| 5779 | lua_pop(L, 1); |
| 5780 | |
| 5781 | /* Update h1m flags: CLEN is set if CHNK is not present */ |
| 5782 | if (!(h1m.flags & H1_MF_CHNK)) { |
| 5783 | const char *clen = ultoa(body_len); |
| 5784 | |
| 5785 | h1m.flags |= H1_MF_CLEN; |
| 5786 | if (!htx_add_header(htx, ist("content-length"), ist(clen))) |
| 5787 | goto fail; |
| 5788 | } |
| 5789 | if (h1m.flags & (H1_MF_CLEN|H1_MF_CHNK)) |
| 5790 | h1m.flags |= H1_MF_XFER_LEN; |
| 5791 | |
| 5792 | /* Update HTX start-line flags */ |
| 5793 | if (h1m.flags & H1_MF_XFER_ENC) |
| 5794 | flags |= HTX_SL_F_XFER_ENC; |
| 5795 | if (h1m.flags & H1_MF_XFER_LEN) { |
| 5796 | flags |= HTX_SL_F_XFER_LEN; |
| 5797 | if (h1m.flags & H1_MF_CHNK) |
| 5798 | flags |= HTX_SL_F_CHNK; |
| 5799 | else if (h1m.flags & H1_MF_CLEN) |
| 5800 | flags |= HTX_SL_F_CLEN; |
| 5801 | if (h1m.body_len == 0) |
| 5802 | flags |= HTX_SL_F_BODYLESS; |
| 5803 | } |
| 5804 | sl->flags |= flags; |
| 5805 | |
| 5806 | |
| 5807 | if (!htx_add_endof(htx, HTX_BLK_EOH) || |
| 5808 | (body_len && !htx_add_data_atonce(htx, ist2(body, body_len))) || |
| 5809 | !htx_add_endof(htx, HTX_BLK_EOM)) |
| 5810 | goto fail; |
| 5811 | |
| 5812 | /* Now, forward the response and terminate the transaction */ |
| 5813 | s->txn->status = code; |
| 5814 | htx_to_buf(htx, &s->res.buf); |
| 5815 | if (!http_forward_proxy_resp(s, 1)) |
| 5816 | goto fail; |
| 5817 | |
| 5818 | return 1; |
| 5819 | |
| 5820 | fail: |
| 5821 | channel_htx_truncate(&s->res, htx); |
| 5822 | return 0; |
| 5823 | } |
| 5824 | |
| 5825 | /* Terminate a transaction if called from a lua action. For TCP streams, |
| 5826 | * processing is just aborted. Nothing is returned to the client and all |
| 5827 | * arguments are ignored. For HTTP streams, if a reply is passed as argument, it |
| 5828 | * is forwarded to the client before terminating the transaction. On success, |
| 5829 | * the function exits with ACT_RET_DONE code. If an error occurred, it exits |
| 5830 | * with ACT_RET_ERR code. If this function is not called from a lua action, it |
| 5831 | * just exits without any processing. |
Thierry FOURNIER | 893bfa3 | 2015-02-17 18:42:34 +0100 | [diff] [blame] | 5832 | */ |
Thierry FOURNIER | 4bb375c | 2015-08-26 08:42:21 +0200 | [diff] [blame] | 5833 | __LJMP static int hlua_txn_done(lua_State *L) |
Thierry FOURNIER | 893bfa3 | 2015-02-17 18:42:34 +0100 | [diff] [blame] | 5834 | { |
Willy Tarreau | b2ccb56 | 2015-04-06 11:11:15 +0200 | [diff] [blame] | 5835 | struct hlua_txn *htxn; |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 5836 | struct stream *s; |
| 5837 | int finst; |
Thierry FOURNIER | 893bfa3 | 2015-02-17 18:42:34 +0100 | [diff] [blame] | 5838 | |
Willy Tarreau | b2ccb56 | 2015-04-06 11:11:15 +0200 | [diff] [blame] | 5839 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
Thierry FOURNIER | 893bfa3 | 2015-02-17 18:42:34 +0100 | [diff] [blame] | 5840 | |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 5841 | /* If the flags NOTERM is set, we cannot terminate the session, so we |
| 5842 | * just end the execution of the current lua code. */ |
| 5843 | if (htxn->flags & HLUA_TXN_NOTERM) |
Thierry FOURNIER | ab00df6 | 2016-07-14 11:42:37 +0200 | [diff] [blame] | 5844 | WILL_LJMP(hlua_done(L)); |
Thierry FOURNIER | ab00df6 | 2016-07-14 11:42:37 +0200 | [diff] [blame] | 5845 | |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 5846 | s = htxn->s; |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5847 | if (!IS_HTX_STRM(htxn->s)) { |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 5848 | struct channel *req = &s->req; |
| 5849 | struct channel *res = &s->res; |
Willy Tarreau | 8138967 | 2015-03-10 12:03:52 +0100 | [diff] [blame] | 5850 | |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 5851 | channel_auto_read(req); |
| 5852 | channel_abort(req); |
| 5853 | channel_auto_close(req); |
| 5854 | channel_erase(req); |
| 5855 | |
| 5856 | res->wex = tick_add_ifset(now_ms, res->wto); |
| 5857 | channel_auto_read(res); |
| 5858 | channel_auto_close(res); |
| 5859 | channel_shutr_now(res); |
| 5860 | |
| 5861 | finst = ((htxn->dir == SMP_OPT_DIR_REQ) ? SF_FINST_R : SF_FINST_D); |
| 5862 | goto done; |
Christopher Faulet | fe6a71b | 2019-07-26 16:40:24 +0200 | [diff] [blame] | 5863 | } |
Thierry FOURNIER | 10ec214 | 2015-08-24 17:23:45 +0200 | [diff] [blame] | 5864 | |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 5865 | if (lua_gettop(L) == 1 || !lua_istable(L, 2)) { |
| 5866 | /* No reply or invalid reply */ |
| 5867 | s->txn->status = 0; |
| 5868 | http_reply_and_close(s, 0, NULL); |
| 5869 | } |
| 5870 | else { |
| 5871 | /* Remove extra args to have the reply on top of the stack */ |
| 5872 | if (lua_gettop(L) > 2) |
| 5873 | lua_pop(L, lua_gettop(L) - 2); |
Thierry FOURNIER | 893bfa3 | 2015-02-17 18:42:34 +0100 | [diff] [blame] | 5874 | |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 5875 | if (!hlua_txn_forward_reply(L, s)) { |
| 5876 | if (!(s->flags & SF_ERR_MASK)) |
| 5877 | s->flags |= SF_ERR_PRXCOND; |
| 5878 | lua_pushinteger(L, ACT_RET_ERR); |
| 5879 | WILL_LJMP(hlua_done(L)); |
| 5880 | return 0; /* Never reached */ |
| 5881 | } |
Christopher Faulet | 4d0e263 | 2019-07-16 10:52:40 +0200 | [diff] [blame] | 5882 | } |
Thierry FOURNIER | 4bb375c | 2015-08-26 08:42:21 +0200 | [diff] [blame] | 5883 | |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 5884 | finst = ((htxn->dir == SMP_OPT_DIR_REQ) ? SF_FINST_R : SF_FINST_H); |
| 5885 | if (htxn->dir == SMP_OPT_DIR_REQ) { |
| 5886 | /* let's log the request time */ |
| 5887 | s->logs.tv_request = now; |
| 5888 | if (s->sess->fe == s->be) /* report it if the request was intercepted by the frontend */ |
| 5889 | _HA_ATOMIC_ADD(&s->sess->fe->fe_counters.intercepted_req, 1); |
| 5890 | } |
Christopher Faulet | fe6a71b | 2019-07-26 16:40:24 +0200 | [diff] [blame] | 5891 | |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 5892 | done: |
| 5893 | if (!(s->flags & SF_ERR_MASK)) |
| 5894 | s->flags |= SF_ERR_LOCAL; |
| 5895 | if (!(s->flags & SF_FINST_MASK)) |
| 5896 | s->flags |= finst; |
Christopher Faulet | fe6a71b | 2019-07-26 16:40:24 +0200 | [diff] [blame] | 5897 | |
Christopher Faulet | 4ad7310 | 2020-03-05 11:07:31 +0100 | [diff] [blame] | 5898 | lua_pushinteger(L, ACT_RET_ABRT); |
Thierry FOURNIER | 4bb375c | 2015-08-26 08:42:21 +0200 | [diff] [blame] | 5899 | WILL_LJMP(hlua_done(L)); |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 5900 | return 0; |
| 5901 | } |
| 5902 | |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 5903 | /* |
| 5904 | * |
| 5905 | * |
| 5906 | * Class REPLY |
| 5907 | * |
| 5908 | * |
| 5909 | */ |
| 5910 | |
| 5911 | /* Pushes the TXN reply onto the top of the stack. If the stask does not have a |
| 5912 | * free slots, the function fails and returns 0; |
| 5913 | */ |
| 5914 | static int hlua_txn_reply_new(lua_State *L) |
| 5915 | { |
| 5916 | struct hlua_txn *htxn; |
| 5917 | const char *reason, *body = NULL; |
| 5918 | int ret, status; |
| 5919 | |
| 5920 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5921 | if (!IS_HTX_STRM(htxn->s)) { |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 5922 | hlua_pusherror(L, "txn object is not an HTTP transaction."); |
| 5923 | WILL_LJMP(lua_error(L)); |
| 5924 | } |
| 5925 | |
| 5926 | /* Default value */ |
| 5927 | status = 200; |
| 5928 | reason = http_get_reason(status); |
| 5929 | |
| 5930 | if (lua_istable(L, 2)) { |
| 5931 | /* load status and reason from the table argument at index 2 */ |
| 5932 | ret = lua_getfield(L, 2, "status"); |
| 5933 | if (ret == LUA_TNIL) |
| 5934 | goto reason; |
| 5935 | else if (ret != LUA_TNUMBER) { |
| 5936 | /* invalid status: ignore the reason */ |
| 5937 | goto body; |
| 5938 | } |
| 5939 | status = lua_tointeger(L, -1); |
| 5940 | |
| 5941 | reason: |
| 5942 | lua_pop(L, 1); /* restore the stack: remove status */ |
| 5943 | ret = lua_getfield(L, 2, "reason"); |
| 5944 | if (ret == LUA_TSTRING) |
| 5945 | reason = lua_tostring(L, -1); |
| 5946 | |
| 5947 | body: |
| 5948 | lua_pop(L, 1); /* restore the stack: remove invalid status or reason */ |
| 5949 | ret = lua_getfield(L, 2, "body"); |
| 5950 | if (ret == LUA_TSTRING) |
| 5951 | body = lua_tostring(L, -1); |
| 5952 | lua_pop(L, 1); /* restore the stack: remove body */ |
| 5953 | } |
| 5954 | |
| 5955 | /* Create the Reply table */ |
| 5956 | lua_newtable(L); |
| 5957 | |
| 5958 | /* Add status element */ |
| 5959 | lua_pushstring(L, "status"); |
| 5960 | lua_pushinteger(L, status); |
| 5961 | lua_settable(L, -3); |
| 5962 | |
| 5963 | /* Add reason element */ |
| 5964 | reason = http_get_reason(status); |
| 5965 | lua_pushstring(L, "reason"); |
| 5966 | lua_pushstring(L, reason); |
| 5967 | lua_settable(L, -3); |
| 5968 | |
| 5969 | /* Add body element, nil if undefined */ |
| 5970 | lua_pushstring(L, "body"); |
| 5971 | if (body) |
| 5972 | lua_pushstring(L, body); |
| 5973 | else |
| 5974 | lua_pushnil(L); |
| 5975 | lua_settable(L, -3); |
| 5976 | |
| 5977 | /* Add headers element */ |
| 5978 | lua_pushstring(L, "headers"); |
| 5979 | lua_newtable(L); |
| 5980 | |
| 5981 | /* stack: [ txn, <Arg:table>, <Reply:table>, "headers", <headers:table> ] */ |
| 5982 | if (lua_istable(L, 2)) { |
| 5983 | /* load headers from the table argument at index 2. If it is a table, copy it. */ |
| 5984 | ret = lua_getfield(L, 2, "headers"); |
| 5985 | if (ret == LUA_TTABLE) { |
| 5986 | /* stack: [ ... <headers:table>, <table> ] */ |
| 5987 | lua_pushnil(L); |
| 5988 | while (lua_next(L, -2) != 0) { |
| 5989 | /* stack: [ ... <headers:table>, <table>, k, v] */ |
| 5990 | if (!lua_isstring(L, -1) && !lua_istable(L, -1)) { |
| 5991 | /* invalid value type, skip it */ |
| 5992 | lua_pop(L, 1); |
| 5993 | continue; |
| 5994 | } |
| 5995 | |
| 5996 | |
| 5997 | /* Duplicate the key and swap it with the value. */ |
| 5998 | lua_pushvalue(L, -2); |
| 5999 | lua_insert(L, -2); |
| 6000 | /* stack: [ ... <headers:table>, <table>, k, k, v ] */ |
| 6001 | |
| 6002 | lua_newtable(L); |
| 6003 | lua_insert(L, -2); |
| 6004 | /* stack: [ ... <headers:table>, <table>, k, k, <inner:table>, v ] */ |
| 6005 | |
| 6006 | if (lua_isstring(L, -1)) { |
| 6007 | /* push the value in the inner table */ |
| 6008 | lua_rawseti(L, -2, 1); |
| 6009 | } |
| 6010 | else { /* table */ |
| 6011 | lua_pushnil(L); |
| 6012 | while (lua_next(L, -2) != 0) { |
| 6013 | /* stack: [ ... <headers:table>, <table>, k, k, <inner:table>, <v:table>, k2, v2 ] */ |
| 6014 | if (!lua_isstring(L, -1)) { |
| 6015 | /* invalid value type, skip it*/ |
| 6016 | lua_pop(L, 1); |
| 6017 | continue; |
| 6018 | } |
| 6019 | /* push the value in the inner table */ |
| 6020 | lua_rawseti(L, -4, lua_rawlen(L, -4) + 1); |
| 6021 | /* stack: [ ... <headers:table>, <table>, k, k, <inner:table>, <v:table>, k2 ] */ |
| 6022 | } |
| 6023 | lua_pop(L, 1); |
| 6024 | /* stack: [ ... <headers:table>, <table>, k, k, <inner:table> ] */ |
| 6025 | } |
| 6026 | |
| 6027 | /* push (k,v) on the stack in the headers table: |
| 6028 | * stack: [ ... <headers:table>, <table>, k, k, v ] |
| 6029 | */ |
| 6030 | lua_settable(L, -5); |
| 6031 | /* stack: [ ... <headers:table>, <table>, k ] */ |
| 6032 | } |
| 6033 | } |
| 6034 | lua_pop(L, 1); |
| 6035 | } |
| 6036 | /* stack: [ txn, <Arg:table>, <Reply:table>, "headers", <headers:table> ] */ |
| 6037 | lua_settable(L, -3); |
| 6038 | /* stack: [ txn, <Arg:table>, <Reply:table> ] */ |
| 6039 | |
| 6040 | /* Pop a class sesison metatable and affect it to the userdata. */ |
| 6041 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_txn_reply_ref); |
| 6042 | lua_setmetatable(L, -2); |
| 6043 | return 1; |
| 6044 | } |
| 6045 | |
| 6046 | /* Set the reply status code, and optionally the reason. If no reason is |
| 6047 | * provided, the default one corresponding to the status code is used. |
| 6048 | */ |
| 6049 | __LJMP static int hlua_txn_reply_set_status(lua_State *L) |
| 6050 | { |
| 6051 | int status = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 6052 | const char *reason = MAY_LJMP(luaL_optlstring(L, 3, NULL, NULL)); |
| 6053 | |
| 6054 | /* First argument (self) must be a table */ |
| 6055 | luaL_checktype(L, 1, LUA_TTABLE); |
| 6056 | |
| 6057 | if (status < 100 || status > 599) { |
| 6058 | lua_pushboolean(L, 0); |
| 6059 | return 1; |
| 6060 | } |
| 6061 | if (!reason) |
| 6062 | reason = http_get_reason(status); |
| 6063 | |
| 6064 | lua_pushinteger(L, status); |
| 6065 | lua_setfield(L, 1, "status"); |
| 6066 | |
| 6067 | lua_pushstring(L, reason); |
| 6068 | lua_setfield(L, 1, "reason"); |
| 6069 | |
| 6070 | lua_pushboolean(L, 1); |
| 6071 | return 1; |
| 6072 | } |
| 6073 | |
| 6074 | /* Add a header into the reply object. Each header name is associated to an |
| 6075 | * array of values in the "headers" table. If the header name is not found, a |
| 6076 | * new entry is created. |
| 6077 | */ |
| 6078 | __LJMP static int hlua_txn_reply_add_header(lua_State *L) |
| 6079 | { |
| 6080 | const char *name = MAY_LJMP(luaL_checkstring(L, 2)); |
| 6081 | const char *value = MAY_LJMP(luaL_checkstring(L, 3)); |
| 6082 | int ret; |
| 6083 | |
| 6084 | /* First argument (self) must be a table */ |
| 6085 | luaL_checktype(L, 1, LUA_TTABLE); |
| 6086 | |
| 6087 | /* Push in the stack the "headers" entry. */ |
| 6088 | ret = lua_getfield(L, 1, "headers"); |
| 6089 | if (ret != LUA_TTABLE) { |
| 6090 | hlua_pusherror(L, "Reply['headers'] is expected to a an array. %s found", lua_typename(L, ret)); |
| 6091 | WILL_LJMP(lua_error(L)); |
| 6092 | } |
| 6093 | |
| 6094 | /* check if the header is already registered. If not, register it. */ |
| 6095 | ret = lua_getfield(L, -1, name); |
| 6096 | if (ret == LUA_TNIL) { |
| 6097 | /* Entry not found. */ |
| 6098 | lua_pop(L, 1); /* remove the nil. The "headers" table is the top of the stack. */ |
| 6099 | |
| 6100 | /* Insert the new header name in the array in the top of the stack. |
| 6101 | * It left the new array in the top of the stack. |
| 6102 | */ |
| 6103 | lua_newtable(L); |
| 6104 | lua_pushstring(L, name); |
| 6105 | lua_pushvalue(L, -2); |
| 6106 | lua_settable(L, -4); |
| 6107 | } |
| 6108 | else if (ret != LUA_TTABLE) { |
| 6109 | hlua_pusherror(L, "Reply['headers']['%s'] is expected to be an array. %s found", name, lua_typename(L, ret)); |
| 6110 | WILL_LJMP(lua_error(L)); |
| 6111 | } |
| 6112 | |
| 6113 | /* Now the top od thestack is an array of values. We push |
| 6114 | * the header value as new entry. |
| 6115 | */ |
| 6116 | lua_pushstring(L, value); |
| 6117 | ret = lua_rawlen(L, -2); |
| 6118 | lua_rawseti(L, -2, ret + 1); |
| 6119 | |
| 6120 | lua_pushboolean(L, 1); |
| 6121 | return 1; |
| 6122 | } |
| 6123 | |
| 6124 | /* Remove all occurrences of a given header name. */ |
| 6125 | __LJMP static int hlua_txn_reply_del_header(lua_State *L) |
| 6126 | { |
| 6127 | const char *name = MAY_LJMP(luaL_checkstring(L, 2)); |
| 6128 | int ret; |
| 6129 | |
| 6130 | /* First argument (self) must be a table */ |
| 6131 | luaL_checktype(L, 1, LUA_TTABLE); |
| 6132 | |
| 6133 | /* Push in the stack the "headers" entry. */ |
| 6134 | ret = lua_getfield(L, 1, "headers"); |
| 6135 | if (ret != LUA_TTABLE) { |
| 6136 | hlua_pusherror(L, "Reply['headers'] is expected to be an array. %s found", lua_typename(L, ret)); |
| 6137 | WILL_LJMP(lua_error(L)); |
| 6138 | } |
| 6139 | |
| 6140 | lua_pushstring(L, name); |
| 6141 | lua_pushnil(L); |
| 6142 | lua_settable(L, -3); |
| 6143 | |
| 6144 | lua_pushboolean(L, 1); |
| 6145 | return 1; |
| 6146 | } |
| 6147 | |
| 6148 | /* Set the reply's body. Overwrite any existing entry. */ |
| 6149 | __LJMP static int hlua_txn_reply_set_body(lua_State *L) |
| 6150 | { |
| 6151 | const char *payload = MAY_LJMP(luaL_checkstring(L, 2)); |
| 6152 | |
| 6153 | /* First argument (self) must be a table */ |
| 6154 | luaL_checktype(L, 1, LUA_TTABLE); |
| 6155 | |
| 6156 | lua_pushstring(L, payload); |
| 6157 | lua_setfield(L, 1, "body"); |
| 6158 | |
| 6159 | lua_pushboolean(L, 1); |
| 6160 | return 1; |
| 6161 | } |
| 6162 | |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 6163 | __LJMP static int hlua_log(lua_State *L) |
| 6164 | { |
| 6165 | int level; |
| 6166 | const char *msg; |
| 6167 | |
| 6168 | MAY_LJMP(check_args(L, 2, "log")); |
| 6169 | level = MAY_LJMP(luaL_checkinteger(L, 1)); |
| 6170 | msg = MAY_LJMP(luaL_checkstring(L, 2)); |
| 6171 | |
| 6172 | if (level < 0 || level >= NB_LOG_LEVELS) |
| 6173 | WILL_LJMP(luaL_argerror(L, 1, "Invalid loglevel.")); |
| 6174 | |
| 6175 | hlua_sendlog(NULL, level, msg); |
| 6176 | return 0; |
| 6177 | } |
| 6178 | |
| 6179 | __LJMP static int hlua_log_debug(lua_State *L) |
| 6180 | { |
| 6181 | const char *msg; |
| 6182 | |
| 6183 | MAY_LJMP(check_args(L, 1, "debug")); |
| 6184 | msg = MAY_LJMP(luaL_checkstring(L, 1)); |
| 6185 | hlua_sendlog(NULL, LOG_DEBUG, msg); |
| 6186 | return 0; |
| 6187 | } |
| 6188 | |
| 6189 | __LJMP static int hlua_log_info(lua_State *L) |
| 6190 | { |
| 6191 | const char *msg; |
| 6192 | |
| 6193 | MAY_LJMP(check_args(L, 1, "info")); |
| 6194 | msg = MAY_LJMP(luaL_checkstring(L, 1)); |
| 6195 | hlua_sendlog(NULL, LOG_INFO, msg); |
| 6196 | return 0; |
| 6197 | } |
| 6198 | |
| 6199 | __LJMP static int hlua_log_warning(lua_State *L) |
| 6200 | { |
| 6201 | const char *msg; |
| 6202 | |
| 6203 | MAY_LJMP(check_args(L, 1, "warning")); |
| 6204 | msg = MAY_LJMP(luaL_checkstring(L, 1)); |
| 6205 | hlua_sendlog(NULL, LOG_WARNING, msg); |
| 6206 | return 0; |
| 6207 | } |
| 6208 | |
| 6209 | __LJMP static int hlua_log_alert(lua_State *L) |
| 6210 | { |
| 6211 | const char *msg; |
| 6212 | |
| 6213 | MAY_LJMP(check_args(L, 1, "alert")); |
| 6214 | msg = MAY_LJMP(luaL_checkstring(L, 1)); |
| 6215 | hlua_sendlog(NULL, LOG_ALERT, msg); |
Thierry FOURNIER | 893bfa3 | 2015-02-17 18:42:34 +0100 | [diff] [blame] | 6216 | return 0; |
| 6217 | } |
| 6218 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 6219 | __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] | 6220 | { |
| 6221 | int wakeup_ms = lua_tointeger(L, -1); |
| 6222 | if (now_ms < wakeup_ms) |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 6223 | 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] | 6224 | return 0; |
| 6225 | } |
| 6226 | |
| 6227 | __LJMP static int hlua_sleep(lua_State *L) |
| 6228 | { |
| 6229 | unsigned int delay; |
Thierry FOURNIER | d44731f | 2015-03-04 15:51:09 +0100 | [diff] [blame] | 6230 | unsigned int wakeup_ms; |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 6231 | |
Thierry FOURNIER | d44731f | 2015-03-04 15:51:09 +0100 | [diff] [blame] | 6232 | MAY_LJMP(check_args(L, 1, "sleep")); |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 6233 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 6234 | delay = MAY_LJMP(luaL_checkinteger(L, 1)) * 1000; |
Thierry FOURNIER | d44731f | 2015-03-04 15:51:09 +0100 | [diff] [blame] | 6235 | wakeup_ms = tick_add(now_ms, delay); |
| 6236 | lua_pushinteger(L, wakeup_ms); |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 6237 | |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 6238 | 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] | 6239 | return 0; |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 6240 | } |
| 6241 | |
Thierry FOURNIER | d44731f | 2015-03-04 15:51:09 +0100 | [diff] [blame] | 6242 | __LJMP static int hlua_msleep(lua_State *L) |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 6243 | { |
| 6244 | unsigned int delay; |
Thierry FOURNIER | d44731f | 2015-03-04 15:51:09 +0100 | [diff] [blame] | 6245 | unsigned int wakeup_ms; |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 6246 | |
Thierry FOURNIER | d44731f | 2015-03-04 15:51:09 +0100 | [diff] [blame] | 6247 | MAY_LJMP(check_args(L, 1, "msleep")); |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 6248 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 6249 | delay = MAY_LJMP(luaL_checkinteger(L, 1)); |
Thierry FOURNIER | d44731f | 2015-03-04 15:51:09 +0100 | [diff] [blame] | 6250 | wakeup_ms = tick_add(now_ms, delay); |
| 6251 | lua_pushinteger(L, wakeup_ms); |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 6252 | |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 6253 | 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] | 6254 | return 0; |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 6255 | } |
| 6256 | |
Thierry FOURNIER | 13416fe | 2015-02-17 15:01:59 +0100 | [diff] [blame] | 6257 | /* This functionis an LUA binding. it permits to give back |
| 6258 | * the hand at the HAProxy scheduler. It is used when the |
| 6259 | * LUA processing consumes a lot of time. |
| 6260 | */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 6261 | __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] | 6262 | { |
| 6263 | return 0; |
| 6264 | } |
| 6265 | |
Thierry FOURNIER | 13416fe | 2015-02-17 15:01:59 +0100 | [diff] [blame] | 6266 | __LJMP static int hlua_yield(lua_State *L) |
| 6267 | { |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 6268 | 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] | 6269 | return 0; |
Thierry FOURNIER | 13416fe | 2015-02-17 15:01:59 +0100 | [diff] [blame] | 6270 | } |
| 6271 | |
Thierry FOURNIER | 37196f4 | 2015-02-16 19:34:56 +0100 | [diff] [blame] | 6272 | /* This function change the nice of the currently executed |
| 6273 | * task. It is used set low or high priority at the current |
| 6274 | * task. |
| 6275 | */ |
Willy Tarreau | 5955166 | 2015-03-10 14:23:13 +0100 | [diff] [blame] | 6276 | __LJMP static int hlua_set_nice(lua_State *L) |
Thierry FOURNIER | 37196f4 | 2015-02-16 19:34:56 +0100 | [diff] [blame] | 6277 | { |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 6278 | struct hlua *hlua; |
| 6279 | int nice; |
Thierry FOURNIER | 37196f4 | 2015-02-16 19:34:56 +0100 | [diff] [blame] | 6280 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 6281 | MAY_LJMP(check_args(L, 1, "set_nice")); |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 6282 | nice = MAY_LJMP(luaL_checkinteger(L, 1)); |
Thierry FOURNIER | 37196f4 | 2015-02-16 19:34:56 +0100 | [diff] [blame] | 6283 | |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 6284 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 6285 | hlua = hlua_gethlua(L); |
| 6286 | |
| 6287 | /* If the task is not set, I'm in a start mode. */ |
Thierry FOURNIER | 37196f4 | 2015-02-16 19:34:56 +0100 | [diff] [blame] | 6288 | if (!hlua || !hlua->task) |
| 6289 | return 0; |
| 6290 | |
| 6291 | if (nice < -1024) |
| 6292 | nice = -1024; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 6293 | else if (nice > 1024) |
Thierry FOURNIER | 37196f4 | 2015-02-16 19:34:56 +0100 | [diff] [blame] | 6294 | nice = 1024; |
| 6295 | |
| 6296 | hlua->task->nice = nice; |
| 6297 | return 0; |
| 6298 | } |
| 6299 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 6300 | /* 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] | 6301 | * HAProxy task subsystem when the task is awaked. The LUA runtime can |
| 6302 | * return an E_AGAIN signal, the emmiter of this signal must set a |
| 6303 | * signal to wake the task. |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 6304 | * |
| 6305 | * Task wrapper are longjmp safe because the only one Lua code |
| 6306 | * executed is the safe hlua_ctx_resume(); |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6307 | */ |
Willy Tarreau | 60409db | 2019-08-21 14:14:50 +0200 | [diff] [blame] | 6308 | 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] | 6309 | { |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 6310 | struct hlua *hlua = context; |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6311 | enum hlua_exec status; |
| 6312 | |
Christopher Faulet | 5bc9972 | 2018-04-25 10:34:45 +0200 | [diff] [blame] | 6313 | if (task->thread_mask == MAX_THREADS_MASK) |
| 6314 | task_set_affinity(task, tid_bit); |
| 6315 | |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 6316 | /* If it is the first call to the task, we must initialize the |
| 6317 | * execution timeouts. |
| 6318 | */ |
| 6319 | if (!HLUA_IS_RUNNING(hlua)) |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 6320 | hlua->max_time = hlua_timeout_task; |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 6321 | |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6322 | /* Execute the Lua code. */ |
| 6323 | status = hlua_ctx_resume(hlua, 1); |
| 6324 | |
| 6325 | switch (status) { |
| 6326 | /* finished or yield */ |
| 6327 | case HLUA_E_OK: |
| 6328 | hlua_ctx_destroy(hlua); |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 6329 | task_destroy(task); |
Tim Duesterhus | cd235c6 | 2018-04-24 13:56:01 +0200 | [diff] [blame] | 6330 | task = NULL; |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6331 | break; |
| 6332 | |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 6333 | case HLUA_E_AGAIN: /* co process or timeout wake me later. */ |
Thierry FOURNIER | cb14688 | 2017-12-10 17:10:57 +0100 | [diff] [blame] | 6334 | notification_gc(&hlua->com); |
PiBa-NL | fe971b3 | 2018-05-02 22:27:14 +0200 | [diff] [blame] | 6335 | task->expire = hlua->wake_time; |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6336 | break; |
| 6337 | |
| 6338 | /* finished with error. */ |
| 6339 | case HLUA_E_ERRMSG: |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6340 | SEND_ERR(NULL, "Lua task: %s.\n", lua_tostring(hlua->T, -1)); |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6341 | hlua_ctx_destroy(hlua); |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 6342 | task_destroy(task); |
Emeric Brun | 253e53e | 2017-10-17 18:58:40 +0200 | [diff] [blame] | 6343 | task = NULL; |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6344 | break; |
| 6345 | |
| 6346 | case HLUA_E_ERR: |
| 6347 | default: |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6348 | SEND_ERR(NULL, "Lua task: unknown error.\n"); |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6349 | hlua_ctx_destroy(hlua); |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 6350 | task_destroy(task); |
Emeric Brun | 253e53e | 2017-10-17 18:58:40 +0200 | [diff] [blame] | 6351 | task = NULL; |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6352 | break; |
| 6353 | } |
Emeric Brun | 253e53e | 2017-10-17 18:58:40 +0200 | [diff] [blame] | 6354 | return task; |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6355 | } |
| 6356 | |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 6357 | /* This function is an LUA binding that register LUA function to be |
| 6358 | * executed after the HAProxy configuration parsing and before the |
| 6359 | * HAProxy scheduler starts. This function expect only one LUA |
| 6360 | * argument that is a function. This function returns nothing, but |
| 6361 | * throws if an error is encountered. |
| 6362 | */ |
| 6363 | __LJMP static int hlua_register_init(lua_State *L) |
| 6364 | { |
| 6365 | struct hlua_init_function *init; |
| 6366 | int ref; |
| 6367 | |
| 6368 | MAY_LJMP(check_args(L, 1, "register_init")); |
| 6369 | |
| 6370 | ref = MAY_LJMP(hlua_checkfunction(L, 1)); |
| 6371 | |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 6372 | init = calloc(1, sizeof(*init)); |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 6373 | if (!init) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 6374 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 6375 | |
| 6376 | init->function_ref = ref; |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 6377 | LIST_ADDQ(&hlua_init_functions[hlua_state_id], &init->l); |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 6378 | return 0; |
| 6379 | } |
| 6380 | |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6381 | /* This functio is an LUA binding. It permits to register a task |
| 6382 | * executed in parallel of the main HAroxy activity. The task is |
| 6383 | * created and it is set in the HAProxy scheduler. It can be called |
| 6384 | * from the "init" section, "post init" or during the runtime. |
| 6385 | * |
| 6386 | * Lua prototype: |
| 6387 | * |
| 6388 | * <none> core.register_task(<function>) |
| 6389 | */ |
| 6390 | static int hlua_register_task(lua_State *L) |
| 6391 | { |
| 6392 | struct hlua *hlua; |
| 6393 | struct task *task; |
| 6394 | int ref; |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 6395 | int state_id; |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6396 | |
| 6397 | MAY_LJMP(check_args(L, 1, "register_task")); |
| 6398 | |
| 6399 | ref = MAY_LJMP(hlua_checkfunction(L, 1)); |
| 6400 | |
Thierry Fournier | 75fc029 | 2020-11-28 13:18:56 +0100 | [diff] [blame] | 6401 | /* Get the reference state. If the reference is NULL, L is the master |
| 6402 | * state, otherwise hlua->T is. |
| 6403 | */ |
| 6404 | hlua = hlua_gethlua(L); |
| 6405 | if (hlua) |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 6406 | /* we are in runtime processing */ |
| 6407 | state_id = hlua->state_id; |
Thierry Fournier | 75fc029 | 2020-11-28 13:18:56 +0100 | [diff] [blame] | 6408 | else |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 6409 | /* we are in initialization mode */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 6410 | state_id = hlua_state_id; |
Thierry Fournier | 75fc029 | 2020-11-28 13:18:56 +0100 | [diff] [blame] | 6411 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 6412 | hlua = pool_alloc(pool_head_hlua); |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6413 | if (!hlua) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 6414 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6415 | |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 6416 | /* We are in the common lua state, execute the task anywhere, |
| 6417 | * otherwise, inherit the current thread identifier |
| 6418 | */ |
| 6419 | if (state_id == 0) |
| 6420 | task = task_new(MAX_THREADS_MASK); |
| 6421 | else |
| 6422 | task = task_new(tid_bit); |
Willy Tarreau | e09101e | 2018-10-16 17:37:12 +0200 | [diff] [blame] | 6423 | if (!task) |
| 6424 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
| 6425 | |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6426 | task->context = hlua; |
| 6427 | task->process = hlua_process_task; |
| 6428 | |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 6429 | if (!hlua_ctx_init(hlua, state_id, task, 1)) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 6430 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6431 | |
| 6432 | /* Restore the function in the stack. */ |
| 6433 | lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, ref); |
| 6434 | hlua->nargs = 0; |
| 6435 | |
| 6436 | /* Schedule task. */ |
| 6437 | task_schedule(task, now_ms); |
| 6438 | |
| 6439 | return 0; |
| 6440 | } |
| 6441 | |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6442 | /* Wrapper called by HAProxy to execute an LUA converter. This wrapper |
| 6443 | * doesn't allow "yield" functions because the HAProxy engine cannot |
| 6444 | * resume converters. |
| 6445 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6446 | 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] | 6447 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 6448 | struct hlua_function *fcn = private; |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6449 | struct stream *stream = smp->strm; |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 6450 | const char *error; |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6451 | |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 6452 | if (!stream) |
| 6453 | return 0; |
| 6454 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 6455 | /* In the execution wrappers linked with a stream, the |
Thierry FOURNIER | 05ac424 | 2015-02-27 18:37:27 +0100 | [diff] [blame] | 6456 | * Lua context can be not initialized. This behavior |
| 6457 | * permits to save performances because a systematic |
| 6458 | * Lua initialization cause 5% performances loss. |
| 6459 | */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6460 | if (!stream->hlua) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 6461 | stream->hlua = pool_alloc(pool_head_hlua); |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6462 | if (!stream->hlua) { |
| 6463 | SEND_ERR(stream->be, "Lua converter '%s': can't initialize Lua context.\n", fcn->name); |
| 6464 | return 0; |
| 6465 | } |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 6466 | if (!hlua_ctx_init(stream->hlua, fcn_ref_to_stack_id(fcn), stream->task, 0)) { |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6467 | SEND_ERR(stream->be, "Lua converter '%s': can't initialize Lua context.\n", fcn->name); |
| 6468 | return 0; |
| 6469 | } |
Thierry FOURNIER | 05ac424 | 2015-02-27 18:37:27 +0100 | [diff] [blame] | 6470 | } |
| 6471 | |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6472 | /* If it is the first run, initialize the data for the call. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6473 | if (!HLUA_IS_RUNNING(stream->hlua)) { |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 6474 | |
| 6475 | /* The following Lua calls can fail. */ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 6476 | if (!SET_SAFE_LJMP(stream->hlua)) { |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6477 | if (lua_type(stream->hlua->T, -1) == LUA_TSTRING) |
| 6478 | error = lua_tostring(stream->hlua->T, -1); |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 6479 | else |
| 6480 | error = "critical error"; |
| 6481 | SEND_ERR(stream->be, "Lua converter '%s': %s.\n", fcn->name, error); |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 6482 | return 0; |
| 6483 | } |
| 6484 | |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6485 | /* Check stack available size. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6486 | if (!lua_checkstack(stream->hlua->T, 1)) { |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6487 | SEND_ERR(stream->be, "Lua converter '%s': full stack.\n", fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 6488 | RESET_SAFE_LJMP(stream->hlua); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6489 | return 0; |
| 6490 | } |
| 6491 | |
| 6492 | /* Restore the function in the stack. */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 6493 | lua_rawgeti(stream->hlua->T, LUA_REGISTRYINDEX, fcn->function_ref[stream->hlua->state_id]); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6494 | |
| 6495 | /* convert input sample and pust-it in the stack. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6496 | if (!lua_checkstack(stream->hlua->T, 1)) { |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6497 | SEND_ERR(stream->be, "Lua converter '%s': full stack.\n", fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 6498 | RESET_SAFE_LJMP(stream->hlua); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6499 | return 0; |
| 6500 | } |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6501 | hlua_smp2lua(stream->hlua->T, smp); |
| 6502 | stream->hlua->nargs = 1; |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6503 | |
| 6504 | /* push keywords in the stack. */ |
| 6505 | if (arg_p) { |
| 6506 | for (; arg_p->type != ARGT_STOP; arg_p++) { |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6507 | if (!lua_checkstack(stream->hlua->T, 1)) { |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6508 | SEND_ERR(stream->be, "Lua converter '%s': full stack.\n", fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 6509 | RESET_SAFE_LJMP(stream->hlua); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6510 | return 0; |
| 6511 | } |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6512 | hlua_arg2lua(stream->hlua->T, arg_p); |
| 6513 | stream->hlua->nargs++; |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6514 | } |
| 6515 | } |
| 6516 | |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 6517 | /* We must initialize the execution timeouts. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6518 | stream->hlua->max_time = hlua_timeout_session; |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 6519 | |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 6520 | /* At this point the execution is safe. */ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 6521 | RESET_SAFE_LJMP(stream->hlua); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6522 | } |
| 6523 | |
| 6524 | /* Execute the function. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6525 | switch (hlua_ctx_resume(stream->hlua, 0)) { |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6526 | /* finished. */ |
| 6527 | case HLUA_E_OK: |
Thierry FOURNIER | fd80df1 | 2017-05-12 16:32:20 +0200 | [diff] [blame] | 6528 | /* If the stack is empty, the function fails. */ |
| 6529 | if (lua_gettop(stream->hlua->T) <= 0) |
| 6530 | return 0; |
| 6531 | |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6532 | /* Convert the returned value in sample. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6533 | hlua_lua2smp(stream->hlua->T, -1, smp); |
| 6534 | lua_pop(stream->hlua->T, 1); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6535 | return 1; |
| 6536 | |
| 6537 | /* yield. */ |
| 6538 | case HLUA_E_AGAIN: |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6539 | 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] | 6540 | return 0; |
| 6541 | |
| 6542 | /* finished with error. */ |
| 6543 | case HLUA_E_ERRMSG: |
| 6544 | /* Display log. */ |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6545 | SEND_ERR(stream->be, "Lua converter '%s': %s.\n", |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6546 | fcn->name, lua_tostring(stream->hlua->T, -1)); |
| 6547 | lua_pop(stream->hlua->T, 1); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6548 | return 0; |
| 6549 | |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 6550 | case HLUA_E_ETMOUT: |
| 6551 | SEND_ERR(stream->be, "Lua converter '%s': execution timeout.\n", fcn->name); |
| 6552 | return 0; |
| 6553 | |
| 6554 | case HLUA_E_NOMEM: |
| 6555 | SEND_ERR(stream->be, "Lua converter '%s': out of memory error.\n", fcn->name); |
| 6556 | return 0; |
| 6557 | |
| 6558 | case HLUA_E_YIELD: |
| 6559 | SEND_ERR(stream->be, "Lua converter '%s': yield functions like core.tcp() or core.sleep() are not allowed.\n", fcn->name); |
| 6560 | return 0; |
| 6561 | |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6562 | case HLUA_E_ERR: |
| 6563 | /* Display log. */ |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6564 | SEND_ERR(stream->be, "Lua converter '%s' returns an unknown error.\n", fcn->name); |
Tim Duesterhus | 588b314 | 2020-05-29 14:35:51 +0200 | [diff] [blame] | 6565 | /* fall through */ |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6566 | |
| 6567 | default: |
| 6568 | return 0; |
| 6569 | } |
| 6570 | } |
| 6571 | |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6572 | /* Wrapper called by HAProxy to execute a sample-fetch. this wrapper |
| 6573 | * doesn't allow "yield" functions because the HAProxy engine cannot |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 6574 | * resume sample-fetches. This function will be called by the sample |
| 6575 | * fetch engine to call lua-based fetch operations. |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6576 | */ |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6577 | static int hlua_sample_fetch_wrapper(const struct arg *arg_p, struct sample *smp, |
| 6578 | const char *kw, void *private) |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6579 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 6580 | struct hlua_function *fcn = private; |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6581 | struct stream *stream = smp->strm; |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 6582 | const char *error; |
Christopher Faulet | bfab2dd | 2019-07-26 15:09:53 +0200 | [diff] [blame] | 6583 | unsigned int hflags = HLUA_TXN_NOTERM; |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6584 | |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 6585 | if (!stream) |
| 6586 | return 0; |
Christopher Faulet | afd8f10 | 2018-11-08 11:34:21 +0100 | [diff] [blame] | 6587 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 6588 | /* In the execution wrappers linked with a stream, the |
Thierry FOURNIER | 05ac424 | 2015-02-27 18:37:27 +0100 | [diff] [blame] | 6589 | * Lua context can be not initialized. This behavior |
| 6590 | * permits to save performances because a systematic |
| 6591 | * Lua initialization cause 5% performances loss. |
| 6592 | */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6593 | if (!stream->hlua) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 6594 | stream->hlua = pool_alloc(pool_head_hlua); |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6595 | if (!stream->hlua) { |
| 6596 | SEND_ERR(stream->be, "Lua sample-fetch '%s': can't initialize Lua context.\n", fcn->name); |
| 6597 | return 0; |
| 6598 | } |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 6599 | if (!hlua_ctx_init(stream->hlua, fcn_ref_to_stack_id(fcn), stream->task, 0)) { |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6600 | SEND_ERR(stream->be, "Lua sample-fetch '%s': can't initialize Lua context.\n", fcn->name); |
| 6601 | return 0; |
| 6602 | } |
Thierry FOURNIER | 05ac424 | 2015-02-27 18:37:27 +0100 | [diff] [blame] | 6603 | } |
| 6604 | |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6605 | /* If it is the first run, initialize the data for the call. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6606 | if (!HLUA_IS_RUNNING(stream->hlua)) { |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 6607 | |
| 6608 | /* The following Lua calls can fail. */ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 6609 | if (!SET_SAFE_LJMP(stream->hlua)) { |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6610 | if (lua_type(stream->hlua->T, -1) == LUA_TSTRING) |
| 6611 | error = lua_tostring(stream->hlua->T, -1); |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 6612 | else |
| 6613 | error = "critical error"; |
| 6614 | 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] | 6615 | return 0; |
| 6616 | } |
| 6617 | |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6618 | /* Check stack available size. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6619 | if (!lua_checkstack(stream->hlua->T, 2)) { |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6620 | SEND_ERR(smp->px, "Lua sample-fetch '%s': full stack.\n", fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 6621 | RESET_SAFE_LJMP(stream->hlua); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6622 | return 0; |
| 6623 | } |
| 6624 | |
| 6625 | /* Restore the function in the stack. */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 6626 | lua_rawgeti(stream->hlua->T, LUA_REGISTRYINDEX, fcn->function_ref[stream->hlua->state_id]); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6627 | |
| 6628 | /* push arguments in the stack. */ |
Christopher Faulet | bfab2dd | 2019-07-26 15:09:53 +0200 | [diff] [blame] | 6629 | 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] | 6630 | SEND_ERR(smp->px, "Lua sample-fetch '%s': full stack.\n", fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 6631 | RESET_SAFE_LJMP(stream->hlua); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6632 | return 0; |
| 6633 | } |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6634 | stream->hlua->nargs = 1; |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6635 | |
| 6636 | /* push keywords in the stack. */ |
| 6637 | for (; arg_p && arg_p->type != ARGT_STOP; arg_p++) { |
| 6638 | /* Check stack available size. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6639 | if (!lua_checkstack(stream->hlua->T, 1)) { |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6640 | SEND_ERR(smp->px, "Lua sample-fetch '%s': full stack.\n", fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 6641 | RESET_SAFE_LJMP(stream->hlua); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6642 | return 0; |
| 6643 | } |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6644 | hlua_arg2lua(stream->hlua->T, arg_p); |
| 6645 | stream->hlua->nargs++; |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6646 | } |
| 6647 | |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 6648 | /* We must initialize the execution timeouts. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6649 | stream->hlua->max_time = hlua_timeout_session; |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 6650 | |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 6651 | /* At this point the execution is safe. */ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 6652 | RESET_SAFE_LJMP(stream->hlua); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6653 | } |
| 6654 | |
| 6655 | /* Execute the function. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6656 | switch (hlua_ctx_resume(stream->hlua, 0)) { |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6657 | /* finished. */ |
| 6658 | case HLUA_E_OK: |
Thierry FOURNIER | fd80df1 | 2017-05-12 16:32:20 +0200 | [diff] [blame] | 6659 | /* If the stack is empty, the function fails. */ |
| 6660 | if (lua_gettop(stream->hlua->T) <= 0) |
| 6661 | return 0; |
| 6662 | |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6663 | /* Convert the returned value in sample. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6664 | hlua_lua2smp(stream->hlua->T, -1, smp); |
| 6665 | lua_pop(stream->hlua->T, 1); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6666 | |
| 6667 | /* Set the end of execution flag. */ |
| 6668 | smp->flags &= ~SMP_F_MAY_CHANGE; |
| 6669 | return 1; |
| 6670 | |
| 6671 | /* yield. */ |
| 6672 | case HLUA_E_AGAIN: |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6673 | 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] | 6674 | return 0; |
| 6675 | |
| 6676 | /* finished with error. */ |
| 6677 | case HLUA_E_ERRMSG: |
| 6678 | /* Display log. */ |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6679 | SEND_ERR(smp->px, "Lua sample-fetch '%s': %s.\n", |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6680 | fcn->name, lua_tostring(stream->hlua->T, -1)); |
| 6681 | lua_pop(stream->hlua->T, 1); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6682 | return 0; |
| 6683 | |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 6684 | case HLUA_E_ETMOUT: |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 6685 | SEND_ERR(smp->px, "Lua sample-fetch '%s': execution timeout.\n", fcn->name); |
| 6686 | return 0; |
| 6687 | |
| 6688 | case HLUA_E_NOMEM: |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 6689 | SEND_ERR(smp->px, "Lua sample-fetch '%s': out of memory error.\n", fcn->name); |
| 6690 | return 0; |
| 6691 | |
| 6692 | case HLUA_E_YIELD: |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 6693 | SEND_ERR(smp->px, "Lua sample-fetch '%s': yield not allowed.\n", fcn->name); |
| 6694 | return 0; |
| 6695 | |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6696 | case HLUA_E_ERR: |
| 6697 | /* Display log. */ |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6698 | SEND_ERR(smp->px, "Lua sample-fetch '%s' returns an unknown error.\n", fcn->name); |
Tim Duesterhus | 588b314 | 2020-05-29 14:35:51 +0200 | [diff] [blame] | 6699 | /* fall through */ |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6700 | |
| 6701 | default: |
| 6702 | return 0; |
| 6703 | } |
| 6704 | } |
| 6705 | |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6706 | /* This function is an LUA binding used for registering |
| 6707 | * "sample-conv" functions. It expects a converter name used |
| 6708 | * in the haproxy configuration file, and an LUA function. |
| 6709 | */ |
| 6710 | __LJMP static int hlua_register_converters(lua_State *L) |
| 6711 | { |
| 6712 | struct sample_conv_kw_list *sck; |
| 6713 | const char *name; |
| 6714 | int ref; |
| 6715 | int len; |
| 6716 | struct hlua_function *fcn; |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 6717 | struct sample_conv *sc; |
| 6718 | struct buffer *trash; |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6719 | |
| 6720 | MAY_LJMP(check_args(L, 2, "register_converters")); |
| 6721 | |
| 6722 | /* First argument : converter name. */ |
| 6723 | name = MAY_LJMP(luaL_checkstring(L, 1)); |
| 6724 | |
| 6725 | /* Second argument : lua function. */ |
| 6726 | ref = MAY_LJMP(hlua_checkfunction(L, 2)); |
| 6727 | |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 6728 | /* Check if the converter is already registered */ |
| 6729 | trash = get_trash_chunk(); |
| 6730 | chunk_printf(trash, "lua.%s", name); |
| 6731 | sc = find_sample_conv(trash->area, trash->data); |
| 6732 | if (sc != NULL) { |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 6733 | fcn = sc->private; |
| 6734 | if (fcn->function_ref[hlua_state_id] != -1) { |
| 6735 | ha_warning("Trying to register converter 'lua.%s' more than once. " |
| 6736 | "This will become a hard error in version 2.5.\n", name); |
| 6737 | } |
| 6738 | fcn->function_ref[hlua_state_id] = ref; |
| 6739 | return 0; |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 6740 | } |
| 6741 | |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6742 | /* Allocate and fill the sample fetch keyword struct. */ |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 6743 | sck = calloc(1, sizeof(*sck) + sizeof(struct sample_conv) * 2); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6744 | if (!sck) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 6745 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry Fournier | 62a22aa | 2020-11-28 21:06:35 +0100 | [diff] [blame] | 6746 | fcn = new_hlua_function(); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6747 | if (!fcn) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 6748 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6749 | |
| 6750 | /* Fill fcn. */ |
| 6751 | fcn->name = strdup(name); |
| 6752 | if (!fcn->name) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 6753 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 6754 | fcn->function_ref[hlua_state_id] = ref; |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6755 | |
| 6756 | /* List head */ |
| 6757 | sck->list.n = sck->list.p = NULL; |
| 6758 | |
| 6759 | /* converter keyword. */ |
| 6760 | len = strlen("lua.") + strlen(name) + 1; |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 6761 | sck->kw[0].kw = calloc(1, len); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6762 | if (!sck->kw[0].kw) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 6763 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6764 | |
| 6765 | snprintf((char *)sck->kw[0].kw, len, "lua.%s", name); |
| 6766 | sck->kw[0].process = hlua_sample_conv_wrapper; |
David Carlier | 0c437f4 | 2016-04-27 16:21:56 +0100 | [diff] [blame] | 6767 | 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] | 6768 | sck->kw[0].val_args = NULL; |
| 6769 | sck->kw[0].in_type = SMP_T_STR; |
| 6770 | sck->kw[0].out_type = SMP_T_STR; |
| 6771 | sck->kw[0].private = fcn; |
| 6772 | |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6773 | /* Register this new converter */ |
| 6774 | sample_register_convs(sck); |
| 6775 | |
| 6776 | return 0; |
| 6777 | } |
| 6778 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 6779 | /* This function is an LUA binding used for registering |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6780 | * "sample-fetch" functions. It expects a converter name used |
| 6781 | * in the haproxy configuration file, and an LUA function. |
| 6782 | */ |
| 6783 | __LJMP static int hlua_register_fetches(lua_State *L) |
| 6784 | { |
| 6785 | const char *name; |
| 6786 | int ref; |
| 6787 | int len; |
| 6788 | struct sample_fetch_kw_list *sfk; |
| 6789 | struct hlua_function *fcn; |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 6790 | struct sample_fetch *sf; |
| 6791 | struct buffer *trash; |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6792 | |
| 6793 | MAY_LJMP(check_args(L, 2, "register_fetches")); |
| 6794 | |
| 6795 | /* First argument : sample-fetch name. */ |
| 6796 | name = MAY_LJMP(luaL_checkstring(L, 1)); |
| 6797 | |
| 6798 | /* Second argument : lua function. */ |
| 6799 | ref = MAY_LJMP(hlua_checkfunction(L, 2)); |
| 6800 | |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 6801 | /* Check if the sample-fetch is already registered */ |
| 6802 | trash = get_trash_chunk(); |
| 6803 | chunk_printf(trash, "lua.%s", name); |
| 6804 | sf = find_sample_fetch(trash->area, trash->data); |
| 6805 | if (sf != NULL) { |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 6806 | fcn = sf->private; |
| 6807 | if (fcn->function_ref[hlua_state_id] != -1) { |
| 6808 | ha_warning("Trying to register sample-fetch 'lua.%s' more than once. " |
| 6809 | "This will become a hard error in version 2.5.\n", name); |
| 6810 | } |
| 6811 | fcn->function_ref[hlua_state_id] = ref; |
| 6812 | return 0; |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 6813 | } |
| 6814 | |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6815 | /* Allocate and fill the sample fetch keyword struct. */ |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 6816 | sfk = calloc(1, sizeof(*sfk) + sizeof(struct sample_fetch) * 2); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6817 | if (!sfk) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 6818 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry Fournier | 62a22aa | 2020-11-28 21:06:35 +0100 | [diff] [blame] | 6819 | fcn = new_hlua_function(); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6820 | if (!fcn) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 6821 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6822 | |
| 6823 | /* Fill fcn. */ |
| 6824 | fcn->name = strdup(name); |
| 6825 | if (!fcn->name) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 6826 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 6827 | fcn->function_ref[hlua_state_id] = ref; |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6828 | |
| 6829 | /* List head */ |
| 6830 | sfk->list.n = sfk->list.p = NULL; |
| 6831 | |
| 6832 | /* sample-fetch keyword. */ |
| 6833 | len = strlen("lua.") + strlen(name) + 1; |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 6834 | sfk->kw[0].kw = calloc(1, len); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6835 | if (!sfk->kw[0].kw) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 6836 | return luaL_error(L, "Lua out of memory error."); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6837 | |
| 6838 | snprintf((char *)sfk->kw[0].kw, len, "lua.%s", name); |
| 6839 | sfk->kw[0].process = hlua_sample_fetch_wrapper; |
David Carlier | 0c437f4 | 2016-04-27 16:21:56 +0100 | [diff] [blame] | 6840 | 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] | 6841 | sfk->kw[0].val_args = NULL; |
| 6842 | sfk->kw[0].out_type = SMP_T_STR; |
| 6843 | sfk->kw[0].use = SMP_USE_HTTP_ANY; |
| 6844 | sfk->kw[0].val = 0; |
| 6845 | sfk->kw[0].private = fcn; |
| 6846 | |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6847 | /* Register this new fetch. */ |
| 6848 | sample_register_fetches(sfk); |
| 6849 | |
| 6850 | return 0; |
| 6851 | } |
| 6852 | |
Christopher Faulet | 501465d | 2020-02-26 14:54:16 +0100 | [diff] [blame] | 6853 | /* This function is a lua binding to set the wake_time. |
Christopher Faulet | 2c2c2e3 | 2020-01-31 19:07:52 +0100 | [diff] [blame] | 6854 | */ |
Christopher Faulet | 501465d | 2020-02-26 14:54:16 +0100 | [diff] [blame] | 6855 | __LJMP static int hlua_set_wake_time(lua_State *L) |
Christopher Faulet | 2c2c2e3 | 2020-01-31 19:07:52 +0100 | [diff] [blame] | 6856 | { |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 6857 | struct hlua *hlua; |
Christopher Faulet | 2c2c2e3 | 2020-01-31 19:07:52 +0100 | [diff] [blame] | 6858 | unsigned int delay; |
| 6859 | unsigned int wakeup_ms; |
| 6860 | |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 6861 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 6862 | hlua = hlua_gethlua(L); |
| 6863 | if (!hlua) { |
| 6864 | return 0; |
| 6865 | } |
| 6866 | |
Christopher Faulet | 2c2c2e3 | 2020-01-31 19:07:52 +0100 | [diff] [blame] | 6867 | MAY_LJMP(check_args(L, 1, "wake_time")); |
| 6868 | |
| 6869 | delay = MAY_LJMP(luaL_checkinteger(L, 1)); |
| 6870 | wakeup_ms = tick_add(now_ms, delay); |
| 6871 | hlua->wake_time = wakeup_ms; |
| 6872 | return 0; |
| 6873 | } |
| 6874 | |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 6875 | /* This function is a wrapper to execute each LUA function declared as an action |
| 6876 | * wrapper during the initialisation period. This function may return any |
| 6877 | * ACT_RET_* value. On error ACT_RET_CONT is returned and the action is |
| 6878 | * ignored. If the lua action yields, ACT_RET_YIELD is returned. On success, the |
| 6879 | * return value is the first element on the stack. |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6880 | */ |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 6881 | 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] | 6882 | struct session *sess, struct stream *s, int flags) |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6883 | { |
| 6884 | char **arg; |
Christopher Faulet | bfab2dd | 2019-07-26 15:09:53 +0200 | [diff] [blame] | 6885 | unsigned int hflags = 0; |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 6886 | int dir, act_ret = ACT_RET_CONT; |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 6887 | const char *error; |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 6888 | |
| 6889 | switch (rule->from) { |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 6890 | case ACT_F_TCP_REQ_CNT: dir = SMP_OPT_DIR_REQ; break; |
| 6891 | case ACT_F_TCP_RES_CNT: dir = SMP_OPT_DIR_RES; break; |
| 6892 | case ACT_F_HTTP_REQ: dir = SMP_OPT_DIR_REQ; break; |
| 6893 | case ACT_F_HTTP_RES: dir = SMP_OPT_DIR_RES; break; |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 6894 | default: |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6895 | SEND_ERR(px, "Lua: internal error while execute action.\n"); |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 6896 | goto end; |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 6897 | } |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6898 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 6899 | /* In the execution wrappers linked with a stream, the |
Thierry FOURNIER | 05ac424 | 2015-02-27 18:37:27 +0100 | [diff] [blame] | 6900 | * Lua context can be not initialized. This behavior |
| 6901 | * permits to save performances because a systematic |
| 6902 | * Lua initialization cause 5% performances loss. |
| 6903 | */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6904 | if (!s->hlua) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 6905 | s->hlua = pool_alloc(pool_head_hlua); |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6906 | if (!s->hlua) { |
| 6907 | SEND_ERR(px, "Lua action '%s': can't initialize Lua context.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 6908 | rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 6909 | goto end; |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6910 | } |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 6911 | if (!hlua_ctx_init(s->hlua, fcn_ref_to_stack_id(rule->arg.hlua_rule->fcn), s->task, 0)) { |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6912 | SEND_ERR(px, "Lua action '%s': can't initialize Lua context.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 6913 | rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 6914 | goto end; |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6915 | } |
Thierry FOURNIER | 05ac424 | 2015-02-27 18:37:27 +0100 | [diff] [blame] | 6916 | } |
| 6917 | |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6918 | /* If it is the first run, initialize the data for the call. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6919 | if (!HLUA_IS_RUNNING(s->hlua)) { |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 6920 | |
| 6921 | /* The following Lua calls can fail. */ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 6922 | if (!SET_SAFE_LJMP(s->hlua)) { |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6923 | if (lua_type(s->hlua->T, -1) == LUA_TSTRING) |
| 6924 | error = lua_tostring(s->hlua->T, -1); |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 6925 | else |
| 6926 | error = "critical error"; |
| 6927 | SEND_ERR(px, "Lua function '%s': %s.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 6928 | rule->arg.hlua_rule->fcn->name, error); |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 6929 | goto end; |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 6930 | } |
| 6931 | |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6932 | /* Check stack available size. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6933 | if (!lua_checkstack(s->hlua->T, 1)) { |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6934 | SEND_ERR(px, "Lua function '%s': full stack.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 6935 | rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 6936 | RESET_SAFE_LJMP(s->hlua); |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 6937 | goto end; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6938 | } |
| 6939 | |
| 6940 | /* Restore the function in the stack. */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 6941 | lua_rawgeti(s->hlua->T, LUA_REGISTRYINDEX, rule->arg.hlua_rule->fcn->function_ref[s->hlua->state_id]); |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6942 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 6943 | /* Create and and push object stream in the stack. */ |
Christopher Faulet | bfab2dd | 2019-07-26 15:09:53 +0200 | [diff] [blame] | 6944 | if (!hlua_txn_new(s->hlua->T, s, px, dir, hflags)) { |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6945 | SEND_ERR(px, "Lua function '%s': full stack.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 6946 | rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 6947 | RESET_SAFE_LJMP(s->hlua); |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 6948 | goto end; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6949 | } |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6950 | s->hlua->nargs = 1; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6951 | |
| 6952 | /* push keywords in the stack. */ |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 6953 | for (arg = rule->arg.hlua_rule->args; arg && *arg; arg++) { |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6954 | if (!lua_checkstack(s->hlua->T, 1)) { |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6955 | SEND_ERR(px, "Lua function '%s': full stack.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 6956 | rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 6957 | RESET_SAFE_LJMP(s->hlua); |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 6958 | goto end; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6959 | } |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6960 | lua_pushstring(s->hlua->T, *arg); |
| 6961 | s->hlua->nargs++; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6962 | } |
| 6963 | |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 6964 | /* Now the execution is safe. */ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 6965 | RESET_SAFE_LJMP(s->hlua); |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 6966 | |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 6967 | /* We must initialize the execution timeouts. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6968 | s->hlua->max_time = hlua_timeout_session; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6969 | } |
| 6970 | |
| 6971 | /* Execute the function. */ |
Christopher Faulet | 105ba6c | 2019-12-18 14:41:51 +0100 | [diff] [blame] | 6972 | switch (hlua_ctx_resume(s->hlua, !(flags & ACT_OPT_FINAL))) { |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6973 | /* finished. */ |
| 6974 | case HLUA_E_OK: |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 6975 | /* Catch the return value */ |
| 6976 | if (lua_gettop(s->hlua->T) > 0) |
| 6977 | act_ret = lua_tointeger(s->hlua->T, -1); |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6978 | |
Christopher Faulet | 2c2c2e3 | 2020-01-31 19:07:52 +0100 | [diff] [blame] | 6979 | /* Set timeout in the required channel. */ |
Christopher Faulet | 498c483 | 2020-07-28 11:59:58 +0200 | [diff] [blame] | 6980 | if (act_ret == ACT_RET_YIELD) { |
| 6981 | if (flags & ACT_OPT_FINAL) |
| 6982 | goto err_yield; |
| 6983 | |
Christopher Faulet | 8f587ea | 2020-07-28 12:01:55 +0200 | [diff] [blame] | 6984 | if (dir == SMP_OPT_DIR_REQ) |
| 6985 | s->req.analyse_exp = tick_first((tick_is_expired(s->req.analyse_exp, now_ms) ? 0 : s->req.analyse_exp), |
| 6986 | s->hlua->wake_time); |
| 6987 | else |
| 6988 | s->res.analyse_exp = tick_first((tick_is_expired(s->res.analyse_exp, now_ms) ? 0 : s->res.analyse_exp), |
| 6989 | s->hlua->wake_time); |
Christopher Faulet | 2c2c2e3 | 2020-01-31 19:07:52 +0100 | [diff] [blame] | 6990 | } |
| 6991 | goto end; |
| 6992 | |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6993 | /* yield. */ |
| 6994 | case HLUA_E_AGAIN: |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 6995 | /* Set timeout in the required channel. */ |
Christopher Faulet | 8f587ea | 2020-07-28 12:01:55 +0200 | [diff] [blame] | 6996 | if (dir == SMP_OPT_DIR_REQ) |
| 6997 | s->req.analyse_exp = tick_first((tick_is_expired(s->req.analyse_exp, now_ms) ? 0 : s->req.analyse_exp), |
| 6998 | s->hlua->wake_time); |
| 6999 | else |
| 7000 | s->res.analyse_exp = tick_first((tick_is_expired(s->res.analyse_exp, now_ms) ? 0 : s->res.analyse_exp), |
| 7001 | s->hlua->wake_time); |
| 7002 | |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 7003 | /* Some actions can be wake up when a "write" event |
| 7004 | * is detected on a response channel. This is useful |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 7005 | * only for actions targeted on the requests. |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 7006 | */ |
Christopher Faulet | 51fa358 | 2019-07-26 14:54:52 +0200 | [diff] [blame] | 7007 | if (HLUA_IS_WAKERESWR(s->hlua)) |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 7008 | s->res.flags |= CF_WAKE_WRITE; |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 7009 | if (HLUA_IS_WAKEREQWR(s->hlua)) |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 7010 | s->req.flags |= CF_WAKE_WRITE; |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 7011 | act_ret = ACT_RET_YIELD; |
| 7012 | goto end; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 7013 | |
| 7014 | /* finished with error. */ |
| 7015 | case HLUA_E_ERRMSG: |
| 7016 | /* Display log. */ |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 7017 | SEND_ERR(px, "Lua function '%s': %s.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7018 | rule->arg.hlua_rule->fcn->name, lua_tostring(s->hlua->T, -1)); |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 7019 | lua_pop(s->hlua->T, 1); |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 7020 | goto end; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 7021 | |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 7022 | case HLUA_E_ETMOUT: |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7023 | SEND_ERR(px, "Lua function '%s': execution timeout.\n", rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 7024 | goto end; |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 7025 | |
| 7026 | case HLUA_E_NOMEM: |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7027 | SEND_ERR(px, "Lua function '%s': out of memory error.\n", rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 7028 | goto end; |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 7029 | |
| 7030 | case HLUA_E_YIELD: |
Christopher Faulet | 498c483 | 2020-07-28 11:59:58 +0200 | [diff] [blame] | 7031 | err_yield: |
| 7032 | act_ret = ACT_RET_CONT; |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 7033 | SEND_ERR(px, "Lua function '%s': aborting Lua processing on expired timeout.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7034 | rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 7035 | goto end; |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 7036 | |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 7037 | case HLUA_E_ERR: |
| 7038 | /* Display log. */ |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 7039 | SEND_ERR(px, "Lua function '%s' return an unknown error.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7040 | rule->arg.hlua_rule->fcn->name); |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 7041 | |
| 7042 | default: |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 7043 | goto end; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 7044 | } |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 7045 | |
| 7046 | end: |
Christopher Faulet | 2361fd9 | 2020-07-30 10:40:58 +0200 | [diff] [blame] | 7047 | if (act_ret != ACT_RET_YIELD && s->hlua) |
Christopher Faulet | 8f587ea | 2020-07-28 12:01:55 +0200 | [diff] [blame] | 7048 | s->hlua->wake_time = TICK_ETERNITY; |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 7049 | return act_ret; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 7050 | } |
| 7051 | |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 7052 | 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] | 7053 | { |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 7054 | struct appctx *ctx = context; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7055 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7056 | appctx_wakeup(ctx); |
Willy Tarreau | d958741 | 2017-08-23 16:07:33 +0200 | [diff] [blame] | 7057 | t->expire = TICK_ETERNITY; |
Willy Tarreau | d1aa41f | 2017-07-21 16:41:56 +0200 | [diff] [blame] | 7058 | return t; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7059 | } |
| 7060 | |
| 7061 | static int hlua_applet_tcp_init(struct appctx *ctx, struct proxy *px, struct stream *strm) |
| 7062 | { |
| 7063 | struct stream_interface *si = ctx->owner; |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7064 | struct hlua *hlua; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7065 | struct task *task; |
| 7066 | char **arg; |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 7067 | const char *error; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7068 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 7069 | hlua = pool_alloc(pool_head_hlua); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7070 | if (!hlua) { |
| 7071 | SEND_ERR(px, "Lua applet tcp '%s': out of memory.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7072 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7073 | return 0; |
| 7074 | } |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7075 | HLUA_INIT(hlua); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7076 | ctx->ctx.hlua_apptcp.hlua = hlua; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7077 | ctx->ctx.hlua_apptcp.flags = 0; |
| 7078 | |
| 7079 | /* Create task used by signal to wakeup applets. */ |
Willy Tarreau | 5f4a47b | 2017-10-31 15:59:32 +0100 | [diff] [blame] | 7080 | task = task_new(tid_bit); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7081 | if (!task) { |
| 7082 | SEND_ERR(px, "Lua applet tcp '%s': out of memory.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7083 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7084 | return 0; |
| 7085 | } |
| 7086 | task->nice = 0; |
| 7087 | task->context = ctx; |
| 7088 | task->process = hlua_applet_wakeup; |
| 7089 | ctx->ctx.hlua_apptcp.task = task; |
| 7090 | |
| 7091 | /* In the execution wrappers linked with a stream, the |
| 7092 | * Lua context can be not initialized. This behavior |
| 7093 | * permits to save performances because a systematic |
| 7094 | * Lua initialization cause 5% performances loss. |
| 7095 | */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 7096 | if (!hlua_ctx_init(hlua, fcn_ref_to_stack_id(ctx->rule->arg.hlua_rule->fcn), task, 0)) { |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7097 | SEND_ERR(px, "Lua applet tcp '%s': can't initialize Lua context.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7098 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7099 | return 0; |
| 7100 | } |
| 7101 | |
| 7102 | /* Set timeout according with the applet configuration. */ |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 7103 | hlua->max_time = ctx->applet->timeout; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7104 | |
| 7105 | /* The following Lua calls can fail. */ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 7106 | if (!SET_SAFE_LJMP(hlua)) { |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 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(px, "Lua applet tcp '%s': %s.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7112 | ctx->rule->arg.hlua_rule->fcn->name, error); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7113 | return 0; |
| 7114 | } |
| 7115 | |
| 7116 | /* Check stack available size. */ |
| 7117 | if (!lua_checkstack(hlua->T, 1)) { |
| 7118 | SEND_ERR(px, "Lua applet tcp '%s': full stack.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7119 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 7120 | RESET_SAFE_LJMP(hlua); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7121 | return 0; |
| 7122 | } |
| 7123 | |
| 7124 | /* Restore the function in the stack. */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 7125 | lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, ctx->rule->arg.hlua_rule->fcn->function_ref[hlua->state_id]); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7126 | |
| 7127 | /* Create and and push object stream in the stack. */ |
| 7128 | if (!hlua_applet_tcp_new(hlua->T, ctx)) { |
| 7129 | SEND_ERR(px, "Lua applet tcp '%s': full stack.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7130 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 7131 | RESET_SAFE_LJMP(hlua); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7132 | return 0; |
| 7133 | } |
| 7134 | hlua->nargs = 1; |
| 7135 | |
| 7136 | /* push keywords in the stack. */ |
| 7137 | for (arg = ctx->rule->arg.hlua_rule->args; arg && *arg; arg++) { |
| 7138 | if (!lua_checkstack(hlua->T, 1)) { |
| 7139 | SEND_ERR(px, "Lua applet tcp '%s': full stack.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7140 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 7141 | RESET_SAFE_LJMP(hlua); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7142 | return 0; |
| 7143 | } |
| 7144 | lua_pushstring(hlua->T, *arg); |
| 7145 | hlua->nargs++; |
| 7146 | } |
| 7147 | |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 7148 | RESET_SAFE_LJMP(hlua); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7149 | |
| 7150 | /* Wakeup the applet ASAP. */ |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 7151 | si_cant_get(si); |
Willy Tarreau | 3367d41 | 2018-11-15 10:57:41 +0100 | [diff] [blame] | 7152 | si_rx_endp_more(si); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7153 | |
| 7154 | return 1; |
| 7155 | } |
| 7156 | |
Willy Tarreau | 60409db | 2019-08-21 14:14:50 +0200 | [diff] [blame] | 7157 | void hlua_applet_tcp_fct(struct appctx *ctx) |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7158 | { |
| 7159 | struct stream_interface *si = ctx->owner; |
| 7160 | struct stream *strm = si_strm(si); |
| 7161 | struct channel *res = si_ic(si); |
| 7162 | struct act_rule *rule = ctx->rule; |
| 7163 | struct proxy *px = strm->be; |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7164 | struct hlua *hlua = ctx->ctx.hlua_apptcp.hlua; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7165 | |
| 7166 | /* The applet execution is already done. */ |
Olivier Houchard | 594c8c5 | 2018-08-28 14:41:31 +0200 | [diff] [blame] | 7167 | if (ctx->ctx.hlua_apptcp.flags & APPLET_DONE) { |
| 7168 | /* eat the whole request */ |
| 7169 | co_skip(si_oc(si), co_data(si_oc(si))); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7170 | return; |
Olivier Houchard | 594c8c5 | 2018-08-28 14:41:31 +0200 | [diff] [blame] | 7171 | } |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7172 | |
| 7173 | /* If the stream is disconnect or closed, ldo nothing. */ |
| 7174 | if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) |
| 7175 | return; |
| 7176 | |
| 7177 | /* Execute the function. */ |
| 7178 | switch (hlua_ctx_resume(hlua, 1)) { |
| 7179 | /* finished. */ |
| 7180 | case HLUA_E_OK: |
| 7181 | ctx->ctx.hlua_apptcp.flags |= APPLET_DONE; |
| 7182 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7183 | /* eat the whole request */ |
Willy Tarreau | a79021a | 2018-06-15 18:07:57 +0200 | [diff] [blame] | 7184 | co_skip(si_oc(si), co_data(si_oc(si))); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7185 | res->flags |= CF_READ_NULL; |
| 7186 | si_shutr(si); |
| 7187 | return; |
| 7188 | |
| 7189 | /* yield. */ |
| 7190 | case HLUA_E_AGAIN: |
Thierry Fournier | 0164f20 | 2016-02-20 17:47:43 +0100 | [diff] [blame] | 7191 | if (hlua->wake_time != TICK_ETERNITY) |
| 7192 | task_schedule(ctx->ctx.hlua_apptcp.task, hlua->wake_time); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7193 | return; |
| 7194 | |
| 7195 | /* finished with error. */ |
| 7196 | case HLUA_E_ERRMSG: |
| 7197 | /* Display log. */ |
| 7198 | SEND_ERR(px, "Lua applet tcp '%s': %s.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7199 | rule->arg.hlua_rule->fcn->name, lua_tostring(hlua->T, -1)); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7200 | lua_pop(hlua->T, 1); |
| 7201 | goto error; |
| 7202 | |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 7203 | case HLUA_E_ETMOUT: |
| 7204 | SEND_ERR(px, "Lua applet tcp '%s': execution timeout.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7205 | rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 7206 | goto error; |
| 7207 | |
| 7208 | case HLUA_E_NOMEM: |
| 7209 | SEND_ERR(px, "Lua applet tcp '%s': out of memory error.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7210 | rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 7211 | goto error; |
| 7212 | |
| 7213 | case HLUA_E_YIELD: /* unexpected */ |
| 7214 | SEND_ERR(px, "Lua applet tcp '%s': yield not allowed.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7215 | rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 7216 | goto error; |
| 7217 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7218 | case HLUA_E_ERR: |
| 7219 | /* Display log. */ |
| 7220 | SEND_ERR(px, "Lua applet tcp '%s' return an unknown error.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7221 | rule->arg.hlua_rule->fcn->name); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7222 | goto error; |
| 7223 | |
| 7224 | default: |
| 7225 | goto error; |
| 7226 | } |
| 7227 | |
| 7228 | error: |
| 7229 | |
| 7230 | /* For all other cases, just close the stream. */ |
| 7231 | si_shutw(si); |
| 7232 | si_shutr(si); |
| 7233 | ctx->ctx.hlua_apptcp.flags |= APPLET_DONE; |
| 7234 | } |
| 7235 | |
| 7236 | static void hlua_applet_tcp_release(struct appctx *ctx) |
| 7237 | { |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 7238 | task_destroy(ctx->ctx.hlua_apptcp.task); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7239 | ctx->ctx.hlua_apptcp.task = NULL; |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7240 | hlua_ctx_destroy(ctx->ctx.hlua_apptcp.hlua); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7241 | ctx->ctx.hlua_apptcp.hlua = NULL; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7242 | } |
| 7243 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7244 | /* The function returns 1 if the initialisation is complete, 0 if |
| 7245 | * an errors occurs and -1 if more data are required for initializing |
| 7246 | * the applet. |
| 7247 | */ |
| 7248 | static int hlua_applet_http_init(struct appctx *ctx, struct proxy *px, struct stream *strm) |
| 7249 | { |
| 7250 | struct stream_interface *si = ctx->owner; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7251 | struct http_txn *txn; |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7252 | struct hlua *hlua; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7253 | char **arg; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7254 | struct task *task; |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 7255 | const char *error; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7256 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7257 | txn = strm->txn; |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 7258 | hlua = pool_alloc(pool_head_hlua); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7259 | if (!hlua) { |
| 7260 | SEND_ERR(px, "Lua applet http '%s': out of memory.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7261 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7262 | return 0; |
| 7263 | } |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7264 | HLUA_INIT(hlua); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7265 | ctx->ctx.hlua_apphttp.hlua = hlua; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7266 | ctx->ctx.hlua_apphttp.left_bytes = -1; |
| 7267 | ctx->ctx.hlua_apphttp.flags = 0; |
| 7268 | |
Thierry FOURNIER | d93ea2b | 2015-12-20 19:14:52 +0100 | [diff] [blame] | 7269 | if (txn->req.flags & HTTP_MSGF_VER_11) |
| 7270 | ctx->ctx.hlua_apphttp.flags |= APPLET_HTTP11; |
| 7271 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7272 | /* Create task used by signal to wakeup applets. */ |
Willy Tarreau | 5f4a47b | 2017-10-31 15:59:32 +0100 | [diff] [blame] | 7273 | task = task_new(tid_bit); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7274 | if (!task) { |
| 7275 | SEND_ERR(px, "Lua applet http '%s': out of memory.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7276 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7277 | return 0; |
| 7278 | } |
| 7279 | task->nice = 0; |
| 7280 | task->context = ctx; |
| 7281 | task->process = hlua_applet_wakeup; |
| 7282 | ctx->ctx.hlua_apphttp.task = task; |
| 7283 | |
| 7284 | /* In the execution wrappers linked with a stream, the |
| 7285 | * Lua context can be not initialized. This behavior |
| 7286 | * permits to save performances because a systematic |
| 7287 | * Lua initialization cause 5% performances loss. |
| 7288 | */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 7289 | if (!hlua_ctx_init(hlua, fcn_ref_to_stack_id(ctx->rule->arg.hlua_rule->fcn), task, 0)) { |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7290 | SEND_ERR(px, "Lua applet http '%s': can't initialize Lua context.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7291 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7292 | return 0; |
| 7293 | } |
| 7294 | |
| 7295 | /* Set timeout according with the applet configuration. */ |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 7296 | hlua->max_time = ctx->applet->timeout; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7297 | |
| 7298 | /* The following Lua calls can fail. */ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 7299 | if (!SET_SAFE_LJMP(hlua)) { |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 7300 | if (lua_type(hlua->T, -1) == LUA_TSTRING) |
| 7301 | error = lua_tostring(hlua->T, -1); |
| 7302 | else |
| 7303 | error = "critical error"; |
| 7304 | SEND_ERR(px, "Lua applet http '%s': %s.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7305 | ctx->rule->arg.hlua_rule->fcn->name, error); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7306 | return 0; |
| 7307 | } |
| 7308 | |
| 7309 | /* Check stack available size. */ |
| 7310 | if (!lua_checkstack(hlua->T, 1)) { |
| 7311 | SEND_ERR(px, "Lua applet http '%s': full stack.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7312 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 7313 | RESET_SAFE_LJMP(hlua); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7314 | return 0; |
| 7315 | } |
| 7316 | |
| 7317 | /* Restore the function in the stack. */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 7318 | lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, ctx->rule->arg.hlua_rule->fcn->function_ref[hlua->state_id]); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7319 | |
| 7320 | /* Create and and push object stream in the stack. */ |
| 7321 | if (!hlua_applet_http_new(hlua->T, ctx)) { |
| 7322 | SEND_ERR(px, "Lua applet http '%s': full stack.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7323 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 7324 | RESET_SAFE_LJMP(hlua); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7325 | return 0; |
| 7326 | } |
| 7327 | hlua->nargs = 1; |
| 7328 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7329 | /* push keywords in the stack. */ |
| 7330 | for (arg = ctx->rule->arg.hlua_rule->args; arg && *arg; arg++) { |
| 7331 | if (!lua_checkstack(hlua->T, 1)) { |
| 7332 | SEND_ERR(px, "Lua applet http '%s': full stack.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7333 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 7334 | RESET_SAFE_LJMP(hlua); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7335 | return 0; |
| 7336 | } |
| 7337 | lua_pushstring(hlua->T, *arg); |
| 7338 | hlua->nargs++; |
| 7339 | } |
| 7340 | |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 7341 | RESET_SAFE_LJMP(hlua); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7342 | |
| 7343 | /* Wakeup the applet when data is ready for read. */ |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 7344 | si_cant_get(si); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7345 | |
| 7346 | return 1; |
| 7347 | } |
| 7348 | |
Willy Tarreau | 60409db | 2019-08-21 14:14:50 +0200 | [diff] [blame] | 7349 | void hlua_applet_http_fct(struct appctx *ctx) |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7350 | { |
| 7351 | struct stream_interface *si = ctx->owner; |
| 7352 | struct stream *strm = si_strm(si); |
| 7353 | struct channel *req = si_oc(si); |
| 7354 | struct channel *res = si_ic(si); |
| 7355 | struct act_rule *rule = ctx->rule; |
| 7356 | struct proxy *px = strm->be; |
| 7357 | struct hlua *hlua = ctx->ctx.hlua_apphttp.hlua; |
| 7358 | struct htx *req_htx, *res_htx; |
| 7359 | |
| 7360 | res_htx = htx_from_buf(&res->buf); |
| 7361 | |
| 7362 | /* If the stream is disconnect or closed, ldo nothing. */ |
| 7363 | if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) |
| 7364 | goto out; |
| 7365 | |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 7366 | /* Check if the input buffer is available. */ |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7367 | if (!b_size(&res->buf)) { |
| 7368 | si_rx_room_blk(si); |
| 7369 | goto out; |
| 7370 | } |
| 7371 | /* check that the output is not closed */ |
Christopher Faulet | 56a3d6e | 2019-02-27 22:06:23 +0100 | [diff] [blame] | 7372 | if (res->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_SHUTR)) |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7373 | ctx->ctx.hlua_apphttp.flags |= APPLET_DONE; |
| 7374 | |
| 7375 | /* Set the currently running flag. */ |
| 7376 | if (!HLUA_IS_RUNNING(hlua) && |
| 7377 | !(ctx->ctx.hlua_apphttp.flags & APPLET_DONE)) { |
| 7378 | struct htx_blk *blk; |
| 7379 | size_t count = co_data(req); |
| 7380 | |
| 7381 | if (!count) { |
| 7382 | si_cant_get(si); |
| 7383 | goto out; |
| 7384 | } |
| 7385 | |
| 7386 | /* We need to flush the request header. This left the body for |
| 7387 | * the Lua. |
| 7388 | */ |
| 7389 | req_htx = htx_from_buf(&req->buf); |
Christopher Faulet | a3f1550 | 2019-05-13 15:27:23 +0200 | [diff] [blame] | 7390 | blk = htx_get_first_blk(req_htx); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7391 | while (count && blk) { |
| 7392 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 7393 | uint32_t sz = htx_get_blksz(blk); |
| 7394 | |
| 7395 | if (sz > count) { |
| 7396 | si_cant_get(si); |
Christopher Faulet | 0ae79d0 | 2019-02-27 21:36:59 +0100 | [diff] [blame] | 7397 | htx_to_buf(req_htx, &req->buf); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7398 | goto out; |
| 7399 | } |
| 7400 | |
| 7401 | count -= sz; |
| 7402 | co_set_data(req, co_data(req) - sz); |
| 7403 | blk = htx_remove_blk(req_htx, blk); |
| 7404 | |
| 7405 | if (type == HTX_BLK_EOH) |
| 7406 | break; |
| 7407 | } |
Christopher Faulet | 0ae79d0 | 2019-02-27 21:36:59 +0100 | [diff] [blame] | 7408 | htx_to_buf(req_htx, &req->buf); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7409 | } |
| 7410 | |
| 7411 | /* Executes The applet if it is not done. */ |
| 7412 | if (!(ctx->ctx.hlua_apphttp.flags & APPLET_DONE)) { |
| 7413 | |
| 7414 | /* Execute the function. */ |
| 7415 | switch (hlua_ctx_resume(hlua, 1)) { |
| 7416 | /* finished. */ |
| 7417 | case HLUA_E_OK: |
| 7418 | ctx->ctx.hlua_apphttp.flags |= APPLET_DONE; |
| 7419 | break; |
| 7420 | |
| 7421 | /* yield. */ |
| 7422 | case HLUA_E_AGAIN: |
| 7423 | if (hlua->wake_time != TICK_ETERNITY) |
| 7424 | task_schedule(ctx->ctx.hlua_apphttp.task, hlua->wake_time); |
Christopher Faulet | 56a3d6e | 2019-02-27 22:06:23 +0100 | [diff] [blame] | 7425 | goto out; |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7426 | |
| 7427 | /* finished with error. */ |
| 7428 | case HLUA_E_ERRMSG: |
| 7429 | /* Display log. */ |
| 7430 | SEND_ERR(px, "Lua applet http '%s': %s.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7431 | rule->arg.hlua_rule->fcn->name, lua_tostring(hlua->T, -1)); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7432 | lua_pop(hlua->T, 1); |
| 7433 | goto error; |
| 7434 | |
| 7435 | case HLUA_E_ETMOUT: |
| 7436 | SEND_ERR(px, "Lua applet http '%s': execution timeout.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7437 | rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7438 | goto error; |
| 7439 | |
| 7440 | case HLUA_E_NOMEM: |
| 7441 | SEND_ERR(px, "Lua applet http '%s': out of memory error.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7442 | rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7443 | goto error; |
| 7444 | |
| 7445 | case HLUA_E_YIELD: /* unexpected */ |
| 7446 | SEND_ERR(px, "Lua applet http '%s': yield not allowed.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7447 | rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7448 | goto error; |
| 7449 | |
| 7450 | case HLUA_E_ERR: |
| 7451 | /* Display log. */ |
| 7452 | SEND_ERR(px, "Lua applet http '%s' return an unknown error.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7453 | rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7454 | goto error; |
| 7455 | |
| 7456 | default: |
| 7457 | goto error; |
| 7458 | } |
| 7459 | } |
| 7460 | |
| 7461 | if (ctx->ctx.hlua_apphttp.flags & APPLET_DONE) { |
Christopher Faulet | 56a3d6e | 2019-02-27 22:06:23 +0100 | [diff] [blame] | 7462 | if (ctx->ctx.hlua_apphttp.flags & APPLET_RSP_SENT) |
| 7463 | goto done; |
| 7464 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7465 | if (!(ctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT)) |
| 7466 | goto error; |
| 7467 | |
Christopher Faulet | 54b5e21 | 2019-06-04 10:08:28 +0200 | [diff] [blame] | 7468 | /* Don't add TLR because mux-h1 will take care of it */ |
Willy Tarreau | f1ea47d | 2020-07-23 06:53:27 +0200 | [diff] [blame] | 7469 | res_htx->flags |= HTX_FL_EOI; /* no more data are expected. Only EOM remains to add now */ |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7470 | if (!htx_add_endof(res_htx, HTX_BLK_EOM)) { |
| 7471 | si_rx_room_blk(si); |
| 7472 | goto out; |
| 7473 | } |
Christopher Faulet | f6cce3f | 2019-02-27 21:20:09 +0100 | [diff] [blame] | 7474 | channel_add_input(res, 1); |
Christopher Faulet | 56a3d6e | 2019-02-27 22:06:23 +0100 | [diff] [blame] | 7475 | strm->txn->status = ctx->ctx.hlua_apphttp.status; |
| 7476 | ctx->ctx.hlua_apphttp.flags |= APPLET_RSP_SENT; |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7477 | } |
| 7478 | |
| 7479 | done: |
| 7480 | if (ctx->ctx.hlua_apphttp.flags & APPLET_DONE) { |
Christopher Faulet | 56a3d6e | 2019-02-27 22:06:23 +0100 | [diff] [blame] | 7481 | if (!(res->flags & CF_SHUTR)) { |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7482 | res->flags |= CF_READ_NULL; |
Christopher Faulet | 56a3d6e | 2019-02-27 22:06:23 +0100 | [diff] [blame] | 7483 | si_shutr(si); |
| 7484 | } |
| 7485 | |
| 7486 | /* eat the whole request */ |
| 7487 | if (co_data(req)) { |
| 7488 | req_htx = htx_from_buf(&req->buf); |
| 7489 | co_htx_skip(req, req_htx, co_data(req)); |
| 7490 | htx_to_buf(req_htx, &req->buf); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7491 | } |
| 7492 | } |
| 7493 | |
| 7494 | out: |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7495 | htx_to_buf(res_htx, &res->buf); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7496 | return; |
| 7497 | |
| 7498 | error: |
| 7499 | |
| 7500 | /* If we are in HTTP mode, and we are not send any |
| 7501 | * data, return a 500 server error in best effort: |
| 7502 | * if there is no room available in the buffer, |
| 7503 | * just close the connection. |
| 7504 | */ |
| 7505 | if (!(ctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT)) { |
Christopher Faulet | f734638 | 2019-07-17 22:02:08 +0200 | [diff] [blame] | 7506 | struct buffer *err = &http_err_chunks[HTTP_ERR_500]; |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7507 | |
| 7508 | channel_erase(res); |
| 7509 | res->buf.data = b_data(err); |
| 7510 | memcpy(res->buf.area, b_head(err), b_data(err)); |
| 7511 | res_htx = htx_from_buf(&res->buf); |
Christopher Faulet | f6cce3f | 2019-02-27 21:20:09 +0100 | [diff] [blame] | 7512 | channel_add_input(res, res_htx->data); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7513 | } |
| 7514 | if (!(strm->flags & SF_ERR_MASK)) |
| 7515 | strm->flags |= SF_ERR_RESOURCE; |
| 7516 | ctx->ctx.hlua_apphttp.flags |= APPLET_DONE; |
| 7517 | goto done; |
| 7518 | } |
| 7519 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7520 | static void hlua_applet_http_release(struct appctx *ctx) |
| 7521 | { |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 7522 | task_destroy(ctx->ctx.hlua_apphttp.task); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7523 | ctx->ctx.hlua_apphttp.task = NULL; |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7524 | hlua_ctx_destroy(ctx->ctx.hlua_apphttp.hlua); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7525 | ctx->ctx.hlua_apphttp.hlua = NULL; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7526 | } |
| 7527 | |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 7528 | /* global {tcp|http}-request parser. Return ACT_RET_PRS_OK in |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 7529 | * success case, else return ACT_RET_PRS_ERR. |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 7530 | * |
| 7531 | * This function can fail with an abort() due to an Lua critical error. |
| 7532 | * We are in the configuration parsing process of HAProxy, this abort() is |
| 7533 | * tolerated. |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 7534 | */ |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 7535 | static enum act_parse_ret action_register_lua(const char **args, int *cur_arg, struct proxy *px, |
| 7536 | struct act_rule *rule, char **err) |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 7537 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 7538 | struct hlua_function *fcn = rule->kw->private; |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 7539 | int i; |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7540 | |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 7541 | /* Memory for the rule. */ |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 7542 | rule->arg.hlua_rule = calloc(1, sizeof(*rule->arg.hlua_rule)); |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 7543 | if (!rule->arg.hlua_rule) { |
| 7544 | memprintf(err, "out of memory error"); |
Thierry FOURNIER | afa8049 | 2015-08-19 09:04:15 +0200 | [diff] [blame] | 7545 | return ACT_RET_PRS_ERR; |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 7546 | } |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 7547 | |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 7548 | /* Memory for arguments. */ |
Tim Duesterhus | e52b6e5 | 2020-09-12 20:26:43 +0200 | [diff] [blame] | 7549 | rule->arg.hlua_rule->args = calloc(fcn->nargs + 1, |
| 7550 | sizeof(*rule->arg.hlua_rule->args)); |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 7551 | if (!rule->arg.hlua_rule->args) { |
| 7552 | memprintf(err, "out of memory error"); |
| 7553 | return ACT_RET_PRS_ERR; |
| 7554 | } |
| 7555 | |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 7556 | /* Reference the Lua function and store the reference. */ |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7557 | rule->arg.hlua_rule->fcn = fcn; |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 7558 | |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 7559 | /* Expect some arguments */ |
| 7560 | for (i = 0; i < fcn->nargs; i++) { |
Thierry FOURNIER | 1725c2e | 2019-01-06 19:38:49 +0100 | [diff] [blame] | 7561 | if (*args[*cur_arg] == '\0') { |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 7562 | memprintf(err, "expect %d arguments", fcn->nargs); |
| 7563 | return ACT_RET_PRS_ERR; |
| 7564 | } |
Thierry FOURNIER | 1725c2e | 2019-01-06 19:38:49 +0100 | [diff] [blame] | 7565 | rule->arg.hlua_rule->args[i] = strdup(args[*cur_arg]); |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 7566 | if (!rule->arg.hlua_rule->args[i]) { |
| 7567 | memprintf(err, "out of memory error"); |
| 7568 | return ACT_RET_PRS_ERR; |
| 7569 | } |
| 7570 | (*cur_arg)++; |
| 7571 | } |
| 7572 | rule->arg.hlua_rule->args[i] = NULL; |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 7573 | |
Thierry FOURNIER | 4214873 | 2015-09-02 17:17:33 +0200 | [diff] [blame] | 7574 | rule->action = ACT_CUSTOM; |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 7575 | rule->action_ptr = hlua_action; |
Thierry FOURNIER | afa8049 | 2015-08-19 09:04:15 +0200 | [diff] [blame] | 7576 | return ACT_RET_PRS_OK; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 7577 | } |
| 7578 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7579 | static enum act_parse_ret action_register_service_http(const char **args, int *cur_arg, struct proxy *px, |
| 7580 | struct act_rule *rule, char **err) |
| 7581 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 7582 | struct hlua_function *fcn = rule->kw->private; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7583 | |
Thierry FOURNIER | 718e2a7 | 2015-12-20 20:13:14 +0100 | [diff] [blame] | 7584 | /* HTTP applets are forbidden in tcp-request rules. |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 7585 | * HTTP applet request requires everything initialized by |
Thierry FOURNIER | 718e2a7 | 2015-12-20 20:13:14 +0100 | [diff] [blame] | 7586 | * "http_process_request" (analyzer flag AN_REQ_HTTP_INNER). |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 7587 | * The applet will be immediately initialized, but its before |
Thierry FOURNIER | 718e2a7 | 2015-12-20 20:13:14 +0100 | [diff] [blame] | 7588 | * the call of this analyzer. |
| 7589 | */ |
| 7590 | if (rule->from != ACT_F_HTTP_REQ) { |
| 7591 | memprintf(err, "HTTP applets are forbidden from 'tcp-request' rulesets"); |
| 7592 | return ACT_RET_PRS_ERR; |
| 7593 | } |
| 7594 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7595 | /* Memory for the rule. */ |
| 7596 | rule->arg.hlua_rule = calloc(1, sizeof(*rule->arg.hlua_rule)); |
| 7597 | if (!rule->arg.hlua_rule) { |
| 7598 | memprintf(err, "out of memory error"); |
| 7599 | return ACT_RET_PRS_ERR; |
| 7600 | } |
| 7601 | |
| 7602 | /* Reference the Lua function and store the reference. */ |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7603 | rule->arg.hlua_rule->fcn = fcn; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7604 | |
| 7605 | /* TODO: later accept arguments. */ |
| 7606 | rule->arg.hlua_rule->args = NULL; |
| 7607 | |
| 7608 | /* Add applet pointer in the rule. */ |
| 7609 | rule->applet.obj_type = OBJ_TYPE_APPLET; |
| 7610 | rule->applet.name = fcn->name; |
| 7611 | rule->applet.init = hlua_applet_http_init; |
| 7612 | rule->applet.fct = hlua_applet_http_fct; |
| 7613 | rule->applet.release = hlua_applet_http_release; |
| 7614 | rule->applet.timeout = hlua_timeout_applet; |
| 7615 | |
| 7616 | return ACT_RET_PRS_OK; |
| 7617 | } |
| 7618 | |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7619 | /* This function is an LUA binding used for registering |
| 7620 | * "sample-conv" functions. It expects a converter name used |
| 7621 | * in the haproxy configuration file, and an LUA function. |
| 7622 | */ |
| 7623 | __LJMP static int hlua_register_action(lua_State *L) |
| 7624 | { |
| 7625 | struct action_kw_list *akl; |
| 7626 | const char *name; |
| 7627 | int ref; |
| 7628 | int len; |
| 7629 | struct hlua_function *fcn; |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 7630 | int nargs; |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 7631 | struct buffer *trash; |
| 7632 | struct action_kw *akw; |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7633 | |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 7634 | /* Initialise the number of expected arguments at 0. */ |
| 7635 | nargs = 0; |
| 7636 | |
| 7637 | if (lua_gettop(L) < 3 || lua_gettop(L) > 4) |
| 7638 | 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] | 7639 | |
| 7640 | /* First argument : converter name. */ |
| 7641 | name = MAY_LJMP(luaL_checkstring(L, 1)); |
| 7642 | |
| 7643 | /* Second argument : environment. */ |
| 7644 | if (lua_type(L, 2) != LUA_TTABLE) |
| 7645 | WILL_LJMP(luaL_error(L, "register_action: second argument must be a table of strings")); |
| 7646 | |
| 7647 | /* Third argument : lua function. */ |
| 7648 | ref = MAY_LJMP(hlua_checkfunction(L, 3)); |
| 7649 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 7650 | /* 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] | 7651 | if (lua_gettop(L) >= 4) |
| 7652 | nargs = MAY_LJMP(luaL_checkinteger(L, 4)); |
| 7653 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 7654 | /* browse the second argument as an array. */ |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7655 | lua_pushnil(L); |
| 7656 | while (lua_next(L, 2) != 0) { |
| 7657 | if (lua_type(L, -1) != LUA_TSTRING) |
| 7658 | WILL_LJMP(luaL_error(L, "register_action: second argument must be a table of strings")); |
| 7659 | |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 7660 | /* Check if action exists */ |
| 7661 | trash = get_trash_chunk(); |
| 7662 | chunk_printf(trash, "lua.%s", name); |
| 7663 | if (strcmp(lua_tostring(L, -1), "tcp-req") == 0) { |
| 7664 | akw = tcp_req_cont_action(trash->area); |
| 7665 | } else if (strcmp(lua_tostring(L, -1), "tcp-res") == 0) { |
| 7666 | akw = tcp_res_cont_action(trash->area); |
| 7667 | } else if (strcmp(lua_tostring(L, -1), "http-req") == 0) { |
| 7668 | akw = action_http_req_custom(trash->area); |
| 7669 | } else if (strcmp(lua_tostring(L, -1), "http-res") == 0) { |
| 7670 | akw = action_http_res_custom(trash->area); |
| 7671 | } else { |
| 7672 | akw = NULL; |
| 7673 | } |
| 7674 | if (akw != NULL) { |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 7675 | fcn = akw->private; |
| 7676 | if (fcn->function_ref[hlua_state_id] != -1) { |
| 7677 | ha_warning("Trying to register action 'lua.%s' more than once. " |
| 7678 | "This will become a hard error in version 2.5.\n", name); |
| 7679 | } |
| 7680 | fcn->function_ref[hlua_state_id] = ref; |
| 7681 | |
| 7682 | /* pop the environment string. */ |
| 7683 | lua_pop(L, 1); |
| 7684 | continue; |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 7685 | } |
| 7686 | |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7687 | /* Check required environment. Only accepted "http" or "tcp". */ |
| 7688 | /* Allocate and fill the sample fetch keyword struct. */ |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 7689 | akl = calloc(1, sizeof(*akl) + sizeof(struct action_kw) * 2); |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7690 | if (!akl) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 7691 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry Fournier | 62a22aa | 2020-11-28 21:06:35 +0100 | [diff] [blame] | 7692 | fcn = new_hlua_function(); |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7693 | if (!fcn) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 7694 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7695 | |
| 7696 | /* Fill fcn. */ |
| 7697 | fcn->name = strdup(name); |
| 7698 | if (!fcn->name) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 7699 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 7700 | fcn->function_ref[hlua_state_id] = ref; |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7701 | |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 7702 | /* Set the expected number od arguments. */ |
| 7703 | fcn->nargs = nargs; |
| 7704 | |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7705 | /* List head */ |
| 7706 | akl->list.n = akl->list.p = NULL; |
| 7707 | |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7708 | /* action keyword. */ |
| 7709 | len = strlen("lua.") + strlen(name) + 1; |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 7710 | akl->kw[0].kw = calloc(1, len); |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7711 | if (!akl->kw[0].kw) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 7712 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7713 | |
| 7714 | snprintf((char *)akl->kw[0].kw, len, "lua.%s", name); |
| 7715 | |
| 7716 | akl->kw[0].match_pfx = 0; |
| 7717 | akl->kw[0].private = fcn; |
| 7718 | akl->kw[0].parse = action_register_lua; |
| 7719 | |
| 7720 | /* select the action registering point. */ |
| 7721 | if (strcmp(lua_tostring(L, -1), "tcp-req") == 0) |
| 7722 | tcp_req_cont_keywords_register(akl); |
| 7723 | else if (strcmp(lua_tostring(L, -1), "tcp-res") == 0) |
| 7724 | tcp_res_cont_keywords_register(akl); |
| 7725 | else if (strcmp(lua_tostring(L, -1), "http-req") == 0) |
| 7726 | http_req_keywords_register(akl); |
| 7727 | else if (strcmp(lua_tostring(L, -1), "http-res") == 0) |
| 7728 | http_res_keywords_register(akl); |
| 7729 | else |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 7730 | WILL_LJMP(luaL_error(L, "Lua action environment '%s' is unknown. " |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7731 | "'tcp-req', 'tcp-res', 'http-req' or 'http-res' " |
| 7732 | "are expected.", lua_tostring(L, -1))); |
| 7733 | |
| 7734 | /* pop the environment string. */ |
| 7735 | lua_pop(L, 1); |
| 7736 | } |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7737 | return ACT_RET_PRS_OK; |
| 7738 | } |
| 7739 | |
| 7740 | static enum act_parse_ret action_register_service_tcp(const char **args, int *cur_arg, struct proxy *px, |
| 7741 | struct act_rule *rule, char **err) |
| 7742 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 7743 | struct hlua_function *fcn = rule->kw->private; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7744 | |
Christopher Faulet | 280f85b | 2019-07-15 15:02:04 +0200 | [diff] [blame] | 7745 | if (px->mode == PR_MODE_HTTP) { |
| 7746 | memprintf(err, "Lua TCP services cannot be used on HTTP proxies"); |
Christopher Faulet | afd8f10 | 2018-11-08 11:34:21 +0100 | [diff] [blame] | 7747 | return ACT_RET_PRS_ERR; |
| 7748 | } |
| 7749 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7750 | /* Memory for the rule. */ |
| 7751 | rule->arg.hlua_rule = calloc(1, sizeof(*rule->arg.hlua_rule)); |
| 7752 | if (!rule->arg.hlua_rule) { |
| 7753 | memprintf(err, "out of memory error"); |
| 7754 | return ACT_RET_PRS_ERR; |
| 7755 | } |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7756 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7757 | /* Reference the Lua function and store the reference. */ |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7758 | rule->arg.hlua_rule->fcn = fcn; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7759 | |
| 7760 | /* TODO: later accept arguments. */ |
| 7761 | rule->arg.hlua_rule->args = NULL; |
| 7762 | |
| 7763 | /* Add applet pointer in the rule. */ |
| 7764 | rule->applet.obj_type = OBJ_TYPE_APPLET; |
| 7765 | rule->applet.name = fcn->name; |
| 7766 | rule->applet.init = hlua_applet_tcp_init; |
| 7767 | rule->applet.fct = hlua_applet_tcp_fct; |
| 7768 | rule->applet.release = hlua_applet_tcp_release; |
| 7769 | rule->applet.timeout = hlua_timeout_applet; |
| 7770 | |
| 7771 | return 0; |
| 7772 | } |
| 7773 | |
| 7774 | /* This function is an LUA binding used for registering |
| 7775 | * "sample-conv" functions. It expects a converter name used |
| 7776 | * in the haproxy configuration file, and an LUA function. |
| 7777 | */ |
| 7778 | __LJMP static int hlua_register_service(lua_State *L) |
| 7779 | { |
| 7780 | struct action_kw_list *akl; |
| 7781 | const char *name; |
| 7782 | const char *env; |
| 7783 | int ref; |
| 7784 | int len; |
| 7785 | struct hlua_function *fcn; |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 7786 | struct buffer *trash; |
| 7787 | struct action_kw *akw; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7788 | |
| 7789 | MAY_LJMP(check_args(L, 3, "register_service")); |
| 7790 | |
| 7791 | /* First argument : converter name. */ |
| 7792 | name = MAY_LJMP(luaL_checkstring(L, 1)); |
| 7793 | |
| 7794 | /* Second argument : environment. */ |
| 7795 | env = MAY_LJMP(luaL_checkstring(L, 2)); |
| 7796 | |
| 7797 | /* Third argument : lua function. */ |
| 7798 | ref = MAY_LJMP(hlua_checkfunction(L, 3)); |
| 7799 | |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 7800 | /* Check for service already registered */ |
| 7801 | trash = get_trash_chunk(); |
| 7802 | chunk_printf(trash, "lua.%s", name); |
| 7803 | akw = service_find(trash->area); |
| 7804 | if (akw != NULL) { |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 7805 | fcn = akw->private; |
| 7806 | if (fcn->function_ref[hlua_state_id] != -1) { |
| 7807 | ha_warning("Trying to register service 'lua.%s' more than once. " |
| 7808 | "This will become a hard error in version 2.5.\n", name); |
| 7809 | } |
| 7810 | fcn->function_ref[hlua_state_id] = ref; |
| 7811 | return 0; |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 7812 | } |
| 7813 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7814 | /* Allocate and fill the sample fetch keyword struct. */ |
| 7815 | akl = calloc(1, sizeof(*akl) + sizeof(struct action_kw) * 2); |
| 7816 | if (!akl) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 7817 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry Fournier | 62a22aa | 2020-11-28 21:06:35 +0100 | [diff] [blame] | 7818 | fcn = new_hlua_function(); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7819 | if (!fcn) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 7820 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7821 | |
| 7822 | /* Fill fcn. */ |
| 7823 | len = strlen("<lua.>") + strlen(name) + 1; |
| 7824 | fcn->name = calloc(1, len); |
| 7825 | if (!fcn->name) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 7826 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7827 | snprintf((char *)fcn->name, len, "<lua.%s>", name); |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 7828 | fcn->function_ref[hlua_state_id] = ref; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7829 | |
| 7830 | /* List head */ |
| 7831 | akl->list.n = akl->list.p = NULL; |
| 7832 | |
| 7833 | /* converter keyword. */ |
| 7834 | len = strlen("lua.") + strlen(name) + 1; |
| 7835 | akl->kw[0].kw = calloc(1, len); |
| 7836 | if (!akl->kw[0].kw) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 7837 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7838 | |
| 7839 | snprintf((char *)akl->kw[0].kw, len, "lua.%s", name); |
| 7840 | |
Thierry FOURNIER / OZON.IO | 02564fd | 2016-11-12 11:07:05 +0100 | [diff] [blame] | 7841 | /* Check required environment. Only accepted "http" or "tcp". */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7842 | if (strcmp(env, "tcp") == 0) |
| 7843 | akl->kw[0].parse = action_register_service_tcp; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7844 | else if (strcmp(env, "http") == 0) |
| 7845 | akl->kw[0].parse = action_register_service_http; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7846 | else |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 7847 | WILL_LJMP(luaL_error(L, "Lua service environment '%s' is unknown. " |
Eric Salama | fe7456f | 2017-12-21 14:30:07 +0100 | [diff] [blame] | 7848 | "'tcp' or 'http' are expected.", env)); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7849 | |
| 7850 | akl->kw[0].match_pfx = 0; |
| 7851 | akl->kw[0].private = fcn; |
| 7852 | |
| 7853 | /* End of array. */ |
| 7854 | memset(&akl->kw[1], 0, sizeof(*akl->kw)); |
| 7855 | |
| 7856 | /* Register this new converter */ |
| 7857 | service_keywords_register(akl); |
| 7858 | |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7859 | return 0; |
| 7860 | } |
| 7861 | |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7862 | /* This function initialises Lua cli handler. It copies the |
| 7863 | * arguments in the Lua stack and create channel IO objects. |
| 7864 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 7865 | 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] | 7866 | { |
| 7867 | struct hlua *hlua; |
| 7868 | struct hlua_function *fcn; |
| 7869 | int i; |
| 7870 | const char *error; |
| 7871 | |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7872 | fcn = private; |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7873 | appctx->ctx.hlua_cli.fcn = private; |
| 7874 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 7875 | hlua = pool_alloc(pool_head_hlua); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7876 | if (!hlua) { |
| 7877 | SEND_ERR(NULL, "Lua cli '%s': out of memory.\n", fcn->name); |
Thierry FOURNIER | 1be3415 | 2016-12-17 12:09:51 +0100 | [diff] [blame] | 7878 | return 1; |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7879 | } |
| 7880 | HLUA_INIT(hlua); |
| 7881 | appctx->ctx.hlua_cli.hlua = hlua; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7882 | |
| 7883 | /* Create task used by signal to wakeup applets. |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 7884 | * We use the same wakeup function than the Lua applet_tcp and |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7885 | * applet_http. It is absolutely compatible. |
| 7886 | */ |
Willy Tarreau | 5f4a47b | 2017-10-31 15:59:32 +0100 | [diff] [blame] | 7887 | appctx->ctx.hlua_cli.task = task_new(tid_bit); |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7888 | if (!appctx->ctx.hlua_cli.task) { |
Thierry FOURNIER | ffbf569 | 2016-12-16 11:14:06 +0100 | [diff] [blame] | 7889 | SEND_ERR(NULL, "Lua cli '%s': out of memory.\n", fcn->name); |
Thierry FOURNIER | 1be3415 | 2016-12-17 12:09:51 +0100 | [diff] [blame] | 7890 | goto error; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7891 | } |
| 7892 | appctx->ctx.hlua_cli.task->nice = 0; |
| 7893 | appctx->ctx.hlua_cli.task->context = appctx; |
| 7894 | appctx->ctx.hlua_cli.task->process = hlua_applet_wakeup; |
| 7895 | |
| 7896 | /* Initialises the Lua context */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 7897 | if (!hlua_ctx_init(hlua, fcn_ref_to_stack_id(fcn), appctx->ctx.hlua_cli.task, 0)) { |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7898 | 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] | 7899 | goto error; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7900 | } |
| 7901 | |
| 7902 | /* The following Lua calls can fail. */ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 7903 | if (!SET_SAFE_LJMP(hlua)) { |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7904 | if (lua_type(hlua->T, -1) == LUA_TSTRING) |
| 7905 | error = lua_tostring(hlua->T, -1); |
| 7906 | else |
| 7907 | error = "critical error"; |
| 7908 | SEND_ERR(NULL, "Lua cli '%s': %s.\n", fcn->name, error); |
| 7909 | goto error; |
| 7910 | } |
| 7911 | |
| 7912 | /* Check stack available size. */ |
| 7913 | if (!lua_checkstack(hlua->T, 2)) { |
| 7914 | SEND_ERR(NULL, "Lua cli '%s': full stack.\n", fcn->name); |
| 7915 | goto error; |
| 7916 | } |
| 7917 | |
| 7918 | /* Restore the function in the stack. */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 7919 | lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, fcn->function_ref[hlua->state_id]); |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7920 | |
| 7921 | /* Once the arguments parsed, the CLI is like an AppletTCP, |
| 7922 | * so push AppletTCP in the stack. |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7923 | */ |
| 7924 | if (!hlua_applet_tcp_new(hlua->T, appctx)) { |
| 7925 | SEND_ERR(NULL, "Lua cli '%s': full stack.\n", fcn->name); |
| 7926 | goto error; |
| 7927 | } |
| 7928 | hlua->nargs = 1; |
| 7929 | |
| 7930 | /* push keywords in the stack. */ |
| 7931 | for (i = 0; *args[i]; i++) { |
| 7932 | /* Check stack available size. */ |
| 7933 | if (!lua_checkstack(hlua->T, 1)) { |
| 7934 | SEND_ERR(NULL, "Lua cli '%s': full stack.\n", fcn->name); |
| 7935 | goto error; |
| 7936 | } |
| 7937 | lua_pushstring(hlua->T, args[i]); |
| 7938 | hlua->nargs++; |
| 7939 | } |
| 7940 | |
| 7941 | /* We must initialize the execution timeouts. */ |
| 7942 | hlua->max_time = hlua_timeout_session; |
| 7943 | |
| 7944 | /* At this point the execution is safe. */ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 7945 | RESET_SAFE_LJMP(hlua); |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7946 | |
| 7947 | /* It's ok */ |
| 7948 | return 0; |
| 7949 | |
| 7950 | /* It's not ok. */ |
| 7951 | error: |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 7952 | RESET_SAFE_LJMP(hlua); |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7953 | hlua_ctx_destroy(hlua); |
Thierry FOURNIER | 1be3415 | 2016-12-17 12:09:51 +0100 | [diff] [blame] | 7954 | appctx->ctx.hlua_cli.hlua = NULL; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7955 | return 1; |
| 7956 | } |
| 7957 | |
| 7958 | static int hlua_cli_io_handler_fct(struct appctx *appctx) |
| 7959 | { |
| 7960 | struct hlua *hlua; |
| 7961 | struct stream_interface *si; |
| 7962 | struct hlua_function *fcn; |
| 7963 | |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7964 | hlua = appctx->ctx.hlua_cli.hlua; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7965 | si = appctx->owner; |
Willy Tarreau | 8ae4f75 | 2016-12-14 15:41:45 +0100 | [diff] [blame] | 7966 | fcn = appctx->ctx.hlua_cli.fcn; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7967 | |
| 7968 | /* If the stream is disconnect or closed, ldo nothing. */ |
| 7969 | if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) |
| 7970 | return 1; |
| 7971 | |
| 7972 | /* Execute the function. */ |
| 7973 | switch (hlua_ctx_resume(hlua, 1)) { |
| 7974 | |
| 7975 | /* finished. */ |
| 7976 | case HLUA_E_OK: |
| 7977 | return 1; |
| 7978 | |
| 7979 | /* yield. */ |
| 7980 | case HLUA_E_AGAIN: |
| 7981 | /* We want write. */ |
| 7982 | if (HLUA_IS_WAKERESWR(hlua)) |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 7983 | si_rx_room_blk(si); |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7984 | /* Set the timeout. */ |
| 7985 | if (hlua->wake_time != TICK_ETERNITY) |
| 7986 | task_schedule(hlua->task, hlua->wake_time); |
| 7987 | return 0; |
| 7988 | |
| 7989 | /* finished with error. */ |
| 7990 | case HLUA_E_ERRMSG: |
| 7991 | /* Display log. */ |
| 7992 | SEND_ERR(NULL, "Lua cli '%s': %s.\n", |
| 7993 | fcn->name, lua_tostring(hlua->T, -1)); |
| 7994 | lua_pop(hlua->T, 1); |
| 7995 | return 1; |
| 7996 | |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 7997 | case HLUA_E_ETMOUT: |
| 7998 | SEND_ERR(NULL, "Lua converter '%s': execution timeout.\n", |
| 7999 | fcn->name); |
| 8000 | return 1; |
| 8001 | |
| 8002 | case HLUA_E_NOMEM: |
| 8003 | SEND_ERR(NULL, "Lua converter '%s': out of memory error.\n", |
| 8004 | fcn->name); |
| 8005 | return 1; |
| 8006 | |
| 8007 | case HLUA_E_YIELD: /* unexpected */ |
| 8008 | SEND_ERR(NULL, "Lua converter '%s': yield not allowed.\n", |
| 8009 | fcn->name); |
| 8010 | return 1; |
| 8011 | |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 8012 | case HLUA_E_ERR: |
| 8013 | /* Display log. */ |
| 8014 | SEND_ERR(NULL, "Lua cli '%s' return an unknown error.\n", |
| 8015 | fcn->name); |
| 8016 | return 1; |
| 8017 | |
| 8018 | default: |
| 8019 | return 1; |
| 8020 | } |
| 8021 | |
| 8022 | return 1; |
| 8023 | } |
| 8024 | |
| 8025 | static void hlua_cli_io_release_fct(struct appctx *appctx) |
| 8026 | { |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 8027 | hlua_ctx_destroy(appctx->ctx.hlua_cli.hlua); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 8028 | appctx->ctx.hlua_cli.hlua = NULL; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 8029 | } |
| 8030 | |
| 8031 | /* This function is an LUA binding used for registering |
| 8032 | * new keywords in the cli. It expects a list of keywords |
| 8033 | * which are the "path". It is limited to 5 keywords. A |
| 8034 | * description of the command, a function to be executed |
| 8035 | * for the parsing and a function for io handlers. |
| 8036 | */ |
| 8037 | __LJMP static int hlua_register_cli(lua_State *L) |
| 8038 | { |
| 8039 | struct cli_kw_list *cli_kws; |
| 8040 | const char *message; |
| 8041 | int ref_io; |
| 8042 | int len; |
| 8043 | struct hlua_function *fcn; |
| 8044 | int index; |
| 8045 | int i; |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 8046 | struct buffer *trash; |
| 8047 | const char *kw[5]; |
| 8048 | struct cli_kw *cli_kw; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 8049 | |
| 8050 | MAY_LJMP(check_args(L, 3, "register_cli")); |
| 8051 | |
| 8052 | /* First argument : an array of maximum 5 keywords. */ |
| 8053 | if (!lua_istable(L, 1)) |
| 8054 | WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table")); |
| 8055 | |
| 8056 | /* Second argument : string with contextual message. */ |
| 8057 | message = MAY_LJMP(luaL_checkstring(L, 2)); |
| 8058 | |
| 8059 | /* Third and fourth argument : lua function. */ |
| 8060 | ref_io = MAY_LJMP(hlua_checkfunction(L, 3)); |
| 8061 | |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 8062 | /* Check for CLI service already registered */ |
| 8063 | trash = get_trash_chunk(); |
| 8064 | index = 0; |
| 8065 | lua_pushnil(L); |
| 8066 | memset(kw, 0, sizeof(kw)); |
| 8067 | while (lua_next(L, 1) != 0) { |
| 8068 | if (index >= CLI_PREFIX_KW_NB) |
| 8069 | WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table with a maximum of 5 entries")); |
| 8070 | if (lua_type(L, -1) != LUA_TSTRING) |
| 8071 | WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table filled with strings")); |
| 8072 | kw[index] = lua_tostring(L, -1); |
| 8073 | if (index == 0) |
| 8074 | chunk_printf(trash, "%s", kw[index]); |
| 8075 | else |
| 8076 | chunk_appendf(trash, " %s", kw[index]); |
| 8077 | index++; |
| 8078 | lua_pop(L, 1); |
| 8079 | } |
| 8080 | cli_kw = cli_find_kw_exact((char **)kw); |
| 8081 | if (cli_kw != NULL) { |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 8082 | fcn = cli_kw->private; |
| 8083 | if (fcn->function_ref[hlua_state_id] != -1) { |
| 8084 | ha_warning("Trying to register CLI keyword 'lua.%s' more than once. " |
| 8085 | "This will become a hard error in version 2.5.\n", trash->area); |
| 8086 | } |
| 8087 | fcn->function_ref[hlua_state_id] = ref_io; |
| 8088 | return 0; |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 8089 | } |
| 8090 | |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 8091 | /* Allocate and fill the sample fetch keyword struct. */ |
| 8092 | cli_kws = calloc(1, sizeof(*cli_kws) + sizeof(struct cli_kw) * 2); |
| 8093 | if (!cli_kws) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 8094 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry Fournier | 62a22aa | 2020-11-28 21:06:35 +0100 | [diff] [blame] | 8095 | fcn = new_hlua_function(); |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 8096 | if (!fcn) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 8097 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 8098 | |
| 8099 | /* Fill path. */ |
| 8100 | index = 0; |
| 8101 | lua_pushnil(L); |
| 8102 | while(lua_next(L, 1) != 0) { |
| 8103 | if (index >= 5) |
| 8104 | WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table with a maximum of 5 entries")); |
| 8105 | if (lua_type(L, -1) != LUA_TSTRING) |
| 8106 | WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table filled with strings")); |
| 8107 | cli_kws->kw[0].str_kw[index] = strdup(lua_tostring(L, -1)); |
| 8108 | if (!cli_kws->kw[0].str_kw[index]) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 8109 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 8110 | index++; |
| 8111 | lua_pop(L, 1); |
| 8112 | } |
| 8113 | |
| 8114 | /* Copy help message. */ |
| 8115 | cli_kws->kw[0].usage = strdup(message); |
| 8116 | if (!cli_kws->kw[0].usage) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 8117 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 8118 | |
| 8119 | /* Fill fcn io handler. */ |
| 8120 | len = strlen("<lua.cli>") + 1; |
| 8121 | for (i = 0; i < index; i++) |
| 8122 | len += strlen(cli_kws->kw[0].str_kw[i]) + 1; |
| 8123 | fcn->name = calloc(1, len); |
| 8124 | if (!fcn->name) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 8125 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 8126 | strncat((char *)fcn->name, "<lua.cli", len); |
| 8127 | for (i = 0; i < index; i++) { |
| 8128 | strncat((char *)fcn->name, ".", len); |
| 8129 | strncat((char *)fcn->name, cli_kws->kw[0].str_kw[i], len); |
| 8130 | } |
| 8131 | strncat((char *)fcn->name, ">", len); |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 8132 | fcn->function_ref[hlua_state_id] = ref_io; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 8133 | |
| 8134 | /* Fill last entries. */ |
| 8135 | cli_kws->kw[0].private = fcn; |
| 8136 | cli_kws->kw[0].parse = hlua_cli_parse_fct; |
| 8137 | cli_kws->kw[0].io_handler = hlua_cli_io_handler_fct; |
| 8138 | cli_kws->kw[0].io_release = hlua_cli_io_release_fct; |
| 8139 | |
| 8140 | /* Register this new converter */ |
| 8141 | cli_register_kw(cli_kws); |
| 8142 | |
| 8143 | return 0; |
| 8144 | } |
| 8145 | |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 8146 | static int hlua_read_timeout(char **args, int section_type, struct proxy *curpx, |
| 8147 | struct proxy *defpx, const char *file, int line, |
| 8148 | char **err, unsigned int *timeout) |
| 8149 | { |
| 8150 | const char *error; |
| 8151 | |
| 8152 | error = parse_time_err(args[1], timeout, TIME_UNIT_MS); |
Willy Tarreau | 9faebe3 | 2019-06-07 19:00:37 +0200 | [diff] [blame] | 8153 | if (error == PARSE_TIME_OVER) { |
| 8154 | memprintf(err, "timer overflow in argument <%s> to <%s> (maximum value is 2147483647 ms or ~24.8 days)", |
| 8155 | args[1], args[0]); |
| 8156 | return -1; |
| 8157 | } |
| 8158 | else if (error == PARSE_TIME_UNDER) { |
| 8159 | memprintf(err, "timer underflow in argument <%s> to <%s> (minimum non-null value is 1 ms)", |
| 8160 | args[1], args[0]); |
| 8161 | return -1; |
| 8162 | } |
| 8163 | else if (error) { |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 8164 | memprintf(err, "%s: invalid timeout", args[0]); |
| 8165 | return -1; |
| 8166 | } |
| 8167 | return 0; |
| 8168 | } |
| 8169 | |
| 8170 | static int hlua_session_timeout(char **args, int section_type, struct proxy *curpx, |
| 8171 | struct proxy *defpx, const char *file, int line, |
| 8172 | char **err) |
| 8173 | { |
| 8174 | return hlua_read_timeout(args, section_type, curpx, defpx, |
| 8175 | file, line, err, &hlua_timeout_session); |
| 8176 | } |
| 8177 | |
| 8178 | static int hlua_task_timeout(char **args, int section_type, struct proxy *curpx, |
| 8179 | struct proxy *defpx, const char *file, int line, |
| 8180 | char **err) |
| 8181 | { |
| 8182 | return hlua_read_timeout(args, section_type, curpx, defpx, |
| 8183 | file, line, err, &hlua_timeout_task); |
| 8184 | } |
| 8185 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 8186 | static int hlua_applet_timeout(char **args, int section_type, struct proxy *curpx, |
| 8187 | struct proxy *defpx, const char *file, int line, |
| 8188 | char **err) |
| 8189 | { |
| 8190 | return hlua_read_timeout(args, section_type, curpx, defpx, |
| 8191 | file, line, err, &hlua_timeout_applet); |
| 8192 | } |
| 8193 | |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 8194 | static int hlua_forced_yield(char **args, int section_type, struct proxy *curpx, |
| 8195 | struct proxy *defpx, const char *file, int line, |
| 8196 | char **err) |
| 8197 | { |
| 8198 | char *error; |
| 8199 | |
| 8200 | hlua_nb_instruction = strtoll(args[1], &error, 10); |
| 8201 | if (*error != '\0') { |
| 8202 | memprintf(err, "%s: invalid number", args[0]); |
| 8203 | return -1; |
| 8204 | } |
| 8205 | return 0; |
| 8206 | } |
| 8207 | |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 8208 | static int hlua_parse_maxmem(char **args, int section_type, struct proxy *curpx, |
| 8209 | struct proxy *defpx, const char *file, int line, |
| 8210 | char **err) |
| 8211 | { |
| 8212 | char *error; |
| 8213 | |
| 8214 | if (*(args[1]) == 0) { |
| 8215 | memprintf(err, "'%s' expects an integer argument (Lua memory size in MB).\n", args[0]); |
| 8216 | return -1; |
| 8217 | } |
| 8218 | hlua_global_allocator.limit = strtoll(args[1], &error, 10) * 1024L * 1024L; |
| 8219 | if (*error != '\0') { |
| 8220 | memprintf(err, "%s: invalid number %s (error at '%c')", args[0], args[1], *error); |
| 8221 | return -1; |
| 8222 | } |
| 8223 | return 0; |
| 8224 | } |
| 8225 | |
| 8226 | |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 8227 | /* This function is called by the main configuration key "lua-load". It loads and |
| 8228 | * execute an lua file during the parsing of the HAProxy configuration file. It is |
| 8229 | * the main lua entry point. |
| 8230 | * |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 8231 | * This function runs with the HAProxy keywords API. It returns -1 if an error |
| 8232 | * occurs, otherwise it returns 0. |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 8233 | * |
| 8234 | * In some error case, LUA set an error message in top of the stack. This function |
| 8235 | * 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] | 8236 | * |
| 8237 | * This function can fail with an abort() due to an Lua critical error. |
| 8238 | * We are in the configuration parsing process of HAProxy, this abort() is |
| 8239 | * tolerated. |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 8240 | */ |
Thierry Fournier | c93c15c | 2020-11-28 15:02:13 +0100 | [diff] [blame] | 8241 | static int hlua_load_state(char *filename, lua_State *L, char **err) |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 8242 | { |
| 8243 | int error; |
| 8244 | |
| 8245 | /* Just load and compile the file. */ |
Thierry Fournier | c93c15c | 2020-11-28 15:02:13 +0100 | [diff] [blame] | 8246 | error = luaL_loadfile(L, filename); |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 8247 | if (error) { |
Thierry Fournier | c93c15c | 2020-11-28 15:02:13 +0100 | [diff] [blame] | 8248 | memprintf(err, "error in Lua file '%s': %s", filename, lua_tostring(L, -1)); |
| 8249 | lua_pop(L, 1); |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 8250 | return -1; |
| 8251 | } |
| 8252 | |
| 8253 | /* If no syntax error where detected, execute the code. */ |
Thierry Fournier | c93c15c | 2020-11-28 15:02:13 +0100 | [diff] [blame] | 8254 | error = lua_pcall(L, 0, LUA_MULTRET, 0); |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 8255 | switch (error) { |
| 8256 | case LUA_OK: |
| 8257 | break; |
| 8258 | case LUA_ERRRUN: |
Thierry Fournier | c93c15c | 2020-11-28 15:02:13 +0100 | [diff] [blame] | 8259 | memprintf(err, "Lua runtime error: %s\n", lua_tostring(L, -1)); |
| 8260 | lua_pop(L, 1); |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 8261 | return -1; |
| 8262 | case LUA_ERRMEM: |
Thierry Fournier | de6145f | 2020-11-29 00:55:53 +0100 | [diff] [blame] | 8263 | memprintf(err, "Lua out of memory error\n"); |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 8264 | return -1; |
| 8265 | case LUA_ERRERR: |
Thierry Fournier | c93c15c | 2020-11-28 15:02:13 +0100 | [diff] [blame] | 8266 | memprintf(err, "Lua message handler error: %s\n", lua_tostring(L, -1)); |
| 8267 | lua_pop(L, 1); |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 8268 | return -1; |
Christopher Faulet | 08ed98f | 2020-07-28 10:33:25 +0200 | [diff] [blame] | 8269 | #if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM <= 503 |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 8270 | case LUA_ERRGCMM: |
Thierry Fournier | c93c15c | 2020-11-28 15:02:13 +0100 | [diff] [blame] | 8271 | memprintf(err, "Lua garbage collector error: %s\n", lua_tostring(L, -1)); |
| 8272 | lua_pop(L, 1); |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 8273 | return -1; |
Christopher Faulet | 08ed98f | 2020-07-28 10:33:25 +0200 | [diff] [blame] | 8274 | #endif |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 8275 | default: |
Thierry Fournier | c93c15c | 2020-11-28 15:02:13 +0100 | [diff] [blame] | 8276 | memprintf(err, "Lua unknown error: %s\n", lua_tostring(L, -1)); |
| 8277 | lua_pop(L, 1); |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 8278 | return -1; |
| 8279 | } |
| 8280 | |
| 8281 | return 0; |
| 8282 | } |
| 8283 | |
Thierry Fournier | c93c15c | 2020-11-28 15:02:13 +0100 | [diff] [blame] | 8284 | static int hlua_load(char **args, int section_type, struct proxy *curpx, |
| 8285 | struct proxy *defpx, const char *file, int line, |
| 8286 | char **err) |
| 8287 | { |
| 8288 | if (*(args[1]) == 0) { |
| 8289 | memprintf(err, "'%s' expects a file name as parameter.\n", args[0]); |
| 8290 | return -1; |
| 8291 | } |
| 8292 | |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 8293 | /* loading for global state */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 8294 | hlua_state_id = 0; |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 8295 | ha_set_tid(0); |
Thierry Fournier | afc63e2 | 2020-11-28 17:06:51 +0100 | [diff] [blame] | 8296 | return hlua_load_state(args[1], hlua_states[0], err); |
Thierry Fournier | c93c15c | 2020-11-28 15:02:13 +0100 | [diff] [blame] | 8297 | } |
| 8298 | |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 8299 | static int hlua_load_per_thread(char **args, int section_type, struct proxy *curpx, |
| 8300 | struct proxy *defpx, const char *file, int line, |
| 8301 | char **err) |
| 8302 | { |
| 8303 | int len; |
| 8304 | |
| 8305 | if (*(args[1]) == 0) { |
| 8306 | memprintf(err, "'%s' expects a file as parameter.\n", args[0]); |
| 8307 | return -1; |
| 8308 | } |
| 8309 | |
| 8310 | if (per_thread_load == NULL) { |
| 8311 | /* allocate the first entry large enough to store the final NULL */ |
| 8312 | per_thread_load = calloc(1, sizeof(*per_thread_load)); |
| 8313 | if (per_thread_load == NULL) { |
| 8314 | memprintf(err, "out of memory error"); |
| 8315 | return -1; |
| 8316 | } |
| 8317 | } |
| 8318 | |
| 8319 | /* count used entries */ |
| 8320 | for (len = 0; per_thread_load[len] != NULL; len++) |
| 8321 | ; |
| 8322 | |
| 8323 | per_thread_load = realloc(per_thread_load, (len + 2) * sizeof(*per_thread_load)); |
| 8324 | if (per_thread_load == NULL) { |
| 8325 | memprintf(err, "out of memory error"); |
| 8326 | return -1; |
| 8327 | } |
| 8328 | |
| 8329 | per_thread_load[len] = strdup(args[1]); |
| 8330 | per_thread_load[len + 1] = NULL; |
| 8331 | |
| 8332 | if (per_thread_load[len] == NULL) { |
| 8333 | memprintf(err, "out of memory error"); |
| 8334 | return -1; |
| 8335 | } |
| 8336 | |
| 8337 | /* loading for thread 1 only */ |
| 8338 | hlua_state_id = 1; |
| 8339 | ha_set_tid(0); |
| 8340 | return hlua_load_state(args[1], hlua_states[1], err); |
| 8341 | } |
| 8342 | |
Tim Duesterhus | c9fc9f2 | 2020-01-12 13:55:39 +0100 | [diff] [blame] | 8343 | /* Prepend the given <path> followed by a semicolon to the `package.<type>` variable |
| 8344 | * in the given <ctx>. |
| 8345 | */ |
Thierry Fournier | 3fb9e51 | 2020-11-28 10:13:12 +0100 | [diff] [blame] | 8346 | static int hlua_prepend_path(lua_State *L, char *type, char *path) |
Tim Duesterhus | c9fc9f2 | 2020-01-12 13:55:39 +0100 | [diff] [blame] | 8347 | { |
Thierry Fournier | 3fb9e51 | 2020-11-28 10:13:12 +0100 | [diff] [blame] | 8348 | lua_getglobal(L, "package"); /* push package variable */ |
| 8349 | lua_pushstring(L, path); /* push given path */ |
| 8350 | lua_pushstring(L, ";"); /* push semicolon */ |
| 8351 | lua_getfield(L, -3, type); /* push old path */ |
| 8352 | lua_concat(L, 3); /* concatenate to new path */ |
| 8353 | lua_setfield(L, -2, type); /* store new path */ |
| 8354 | lua_pop(L, 1); /* pop package variable */ |
Tim Duesterhus | c9fc9f2 | 2020-01-12 13:55:39 +0100 | [diff] [blame] | 8355 | |
| 8356 | return 0; |
| 8357 | } |
| 8358 | |
Tim Duesterhus | dd74b5f | 2020-01-12 13:55:40 +0100 | [diff] [blame] | 8359 | static int hlua_config_prepend_path(char **args, int section_type, struct proxy *curpx, |
| 8360 | struct proxy *defpx, const char *file, int line, |
| 8361 | char **err) |
| 8362 | { |
| 8363 | char *path; |
| 8364 | char *type = "path"; |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 8365 | struct prepend_path *p; |
| 8366 | |
Tim Duesterhus | dd74b5f | 2020-01-12 13:55:40 +0100 | [diff] [blame] | 8367 | if (too_many_args(2, args, err, NULL)) { |
| 8368 | return -1; |
| 8369 | } |
| 8370 | |
| 8371 | if (!(*args[1])) { |
| 8372 | memprintf(err, "'%s' expects to receive a <path> as argument", args[0]); |
| 8373 | return -1; |
| 8374 | } |
| 8375 | path = args[1]; |
| 8376 | |
| 8377 | if (*args[2]) { |
| 8378 | if (strcmp(args[2], "path") != 0 && strcmp(args[2], "cpath") != 0) { |
| 8379 | memprintf(err, "'%s' expects <type> to either be 'path' or 'cpath'", args[0]); |
| 8380 | return -1; |
| 8381 | } |
| 8382 | type = args[2]; |
| 8383 | } |
| 8384 | |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 8385 | p = calloc(1, sizeof(*p)); |
| 8386 | if (p == NULL) { |
| 8387 | memprintf(err, "out of memory error"); |
| 8388 | return -1; |
| 8389 | } |
| 8390 | p->path = strdup(path); |
| 8391 | if (p->path == NULL) { |
| 8392 | memprintf(err, "out of memory error"); |
| 8393 | return -1; |
| 8394 | } |
| 8395 | p->type = strdup(type); |
| 8396 | if (p->type == NULL) { |
| 8397 | memprintf(err, "out of memory error"); |
| 8398 | return -1; |
| 8399 | } |
| 8400 | LIST_ADDQ(&prepend_path_list, &p->l); |
| 8401 | |
| 8402 | hlua_prepend_path(hlua_states[0], type, path); |
| 8403 | hlua_prepend_path(hlua_states[1], type, path); |
| 8404 | return 0; |
Tim Duesterhus | dd74b5f | 2020-01-12 13:55:40 +0100 | [diff] [blame] | 8405 | } |
| 8406 | |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 8407 | /* configuration keywords declaration */ |
| 8408 | static struct cfg_kw_list cfg_kws = {{ },{ |
Tim Duesterhus | dd74b5f | 2020-01-12 13:55:40 +0100 | [diff] [blame] | 8409 | { CFG_GLOBAL, "lua-prepend-path", hlua_config_prepend_path }, |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 8410 | { CFG_GLOBAL, "lua-load", hlua_load }, |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 8411 | { CFG_GLOBAL, "lua-load-per-thread", hlua_load_per_thread }, |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 8412 | { CFG_GLOBAL, "tune.lua.session-timeout", hlua_session_timeout }, |
| 8413 | { CFG_GLOBAL, "tune.lua.task-timeout", hlua_task_timeout }, |
Thierry FOURNIER | 56da101 | 2015-10-01 08:42:31 +0200 | [diff] [blame] | 8414 | { CFG_GLOBAL, "tune.lua.service-timeout", hlua_applet_timeout }, |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 8415 | { CFG_GLOBAL, "tune.lua.forced-yield", hlua_forced_yield }, |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 8416 | { CFG_GLOBAL, "tune.lua.maxmem", hlua_parse_maxmem }, |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 8417 | { 0, NULL, NULL }, |
| 8418 | }}; |
| 8419 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 8420 | INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws); |
| 8421 | |
Christopher Faulet | afd8f10 | 2018-11-08 11:34:21 +0100 | [diff] [blame] | 8422 | |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 8423 | /* This function can fail with an abort() due to an Lua critical error. |
| 8424 | * We are in the initialisation process of HAProxy, this abort() is |
| 8425 | * tolerated. |
| 8426 | */ |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 8427 | int hlua_post_init_state(lua_State *L) |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 8428 | { |
| 8429 | struct hlua_init_function *init; |
| 8430 | const char *msg; |
| 8431 | enum hlua_exec ret; |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 8432 | const char *error; |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 8433 | const char *kind; |
| 8434 | const char *trace; |
| 8435 | int return_status = 1; |
| 8436 | #if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504 |
| 8437 | int nres; |
| 8438 | #endif |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 8439 | |
Willy Tarreau | cdb5346 | 2020-12-02 12:12:00 +0100 | [diff] [blame] | 8440 | /* disable memory limit checks if limit is not set */ |
| 8441 | if (!hlua_global_allocator.limit) |
| 8442 | hlua_global_allocator.limit = ~hlua_global_allocator.limit; |
| 8443 | |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 8444 | /* Call post initialisation function in safe environment. */ |
Thierry Fournier | 3c53932 | 2020-11-28 16:05:05 +0100 | [diff] [blame] | 8445 | if (setjmp(safe_ljmp_env) != 0) { |
| 8446 | lua_atpanic(L, hlua_panic_safe); |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 8447 | if (lua_type(L, -1) == LUA_TSTRING) |
| 8448 | error = lua_tostring(L, -1); |
Thierry Fournier | 3d4a675 | 2016-02-19 20:53:30 +0100 | [diff] [blame] | 8449 | else |
| 8450 | error = "critical error"; |
| 8451 | fprintf(stderr, "Lua post-init: %s.\n", error); |
| 8452 | exit(1); |
Thierry Fournier | 3c53932 | 2020-11-28 16:05:05 +0100 | [diff] [blame] | 8453 | } else { |
| 8454 | lua_atpanic(L, hlua_panic_ljmp); |
Thierry Fournier | 3d4a675 | 2016-02-19 20:53:30 +0100 | [diff] [blame] | 8455 | } |
Frédéric Lécaille | 54f2bcf | 2018-08-29 13:46:24 +0200 | [diff] [blame] | 8456 | |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 8457 | hlua_fcn_post_init(L); |
Thierry Fournier | 3d4a675 | 2016-02-19 20:53:30 +0100 | [diff] [blame] | 8458 | |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 8459 | list_for_each_entry(init, &hlua_init_functions[hlua_state_id], l) { |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 8460 | lua_rawgeti(L, LUA_REGISTRYINDEX, init->function_ref); |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 8461 | |
| 8462 | #if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504 |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 8463 | ret = lua_resume(L, L, 0, &nres); |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 8464 | #else |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 8465 | ret = lua_resume(L, L, 0); |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 8466 | #endif |
| 8467 | kind = NULL; |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 8468 | switch (ret) { |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 8469 | |
| 8470 | case LUA_OK: |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 8471 | lua_pop(L, -1); |
Thierry Fournier | 13d08b7 | 2020-11-28 11:02:58 +0100 | [diff] [blame] | 8472 | break; |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 8473 | |
| 8474 | case LUA_ERRERR: |
| 8475 | kind = "message handler error"; |
| 8476 | /* Fall thru */ |
| 8477 | case LUA_ERRRUN: |
| 8478 | if (!kind) |
| 8479 | kind = "runtime error"; |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 8480 | msg = lua_tostring(L, -1); |
| 8481 | lua_settop(L, 0); /* Empty the stack. */ |
| 8482 | lua_pop(L, 1); |
| 8483 | trace = hlua_traceback(L); |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 8484 | if (msg) |
| 8485 | ha_alert("Lua init: %s: '%s' from %s\n", kind, msg, trace); |
| 8486 | else |
| 8487 | ha_alert("Lua init: unknown %s from %s\n", kind, trace); |
| 8488 | return_status = 0; |
| 8489 | break; |
| 8490 | |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 8491 | default: |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 8492 | /* Unknown error */ |
| 8493 | kind = "Unknown error"; |
| 8494 | /* Fall thru */ |
| 8495 | case LUA_YIELD: |
| 8496 | /* yield is not configured at this step, this state doesn't happen */ |
| 8497 | if (!kind) |
| 8498 | kind = "yield not allowed"; |
| 8499 | /* Fall thru */ |
| 8500 | case LUA_ERRMEM: |
| 8501 | if (!kind) |
| 8502 | kind = "out of memory error"; |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 8503 | lua_settop(L, 0); |
| 8504 | lua_pop(L, 1); |
| 8505 | trace = hlua_traceback(L); |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 8506 | ha_alert("Lua init: %s: %s\n", kind, trace); |
| 8507 | return_status = 0; |
| 8508 | break; |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 8509 | } |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 8510 | if (!return_status) |
| 8511 | break; |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 8512 | } |
Thierry Fournier | 3c53932 | 2020-11-28 16:05:05 +0100 | [diff] [blame] | 8513 | |
| 8514 | lua_atpanic(L, hlua_panic_safe); |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 8515 | return return_status; |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 8516 | } |
| 8517 | |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 8518 | int hlua_post_init() |
| 8519 | { |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 8520 | int ret; |
| 8521 | int i; |
| 8522 | int errors; |
| 8523 | char *err = NULL; |
| 8524 | struct hlua_function *fcn; |
| 8525 | |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 8526 | #if USE_OPENSSL |
| 8527 | /* Initialize SSL server. */ |
| 8528 | if (socket_ssl.xprt->prepare_srv) { |
| 8529 | int saved_used_backed = global.ssl_used_backend; |
| 8530 | // don't affect maxconn automatic computation |
| 8531 | socket_ssl.xprt->prepare_srv(&socket_ssl); |
| 8532 | global.ssl_used_backend = saved_used_backed; |
| 8533 | } |
| 8534 | #endif |
| 8535 | |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 8536 | /* Perform post init of common thread */ |
| 8537 | hlua_state_id = 0; |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 8538 | ha_set_tid(0); |
| 8539 | ret = hlua_post_init_state(hlua_states[hlua_state_id]); |
| 8540 | if (ret == 0) |
| 8541 | return 0; |
| 8542 | |
| 8543 | /* init remaining lua states and load files */ |
| 8544 | for (hlua_state_id = 2; hlua_state_id < global.nbthread + 1; hlua_state_id++) { |
| 8545 | |
| 8546 | /* set thread context */ |
| 8547 | ha_set_tid(hlua_state_id - 1); |
| 8548 | |
| 8549 | /* Init lua state */ |
| 8550 | hlua_states[hlua_state_id] = hlua_init_state(hlua_state_id); |
| 8551 | |
| 8552 | /* Load lua files */ |
| 8553 | for (i = 0; per_thread_load && per_thread_load[i]; i++) { |
| 8554 | ret = hlua_load_state(per_thread_load[i], hlua_states[hlua_state_id], &err); |
| 8555 | if (ret != 0) { |
| 8556 | ha_alert("Lua init: %s\n", err); |
| 8557 | return 0; |
| 8558 | } |
| 8559 | } |
| 8560 | } |
| 8561 | |
| 8562 | /* Reset thread context */ |
| 8563 | ha_set_tid(0); |
| 8564 | |
| 8565 | /* Execute post init for all states */ |
| 8566 | for (hlua_state_id = 1; hlua_state_id < global.nbthread + 1; hlua_state_id++) { |
| 8567 | |
| 8568 | /* set thread context */ |
| 8569 | ha_set_tid(hlua_state_id - 1); |
| 8570 | |
| 8571 | /* run post init */ |
| 8572 | ret = hlua_post_init_state(hlua_states[hlua_state_id]); |
| 8573 | if (ret == 0) |
| 8574 | return 0; |
| 8575 | } |
| 8576 | |
| 8577 | /* Reset thread context */ |
| 8578 | ha_set_tid(0); |
| 8579 | |
| 8580 | /* control functions registering. Each function must have: |
| 8581 | * - only the function_ref[0] set positive and all other to -1 |
| 8582 | * - only the function_ref[0] set to -1 and all other positive |
| 8583 | * This ensure a same reference is not used both in shared |
| 8584 | * lua state and thread dedicated lua state. Note: is the case |
| 8585 | * reach, the shared state is prioritary, but the bug will be |
| 8586 | * complicated to found for the end user. |
| 8587 | */ |
| 8588 | errors = 0; |
| 8589 | list_for_each_entry(fcn, &referenced_functions, l) { |
| 8590 | ret = 0; |
| 8591 | for (i = 1; i < global.nbthread + 1; i++) { |
| 8592 | if (fcn->function_ref[i] == -1) |
| 8593 | ret--; |
| 8594 | else |
| 8595 | ret++; |
| 8596 | } |
| 8597 | if (abs(ret) != global.nbthread) { |
| 8598 | ha_alert("Lua function '%s' is not referenced in all thread. " |
| 8599 | "Expect function in all thread or in none thread.\n", fcn->name); |
| 8600 | errors++; |
| 8601 | continue; |
| 8602 | } |
| 8603 | |
| 8604 | if ((fcn->function_ref[0] == -1) == (ret < 0)) { |
| 8605 | ha_alert("Lua function '%s' is referenced both ins shared Lua context (throught lua-load) " |
| 8606 | "and per-thread Lua context (throught lua-load-per-thread). these two context " |
| 8607 | "exclusive.\n", fcn->name); |
| 8608 | errors++; |
| 8609 | } |
| 8610 | } |
| 8611 | |
| 8612 | if (errors > 0) |
| 8613 | return 0; |
| 8614 | |
| 8615 | /* after this point, this global wil no longer used, so set to |
| 8616 | * -1 in order to have probably a segfault if someone use it |
| 8617 | */ |
| 8618 | hlua_state_id = -1; |
| 8619 | |
| 8620 | return 1; |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 8621 | } |
| 8622 | |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 8623 | /* The memory allocator used by the Lua stack. <ud> is a pointer to the |
| 8624 | * allocator's context. <ptr> is the pointer to alloc/free/realloc. <osize> |
| 8625 | * is the previously allocated size or the kind of object in case of a new |
Willy Tarreau | d36c7fa | 2020-12-02 12:26:29 +0100 | [diff] [blame] | 8626 | * allocation. <nsize> is the requested new size. A new allocation is |
| 8627 | * indicated by <ptr> being NULL. A free is indicated by <nsize> being |
Willy Tarreau | cdb5346 | 2020-12-02 12:12:00 +0100 | [diff] [blame] | 8628 | * zero. This one verifies that the limits are respected but is optimized |
| 8629 | * for the fast case where limits are not used, hence stats are not updated. |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 8630 | */ |
| 8631 | static void *hlua_alloc(void *ud, void *ptr, size_t osize, size_t nsize) |
| 8632 | { |
| 8633 | struct hlua_mem_allocator *zone = ud; |
Willy Tarreau | cdb5346 | 2020-12-02 12:12:00 +0100 | [diff] [blame] | 8634 | size_t limit, old, new; |
| 8635 | |
| 8636 | /* a limit of ~0 means unlimited and boot complete, so there's no need |
| 8637 | * for accounting anymore. |
| 8638 | */ |
| 8639 | if (likely(~zone->limit == 0)) |
| 8640 | return realloc(ptr, nsize); |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 8641 | |
Willy Tarreau | d36c7fa | 2020-12-02 12:26:29 +0100 | [diff] [blame] | 8642 | if (!ptr) |
| 8643 | osize = 0; |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 8644 | |
Willy Tarreau | cdb5346 | 2020-12-02 12:12:00 +0100 | [diff] [blame] | 8645 | /* enforce strict limits across all threads */ |
| 8646 | limit = zone->limit; |
| 8647 | old = _HA_ATOMIC_LOAD(&zone->allocated); |
| 8648 | do { |
| 8649 | new = old + nsize - osize; |
| 8650 | if (unlikely(nsize && limit && new > limit)) |
| 8651 | return NULL; |
| 8652 | } while (!_HA_ATOMIC_CAS(&zone->allocated, &old, new)); |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 8653 | |
| 8654 | ptr = realloc(ptr, nsize); |
Willy Tarreau | cdb5346 | 2020-12-02 12:12:00 +0100 | [diff] [blame] | 8655 | |
| 8656 | if (unlikely(!ptr && nsize)) // failed |
| 8657 | _HA_ATOMIC_SUB(&zone->allocated, nsize - osize); |
| 8658 | |
| 8659 | __ha_barrier_atomic_store(); |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 8660 | return ptr; |
| 8661 | } |
| 8662 | |
Thierry Fournier | ecb83c2 | 2020-11-28 15:49:44 +0100 | [diff] [blame] | 8663 | /* This function can fail with an abort() due to a Lua critical error. |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 8664 | * We are in the initialisation process of HAProxy, this abort() is |
| 8665 | * tolerated. |
| 8666 | */ |
Thierry Fournier | ecb83c2 | 2020-11-28 15:49:44 +0100 | [diff] [blame] | 8667 | lua_State *hlua_init_state(int thread_num) |
Thierry FOURNIER | 6f1fd48 | 2015-01-23 14:06:13 +0100 | [diff] [blame] | 8668 | { |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 8669 | int i; |
Thierry FOURNIER | d0fa538 | 2015-02-16 20:14:51 +0100 | [diff] [blame] | 8670 | int idx; |
| 8671 | struct sample_fetch *sf; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 8672 | struct sample_conv *sc; |
Thierry FOURNIER | d0fa538 | 2015-02-16 20:14:51 +0100 | [diff] [blame] | 8673 | char *p; |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 8674 | const char *error_msg; |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 8675 | void **context; |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8676 | lua_State *L; |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 8677 | struct prepend_path *pp; |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 8678 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 8679 | /* Init main lua stack. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8680 | L = lua_newstate(hlua_alloc, &hlua_global_allocator); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 8681 | |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 8682 | /* Initialise Lua context to NULL */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8683 | context = lua_getextraspace(L); |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 8684 | *context = NULL; |
| 8685 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 8686 | /* From this point, until the end of the initialisation function, |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 8687 | * the Lua function can fail with an abort. We are in the initialisation |
| 8688 | * process of HAProxy, this abort() is tolerated. |
| 8689 | */ |
| 8690 | |
Thierry Fournier | 3c53932 | 2020-11-28 16:05:05 +0100 | [diff] [blame] | 8691 | /* Call post initialisation function in safe environment. */ |
| 8692 | if (setjmp(safe_ljmp_env) != 0) { |
| 8693 | lua_atpanic(L, hlua_panic_safe); |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8694 | if (lua_type(L, -1) == LUA_TSTRING) |
| 8695 | error_msg = lua_tostring(L, -1); |
Thierry Fournier | 2f05cc6 | 2020-11-28 16:08:02 +0100 | [diff] [blame] | 8696 | else |
| 8697 | error_msg = "critical error"; |
| 8698 | fprintf(stderr, "Lua init: %s.\n", error_msg); |
| 8699 | exit(1); |
Thierry Fournier | 3c53932 | 2020-11-28 16:05:05 +0100 | [diff] [blame] | 8700 | } else { |
| 8701 | lua_atpanic(L, hlua_panic_ljmp); |
Thierry Fournier | 2f05cc6 | 2020-11-28 16:08:02 +0100 | [diff] [blame] | 8702 | } |
| 8703 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 8704 | /* Initialise lua. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8705 | luaL_openlibs(L); |
Tim Duesterhus | 541fe1e | 2020-01-12 13:55:41 +0100 | [diff] [blame] | 8706 | #define HLUA_PREPEND_PATH_TOSTRING1(x) #x |
| 8707 | #define HLUA_PREPEND_PATH_TOSTRING(x) HLUA_PREPEND_PATH_TOSTRING1(x) |
| 8708 | #ifdef HLUA_PREPEND_PATH |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8709 | hlua_prepend_path(L, "path", HLUA_PREPEND_PATH_TOSTRING(HLUA_PREPEND_PATH)); |
Tim Duesterhus | 541fe1e | 2020-01-12 13:55:41 +0100 | [diff] [blame] | 8710 | #endif |
| 8711 | #ifdef HLUA_PREPEND_CPATH |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8712 | hlua_prepend_path(L, "cpath", HLUA_PREPEND_PATH_TOSTRING(HLUA_PREPEND_CPATH)); |
Tim Duesterhus | 541fe1e | 2020-01-12 13:55:41 +0100 | [diff] [blame] | 8713 | #endif |
| 8714 | #undef HLUA_PREPEND_PATH_TOSTRING |
| 8715 | #undef HLUA_PREPEND_PATH_TOSTRING1 |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 8716 | |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 8717 | /* Apply configured prepend path */ |
| 8718 | list_for_each_entry(pp, &prepend_path_list, l) |
| 8719 | hlua_prepend_path(L, pp->type, pp->path); |
| 8720 | |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 8721 | /* |
| 8722 | * |
| 8723 | * Create "core" object. |
| 8724 | * |
| 8725 | */ |
| 8726 | |
Thierry FOURNIER | a2d8c65 | 2015-03-11 17:29:39 +0100 | [diff] [blame] | 8727 | /* This table entry is the object "core" base. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8728 | lua_newtable(L); |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 8729 | |
Thierry Fournier | ecb83c2 | 2020-11-28 15:49:44 +0100 | [diff] [blame] | 8730 | /* set the thread id */ |
| 8731 | hlua_class_const_int(L, "thread", thread_num); |
| 8732 | |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 8733 | /* Push the loglevel constants. */ |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 8734 | for (i = 0; i < NB_LOG_LEVELS; i++) |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8735 | hlua_class_const_int(L, log_levels[i], i); |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 8736 | |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 8737 | /* Register special functions. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8738 | hlua_class_function(L, "register_init", hlua_register_init); |
| 8739 | hlua_class_function(L, "register_task", hlua_register_task); |
| 8740 | hlua_class_function(L, "register_fetches", hlua_register_fetches); |
| 8741 | hlua_class_function(L, "register_converters", hlua_register_converters); |
| 8742 | hlua_class_function(L, "register_action", hlua_register_action); |
| 8743 | hlua_class_function(L, "register_service", hlua_register_service); |
| 8744 | hlua_class_function(L, "register_cli", hlua_register_cli); |
| 8745 | hlua_class_function(L, "yield", hlua_yield); |
| 8746 | hlua_class_function(L, "set_nice", hlua_set_nice); |
| 8747 | hlua_class_function(L, "sleep", hlua_sleep); |
| 8748 | hlua_class_function(L, "msleep", hlua_msleep); |
| 8749 | hlua_class_function(L, "add_acl", hlua_add_acl); |
| 8750 | hlua_class_function(L, "del_acl", hlua_del_acl); |
| 8751 | hlua_class_function(L, "set_map", hlua_set_map); |
| 8752 | hlua_class_function(L, "del_map", hlua_del_map); |
| 8753 | hlua_class_function(L, "tcp", hlua_socket_new); |
| 8754 | hlua_class_function(L, "log", hlua_log); |
| 8755 | hlua_class_function(L, "Debug", hlua_log_debug); |
| 8756 | hlua_class_function(L, "Info", hlua_log_info); |
| 8757 | hlua_class_function(L, "Warning", hlua_log_warning); |
| 8758 | hlua_class_function(L, "Alert", hlua_log_alert); |
| 8759 | hlua_class_function(L, "done", hlua_done); |
| 8760 | hlua_fcn_reg_core_fcn(L); |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 8761 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8762 | lua_setglobal(L, "core"); |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 8763 | |
| 8764 | /* |
| 8765 | * |
Christopher Faulet | 0f3c890 | 2020-01-31 18:57:12 +0100 | [diff] [blame] | 8766 | * Create "act" object. |
| 8767 | * |
| 8768 | */ |
| 8769 | |
| 8770 | /* This table entry is the object "act" base. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8771 | lua_newtable(L); |
Christopher Faulet | 0f3c890 | 2020-01-31 18:57:12 +0100 | [diff] [blame] | 8772 | |
| 8773 | /* push action return constants */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8774 | hlua_class_const_int(L, "CONTINUE", ACT_RET_CONT); |
| 8775 | hlua_class_const_int(L, "STOP", ACT_RET_STOP); |
| 8776 | hlua_class_const_int(L, "YIELD", ACT_RET_YIELD); |
| 8777 | hlua_class_const_int(L, "ERROR", ACT_RET_ERR); |
| 8778 | hlua_class_const_int(L, "DONE", ACT_RET_DONE); |
| 8779 | hlua_class_const_int(L, "DENY", ACT_RET_DENY); |
| 8780 | hlua_class_const_int(L, "ABORT", ACT_RET_ABRT); |
| 8781 | hlua_class_const_int(L, "INVALID", ACT_RET_INV); |
Christopher Faulet | 0f3c890 | 2020-01-31 18:57:12 +0100 | [diff] [blame] | 8782 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8783 | hlua_class_function(L, "wake_time", hlua_set_wake_time); |
Christopher Faulet | 2c2c2e3 | 2020-01-31 19:07:52 +0100 | [diff] [blame] | 8784 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8785 | lua_setglobal(L, "act"); |
Christopher Faulet | 0f3c890 | 2020-01-31 18:57:12 +0100 | [diff] [blame] | 8786 | |
| 8787 | /* |
| 8788 | * |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 8789 | * Register class Map |
| 8790 | * |
| 8791 | */ |
| 8792 | |
| 8793 | /* This table entry is the object "Map" base. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8794 | lua_newtable(L); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 8795 | |
| 8796 | /* register pattern types. */ |
| 8797 | for (i=0; i<PAT_MATCH_NUM; i++) |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8798 | hlua_class_const_int(L, pat_match_names[i], i); |
Thierry FOURNIER | 4dc7197 | 2017-01-28 08:33:08 +0100 | [diff] [blame] | 8799 | for (i=0; i<PAT_MATCH_NUM; i++) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 8800 | snprintf(trash.area, trash.size, "_%s", pat_match_names[i]); |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8801 | hlua_class_const_int(L, trash.area, i); |
Thierry FOURNIER | 4dc7197 | 2017-01-28 08:33:08 +0100 | [diff] [blame] | 8802 | } |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 8803 | |
| 8804 | /* register constructor. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8805 | hlua_class_function(L, "new", hlua_map_new); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 8806 | |
| 8807 | /* Create and fill the metatable. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8808 | lua_newtable(L); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 8809 | |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 8810 | /* Create and fill the __index entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8811 | lua_pushstring(L, "__index"); |
| 8812 | lua_newtable(L); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 8813 | |
| 8814 | /* Register . */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8815 | hlua_class_function(L, "lookup", hlua_map_lookup); |
| 8816 | hlua_class_function(L, "slookup", hlua_map_slookup); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 8817 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8818 | lua_rawset(L, -3); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 8819 | |
Thierry Fournier | 45e78d7 | 2016-02-19 18:34:46 +0100 | [diff] [blame] | 8820 | /* Register previous table in the registry with reference and named entry. |
| 8821 | * The function hlua_register_metatable() pops the stack, so we |
| 8822 | * previously create a copy of the table. |
| 8823 | */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8824 | lua_pushvalue(L, -1); /* Copy the -1 entry and push it on the stack. */ |
| 8825 | class_map_ref = hlua_register_metatable(L, CLASS_MAP); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 8826 | |
| 8827 | /* Assign the metatable to the mai Map object. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8828 | lua_setmetatable(L, -2); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 8829 | |
| 8830 | /* Set a name to the table. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8831 | lua_setglobal(L, "Map"); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 8832 | |
| 8833 | /* |
| 8834 | * |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 8835 | * Register class Channel |
| 8836 | * |
| 8837 | */ |
| 8838 | |
| 8839 | /* Create and fill the metatable. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8840 | lua_newtable(L); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 8841 | |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 8842 | /* Create and fill the __index entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8843 | lua_pushstring(L, "__index"); |
| 8844 | lua_newtable(L); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 8845 | |
| 8846 | /* Register . */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8847 | hlua_class_function(L, "get", hlua_channel_get); |
| 8848 | hlua_class_function(L, "dup", hlua_channel_dup); |
| 8849 | hlua_class_function(L, "getline", hlua_channel_getline); |
| 8850 | hlua_class_function(L, "set", hlua_channel_set); |
| 8851 | hlua_class_function(L, "append", hlua_channel_append); |
| 8852 | hlua_class_function(L, "send", hlua_channel_send); |
| 8853 | hlua_class_function(L, "forward", hlua_channel_forward); |
| 8854 | hlua_class_function(L, "get_in_len", hlua_channel_get_in_len); |
| 8855 | hlua_class_function(L, "get_out_len", hlua_channel_get_out_len); |
| 8856 | hlua_class_function(L, "is_full", hlua_channel_is_full); |
| 8857 | hlua_class_function(L, "is_resp", hlua_channel_is_resp); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 8858 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8859 | lua_rawset(L, -3); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 8860 | |
| 8861 | /* Register previous table in the registry with reference and named entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8862 | class_channel_ref = hlua_register_metatable(L, CLASS_CHANNEL); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 8863 | |
| 8864 | /* |
| 8865 | * |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 8866 | * Register class Fetches |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 8867 | * |
| 8868 | */ |
| 8869 | |
| 8870 | /* Create and fill the metatable. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8871 | lua_newtable(L); |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 8872 | |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 8873 | /* Create and fill the __index entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8874 | lua_pushstring(L, "__index"); |
| 8875 | lua_newtable(L); |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 8876 | |
Thierry FOURNIER | d0fa538 | 2015-02-16 20:14:51 +0100 | [diff] [blame] | 8877 | /* Browse existing fetches and create the associated |
| 8878 | * object method. |
| 8879 | */ |
| 8880 | sf = NULL; |
| 8881 | while ((sf = sample_fetch_getnext(sf, &idx)) != NULL) { |
Thierry FOURNIER | d0fa538 | 2015-02-16 20:14:51 +0100 | [diff] [blame] | 8882 | /* gL.Tua doesn't support '.' and '-' in the function names, replace it |
| 8883 | * by an underscore. |
| 8884 | */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 8885 | strncpy(trash.area, sf->kw, trash.size); |
| 8886 | trash.area[trash.size - 1] = '\0'; |
| 8887 | for (p = trash.area; *p; p++) |
Thierry FOURNIER | d0fa538 | 2015-02-16 20:14:51 +0100 | [diff] [blame] | 8888 | if (*p == '.' || *p == '-' || *p == '+') |
| 8889 | *p = '_'; |
| 8890 | |
| 8891 | /* Register the function. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8892 | lua_pushstring(L, trash.area); |
| 8893 | lua_pushlightuserdata(L, sf); |
| 8894 | lua_pushcclosure(L, hlua_run_sample_fetch, 1); |
| 8895 | lua_rawset(L, -3); |
Thierry FOURNIER | d0fa538 | 2015-02-16 20:14:51 +0100 | [diff] [blame] | 8896 | } |
| 8897 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8898 | lua_rawset(L, -3); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 8899 | |
| 8900 | /* Register previous table in the registry with reference and named entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8901 | class_fetches_ref = hlua_register_metatable(L, CLASS_FETCHES); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 8902 | |
| 8903 | /* |
| 8904 | * |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 8905 | * Register class Converters |
| 8906 | * |
| 8907 | */ |
| 8908 | |
| 8909 | /* Create and fill the metatable. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8910 | lua_newtable(L); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 8911 | |
| 8912 | /* Create and fill the __index entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8913 | lua_pushstring(L, "__index"); |
| 8914 | lua_newtable(L); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 8915 | |
| 8916 | /* Browse existing converters and create the associated |
| 8917 | * object method. |
| 8918 | */ |
| 8919 | sc = NULL; |
| 8920 | while ((sc = sample_conv_getnext(sc, &idx)) != NULL) { |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 8921 | /* gL.Tua doesn't support '.' and '-' in the function names, replace it |
| 8922 | * by an underscore. |
| 8923 | */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 8924 | strncpy(trash.area, sc->kw, trash.size); |
| 8925 | trash.area[trash.size - 1] = '\0'; |
| 8926 | for (p = trash.area; *p; p++) |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 8927 | if (*p == '.' || *p == '-' || *p == '+') |
| 8928 | *p = '_'; |
| 8929 | |
| 8930 | /* Register the function. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8931 | lua_pushstring(L, trash.area); |
| 8932 | lua_pushlightuserdata(L, sc); |
| 8933 | lua_pushcclosure(L, hlua_run_sample_conv, 1); |
| 8934 | lua_rawset(L, -3); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 8935 | } |
| 8936 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8937 | lua_rawset(L, -3); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 8938 | |
| 8939 | /* Register previous table in the registry with reference and named entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8940 | class_converters_ref = hlua_register_metatable(L, CLASS_CONVERTERS); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 8941 | |
| 8942 | /* |
| 8943 | * |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 8944 | * Register class HTTP |
| 8945 | * |
| 8946 | */ |
| 8947 | |
| 8948 | /* Create and fill the metatable. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8949 | lua_newtable(L); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 8950 | |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 8951 | /* Create and fill the __index entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8952 | lua_pushstring(L, "__index"); |
| 8953 | lua_newtable(L); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 8954 | |
| 8955 | /* Register Lua functions. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8956 | hlua_class_function(L, "req_get_headers",hlua_http_req_get_headers); |
| 8957 | hlua_class_function(L, "req_del_header", hlua_http_req_del_hdr); |
| 8958 | hlua_class_function(L, "req_rep_header", hlua_http_req_rep_hdr); |
| 8959 | hlua_class_function(L, "req_rep_value", hlua_http_req_rep_val); |
| 8960 | hlua_class_function(L, "req_add_header", hlua_http_req_add_hdr); |
| 8961 | hlua_class_function(L, "req_set_header", hlua_http_req_set_hdr); |
| 8962 | hlua_class_function(L, "req_set_method", hlua_http_req_set_meth); |
| 8963 | hlua_class_function(L, "req_set_path", hlua_http_req_set_path); |
| 8964 | hlua_class_function(L, "req_set_query", hlua_http_req_set_query); |
| 8965 | hlua_class_function(L, "req_set_uri", hlua_http_req_set_uri); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 8966 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8967 | hlua_class_function(L, "res_get_headers",hlua_http_res_get_headers); |
| 8968 | hlua_class_function(L, "res_del_header", hlua_http_res_del_hdr); |
| 8969 | hlua_class_function(L, "res_rep_header", hlua_http_res_rep_hdr); |
| 8970 | hlua_class_function(L, "res_rep_value", hlua_http_res_rep_val); |
| 8971 | hlua_class_function(L, "res_add_header", hlua_http_res_add_hdr); |
| 8972 | hlua_class_function(L, "res_set_header", hlua_http_res_set_hdr); |
| 8973 | hlua_class_function(L, "res_set_status", hlua_http_res_set_status); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 8974 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8975 | lua_rawset(L, -3); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 8976 | |
| 8977 | /* Register previous table in the registry with reference and named entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8978 | class_http_ref = hlua_register_metatable(L, CLASS_HTTP); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 8979 | |
| 8980 | /* |
| 8981 | * |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 8982 | * Register class AppletTCP |
| 8983 | * |
| 8984 | */ |
| 8985 | |
| 8986 | /* Create and fill the metatable. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8987 | lua_newtable(L); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 8988 | |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 8989 | /* Create and fill the __index entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8990 | lua_pushstring(L, "__index"); |
| 8991 | lua_newtable(L); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 8992 | |
| 8993 | /* Register Lua functions. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8994 | hlua_class_function(L, "getline", hlua_applet_tcp_getline); |
| 8995 | hlua_class_function(L, "receive", hlua_applet_tcp_recv); |
| 8996 | hlua_class_function(L, "send", hlua_applet_tcp_send); |
| 8997 | hlua_class_function(L, "set_priv", hlua_applet_tcp_set_priv); |
| 8998 | hlua_class_function(L, "get_priv", hlua_applet_tcp_get_priv); |
| 8999 | hlua_class_function(L, "set_var", hlua_applet_tcp_set_var); |
| 9000 | hlua_class_function(L, "unset_var", hlua_applet_tcp_unset_var); |
| 9001 | hlua_class_function(L, "get_var", hlua_applet_tcp_get_var); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9002 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9003 | lua_settable(L, -3); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9004 | |
| 9005 | /* Register previous table in the registry with reference and named entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9006 | class_applet_tcp_ref = hlua_register_metatable(L, CLASS_APPLET_TCP); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9007 | |
| 9008 | /* |
| 9009 | * |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9010 | * Register class AppletHTTP |
| 9011 | * |
| 9012 | */ |
| 9013 | |
| 9014 | /* Create and fill the metatable. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9015 | lua_newtable(L); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9016 | |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 9017 | /* Create and fill the __index entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9018 | lua_pushstring(L, "__index"); |
| 9019 | lua_newtable(L); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9020 | |
| 9021 | /* Register Lua functions. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9022 | hlua_class_function(L, "set_priv", hlua_applet_http_set_priv); |
| 9023 | hlua_class_function(L, "get_priv", hlua_applet_http_get_priv); |
| 9024 | hlua_class_function(L, "set_var", hlua_applet_http_set_var); |
| 9025 | hlua_class_function(L, "unset_var", hlua_applet_http_unset_var); |
| 9026 | hlua_class_function(L, "get_var", hlua_applet_http_get_var); |
| 9027 | hlua_class_function(L, "getline", hlua_applet_http_getline); |
| 9028 | hlua_class_function(L, "receive", hlua_applet_http_recv); |
| 9029 | hlua_class_function(L, "send", hlua_applet_http_send); |
| 9030 | hlua_class_function(L, "add_header", hlua_applet_http_addheader); |
| 9031 | hlua_class_function(L, "set_status", hlua_applet_http_status); |
| 9032 | hlua_class_function(L, "start_response", hlua_applet_http_start_response); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9033 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9034 | lua_settable(L, -3); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9035 | |
| 9036 | /* Register previous table in the registry with reference and named entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9037 | class_applet_http_ref = hlua_register_metatable(L, CLASS_APPLET_HTTP); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9038 | |
| 9039 | /* |
| 9040 | * |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 9041 | * Register class TXN |
| 9042 | * |
| 9043 | */ |
| 9044 | |
| 9045 | /* Create and fill the metatable. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9046 | lua_newtable(L); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 9047 | |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 9048 | /* Create and fill the __index entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9049 | lua_pushstring(L, "__index"); |
| 9050 | lua_newtable(L); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 9051 | |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 9052 | /* Register Lua functions. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9053 | hlua_class_function(L, "set_priv", hlua_set_priv); |
| 9054 | hlua_class_function(L, "get_priv", hlua_get_priv); |
| 9055 | hlua_class_function(L, "set_var", hlua_set_var); |
| 9056 | hlua_class_function(L, "unset_var", hlua_unset_var); |
| 9057 | hlua_class_function(L, "get_var", hlua_get_var); |
| 9058 | hlua_class_function(L, "done", hlua_txn_done); |
| 9059 | hlua_class_function(L, "reply", hlua_txn_reply_new); |
| 9060 | hlua_class_function(L, "set_loglevel", hlua_txn_set_loglevel); |
| 9061 | hlua_class_function(L, "set_tos", hlua_txn_set_tos); |
| 9062 | hlua_class_function(L, "set_mark", hlua_txn_set_mark); |
| 9063 | hlua_class_function(L, "set_priority_class", hlua_txn_set_priority_class); |
| 9064 | hlua_class_function(L, "set_priority_offset", hlua_txn_set_priority_offset); |
| 9065 | hlua_class_function(L, "deflog", hlua_txn_deflog); |
| 9066 | hlua_class_function(L, "log", hlua_txn_log); |
| 9067 | hlua_class_function(L, "Debug", hlua_txn_log_debug); |
| 9068 | hlua_class_function(L, "Info", hlua_txn_log_info); |
| 9069 | hlua_class_function(L, "Warning", hlua_txn_log_warning); |
| 9070 | hlua_class_function(L, "Alert", hlua_txn_log_alert); |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 9071 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9072 | lua_rawset(L, -3); |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 9073 | |
| 9074 | /* Register previous table in the registry with reference and named entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9075 | class_txn_ref = hlua_register_metatable(L, CLASS_TXN); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 9076 | |
| 9077 | /* |
| 9078 | * |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 9079 | * Register class reply |
| 9080 | * |
| 9081 | */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9082 | lua_newtable(L); |
| 9083 | lua_pushstring(L, "__index"); |
| 9084 | lua_newtable(L); |
| 9085 | hlua_class_function(L, "set_status", hlua_txn_reply_set_status); |
| 9086 | hlua_class_function(L, "add_header", hlua_txn_reply_add_header); |
| 9087 | hlua_class_function(L, "del_header", hlua_txn_reply_del_header); |
| 9088 | hlua_class_function(L, "set_body", hlua_txn_reply_set_body); |
| 9089 | lua_settable(L, -3); /* Sets the __index entry. */ |
| 9090 | class_txn_reply_ref = luaL_ref(L, LUA_REGISTRYINDEX); |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 9091 | |
| 9092 | |
| 9093 | /* |
| 9094 | * |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 9095 | * Register class Socket |
| 9096 | * |
| 9097 | */ |
| 9098 | |
| 9099 | /* Create and fill the metatable. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9100 | lua_newtable(L); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 9101 | |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 9102 | /* Create and fill the __index entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9103 | lua_pushstring(L, "__index"); |
| 9104 | lua_newtable(L); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 9105 | |
Baptiste Assmann | 84bb493 | 2015-03-02 21:40:06 +0100 | [diff] [blame] | 9106 | #ifdef USE_OPENSSL |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9107 | hlua_class_function(L, "connect_ssl", hlua_socket_connect_ssl); |
Baptiste Assmann | 84bb493 | 2015-03-02 21:40:06 +0100 | [diff] [blame] | 9108 | #endif |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9109 | hlua_class_function(L, "connect", hlua_socket_connect); |
| 9110 | hlua_class_function(L, "send", hlua_socket_send); |
| 9111 | hlua_class_function(L, "receive", hlua_socket_receive); |
| 9112 | hlua_class_function(L, "close", hlua_socket_close); |
| 9113 | hlua_class_function(L, "getpeername", hlua_socket_getpeername); |
| 9114 | hlua_class_function(L, "getsockname", hlua_socket_getsockname); |
| 9115 | hlua_class_function(L, "setoption", hlua_socket_setoption); |
| 9116 | hlua_class_function(L, "settimeout", hlua_socket_settimeout); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 9117 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9118 | lua_rawset(L, -3); /* Push the last 2 entries in the table at index -3 */ |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 9119 | |
| 9120 | /* Register the garbage collector entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9121 | lua_pushstring(L, "__gc"); |
| 9122 | lua_pushcclosure(L, hlua_socket_gc, 0); |
| 9123 | lua_rawset(L, -3); /* Push the last 2 entries in the table at index -3 */ |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 9124 | |
| 9125 | /* Register previous table in the registry with reference and named entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9126 | class_socket_ref = hlua_register_metatable(L, CLASS_SOCKET); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 9127 | |
Thierry Fournier | aafc777 | 2020-12-04 11:47:47 +0100 | [diff] [blame] | 9128 | lua_atpanic(L, hlua_panic_safe); |
| 9129 | |
| 9130 | return L; |
| 9131 | } |
| 9132 | |
| 9133 | void hlua_init(void) { |
| 9134 | int i; |
| 9135 | int idx; |
| 9136 | #ifdef USE_OPENSSL |
| 9137 | struct srv_kw *kw; |
| 9138 | int tmp_error; |
| 9139 | char *error; |
| 9140 | char *args[] = { /* SSL client configuration. */ |
| 9141 | "ssl", |
| 9142 | "verify", |
| 9143 | "none", |
| 9144 | NULL |
| 9145 | }; |
| 9146 | #endif |
| 9147 | |
| 9148 | /* Init post init function list head */ |
| 9149 | for (i = 0; i < MAX_THREADS + 1; i++) |
| 9150 | LIST_INIT(&hlua_init_functions[i]); |
| 9151 | |
| 9152 | /* Init state for common/shared lua parts */ |
| 9153 | hlua_state_id = 0; |
| 9154 | ha_set_tid(0); |
| 9155 | hlua_states[0] = hlua_init_state(0); |
| 9156 | |
| 9157 | /* Init state 1 for thread 0. We have at least one thread. */ |
| 9158 | hlua_state_id = 1; |
| 9159 | ha_set_tid(0); |
| 9160 | hlua_states[1] = hlua_init_state(1); |
| 9161 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 9162 | /* Proxy and server configuration initialisation. */ |
| 9163 | memset(&socket_proxy, 0, sizeof(socket_proxy)); |
| 9164 | init_new_proxy(&socket_proxy); |
| 9165 | socket_proxy.parent = NULL; |
| 9166 | socket_proxy.last_change = now.tv_sec; |
| 9167 | socket_proxy.id = "LUA-SOCKET"; |
| 9168 | socket_proxy.cap = PR_CAP_FE | PR_CAP_BE; |
| 9169 | socket_proxy.maxconn = 0; |
| 9170 | socket_proxy.accept = NULL; |
| 9171 | socket_proxy.options2 |= PR_O2_INDEPSTR; |
| 9172 | socket_proxy.srv = NULL; |
| 9173 | socket_proxy.conn_retries = 0; |
| 9174 | socket_proxy.timeout.connect = 5000; /* By default the timeout connection is 5s. */ |
| 9175 | |
| 9176 | /* Init TCP server: unchanged parameters */ |
| 9177 | memset(&socket_tcp, 0, sizeof(socket_tcp)); |
| 9178 | socket_tcp.next = NULL; |
| 9179 | socket_tcp.proxy = &socket_proxy; |
| 9180 | socket_tcp.obj_type = OBJ_TYPE_SERVER; |
| 9181 | LIST_INIT(&socket_tcp.actconns); |
Patrick Hemmer | 0355dab | 2018-05-11 12:52:31 -0400 | [diff] [blame] | 9182 | socket_tcp.pendconns = EB_ROOT; |
Christopher Faulet | 40a007c | 2017-07-03 15:41:01 +0200 | [diff] [blame] | 9183 | socket_tcp.idle_conns = NULL; |
| 9184 | socket_tcp.safe_conns = NULL; |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 9185 | socket_tcp.next_state = SRV_ST_RUNNING; /* early server setup */ |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 9186 | socket_tcp.last_change = 0; |
| 9187 | socket_tcp.id = "LUA-TCP-CONN"; |
| 9188 | socket_tcp.check.state &= ~CHK_ST_ENABLED; /* Disable health checks. */ |
| 9189 | socket_tcp.agent.state &= ~CHK_ST_ENABLED; /* Disable health checks. */ |
| 9190 | socket_tcp.pp_opts = 0; /* Remove proxy protocol. */ |
| 9191 | |
| 9192 | /* XXX: Copy default parameter from default server, |
| 9193 | * but the default server is not initialized. |
| 9194 | */ |
| 9195 | socket_tcp.maxqueue = socket_proxy.defsrv.maxqueue; |
| 9196 | socket_tcp.minconn = socket_proxy.defsrv.minconn; |
| 9197 | socket_tcp.maxconn = socket_proxy.defsrv.maxconn; |
| 9198 | socket_tcp.slowstart = socket_proxy.defsrv.slowstart; |
| 9199 | socket_tcp.onerror = socket_proxy.defsrv.onerror; |
| 9200 | socket_tcp.onmarkeddown = socket_proxy.defsrv.onmarkeddown; |
| 9201 | socket_tcp.onmarkedup = socket_proxy.defsrv.onmarkedup; |
| 9202 | socket_tcp.consecutive_errors_limit = socket_proxy.defsrv.consecutive_errors_limit; |
| 9203 | socket_tcp.uweight = socket_proxy.defsrv.iweight; |
| 9204 | socket_tcp.iweight = socket_proxy.defsrv.iweight; |
| 9205 | |
| 9206 | socket_tcp.check.status = HCHK_STATUS_INI; |
| 9207 | socket_tcp.check.rise = socket_proxy.defsrv.check.rise; |
| 9208 | socket_tcp.check.fall = socket_proxy.defsrv.check.fall; |
| 9209 | socket_tcp.check.health = socket_tcp.check.rise; /* socket, but will fall down at first failure */ |
| 9210 | socket_tcp.check.server = &socket_tcp; |
| 9211 | |
| 9212 | socket_tcp.agent.status = HCHK_STATUS_INI; |
| 9213 | socket_tcp.agent.rise = socket_proxy.defsrv.agent.rise; |
| 9214 | socket_tcp.agent.fall = socket_proxy.defsrv.agent.fall; |
| 9215 | socket_tcp.agent.health = socket_tcp.agent.rise; /* socket, but will fall down at first failure */ |
| 9216 | socket_tcp.agent.server = &socket_tcp; |
| 9217 | |
Willy Tarreau | a261e9b | 2016-12-22 20:44:00 +0100 | [diff] [blame] | 9218 | socket_tcp.xprt = xprt_get(XPRT_RAW); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 9219 | |
| 9220 | #ifdef USE_OPENSSL |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 9221 | /* Init TCP server: unchanged parameters */ |
| 9222 | memset(&socket_ssl, 0, sizeof(socket_ssl)); |
| 9223 | socket_ssl.next = NULL; |
| 9224 | socket_ssl.proxy = &socket_proxy; |
| 9225 | socket_ssl.obj_type = OBJ_TYPE_SERVER; |
| 9226 | LIST_INIT(&socket_ssl.actconns); |
Patrick Hemmer | 0355dab | 2018-05-11 12:52:31 -0400 | [diff] [blame] | 9227 | socket_ssl.pendconns = EB_ROOT; |
Willy Tarreau | b784b35 | 2019-02-07 14:48:24 +0100 | [diff] [blame] | 9228 | socket_ssl.idle_conns = NULL; |
| 9229 | socket_ssl.safe_conns = NULL; |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 9230 | socket_ssl.next_state = SRV_ST_RUNNING; /* early server setup */ |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 9231 | socket_ssl.last_change = 0; |
| 9232 | socket_ssl.id = "LUA-SSL-CONN"; |
| 9233 | socket_ssl.check.state &= ~CHK_ST_ENABLED; /* Disable health checks. */ |
| 9234 | socket_ssl.agent.state &= ~CHK_ST_ENABLED; /* Disable health checks. */ |
| 9235 | socket_ssl.pp_opts = 0; /* Remove proxy protocol. */ |
| 9236 | |
| 9237 | /* XXX: Copy default parameter from default server, |
| 9238 | * but the default server is not initialized. |
| 9239 | */ |
| 9240 | socket_ssl.maxqueue = socket_proxy.defsrv.maxqueue; |
| 9241 | socket_ssl.minconn = socket_proxy.defsrv.minconn; |
| 9242 | socket_ssl.maxconn = socket_proxy.defsrv.maxconn; |
| 9243 | socket_ssl.slowstart = socket_proxy.defsrv.slowstart; |
| 9244 | socket_ssl.onerror = socket_proxy.defsrv.onerror; |
| 9245 | socket_ssl.onmarkeddown = socket_proxy.defsrv.onmarkeddown; |
| 9246 | socket_ssl.onmarkedup = socket_proxy.defsrv.onmarkedup; |
| 9247 | socket_ssl.consecutive_errors_limit = socket_proxy.defsrv.consecutive_errors_limit; |
| 9248 | socket_ssl.uweight = socket_proxy.defsrv.iweight; |
| 9249 | socket_ssl.iweight = socket_proxy.defsrv.iweight; |
| 9250 | |
| 9251 | socket_ssl.check.status = HCHK_STATUS_INI; |
| 9252 | socket_ssl.check.rise = socket_proxy.defsrv.check.rise; |
| 9253 | socket_ssl.check.fall = socket_proxy.defsrv.check.fall; |
| 9254 | socket_ssl.check.health = socket_ssl.check.rise; /* socket, but will fall down at first failure */ |
| 9255 | socket_ssl.check.server = &socket_ssl; |
| 9256 | |
| 9257 | socket_ssl.agent.status = HCHK_STATUS_INI; |
| 9258 | socket_ssl.agent.rise = socket_proxy.defsrv.agent.rise; |
| 9259 | socket_ssl.agent.fall = socket_proxy.defsrv.agent.fall; |
| 9260 | socket_ssl.agent.health = socket_ssl.agent.rise; /* socket, but will fall down at first failure */ |
| 9261 | socket_ssl.agent.server = &socket_ssl; |
| 9262 | |
Thierry FOURNIER | 36d1374 | 2015-03-17 16:48:53 +0100 | [diff] [blame] | 9263 | socket_ssl.use_ssl = 1; |
Willy Tarreau | a261e9b | 2016-12-22 20:44:00 +0100 | [diff] [blame] | 9264 | socket_ssl.xprt = xprt_get(XPRT_SSL); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 9265 | |
Thierry FOURNIER | 36d1374 | 2015-03-17 16:48:53 +0100 | [diff] [blame] | 9266 | for (idx = 0; args[idx] != NULL; idx++) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 9267 | if ((kw = srv_find_kw(args[idx])) != NULL) { /* Maybe it's registered server keyword */ |
| 9268 | /* |
| 9269 | * |
| 9270 | * If the keyword is not known, we can search in the registered |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 9271 | * server keywords. This is useful to configure special SSL |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 9272 | * features like client certificates and ssl_verify. |
| 9273 | * |
| 9274 | */ |
| 9275 | tmp_error = kw->parse(args, &idx, &socket_proxy, &socket_ssl, &error); |
| 9276 | if (tmp_error != 0) { |
| 9277 | fprintf(stderr, "INTERNAL ERROR: %s\n", error); |
| 9278 | abort(); /* This must be never arrives because the command line |
| 9279 | not editable by the user. */ |
| 9280 | } |
| 9281 | idx += kw->skip; |
| 9282 | } |
| 9283 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 9284 | #endif |
Thierry Fournier | 75933d4 | 2016-01-21 09:30:18 +0100 | [diff] [blame] | 9285 | |
Thierry FOURNIER | 6f1fd48 | 2015-01-23 14:06:13 +0100 | [diff] [blame] | 9286 | } |
Willy Tarreau | bb57d94 | 2016-12-21 19:04:56 +0100 | [diff] [blame] | 9287 | |
Tim Duesterhus | d0c0ca2 | 2020-07-04 11:53:26 +0200 | [diff] [blame] | 9288 | static void hlua_deinit() |
| 9289 | { |
Willy Tarreau | 186f376 | 2020-12-04 11:48:12 +0100 | [diff] [blame] | 9290 | int thr; |
| 9291 | |
| 9292 | for (thr = 0; thr < MAX_THREADS+1; thr++) { |
| 9293 | if (hlua_states[thr]) |
| 9294 | lua_close(hlua_states[thr]); |
| 9295 | } |
Tim Duesterhus | d0c0ca2 | 2020-07-04 11:53:26 +0200 | [diff] [blame] | 9296 | } |
| 9297 | |
| 9298 | REGISTER_POST_DEINIT(hlua_deinit); |
| 9299 | |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 9300 | static void hlua_register_build_options(void) |
| 9301 | { |
Willy Tarreau | bb57d94 | 2016-12-21 19:04:56 +0100 | [diff] [blame] | 9302 | char *ptr = NULL; |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 9303 | |
Willy Tarreau | bb57d94 | 2016-12-21 19:04:56 +0100 | [diff] [blame] | 9304 | memprintf(&ptr, "Built with Lua version : %s", LUA_RELEASE); |
| 9305 | hap_register_build_opts(ptr, 1); |
| 9306 | } |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 9307 | |
| 9308 | INITCALL0(STG_REGISTER, hlua_register_build_options); |