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 | |
Bertrand Jacquin | f4c12d4 | 2021-01-21 21:14:07 +0000 | [diff] [blame] | 13 | #define _GNU_SOURCE |
| 14 | |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 15 | #include <ctype.h> |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 16 | #include <setjmp.h> |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 17 | |
Thierry FOURNIER | 6f1fd48 | 2015-01-23 14:06:13 +0100 | [diff] [blame] | 18 | #include <lauxlib.h> |
| 19 | #include <lua.h> |
| 20 | #include <lualib.h> |
| 21 | |
Thierry FOURNIER | 463119c | 2015-03-10 00:35:36 +0100 | [diff] [blame] | 22 | #if !defined(LUA_VERSION_NUM) || LUA_VERSION_NUM < 503 |
| 23 | #error "Requires Lua 5.3 or later." |
Cyril Bonté | dc0306e | 2015-03-02 00:08:40 +0100 | [diff] [blame] | 24 | #endif |
| 25 | |
Willy Tarreau | 8d2b777 | 2020-05-27 10:58:19 +0200 | [diff] [blame] | 26 | #include <import/ebpttree.h> |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 27 | |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 28 | #include <haproxy/api.h> |
| 29 | #include <haproxy/applet.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 30 | #include <haproxy/arg.h> |
Christopher Faulet | d25d926 | 2020-08-06 11:04:46 +0200 | [diff] [blame] | 31 | #include <haproxy/auth.h> |
Willy Tarreau | 6be7849 | 2020-06-05 00:00:29 +0200 | [diff] [blame] | 32 | #include <haproxy/cfgparse.h> |
Willy Tarreau | f1d32c4 | 2020-06-04 21:07:02 +0200 | [diff] [blame] | 33 | #include <haproxy/channel.h> |
Willy Tarreau | 83487a8 | 2020-06-04 20:19:54 +0200 | [diff] [blame] | 34 | #include <haproxy/cli.h> |
Willy Tarreau | 5554264 | 2021-10-08 09:33:24 +0200 | [diff] [blame] | 35 | #include <haproxy/clock.h> |
Willy Tarreau | 7ea393d | 2020-06-04 18:02:10 +0200 | [diff] [blame] | 36 | #include <haproxy/connection.h> |
Christopher Faulet | 69c581a | 2021-05-31 08:54:04 +0200 | [diff] [blame] | 37 | #include <haproxy/filters.h> |
Willy Tarreau | 5413a87 | 2020-06-02 19:33:08 +0200 | [diff] [blame] | 38 | #include <haproxy/h1.h> |
Willy Tarreau | 8641605 | 2020-06-04 09:20:54 +0200 | [diff] [blame] | 39 | #include <haproxy/hlua.h> |
Willy Tarreau | 8c79400 | 2020-06-04 10:05:25 +0200 | [diff] [blame] | 40 | #include <haproxy/hlua_fcn.h> |
Willy Tarreau | c2b1ff0 | 2020-06-04 21:21:03 +0200 | [diff] [blame] | 41 | #include <haproxy/http_ana.h> |
William Lallemand | 3956c4e | 2021-09-21 16:25:15 +0200 | [diff] [blame] | 42 | #include <haproxy/http_client.h> |
Willy Tarreau | 126ba3a | 2020-06-04 18:26:43 +0200 | [diff] [blame] | 43 | #include <haproxy/http_fetch.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 44 | #include <haproxy/http_htx.h> |
Willy Tarreau | c761f84 | 2020-06-04 11:40:28 +0200 | [diff] [blame] | 45 | #include <haproxy/http_rules.h> |
Willy Tarreau | 36979d9 | 2020-06-05 17:27:29 +0200 | [diff] [blame] | 46 | #include <haproxy/log.h> |
Willy Tarreau | 2cd5809 | 2020-06-04 15:10:43 +0200 | [diff] [blame] | 47 | #include <haproxy/map.h> |
Willy Tarreau | 8efbdfb | 2020-06-04 11:29:21 +0200 | [diff] [blame] | 48 | #include <haproxy/obj_type.h> |
Willy Tarreau | 225a90a | 2020-06-04 15:06:28 +0200 | [diff] [blame] | 49 | #include <haproxy/pattern.h> |
Willy Tarreau | 469509b | 2020-06-04 15:13:30 +0200 | [diff] [blame] | 50 | #include <haproxy/payload.h> |
Willy Tarreau | 3d6ee40 | 2021-05-08 20:28:07 +0200 | [diff] [blame] | 51 | #include <haproxy/proxy.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 52 | #include <haproxy/regex.h> |
Willy Tarreau | e6ce10b | 2020-06-04 15:33:47 +0200 | [diff] [blame] | 53 | #include <haproxy/sample.h> |
Willy Tarreau | 198e92a | 2021-03-05 10:23:32 +0100 | [diff] [blame] | 54 | #include <haproxy/server.h> |
Willy Tarreau | 48d25b3 | 2020-06-04 18:58:52 +0200 | [diff] [blame] | 55 | #include <haproxy/session.h> |
Willy Tarreau | 2eec9b5 | 2020-06-04 19:58:55 +0200 | [diff] [blame] | 56 | #include <haproxy/stats-t.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 57 | #include <haproxy/stream.h> |
Willy Tarreau | 5e539c9 | 2020-06-04 20:45:39 +0200 | [diff] [blame] | 58 | #include <haproxy/stream_interface.h> |
Willy Tarreau | cea0e1b | 2020-06-04 17:25:40 +0200 | [diff] [blame] | 59 | #include <haproxy/task.h> |
Willy Tarreau | 8b550af | 2020-06-04 17:42:48 +0200 | [diff] [blame] | 60 | #include <haproxy/tcp_rules.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 61 | #include <haproxy/thread.h> |
Willy Tarreau | 48fbcae | 2020-06-03 18:09:46 +0200 | [diff] [blame] | 62 | #include <haproxy/tools.h> |
Willy Tarreau | a171892 | 2020-06-04 16:25:31 +0200 | [diff] [blame] | 63 | #include <haproxy/vars.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 64 | #include <haproxy/xref.h> |
| 65 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 66 | |
Thierry FOURNIER | 6f1fd48 | 2015-01-23 14:06:13 +0100 | [diff] [blame] | 67 | /* Lua uses longjmp to perform yield or throwing errors. This |
| 68 | * macro is used only for identifying the function that can |
| 69 | * not return because a longjmp is executed. |
| 70 | * __LJMP marks a prototype of hlua file that can use longjmp. |
| 71 | * WILL_LJMP() marks an lua function that will use longjmp. |
| 72 | * MAY_LJMP() marks an lua function that may use longjmp. |
| 73 | */ |
| 74 | #define __LJMP |
Willy Tarreau | 4e7cc33 | 2018-10-20 17:45:48 +0200 | [diff] [blame] | 75 | #define WILL_LJMP(func) do { func; my_unreachable(); } while(0) |
Thierry FOURNIER | 6f1fd48 | 2015-01-23 14:06:13 +0100 | [diff] [blame] | 76 | #define MAY_LJMP(func) func |
| 77 | |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 78 | /* This couple of function executes securely some Lua calls outside of |
| 79 | * the lua runtime environment. Each Lua call can return a longjmp |
| 80 | * if it encounter a memory error. |
| 81 | * |
| 82 | * Lua documentation extract: |
| 83 | * |
| 84 | * If an error happens outside any protected environment, Lua calls |
| 85 | * a panic function (see lua_atpanic) and then calls abort, thus |
| 86 | * exiting the host application. Your panic function can avoid this |
| 87 | * exit by never returning (e.g., doing a long jump to your own |
| 88 | * recovery point outside Lua). |
| 89 | * |
| 90 | * The panic function runs as if it were a message handler (see |
| 91 | * §2.3); in particular, the error message is at the top of the |
| 92 | * stack. However, there is no guarantee about stack space. To push |
| 93 | * anything on the stack, the panic function must first check the |
| 94 | * available space (see §4.2). |
| 95 | * |
| 96 | * We must check all the Lua entry point. This includes: |
| 97 | * - The include/proto/hlua.h exported functions |
| 98 | * - the task wrapper function |
| 99 | * - The action wrapper function |
| 100 | * - The converters wrapper function |
| 101 | * - The sample-fetch wrapper functions |
| 102 | * |
Ilya Shipitsin | 46a030c | 2020-07-05 16:36:08 +0500 | [diff] [blame] | 103 | * It is tolerated that the initialisation function returns an abort. |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 104 | * Before each Lua abort, an error message is written on stderr. |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 105 | * |
| 106 | * The macro SET_SAFE_LJMP initialise the longjmp. The Macro |
| 107 | * RESET_SAFE_LJMP reset the longjmp. These function must be macro |
| 108 | * because they must be exists in the program stack when the longjmp |
| 109 | * is called. |
Thierry FOURNIER | 61ba0e2 | 2017-07-12 11:41:21 +0200 | [diff] [blame] | 110 | * |
| 111 | * Note that the Lua processing is not really thread safe. It provides |
| 112 | * heavy system which consists to add our own lock function in the Lua |
| 113 | * code and recompile the library. This system will probably not accepted |
| 114 | * by maintainers of various distribs. |
| 115 | * |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 116 | * 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] | 117 | * quick looking on the Lua sources displays a lua_lock() a the start |
| 118 | * of function and a lua_unlock() at the end of the function. So I |
| 119 | * conclude that the Lua thread safe mode just perform a mutex around |
| 120 | * all execution. So I prefer to do this in the HAProxy code, it will be |
| 121 | * easier for distro maintainers. |
| 122 | * |
| 123 | * Note that the HAProxy lua functions rounded by the macro SET_SAFE_LJMP |
| 124 | * and RESET_SAFE_LJMP manipulates the Lua stack, so it will be careful |
| 125 | * to set mutex around these functions. |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 126 | */ |
Willy Tarreau | 86abe44 | 2018-11-25 20:12:18 +0100 | [diff] [blame] | 127 | __decl_spinlock(hlua_global_lock); |
Thierry FOURNIER | ffbad79 | 2017-07-12 11:39:04 +0200 | [diff] [blame] | 128 | THREAD_LOCAL jmp_buf safe_ljmp_env; |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 129 | static int hlua_panic_safe(lua_State *L) { return 0; } |
Willy Tarreau | 6a51090 | 2021-07-14 19:41:25 +0200 | [diff] [blame] | 130 | static int hlua_panic_ljmp(lua_State *L) { WILL_LJMP(longjmp(safe_ljmp_env, 1)); return 0; } |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 131 | |
Thierry Fournier | 62a22aa | 2020-11-28 21:06:35 +0100 | [diff] [blame] | 132 | /* This is the chained list of struct hlua_function referenced |
| 133 | * for haproxy action, sample-fetches, converters, cli and |
| 134 | * applet bindings. It is used for a post-initialisation control. |
| 135 | */ |
| 136 | static struct list referenced_functions = LIST_HEAD_INIT(referenced_functions); |
| 137 | |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 138 | /* This variable is used only during initialization to identify the Lua state |
| 139 | * currently being initialized. 0 is the common lua state, 1 to n are the Lua |
| 140 | * states dedicated to each thread (in this case hlua_state_id==tid+1). |
| 141 | */ |
| 142 | static int hlua_state_id; |
| 143 | |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 144 | /* This is a NULL-terminated list of lua file which are referenced to load per thread */ |
| 145 | static char **per_thread_load = NULL; |
| 146 | |
| 147 | lua_State *hlua_init_state(int thread_id); |
| 148 | |
Willy Tarreau | 1e7bef1 | 2021-08-20 15:47:25 +0200 | [diff] [blame] | 149 | /* This function takes the Lua global lock. Keep this function's visibility |
| 150 | * global so that it can appear in stack dumps and performance profiles! |
| 151 | */ |
| 152 | void lua_take_global_lock() |
| 153 | { |
| 154 | HA_SPIN_LOCK(LUA_LOCK, &hlua_global_lock); |
| 155 | } |
| 156 | |
| 157 | static inline void lua_drop_global_lock() |
| 158 | { |
| 159 | HA_SPIN_UNLOCK(LUA_LOCK, &hlua_global_lock); |
| 160 | } |
| 161 | |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 162 | #define SET_SAFE_LJMP_L(__L, __HLUA) \ |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 163 | ({ \ |
| 164 | int ret; \ |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 165 | if ((__HLUA)->state_id == 0) \ |
Willy Tarreau | 1e7bef1 | 2021-08-20 15:47:25 +0200 | [diff] [blame] | 166 | lua_take_global_lock(); \ |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 167 | if (setjmp(safe_ljmp_env) != 0) { \ |
| 168 | lua_atpanic(__L, hlua_panic_safe); \ |
| 169 | ret = 0; \ |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 170 | if ((__HLUA)->state_id == 0) \ |
Willy Tarreau | 1e7bef1 | 2021-08-20 15:47:25 +0200 | [diff] [blame] | 171 | lua_drop_global_lock(); \ |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 172 | } else { \ |
| 173 | lua_atpanic(__L, hlua_panic_ljmp); \ |
| 174 | ret = 1; \ |
| 175 | } \ |
| 176 | ret; \ |
| 177 | }) |
| 178 | |
| 179 | /* If we are the last function catching Lua errors, we |
| 180 | * must reset the panic function. |
| 181 | */ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 182 | #define RESET_SAFE_LJMP_L(__L, __HLUA) \ |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 183 | do { \ |
| 184 | lua_atpanic(__L, hlua_panic_safe); \ |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 185 | if ((__HLUA)->state_id == 0) \ |
Willy Tarreau | 1e7bef1 | 2021-08-20 15:47:25 +0200 | [diff] [blame] | 186 | lua_drop_global_lock(); \ |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 187 | } while(0) |
| 188 | |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 189 | #define SET_SAFE_LJMP(__HLUA) \ |
| 190 | SET_SAFE_LJMP_L((__HLUA)->T, __HLUA) |
| 191 | |
| 192 | #define RESET_SAFE_LJMP(__HLUA) \ |
| 193 | RESET_SAFE_LJMP_L((__HLUA)->T, __HLUA) |
| 194 | |
| 195 | #define SET_SAFE_LJMP_PARENT(__HLUA) \ |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 196 | SET_SAFE_LJMP_L(hlua_states[(__HLUA)->state_id], __HLUA) |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 197 | |
| 198 | #define RESET_SAFE_LJMP_PARENT(__HLUA) \ |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 199 | RESET_SAFE_LJMP_L(hlua_states[(__HLUA)->state_id], __HLUA) |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 200 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 201 | /* Applet status flags */ |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 202 | #define APPLET_DONE 0x01 /* applet processing is done. */ |
Christopher Faulet | 18c2e8d | 2019-03-01 12:02:08 +0100 | [diff] [blame] | 203 | /* unused: 0x02 */ |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 204 | #define APPLET_HDR_SENT 0x04 /* Response header sent. */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 205 | /* unused: 0x08, 0x10 */ |
Thierry FOURNIER | d93ea2b | 2015-12-20 19:14:52 +0100 | [diff] [blame] | 206 | #define APPLET_HTTP11 0x20 /* Last chunk sent. */ |
Christopher Faulet | 56a3d6e | 2019-02-27 22:06:23 +0100 | [diff] [blame] | 207 | #define APPLET_RSP_SENT 0x40 /* The response was fully sent */ |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 208 | |
Thierry Fournier | afc63e2 | 2020-11-28 17:06:51 +0100 | [diff] [blame] | 209 | /* The main Lua execution context. The 0 index is the |
| 210 | * common state shared by all threads. |
| 211 | */ |
Willy Tarreau | 186f376 | 2020-12-04 11:48:12 +0100 | [diff] [blame] | 212 | static lua_State *hlua_states[MAX_THREADS + 1]; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 213 | |
Christopher Faulet | c404f11 | 2020-02-26 15:03:09 +0100 | [diff] [blame] | 214 | #define HLUA_FLT_CB_FINAL 0x00000001 |
| 215 | #define HLUA_FLT_CB_RETVAL 0x00000002 |
| 216 | #define HLUA_FLT_CB_ARG_CHN 0x00000004 |
| 217 | #define HLUA_FLT_CB_ARG_HTTP_MSG 0x00000008 |
| 218 | |
Christopher Faulet | 9f55a50 | 2020-02-25 15:21:02 +0100 | [diff] [blame] | 219 | #define HLUA_FLT_CTX_FL_PAYLOAD 0x00000001 |
| 220 | |
Christopher Faulet | 69c581a | 2021-05-31 08:54:04 +0200 | [diff] [blame] | 221 | struct hlua_reg_filter { |
| 222 | char *name; |
| 223 | int flt_ref[MAX_THREADS + 1]; |
| 224 | int fun_ref[MAX_THREADS + 1]; |
| 225 | struct list l; |
| 226 | }; |
| 227 | |
| 228 | struct hlua_flt_config { |
| 229 | struct hlua_reg_filter *reg; |
| 230 | int ref[MAX_THREADS + 1]; |
| 231 | char **args; |
| 232 | }; |
| 233 | |
| 234 | struct hlua_flt_ctx { |
| 235 | int ref; /* ref to the filter lua object */ |
| 236 | struct hlua *hlua[2]; /* lua runtime context (0: request, 1: response) */ |
| 237 | unsigned int cur_off[2]; /* current offset (0: request, 1: response) */ |
| 238 | unsigned int cur_len[2]; /* current forwardable length (0: request, 1: response) */ |
| 239 | unsigned int flags; /* HLUA_FLT_CTX_FL_* */ |
| 240 | }; |
| 241 | |
| 242 | DECLARE_STATIC_POOL(pool_head_hlua_flt_ctx, "hlua_flt_ctx", sizeof(struct hlua_flt_ctx)); |
| 243 | |
Christopher Faulet | 9f55a50 | 2020-02-25 15:21:02 +0100 | [diff] [blame] | 244 | static int hlua_filter_from_payload(struct filter *filter); |
| 245 | |
Christopher Faulet | 69c581a | 2021-05-31 08:54:04 +0200 | [diff] [blame] | 246 | /* This is the chained list of struct hlua_flt referenced |
| 247 | * for haproxy filters. It is used for a post-initialisation control. |
| 248 | */ |
| 249 | static struct list referenced_filters = LIST_HEAD_INIT(referenced_filters); |
| 250 | |
| 251 | |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 252 | /* This is the memory pool containing struct lua for applets |
| 253 | * (including cli). |
| 254 | */ |
Willy Tarreau | 8ceae72 | 2018-11-26 11:58:30 +0100 | [diff] [blame] | 255 | DECLARE_STATIC_POOL(pool_head_hlua, "hlua", sizeof(struct hlua)); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 256 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 257 | /* Used for Socket connection. */ |
Amaury Denoyelle | 239fdbf | 2021-03-24 10:22:03 +0100 | [diff] [blame] | 258 | static struct proxy *socket_proxy; |
Amaury Denoyelle | 704ba1d | 2021-03-24 17:57:47 +0100 | [diff] [blame] | 259 | static struct server *socket_tcp; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 260 | #ifdef USE_OPENSSL |
Amaury Denoyelle | 704ba1d | 2021-03-24 17:57:47 +0100 | [diff] [blame] | 261 | static struct server *socket_ssl; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 262 | #endif |
| 263 | |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 264 | /* List head of the function called at the initialisation time. */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 265 | struct list hlua_init_functions[MAX_THREADS + 1]; |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 266 | |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 267 | /* The following variables contains the reference of the different |
| 268 | * Lua classes. These references are useful for identify metadata |
| 269 | * associated with an object. |
| 270 | */ |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 271 | static int class_txn_ref; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 272 | static int class_socket_ref; |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 273 | static int class_channel_ref; |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 274 | static int class_fetches_ref; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 275 | static int class_converters_ref; |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 276 | static int class_http_ref; |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 277 | static int class_http_msg_ref; |
William Lallemand | 3956c4e | 2021-09-21 16:25:15 +0200 | [diff] [blame] | 278 | static int class_httpclient_ref; |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 279 | static int class_map_ref; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 280 | static int class_applet_tcp_ref; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 281 | static int class_applet_http_ref; |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 282 | static int class_txn_reply_ref; |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 283 | |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 284 | /* Global Lua execution timeout. By default Lua, execution linked |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 285 | * with stream (actions, sample-fetches and converters) have a |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 286 | * short timeout. Lua linked with tasks doesn't have a timeout |
| 287 | * because a task may remain alive during all the haproxy execution. |
| 288 | */ |
| 289 | static unsigned int hlua_timeout_session = 4000; /* session timeout. */ |
| 290 | static unsigned int hlua_timeout_task = TICK_ETERNITY; /* task timeout. */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 291 | static unsigned int hlua_timeout_applet = 4000; /* applet timeout. */ |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 292 | |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 293 | /* Interrupts the Lua processing each "hlua_nb_instruction" instructions. |
| 294 | * it is used for preventing infinite loops. |
| 295 | * |
| 296 | * I test the scheer with an infinite loop containing one incrementation |
| 297 | * and one test. I run this loop between 10 seconds, I raise a ceil of |
| 298 | * 710M loops from one interrupt each 9000 instructions, so I fix the value |
| 299 | * to one interrupt each 10 000 instructions. |
| 300 | * |
| 301 | * configured | Number of |
| 302 | * instructions | loops executed |
| 303 | * between two | in milions |
| 304 | * forced yields | |
| 305 | * ---------------+--------------- |
| 306 | * 10 | 160 |
| 307 | * 500 | 670 |
| 308 | * 1000 | 680 |
| 309 | * 5000 | 700 |
| 310 | * 7000 | 700 |
| 311 | * 8000 | 700 |
| 312 | * 9000 | 710 <- ceil |
| 313 | * 10000 | 710 |
| 314 | * 100000 | 710 |
| 315 | * 1000000 | 710 |
| 316 | * |
| 317 | */ |
| 318 | static unsigned int hlua_nb_instruction = 10000; |
| 319 | |
Willy Tarreau | cdb5346 | 2020-12-02 12:12:00 +0100 | [diff] [blame] | 320 | /* Descriptor for the memory allocation state. The limit is pre-initialised to |
| 321 | * 0 until it is replaced by "tune.lua.maxmem" during the config parsing, or it |
| 322 | * is replaced with ~0 during post_init after everything was loaded. This way |
| 323 | * it is guaranteed that if limit is ~0 the boot is complete and that if it's |
| 324 | * zero it's not yet limited and proper accounting is required. |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 325 | */ |
| 326 | struct hlua_mem_allocator { |
| 327 | size_t allocated; |
| 328 | size_t limit; |
| 329 | }; |
| 330 | |
Willy Tarreau | cdb5346 | 2020-12-02 12:12:00 +0100 | [diff] [blame] | 331 | static struct hlua_mem_allocator hlua_global_allocator THREAD_ALIGNED(64); |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 332 | |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 333 | /* These functions converts types between HAProxy internal args or |
| 334 | * sample and LUA types. Another function permits to check if the |
| 335 | * LUA stack contains arguments according with an required ARG_T |
| 336 | * format. |
| 337 | */ |
| 338 | static int hlua_arg2lua(lua_State *L, const struct arg *arg); |
| 339 | static int hlua_lua2arg(lua_State *L, int ud, struct arg *arg); |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 340 | __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] | 341 | uint64_t mask, struct proxy *p); |
Willy Tarreau | 5eadada | 2015-03-10 17:28:54 +0100 | [diff] [blame] | 342 | static int hlua_smp2lua(lua_State *L, struct sample *smp); |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 343 | static int hlua_smp2lua_str(lua_State *L, struct sample *smp); |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 344 | static int hlua_lua2smp(lua_State *L, int ud, struct sample *smp); |
| 345 | |
Christopher Faulet | 9d1332b | 2020-02-24 16:46:16 +0100 | [diff] [blame] | 346 | __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] | 347 | |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 348 | struct prepend_path { |
| 349 | struct list l; |
| 350 | char *type; |
| 351 | char *path; |
| 352 | }; |
| 353 | |
| 354 | static struct list prepend_path_list = LIST_HEAD_INIT(prepend_path_list); |
| 355 | |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 356 | #define SEND_ERR(__be, __fmt, __args...) \ |
| 357 | do { \ |
| 358 | send_log(__be, LOG_ERR, __fmt, ## __args); \ |
| 359 | if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) \ |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 360 | ha_alert(__fmt, ## __args); \ |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 361 | } while (0) |
| 362 | |
Thierry Fournier | 62a22aa | 2020-11-28 21:06:35 +0100 | [diff] [blame] | 363 | static inline struct hlua_function *new_hlua_function() |
| 364 | { |
| 365 | struct hlua_function *fcn; |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 366 | int i; |
Thierry Fournier | 62a22aa | 2020-11-28 21:06:35 +0100 | [diff] [blame] | 367 | |
| 368 | fcn = calloc(1, sizeof(*fcn)); |
| 369 | if (!fcn) |
| 370 | return NULL; |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 371 | LIST_APPEND(&referenced_functions, &fcn->l); |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 372 | for (i = 0; i < MAX_THREADS + 1; i++) |
| 373 | fcn->function_ref[i] = -1; |
Thierry Fournier | 62a22aa | 2020-11-28 21:06:35 +0100 | [diff] [blame] | 374 | return fcn; |
| 375 | } |
| 376 | |
Christopher Faulet | dda4444 | 2021-04-12 14:05:43 +0200 | [diff] [blame] | 377 | static inline void release_hlua_function(struct hlua_function *fcn) |
| 378 | { |
| 379 | if (!fcn) |
| 380 | return; |
| 381 | if (fcn->name) |
| 382 | ha_free(&fcn->name); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 383 | LIST_DELETE(&fcn->l); |
Christopher Faulet | dda4444 | 2021-04-12 14:05:43 +0200 | [diff] [blame] | 384 | ha_free(&fcn); |
| 385 | } |
| 386 | |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 387 | /* If the common state is set, the stack id is 0, otherwise it is the tid + 1 */ |
| 388 | static inline int fcn_ref_to_stack_id(struct hlua_function *fcn) |
| 389 | { |
| 390 | if (fcn->function_ref[0] == -1) |
| 391 | return tid + 1; |
| 392 | return 0; |
| 393 | } |
| 394 | |
Christopher Faulet | 69c581a | 2021-05-31 08:54:04 +0200 | [diff] [blame] | 395 | /* Create a new registered filter. Only its name is filled */ |
| 396 | static inline struct hlua_reg_filter *new_hlua_reg_filter(const char *name) |
| 397 | { |
| 398 | struct hlua_reg_filter *reg_flt; |
| 399 | int i; |
| 400 | |
| 401 | reg_flt = calloc(1, sizeof(*reg_flt)); |
| 402 | if (!reg_flt) |
| 403 | return NULL; |
| 404 | reg_flt->name = strdup(name); |
| 405 | if (!reg_flt->name) { |
| 406 | free(reg_flt); |
| 407 | return NULL; |
| 408 | } |
| 409 | LIST_APPEND(&referenced_filters, ®_flt->l); |
| 410 | for (i = 0; i < MAX_THREADS + 1; i++) { |
| 411 | reg_flt->flt_ref[i] = -1; |
| 412 | reg_flt->fun_ref[i] = -1; |
| 413 | } |
| 414 | return reg_flt; |
| 415 | } |
| 416 | |
| 417 | /* Release a registered filter */ |
| 418 | static inline void release_hlua_reg_filter(struct hlua_reg_filter *reg_flt) |
| 419 | { |
| 420 | if (!reg_flt) |
| 421 | return; |
| 422 | if (reg_flt->name) |
| 423 | ha_free(®_flt->name); |
| 424 | LIST_DELETE(®_flt->l); |
| 425 | ha_free(®_flt); |
| 426 | } |
| 427 | |
| 428 | /* If the common state is set, the stack id is 0, otherwise it is the tid + 1 */ |
| 429 | static inline int reg_flt_to_stack_id(struct hlua_reg_filter *reg_flt) |
| 430 | { |
| 431 | if (reg_flt->fun_ref[0] == -1) |
| 432 | return tid + 1; |
| 433 | return 0; |
| 434 | } |
| 435 | |
Thierry FOURNIER | e8b9a40 | 2015-02-25 18:48:12 +0100 | [diff] [blame] | 436 | /* Used to check an Lua function type in the stack. It creates and |
| 437 | * returns a reference of the function. This function throws an |
| 438 | * error if the rgument is not a "function". |
| 439 | */ |
| 440 | __LJMP unsigned int hlua_checkfunction(lua_State *L, int argno) |
| 441 | { |
| 442 | if (!lua_isfunction(L, argno)) { |
Thierry FOURNIER | fd1e955 | 2018-02-23 18:41:18 +0100 | [diff] [blame] | 443 | 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] | 444 | WILL_LJMP(luaL_argerror(L, argno, msg)); |
| 445 | } |
| 446 | lua_pushvalue(L, argno); |
| 447 | return luaL_ref(L, LUA_REGISTRYINDEX); |
| 448 | } |
| 449 | |
Christopher Faulet | ba9e21d | 2020-02-25 10:20:04 +0100 | [diff] [blame] | 450 | /* Used to check an Lua table type in the stack. It creates and |
| 451 | * returns a reference of the table. This function throws an |
| 452 | * error if the rgument is not a "table". |
| 453 | */ |
| 454 | __LJMP unsigned int hlua_checktable(lua_State *L, int argno) |
| 455 | { |
| 456 | if (!lua_istable(L, argno)) { |
| 457 | const char *msg = lua_pushfstring(L, "table expected, got %s", luaL_typename(L, argno)); |
| 458 | WILL_LJMP(luaL_argerror(L, argno, msg)); |
| 459 | } |
| 460 | lua_pushvalue(L, argno); |
| 461 | return luaL_ref(L, LUA_REGISTRYINDEX); |
| 462 | } |
| 463 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 464 | /* Return the string that is of the top of the stack. */ |
| 465 | const char *hlua_get_top_error_string(lua_State *L) |
| 466 | { |
| 467 | if (lua_gettop(L) < 1) |
| 468 | return "unknown error"; |
| 469 | if (lua_type(L, -1) != LUA_TSTRING) |
| 470 | return "unknown error"; |
| 471 | return lua_tostring(L, -1); |
| 472 | } |
| 473 | |
Christopher Faulet | d09cc51 | 2021-03-24 14:48:45 +0100 | [diff] [blame] | 474 | __LJMP const char *hlua_traceback(lua_State *L, const char* sep) |
Thierry FOURNIER | fc044c9 | 2018-06-07 14:40:48 +0200 | [diff] [blame] | 475 | { |
| 476 | lua_Debug ar; |
| 477 | int level = 0; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 478 | struct buffer *msg = get_trash_chunk(); |
Thierry FOURNIER | fc044c9 | 2018-06-07 14:40:48 +0200 | [diff] [blame] | 479 | |
| 480 | while (lua_getstack(L, level++, &ar)) { |
| 481 | |
| 482 | /* Add separator */ |
Christopher Faulet | d09cc51 | 2021-03-24 14:48:45 +0100 | [diff] [blame] | 483 | if (b_data(msg)) |
| 484 | chunk_appendf(msg, "%s", sep); |
Thierry FOURNIER | fc044c9 | 2018-06-07 14:40:48 +0200 | [diff] [blame] | 485 | |
| 486 | /* Fill fields: |
| 487 | * 'S': fills in the fields source, short_src, linedefined, lastlinedefined, and what; |
| 488 | * 'l': fills in the field currentline; |
| 489 | * 'n': fills in the field name and namewhat; |
| 490 | * 't': fills in the field istailcall; |
| 491 | */ |
| 492 | lua_getinfo(L, "Slnt", &ar); |
| 493 | |
| 494 | /* Append code localisation */ |
| 495 | if (ar.currentline > 0) |
Christopher Faulet | d09cc51 | 2021-03-24 14:48:45 +0100 | [diff] [blame] | 496 | chunk_appendf(msg, "%s:%d: ", ar.short_src, ar.currentline); |
Thierry FOURNIER | fc044c9 | 2018-06-07 14:40:48 +0200 | [diff] [blame] | 497 | else |
Christopher Faulet | d09cc51 | 2021-03-24 14:48:45 +0100 | [diff] [blame] | 498 | chunk_appendf(msg, "%s: ", ar.short_src); |
Thierry FOURNIER | fc044c9 | 2018-06-07 14:40:48 +0200 | [diff] [blame] | 499 | |
| 500 | /* |
| 501 | * Get function name |
| 502 | * |
| 503 | * if namewhat is no empty, name is defined. |
| 504 | * what contains "Lua" for Lua function, "C" for C function, |
| 505 | * or "main" for main code. |
| 506 | */ |
| 507 | if (*ar.namewhat != '\0' && ar.name != NULL) /* is there a name from code? */ |
Christopher Faulet | d09cc51 | 2021-03-24 14:48:45 +0100 | [diff] [blame] | 508 | chunk_appendf(msg, "in %s '%s'", ar.namewhat, ar.name); /* use it */ |
Thierry FOURNIER | fc044c9 | 2018-06-07 14:40:48 +0200 | [diff] [blame] | 509 | |
| 510 | else if (*ar.what == 'm') /* "main", the code is not executed in a function */ |
Christopher Faulet | d09cc51 | 2021-03-24 14:48:45 +0100 | [diff] [blame] | 511 | chunk_appendf(msg, "in main chunk"); |
Thierry FOURNIER | fc044c9 | 2018-06-07 14:40:48 +0200 | [diff] [blame] | 512 | |
| 513 | else if (*ar.what != 'C') /* for Lua functions, use <file:line> */ |
Christopher Faulet | d09cc51 | 2021-03-24 14:48:45 +0100 | [diff] [blame] | 514 | chunk_appendf(msg, "in function line %d", ar.linedefined); |
Thierry FOURNIER | fc044c9 | 2018-06-07 14:40:48 +0200 | [diff] [blame] | 515 | |
| 516 | else /* nothing left... */ |
| 517 | chunk_appendf(msg, "?"); |
| 518 | |
| 519 | |
| 520 | /* Display tailed call */ |
| 521 | if (ar.istailcall) |
| 522 | chunk_appendf(msg, " ..."); |
| 523 | } |
| 524 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 525 | return msg->area; |
Thierry FOURNIER | fc044c9 | 2018-06-07 14:40:48 +0200 | [diff] [blame] | 526 | } |
| 527 | |
| 528 | |
Thierry FOURNIER | e8b9a40 | 2015-02-25 18:48:12 +0100 | [diff] [blame] | 529 | /* This function check the number of arguments available in the |
| 530 | * stack. If the number of arguments available is not the same |
Ilya Shipitsin | c02a23f | 2020-05-06 00:53:22 +0500 | [diff] [blame] | 531 | * then <nb> an error is thrown. |
Thierry FOURNIER | e8b9a40 | 2015-02-25 18:48:12 +0100 | [diff] [blame] | 532 | */ |
| 533 | __LJMP static inline void check_args(lua_State *L, int nb, char *fcn) |
| 534 | { |
| 535 | if (lua_gettop(L) == nb) |
| 536 | return; |
| 537 | WILL_LJMP(luaL_error(L, "'%s' needs %d arguments", fcn, nb)); |
| 538 | } |
| 539 | |
Mark Lakes | 22154b4 | 2018-01-29 14:38:40 -0800 | [diff] [blame] | 540 | /* This function pushes an error string prefixed by the file name |
Thierry FOURNIER | e8b9a40 | 2015-02-25 18:48:12 +0100 | [diff] [blame] | 541 | * and the line number where the error is encountered. |
| 542 | */ |
| 543 | static int hlua_pusherror(lua_State *L, const char *fmt, ...) |
| 544 | { |
| 545 | va_list argp; |
| 546 | va_start(argp, fmt); |
| 547 | luaL_where(L, 1); |
| 548 | lua_pushvfstring(L, fmt, argp); |
| 549 | va_end(argp); |
| 550 | lua_concat(L, 2); |
| 551 | return 1; |
| 552 | } |
| 553 | |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 554 | /* This functions is used with sample fetch and converters. It |
| 555 | * converts the HAProxy configuration argument in a lua stack |
| 556 | * values. |
| 557 | * |
| 558 | * It takes an array of "arg", and each entry of the array is |
| 559 | * converted and pushed in the LUA stack. |
| 560 | */ |
| 561 | static int hlua_arg2lua(lua_State *L, const struct arg *arg) |
| 562 | { |
| 563 | switch (arg->type) { |
| 564 | case ARGT_SINT: |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 565 | case ARGT_TIME: |
| 566 | case ARGT_SIZE: |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 567 | lua_pushinteger(L, arg->data.sint); |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 568 | break; |
| 569 | |
| 570 | case ARGT_STR: |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 571 | lua_pushlstring(L, arg->data.str.area, arg->data.str.data); |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 572 | break; |
| 573 | |
| 574 | case ARGT_IPV4: |
| 575 | case ARGT_IPV6: |
| 576 | case ARGT_MSK4: |
| 577 | case ARGT_MSK6: |
| 578 | case ARGT_FE: |
| 579 | case ARGT_BE: |
| 580 | case ARGT_TAB: |
| 581 | case ARGT_SRV: |
| 582 | case ARGT_USR: |
| 583 | case ARGT_MAP: |
| 584 | default: |
| 585 | lua_pushnil(L); |
| 586 | break; |
| 587 | } |
| 588 | return 1; |
| 589 | } |
| 590 | |
Ilya Shipitsin | c02a23f | 2020-05-06 00:53:22 +0500 | [diff] [blame] | 591 | /* 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] | 592 | * 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] | 593 | * with sample fetch wrappers. The input arguments are given to the |
| 594 | * lua wrapper and converted as arg list by the function. |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 595 | */ |
| 596 | static int hlua_lua2arg(lua_State *L, int ud, struct arg *arg) |
| 597 | { |
| 598 | switch (lua_type(L, ud)) { |
| 599 | |
| 600 | case LUA_TNUMBER: |
| 601 | case LUA_TBOOLEAN: |
| 602 | arg->type = ARGT_SINT; |
| 603 | arg->data.sint = lua_tointeger(L, ud); |
| 604 | break; |
| 605 | |
| 606 | case LUA_TSTRING: |
| 607 | arg->type = ARGT_STR; |
Tim Duesterhus | 2e89dec | 2019-09-29 23:03:08 +0200 | [diff] [blame] | 608 | 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] | 609 | /* 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] | 610 | 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] | 611 | arg->data.str.head = 0; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 612 | break; |
| 613 | |
| 614 | case LUA_TUSERDATA: |
| 615 | case LUA_TNIL: |
| 616 | case LUA_TTABLE: |
| 617 | case LUA_TFUNCTION: |
| 618 | case LUA_TTHREAD: |
| 619 | case LUA_TLIGHTUSERDATA: |
| 620 | arg->type = ARGT_SINT; |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 621 | arg->data.sint = 0; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 622 | break; |
| 623 | } |
| 624 | return 1; |
| 625 | } |
| 626 | |
| 627 | /* the following functions are used to convert a struct sample |
| 628 | * in Lua type. This useful to convert the return of the |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 629 | * fetches or converters. |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 630 | */ |
Willy Tarreau | 5eadada | 2015-03-10 17:28:54 +0100 | [diff] [blame] | 631 | static int hlua_smp2lua(lua_State *L, struct sample *smp) |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 632 | { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 633 | switch (smp->data.type) { |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 634 | case SMP_T_SINT: |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 635 | case SMP_T_BOOL: |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 636 | lua_pushinteger(L, smp->data.u.sint); |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 637 | break; |
| 638 | |
| 639 | case SMP_T_BIN: |
| 640 | case SMP_T_STR: |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 641 | 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] | 642 | break; |
| 643 | |
| 644 | case SMP_T_METH: |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 645 | switch (smp->data.u.meth.meth) { |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 646 | case HTTP_METH_OPTIONS: lua_pushstring(L, "OPTIONS"); break; |
| 647 | case HTTP_METH_GET: lua_pushstring(L, "GET"); break; |
| 648 | case HTTP_METH_HEAD: lua_pushstring(L, "HEAD"); break; |
| 649 | case HTTP_METH_POST: lua_pushstring(L, "POST"); break; |
| 650 | case HTTP_METH_PUT: lua_pushstring(L, "PUT"); break; |
| 651 | case HTTP_METH_DELETE: lua_pushstring(L, "DELETE"); break; |
| 652 | case HTTP_METH_TRACE: lua_pushstring(L, "TRACE"); break; |
| 653 | case HTTP_METH_CONNECT: lua_pushstring(L, "CONNECT"); break; |
| 654 | case HTTP_METH_OTHER: |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 655 | 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] | 656 | break; |
| 657 | default: |
| 658 | lua_pushnil(L); |
| 659 | break; |
| 660 | } |
| 661 | break; |
| 662 | |
| 663 | case SMP_T_IPV4: |
| 664 | case SMP_T_IPV6: |
| 665 | 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] | 666 | if (sample_casts[smp->data.type][SMP_T_STR] && |
| 667 | sample_casts[smp->data.type][SMP_T_STR](smp)) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 668 | 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] | 669 | else |
| 670 | lua_pushnil(L); |
| 671 | break; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 672 | default: |
| 673 | lua_pushnil(L); |
| 674 | break; |
| 675 | } |
| 676 | return 1; |
| 677 | } |
| 678 | |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 679 | /* the following functions are used to convert a struct sample |
| 680 | * in Lua strings. This is useful to convert the return of the |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 681 | * fetches or converters. |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 682 | */ |
| 683 | static int hlua_smp2lua_str(lua_State *L, struct sample *smp) |
| 684 | { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 685 | switch (smp->data.type) { |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 686 | |
| 687 | case SMP_T_BIN: |
| 688 | case SMP_T_STR: |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 689 | 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] | 690 | break; |
| 691 | |
| 692 | case SMP_T_METH: |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 693 | switch (smp->data.u.meth.meth) { |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 694 | case HTTP_METH_OPTIONS: lua_pushstring(L, "OPTIONS"); break; |
| 695 | case HTTP_METH_GET: lua_pushstring(L, "GET"); break; |
| 696 | case HTTP_METH_HEAD: lua_pushstring(L, "HEAD"); break; |
| 697 | case HTTP_METH_POST: lua_pushstring(L, "POST"); break; |
| 698 | case HTTP_METH_PUT: lua_pushstring(L, "PUT"); break; |
| 699 | case HTTP_METH_DELETE: lua_pushstring(L, "DELETE"); break; |
| 700 | case HTTP_METH_TRACE: lua_pushstring(L, "TRACE"); break; |
| 701 | case HTTP_METH_CONNECT: lua_pushstring(L, "CONNECT"); break; |
| 702 | case HTTP_METH_OTHER: |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 703 | 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] | 704 | break; |
| 705 | default: |
| 706 | lua_pushstring(L, ""); |
| 707 | break; |
| 708 | } |
| 709 | break; |
| 710 | |
| 711 | case SMP_T_SINT: |
| 712 | case SMP_T_BOOL: |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 713 | case SMP_T_IPV4: |
| 714 | case SMP_T_IPV6: |
| 715 | 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] | 716 | if (sample_casts[smp->data.type][SMP_T_STR] && |
| 717 | sample_casts[smp->data.type][SMP_T_STR](smp)) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 718 | 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] | 719 | else |
| 720 | lua_pushstring(L, ""); |
| 721 | break; |
| 722 | default: |
| 723 | lua_pushstring(L, ""); |
| 724 | break; |
| 725 | } |
| 726 | return 1; |
| 727 | } |
| 728 | |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 729 | /* the following functions are used to convert an Lua type in a |
| 730 | * struct sample. This is useful to provide data from a converter |
| 731 | * to the LUA code. |
| 732 | */ |
| 733 | static int hlua_lua2smp(lua_State *L, int ud, struct sample *smp) |
| 734 | { |
| 735 | switch (lua_type(L, ud)) { |
| 736 | |
| 737 | case LUA_TNUMBER: |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 738 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 739 | smp->data.u.sint = lua_tointeger(L, ud); |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 740 | break; |
| 741 | |
| 742 | |
| 743 | case LUA_TBOOLEAN: |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 744 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 745 | smp->data.u.sint = lua_toboolean(L, ud); |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 746 | break; |
| 747 | |
| 748 | case LUA_TSTRING: |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 749 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 750 | smp->flags |= SMP_F_CONST; |
Tim Duesterhus | 2e89dec | 2019-09-29 23:03:08 +0200 | [diff] [blame] | 751 | 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] | 752 | /* 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] | 753 | 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] | 754 | smp->data.u.str.head = 0; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 755 | break; |
| 756 | |
| 757 | case LUA_TUSERDATA: |
| 758 | case LUA_TNIL: |
| 759 | case LUA_TTABLE: |
| 760 | case LUA_TFUNCTION: |
| 761 | case LUA_TTHREAD: |
| 762 | case LUA_TLIGHTUSERDATA: |
Thierry FOURNIER | 93405e1 | 2015-08-26 14:19:03 +0200 | [diff] [blame] | 763 | case LUA_TNONE: |
| 764 | default: |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 765 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 766 | smp->data.u.sint = 0; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 767 | break; |
| 768 | } |
| 769 | return 1; |
| 770 | } |
| 771 | |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 772 | /* This function check the "argp" built by another conversion function |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 773 | * 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] | 774 | * 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] | 775 | * |
Ilya Shipitsin | c02a23f | 2020-05-06 00:53:22 +0500 | [diff] [blame] | 776 | * This function assumes that the argp argument contains ARGM_NBARGS + 1 |
Willy Tarreau | ee0d727 | 2021-07-16 10:26:56 +0200 | [diff] [blame] | 777 | * entries and that there is at least one stop at the last position. |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 778 | */ |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 779 | __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] | 780 | uint64_t mask, struct proxy *p) |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 781 | { |
| 782 | int min_arg; |
Willy Tarreau | ee0d727 | 2021-07-16 10:26:56 +0200 | [diff] [blame] | 783 | int idx; |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 784 | struct proxy *px; |
Christopher Faulet | d25d926 | 2020-08-06 11:04:46 +0200 | [diff] [blame] | 785 | struct userlist *ul; |
Christopher Faulet | fd2e906 | 2020-08-06 11:10:57 +0200 | [diff] [blame] | 786 | struct my_regex *reg; |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 787 | const char *msg = NULL; |
Christopher Faulet | fd2e906 | 2020-08-06 11:10:57 +0200 | [diff] [blame] | 788 | char *sname, *pname, *err = NULL; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 789 | |
| 790 | idx = 0; |
| 791 | min_arg = ARGM(mask); |
| 792 | mask >>= ARGM_BITS; |
| 793 | |
| 794 | while (1) { |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 795 | struct buffer tmp = BUF_NULL; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 796 | |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 797 | /* Check for mandatory arguments. */ |
| 798 | if (argp[idx].type == ARGT_STOP) { |
Thierry FOURNIER | 3caa039 | 2015-03-13 13:38:17 +0100 | [diff] [blame] | 799 | if (idx < min_arg) { |
| 800 | |
| 801 | /* If miss other argument than the first one, we return an error. */ |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 802 | if (idx > 0) { |
| 803 | msg = "Mandatory argument expected"; |
| 804 | goto error; |
| 805 | } |
Thierry FOURNIER | 3caa039 | 2015-03-13 13:38:17 +0100 | [diff] [blame] | 806 | |
| 807 | /* If first argument have a certain type, some default values |
| 808 | * may be used. See the function smp_resolve_args(). |
| 809 | */ |
| 810 | switch (mask & ARGT_MASK) { |
| 811 | |
| 812 | case ARGT_FE: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 813 | if (!(p->cap & PR_CAP_FE)) { |
| 814 | msg = "Mandatory argument expected"; |
| 815 | goto error; |
| 816 | } |
Thierry FOURNIER | 3caa039 | 2015-03-13 13:38:17 +0100 | [diff] [blame] | 817 | argp[idx].data.prx = p; |
| 818 | argp[idx].type = ARGT_FE; |
| 819 | argp[idx+1].type = ARGT_STOP; |
| 820 | break; |
| 821 | |
| 822 | case ARGT_BE: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 823 | if (!(p->cap & PR_CAP_BE)) { |
| 824 | msg = "Mandatory argument expected"; |
| 825 | goto error; |
| 826 | } |
Thierry FOURNIER | 3caa039 | 2015-03-13 13:38:17 +0100 | [diff] [blame] | 827 | argp[idx].data.prx = p; |
| 828 | argp[idx].type = ARGT_BE; |
| 829 | argp[idx+1].type = ARGT_STOP; |
| 830 | break; |
| 831 | |
| 832 | case ARGT_TAB: |
| 833 | argp[idx].data.prx = p; |
| 834 | argp[idx].type = ARGT_TAB; |
| 835 | argp[idx+1].type = ARGT_STOP; |
| 836 | break; |
| 837 | |
| 838 | default: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 839 | msg = "Mandatory argument expected"; |
| 840 | goto error; |
Thierry FOURNIER | 3caa039 | 2015-03-13 13:38:17 +0100 | [diff] [blame] | 841 | break; |
| 842 | } |
| 843 | } |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 844 | break; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 845 | } |
| 846 | |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 847 | /* Check for exceed the number of required argument. */ |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 848 | if ((mask & ARGT_MASK) == ARGT_STOP && |
| 849 | argp[idx].type != ARGT_STOP) { |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 850 | msg = "Last argument expected"; |
| 851 | goto error; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 852 | } |
| 853 | |
| 854 | if ((mask & ARGT_MASK) == ARGT_STOP && |
| 855 | argp[idx].type == ARGT_STOP) { |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 856 | break; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 857 | } |
| 858 | |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 859 | /* Convert some argument types. All string in argp[] are for not |
| 860 | * duplicated yet. |
| 861 | */ |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 862 | switch (mask & ARGT_MASK) { |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 863 | case ARGT_SINT: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 864 | if (argp[idx].type != ARGT_SINT) { |
| 865 | msg = "integer expected"; |
| 866 | goto error; |
| 867 | } |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 868 | argp[idx].type = ARGT_SINT; |
| 869 | break; |
| 870 | |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 871 | case ARGT_TIME: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 872 | if (argp[idx].type != ARGT_SINT) { |
| 873 | msg = "integer expected"; |
| 874 | goto error; |
| 875 | } |
Thierry FOURNIER | 29176f3 | 2015-07-07 00:41:29 +0200 | [diff] [blame] | 876 | argp[idx].type = ARGT_TIME; |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 877 | break; |
| 878 | |
| 879 | case ARGT_SIZE: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 880 | if (argp[idx].type != ARGT_SINT) { |
| 881 | msg = "integer expected"; |
| 882 | goto error; |
| 883 | } |
Thierry FOURNIER | 29176f3 | 2015-07-07 00:41:29 +0200 | [diff] [blame] | 884 | argp[idx].type = ARGT_SIZE; |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 885 | break; |
| 886 | |
| 887 | case ARGT_FE: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 888 | if (argp[idx].type != ARGT_STR) { |
| 889 | msg = "string expected"; |
| 890 | goto error; |
| 891 | } |
Christopher Faulet | fdea1b6 | 2020-08-06 08:29:18 +0200 | [diff] [blame] | 892 | 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] | 893 | if (!argp[idx].data.prx) { |
| 894 | msg = "frontend doesn't exist"; |
| 895 | goto error; |
| 896 | } |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 897 | argp[idx].type = ARGT_FE; |
| 898 | break; |
| 899 | |
| 900 | case ARGT_BE: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 901 | if (argp[idx].type != ARGT_STR) { |
| 902 | msg = "string expected"; |
| 903 | goto error; |
| 904 | } |
Christopher Faulet | fdea1b6 | 2020-08-06 08:29:18 +0200 | [diff] [blame] | 905 | 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] | 906 | if (!argp[idx].data.prx) { |
| 907 | msg = "backend doesn't exist"; |
| 908 | goto error; |
| 909 | } |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 910 | argp[idx].type = ARGT_BE; |
| 911 | break; |
| 912 | |
| 913 | case ARGT_TAB: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 914 | if (argp[idx].type != ARGT_STR) { |
| 915 | msg = "string expected"; |
| 916 | goto error; |
| 917 | } |
Christopher Faulet | fdea1b6 | 2020-08-06 08:29:18 +0200 | [diff] [blame] | 918 | 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] | 919 | if (!argp[idx].data.t) { |
| 920 | msg = "table doesn't exist"; |
| 921 | goto error; |
| 922 | } |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 923 | argp[idx].type = ARGT_TAB; |
| 924 | break; |
| 925 | |
| 926 | case ARGT_SRV: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 927 | if (argp[idx].type != ARGT_STR) { |
| 928 | msg = "string expected"; |
| 929 | goto error; |
| 930 | } |
Christopher Faulet | fdea1b6 | 2020-08-06 08:29:18 +0200 | [diff] [blame] | 931 | sname = strrchr(argp[idx].data.str.area, '/'); |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 932 | if (sname) { |
| 933 | *sname++ = '\0'; |
Christopher Faulet | fdea1b6 | 2020-08-06 08:29:18 +0200 | [diff] [blame] | 934 | pname = argp[idx].data.str.area; |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 935 | px = proxy_be_by_name(pname); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 936 | if (!px) { |
| 937 | msg = "backend doesn't exist"; |
| 938 | goto error; |
| 939 | } |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 940 | } |
| 941 | else { |
Christopher Faulet | fdea1b6 | 2020-08-06 08:29:18 +0200 | [diff] [blame] | 942 | sname = argp[idx].data.str.area; |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 943 | px = p; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 944 | } |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 945 | argp[idx].data.srv = findserver(px, sname); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 946 | if (!argp[idx].data.srv) { |
| 947 | msg = "server doesn't exist"; |
| 948 | goto error; |
| 949 | } |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 950 | argp[idx].type = ARGT_SRV; |
| 951 | break; |
| 952 | |
| 953 | case ARGT_IPV4: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 954 | if (argp[idx].type != ARGT_STR) { |
| 955 | msg = "string expected"; |
| 956 | goto error; |
| 957 | } |
| 958 | if (inet_pton(AF_INET, argp[idx].data.str.area, &argp[idx].data.ipv4)) { |
| 959 | msg = "invalid IPv4 address"; |
| 960 | goto error; |
| 961 | } |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 962 | argp[idx].type = ARGT_IPV4; |
| 963 | break; |
| 964 | |
| 965 | case ARGT_MSK4: |
Christopher Faulet | e663a6e | 2020-08-07 09:11:22 +0200 | [diff] [blame] | 966 | if (argp[idx].type == ARGT_SINT) |
| 967 | len2mask4(argp[idx].data.sint, &argp[idx].data.ipv4); |
| 968 | else if (argp[idx].type == ARGT_STR) { |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 969 | if (!str2mask(argp[idx].data.str.area, &argp[idx].data.ipv4)) { |
| 970 | msg = "invalid IPv4 mask"; |
| 971 | goto error; |
| 972 | } |
| 973 | } |
| 974 | else { |
| 975 | msg = "integer or string expected"; |
| 976 | goto error; |
Christopher Faulet | e663a6e | 2020-08-07 09:11:22 +0200 | [diff] [blame] | 977 | } |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 978 | argp[idx].type = ARGT_MSK4; |
| 979 | break; |
| 980 | |
| 981 | case ARGT_IPV6: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 982 | if (argp[idx].type != ARGT_STR) { |
| 983 | msg = "string expected"; |
| 984 | goto error; |
| 985 | } |
| 986 | if (inet_pton(AF_INET6, argp[idx].data.str.area, &argp[idx].data.ipv6)) { |
| 987 | msg = "invalid IPv6 address"; |
| 988 | goto error; |
| 989 | } |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 990 | argp[idx].type = ARGT_IPV6; |
| 991 | break; |
| 992 | |
| 993 | case ARGT_MSK6: |
Christopher Faulet | e663a6e | 2020-08-07 09:11:22 +0200 | [diff] [blame] | 994 | if (argp[idx].type == ARGT_SINT) |
| 995 | len2mask6(argp[idx].data.sint, &argp[idx].data.ipv6); |
| 996 | else if (argp[idx].type == ARGT_STR) { |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 997 | if (!str2mask6(argp[idx].data.str.area, &argp[idx].data.ipv6)) { |
| 998 | msg = "invalid IPv6 mask"; |
| 999 | goto error; |
| 1000 | } |
| 1001 | } |
| 1002 | else { |
| 1003 | msg = "integer or string expected"; |
| 1004 | goto error; |
Christopher Faulet | e663a6e | 2020-08-07 09:11:22 +0200 | [diff] [blame] | 1005 | } |
Tim Duesterhus | b814da6 | 2018-01-25 16:24:50 +0100 | [diff] [blame] | 1006 | argp[idx].type = ARGT_MSK6; |
| 1007 | break; |
| 1008 | |
Christopher Faulet | fd2e906 | 2020-08-06 11:10:57 +0200 | [diff] [blame] | 1009 | case ARGT_REG: |
| 1010 | if (argp[idx].type != ARGT_STR) { |
| 1011 | msg = "string expected"; |
| 1012 | goto error; |
| 1013 | } |
| 1014 | reg = regex_comp(argp[idx].data.str.area, !(argp[idx].type_flags & ARGF_REG_ICASE), 1, &err); |
| 1015 | if (!reg) { |
| 1016 | msg = lua_pushfstring(L, "error compiling regex '%s' : '%s'", |
| 1017 | argp[idx].data.str.area, err); |
| 1018 | free(err); |
| 1019 | goto error; |
| 1020 | } |
| 1021 | argp[idx].type = ARGT_REG; |
| 1022 | argp[idx].data.reg = reg; |
| 1023 | break; |
| 1024 | |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 1025 | case ARGT_USR: |
Christopher Faulet | d25d926 | 2020-08-06 11:04:46 +0200 | [diff] [blame] | 1026 | if (argp[idx].type != ARGT_STR) { |
| 1027 | msg = "string expected"; |
| 1028 | goto error; |
| 1029 | } |
| 1030 | if (p->uri_auth && p->uri_auth->userlist && |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1031 | strcmp(p->uri_auth->userlist->name, argp[idx].data.str.area) == 0) |
Christopher Faulet | d25d926 | 2020-08-06 11:04:46 +0200 | [diff] [blame] | 1032 | ul = p->uri_auth->userlist; |
| 1033 | else |
| 1034 | ul = auth_find_userlist(argp[idx].data.str.area); |
| 1035 | |
| 1036 | if (!ul) { |
| 1037 | msg = lua_pushfstring(L, "unable to find userlist '%s'", argp[idx].data.str.area); |
| 1038 | goto error; |
| 1039 | } |
| 1040 | argp[idx].type = ARGT_USR; |
| 1041 | argp[idx].data.usr = ul; |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 1042 | break; |
| 1043 | |
| 1044 | case ARGT_STR: |
| 1045 | if (!chunk_dup(&tmp, &argp[idx].data.str)) { |
| 1046 | msg = "unable to duplicate string arg"; |
| 1047 | goto error; |
| 1048 | } |
| 1049 | argp[idx].data.str = tmp; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 1050 | break; |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 1051 | |
Christopher Faulet | d25d926 | 2020-08-06 11:04:46 +0200 | [diff] [blame] | 1052 | case ARGT_MAP: |
Christopher Faulet | d25d926 | 2020-08-06 11:04:46 +0200 | [diff] [blame] | 1053 | msg = "type not yet supported"; |
| 1054 | goto error; |
| 1055 | break; |
| 1056 | |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 1057 | } |
| 1058 | |
| 1059 | /* Check for type of argument. */ |
| 1060 | if ((mask & ARGT_MASK) != argp[idx].type) { |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 1061 | msg = lua_pushfstring(L, "'%s' expected, got '%s'", |
| 1062 | arg_type_names[(mask & ARGT_MASK)], |
| 1063 | arg_type_names[argp[idx].type & ARGT_MASK]); |
| 1064 | goto error; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 1065 | } |
| 1066 | |
| 1067 | /* Next argument. */ |
| 1068 | mask >>= ARGT_BITS; |
| 1069 | idx++; |
| 1070 | } |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 1071 | return 0; |
| 1072 | |
| 1073 | error: |
Willy Tarreau | ee0d727 | 2021-07-16 10:26:56 +0200 | [diff] [blame] | 1074 | free_args(argp); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 1075 | WILL_LJMP(luaL_argerror(L, first + idx, msg)); |
| 1076 | return 0; /* Never reached */ |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 1077 | } |
| 1078 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1079 | /* |
Ilya Shipitsin | c02a23f | 2020-05-06 00:53:22 +0500 | [diff] [blame] | 1080 | * The following functions are used to make correspondence between the the |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1081 | * executed lua pointer and the "struct hlua *" that contain the context. |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1082 | * |
| 1083 | * - hlua_gethlua : return the hlua context associated with an lua_State. |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1084 | * - hlua_sethlua : create the association between hlua context and lua_state. |
| 1085 | */ |
| 1086 | static inline struct hlua *hlua_gethlua(lua_State *L) |
| 1087 | { |
Thierry FOURNIER | 38c5fd6 | 2015-03-10 02:40:29 +0100 | [diff] [blame] | 1088 | struct hlua **hlua = lua_getextraspace(L); |
| 1089 | return *hlua; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1090 | } |
| 1091 | static inline void hlua_sethlua(struct hlua *hlua) |
| 1092 | { |
Thierry FOURNIER | 38c5fd6 | 2015-03-10 02:40:29 +0100 | [diff] [blame] | 1093 | struct hlua **hlua_store = lua_getextraspace(hlua->T); |
| 1094 | *hlua_store = hlua; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1095 | } |
| 1096 | |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 1097 | /* This function is used to send logs. It try to send on screen (stderr) |
| 1098 | * and on the default syslog server. |
| 1099 | */ |
| 1100 | static inline void hlua_sendlog(struct proxy *px, int level, const char *msg) |
| 1101 | { |
| 1102 | struct tm tm; |
| 1103 | char *p; |
| 1104 | |
| 1105 | /* Cleanup the log message. */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1106 | p = trash.area; |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 1107 | for (; *msg != '\0'; msg++, p++) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1108 | if (p >= trash.area + trash.size - 1) { |
Thierry FOURNIER | ccf0063 | 2015-09-16 12:47:03 +0200 | [diff] [blame] | 1109 | /* Break the message if exceed the buffer size. */ |
| 1110 | *(p-4) = ' '; |
| 1111 | *(p-3) = '.'; |
| 1112 | *(p-2) = '.'; |
| 1113 | *(p-1) = '.'; |
| 1114 | break; |
| 1115 | } |
Willy Tarreau | 9080711 | 2020-02-25 08:16:33 +0100 | [diff] [blame] | 1116 | if (isprint((unsigned char)*msg)) |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 1117 | *p = *msg; |
| 1118 | else |
| 1119 | *p = '.'; |
| 1120 | } |
| 1121 | *p = '\0'; |
| 1122 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1123 | send_log(px, level, "%s\n", trash.area); |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 1124 | if (!(global.mode & MODE_QUIET) || (global.mode & (MODE_VERBOSE | MODE_STARTING))) { |
Christopher Faulet | f98d821 | 2020-10-02 18:13:52 +0200 | [diff] [blame] | 1125 | if (level == LOG_DEBUG && !(global.mode & MODE_DEBUG)) |
| 1126 | return; |
| 1127 | |
Willy Tarreau | a678b43 | 2015-08-28 10:14:59 +0200 | [diff] [blame] | 1128 | get_localtime(date.tv_sec, &tm); |
| 1129 | fprintf(stderr, "[%s] %03d/%02d%02d%02d (%d) : %s\n", |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 1130 | 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] | 1131 | (int)getpid(), trash.area); |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 1132 | fflush(stderr); |
| 1133 | } |
| 1134 | } |
| 1135 | |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1136 | /* This function just ensure that the yield will be always |
| 1137 | * returned with a timeout and permit to set some flags |
| 1138 | */ |
| 1139 | __LJMP void hlua_yieldk(lua_State *L, int nresults, int ctx, |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 1140 | lua_KFunction k, int timeout, unsigned int flags) |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1141 | { |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 1142 | struct hlua *hlua; |
| 1143 | |
| 1144 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 1145 | hlua = hlua_gethlua(L); |
| 1146 | if (!hlua) { |
| 1147 | return; |
| 1148 | } |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1149 | |
| 1150 | /* Set the wake timeout. If timeout is required, we set |
| 1151 | * the expiration time. |
| 1152 | */ |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 1153 | hlua->wake_time = timeout; |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1154 | |
Thierry FOURNIER | 4abd3ae | 2015-03-03 17:29:06 +0100 | [diff] [blame] | 1155 | hlua->flags |= flags; |
| 1156 | |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1157 | /* Process the yield. */ |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 1158 | MAY_LJMP(lua_yieldk(L, nresults, ctx, k)); |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1159 | } |
| 1160 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1161 | /* This function initialises the Lua environment stored in the stream. |
| 1162 | * 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] | 1163 | * 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] | 1164 | * |
| 1165 | * This function is particular. it initialises a new Lua thread. If the |
| 1166 | * initialisation fails (example: out of memory error), the lua function |
| 1167 | * throws an error (longjmp). |
| 1168 | * |
Thierry FOURNIER | bf90ce1 | 2019-01-06 19:04:24 +0100 | [diff] [blame] | 1169 | * 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] | 1170 | * environment, so we must not initialise it. While the support of |
Thierry FOURNIER | bf90ce1 | 2019-01-06 19:04:24 +0100 | [diff] [blame] | 1171 | * threads appear, the safe environment set a lock to ensure only one |
| 1172 | * Lua execution at a time. If we initialize safe environment in another |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 1173 | * safe environment, we have a dead lock. |
Thierry FOURNIER | bf90ce1 | 2019-01-06 19:04:24 +0100 | [diff] [blame] | 1174 | * |
| 1175 | * set "already_safe" true if the context is initialized form safe |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 1176 | * Lua function. |
Thierry FOURNIER | bf90ce1 | 2019-01-06 19:04:24 +0100 | [diff] [blame] | 1177 | * |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 1178 | * This function manipulates two Lua stacks: the main and the thread. Only |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 1179 | * the main stack can fail. The thread is not manipulated. This function |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 1180 | * MUST NOT manipulate the created thread stack state, because it is not |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 1181 | * protected against errors thrown by the thread stack. |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1182 | */ |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1183 | 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] | 1184 | { |
| 1185 | lua->Mref = LUA_REFNIL; |
Thierry FOURNIER | a097fdf | 2015-03-03 15:17:35 +0100 | [diff] [blame] | 1186 | lua->flags = 0; |
Willy Tarreau | f31af93 | 2020-01-14 09:59:38 +0100 | [diff] [blame] | 1187 | lua->gc_count = 0; |
Christopher Faulet | bc275a9 | 2020-02-26 14:55:16 +0100 | [diff] [blame] | 1188 | lua->wake_time = TICK_ETERNITY; |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1189 | lua->state_id = state_id; |
Thierry FOURNIER | 9ff7e6e | 2015-01-23 11:08:20 +0100 | [diff] [blame] | 1190 | LIST_INIT(&lua->com); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 1191 | if (!already_safe) { |
| 1192 | if (!SET_SAFE_LJMP_PARENT(lua)) { |
| 1193 | lua->Tref = LUA_REFNIL; |
| 1194 | return 0; |
| 1195 | } |
| 1196 | } |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1197 | lua->T = lua_newthread(hlua_states[state_id]); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1198 | if (!lua->T) { |
| 1199 | lua->Tref = LUA_REFNIL; |
Thierry FOURNIER | bf90ce1 | 2019-01-06 19:04:24 +0100 | [diff] [blame] | 1200 | if (!already_safe) |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 1201 | RESET_SAFE_LJMP_PARENT(lua); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1202 | return 0; |
| 1203 | } |
| 1204 | hlua_sethlua(lua); |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1205 | lua->Tref = luaL_ref(hlua_states[state_id], LUA_REGISTRYINDEX); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1206 | lua->task = task; |
Thierry FOURNIER | bf90ce1 | 2019-01-06 19:04:24 +0100 | [diff] [blame] | 1207 | if (!already_safe) |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 1208 | RESET_SAFE_LJMP_PARENT(lua); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1209 | return 1; |
| 1210 | } |
| 1211 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1212 | /* Used to destroy the Lua coroutine when the attached stream or task |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1213 | * is destroyed. The destroy also the memory context. The struct "lua" |
| 1214 | * is not freed. |
| 1215 | */ |
| 1216 | void hlua_ctx_destroy(struct hlua *lua) |
| 1217 | { |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 1218 | if (!lua) |
Thierry FOURNIER | a718b29 | 2015-03-04 16:48:34 +0100 | [diff] [blame] | 1219 | return; |
| 1220 | |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 1221 | if (!lua->T) |
| 1222 | goto end; |
| 1223 | |
Thierry FOURNIER | 9ff7e6e | 2015-01-23 11:08:20 +0100 | [diff] [blame] | 1224 | /* Purge all the pending signals. */ |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1225 | notification_purge(&lua->com); |
Thierry FOURNIER | 9ff7e6e | 2015-01-23 11:08:20 +0100 | [diff] [blame] | 1226 | |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 1227 | if (!SET_SAFE_LJMP(lua)) |
Thierry FOURNIER | 75d0208 | 2017-07-12 13:41:33 +0200 | [diff] [blame] | 1228 | return; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1229 | luaL_unref(lua->T, LUA_REGISTRYINDEX, lua->Mref); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 1230 | RESET_SAFE_LJMP(lua); |
Thierry FOURNIER | 5a50a85 | 2015-09-23 16:59:28 +0200 | [diff] [blame] | 1231 | |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 1232 | if (!SET_SAFE_LJMP_PARENT(lua)) |
Thierry FOURNIER | 75d0208 | 2017-07-12 13:41:33 +0200 | [diff] [blame] | 1233 | return; |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1234 | luaL_unref(hlua_states[lua->state_id], LUA_REGISTRYINDEX, lua->Tref); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 1235 | RESET_SAFE_LJMP_PARENT(lua); |
Thierry FOURNIER | 5a50a85 | 2015-09-23 16:59:28 +0200 | [diff] [blame] | 1236 | /* Forces a garbage collecting process. If the Lua program is finished |
| 1237 | * without error, we run the GC on the thread pointer. Its freed all |
| 1238 | * the unused memory. |
| 1239 | * If the thread is finnish with an error or is currently yielded, |
| 1240 | * it seems that the GC applied on the thread doesn't clean anything, |
| 1241 | * so e run the GC on the main thread. |
| 1242 | * NOTE: maybe this action locks all the Lua threads untiml the en of |
| 1243 | * the garbage collection. |
| 1244 | */ |
Willy Tarreau | f31af93 | 2020-01-14 09:59:38 +0100 | [diff] [blame] | 1245 | if (lua->gc_count) { |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 1246 | if (!SET_SAFE_LJMP_PARENT(lua)) |
Thierry FOURNIER | 75d0208 | 2017-07-12 13:41:33 +0200 | [diff] [blame] | 1247 | return; |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1248 | lua_gc(hlua_states[lua->state_id], LUA_GCCOLLECT, 0); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 1249 | RESET_SAFE_LJMP_PARENT(lua); |
Thierry FOURNIER | 7c39ab4 | 2015-09-27 22:53:33 +0200 | [diff] [blame] | 1250 | } |
Thierry FOURNIER | 5a50a85 | 2015-09-23 16:59:28 +0200 | [diff] [blame] | 1251 | |
Thierry FOURNIER | a7b536b | 2015-09-21 22:50:24 +0200 | [diff] [blame] | 1252 | lua->T = NULL; |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 1253 | |
| 1254 | end: |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 1255 | pool_free(pool_head_hlua, lua); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1256 | } |
| 1257 | |
| 1258 | /* This function is used to restore the Lua context when a coroutine |
| 1259 | * fails. This function copy the common memory between old coroutine |
| 1260 | * and the new coroutine. The old coroutine is destroyed, and its |
| 1261 | * replaced by the new coroutine. |
| 1262 | * If the flag "keep_msg" is set, the last entry of the old is assumed |
| 1263 | * as string error message and it is copied in the new stack. |
| 1264 | */ |
| 1265 | static int hlua_ctx_renew(struct hlua *lua, int keep_msg) |
| 1266 | { |
| 1267 | lua_State *T; |
| 1268 | int new_ref; |
| 1269 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1270 | /* New Lua coroutine. */ |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1271 | T = lua_newthread(hlua_states[lua->state_id]); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1272 | if (!T) |
| 1273 | return 0; |
| 1274 | |
| 1275 | /* Copy last error message. */ |
| 1276 | if (keep_msg) |
| 1277 | lua_xmove(lua->T, T, 1); |
| 1278 | |
| 1279 | /* Copy data between the coroutines. */ |
| 1280 | lua_rawgeti(lua->T, LUA_REGISTRYINDEX, lua->Mref); |
| 1281 | lua_xmove(lua->T, T, 1); |
Ilya Shipitsin | 46a030c | 2020-07-05 16:36:08 +0500 | [diff] [blame] | 1282 | new_ref = luaL_ref(T, LUA_REGISTRYINDEX); /* Value popped. */ |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1283 | |
| 1284 | /* Destroy old data. */ |
| 1285 | luaL_unref(lua->T, LUA_REGISTRYINDEX, lua->Mref); |
| 1286 | |
| 1287 | /* The thread is garbage collected by Lua. */ |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1288 | luaL_unref(hlua_states[lua->state_id], LUA_REGISTRYINDEX, lua->Tref); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1289 | |
| 1290 | /* Fill the struct with the new coroutine values. */ |
| 1291 | lua->Mref = new_ref; |
| 1292 | lua->T = T; |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1293 | lua->Tref = luaL_ref(hlua_states[lua->state_id], LUA_REGISTRYINDEX); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1294 | |
| 1295 | /* Set context. */ |
| 1296 | hlua_sethlua(lua); |
| 1297 | |
| 1298 | return 1; |
| 1299 | } |
| 1300 | |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 1301 | void hlua_hook(lua_State *L, lua_Debug *ar) |
| 1302 | { |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 1303 | struct hlua *hlua; |
| 1304 | |
| 1305 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 1306 | hlua = hlua_gethlua(L); |
| 1307 | if (!hlua) |
| 1308 | return; |
Thierry FOURNIER | cae49c9 | 2015-03-06 14:05:24 +0100 | [diff] [blame] | 1309 | |
| 1310 | /* Lua cannot yield when its returning from a function, |
| 1311 | * so, we can fix the interrupt hook to 1 instruction, |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 1312 | * expecting that the function is finished. |
Thierry FOURNIER | cae49c9 | 2015-03-06 14:05:24 +0100 | [diff] [blame] | 1313 | */ |
| 1314 | if (lua_gethookmask(L) & LUA_MASKRET) { |
| 1315 | lua_sethook(hlua->T, hlua_hook, LUA_MASKCOUNT, 1); |
| 1316 | return; |
| 1317 | } |
| 1318 | |
| 1319 | /* restore the interrupt condition. */ |
| 1320 | lua_sethook(hlua->T, hlua_hook, LUA_MASKCOUNT, hlua_nb_instruction); |
| 1321 | |
| 1322 | /* If we interrupt the Lua processing in yieldable state, we yield. |
| 1323 | * If the state is not yieldable, trying yield causes an error. |
| 1324 | */ |
| 1325 | if (lua_isyieldable(L)) |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 1326 | MAY_LJMP(hlua_yieldk(L, 0, 0, NULL, TICK_ETERNITY, HLUA_CTRLYIELD)); |
Thierry FOURNIER | cae49c9 | 2015-03-06 14:05:24 +0100 | [diff] [blame] | 1327 | |
Thierry FOURNIER | a85cfb1 | 2015-03-13 14:50:06 +0100 | [diff] [blame] | 1328 | /* If we cannot yield, update the clock and check the timeout. */ |
Willy Tarreau | 5554264 | 2021-10-08 09:33:24 +0200 | [diff] [blame] | 1329 | clock_update_date(0, 1); |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 1330 | hlua->run_time += now_ms - hlua->start_time; |
| 1331 | if (hlua->max_time && hlua->run_time >= hlua->max_time) { |
Thierry FOURNIER | cae49c9 | 2015-03-06 14:05:24 +0100 | [diff] [blame] | 1332 | lua_pushfstring(L, "execution timeout"); |
| 1333 | WILL_LJMP(lua_error(L)); |
| 1334 | } |
| 1335 | |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 1336 | /* Update the start time. */ |
| 1337 | hlua->start_time = now_ms; |
| 1338 | |
Thierry FOURNIER | cae49c9 | 2015-03-06 14:05:24 +0100 | [diff] [blame] | 1339 | /* Try to interrupt the process at the end of the current |
| 1340 | * unyieldable function. |
| 1341 | */ |
| 1342 | 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] | 1343 | } |
| 1344 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1345 | /* This function start or resumes the Lua stack execution. If the flag |
| 1346 | * "yield_allowed" if no set and the LUA stack execution returns a yield |
| 1347 | * The function return an error. |
| 1348 | * |
| 1349 | * The function can returns 4 values: |
| 1350 | * - HLUA_E_OK : The execution is terminated without any errors. |
| 1351 | * - HLUA_E_AGAIN : The execution must continue at the next associated |
| 1352 | * task wakeup. |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 1353 | * - 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] | 1354 | * the top of the stack. |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 1355 | * - HLUA_E_ERR : An error has occurred without error message. |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1356 | * |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 1357 | * 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] | 1358 | * LUA code. |
| 1359 | */ |
| 1360 | static enum hlua_exec hlua_ctx_resume(struct hlua *lua, int yield_allowed) |
| 1361 | { |
Christopher Faulet | 08ed98f | 2020-07-28 10:33:25 +0200 | [diff] [blame] | 1362 | #if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504 |
| 1363 | int nres; |
| 1364 | #endif |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1365 | int ret; |
| 1366 | const char *msg; |
Thierry FOURNIER | fc044c9 | 2018-06-07 14:40:48 +0200 | [diff] [blame] | 1367 | const char *trace; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1368 | |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 1369 | /* Initialise run time counter. */ |
| 1370 | if (!HLUA_IS_RUNNING(lua)) |
| 1371 | lua->run_time = 0; |
Thierry FOURNIER | dc9ca96 | 2015-03-05 11:16:52 +0100 | [diff] [blame] | 1372 | |
Thierry FOURNIER | 61ba0e2 | 2017-07-12 11:41:21 +0200 | [diff] [blame] | 1373 | /* Lock the whole Lua execution. This lock must be before the |
| 1374 | * label "resume_execution". |
| 1375 | */ |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1376 | if (lua->state_id == 0) |
Willy Tarreau | 1e7bef1 | 2021-08-20 15:47:25 +0200 | [diff] [blame] | 1377 | lua_take_global_lock(); |
Thierry FOURNIER | 61ba0e2 | 2017-07-12 11:41:21 +0200 | [diff] [blame] | 1378 | |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 1379 | resume_execution: |
| 1380 | |
| 1381 | /* This hook interrupts the Lua processing each 'hlua_nb_instruction' |
| 1382 | * instructions. it is used for preventing infinite loops. |
| 1383 | */ |
| 1384 | lua_sethook(lua->T, hlua_hook, LUA_MASKCOUNT, hlua_nb_instruction); |
| 1385 | |
Thierry FOURNIER | 1bfc09b | 2015-03-05 17:10:14 +0100 | [diff] [blame] | 1386 | /* Remove all flags except the running flags. */ |
Thierry FOURNIER | 2f3867f | 2015-09-28 01:02:01 +0200 | [diff] [blame] | 1387 | HLUA_SET_RUN(lua); |
| 1388 | HLUA_CLR_CTRLYIELD(lua); |
| 1389 | HLUA_CLR_WAKERESWR(lua); |
| 1390 | HLUA_CLR_WAKEREQWR(lua); |
Christopher Faulet | 1f43a34 | 2021-08-04 17:58:21 +0200 | [diff] [blame] | 1391 | HLUA_CLR_NOYIELD(lua); |
| 1392 | if (!yield_allowed) |
| 1393 | HLUA_SET_NOYIELD(lua); |
Thierry FOURNIER | 1bfc09b | 2015-03-05 17:10:14 +0100 | [diff] [blame] | 1394 | |
Christopher Faulet | bc275a9 | 2020-02-26 14:55:16 +0100 | [diff] [blame] | 1395 | /* Update the start time and reset wake_time. */ |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 1396 | lua->start_time = now_ms; |
Christopher Faulet | bc275a9 | 2020-02-26 14:55:16 +0100 | [diff] [blame] | 1397 | lua->wake_time = TICK_ETERNITY; |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 1398 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1399 | /* Call the function. */ |
Christopher Faulet | 08ed98f | 2020-07-28 10:33:25 +0200 | [diff] [blame] | 1400 | #if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504 |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1401 | 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] | 1402 | #else |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1403 | ret = lua_resume(lua->T, hlua_states[lua->state_id], lua->nargs); |
Christopher Faulet | 08ed98f | 2020-07-28 10:33:25 +0200 | [diff] [blame] | 1404 | #endif |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1405 | switch (ret) { |
| 1406 | |
| 1407 | case LUA_OK: |
| 1408 | ret = HLUA_E_OK; |
| 1409 | break; |
| 1410 | |
| 1411 | case LUA_YIELD: |
Thierry FOURNIER | dc9ca96 | 2015-03-05 11:16:52 +0100 | [diff] [blame] | 1412 | /* Check if the execution timeout is expired. It it is the case, we |
| 1413 | * break the Lua execution. |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 1414 | */ |
Willy Tarreau | 5554264 | 2021-10-08 09:33:24 +0200 | [diff] [blame] | 1415 | clock_update_date(0, 1); |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 1416 | lua->run_time += now_ms - lua->start_time; |
| 1417 | if (lua->max_time && lua->run_time > lua->max_time) { |
Thierry FOURNIER | dc9ca96 | 2015-03-05 11:16:52 +0100 | [diff] [blame] | 1418 | lua_settop(lua->T, 0); /* Empty the stack. */ |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 1419 | ret = HLUA_E_ETMOUT; |
Thierry FOURNIER | dc9ca96 | 2015-03-05 11:16:52 +0100 | [diff] [blame] | 1420 | break; |
| 1421 | } |
| 1422 | /* Process the forced yield. if the general yield is not allowed or |
| 1423 | * if no task were associated this the current Lua execution |
| 1424 | * coroutine, we resume the execution. Else we want to return in the |
| 1425 | * scheduler and we want to be waked up again, to continue the |
| 1426 | * current Lua execution. So we schedule our own task. |
| 1427 | */ |
| 1428 | if (HLUA_IS_CTRLYIELDING(lua)) { |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 1429 | if (!yield_allowed || !lua->task) |
| 1430 | goto resume_execution; |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 1431 | task_wakeup(lua->task, TASK_WOKEN_MSG); |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 1432 | } |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1433 | if (!yield_allowed) { |
| 1434 | lua_settop(lua->T, 0); /* Empty the stack. */ |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 1435 | ret = HLUA_E_YIELD; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1436 | break; |
| 1437 | } |
| 1438 | ret = HLUA_E_AGAIN; |
| 1439 | break; |
| 1440 | |
| 1441 | case LUA_ERRRUN: |
Thierry FOURNIER | 0a99b89 | 2015-08-26 00:14:17 +0200 | [diff] [blame] | 1442 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 1443 | /* Special exit case. The traditional exit is returned as an error |
Thierry FOURNIER | 0a99b89 | 2015-08-26 00:14:17 +0200 | [diff] [blame] | 1444 | * because the errors ares the only one mean to return immediately |
| 1445 | * from and lua execution. |
| 1446 | */ |
| 1447 | if (lua->flags & HLUA_EXIT) { |
| 1448 | ret = HLUA_E_OK; |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 1449 | hlua_ctx_renew(lua, 1); |
Thierry FOURNIER | 0a99b89 | 2015-08-26 00:14:17 +0200 | [diff] [blame] | 1450 | break; |
| 1451 | } |
| 1452 | |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1453 | lua->wake_time = TICK_ETERNITY; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1454 | if (!lua_checkstack(lua->T, 1)) { |
| 1455 | ret = HLUA_E_ERR; |
| 1456 | break; |
| 1457 | } |
| 1458 | msg = lua_tostring(lua->T, -1); |
| 1459 | lua_settop(lua->T, 0); /* Empty the stack. */ |
| 1460 | lua_pop(lua->T, 1); |
Christopher Faulet | d09cc51 | 2021-03-24 14:48:45 +0100 | [diff] [blame] | 1461 | trace = hlua_traceback(lua->T, ", "); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1462 | if (msg) |
Thierry Fournier | 46278ff | 2020-11-29 11:48:12 +0100 | [diff] [blame] | 1463 | 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] | 1464 | else |
Thierry Fournier | 46278ff | 2020-11-29 11:48:12 +0100 | [diff] [blame] | 1465 | 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] | 1466 | ret = HLUA_E_ERRMSG; |
| 1467 | break; |
| 1468 | |
| 1469 | case LUA_ERRMEM: |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1470 | lua->wake_time = TICK_ETERNITY; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1471 | lua_settop(lua->T, 0); /* Empty the stack. */ |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 1472 | ret = HLUA_E_NOMEM; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1473 | break; |
| 1474 | |
| 1475 | case LUA_ERRERR: |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1476 | lua->wake_time = TICK_ETERNITY; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1477 | if (!lua_checkstack(lua->T, 1)) { |
| 1478 | ret = HLUA_E_ERR; |
| 1479 | break; |
| 1480 | } |
| 1481 | msg = lua_tostring(lua->T, -1); |
| 1482 | lua_settop(lua->T, 0); /* Empty the stack. */ |
| 1483 | lua_pop(lua->T, 1); |
| 1484 | if (msg) |
Thierry Fournier | 46278ff | 2020-11-29 11:48:12 +0100 | [diff] [blame] | 1485 | 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] | 1486 | else |
Thierry Fournier | 46278ff | 2020-11-29 11:48:12 +0100 | [diff] [blame] | 1487 | 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] | 1488 | ret = HLUA_E_ERRMSG; |
| 1489 | break; |
| 1490 | |
| 1491 | default: |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1492 | lua->wake_time = TICK_ETERNITY; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1493 | lua_settop(lua->T, 0); /* Empty the stack. */ |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 1494 | ret = HLUA_E_ERR; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1495 | break; |
| 1496 | } |
| 1497 | |
| 1498 | switch (ret) { |
| 1499 | case HLUA_E_AGAIN: |
| 1500 | break; |
| 1501 | |
| 1502 | case HLUA_E_ERRMSG: |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1503 | notification_purge(&lua->com); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1504 | hlua_ctx_renew(lua, 1); |
Thierry FOURNIER | a097fdf | 2015-03-03 15:17:35 +0100 | [diff] [blame] | 1505 | HLUA_CLR_RUN(lua); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1506 | break; |
| 1507 | |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 1508 | case HLUA_E_ETMOUT: |
| 1509 | case HLUA_E_NOMEM: |
| 1510 | case HLUA_E_YIELD: |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1511 | case HLUA_E_ERR: |
Thierry FOURNIER | a097fdf | 2015-03-03 15:17:35 +0100 | [diff] [blame] | 1512 | HLUA_CLR_RUN(lua); |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1513 | notification_purge(&lua->com); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1514 | hlua_ctx_renew(lua, 0); |
| 1515 | break; |
| 1516 | |
| 1517 | case HLUA_E_OK: |
Thierry FOURNIER | a097fdf | 2015-03-03 15:17:35 +0100 | [diff] [blame] | 1518 | HLUA_CLR_RUN(lua); |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1519 | notification_purge(&lua->com); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1520 | break; |
| 1521 | } |
| 1522 | |
Thierry FOURNIER | 61ba0e2 | 2017-07-12 11:41:21 +0200 | [diff] [blame] | 1523 | /* This is the main exit point, remove the Lua lock. */ |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1524 | if (lua->state_id == 0) |
Willy Tarreau | 1e7bef1 | 2021-08-20 15:47:25 +0200 | [diff] [blame] | 1525 | lua_drop_global_lock(); |
Thierry FOURNIER | 61ba0e2 | 2017-07-12 11:41:21 +0200 | [diff] [blame] | 1526 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1527 | return ret; |
| 1528 | } |
| 1529 | |
Thierry FOURNIER | 0a99b89 | 2015-08-26 00:14:17 +0200 | [diff] [blame] | 1530 | /* This function exit the current code. */ |
| 1531 | __LJMP static int hlua_done(lua_State *L) |
| 1532 | { |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 1533 | struct hlua *hlua; |
| 1534 | |
| 1535 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 1536 | hlua = hlua_gethlua(L); |
| 1537 | if (!hlua) |
| 1538 | return 0; |
Thierry FOURNIER | 0a99b89 | 2015-08-26 00:14:17 +0200 | [diff] [blame] | 1539 | |
| 1540 | hlua->flags |= HLUA_EXIT; |
| 1541 | WILL_LJMP(lua_error(L)); |
| 1542 | |
| 1543 | return 0; |
| 1544 | } |
| 1545 | |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1546 | /* This function is an LUA binding. It provides a function |
| 1547 | * for deleting ACL from a referenced ACL file. |
| 1548 | */ |
| 1549 | __LJMP static int hlua_del_acl(lua_State *L) |
| 1550 | { |
| 1551 | const char *name; |
| 1552 | const char *key; |
| 1553 | struct pat_ref *ref; |
| 1554 | |
| 1555 | MAY_LJMP(check_args(L, 2, "del_acl")); |
| 1556 | |
| 1557 | name = MAY_LJMP(luaL_checkstring(L, 1)); |
| 1558 | key = MAY_LJMP(luaL_checkstring(L, 2)); |
| 1559 | |
| 1560 | ref = pat_ref_lookup(name); |
| 1561 | if (!ref) |
Vincent Bernat | a72db18 | 2015-10-06 16:05:59 +0200 | [diff] [blame] | 1562 | WILL_LJMP(luaL_error(L, "'del_acl': unknown acl file '%s'", name)); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1563 | |
Christopher Faulet | 5cf2dfc | 2020-06-03 18:39:16 +0200 | [diff] [blame] | 1564 | HA_SPIN_LOCK(PATREF_LOCK, &ref->lock); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1565 | pat_ref_delete(ref, key); |
Christopher Faulet | 5cf2dfc | 2020-06-03 18:39:16 +0200 | [diff] [blame] | 1566 | HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1567 | return 0; |
| 1568 | } |
| 1569 | |
| 1570 | /* This function is an LUA binding. It provides a function |
| 1571 | * for deleting map entry from a referenced map file. |
| 1572 | */ |
| 1573 | static int hlua_del_map(lua_State *L) |
| 1574 | { |
| 1575 | const char *name; |
| 1576 | const char *key; |
| 1577 | struct pat_ref *ref; |
| 1578 | |
| 1579 | MAY_LJMP(check_args(L, 2, "del_map")); |
| 1580 | |
| 1581 | name = MAY_LJMP(luaL_checkstring(L, 1)); |
| 1582 | key = MAY_LJMP(luaL_checkstring(L, 2)); |
| 1583 | |
| 1584 | ref = pat_ref_lookup(name); |
| 1585 | if (!ref) |
Vincent Bernat | a72db18 | 2015-10-06 16:05:59 +0200 | [diff] [blame] | 1586 | WILL_LJMP(luaL_error(L, "'del_map': unknown acl file '%s'", name)); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1587 | |
Christopher Faulet | 5cf2dfc | 2020-06-03 18:39:16 +0200 | [diff] [blame] | 1588 | HA_SPIN_LOCK(PATREF_LOCK, &ref->lock); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1589 | pat_ref_delete(ref, key); |
Christopher Faulet | 5cf2dfc | 2020-06-03 18:39:16 +0200 | [diff] [blame] | 1590 | HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1591 | return 0; |
| 1592 | } |
| 1593 | |
| 1594 | /* This function is an LUA binding. It provides a function |
| 1595 | * for adding ACL pattern from a referenced ACL file. |
| 1596 | */ |
| 1597 | static int hlua_add_acl(lua_State *L) |
| 1598 | { |
| 1599 | const char *name; |
| 1600 | const char *key; |
| 1601 | struct pat_ref *ref; |
| 1602 | |
| 1603 | MAY_LJMP(check_args(L, 2, "add_acl")); |
| 1604 | |
| 1605 | name = MAY_LJMP(luaL_checkstring(L, 1)); |
| 1606 | key = MAY_LJMP(luaL_checkstring(L, 2)); |
| 1607 | |
| 1608 | ref = pat_ref_lookup(name); |
| 1609 | if (!ref) |
Vincent Bernat | a72db18 | 2015-10-06 16:05:59 +0200 | [diff] [blame] | 1610 | WILL_LJMP(luaL_error(L, "'add_acl': unknown acl file '%s'", name)); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1611 | |
Christopher Faulet | 5cf2dfc | 2020-06-03 18:39:16 +0200 | [diff] [blame] | 1612 | HA_SPIN_LOCK(PATREF_LOCK, &ref->lock); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1613 | if (pat_ref_find_elt(ref, key) == NULL) |
| 1614 | pat_ref_add(ref, key, NULL, NULL); |
Christopher Faulet | 5cf2dfc | 2020-06-03 18:39:16 +0200 | [diff] [blame] | 1615 | HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1616 | return 0; |
| 1617 | } |
| 1618 | |
| 1619 | /* This function is an LUA binding. It provides a function |
| 1620 | * for setting map pattern and sample from a referenced map |
| 1621 | * file. |
| 1622 | */ |
| 1623 | static int hlua_set_map(lua_State *L) |
| 1624 | { |
| 1625 | const char *name; |
| 1626 | const char *key; |
| 1627 | const char *value; |
| 1628 | struct pat_ref *ref; |
| 1629 | |
| 1630 | MAY_LJMP(check_args(L, 3, "set_map")); |
| 1631 | |
| 1632 | name = MAY_LJMP(luaL_checkstring(L, 1)); |
| 1633 | key = MAY_LJMP(luaL_checkstring(L, 2)); |
| 1634 | value = MAY_LJMP(luaL_checkstring(L, 3)); |
| 1635 | |
| 1636 | ref = pat_ref_lookup(name); |
| 1637 | if (!ref) |
Vincent Bernat | a72db18 | 2015-10-06 16:05:59 +0200 | [diff] [blame] | 1638 | WILL_LJMP(luaL_error(L, "'set_map': unknown map file '%s'", name)); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1639 | |
Christopher Faulet | 5cf2dfc | 2020-06-03 18:39:16 +0200 | [diff] [blame] | 1640 | HA_SPIN_LOCK(PATREF_LOCK, &ref->lock); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1641 | if (pat_ref_find_elt(ref, key) != NULL) |
| 1642 | pat_ref_set(ref, key, value, NULL); |
| 1643 | else |
| 1644 | pat_ref_add(ref, key, value, NULL); |
Christopher Faulet | 5cf2dfc | 2020-06-03 18:39:16 +0200 | [diff] [blame] | 1645 | HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1646 | return 0; |
| 1647 | } |
| 1648 | |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 1649 | /* A class is a lot of memory that contain data. This data can be a table, |
| 1650 | * 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] | 1651 | * metatable have an original version registered in the global context with |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 1652 | * the name of the object (_G[<name>] = <metable> ). |
| 1653 | * |
| 1654 | * A metable is a table that modify the standard behavior of a standard |
| 1655 | * access to the associated data. The entries of this new metatable are |
| 1656 | * defined as is: |
| 1657 | * |
| 1658 | * http://lua-users.org/wiki/MetatableEvents |
| 1659 | * |
| 1660 | * __index |
| 1661 | * |
| 1662 | * we access an absent field in a table, the result is nil. This is |
| 1663 | * true, but it is not the whole truth. Actually, such access triggers |
| 1664 | * the interpreter to look for an __index metamethod: If there is no |
| 1665 | * such method, as usually happens, then the access results in nil; |
| 1666 | * otherwise, the metamethod will provide the result. |
| 1667 | * |
| 1668 | * Control 'prototype' inheritance. When accessing "myTable[key]" and |
| 1669 | * the key does not appear in the table, but the metatable has an __index |
| 1670 | * property: |
| 1671 | * |
| 1672 | * - if the value is a function, the function is called, passing in the |
| 1673 | * table and the key; the return value of that function is returned as |
| 1674 | * the result. |
| 1675 | * |
| 1676 | * - if the value is another table, the value of the key in that table is |
| 1677 | * asked for and returned (and if it doesn't exist in that table, but that |
| 1678 | * table's metatable has an __index property, then it continues on up) |
| 1679 | * |
| 1680 | * - Use "rawget(myTable,key)" to skip this metamethod. |
| 1681 | * |
| 1682 | * http://www.lua.org/pil/13.4.1.html |
| 1683 | * |
| 1684 | * __newindex |
| 1685 | * |
| 1686 | * Like __index, but control property assignment. |
| 1687 | * |
| 1688 | * __mode - Control weak references. A string value with one or both |
| 1689 | * of the characters 'k' and 'v' which specifies that the the |
| 1690 | * keys and/or values in the table are weak references. |
| 1691 | * |
| 1692 | * __call - Treat a table like a function. When a table is followed by |
| 1693 | * parenthesis such as "myTable( 'foo' )" and the metatable has |
| 1694 | * a __call key pointing to a function, that function is invoked |
| 1695 | * (passing any specified arguments) and the return value is |
| 1696 | * returned. |
| 1697 | * |
| 1698 | * __metatable - Hide the metatable. When "getmetatable( myTable )" is |
| 1699 | * called, if the metatable for myTable has a __metatable |
| 1700 | * key, the value of that key is returned instead of the |
| 1701 | * actual metatable. |
| 1702 | * |
| 1703 | * __tostring - Control string representation. When the builtin |
| 1704 | * "tostring( myTable )" function is called, if the metatable |
| 1705 | * for myTable has a __tostring property set to a function, |
| 1706 | * that function is invoked (passing myTable to it) and the |
| 1707 | * return value is used as the string representation. |
| 1708 | * |
| 1709 | * __len - Control table length. When the table length is requested using |
| 1710 | * the length operator ( '#' ), if the metatable for myTable has |
| 1711 | * a __len key pointing to a function, that function is invoked |
| 1712 | * (passing myTable to it) and the return value used as the value |
| 1713 | * of "#myTable". |
| 1714 | * |
| 1715 | * __gc - Userdata finalizer code. When userdata is set to be garbage |
| 1716 | * collected, if the metatable has a __gc field pointing to a |
| 1717 | * function, that function is first invoked, passing the userdata |
| 1718 | * to it. The __gc metamethod is not called for tables. |
| 1719 | * (See http://lua-users.org/lists/lua-l/2006-11/msg00508.html) |
| 1720 | * |
| 1721 | * Special metamethods for redefining standard operators: |
| 1722 | * http://www.lua.org/pil/13.1.html |
| 1723 | * |
| 1724 | * __add "+" |
| 1725 | * __sub "-" |
| 1726 | * __mul "*" |
| 1727 | * __div "/" |
| 1728 | * __unm "!" |
| 1729 | * __pow "^" |
| 1730 | * __concat ".." |
| 1731 | * |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 1732 | * Special methods for redefining standard relations |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 1733 | * http://www.lua.org/pil/13.2.html |
| 1734 | * |
| 1735 | * __eq "==" |
| 1736 | * __lt "<" |
| 1737 | * __le "<=" |
| 1738 | */ |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1739 | |
| 1740 | /* |
| 1741 | * |
| 1742 | * |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1743 | * Class Map |
| 1744 | * |
| 1745 | * |
| 1746 | */ |
| 1747 | |
| 1748 | /* Returns a struct hlua_map if the stack entry "ud" is |
| 1749 | * a class session, otherwise it throws an error. |
| 1750 | */ |
| 1751 | __LJMP static struct map_descriptor *hlua_checkmap(lua_State *L, int ud) |
| 1752 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 1753 | return MAY_LJMP(hlua_checkudata(L, ud, class_map_ref)); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1754 | } |
| 1755 | |
| 1756 | /* This function is the map constructor. It don't need |
| 1757 | * the class Map object. It creates and return a new Map |
| 1758 | * object. It must be called only during "body" or "init" |
| 1759 | * context because it process some filesystem accesses. |
| 1760 | */ |
| 1761 | __LJMP static int hlua_map_new(struct lua_State *L) |
| 1762 | { |
| 1763 | const char *fn; |
| 1764 | int match = PAT_MATCH_STR; |
| 1765 | struct sample_conv conv; |
| 1766 | const char *file = ""; |
| 1767 | int line = 0; |
| 1768 | lua_Debug ar; |
| 1769 | char *err = NULL; |
| 1770 | struct arg args[2]; |
| 1771 | |
| 1772 | if (lua_gettop(L) < 1 || lua_gettop(L) > 2) |
| 1773 | WILL_LJMP(luaL_error(L, "'new' needs at least 1 argument.")); |
| 1774 | |
| 1775 | fn = MAY_LJMP(luaL_checkstring(L, 1)); |
| 1776 | |
| 1777 | if (lua_gettop(L) >= 2) { |
| 1778 | match = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 1779 | if (match < 0 || match >= PAT_MATCH_NUM) |
| 1780 | WILL_LJMP(luaL_error(L, "'new' needs a valid match method.")); |
| 1781 | } |
| 1782 | |
| 1783 | /* Get Lua filename and line number. */ |
| 1784 | if (lua_getstack(L, 1, &ar)) { /* check function at level */ |
| 1785 | lua_getinfo(L, "Sl", &ar); /* get info about it */ |
| 1786 | if (ar.currentline > 0) { /* is there info? */ |
| 1787 | file = ar.short_src; |
| 1788 | line = ar.currentline; |
| 1789 | } |
| 1790 | } |
| 1791 | |
| 1792 | /* fill fake sample_conv struct. */ |
| 1793 | conv.kw = ""; /* unused. */ |
| 1794 | conv.process = NULL; /* unused. */ |
| 1795 | conv.arg_mask = 0; /* unused. */ |
| 1796 | conv.val_args = NULL; /* unused. */ |
| 1797 | conv.out_type = SMP_T_STR; |
| 1798 | conv.private = (void *)(long)match; |
| 1799 | switch (match) { |
| 1800 | case PAT_MATCH_STR: conv.in_type = SMP_T_STR; break; |
| 1801 | case PAT_MATCH_BEG: conv.in_type = SMP_T_STR; break; |
| 1802 | case PAT_MATCH_SUB: conv.in_type = SMP_T_STR; break; |
| 1803 | case PAT_MATCH_DIR: conv.in_type = SMP_T_STR; break; |
| 1804 | case PAT_MATCH_DOM: conv.in_type = SMP_T_STR; break; |
| 1805 | case PAT_MATCH_END: conv.in_type = SMP_T_STR; break; |
| 1806 | case PAT_MATCH_REG: conv.in_type = SMP_T_STR; break; |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 1807 | case PAT_MATCH_INT: conv.in_type = SMP_T_SINT; break; |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1808 | case PAT_MATCH_IP: conv.in_type = SMP_T_ADDR; break; |
| 1809 | default: |
| 1810 | WILL_LJMP(luaL_error(L, "'new' doesn't support this match mode.")); |
| 1811 | } |
| 1812 | |
| 1813 | /* fill fake args. */ |
| 1814 | args[0].type = ARGT_STR; |
Christopher Faulet | 73292e9 | 2020-08-06 08:40:09 +0200 | [diff] [blame] | 1815 | args[0].data.str.area = strdup(fn); |
| 1816 | args[0].data.str.data = strlen(fn); |
| 1817 | args[0].data.str.size = args[0].data.str.data+1; |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1818 | args[1].type = ARGT_STOP; |
| 1819 | |
| 1820 | /* load the map. */ |
| 1821 | if (!sample_load_map(args, &conv, file, line, &err)) { |
Ilya Shipitsin | b8888ab | 2021-01-06 21:20:16 +0500 | [diff] [blame] | 1822 | /* error case: we can't use luaL_error because we must |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1823 | * free the err variable. |
| 1824 | */ |
| 1825 | luaL_where(L, 1); |
| 1826 | lua_pushfstring(L, "'new': %s.", err); |
| 1827 | lua_concat(L, 2); |
| 1828 | free(err); |
Christopher Faulet | 6ad7df4 | 2020-08-07 11:45:18 +0200 | [diff] [blame] | 1829 | chunk_destroy(&args[0].data.str); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1830 | WILL_LJMP(lua_error(L)); |
| 1831 | } |
| 1832 | |
| 1833 | /* create the lua object. */ |
| 1834 | lua_newtable(L); |
| 1835 | lua_pushlightuserdata(L, args[0].data.map); |
| 1836 | lua_rawseti(L, -2, 0); |
| 1837 | |
| 1838 | /* Pop a class Map metatable and affect it to the userdata. */ |
| 1839 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_map_ref); |
| 1840 | lua_setmetatable(L, -2); |
| 1841 | |
| 1842 | |
| 1843 | return 1; |
| 1844 | } |
| 1845 | |
| 1846 | __LJMP static inline int _hlua_map_lookup(struct lua_State *L, int str) |
| 1847 | { |
| 1848 | struct map_descriptor *desc; |
| 1849 | struct pattern *pat; |
| 1850 | struct sample smp; |
| 1851 | |
| 1852 | MAY_LJMP(check_args(L, 2, "lookup")); |
| 1853 | desc = MAY_LJMP(hlua_checkmap(L, 1)); |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 1854 | if (desc->pat.expect_type == SMP_T_SINT) { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1855 | smp.data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1856 | smp.data.u.sint = MAY_LJMP(luaL_checkinteger(L, 2)); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1857 | } |
| 1858 | else { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1859 | smp.data.type = SMP_T_STR; |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1860 | smp.flags = SMP_F_CONST; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1861 | 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] | 1862 | smp.data.u.str.size = smp.data.u.str.data + 1; |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1863 | } |
| 1864 | |
| 1865 | pat = pattern_exec_match(&desc->pat, &smp, 1); |
Thierry FOURNIER | 503bb09 | 2015-08-19 08:35:43 +0200 | [diff] [blame] | 1866 | if (!pat || !pat->data) { |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1867 | if (str) |
| 1868 | lua_pushstring(L, ""); |
| 1869 | else |
| 1870 | lua_pushnil(L); |
| 1871 | return 1; |
| 1872 | } |
| 1873 | |
| 1874 | /* 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] | 1875 | 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] | 1876 | return 1; |
| 1877 | } |
| 1878 | |
| 1879 | __LJMP static int hlua_map_lookup(struct lua_State *L) |
| 1880 | { |
| 1881 | return _hlua_map_lookup(L, 0); |
| 1882 | } |
| 1883 | |
| 1884 | __LJMP static int hlua_map_slookup(struct lua_State *L) |
| 1885 | { |
| 1886 | return _hlua_map_lookup(L, 1); |
| 1887 | } |
| 1888 | |
| 1889 | /* |
| 1890 | * |
| 1891 | * |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1892 | * Class Socket |
| 1893 | * |
| 1894 | * |
| 1895 | */ |
| 1896 | |
| 1897 | __LJMP static struct hlua_socket *hlua_checksocket(lua_State *L, int ud) |
| 1898 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 1899 | return MAY_LJMP(hlua_checkudata(L, ud, class_socket_ref)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1900 | } |
| 1901 | |
| 1902 | /* 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] | 1903 | * connection. It is used for notify space available to send or data |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1904 | * received. |
| 1905 | */ |
Willy Tarreau | 00a37f0 | 2015-04-13 12:05:19 +0200 | [diff] [blame] | 1906 | static void hlua_socket_handler(struct appctx *appctx) |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1907 | { |
Willy Tarreau | 00a37f0 | 2015-04-13 12:05:19 +0200 | [diff] [blame] | 1908 | struct stream_interface *si = appctx->owner; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1909 | |
Thierry FOURNIER | b13b20a | 2017-07-16 20:48:54 +0200 | [diff] [blame] | 1910 | if (appctx->ctx.hlua_cosocket.die) { |
| 1911 | si_shutw(si); |
| 1912 | si_shutr(si); |
| 1913 | si_ic(si)->flags |= CF_READ_NULL; |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1914 | notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read); |
| 1915 | notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write); |
Thierry FOURNIER | b13b20a | 2017-07-16 20:48:54 +0200 | [diff] [blame] | 1916 | stream_shutdown(si_strm(si), SF_ERR_KILLED); |
| 1917 | } |
| 1918 | |
Ilya Shipitsin | b8888ab | 2021-01-06 21:20:16 +0500 | [diff] [blame] | 1919 | /* If we can't write, wakeup the pending write signals. */ |
Thierry FOURNIER | 6d695e6 | 2015-09-27 19:29:38 +0200 | [diff] [blame] | 1920 | if (channel_output_closed(si_ic(si))) |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1921 | notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write); |
Thierry FOURNIER | 6d695e6 | 2015-09-27 19:29:38 +0200 | [diff] [blame] | 1922 | |
Ilya Shipitsin | b8888ab | 2021-01-06 21:20:16 +0500 | [diff] [blame] | 1923 | /* If we can't read, wakeup the pending read signals. */ |
Thierry FOURNIER | 6d695e6 | 2015-09-27 19:29:38 +0200 | [diff] [blame] | 1924 | if (channel_input_closed(si_oc(si))) |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1925 | notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read); |
Thierry FOURNIER | 6d695e6 | 2015-09-27 19:29:38 +0200 | [diff] [blame] | 1926 | |
Willy Tarreau | 5a0b25d | 2019-07-18 18:01:14 +0200 | [diff] [blame] | 1927 | /* if the connection is not established, inform the stream that we want |
Thierry FOURNIER | 316e319 | 2015-09-04 18:25:53 +0200 | [diff] [blame] | 1928 | * to be notified whenever the connection completes. |
| 1929 | */ |
Willy Tarreau | 5a0b25d | 2019-07-18 18:01:14 +0200 | [diff] [blame] | 1930 | if (si_opposite(si)->state < SI_ST_EST) { |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 1931 | si_cant_get(si); |
Willy Tarreau | 12c2423 | 2018-12-06 15:29:50 +0100 | [diff] [blame] | 1932 | si_rx_conn_blk(si); |
Willy Tarreau | 3367d41 | 2018-11-15 10:57:41 +0100 | [diff] [blame] | 1933 | si_rx_endp_more(si); |
Willy Tarreau | d4da196 | 2015-04-20 01:31:23 +0200 | [diff] [blame] | 1934 | return; |
Thierry FOURNIER | 316e319 | 2015-09-04 18:25:53 +0200 | [diff] [blame] | 1935 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1936 | |
| 1937 | /* This function is called after the connect. */ |
Thierry FOURNIER | 18d0990 | 2016-12-16 09:25:38 +0100 | [diff] [blame] | 1938 | appctx->ctx.hlua_cosocket.connected = 1; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1939 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 1940 | /* 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] | 1941 | if (channel_may_recv(si_ic(si))) |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1942 | notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1943 | |
| 1944 | /* Wake the tasks which wants to read if the buffer contains data. */ |
Thierry FOURNIER | eba6f64 | 2015-09-26 22:01:07 +0200 | [diff] [blame] | 1945 | if (!channel_is_empty(si_oc(si))) |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1946 | notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read); |
Thierry FOURNIER | 101b976 | 2018-05-27 01:27:40 +0200 | [diff] [blame] | 1947 | |
| 1948 | /* Some data were injected in the buffer, notify the stream |
| 1949 | * interface. |
| 1950 | */ |
| 1951 | if (!channel_is_empty(si_ic(si))) |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 1952 | si_update(si); |
Thierry FOURNIER | 101b976 | 2018-05-27 01:27:40 +0200 | [diff] [blame] | 1953 | |
| 1954 | /* If write notifications are registered, we considers we want |
Willy Tarreau | 3367d41 | 2018-11-15 10:57:41 +0100 | [diff] [blame] | 1955 | * to write, so we clear the blocking flag. |
Thierry FOURNIER | 101b976 | 2018-05-27 01:27:40 +0200 | [diff] [blame] | 1956 | */ |
| 1957 | if (notification_registered(&appctx->ctx.hlua_cosocket.wake_on_write)) |
Willy Tarreau | 3367d41 | 2018-11-15 10:57:41 +0100 | [diff] [blame] | 1958 | si_rx_endp_more(si); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1959 | } |
| 1960 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1961 | /* This function is called when the "struct stream" is destroyed. |
| 1962 | * Remove the link from the object to this stream. |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1963 | * Wake all the pending signals. |
| 1964 | */ |
Willy Tarreau | 00a37f0 | 2015-04-13 12:05:19 +0200 | [diff] [blame] | 1965 | static void hlua_socket_release(struct appctx *appctx) |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1966 | { |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 1967 | struct xref *peer; |
| 1968 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1969 | /* Remove my link in the original object. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 1970 | peer = xref_get_peer_and_lock(&appctx->ctx.hlua_cosocket.xref); |
| 1971 | if (peer) |
| 1972 | xref_disconnect(&appctx->ctx.hlua_cosocket.xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1973 | |
| 1974 | /* Wake all the task waiting for me. */ |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1975 | notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read); |
| 1976 | notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1977 | } |
| 1978 | |
| 1979 | /* If the garbage collectio of the object is launch, nobody |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1980 | * uses this object. If the stream does not exists, just quit. |
| 1981 | * Send the shutdown signal to the stream. In some cases, |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1982 | * pending signal can rest in the read and write lists. destroy |
| 1983 | * it. |
| 1984 | */ |
| 1985 | __LJMP static int hlua_socket_gc(lua_State *L) |
| 1986 | { |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 1987 | struct hlua_socket *socket; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1988 | struct appctx *appctx; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1989 | struct xref *peer; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1990 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 1991 | MAY_LJMP(check_args(L, 1, "__gc")); |
| 1992 | |
| 1993 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 1994 | peer = xref_get_peer_and_lock(&socket->xref); |
| 1995 | if (!peer) |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1996 | return 0; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1997 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1998 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1999 | /* Set the flag which destroy the session. */ |
Thierry FOURNIER | b13b20a | 2017-07-16 20:48:54 +0200 | [diff] [blame] | 2000 | appctx->ctx.hlua_cosocket.die = 1; |
| 2001 | appctx_wakeup(appctx); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2002 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2003 | /* Remove all reference between the Lua stack and the coroutine stream. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2004 | xref_disconnect(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2005 | return 0; |
| 2006 | } |
| 2007 | |
| 2008 | /* The close function send shutdown signal and break the |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 2009 | * links between the stream and the object. |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2010 | */ |
sada | 05ed330 | 2018-05-11 11:48:18 -0700 | [diff] [blame] | 2011 | __LJMP static int hlua_socket_close_helper(lua_State *L) |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2012 | { |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2013 | struct hlua_socket *socket; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2014 | struct appctx *appctx; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2015 | struct xref *peer; |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 2016 | struct hlua *hlua; |
| 2017 | |
| 2018 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 2019 | hlua = hlua_gethlua(L); |
| 2020 | if (!hlua) |
| 2021 | return 0; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2022 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2023 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2024 | |
| 2025 | /* Check if we run on the same thread than the xreator thread. |
| 2026 | * We cannot access to the socket if the thread is different. |
| 2027 | */ |
| 2028 | if (socket->tid != tid) |
| 2029 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 2030 | |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2031 | peer = xref_get_peer_and_lock(&socket->xref); |
| 2032 | if (!peer) |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2033 | return 0; |
Willy Tarreau | f31af93 | 2020-01-14 09:59:38 +0100 | [diff] [blame] | 2034 | |
| 2035 | hlua->gc_count--; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2036 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2037 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2038 | /* Set the flag which destroy the session. */ |
Thierry FOURNIER | b13b20a | 2017-07-16 20:48:54 +0200 | [diff] [blame] | 2039 | appctx->ctx.hlua_cosocket.die = 1; |
| 2040 | appctx_wakeup(appctx); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2041 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2042 | /* Remove all reference between the Lua stack and the coroutine stream. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2043 | xref_disconnect(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2044 | return 0; |
| 2045 | } |
| 2046 | |
sada | 05ed330 | 2018-05-11 11:48:18 -0700 | [diff] [blame] | 2047 | /* The close function calls close_helper. |
| 2048 | */ |
| 2049 | __LJMP static int hlua_socket_close(lua_State *L) |
| 2050 | { |
| 2051 | MAY_LJMP(check_args(L, 1, "close")); |
| 2052 | return hlua_socket_close_helper(L); |
| 2053 | } |
| 2054 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2055 | /* This Lua function assumes that the stack contain three parameters. |
| 2056 | * 1 - USERDATA containing a struct socket |
| 2057 | * 2 - INTEGER with values of the macro defined below |
| 2058 | * If the integer is -1, we must read at most one line. |
| 2059 | * If the integer is -2, we ust read all the data until the |
| 2060 | * end of the stream. |
| 2061 | * If the integer is positive value, we must read a number of |
| 2062 | * bytes corresponding to this value. |
| 2063 | */ |
| 2064 | #define HLSR_READ_LINE (-1) |
| 2065 | #define HLSR_READ_ALL (-2) |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2066 | __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] | 2067 | { |
| 2068 | struct hlua_socket *socket = MAY_LJMP(hlua_checksocket(L, 1)); |
| 2069 | int wanted = lua_tointeger(L, 2); |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 2070 | struct hlua *hlua; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2071 | struct appctx *appctx; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 2072 | size_t len; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2073 | int nblk; |
Willy Tarreau | 206ba83 | 2018-06-14 15:27:31 +0200 | [diff] [blame] | 2074 | const char *blk1; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 2075 | size_t len1; |
Willy Tarreau | 206ba83 | 2018-06-14 15:27:31 +0200 | [diff] [blame] | 2076 | const char *blk2; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 2077 | size_t len2; |
Thierry FOURNIER | 0054392 | 2015-03-09 18:35:06 +0100 | [diff] [blame] | 2078 | int skip_at_end = 0; |
Willy Tarreau | 8138967 | 2015-03-10 12:03:52 +0100 | [diff] [blame] | 2079 | struct channel *oc; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2080 | struct stream_interface *si; |
| 2081 | struct stream *s; |
| 2082 | struct xref *peer; |
Thierry FOURNIER | 8c126c7 | 2018-05-25 16:27:44 +0200 | [diff] [blame] | 2083 | int missing_bytes; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2084 | |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 2085 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 2086 | hlua = hlua_gethlua(L); |
| 2087 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2088 | /* Check if this lua stack is schedulable. */ |
| 2089 | if (!hlua || !hlua->task) |
| 2090 | WILL_LJMP(luaL_error(L, "The 'receive' function is only allowed in " |
| 2091 | "'frontend', 'backend' or 'task'")); |
| 2092 | |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2093 | /* Check if we run on the same thread than the xreator thread. |
| 2094 | * We cannot access to the socket if the thread is different. |
| 2095 | */ |
| 2096 | if (socket->tid != tid) |
| 2097 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 2098 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2099 | /* check for connection break. If some data where read, return it. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2100 | peer = xref_get_peer_and_lock(&socket->xref); |
| 2101 | if (!peer) |
| 2102 | goto no_peer; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2103 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
| 2104 | si = appctx->owner; |
| 2105 | s = si_strm(si); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2106 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2107 | oc = &s->res; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2108 | if (wanted == HLSR_READ_LINE) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2109 | /* Read line. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 2110 | nblk = co_getline_nc(oc, &blk1, &len1, &blk2, &len2); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2111 | if (nblk < 0) /* Connection close. */ |
| 2112 | goto connection_closed; |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 2113 | if (nblk == 0) /* No data available. */ |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2114 | goto connection_empty; |
Thierry FOURNIER | 0054392 | 2015-03-09 18:35:06 +0100 | [diff] [blame] | 2115 | |
| 2116 | /* remove final \r\n. */ |
| 2117 | if (nblk == 1) { |
| 2118 | if (blk1[len1-1] == '\n') { |
| 2119 | len1--; |
| 2120 | skip_at_end++; |
| 2121 | if (blk1[len1-1] == '\r') { |
| 2122 | len1--; |
| 2123 | skip_at_end++; |
| 2124 | } |
| 2125 | } |
| 2126 | } |
| 2127 | else { |
| 2128 | if (blk2[len2-1] == '\n') { |
| 2129 | len2--; |
| 2130 | skip_at_end++; |
| 2131 | if (blk2[len2-1] == '\r') { |
| 2132 | len2--; |
| 2133 | skip_at_end++; |
| 2134 | } |
| 2135 | } |
| 2136 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2137 | } |
| 2138 | |
| 2139 | else if (wanted == HLSR_READ_ALL) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2140 | /* Read all the available data. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 2141 | nblk = co_getblk_nc(oc, &blk1, &len1, &blk2, &len2); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2142 | if (nblk < 0) /* Connection close. */ |
| 2143 | goto connection_closed; |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 2144 | if (nblk == 0) /* No data available. */ |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2145 | goto connection_empty; |
| 2146 | } |
| 2147 | |
| 2148 | else { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2149 | /* Read a block of data. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 2150 | nblk = co_getblk_nc(oc, &blk1, &len1, &blk2, &len2); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2151 | if (nblk < 0) /* Connection close. */ |
| 2152 | goto connection_closed; |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 2153 | if (nblk == 0) /* No data available. */ |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2154 | goto connection_empty; |
| 2155 | |
Thierry FOURNIER | 8c126c7 | 2018-05-25 16:27:44 +0200 | [diff] [blame] | 2156 | missing_bytes = wanted - socket->b.n; |
| 2157 | if (len1 > missing_bytes) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2158 | nblk = 1; |
Thierry FOURNIER | 8c126c7 | 2018-05-25 16:27:44 +0200 | [diff] [blame] | 2159 | len1 = missing_bytes; |
| 2160 | } if (nblk == 2 && len1 + len2 > missing_bytes) |
| 2161 | len2 = missing_bytes - len1; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2162 | } |
| 2163 | |
| 2164 | len = len1; |
| 2165 | |
| 2166 | luaL_addlstring(&socket->b, blk1, len1); |
| 2167 | if (nblk == 2) { |
| 2168 | len += len2; |
| 2169 | luaL_addlstring(&socket->b, blk2, len2); |
| 2170 | } |
| 2171 | |
| 2172 | /* Consume data. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 2173 | co_skip(oc, len + skip_at_end); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2174 | |
| 2175 | /* Don't wait anything. */ |
Thierry FOURNIER | 7e4ee47 | 2018-05-25 15:03:50 +0200 | [diff] [blame] | 2176 | appctx_wakeup(appctx); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2177 | |
| 2178 | /* If the pattern reclaim to read all the data |
| 2179 | * in the connection, got out. |
| 2180 | */ |
| 2181 | if (wanted == HLSR_READ_ALL) |
| 2182 | goto connection_empty; |
Thierry FOURNIER | 8c126c7 | 2018-05-25 16:27:44 +0200 | [diff] [blame] | 2183 | else if (wanted >= 0 && socket->b.n < wanted) |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2184 | goto connection_empty; |
| 2185 | |
| 2186 | /* Return result. */ |
| 2187 | luaL_pushresult(&socket->b); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2188 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2189 | return 1; |
| 2190 | |
| 2191 | connection_closed: |
| 2192 | |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2193 | xref_unlock(&socket->xref, peer); |
| 2194 | |
| 2195 | no_peer: |
| 2196 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2197 | /* If the buffer containds data. */ |
| 2198 | if (socket->b.n > 0) { |
| 2199 | luaL_pushresult(&socket->b); |
| 2200 | return 1; |
| 2201 | } |
| 2202 | lua_pushnil(L); |
| 2203 | lua_pushstring(L, "connection closed."); |
| 2204 | return 2; |
| 2205 | |
| 2206 | connection_empty: |
| 2207 | |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2208 | if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_read, hlua->task)) { |
| 2209 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2210 | WILL_LJMP(luaL_error(L, "out of memory")); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2211 | } |
| 2212 | xref_unlock(&socket->xref, peer); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 2213 | 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] | 2214 | return 0; |
| 2215 | } |
| 2216 | |
Tim Duesterhus | b33754c | 2018-01-04 19:32:14 +0100 | [diff] [blame] | 2217 | /* This Lua function gets two parameters. The first one can be string |
| 2218 | * or a number. If the string is "*l", the user requires one line. If |
| 2219 | * 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] | 2220 | * If the value is a number, the user require a number of bytes equal |
| 2221 | * to the value. The default value is "*l" (a line). |
| 2222 | * |
Tim Duesterhus | b33754c | 2018-01-04 19:32:14 +0100 | [diff] [blame] | 2223 | * This parameter with a variable type is converted in integer. This |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2224 | * integer takes this values: |
| 2225 | * -1 : read a line |
| 2226 | * -2 : read all the stream |
Tim Duesterhus | b33754c | 2018-01-04 19:32:14 +0100 | [diff] [blame] | 2227 | * >0 : amount of bytes. |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2228 | * |
Tim Duesterhus | b33754c | 2018-01-04 19:32:14 +0100 | [diff] [blame] | 2229 | * The second parameter is optional. It contains a string that must be |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2230 | * concatenated with the read data. |
| 2231 | */ |
| 2232 | __LJMP static int hlua_socket_receive(struct lua_State *L) |
| 2233 | { |
| 2234 | int wanted = HLSR_READ_LINE; |
| 2235 | const char *pattern; |
Christopher Faulet | c31b200 | 2021-05-03 10:11:13 +0200 | [diff] [blame] | 2236 | int lastarg, type; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2237 | char *error; |
| 2238 | size_t len; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2239 | struct hlua_socket *socket; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2240 | |
| 2241 | if (lua_gettop(L) < 1 || lua_gettop(L) > 3) |
| 2242 | WILL_LJMP(luaL_error(L, "The 'receive' function requires between 1 and 3 arguments.")); |
| 2243 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2244 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2245 | |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2246 | /* Check if we run on the same thread than the xreator thread. |
| 2247 | * We cannot access to the socket if the thread is different. |
| 2248 | */ |
| 2249 | if (socket->tid != tid) |
| 2250 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 2251 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2252 | /* check for pattern. */ |
| 2253 | if (lua_gettop(L) >= 2) { |
| 2254 | type = lua_type(L, 2); |
| 2255 | if (type == LUA_TSTRING) { |
| 2256 | pattern = lua_tostring(L, 2); |
| 2257 | if (strcmp(pattern, "*a") == 0) |
| 2258 | wanted = HLSR_READ_ALL; |
| 2259 | else if (strcmp(pattern, "*l") == 0) |
| 2260 | wanted = HLSR_READ_LINE; |
| 2261 | else { |
| 2262 | wanted = strtoll(pattern, &error, 10); |
| 2263 | if (*error != '\0') |
| 2264 | WILL_LJMP(luaL_error(L, "Unsupported pattern.")); |
| 2265 | } |
| 2266 | } |
| 2267 | else if (type == LUA_TNUMBER) { |
| 2268 | wanted = lua_tointeger(L, 2); |
| 2269 | if (wanted < 0) |
| 2270 | WILL_LJMP(luaL_error(L, "Unsupported size.")); |
| 2271 | } |
| 2272 | } |
| 2273 | |
| 2274 | /* Set pattern. */ |
| 2275 | lua_pushinteger(L, wanted); |
Tim Duesterhus | c6e377e | 2018-01-04 19:32:13 +0100 | [diff] [blame] | 2276 | |
| 2277 | /* Check if we would replace the top by itself. */ |
| 2278 | if (lua_gettop(L) != 2) |
| 2279 | lua_replace(L, 2); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2280 | |
Christopher Faulet | c31b200 | 2021-05-03 10:11:13 +0200 | [diff] [blame] | 2281 | /* Save index of the top of the stack because since buffers are used, it |
| 2282 | * may change |
| 2283 | */ |
| 2284 | lastarg = lua_gettop(L); |
| 2285 | |
Tim Duesterhus | b33754c | 2018-01-04 19:32:14 +0100 | [diff] [blame] | 2286 | /* init buffer, and fill it with prefix. */ |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2287 | luaL_buffinit(L, &socket->b); |
| 2288 | |
| 2289 | /* Check prefix. */ |
Christopher Faulet | c31b200 | 2021-05-03 10:11:13 +0200 | [diff] [blame] | 2290 | if (lastarg >= 3) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2291 | if (lua_type(L, 3) != LUA_TSTRING) |
| 2292 | WILL_LJMP(luaL_error(L, "Expect a 'string' for the prefix")); |
| 2293 | pattern = lua_tolstring(L, 3, &len); |
| 2294 | luaL_addlstring(&socket->b, pattern, len); |
| 2295 | } |
| 2296 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2297 | return __LJMP(hlua_socket_receive_yield(L, 0, 0)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2298 | } |
| 2299 | |
| 2300 | /* Write the Lua input string in the output buffer. |
Mark Lakes | 22154b4 | 2018-01-29 14:38:40 -0800 | [diff] [blame] | 2301 | * This function returns a yield if no space is available. |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2302 | */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2303 | 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] | 2304 | { |
| 2305 | struct hlua_socket *socket; |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 2306 | struct hlua *hlua; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2307 | struct appctx *appctx; |
| 2308 | size_t buf_len; |
| 2309 | const char *buf; |
| 2310 | int len; |
| 2311 | int send_len; |
| 2312 | int sent; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2313 | struct xref *peer; |
| 2314 | struct stream_interface *si; |
| 2315 | struct stream *s; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2316 | |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 2317 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 2318 | hlua = hlua_gethlua(L); |
| 2319 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2320 | /* Check if this lua stack is schedulable. */ |
| 2321 | if (!hlua || !hlua->task) |
| 2322 | WILL_LJMP(luaL_error(L, "The 'write' function is only allowed in " |
| 2323 | "'frontend', 'backend' or 'task'")); |
| 2324 | |
| 2325 | /* Get object */ |
| 2326 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
| 2327 | buf = MAY_LJMP(luaL_checklstring(L, 2, &buf_len)); |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2328 | sent = MAY_LJMP(luaL_checkinteger(L, 3)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2329 | |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2330 | /* Check if we run on the same thread than the xreator thread. |
| 2331 | * We cannot access to the socket if the thread is different. |
| 2332 | */ |
| 2333 | if (socket->tid != tid) |
| 2334 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 2335 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2336 | /* check for connection break. If some data where read, return it. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2337 | peer = xref_get_peer_and_lock(&socket->xref); |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2338 | if (!peer) { |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2339 | lua_pushinteger(L, -1); |
| 2340 | return 1; |
| 2341 | } |
| 2342 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
| 2343 | si = appctx->owner; |
| 2344 | s = si_strm(si); |
| 2345 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2346 | /* Check for connection close. */ |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2347 | if (channel_output_closed(&s->req)) { |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2348 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2349 | lua_pushinteger(L, -1); |
| 2350 | return 1; |
| 2351 | } |
| 2352 | |
| 2353 | /* Update the input buffer data. */ |
| 2354 | buf += sent; |
| 2355 | send_len = buf_len - sent; |
| 2356 | |
| 2357 | /* All the data are sent. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2358 | if (sent >= buf_len) { |
| 2359 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2360 | return 1; /* Implicitly return the length sent. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2361 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2362 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 2363 | /* Check if the buffer is available because HAProxy doesn't allocate |
Thierry FOURNIER | 486d52a | 2015-03-09 17:51:43 +0100 | [diff] [blame] | 2364 | * the request buffer if its not required. |
| 2365 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2366 | if (s->req.buf.size == 0) { |
Willy Tarreau | 581abd3 | 2018-10-25 10:21:41 +0200 | [diff] [blame] | 2367 | if (!si_alloc_ibuf(si, &appctx->buffer_wait)) |
Christopher Faulet | 33834b1 | 2016-12-19 09:29:06 +0100 | [diff] [blame] | 2368 | goto hlua_socket_write_yield_return; |
Thierry FOURNIER | 486d52a | 2015-03-09 17:51:43 +0100 | [diff] [blame] | 2369 | } |
| 2370 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 2371 | /* Check for available space. */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2372 | len = b_room(&s->req.buf); |
Christopher Faulet | 33834b1 | 2016-12-19 09:29:06 +0100 | [diff] [blame] | 2373 | if (len <= 0) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2374 | goto hlua_socket_write_yield_return; |
Christopher Faulet | 33834b1 | 2016-12-19 09:29:06 +0100 | [diff] [blame] | 2375 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2376 | |
| 2377 | /* send data */ |
| 2378 | if (len < send_len) |
| 2379 | send_len = len; |
Thierry FOURNIER | 66b8919 | 2018-05-27 01:14:47 +0200 | [diff] [blame] | 2380 | len = ci_putblk(&s->req, buf, send_len); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2381 | |
| 2382 | /* "Not enough space" (-1), "Buffer too little to contain |
| 2383 | * the data" (-2) are not expected because the available length |
| 2384 | * is tested. |
| 2385 | * Other unknown error are also not expected. |
| 2386 | */ |
| 2387 | if (len <= 0) { |
Willy Tarreau | bc18da1 | 2015-03-13 14:00:47 +0100 | [diff] [blame] | 2388 | if (len == -1) |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2389 | s->req.flags |= CF_WAKE_WRITE; |
Willy Tarreau | bc18da1 | 2015-03-13 14:00:47 +0100 | [diff] [blame] | 2390 | |
sada | 05ed330 | 2018-05-11 11:48:18 -0700 | [diff] [blame] | 2391 | MAY_LJMP(hlua_socket_close_helper(L)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2392 | lua_pop(L, 1); |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2393 | lua_pushinteger(L, -1); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2394 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2395 | return 1; |
| 2396 | } |
| 2397 | |
| 2398 | /* update buffers. */ |
Thierry FOURNIER | 101b976 | 2018-05-27 01:27:40 +0200 | [diff] [blame] | 2399 | appctx_wakeup(appctx); |
Willy Tarreau | de70fa1 | 2015-09-26 11:25:05 +0200 | [diff] [blame] | 2400 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2401 | s->req.rex = TICK_ETERNITY; |
| 2402 | s->res.wex = TICK_ETERNITY; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2403 | |
| 2404 | /* Update length sent. */ |
| 2405 | lua_pop(L, 1); |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2406 | lua_pushinteger(L, sent + len); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2407 | |
| 2408 | /* All the data buffer is sent ? */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2409 | if (sent + len >= buf_len) { |
| 2410 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2411 | return 1; |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2412 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2413 | |
| 2414 | hlua_socket_write_yield_return: |
Thierry FOURNIER | ba42fcd | 2018-05-27 00:59:48 +0200 | [diff] [blame] | 2415 | if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_write, hlua->task)) { |
| 2416 | xref_unlock(&socket->xref, peer); |
| 2417 | WILL_LJMP(luaL_error(L, "out of memory")); |
| 2418 | } |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2419 | xref_unlock(&socket->xref, peer); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 2420 | 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] | 2421 | return 0; |
| 2422 | } |
| 2423 | |
| 2424 | /* This function initiate the send of data. It just check the input |
| 2425 | * parameters and push an integer in the Lua stack that contain the |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 2426 | * 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] | 2427 | * "hlua_socket_write_yield" that can yield. |
| 2428 | * |
| 2429 | * The Lua function gets between 3 and 4 parameters. The first one is |
| 2430 | * the associated object. The second is a string buffer. The third is |
| 2431 | * a facultative integer that represents where is the buffer position |
| 2432 | * of the start of the data that can send. The first byte is the |
| 2433 | * position "1". The default value is "1". The fourth argument is a |
| 2434 | * facultative integer that represents where is the buffer position |
| 2435 | * of the end of the data that can send. The default is the last byte. |
| 2436 | */ |
| 2437 | static int hlua_socket_send(struct lua_State *L) |
| 2438 | { |
| 2439 | int i; |
| 2440 | int j; |
| 2441 | const char *buf; |
| 2442 | size_t buf_len; |
| 2443 | |
| 2444 | /* Check number of arguments. */ |
| 2445 | if (lua_gettop(L) < 2 || lua_gettop(L) > 4) |
| 2446 | WILL_LJMP(luaL_error(L, "'send' needs between 2 and 4 arguments")); |
| 2447 | |
| 2448 | /* Get the string. */ |
| 2449 | buf = MAY_LJMP(luaL_checklstring(L, 2, &buf_len)); |
| 2450 | |
| 2451 | /* Get and check j. */ |
| 2452 | if (lua_gettop(L) == 4) { |
| 2453 | j = MAY_LJMP(luaL_checkinteger(L, 4)); |
| 2454 | if (j < 0) |
| 2455 | j = buf_len + j + 1; |
| 2456 | if (j > buf_len) |
| 2457 | j = buf_len + 1; |
| 2458 | lua_pop(L, 1); |
| 2459 | } |
| 2460 | else |
| 2461 | j = buf_len; |
| 2462 | |
| 2463 | /* Get and check i. */ |
| 2464 | if (lua_gettop(L) == 3) { |
| 2465 | i = MAY_LJMP(luaL_checkinteger(L, 3)); |
| 2466 | if (i < 0) |
| 2467 | i = buf_len + i + 1; |
| 2468 | if (i > buf_len) |
| 2469 | i = buf_len + 1; |
| 2470 | lua_pop(L, 1); |
| 2471 | } else |
| 2472 | i = 1; |
| 2473 | |
| 2474 | /* Check bth i and j. */ |
| 2475 | if (i > j) { |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2476 | lua_pushinteger(L, 0); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2477 | return 1; |
| 2478 | } |
| 2479 | if (i == 0 && j == 0) { |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2480 | lua_pushinteger(L, 0); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2481 | return 1; |
| 2482 | } |
| 2483 | if (i == 0) |
| 2484 | i = 1; |
| 2485 | if (j == 0) |
| 2486 | j = 1; |
| 2487 | |
| 2488 | /* Pop the string. */ |
| 2489 | lua_pop(L, 1); |
| 2490 | |
| 2491 | /* Update the buffer length. */ |
| 2492 | buf += i - 1; |
| 2493 | buf_len = j - i + 1; |
| 2494 | lua_pushlstring(L, buf, buf_len); |
| 2495 | |
| 2496 | /* This unsigned is used to remember the amount of sent data. */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2497 | lua_pushinteger(L, 0); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2498 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2499 | return MAY_LJMP(hlua_socket_write_yield(L, 0, 0)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2500 | } |
| 2501 | |
Willy Tarreau | 22b0a68 | 2015-06-17 19:43:49 +0200 | [diff] [blame] | 2502 | #define SOCKET_INFO_MAX_LEN sizeof("[0000:0000:0000:0000:0000:0000:0000:0000]:12345") |
Christopher Faulet | e6465b3 | 2021-10-22 15:36:08 +0200 | [diff] [blame] | 2503 | __LJMP static inline int hlua_socket_info(struct lua_State *L, const struct sockaddr_storage *addr) |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2504 | { |
| 2505 | static char buffer[SOCKET_INFO_MAX_LEN]; |
| 2506 | int ret; |
| 2507 | int len; |
| 2508 | char *p; |
| 2509 | |
| 2510 | ret = addr_to_str(addr, buffer+1, SOCKET_INFO_MAX_LEN-1); |
| 2511 | if (ret <= 0) { |
| 2512 | lua_pushnil(L); |
| 2513 | return 1; |
| 2514 | } |
| 2515 | |
| 2516 | if (ret == AF_UNIX) { |
| 2517 | lua_pushstring(L, buffer+1); |
| 2518 | return 1; |
| 2519 | } |
| 2520 | else if (ret == AF_INET6) { |
| 2521 | buffer[0] = '['; |
| 2522 | len = strlen(buffer); |
| 2523 | buffer[len] = ']'; |
| 2524 | len++; |
| 2525 | buffer[len] = ':'; |
| 2526 | len++; |
| 2527 | p = buffer; |
| 2528 | } |
| 2529 | else if (ret == AF_INET) { |
| 2530 | p = buffer + 1; |
| 2531 | len = strlen(p); |
| 2532 | p[len] = ':'; |
| 2533 | len++; |
| 2534 | } |
| 2535 | else { |
| 2536 | lua_pushnil(L); |
| 2537 | return 1; |
| 2538 | } |
| 2539 | |
| 2540 | if (port_to_str(addr, p + len, SOCKET_INFO_MAX_LEN-1 - len) <= 0) { |
| 2541 | lua_pushnil(L); |
| 2542 | return 1; |
| 2543 | } |
| 2544 | |
| 2545 | lua_pushstring(L, p); |
| 2546 | return 1; |
| 2547 | } |
| 2548 | |
| 2549 | /* Returns information about the peer of the connection. */ |
| 2550 | __LJMP static int hlua_socket_getpeername(struct lua_State *L) |
| 2551 | { |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2552 | struct hlua_socket *socket; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2553 | struct xref *peer; |
| 2554 | struct appctx *appctx; |
| 2555 | struct stream_interface *si; |
Christopher Faulet | 16f16af | 2021-10-27 09:34:56 +0200 | [diff] [blame] | 2556 | const struct sockaddr_storage *dst; |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2557 | int ret; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2558 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2559 | MAY_LJMP(check_args(L, 1, "getpeername")); |
| 2560 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2561 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2562 | |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2563 | /* Check if we run on the same thread than the xreator thread. |
| 2564 | * We cannot access to the socket if the thread is different. |
| 2565 | */ |
| 2566 | if (socket->tid != tid) |
| 2567 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 2568 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2569 | /* check for connection break. If some data where read, return it. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2570 | peer = xref_get_peer_and_lock(&socket->xref); |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2571 | if (!peer) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2572 | lua_pushnil(L); |
| 2573 | return 1; |
| 2574 | } |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2575 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
| 2576 | si = appctx->owner; |
Christopher Faulet | 16f16af | 2021-10-27 09:34:56 +0200 | [diff] [blame] | 2577 | dst = si_dst(si_opposite(si)); |
| 2578 | if (!dst) { |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2579 | xref_unlock(&socket->xref, peer); |
Willy Tarreau | a71f642 | 2016-11-16 17:00:14 +0100 | [diff] [blame] | 2580 | lua_pushnil(L); |
| 2581 | return 1; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2582 | } |
| 2583 | |
Christopher Faulet | 16f16af | 2021-10-27 09:34:56 +0200 | [diff] [blame] | 2584 | ret = MAY_LJMP(hlua_socket_info(L, dst)); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2585 | xref_unlock(&socket->xref, peer); |
| 2586 | return ret; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2587 | } |
| 2588 | |
| 2589 | /* Returns information about my connection side. */ |
| 2590 | static int hlua_socket_getsockname(struct lua_State *L) |
| 2591 | { |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2592 | struct hlua_socket *socket; |
| 2593 | struct connection *conn; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2594 | struct appctx *appctx; |
| 2595 | struct xref *peer; |
| 2596 | struct stream_interface *si; |
| 2597 | struct stream *s; |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2598 | int ret; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2599 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2600 | MAY_LJMP(check_args(L, 1, "getsockname")); |
| 2601 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2602 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2603 | |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2604 | /* Check if we run on the same thread than the xreator thread. |
| 2605 | * We cannot access to the socket if the thread is different. |
| 2606 | */ |
| 2607 | if (socket->tid != tid) |
| 2608 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 2609 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2610 | /* check for connection break. If some data where read, return it. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2611 | peer = xref_get_peer_and_lock(&socket->xref); |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2612 | if (!peer) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2613 | lua_pushnil(L); |
| 2614 | return 1; |
| 2615 | } |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2616 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
| 2617 | si = appctx->owner; |
| 2618 | s = si_strm(si); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2619 | |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 2620 | conn = cs_conn(objt_cs(s->si[1].end)); |
Willy Tarreau | 5a0b25d | 2019-07-18 18:01:14 +0200 | [diff] [blame] | 2621 | if (!conn || !conn_get_src(conn)) { |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2622 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2623 | lua_pushnil(L); |
| 2624 | return 1; |
| 2625 | } |
| 2626 | |
Willy Tarreau | 9da9a6f | 2019-07-17 14:49:44 +0200 | [diff] [blame] | 2627 | ret = hlua_socket_info(L, conn->src); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2628 | xref_unlock(&socket->xref, peer); |
| 2629 | return ret; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2630 | } |
| 2631 | |
| 2632 | /* This struct define the applet. */ |
Willy Tarreau | 3057645 | 2015-04-13 13:50:30 +0200 | [diff] [blame] | 2633 | static struct applet update_applet = { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2634 | .obj_type = OBJ_TYPE_APPLET, |
| 2635 | .name = "<LUA_TCP>", |
| 2636 | .fct = hlua_socket_handler, |
| 2637 | .release = hlua_socket_release, |
| 2638 | }; |
| 2639 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2640 | __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] | 2641 | { |
| 2642 | struct hlua_socket *socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 2643 | struct hlua *hlua; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2644 | struct xref *peer; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2645 | struct appctx *appctx; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2646 | struct stream_interface *si; |
| 2647 | struct stream *s; |
| 2648 | |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 2649 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 2650 | hlua = hlua_gethlua(L); |
| 2651 | if (!hlua) |
| 2652 | return 0; |
| 2653 | |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2654 | /* Check if we run on the same thread than the xreator thread. |
| 2655 | * We cannot access to the socket if the thread is different. |
| 2656 | */ |
| 2657 | if (socket->tid != tid) |
| 2658 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 2659 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2660 | /* check for connection break. If some data where read, return it. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2661 | peer = xref_get_peer_and_lock(&socket->xref); |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2662 | if (!peer) { |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2663 | lua_pushnil(L); |
| 2664 | lua_pushstring(L, "Can't connect"); |
| 2665 | return 2; |
| 2666 | } |
| 2667 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
| 2668 | si = appctx->owner; |
| 2669 | s = si_strm(si); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2670 | |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2671 | /* Check if we run on the same thread than the xreator thread. |
| 2672 | * We cannot access to the socket if the thread is different. |
| 2673 | */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2674 | if (socket->tid != tid) { |
| 2675 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2676 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2677 | } |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2678 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2679 | /* Check for connection close. */ |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2680 | if (!hlua || channel_output_closed(&s->req)) { |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2681 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2682 | lua_pushnil(L); |
| 2683 | lua_pushstring(L, "Can't connect"); |
| 2684 | return 2; |
| 2685 | } |
| 2686 | |
Willy Tarreau | e09101e | 2018-10-16 17:37:12 +0200 | [diff] [blame] | 2687 | appctx = __objt_appctx(s->si[0].end); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2688 | |
| 2689 | /* Check for connection established. */ |
Thierry FOURNIER | 18d0990 | 2016-12-16 09:25:38 +0100 | [diff] [blame] | 2690 | if (appctx->ctx.hlua_cosocket.connected) { |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2691 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2692 | lua_pushinteger(L, 1); |
| 2693 | return 1; |
| 2694 | } |
| 2695 | |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2696 | if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_write, hlua->task)) { |
| 2697 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2698 | WILL_LJMP(luaL_error(L, "out of memory error")); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2699 | } |
| 2700 | xref_unlock(&socket->xref, peer); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 2701 | 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] | 2702 | return 0; |
| 2703 | } |
| 2704 | |
| 2705 | /* This function fail or initite the connection. */ |
| 2706 | __LJMP static int hlua_socket_connect(struct lua_State *L) |
| 2707 | { |
| 2708 | struct hlua_socket *socket; |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2709 | int port = -1; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2710 | const char *ip; |
Thierry FOURNIER | 95ad96a | 2015-03-09 18:12:40 +0100 | [diff] [blame] | 2711 | struct hlua *hlua; |
| 2712 | struct appctx *appctx; |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2713 | int low, high; |
| 2714 | struct sockaddr_storage *addr; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2715 | struct xref *peer; |
| 2716 | struct stream_interface *si; |
| 2717 | struct stream *s; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2718 | |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2719 | if (lua_gettop(L) < 2) |
| 2720 | WILL_LJMP(luaL_error(L, "connect: need at least 2 arguments")); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2721 | |
| 2722 | /* Get args. */ |
| 2723 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2724 | |
| 2725 | /* Check if we run on the same thread than the xreator thread. |
| 2726 | * We cannot access to the socket if the thread is different. |
| 2727 | */ |
| 2728 | if (socket->tid != tid) |
| 2729 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 2730 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2731 | ip = MAY_LJMP(luaL_checkstring(L, 2)); |
Tim Duesterhus | 6edab86 | 2018-01-06 19:04:45 +0100 | [diff] [blame] | 2732 | if (lua_gettop(L) >= 3) { |
| 2733 | luaL_Buffer b; |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2734 | port = MAY_LJMP(luaL_checkinteger(L, 3)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2735 | |
Tim Duesterhus | 6edab86 | 2018-01-06 19:04:45 +0100 | [diff] [blame] | 2736 | /* Force the ip to end with a colon, to support IPv6 addresses |
| 2737 | * that are not enclosed within square brackets. |
| 2738 | */ |
| 2739 | if (port > 0) { |
| 2740 | luaL_buffinit(L, &b); |
| 2741 | luaL_addstring(&b, ip); |
| 2742 | luaL_addchar(&b, ':'); |
| 2743 | luaL_pushresult(&b); |
| 2744 | ip = lua_tolstring(L, lua_gettop(L), NULL); |
| 2745 | } |
| 2746 | } |
| 2747 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2748 | /* check for connection break. If some data where read, return it. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2749 | peer = xref_get_peer_and_lock(&socket->xref); |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2750 | if (!peer) { |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2751 | lua_pushnil(L); |
| 2752 | return 1; |
| 2753 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2754 | |
| 2755 | /* Parse ip address. */ |
Willy Tarreau | 5fc9328 | 2020-09-16 18:25:03 +0200 | [diff] [blame] | 2756 | 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] | 2757 | if (!addr) { |
| 2758 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2759 | WILL_LJMP(luaL_error(L, "connect: cannot parse destination address '%s'", ip)); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2760 | } |
Willy Tarreau | 9da9a6f | 2019-07-17 14:49:44 +0200 | [diff] [blame] | 2761 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2762 | /* Set port. */ |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2763 | if (low == 0) { |
Willy Tarreau | 1c8d32b | 2019-07-18 15:47:45 +0200 | [diff] [blame] | 2764 | if (addr->ss_family == AF_INET) { |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2765 | if (port == -1) { |
| 2766 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2767 | WILL_LJMP(luaL_error(L, "connect: port missing")); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2768 | } |
Willy Tarreau | 1c8d32b | 2019-07-18 15:47:45 +0200 | [diff] [blame] | 2769 | ((struct sockaddr_in *)addr)->sin_port = htons(port); |
| 2770 | } else if (addr->ss_family == AF_INET6) { |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2771 | if (port == -1) { |
| 2772 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2773 | WILL_LJMP(luaL_error(L, "connect: port missing")); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2774 | } |
Willy Tarreau | 1c8d32b | 2019-07-18 15:47:45 +0200 | [diff] [blame] | 2775 | ((struct sockaddr_in6 *)addr)->sin6_port = htons(port); |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2776 | } |
| 2777 | } |
Willy Tarreau | 1c8d32b | 2019-07-18 15:47:45 +0200 | [diff] [blame] | 2778 | |
Willy Tarreau | 5a0b25d | 2019-07-18 18:01:14 +0200 | [diff] [blame] | 2779 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
| 2780 | si = appctx->owner; |
| 2781 | s = si_strm(si); |
Willy Tarreau | 1c8d32b | 2019-07-18 15:47:45 +0200 | [diff] [blame] | 2782 | |
Christopher Faulet | 16f16af | 2021-10-27 09:34:56 +0200 | [diff] [blame] | 2783 | if (!sockaddr_alloc(&si_opposite(si)->dst, addr, sizeof(*addr))) { |
Willy Tarreau | 1c8d32b | 2019-07-18 15:47:45 +0200 | [diff] [blame] | 2784 | xref_unlock(&socket->xref, peer); |
| 2785 | WILL_LJMP(luaL_error(L, "connect: internal error")); |
| 2786 | } |
Willy Tarreau | 5a0b25d | 2019-07-18 18:01:14 +0200 | [diff] [blame] | 2787 | s->flags |= SF_ADDR_SET; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2788 | |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 2789 | /* Get hlua struct, or NULL if we execute from main lua state */ |
Thierry FOURNIER | 95ad96a | 2015-03-09 18:12:40 +0100 | [diff] [blame] | 2790 | hlua = hlua_gethlua(L); |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 2791 | if (!hlua) |
| 2792 | return 0; |
Willy Tarreau | bdc97a8 | 2015-08-24 15:42:28 +0200 | [diff] [blame] | 2793 | |
| 2794 | /* inform the stream that we want to be notified whenever the |
| 2795 | * connection completes. |
| 2796 | */ |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 2797 | si_cant_get(&s->si[0]); |
Willy Tarreau | 3367d41 | 2018-11-15 10:57:41 +0100 | [diff] [blame] | 2798 | si_rx_endp_more(&s->si[0]); |
Thierry FOURNIER | 8c8fbbe | 2015-09-26 17:02:35 +0200 | [diff] [blame] | 2799 | appctx_wakeup(appctx); |
Willy Tarreau | bdc97a8 | 2015-08-24 15:42:28 +0200 | [diff] [blame] | 2800 | |
Willy Tarreau | f31af93 | 2020-01-14 09:59:38 +0100 | [diff] [blame] | 2801 | hlua->gc_count++; |
Thierry FOURNIER | 7c39ab4 | 2015-09-27 22:53:33 +0200 | [diff] [blame] | 2802 | |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2803 | if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_write, hlua->task)) { |
| 2804 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 95ad96a | 2015-03-09 18:12:40 +0100 | [diff] [blame] | 2805 | WILL_LJMP(luaL_error(L, "out of memory")); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2806 | } |
| 2807 | xref_unlock(&socket->xref, peer); |
PiBa-NL | 706d5ee | 2018-05-05 23:51:42 +0200 | [diff] [blame] | 2808 | |
| 2809 | task_wakeup(s->task, TASK_WOKEN_INIT); |
| 2810 | /* Return yield waiting for connection. */ |
| 2811 | |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 2812 | 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] | 2813 | |
| 2814 | return 0; |
| 2815 | } |
| 2816 | |
Baptiste Assmann | 84bb493 | 2015-03-02 21:40:06 +0100 | [diff] [blame] | 2817 | #ifdef USE_OPENSSL |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2818 | __LJMP static int hlua_socket_connect_ssl(struct lua_State *L) |
| 2819 | { |
| 2820 | struct hlua_socket *socket; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2821 | struct xref *peer; |
| 2822 | struct appctx *appctx; |
| 2823 | struct stream_interface *si; |
| 2824 | struct stream *s; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2825 | |
| 2826 | MAY_LJMP(check_args(L, 3, "connect_ssl")); |
| 2827 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2828 | |
| 2829 | /* check for connection break. If some data where read, return it. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2830 | peer = xref_get_peer_and_lock(&socket->xref); |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2831 | if (!peer) { |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2832 | lua_pushnil(L); |
| 2833 | return 1; |
| 2834 | } |
| 2835 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
| 2836 | si = appctx->owner; |
| 2837 | s = si_strm(si); |
| 2838 | |
Amaury Denoyelle | 704ba1d | 2021-03-24 17:57:47 +0100 | [diff] [blame] | 2839 | s->target = &socket_ssl->obj_type; |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2840 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2841 | return MAY_LJMP(hlua_socket_connect(L)); |
| 2842 | } |
Baptiste Assmann | 84bb493 | 2015-03-02 21:40:06 +0100 | [diff] [blame] | 2843 | #endif |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2844 | |
| 2845 | __LJMP static int hlua_socket_setoption(struct lua_State *L) |
| 2846 | { |
| 2847 | return 0; |
| 2848 | } |
| 2849 | |
| 2850 | __LJMP static int hlua_socket_settimeout(struct lua_State *L) |
| 2851 | { |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2852 | struct hlua_socket *socket; |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2853 | int tmout; |
Mark Lakes | 56cc125 | 2018-03-27 09:48:06 +0200 | [diff] [blame] | 2854 | double dtmout; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2855 | struct xref *peer; |
| 2856 | struct appctx *appctx; |
| 2857 | struct stream_interface *si; |
| 2858 | struct stream *s; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2859 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2860 | MAY_LJMP(check_args(L, 2, "settimeout")); |
| 2861 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2862 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Mark Lakes | 56cc125 | 2018-03-27 09:48:06 +0200 | [diff] [blame] | 2863 | |
Cyril Bonté | 7ee465f | 2018-08-19 22:08:50 +0200 | [diff] [blame] | 2864 | /* convert the timeout to millis */ |
| 2865 | dtmout = MAY_LJMP(luaL_checknumber(L, 2)) * 1000; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2866 | |
Thierry Fournier | 17a921b | 2018-03-08 09:59:02 +0100 | [diff] [blame] | 2867 | /* Check for negative values */ |
Mark Lakes | 56cc125 | 2018-03-27 09:48:06 +0200 | [diff] [blame] | 2868 | if (dtmout < 0) |
Thierry Fournier | 17a921b | 2018-03-08 09:59:02 +0100 | [diff] [blame] | 2869 | WILL_LJMP(luaL_error(L, "settimeout: cannot set negatives values")); |
| 2870 | |
Mark Lakes | 56cc125 | 2018-03-27 09:48:06 +0200 | [diff] [blame] | 2871 | if (dtmout > INT_MAX) /* overflow check */ |
Cyril Bonté | 7ee465f | 2018-08-19 22:08:50 +0200 | [diff] [blame] | 2872 | 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] | 2873 | |
| 2874 | tmout = MS_TO_TICKS((int)dtmout); |
Cyril Bonté | 7ee465f | 2018-08-19 22:08:50 +0200 | [diff] [blame] | 2875 | if (tmout == 0) |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 2876 | tmout++; /* very small timeouts are adjusted to a minimum of 1ms */ |
Mark Lakes | 56cc125 | 2018-03-27 09:48:06 +0200 | [diff] [blame] | 2877 | |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2878 | /* Check if we run on the same thread than the xreator thread. |
| 2879 | * We cannot access to the socket if the thread is different. |
| 2880 | */ |
| 2881 | if (socket->tid != tid) |
| 2882 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 2883 | |
Mark Lakes | 56cc125 | 2018-03-27 09:48:06 +0200 | [diff] [blame] | 2884 | /* check for connection break. If some data were read, return it. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2885 | peer = xref_get_peer_and_lock(&socket->xref); |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2886 | if (!peer) { |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2887 | hlua_pusherror(L, "socket: not yet initialised, you can't set timeouts."); |
| 2888 | WILL_LJMP(lua_error(L)); |
| 2889 | return 0; |
| 2890 | } |
| 2891 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
| 2892 | si = appctx->owner; |
| 2893 | s = si_strm(si); |
| 2894 | |
Cyril Bonté | 7bb6345 | 2018-08-17 23:51:02 +0200 | [diff] [blame] | 2895 | s->sess->fe->timeout.connect = tmout; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2896 | s->req.rto = tmout; |
| 2897 | s->req.wto = tmout; |
| 2898 | s->res.rto = tmout; |
| 2899 | s->res.wto = tmout; |
Cyril Bonté | 7bb6345 | 2018-08-17 23:51:02 +0200 | [diff] [blame] | 2900 | s->req.rex = tick_add_ifset(now_ms, tmout); |
| 2901 | s->req.wex = tick_add_ifset(now_ms, tmout); |
| 2902 | s->res.rex = tick_add_ifset(now_ms, tmout); |
| 2903 | s->res.wex = tick_add_ifset(now_ms, tmout); |
| 2904 | |
| 2905 | s->task->expire = tick_add_ifset(now_ms, tmout); |
| 2906 | task_queue(s->task); |
| 2907 | |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2908 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2909 | |
Thierry Fournier | e9636f1 | 2018-03-08 09:54:32 +0100 | [diff] [blame] | 2910 | lua_pushinteger(L, 1); |
Tim Duesterhus | 119a5f1 | 2018-01-06 19:16:25 +0100 | [diff] [blame] | 2911 | return 1; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2912 | } |
| 2913 | |
| 2914 | __LJMP static int hlua_socket_new(lua_State *L) |
| 2915 | { |
| 2916 | struct hlua_socket *socket; |
| 2917 | struct appctx *appctx; |
Willy Tarreau | 15b5e14 | 2015-04-04 14:38:25 +0200 | [diff] [blame] | 2918 | struct session *sess; |
Willy Tarreau | 61cf7c8 | 2015-04-06 00:48:33 +0200 | [diff] [blame] | 2919 | struct stream *strm; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2920 | |
| 2921 | /* Check stack size. */ |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 2922 | if (!lua_checkstack(L, 3)) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2923 | hlua_pusherror(L, "socket: full stack"); |
| 2924 | goto out_fail_conf; |
| 2925 | } |
| 2926 | |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 2927 | /* Create the object: obj[0] = userdata. */ |
| 2928 | lua_newtable(L); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2929 | socket = MAY_LJMP(lua_newuserdata(L, sizeof(*socket))); |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 2930 | lua_rawseti(L, -2, 0); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2931 | memset(socket, 0, sizeof(*socket)); |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2932 | socket->tid = tid; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2933 | |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 2934 | /* Check if the various memory pools are initialized. */ |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 2935 | if (!pool_head_stream || !pool_head_buffer) { |
Thierry FOURNIER | 4a6170c | 2015-03-09 17:07:10 +0100 | [diff] [blame] | 2936 | hlua_pusherror(L, "socket: uninitialized pools."); |
| 2937 | goto out_fail_conf; |
| 2938 | } |
| 2939 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 2940 | /* Pop a class stream metatable and affect it to the userdata. */ |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2941 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_socket_ref); |
| 2942 | lua_setmetatable(L, -2); |
| 2943 | |
Willy Tarreau | d420a97 | 2015-04-06 00:39:18 +0200 | [diff] [blame] | 2944 | /* Create the applet context */ |
Willy Tarreau | e612446 | 2021-09-13 10:07:38 +0200 | [diff] [blame] | 2945 | appctx = appctx_new(&update_applet); |
Willy Tarreau | 61cf7c8 | 2015-04-06 00:48:33 +0200 | [diff] [blame] | 2946 | if (!appctx) { |
| 2947 | hlua_pusherror(L, "socket: out of memory"); |
Willy Tarreau | feb7640 | 2015-04-03 14:10:06 +0200 | [diff] [blame] | 2948 | goto out_fail_conf; |
Willy Tarreau | 61cf7c8 | 2015-04-06 00:48:33 +0200 | [diff] [blame] | 2949 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2950 | |
Thierry FOURNIER | 18d0990 | 2016-12-16 09:25:38 +0100 | [diff] [blame] | 2951 | appctx->ctx.hlua_cosocket.connected = 0; |
Thierry FOURNIER | b13b20a | 2017-07-16 20:48:54 +0200 | [diff] [blame] | 2952 | appctx->ctx.hlua_cosocket.die = 0; |
Thierry FOURNIER | 18d0990 | 2016-12-16 09:25:38 +0100 | [diff] [blame] | 2953 | LIST_INIT(&appctx->ctx.hlua_cosocket.wake_on_write); |
| 2954 | LIST_INIT(&appctx->ctx.hlua_cosocket.wake_on_read); |
Willy Tarreau | b2bf833 | 2015-04-04 15:58:58 +0200 | [diff] [blame] | 2955 | |
Willy Tarreau | d420a97 | 2015-04-06 00:39:18 +0200 | [diff] [blame] | 2956 | /* Now create a session, task and stream for this applet */ |
Amaury Denoyelle | 239fdbf | 2021-03-24 10:22:03 +0100 | [diff] [blame] | 2957 | sess = session_new(socket_proxy, NULL, &appctx->obj_type); |
Willy Tarreau | d420a97 | 2015-04-06 00:39:18 +0200 | [diff] [blame] | 2958 | if (!sess) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2959 | hlua_pusherror(L, "socket: out of memory"); |
Willy Tarreau | d420a97 | 2015-04-06 00:39:18 +0200 | [diff] [blame] | 2960 | goto out_fail_sess; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2961 | } |
| 2962 | |
Christopher Faulet | 26256f8 | 2020-09-14 11:40:13 +0200 | [diff] [blame] | 2963 | strm = stream_new(sess, &appctx->obj_type, &BUF_NULL); |
Willy Tarreau | 61cf7c8 | 2015-04-06 00:48:33 +0200 | [diff] [blame] | 2964 | if (!strm) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2965 | hlua_pusherror(L, "socket: out of memory"); |
Willy Tarreau | d420a97 | 2015-04-06 00:39:18 +0200 | [diff] [blame] | 2966 | goto out_fail_stream; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2967 | } |
| 2968 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2969 | /* Initialise cross reference between stream and Lua socket object. */ |
| 2970 | xref_create(&socket->xref, &appctx->ctx.hlua_cosocket.xref); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2971 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2972 | /* Configure "right" stream interface. this "si" is used to connect |
| 2973 | * and retrieve data from the server. The connection is initialized |
| 2974 | * with the "struct server". |
| 2975 | */ |
Willy Tarreau | 61cf7c8 | 2015-04-06 00:48:33 +0200 | [diff] [blame] | 2976 | si_set_state(&strm->si[1], SI_ST_ASS); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2977 | |
| 2978 | /* Force destination server. */ |
Willy Tarreau | 5a0b25d | 2019-07-18 18:01:14 +0200 | [diff] [blame] | 2979 | strm->flags |= SF_DIRECT | SF_ASSIGNED | SF_BE_ASSIGNED; |
Amaury Denoyelle | 704ba1d | 2021-03-24 17:57:47 +0100 | [diff] [blame] | 2980 | strm->target = &socket_tcp->obj_type; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2981 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2982 | return 1; |
| 2983 | |
Willy Tarreau | d420a97 | 2015-04-06 00:39:18 +0200 | [diff] [blame] | 2984 | out_fail_stream: |
Willy Tarreau | 11c3624 | 2015-04-04 15:54:03 +0200 | [diff] [blame] | 2985 | session_free(sess); |
Willy Tarreau | d420a97 | 2015-04-06 00:39:18 +0200 | [diff] [blame] | 2986 | out_fail_sess: |
| 2987 | appctx_free(appctx); |
| 2988 | out_fail_conf: |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2989 | WILL_LJMP(lua_error(L)); |
| 2990 | return 0; |
| 2991 | } |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 2992 | |
| 2993 | /* |
| 2994 | * |
| 2995 | * |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2996 | * Class Channel |
| 2997 | * |
| 2998 | * |
| 2999 | */ |
| 3000 | |
| 3001 | /* Returns the struct hlua_channel join to the class channel in the |
| 3002 | * stack entry "ud" or throws an argument error. |
| 3003 | */ |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3004 | __LJMP static struct channel *hlua_checkchannel(lua_State *L, int ud) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3005 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 3006 | return MAY_LJMP(hlua_checkudata(L, ud, class_channel_ref)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3007 | } |
| 3008 | |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3009 | /* Pushes the channel onto the top of the stack. If the stask does not have a |
| 3010 | * free slots, the function fails and returns 0; |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3011 | */ |
Willy Tarreau | 2a71af4 | 2015-03-10 13:51:50 +0100 | [diff] [blame] | 3012 | static int hlua_channel_new(lua_State *L, struct channel *channel) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3013 | { |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3014 | /* Check stack size. */ |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 3015 | if (!lua_checkstack(L, 3)) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3016 | return 0; |
| 3017 | |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 3018 | lua_newtable(L); |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3019 | lua_pushlightuserdata(L, channel); |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 3020 | lua_rawseti(L, -2, 0); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3021 | |
| 3022 | /* Pop a class sesison metatable and affect it to the userdata. */ |
| 3023 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_channel_ref); |
| 3024 | lua_setmetatable(L, -2); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3025 | return 1; |
| 3026 | } |
| 3027 | |
Christopher Faulet | 9f55a50 | 2020-02-25 15:21:02 +0100 | [diff] [blame] | 3028 | /* Helper function returning a filter attached to a channel at the position <ud> |
| 3029 | * in the stack, filling the current offset and length of the filter. If no |
Ilya Shipitsin | ff0f278 | 2021-08-22 22:18:07 +0500 | [diff] [blame] | 3030 | * filter is attached, NULL is returned and <offset> and <len> are not |
Christopher Faulet | 9f55a50 | 2020-02-25 15:21:02 +0100 | [diff] [blame] | 3031 | * initialized. |
| 3032 | */ |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3033 | static struct filter *hlua_channel_filter(lua_State *L, int ud, struct channel *chn, size_t *offset, size_t *len) |
Christopher Faulet | 9f55a50 | 2020-02-25 15:21:02 +0100 | [diff] [blame] | 3034 | { |
| 3035 | struct filter *filter = NULL; |
| 3036 | |
| 3037 | if (lua_getfield(L, ud, "__filter") == LUA_TLIGHTUSERDATA) { |
| 3038 | struct hlua_flt_ctx *flt_ctx; |
| 3039 | |
| 3040 | filter = lua_touserdata (L, -1); |
| 3041 | flt_ctx = filter->ctx; |
| 3042 | if (hlua_filter_from_payload(filter)) { |
| 3043 | *offset = flt_ctx->cur_off[CHN_IDX(chn)]; |
| 3044 | *len = flt_ctx->cur_len[CHN_IDX(chn)]; |
| 3045 | } |
| 3046 | } |
| 3047 | |
| 3048 | lua_pop(L, 1); |
| 3049 | return filter; |
| 3050 | } |
| 3051 | |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3052 | /* Copies <len> bytes of data present in the channel's buffer, starting at the |
| 3053 | * offset <offset>, and put it in a LUA string variable. It is the caller |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3054 | * responsibility to ensure <len> and <offset> are valid. It always return the |
| 3055 | * length of the built string. <len> may be 0, in this case, an empty string is |
| 3056 | * created and 0 is returned. |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3057 | */ |
| 3058 | static inline int _hlua_channel_dup(struct channel *chn, lua_State *L, size_t offset, size_t len) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3059 | { |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3060 | size_t block1, block2; |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3061 | luaL_Buffer b; |
| 3062 | |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3063 | block1 = len; |
| 3064 | if (block1 > b_contig_data(&chn->buf, b_peek_ofs(&chn->buf, offset))) |
| 3065 | block1 = b_contig_data(&chn->buf, b_peek_ofs(&chn->buf, offset)); |
| 3066 | block2 = len - block1; |
| 3067 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3068 | luaL_buffinit(L, &b); |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3069 | luaL_addlstring(&b, b_peek(&chn->buf, offset), block1); |
| 3070 | if (block2) |
| 3071 | luaL_addlstring(&b, b_orig(&chn->buf), block2); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3072 | luaL_pushresult(&b); |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3073 | return len; |
| 3074 | } |
| 3075 | |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3076 | /* Inserts the string <str> to the channel's buffer at the offset <offset>. This |
| 3077 | * function returns -1 if data cannot be copied. Otherwise, it returns the |
| 3078 | * number of bytes copied. |
| 3079 | */ |
| 3080 | static int _hlua_channel_insert(struct channel *chn, lua_State *L, struct ist str, size_t offset) |
| 3081 | { |
| 3082 | int ret = 0; |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3083 | |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3084 | /* Nothing to do, just return */ |
| 3085 | if (unlikely(istlen(str) == 0)) |
| 3086 | goto end; |
| 3087 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3088 | if (istlen(str) > c_room(chn)) { |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3089 | ret = -1; |
| 3090 | goto end; |
| 3091 | } |
| 3092 | ret = b_insert_blk(&chn->buf, offset, istptr(str), istlen(str)); |
| 3093 | |
| 3094 | end: |
| 3095 | return ret; |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3096 | } |
| 3097 | |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3098 | /* Removes <len> bytes of data at the absolute position <offset>. |
| 3099 | */ |
| 3100 | static void _hlua_channel_delete(struct channel *chn, size_t offset, size_t len) |
| 3101 | { |
| 3102 | size_t end = offset + len; |
| 3103 | |
| 3104 | if (b_peek(&chn->buf, end) != b_tail(&chn->buf)) |
| 3105 | b_move(&chn->buf, b_peek_ofs(&chn->buf, end), |
| 3106 | b_data(&chn->buf) - end, -len); |
| 3107 | b_sub(&chn->buf, len); |
| 3108 | } |
| 3109 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3110 | /* Copies input data in the channel's buffer. It is possible to set a specific |
| 3111 | * offset (0 by default) and a length (all remaining input data starting for the |
| 3112 | * offset by default). If there is not enough input data and more data can be |
| 3113 | * received, this function yields. |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3114 | * |
| 3115 | * From an action, All input data are considered. For a filter, the offset and |
| 3116 | * the length of input data to consider are retrieved from the filter context. |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3117 | */ |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3118 | __LJMP static int hlua_channel_get_data_yield(lua_State *L, int status, lua_KContext ctx) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3119 | { |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3120 | struct channel *chn; |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3121 | struct filter *filter; |
| 3122 | size_t input, output; |
| 3123 | int offset, len; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3124 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3125 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3126 | |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3127 | output = co_data(chn); |
| 3128 | input = ci_data(chn); |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3129 | |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3130 | filter = hlua_channel_filter(L, 1, chn, &output, &input); |
| 3131 | if (filter && !hlua_filter_from_payload(filter)) |
| 3132 | WILL_LJMP(lua_error(L)); |
| 3133 | |
| 3134 | offset = output; |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3135 | if (lua_gettop(L) > 1) { |
| 3136 | offset = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 3137 | if (offset < 0) |
Christopher Faulet | 70c4345 | 2021-08-13 08:11:00 +0200 | [diff] [blame] | 3138 | offset = MAX(0, (int)input + offset); |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3139 | offset += output; |
| 3140 | if (offset < output || offset > input + output) { |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3141 | lua_pushfstring(L, "offset out of range."); |
| 3142 | WILL_LJMP(lua_error(L)); |
| 3143 | } |
| 3144 | } |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3145 | len = output + input - offset; |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3146 | if (lua_gettop(L) == 3) { |
| 3147 | len = MAY_LJMP(luaL_checkinteger(L, 3)); |
| 3148 | if (!len) |
| 3149 | goto dup; |
| 3150 | if (len == -1) |
| 3151 | len = global.tune.bufsize; |
| 3152 | if (len < 0) { |
| 3153 | lua_pushfstring(L, "length out of range."); |
| 3154 | WILL_LJMP(lua_error(L)); |
| 3155 | } |
| 3156 | } |
| 3157 | |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3158 | if (offset + len > output + input) { |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3159 | if (!HLUA_CANT_YIELD(hlua_gethlua(L)) && !channel_input_closed(chn) && channel_may_recv(chn)) { |
| 3160 | /* Yield waiting for more data, as requested */ |
| 3161 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_get_data_yield, TICK_ETERNITY, 0)); |
| 3162 | } |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3163 | len = output + input - offset; |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3164 | } |
| 3165 | |
| 3166 | dup: |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3167 | _hlua_channel_dup(chn, L, offset, len); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3168 | return 1; |
| 3169 | } |
| 3170 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3171 | /* Copies the first line (including the trailing LF) of input data in the |
| 3172 | * channel's buffer. It is possible to set a specific offset (0 by default) and |
| 3173 | * a length (all remaining input data starting for the offset by default). If |
| 3174 | * there is not enough input data and more data can be received, the function |
| 3175 | * yields. If a length is explicitly specified, no more data are |
| 3176 | * copied. Otherwise, if no LF is found and more data can be received, this |
| 3177 | * function yields. |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3178 | * |
| 3179 | * From an action, All input data are considered. For a filter, the offset and |
| 3180 | * the length of input data to consider are retrieved from the filter context. |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3181 | */ |
| 3182 | __LJMP static int hlua_channel_get_line_yield(lua_State *L, int status, lua_KContext ctx) |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3183 | { |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3184 | struct channel *chn; |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3185 | struct filter *filter; |
| 3186 | size_t l, input, output; |
| 3187 | int offset, len; |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3188 | |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3189 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3190 | output = co_data(chn); |
| 3191 | input = ci_data(chn); |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3192 | |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3193 | filter = hlua_channel_filter(L, 1, chn, &output, &input); |
| 3194 | if (filter && !hlua_filter_from_payload(filter)) |
| 3195 | WILL_LJMP(lua_error(L)); |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3196 | |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3197 | offset = output; |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3198 | if (lua_gettop(L) > 1) { |
| 3199 | offset = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 3200 | if (offset < 0) |
Christopher Faulet | 70c4345 | 2021-08-13 08:11:00 +0200 | [diff] [blame] | 3201 | offset = MAX(0, (int)input + offset); |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3202 | offset += output; |
| 3203 | if (offset < output || offset > input + output) { |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3204 | lua_pushfstring(L, "offset out of range."); |
| 3205 | WILL_LJMP(lua_error(L)); |
| 3206 | } |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3207 | } |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3208 | |
| 3209 | len = output + input - offset; |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3210 | if (lua_gettop(L) == 3) { |
| 3211 | len = MAY_LJMP(luaL_checkinteger(L, 3)); |
| 3212 | if (!len) |
| 3213 | goto dup; |
| 3214 | if (len == -1) |
| 3215 | len = global.tune.bufsize; |
| 3216 | if (len < 0) { |
| 3217 | lua_pushfstring(L, "length out of range."); |
| 3218 | WILL_LJMP(lua_error(L)); |
| 3219 | } |
| 3220 | } |
| 3221 | |
| 3222 | for (l = 0; l < len; l++) { |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3223 | if (l + offset >= output + input) |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3224 | break; |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3225 | if (*(b_peek(&chn->buf, offset + l)) == '\n') { |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3226 | len = l+1; |
| 3227 | goto dup; |
| 3228 | } |
| 3229 | } |
| 3230 | |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3231 | if (offset + len > output + input) { |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3232 | if (!HLUA_CANT_YIELD(hlua_gethlua(L)) && !channel_input_closed(chn) && channel_may_recv(chn)) { |
| 3233 | /* Yield waiting for more data */ |
| 3234 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_get_line_yield, TICK_ETERNITY, 0)); |
| 3235 | } |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3236 | len = output + input - offset; |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3237 | } |
| 3238 | |
| 3239 | dup: |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3240 | _hlua_channel_dup(chn, L, offset, len); |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3241 | return 1; |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3242 | } |
| 3243 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3244 | /* [ DEPRECATED ] |
| 3245 | * |
| 3246 | * Duplicate all input data foud in the channel's buffer. The data are not |
| 3247 | * removed from the buffer. This function relies on _hlua_channel_dup(). |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3248 | * |
| 3249 | * From an action, All input data are considered. For a filter, the offset and |
| 3250 | * the length of input data to consider are retrieved from the filter context. |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3251 | */ |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3252 | __LJMP static int hlua_channel_dup(lua_State *L) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3253 | { |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3254 | struct channel *chn; |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3255 | struct filter *filter; |
| 3256 | size_t offset, len; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3257 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3258 | MAY_LJMP(check_args(L, 1, "dup")); |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3259 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3260 | if (IS_HTX_STRM(chn_strm(chn))) { |
| 3261 | lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode."); |
| 3262 | WILL_LJMP(lua_error(L)); |
| 3263 | } |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3264 | |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3265 | offset = co_data(chn); |
| 3266 | len = ci_data(chn); |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3267 | |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3268 | filter = hlua_channel_filter(L, 1, chn, &offset, &len); |
| 3269 | if (filter && !hlua_filter_from_payload(filter)) |
| 3270 | WILL_LJMP(lua_error(L)); |
| 3271 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3272 | if (!ci_data(chn) && channel_input_closed(chn)) { |
| 3273 | lua_pushnil(L); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3274 | return 1; |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3275 | } |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3276 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3277 | _hlua_channel_dup(chn, L, offset, len); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3278 | return 1; |
| 3279 | } |
| 3280 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3281 | /* [ DEPRECATED ] |
| 3282 | * |
| 3283 | * Get all input data foud in the channel's buffer. The data are removed from |
| 3284 | * the buffer after the copy. This function relies on _hlua_channel_dup() and |
| 3285 | * _hlua_channel_delete(). |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3286 | * |
| 3287 | * From an action, All input data are considered. For a filter, the offset and |
| 3288 | * the length of input data to consider are retrieved from the filter context. |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3289 | */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3290 | __LJMP static int hlua_channel_get(lua_State *L) |
| 3291 | { |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3292 | struct channel *chn; |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3293 | struct filter *filter; |
| 3294 | size_t offset, len; |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3295 | int ret; |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3296 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3297 | MAY_LJMP(check_args(L, 1, "get")); |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3298 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
| 3299 | if (IS_HTX_STRM(chn_strm(chn))) { |
| 3300 | lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode."); |
| 3301 | WILL_LJMP(lua_error(L)); |
| 3302 | } |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3303 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3304 | offset = co_data(chn); |
| 3305 | len = ci_data(chn); |
| 3306 | |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3307 | filter = hlua_channel_filter(L, 1, chn, &offset, &len); |
| 3308 | if (filter && !hlua_filter_from_payload(filter)) |
| 3309 | WILL_LJMP(lua_error(L)); |
| 3310 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3311 | if (!ci_data(chn) && channel_input_closed(chn)) { |
| 3312 | lua_pushnil(L); |
| 3313 | return 1; |
| 3314 | } |
| 3315 | |
| 3316 | ret = _hlua_channel_dup(chn, L, offset, len); |
| 3317 | _hlua_channel_delete(chn, offset, ret); |
| 3318 | return 1; |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3319 | } |
| 3320 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3321 | /* This functions consumes and returns one line. If the channel is closed, |
| 3322 | * 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] | 3323 | * 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] | 3324 | * value. |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3325 | * |
| 3326 | * From an action, All input data are considered. For a filter, the offset and |
| 3327 | * the length of input data to consider are retrieved from the filter context. |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3328 | */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3329 | __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] | 3330 | { |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3331 | struct channel *chn; |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3332 | struct filter *filter; |
| 3333 | size_t l, offset, len; |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3334 | int ret; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3335 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3336 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3337 | |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3338 | offset = co_data(chn); |
| 3339 | len = ci_data(chn); |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3340 | |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3341 | filter = hlua_channel_filter(L, 1, chn, &offset, &len); |
| 3342 | if (filter && !hlua_filter_from_payload(filter)) |
| 3343 | WILL_LJMP(lua_error(L)); |
| 3344 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3345 | if (!ci_data(chn) && channel_input_closed(chn)) { |
| 3346 | lua_pushnil(L); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3347 | return 1; |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3348 | } |
| 3349 | |
| 3350 | for (l = 0; l < len; l++) { |
| 3351 | if (*(b_peek(&chn->buf, offset+l)) == '\n') { |
| 3352 | len = l+1; |
| 3353 | goto dup; |
| 3354 | } |
| 3355 | } |
| 3356 | |
| 3357 | if (!HLUA_CANT_YIELD(hlua_gethlua(L)) && !channel_input_closed(chn) && channel_may_recv(chn)) { |
| 3358 | /* Yield waiting for more data */ |
| 3359 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_getline_yield, TICK_ETERNITY, 0)); |
| 3360 | } |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3361 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3362 | dup: |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3363 | ret = _hlua_channel_dup(chn, L, offset, len); |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3364 | _hlua_channel_delete(chn, offset, ret); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3365 | return 1; |
| 3366 | } |
| 3367 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3368 | /* [ DEPRECATED ] |
| 3369 | * |
| 3370 | * Check arguments for the function "hlua_channel_getline_yield". |
| 3371 | */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3372 | __LJMP static int hlua_channel_getline(lua_State *L) |
| 3373 | { |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3374 | struct channel *chn; |
| 3375 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3376 | MAY_LJMP(check_args(L, 1, "getline")); |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3377 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
| 3378 | if (IS_HTX_STRM(chn_strm(chn))) { |
| 3379 | lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode."); |
| 3380 | WILL_LJMP(lua_error(L)); |
| 3381 | } |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3382 | return MAY_LJMP(hlua_channel_getline_yield(L, 0, 0)); |
| 3383 | } |
| 3384 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3385 | /* Retrieves a given amount of input data at the given offset. By default all |
| 3386 | * available input data are returned. The offset may be negactive to start from |
| 3387 | * the end of input data. The length may be -1 to set it to the maximum buffer |
| 3388 | * size. |
| 3389 | */ |
| 3390 | __LJMP static int hlua_channel_get_data(lua_State *L) |
| 3391 | { |
| 3392 | struct channel *chn; |
| 3393 | |
| 3394 | if (lua_gettop(L) < 1 || lua_gettop(L) > 3) |
| 3395 | WILL_LJMP(luaL_error(L, "'data' expects at most 2 arguments")); |
| 3396 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
| 3397 | if (IS_HTX_STRM(chn_strm(chn))) { |
| 3398 | lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode."); |
| 3399 | WILL_LJMP(lua_error(L)); |
| 3400 | } |
| 3401 | return MAY_LJMP(hlua_channel_get_data_yield(L, 0, 0)); |
| 3402 | } |
| 3403 | |
| 3404 | /* Retrieves a given amount of input data at the given offset. By default all |
| 3405 | * available input data are returned. The offset may be negactive to start from |
| 3406 | * the end of input data. The length may be -1 to set it to the maximum buffer |
| 3407 | * size. |
| 3408 | */ |
| 3409 | __LJMP static int hlua_channel_get_line(lua_State *L) |
| 3410 | { |
| 3411 | struct channel *chn; |
| 3412 | |
| 3413 | if (lua_gettop(L) < 1 || lua_gettop(L) > 3) |
| 3414 | WILL_LJMP(luaL_error(L, "'line' expects at most 2 arguments")); |
| 3415 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
| 3416 | if (IS_HTX_STRM(chn_strm(chn))) { |
| 3417 | lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode."); |
| 3418 | WILL_LJMP(lua_error(L)); |
| 3419 | } |
| 3420 | return MAY_LJMP(hlua_channel_get_line_yield(L, 0, 0)); |
| 3421 | } |
| 3422 | |
| 3423 | /* Appends a string into the input side of channel. It returns the length of the |
| 3424 | * written string, or -1 if the channel is closed or if the buffer size is too |
| 3425 | * little for the data. 0 may be returned if nothing is copied. This function |
| 3426 | * does not yield. |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3427 | * |
| 3428 | * For a filter, the context is updated on success. |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3429 | */ |
Christopher Faulet | 23976d9 | 2021-08-06 09:59:49 +0200 | [diff] [blame] | 3430 | __LJMP static int hlua_channel_append(lua_State *L) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3431 | { |
Christopher Faulet | 23976d9 | 2021-08-06 09:59:49 +0200 | [diff] [blame] | 3432 | struct channel *chn; |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3433 | struct filter *filter; |
Christopher Faulet | 23976d9 | 2021-08-06 09:59:49 +0200 | [diff] [blame] | 3434 | const char *str; |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3435 | size_t sz, offset, len; |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3436 | int ret; |
Christopher Faulet | 23976d9 | 2021-08-06 09:59:49 +0200 | [diff] [blame] | 3437 | |
| 3438 | MAY_LJMP(check_args(L, 2, "append")); |
| 3439 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3440 | str = MAY_LJMP(luaL_checklstring(L, 2, &sz)); |
Christopher Faulet | 1bb6afa | 2021-03-08 17:57:53 +0100 | [diff] [blame] | 3441 | if (IS_HTX_STRM(chn_strm(chn))) { |
Thierry Fournier | 77016da | 2020-08-15 14:35:51 +0200 | [diff] [blame] | 3442 | lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode."); |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 3443 | WILL_LJMP(lua_error(L)); |
Thierry Fournier | 77016da | 2020-08-15 14:35:51 +0200 | [diff] [blame] | 3444 | } |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 3445 | |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3446 | offset = co_data(chn); |
| 3447 | len = ci_data(chn); |
| 3448 | |
| 3449 | filter = hlua_channel_filter(L, 1, chn, &offset, &len); |
| 3450 | if (filter && !hlua_filter_from_payload(filter)) |
| 3451 | WILL_LJMP(lua_error(L)); |
| 3452 | |
| 3453 | ret = _hlua_channel_insert(chn, L, ist2(str, sz), offset); |
| 3454 | if (ret > 0 && filter) { |
| 3455 | struct hlua_flt_ctx *flt_ctx = filter->ctx; |
| 3456 | |
| 3457 | flt_update_offsets(filter, chn, ret); |
| 3458 | flt_ctx->cur_len[CHN_IDX(chn)] += ret; |
| 3459 | } |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3460 | lua_pushinteger(L, ret); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3461 | return 1; |
| 3462 | } |
| 3463 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3464 | /* Prepends a string into the input side of channel. It returns the length of the |
| 3465 | * written string, or -1 if the channel is closed or if the buffer size is too |
| 3466 | * little for the data. 0 may be returned if nothing is copied. This function |
| 3467 | * does not yield. |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3468 | * |
| 3469 | * For a filter, the context is updated on success. |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3470 | */ |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3471 | __LJMP static int hlua_channel_prepend(lua_State *L) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3472 | { |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3473 | struct channel *chn; |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3474 | struct filter *filter; |
Christopher Faulet | 23976d9 | 2021-08-06 09:59:49 +0200 | [diff] [blame] | 3475 | const char *str; |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3476 | size_t sz, offset, len; |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3477 | int ret; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3478 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3479 | MAY_LJMP(check_args(L, 2, "prepend")); |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3480 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3481 | str = MAY_LJMP(luaL_checklstring(L, 2, &sz)); |
| 3482 | if (IS_HTX_STRM(chn_strm(chn))) { |
| 3483 | lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode."); |
| 3484 | WILL_LJMP(lua_error(L)); |
| 3485 | } |
| 3486 | |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3487 | offset = co_data(chn); |
| 3488 | len = ci_data(chn); |
| 3489 | |
| 3490 | filter = hlua_channel_filter(L, 1, chn, &offset, &len); |
| 3491 | if (filter && !hlua_filter_from_payload(filter)) |
| 3492 | WILL_LJMP(lua_error(L)); |
| 3493 | |
| 3494 | ret = _hlua_channel_insert(chn, L, ist2(str, sz), offset); |
| 3495 | if (ret > 0 && filter) { |
| 3496 | struct hlua_flt_ctx *flt_ctx = filter->ctx; |
| 3497 | |
| 3498 | flt_update_offsets(filter, chn, ret); |
| 3499 | flt_ctx->cur_len[CHN_IDX(chn)] += ret; |
| 3500 | } |
| 3501 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3502 | lua_pushinteger(L, ret); |
| 3503 | return 1; |
| 3504 | } |
| 3505 | |
| 3506 | /* Inserts a given amount of input data at the given offset by a string |
| 3507 | * content. By default the string is appended at the end of input data. It |
| 3508 | * returns the length of the written string, or -1 if the channel is closed or |
| 3509 | * if the buffer size is too little for the data. |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3510 | * |
| 3511 | * For a filter, the context is updated on success. |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3512 | */ |
| 3513 | __LJMP static int hlua_channel_insert_data(lua_State *L) |
| 3514 | { |
| 3515 | struct channel *chn; |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3516 | struct filter *filter; |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3517 | const char *str; |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3518 | size_t sz, input, output; |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3519 | int ret, offset; |
| 3520 | |
| 3521 | if (lua_gettop(L) < 2 || lua_gettop(L) > 3) |
| 3522 | WILL_LJMP(luaL_error(L, "'insert' expects at least 1 argument and at most 2 arguments")); |
| 3523 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
| 3524 | str = MAY_LJMP(luaL_checklstring(L, 2, &sz)); |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3525 | |
| 3526 | output = co_data(chn); |
| 3527 | input = ci_data(chn); |
| 3528 | |
| 3529 | filter = hlua_channel_filter(L, 1, chn, &output, &input); |
| 3530 | if (filter && !hlua_filter_from_payload(filter)) |
| 3531 | WILL_LJMP(lua_error(L)); |
| 3532 | |
| 3533 | offset = input + output; |
| 3534 | if (lua_gettop(L) > 2) { |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3535 | offset = MAY_LJMP(luaL_checkinteger(L, 3)); |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3536 | if (offset < 0) |
Christopher Faulet | 70c4345 | 2021-08-13 08:11:00 +0200 | [diff] [blame] | 3537 | offset = MAX(0, (int)input + offset); |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3538 | offset += output; |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3539 | if (offset < output || offset > output + input) { |
| 3540 | lua_pushfstring(L, "offset out of range."); |
| 3541 | WILL_LJMP(lua_error(L)); |
| 3542 | } |
| 3543 | } |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3544 | if (IS_HTX_STRM(chn_strm(chn))) { |
| 3545 | lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode."); |
| 3546 | WILL_LJMP(lua_error(L)); |
| 3547 | } |
| 3548 | |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3549 | ret = _hlua_channel_insert(chn, L, ist2(str, sz), offset); |
| 3550 | if (ret > 0 && filter) { |
| 3551 | struct hlua_flt_ctx *flt_ctx = filter->ctx; |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3552 | |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3553 | flt_update_offsets(filter, chn, ret); |
| 3554 | flt_ctx->cur_len[CHN_IDX(chn)] += ret; |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3555 | } |
| 3556 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3557 | lua_pushinteger(L, ret); |
| 3558 | return 1; |
| 3559 | } |
| 3560 | /* Replaces a given amount of input data at the given offset by a string |
| 3561 | * content. By default all remaining data are removed (offset = 0 and len = |
| 3562 | * -1). It returns the length of the written string, or -1 if the channel is |
| 3563 | * closed or if the buffer size is too little for the data. |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3564 | * |
| 3565 | * For a filter, the context is updated on success. |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3566 | */ |
| 3567 | __LJMP static int hlua_channel_set_data(lua_State *L) |
| 3568 | { |
| 3569 | struct channel *chn; |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3570 | struct filter *filter; |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3571 | const char *str; |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3572 | size_t sz, input, output; |
| 3573 | int ret, offset, len; |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3574 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3575 | if (lua_gettop(L) < 2 || lua_gettop(L) > 4) |
| 3576 | WILL_LJMP(luaL_error(L, "'set' expects at least 1 argument and at most 3 arguments")); |
| 3577 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
| 3578 | str = MAY_LJMP(luaL_checklstring(L, 2, &sz)); |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3579 | |
Christopher Faulet | 1bb6afa | 2021-03-08 17:57:53 +0100 | [diff] [blame] | 3580 | if (IS_HTX_STRM(chn_strm(chn))) { |
Thierry Fournier | 77016da | 2020-08-15 14:35:51 +0200 | [diff] [blame] | 3581 | lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode."); |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 3582 | WILL_LJMP(lua_error(L)); |
Thierry Fournier | 77016da | 2020-08-15 14:35:51 +0200 | [diff] [blame] | 3583 | } |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 3584 | |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3585 | output = co_data(chn); |
| 3586 | input = ci_data(chn); |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3587 | |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3588 | filter = hlua_channel_filter(L, 1, chn, &output, &input); |
| 3589 | if (filter && !hlua_filter_from_payload(filter)) |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3590 | WILL_LJMP(lua_error(L)); |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3591 | |
| 3592 | offset = output; |
| 3593 | if (lua_gettop(L) > 2) { |
| 3594 | offset = MAY_LJMP(luaL_checkinteger(L, 3)); |
| 3595 | if (offset < 0) |
Christopher Faulet | 70c4345 | 2021-08-13 08:11:00 +0200 | [diff] [blame] | 3596 | offset = MAX(0, (int)input + offset); |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3597 | offset += output; |
| 3598 | if (offset < output || offset > input + output) { |
| 3599 | lua_pushfstring(L, "offset out of range."); |
| 3600 | WILL_LJMP(lua_error(L)); |
| 3601 | } |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3602 | } |
| 3603 | |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3604 | len = output + input - offset; |
| 3605 | if (lua_gettop(L) == 4) { |
| 3606 | len = MAY_LJMP(luaL_checkinteger(L, 4)); |
| 3607 | if (!len) |
| 3608 | goto set; |
| 3609 | if (len == -1) |
| 3610 | len = output + input - offset; |
| 3611 | if (len < 0 || offset + len > output + input) { |
| 3612 | lua_pushfstring(L, "length out of range."); |
| 3613 | WILL_LJMP(lua_error(L)); |
| 3614 | } |
| 3615 | } |
| 3616 | |
| 3617 | set: |
Christopher Faulet | 23976d9 | 2021-08-06 09:59:49 +0200 | [diff] [blame] | 3618 | /* Be sure we can copied the string once input data will be removed. */ |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3619 | if (sz > c_room(chn) + len) |
Christopher Faulet | 23976d9 | 2021-08-06 09:59:49 +0200 | [diff] [blame] | 3620 | lua_pushinteger(L, -1); |
| 3621 | else { |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3622 | _hlua_channel_delete(chn, offset, len); |
| 3623 | ret = _hlua_channel_insert(chn, L, ist2(str, sz), offset); |
| 3624 | if (filter) { |
| 3625 | struct hlua_flt_ctx *flt_ctx = filter->ctx; |
| 3626 | |
| 3627 | len -= (ret > 0 ? ret : 0); |
| 3628 | flt_update_offsets(filter, chn, -len); |
| 3629 | flt_ctx->cur_len[CHN_IDX(chn)] -= len; |
| 3630 | } |
| 3631 | |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3632 | lua_pushinteger(L, ret); |
Christopher Faulet | 23976d9 | 2021-08-06 09:59:49 +0200 | [diff] [blame] | 3633 | } |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3634 | return 1; |
| 3635 | } |
| 3636 | |
| 3637 | /* Removes a given amount of input data at the given offset. By default all |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3638 | * input data are removed (offset = 0 and len = -1). It returns the amount of |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3639 | * the removed data. |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3640 | * |
| 3641 | * For a filter, the context is updated on success. |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3642 | */ |
| 3643 | __LJMP static int hlua_channel_del_data(lua_State *L) |
| 3644 | { |
| 3645 | struct channel *chn; |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3646 | struct filter *filter; |
| 3647 | size_t input, output; |
| 3648 | int offset, len; |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3649 | |
| 3650 | if (lua_gettop(L) < 1 || lua_gettop(L) > 3) |
| 3651 | WILL_LJMP(luaL_error(L, "'remove' expects at most 2 arguments")); |
| 3652 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3653 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3654 | if (IS_HTX_STRM(chn_strm(chn))) { |
| 3655 | lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode."); |
| 3656 | WILL_LJMP(lua_error(L)); |
| 3657 | } |
| 3658 | |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3659 | output = co_data(chn); |
| 3660 | input = ci_data(chn); |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3661 | |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3662 | filter = hlua_channel_filter(L, 1, chn, &output, &input); |
| 3663 | if (filter && !hlua_filter_from_payload(filter)) |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3664 | WILL_LJMP(lua_error(L)); |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3665 | |
| 3666 | offset = output; |
| 3667 | if (lua_gettop(L) > 2) { |
| 3668 | offset = MAY_LJMP(luaL_checkinteger(L, 3)); |
| 3669 | if (offset < 0) |
Christopher Faulet | 70c4345 | 2021-08-13 08:11:00 +0200 | [diff] [blame] | 3670 | offset = MAX(0, (int)input + offset); |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3671 | offset += output; |
| 3672 | if (offset < output || offset > input + output) { |
| 3673 | lua_pushfstring(L, "offset out of range."); |
| 3674 | WILL_LJMP(lua_error(L)); |
| 3675 | } |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3676 | } |
| 3677 | |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3678 | len = output + input - offset; |
| 3679 | if (lua_gettop(L) == 4) { |
| 3680 | len = MAY_LJMP(luaL_checkinteger(L, 4)); |
| 3681 | if (!len) |
| 3682 | goto end; |
| 3683 | if (len == -1) |
| 3684 | len = output + input - offset; |
| 3685 | if (len < 0 || offset + len > output + input) { |
| 3686 | lua_pushfstring(L, "length out of range."); |
| 3687 | WILL_LJMP(lua_error(L)); |
| 3688 | } |
| 3689 | } |
| 3690 | |
| 3691 | _hlua_channel_delete(chn, offset, len); |
| 3692 | if (filter) { |
| 3693 | struct hlua_flt_ctx *flt_ctx = filter->ctx; |
| 3694 | |
| 3695 | flt_update_offsets(filter, chn, -len); |
| 3696 | flt_ctx->cur_len[CHN_IDX(chn)] -= len; |
| 3697 | } |
| 3698 | |
| 3699 | end: |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3700 | lua_pushinteger(L, len); |
Christopher Faulet | 23976d9 | 2021-08-06 09:59:49 +0200 | [diff] [blame] | 3701 | return 1; |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3702 | } |
| 3703 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3704 | /* Append data in the output side of the buffer. This data is immediately |
| 3705 | * sent. The function returns the amount of data written. If the buffer |
| 3706 | * cannot contain the data, the function yields. The function returns -1 |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3707 | * if the channel is closed. |
| 3708 | */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3709 | __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] | 3710 | { |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3711 | struct channel *chn; |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3712 | struct filter *filter; |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3713 | const char *str; |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3714 | size_t offset, len, sz; |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3715 | int l, ret; |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 3716 | struct hlua *hlua; |
| 3717 | |
| 3718 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 3719 | hlua = hlua_gethlua(L); |
| 3720 | if (!hlua) { |
| 3721 | lua_pushnil(L); |
| 3722 | return 1; |
| 3723 | } |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3724 | |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3725 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
| 3726 | str = MAY_LJMP(luaL_checklstring(L, 2, &sz)); |
| 3727 | l = MAY_LJMP(luaL_checkinteger(L, 3)); |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 3728 | |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3729 | offset = co_data(chn); |
| 3730 | len = ci_data(chn); |
| 3731 | |
| 3732 | filter = hlua_channel_filter(L, 1, chn, &offset, &len); |
| 3733 | if (filter && !hlua_filter_from_payload(filter)) |
| 3734 | WILL_LJMP(lua_error(L)); |
| 3735 | |
| 3736 | |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3737 | if (unlikely(channel_output_closed(chn))) { |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3738 | lua_pushinteger(L, -1); |
| 3739 | return 1; |
| 3740 | } |
| 3741 | |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3742 | len = c_room(chn); |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3743 | if (len > sz -l) { |
| 3744 | if (filter) { |
| 3745 | lua_pushinteger(L, -1); |
| 3746 | return 1; |
| 3747 | } |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3748 | len = sz - l; |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3749 | } |
Thierry FOURNIER | deb5d73 | 2015-03-06 01:07:45 +0100 | [diff] [blame] | 3750 | |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3751 | ret = _hlua_channel_insert(chn, L, ist2(str, len), offset); |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3752 | if (ret == -1) { |
| 3753 | lua_pop(L, 1); |
| 3754 | lua_pushinteger(L, -1); |
Thierry FOURNIER | deb5d73 | 2015-03-06 01:07:45 +0100 | [diff] [blame] | 3755 | return 1; |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3756 | } |
| 3757 | if (ret) { |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3758 | if (filter) { |
| 3759 | struct hlua_flt_ctx *flt_ctx = filter->ctx; |
| 3760 | |
| 3761 | |
| 3762 | flt_update_offsets(filter, chn, ret); |
| 3763 | FLT_OFF(filter, chn) += ret; |
| 3764 | flt_ctx->cur_off[CHN_IDX(chn)] += ret; |
| 3765 | } |
| 3766 | else |
| 3767 | c_adv(chn, ret); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3768 | |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3769 | l += ret; |
| 3770 | lua_pop(L, 1); |
| 3771 | lua_pushinteger(L, l); |
| 3772 | } |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3773 | |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3774 | if (l < sz) { |
| 3775 | /* Yield only if the channel's output is not empty. |
| 3776 | * Otherwise it means we cannot add more data. */ |
| 3777 | if (co_data(chn) == 0 || HLUA_CANT_YIELD(hlua_gethlua(L))) |
Christopher Faulet | 2e60aa4 | 2021-08-05 11:58:37 +0200 | [diff] [blame] | 3778 | return 1; |
| 3779 | |
Thierry FOURNIER | ef6a211 | 2015-03-05 17:45:34 +0100 | [diff] [blame] | 3780 | /* If we are waiting for space in the response buffer, we |
| 3781 | * must set the flag WAKERESWR. This flag required the task |
| 3782 | * wake up if any activity is detected on the response buffer. |
| 3783 | */ |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3784 | if (chn->flags & CF_ISRESP) |
Thierry FOURNIER | ef6a211 | 2015-03-05 17:45:34 +0100 | [diff] [blame] | 3785 | HLUA_SET_WAKERESWR(hlua); |
Thierry FOURNIER | 53e08ec | 2015-03-06 00:35:53 +0100 | [diff] [blame] | 3786 | else |
| 3787 | HLUA_SET_WAKEREQWR(hlua); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 3788 | 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] | 3789 | } |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3790 | |
| 3791 | return 1; |
| 3792 | } |
| 3793 | |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 3794 | /* Just a wrapper of "_hlua_channel_send". This wrapper permits |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3795 | * yield the LUA process, and resume it without checking the |
| 3796 | * input arguments. |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3797 | * |
| 3798 | * This function cannot be called from a filter. |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3799 | */ |
| 3800 | __LJMP static int hlua_channel_send(lua_State *L) |
| 3801 | { |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3802 | struct channel *chn; |
| 3803 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3804 | MAY_LJMP(check_args(L, 2, "send")); |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3805 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
| 3806 | if (IS_HTX_STRM(chn_strm(chn))) { |
| 3807 | lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode."); |
| 3808 | WILL_LJMP(lua_error(L)); |
| 3809 | } |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3810 | lua_pushinteger(L, 0); |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3811 | return MAY_LJMP(hlua_channel_send_yield(L, 0, 0)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3812 | } |
| 3813 | |
| 3814 | /* This function forward and amount of butes. The data pass from |
| 3815 | * the input side of the buffer to the output side, and can be |
| 3816 | * forwarded. This function never fails. |
| 3817 | * |
| 3818 | * The Lua function takes an amount of bytes to be forwarded in |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 3819 | * input. It returns the number of bytes forwarded. |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3820 | */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3821 | __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] | 3822 | { |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3823 | struct channel *chn; |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3824 | struct filter *filter; |
| 3825 | size_t offset, len, fwd; |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3826 | int l, max; |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 3827 | struct hlua *hlua; |
| 3828 | |
| 3829 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 3830 | hlua = hlua_gethlua(L); |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3831 | if (!hlua) { |
| 3832 | lua_pushnil(L); |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 3833 | return 1; |
Thierry Fournier | 77016da | 2020-08-15 14:35:51 +0200 | [diff] [blame] | 3834 | } |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 3835 | |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3836 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3837 | fwd = MAY_LJMP(luaL_checkinteger(L, 2)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3838 | l = MAY_LJMP(luaL_checkinteger(L, -1)); |
| 3839 | |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3840 | offset = co_data(chn); |
| 3841 | len = ci_data(chn); |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3842 | |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3843 | filter = hlua_channel_filter(L, 1, chn, &offset, &len); |
| 3844 | if (filter && !hlua_filter_from_payload(filter)) |
| 3845 | WILL_LJMP(lua_error(L)); |
| 3846 | |
| 3847 | max = fwd - l; |
| 3848 | if (max > len) |
| 3849 | max = len; |
| 3850 | |
| 3851 | if (filter) { |
| 3852 | struct hlua_flt_ctx *flt_ctx = filter->ctx; |
| 3853 | |
| 3854 | FLT_OFF(filter, chn) += max; |
| 3855 | flt_ctx->cur_off[CHN_IDX(chn)] += max; |
| 3856 | flt_ctx->cur_len[CHN_IDX(chn)] -= max; |
| 3857 | } |
| 3858 | else |
| 3859 | channel_forward(chn, max); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3860 | |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3861 | l += max; |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3862 | lua_pop(L, 1); |
| 3863 | lua_pushinteger(L, l); |
| 3864 | |
| 3865 | /* Check if it miss bytes to forward. */ |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3866 | if (l < fwd) { |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3867 | /* The the input channel or the output channel are closed, we |
| 3868 | * must return the amount of data forwarded. |
| 3869 | */ |
Christopher Faulet | 2e60aa4 | 2021-08-05 11:58:37 +0200 | [diff] [blame] | 3870 | if (channel_input_closed(chn) || channel_output_closed(chn) || HLUA_CANT_YIELD(hlua_gethlua(L))) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3871 | return 1; |
| 3872 | |
Thierry FOURNIER | ef6a211 | 2015-03-05 17:45:34 +0100 | [diff] [blame] | 3873 | /* If we are waiting for space data in the response buffer, we |
| 3874 | * must set the flag WAKERESWR. This flag required the task |
| 3875 | * wake up if any activity is detected on the response buffer. |
| 3876 | */ |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3877 | if (chn->flags & CF_ISRESP) |
Thierry FOURNIER | ef6a211 | 2015-03-05 17:45:34 +0100 | [diff] [blame] | 3878 | HLUA_SET_WAKERESWR(hlua); |
Thierry FOURNIER | 53e08ec | 2015-03-06 00:35:53 +0100 | [diff] [blame] | 3879 | else |
| 3880 | HLUA_SET_WAKEREQWR(hlua); |
Thierry FOURNIER | ef6a211 | 2015-03-05 17:45:34 +0100 | [diff] [blame] | 3881 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3882 | /* Otherwise, we can yield waiting for new data in the inpout side. */ |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 3883 | 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] | 3884 | } |
| 3885 | |
| 3886 | return 1; |
| 3887 | } |
| 3888 | |
| 3889 | /* Just check the input and prepare the stack for the previous |
| 3890 | * function "hlua_channel_forward_yield" |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3891 | * |
| 3892 | * This function cannot be called from a filter. |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3893 | */ |
| 3894 | __LJMP static int hlua_channel_forward(lua_State *L) |
| 3895 | { |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3896 | struct channel *chn; |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3897 | |
Christopher Faulet | 9a6ffda | 2021-08-06 13:49:54 +0200 | [diff] [blame] | 3898 | MAY_LJMP(check_args(L, 2, "forward")); |
| 3899 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
| 3900 | if (IS_HTX_STRM(chn_strm(chn))) { |
| 3901 | lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode."); |
| 3902 | WILL_LJMP(lua_error(L)); |
| 3903 | } |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3904 | lua_pushinteger(L, 0); |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3905 | return MAY_LJMP(hlua_channel_forward_yield(L, 0, 0)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3906 | } |
| 3907 | |
| 3908 | /* Just returns the number of bytes available in the input |
| 3909 | * side of the buffer. This function never fails. |
| 3910 | */ |
| 3911 | __LJMP static int hlua_channel_get_in_len(lua_State *L) |
| 3912 | { |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3913 | struct channel *chn; |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3914 | struct filter *filter; |
| 3915 | size_t output, input; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3916 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3917 | MAY_LJMP(check_args(L, 1, "input")); |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3918 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3919 | |
| 3920 | output = co_data(chn); |
| 3921 | input = ci_data(chn); |
| 3922 | filter = hlua_channel_filter(L, 1, chn, &output, &input); |
| 3923 | if (filter || !IS_HTX_STRM(chn_strm(chn))) |
| 3924 | lua_pushinteger(L, input); |
| 3925 | else { |
Christopher Faulet | a3ceac1 | 2018-12-14 13:39:09 +0100 | [diff] [blame] | 3926 | struct htx *htx = htxbuf(&chn->buf); |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3927 | |
Christopher Faulet | a3ceac1 | 2018-12-14 13:39:09 +0100 | [diff] [blame] | 3928 | lua_pushinteger(L, htx->data - co_data(chn)); |
| 3929 | } |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3930 | return 1; |
| 3931 | } |
| 3932 | |
Thierry FOURNIER / OZON.IO | 65192f3 | 2016-11-07 15:28:40 +0100 | [diff] [blame] | 3933 | /* Returns true if the channel is full. */ |
| 3934 | __LJMP static int hlua_channel_is_full(lua_State *L) |
| 3935 | { |
| 3936 | struct channel *chn; |
Thierry FOURNIER / OZON.IO | 65192f3 | 2016-11-07 15:28:40 +0100 | [diff] [blame] | 3937 | |
| 3938 | MAY_LJMP(check_args(L, 1, "is_full")); |
| 3939 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Christopher Faulet | 0ec740e | 2020-02-26 11:59:19 +0100 | [diff] [blame] | 3940 | /* ignore the reserve, we are not on a producer side (ie in an |
| 3941 | * applet). |
| 3942 | */ |
| 3943 | lua_pushboolean(L, channel_full(chn, 0)); |
Thierry FOURNIER / OZON.IO | 65192f3 | 2016-11-07 15:28:40 +0100 | [diff] [blame] | 3944 | return 1; |
| 3945 | } |
| 3946 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3947 | /* Returns true if the channel may still receive data. */ |
| 3948 | __LJMP static int hlua_channel_may_recv(lua_State *L) |
| 3949 | { |
| 3950 | struct channel *chn; |
| 3951 | |
| 3952 | MAY_LJMP(check_args(L, 1, "may_recv")); |
| 3953 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
| 3954 | lua_pushboolean(L, (!channel_input_closed(chn) && channel_may_recv(chn))); |
| 3955 | return 1; |
| 3956 | } |
| 3957 | |
Christopher Faulet | 2ac9ba2 | 2020-02-25 10:15:50 +0100 | [diff] [blame] | 3958 | /* Returns true if the channel is the response channel. */ |
| 3959 | __LJMP static int hlua_channel_is_resp(lua_State *L) |
| 3960 | { |
| 3961 | struct channel *chn; |
| 3962 | |
| 3963 | MAY_LJMP(check_args(L, 1, "is_resp")); |
| 3964 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
| 3965 | |
| 3966 | lua_pushboolean(L, !!(chn->flags & CF_ISRESP)); |
| 3967 | return 1; |
| 3968 | } |
| 3969 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3970 | /* Just returns the number of bytes available in the output |
| 3971 | * side of the buffer. This function never fails. |
| 3972 | */ |
| 3973 | __LJMP static int hlua_channel_get_out_len(lua_State *L) |
| 3974 | { |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3975 | struct channel *chn; |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3976 | size_t output, input; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3977 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 3978 | MAY_LJMP(check_args(L, 1, "output")); |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3979 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Christopher Faulet | a1ac5fb | 2021-08-09 10:22:46 +0200 | [diff] [blame] | 3980 | |
| 3981 | output = co_data(chn); |
| 3982 | input = ci_data(chn); |
| 3983 | hlua_channel_filter(L, 1, chn, &output, &input); |
| 3984 | |
| 3985 | lua_pushinteger(L, output); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3986 | return 1; |
| 3987 | } |
| 3988 | |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3989 | /* |
| 3990 | * |
| 3991 | * |
| 3992 | * Class Fetches |
| 3993 | * |
| 3994 | * |
| 3995 | */ |
| 3996 | |
| 3997 | /* Returns a struct hlua_session if the stack entry "ud" is |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 3998 | * a class stream, otherwise it throws an error. |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3999 | */ |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 4000 | __LJMP static struct hlua_smp *hlua_checkfetches(lua_State *L, int ud) |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 4001 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 4002 | return MAY_LJMP(hlua_checkudata(L, ud, class_fetches_ref)); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 4003 | } |
| 4004 | |
| 4005 | /* This function creates and push in the stack a fetch object according |
| 4006 | * with a current TXN. |
| 4007 | */ |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 4008 | 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] | 4009 | { |
Willy Tarreau | 7073c47 | 2015-04-06 11:15:40 +0200 | [diff] [blame] | 4010 | struct hlua_smp *hsmp; |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 4011 | |
| 4012 | /* Check stack size. */ |
| 4013 | if (!lua_checkstack(L, 3)) |
| 4014 | return 0; |
| 4015 | |
| 4016 | /* Create the object: obj[0] = userdata. |
| 4017 | * Note that the base of the Fetches object is the |
| 4018 | * transaction object. |
| 4019 | */ |
| 4020 | lua_newtable(L); |
Willy Tarreau | 7073c47 | 2015-04-06 11:15:40 +0200 | [diff] [blame] | 4021 | hsmp = lua_newuserdata(L, sizeof(*hsmp)); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 4022 | lua_rawseti(L, -2, 0); |
| 4023 | |
Willy Tarreau | 7073c47 | 2015-04-06 11:15:40 +0200 | [diff] [blame] | 4024 | hsmp->s = txn->s; |
| 4025 | hsmp->p = txn->p; |
Thierry FOURNIER | c4eebc8 | 2015-11-02 10:01:59 +0100 | [diff] [blame] | 4026 | hsmp->dir = txn->dir; |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 4027 | hsmp->flags = flags; |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 4028 | |
| 4029 | /* Pop a class sesison metatable and affect it to the userdata. */ |
| 4030 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_fetches_ref); |
| 4031 | lua_setmetatable(L, -2); |
| 4032 | |
| 4033 | return 1; |
| 4034 | } |
| 4035 | |
| 4036 | /* This function is an LUA binding. It is called with each sample-fetch. |
| 4037 | * It uses closure argument to store the associated sample-fetch. It |
| 4038 | * returns only one argument or throws an error. An error is thrown |
| 4039 | * only if an error is encountered during the argument parsing. If |
| 4040 | * the "sample-fetch" function fails, nil is returned. |
| 4041 | */ |
| 4042 | __LJMP static int hlua_run_sample_fetch(lua_State *L) |
| 4043 | { |
Willy Tarreau | b2ccb56 | 2015-04-06 11:11:15 +0200 | [diff] [blame] | 4044 | struct hlua_smp *hsmp; |
Willy Tarreau | 2ec2274 | 2015-03-10 14:27:20 +0100 | [diff] [blame] | 4045 | struct sample_fetch *f; |
Frédéric Lécaille | f874a83 | 2018-06-15 13:56:04 +0200 | [diff] [blame] | 4046 | struct arg args[ARGM_NBARGS + 1] = {{0}}; |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 4047 | int i; |
| 4048 | struct sample smp; |
| 4049 | |
| 4050 | /* Get closure arguments. */ |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 4051 | f = lua_touserdata(L, lua_upvalueindex(1)); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 4052 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 4053 | /* Get traditional arguments. */ |
Willy Tarreau | b2ccb56 | 2015-04-06 11:11:15 +0200 | [diff] [blame] | 4054 | hsmp = MAY_LJMP(hlua_checkfetches(L, 1)); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 4055 | |
Thierry FOURNIER | ca98866 | 2015-12-20 18:43:03 +0100 | [diff] [blame] | 4056 | /* Check execution authorization. */ |
| 4057 | if (f->use & SMP_USE_HTTP_ANY && |
| 4058 | !(hsmp->flags & HLUA_F_MAY_USE_HTTP)) { |
| 4059 | lua_pushfstring(L, "the sample-fetch '%s' needs an HTTP parser which " |
| 4060 | "is not available in Lua services", f->kw); |
| 4061 | WILL_LJMP(lua_error(L)); |
| 4062 | } |
| 4063 | |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 4064 | /* Get extra arguments. */ |
| 4065 | for (i = 0; i < lua_gettop(L) - 1; i++) { |
| 4066 | if (i >= ARGM_NBARGS) |
| 4067 | break; |
| 4068 | hlua_lua2arg(L, i + 2, &args[i]); |
| 4069 | } |
| 4070 | args[i].type = ARGT_STOP; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4071 | args[i].data.str.area = NULL; |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 4072 | |
| 4073 | /* Check arguments. */ |
Willy Tarreau | b2ccb56 | 2015-04-06 11:11:15 +0200 | [diff] [blame] | 4074 | 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] | 4075 | |
| 4076 | /* Run the special args checker. */ |
Willy Tarreau | 2ec2274 | 2015-03-10 14:27:20 +0100 | [diff] [blame] | 4077 | if (f->val_args && !f->val_args(args, NULL)) { |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 4078 | lua_pushfstring(L, "error in arguments"); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 4079 | goto error; |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 4080 | } |
| 4081 | |
| 4082 | /* Initialise the sample. */ |
| 4083 | memset(&smp, 0, sizeof(smp)); |
| 4084 | |
| 4085 | /* Run the sample fetch process. */ |
Willy Tarreau | 1777ea6 | 2016-03-10 16:15:46 +0100 | [diff] [blame] | 4086 | 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] | 4087 | if (!f->process(args, &smp, f->kw, f->private)) { |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 4088 | if (hsmp->flags & HLUA_F_AS_STRING) |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 4089 | lua_pushstring(L, ""); |
| 4090 | else |
| 4091 | lua_pushnil(L); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 4092 | goto end; |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 4093 | } |
| 4094 | |
| 4095 | /* Convert the returned sample in lua value. */ |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 4096 | if (hsmp->flags & HLUA_F_AS_STRING) |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 4097 | hlua_smp2lua_str(L, &smp); |
| 4098 | else |
| 4099 | hlua_smp2lua(L, &smp); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 4100 | |
| 4101 | end: |
Willy Tarreau | ee0d727 | 2021-07-16 10:26:56 +0200 | [diff] [blame] | 4102 | free_args(args); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 4103 | return 1; |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 4104 | |
| 4105 | error: |
Willy Tarreau | ee0d727 | 2021-07-16 10:26:56 +0200 | [diff] [blame] | 4106 | free_args(args); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 4107 | WILL_LJMP(lua_error(L)); |
| 4108 | return 0; /* Never reached */ |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 4109 | } |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 4110 | |
| 4111 | /* |
| 4112 | * |
| 4113 | * |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 4114 | * Class Converters |
| 4115 | * |
| 4116 | * |
| 4117 | */ |
| 4118 | |
| 4119 | /* Returns a struct hlua_session if the stack entry "ud" is |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 4120 | * a class stream, otherwise it throws an error. |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 4121 | */ |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 4122 | __LJMP static struct hlua_smp *hlua_checkconverters(lua_State *L, int ud) |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 4123 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 4124 | return MAY_LJMP(hlua_checkudata(L, ud, class_converters_ref)); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 4125 | } |
| 4126 | |
| 4127 | /* This function creates and push in the stack a Converters object |
| 4128 | * according with a current TXN. |
| 4129 | */ |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 4130 | 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] | 4131 | { |
Willy Tarreau | 7073c47 | 2015-04-06 11:15:40 +0200 | [diff] [blame] | 4132 | struct hlua_smp *hsmp; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 4133 | |
| 4134 | /* Check stack size. */ |
| 4135 | if (!lua_checkstack(L, 3)) |
| 4136 | return 0; |
| 4137 | |
| 4138 | /* Create the object: obj[0] = userdata. |
| 4139 | * Note that the base of the Converters object is the |
| 4140 | * same than the TXN object. |
| 4141 | */ |
| 4142 | lua_newtable(L); |
Willy Tarreau | 7073c47 | 2015-04-06 11:15:40 +0200 | [diff] [blame] | 4143 | hsmp = lua_newuserdata(L, sizeof(*hsmp)); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 4144 | lua_rawseti(L, -2, 0); |
| 4145 | |
Willy Tarreau | 7073c47 | 2015-04-06 11:15:40 +0200 | [diff] [blame] | 4146 | hsmp->s = txn->s; |
| 4147 | hsmp->p = txn->p; |
Thierry FOURNIER | c4eebc8 | 2015-11-02 10:01:59 +0100 | [diff] [blame] | 4148 | hsmp->dir = txn->dir; |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 4149 | hsmp->flags = flags; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 4150 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 4151 | /* Pop a class stream metatable and affect it to the table. */ |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 4152 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_converters_ref); |
| 4153 | lua_setmetatable(L, -2); |
| 4154 | |
| 4155 | return 1; |
| 4156 | } |
| 4157 | |
| 4158 | /* This function is an LUA binding. It is called with each converter. |
| 4159 | * It uses closure argument to store the associated converter. It |
| 4160 | * returns only one argument or throws an error. An error is thrown |
| 4161 | * only if an error is encountered during the argument parsing. If |
| 4162 | * the converter function function fails, nil is returned. |
| 4163 | */ |
| 4164 | __LJMP static int hlua_run_sample_conv(lua_State *L) |
| 4165 | { |
Willy Tarreau | da5f108 | 2015-04-06 11:17:13 +0200 | [diff] [blame] | 4166 | struct hlua_smp *hsmp; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 4167 | struct sample_conv *conv; |
Frédéric Lécaille | f874a83 | 2018-06-15 13:56:04 +0200 | [diff] [blame] | 4168 | struct arg args[ARGM_NBARGS + 1] = {{0}}; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 4169 | int i; |
| 4170 | struct sample smp; |
| 4171 | |
| 4172 | /* Get closure arguments. */ |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 4173 | conv = lua_touserdata(L, lua_upvalueindex(1)); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 4174 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 4175 | /* Get traditional arguments. */ |
Willy Tarreau | da5f108 | 2015-04-06 11:17:13 +0200 | [diff] [blame] | 4176 | hsmp = MAY_LJMP(hlua_checkconverters(L, 1)); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 4177 | |
| 4178 | /* Get extra arguments. */ |
| 4179 | for (i = 0; i < lua_gettop(L) - 2; i++) { |
| 4180 | if (i >= ARGM_NBARGS) |
| 4181 | break; |
| 4182 | hlua_lua2arg(L, i + 3, &args[i]); |
| 4183 | } |
| 4184 | args[i].type = ARGT_STOP; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4185 | args[i].data.str.area = NULL; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 4186 | |
| 4187 | /* Check arguments. */ |
Willy Tarreau | da5f108 | 2015-04-06 11:17:13 +0200 | [diff] [blame] | 4188 | 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] | 4189 | |
| 4190 | /* Run the special args checker. */ |
| 4191 | if (conv->val_args && !conv->val_args(args, conv, "", 0, NULL)) { |
| 4192 | hlua_pusherror(L, "error in arguments"); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 4193 | goto error; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 4194 | } |
| 4195 | |
| 4196 | /* Initialise the sample. */ |
Amaury Denoyelle | bc0af6a | 2020-10-29 17:21:20 +0100 | [diff] [blame] | 4197 | memset(&smp, 0, sizeof(smp)); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 4198 | if (!hlua_lua2smp(L, 2, &smp)) { |
| 4199 | hlua_pusherror(L, "error in the input argument"); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 4200 | goto error; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 4201 | } |
| 4202 | |
Willy Tarreau | 1777ea6 | 2016-03-10 16:15:46 +0100 | [diff] [blame] | 4203 | smp_set_owner(&smp, hsmp->p, hsmp->s->sess, hsmp->s, hsmp->dir & SMP_OPT_DIR); |
| 4204 | |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 4205 | /* Apply expected cast. */ |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4206 | if (!sample_casts[smp.data.type][conv->in_type]) { |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 4207 | hlua_pusherror(L, "invalid input argument: cannot cast '%s' to '%s'", |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4208 | smp_to_type[smp.data.type], smp_to_type[conv->in_type]); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 4209 | goto error; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 4210 | } |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4211 | if (sample_casts[smp.data.type][conv->in_type] != c_none && |
| 4212 | !sample_casts[smp.data.type][conv->in_type](&smp)) { |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 4213 | hlua_pusherror(L, "error during the input argument casting"); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 4214 | goto error; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 4215 | } |
| 4216 | |
| 4217 | /* Run the sample conversion process. */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 4218 | if (!conv->process(args, &smp, conv->private)) { |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 4219 | if (hsmp->flags & HLUA_F_AS_STRING) |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 4220 | lua_pushstring(L, ""); |
| 4221 | else |
Willy Tarreau | a678b43 | 2015-08-28 10:14:59 +0200 | [diff] [blame] | 4222 | lua_pushnil(L); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 4223 | goto end; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 4224 | } |
| 4225 | |
| 4226 | /* Convert the returned sample in lua value. */ |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 4227 | if (hsmp->flags & HLUA_F_AS_STRING) |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 4228 | hlua_smp2lua_str(L, &smp); |
| 4229 | else |
| 4230 | hlua_smp2lua(L, &smp); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 4231 | end: |
Willy Tarreau | ee0d727 | 2021-07-16 10:26:56 +0200 | [diff] [blame] | 4232 | free_args(args); |
Willy Tarreau | a678b43 | 2015-08-28 10:14:59 +0200 | [diff] [blame] | 4233 | return 1; |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 4234 | |
| 4235 | error: |
Willy Tarreau | ee0d727 | 2021-07-16 10:26:56 +0200 | [diff] [blame] | 4236 | free_args(args); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 4237 | WILL_LJMP(lua_error(L)); |
| 4238 | return 0; /* Never reached */ |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 4239 | } |
| 4240 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4241 | /* |
| 4242 | * |
| 4243 | * |
| 4244 | * Class AppletTCP |
| 4245 | * |
| 4246 | * |
| 4247 | */ |
| 4248 | |
| 4249 | /* Returns a struct hlua_txn if the stack entry "ud" is |
| 4250 | * a class stream, otherwise it throws an error. |
| 4251 | */ |
| 4252 | __LJMP static struct hlua_appctx *hlua_checkapplet_tcp(lua_State *L, int ud) |
| 4253 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 4254 | return MAY_LJMP(hlua_checkudata(L, ud, class_applet_tcp_ref)); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4255 | } |
| 4256 | |
| 4257 | /* This function creates and push in the stack an Applet object |
| 4258 | * according with a current TXN. |
| 4259 | */ |
| 4260 | static int hlua_applet_tcp_new(lua_State *L, struct appctx *ctx) |
| 4261 | { |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4262 | struct hlua_appctx *luactx; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4263 | struct stream_interface *si = ctx->owner; |
| 4264 | struct stream *s = si_strm(si); |
| 4265 | struct proxy *p = s->be; |
| 4266 | |
| 4267 | /* Check stack size. */ |
| 4268 | if (!lua_checkstack(L, 3)) |
| 4269 | return 0; |
| 4270 | |
| 4271 | /* Create the object: obj[0] = userdata. |
| 4272 | * Note that the base of the Converters object is the |
| 4273 | * same than the TXN object. |
| 4274 | */ |
| 4275 | lua_newtable(L); |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4276 | luactx = lua_newuserdata(L, sizeof(*luactx)); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4277 | lua_rawseti(L, -2, 0); |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4278 | luactx->appctx = ctx; |
| 4279 | luactx->htxn.s = s; |
| 4280 | luactx->htxn.p = p; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4281 | |
| 4282 | /* Create the "f" field that contains a list of fetches. */ |
| 4283 | lua_pushstring(L, "f"); |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4284 | if (!hlua_fetches_new(L, &luactx->htxn, 0)) |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4285 | return 0; |
| 4286 | lua_settable(L, -3); |
| 4287 | |
| 4288 | /* Create the "sf" field that contains a list of stringsafe fetches. */ |
| 4289 | lua_pushstring(L, "sf"); |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4290 | if (!hlua_fetches_new(L, &luactx->htxn, HLUA_F_AS_STRING)) |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4291 | return 0; |
| 4292 | lua_settable(L, -3); |
| 4293 | |
| 4294 | /* Create the "c" field that contains a list of converters. */ |
| 4295 | lua_pushstring(L, "c"); |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4296 | if (!hlua_converters_new(L, &luactx->htxn, 0)) |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4297 | return 0; |
| 4298 | lua_settable(L, -3); |
| 4299 | |
| 4300 | /* Create the "sc" field that contains a list of stringsafe converters. */ |
| 4301 | lua_pushstring(L, "sc"); |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4302 | if (!hlua_converters_new(L, &luactx->htxn, HLUA_F_AS_STRING)) |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4303 | return 0; |
| 4304 | lua_settable(L, -3); |
| 4305 | |
| 4306 | /* Pop a class stream metatable and affect it to the table. */ |
| 4307 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_applet_tcp_ref); |
| 4308 | lua_setmetatable(L, -2); |
| 4309 | |
| 4310 | return 1; |
| 4311 | } |
| 4312 | |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4313 | __LJMP static int hlua_applet_tcp_set_var(lua_State *L) |
| 4314 | { |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4315 | struct hlua_appctx *luactx; |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4316 | struct stream *s; |
| 4317 | const char *name; |
| 4318 | size_t len; |
| 4319 | struct sample smp; |
| 4320 | |
Tim Duesterhus | 4e172c9 | 2020-05-19 13:49:42 +0200 | [diff] [blame] | 4321 | if (lua_gettop(L) < 3 || lua_gettop(L) > 4) |
| 4322 | 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] | 4323 | |
| 4324 | /* It is useles to retrieve the stream, but this function |
| 4325 | * runs only in a stream context. |
| 4326 | */ |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4327 | luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4328 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4329 | s = luactx->htxn.s; |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4330 | |
| 4331 | /* Converts the third argument in a sample. */ |
Amaury Denoyelle | bc0af6a | 2020-10-29 17:21:20 +0100 | [diff] [blame] | 4332 | memset(&smp, 0, sizeof(smp)); |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4333 | hlua_lua2smp(L, 3, &smp); |
| 4334 | |
| 4335 | /* Store the sample in a variable. */ |
| 4336 | smp_set_owner(&smp, s->be, s->sess, s, 0); |
Tim Duesterhus | 4e172c9 | 2020-05-19 13:49:42 +0200 | [diff] [blame] | 4337 | |
| 4338 | if (lua_gettop(L) == 4 && lua_toboolean(L, 4)) |
| 4339 | lua_pushboolean(L, vars_set_by_name_ifexist(name, len, &smp) != 0); |
| 4340 | else |
| 4341 | lua_pushboolean(L, vars_set_by_name(name, len, &smp) != 0); |
| 4342 | |
Tim Duesterhus | 84ebc13 | 2020-05-19 13:49:41 +0200 | [diff] [blame] | 4343 | return 1; |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4344 | } |
| 4345 | |
| 4346 | __LJMP static int hlua_applet_tcp_unset_var(lua_State *L) |
| 4347 | { |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4348 | struct hlua_appctx *luactx; |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4349 | struct stream *s; |
| 4350 | const char *name; |
| 4351 | size_t len; |
| 4352 | struct sample smp; |
| 4353 | |
| 4354 | MAY_LJMP(check_args(L, 2, "unset_var")); |
| 4355 | |
| 4356 | /* It is useles to retrieve the stream, but this function |
| 4357 | * runs only in a stream context. |
| 4358 | */ |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4359 | luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4360 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4361 | s = luactx->htxn.s; |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4362 | |
| 4363 | /* Unset the variable. */ |
| 4364 | smp_set_owner(&smp, s->be, s->sess, s, 0); |
Tim Duesterhus | 84ebc13 | 2020-05-19 13:49:41 +0200 | [diff] [blame] | 4365 | lua_pushboolean(L, vars_unset_by_name_ifexist(name, len, &smp) != 0); |
| 4366 | return 1; |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4367 | } |
| 4368 | |
| 4369 | __LJMP static int hlua_applet_tcp_get_var(lua_State *L) |
| 4370 | { |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4371 | struct hlua_appctx *luactx; |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4372 | struct stream *s; |
| 4373 | const char *name; |
| 4374 | size_t len; |
| 4375 | struct sample smp; |
| 4376 | |
| 4377 | MAY_LJMP(check_args(L, 2, "get_var")); |
| 4378 | |
| 4379 | /* It is useles to retrieve the stream, but this function |
| 4380 | * runs only in a stream context. |
| 4381 | */ |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4382 | luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4383 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4384 | s = luactx->htxn.s; |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4385 | |
| 4386 | smp_set_owner(&smp, s->be, s->sess, s, 0); |
Willy Tarreau | e352b9d | 2021-09-03 11:52:38 +0200 | [diff] [blame] | 4387 | if (!vars_get_by_name(name, len, &smp, NULL)) { |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4388 | lua_pushnil(L); |
| 4389 | return 1; |
| 4390 | } |
| 4391 | |
| 4392 | return hlua_smp2lua(L, &smp); |
| 4393 | } |
| 4394 | |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 4395 | __LJMP static int hlua_applet_tcp_set_priv(lua_State *L) |
| 4396 | { |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4397 | struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 4398 | struct stream *s = luactx->htxn.s; |
Thierry FOURNIER | 3b0a6d4 | 2016-12-16 08:48:32 +0100 | [diff] [blame] | 4399 | struct hlua *hlua; |
| 4400 | |
| 4401 | /* 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] | 4402 | if (!s->hlua) |
| 4403 | return 0; |
| 4404 | hlua = s->hlua; |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 4405 | |
| 4406 | MAY_LJMP(check_args(L, 2, "set_priv")); |
| 4407 | |
| 4408 | /* Remove previous value. */ |
Thierry FOURNIER | e068b60 | 2017-04-26 13:27:05 +0200 | [diff] [blame] | 4409 | luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref); |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 4410 | |
| 4411 | /* Get and store new value. */ |
| 4412 | lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */ |
| 4413 | hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */ |
| 4414 | |
| 4415 | return 0; |
| 4416 | } |
| 4417 | |
| 4418 | __LJMP static int hlua_applet_tcp_get_priv(lua_State *L) |
| 4419 | { |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4420 | struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 4421 | struct stream *s = luactx->htxn.s; |
Thierry FOURNIER | 3b0a6d4 | 2016-12-16 08:48:32 +0100 | [diff] [blame] | 4422 | struct hlua *hlua; |
| 4423 | |
| 4424 | /* 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] | 4425 | if (!s->hlua) { |
| 4426 | lua_pushnil(L); |
| 4427 | return 1; |
| 4428 | } |
| 4429 | hlua = s->hlua; |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 4430 | |
| 4431 | /* Push configuration index in the stack. */ |
| 4432 | lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref); |
| 4433 | |
| 4434 | return 1; |
| 4435 | } |
| 4436 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4437 | /* If expected data not yet available, it returns a yield. This function |
| 4438 | * consumes the data in the buffer. It returns a string containing the |
| 4439 | * data. This string can be empty. |
| 4440 | */ |
| 4441 | __LJMP static int hlua_applet_tcp_getline_yield(lua_State *L, int status, lua_KContext ctx) |
| 4442 | { |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4443 | struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 4444 | struct stream_interface *si = luactx->appctx->owner; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4445 | int ret; |
Willy Tarreau | 206ba83 | 2018-06-14 15:27:31 +0200 | [diff] [blame] | 4446 | const char *blk1; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 4447 | size_t len1; |
Willy Tarreau | 206ba83 | 2018-06-14 15:27:31 +0200 | [diff] [blame] | 4448 | const char *blk2; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 4449 | size_t len2; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4450 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 4451 | /* Read the maximum amount of data available. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 4452 | ret = co_getline_nc(si_oc(si), &blk1, &len1, &blk2, &len2); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4453 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 4454 | /* Data not yet available. return yield. */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4455 | if (ret == 0) { |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 4456 | si_cant_get(si); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 4457 | 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] | 4458 | } |
| 4459 | |
| 4460 | /* End of data: commit the total strings and return. */ |
| 4461 | if (ret < 0) { |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4462 | luaL_pushresult(&luactx->b); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4463 | return 1; |
| 4464 | } |
| 4465 | |
| 4466 | /* Ensure that the block 2 length is usable. */ |
| 4467 | if (ret == 1) |
| 4468 | len2 = 0; |
| 4469 | |
Thayne McCombs | 8f0cc5c | 2021-01-07 21:35:52 -0700 | [diff] [blame] | 4470 | /* don't check the max length read and don't check. */ |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4471 | luaL_addlstring(&luactx->b, blk1, len1); |
| 4472 | luaL_addlstring(&luactx->b, blk2, len2); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4473 | |
| 4474 | /* Consume input channel output buffer data. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 4475 | co_skip(si_oc(si), len1 + len2); |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4476 | luaL_pushresult(&luactx->b); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4477 | return 1; |
| 4478 | } |
| 4479 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 4480 | /* Check arguments for the function "hlua_channel_get_yield". */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4481 | __LJMP static int hlua_applet_tcp_getline(lua_State *L) |
| 4482 | { |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4483 | struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4484 | |
| 4485 | /* Initialise the string catenation. */ |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4486 | luaL_buffinit(L, &luactx->b); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4487 | |
| 4488 | return MAY_LJMP(hlua_applet_tcp_getline_yield(L, 0, 0)); |
| 4489 | } |
| 4490 | |
| 4491 | /* If expected data not yet available, it returns a yield. This function |
| 4492 | * consumes the data in the buffer. It returns a string containing the |
| 4493 | * data. This string can be empty. |
| 4494 | */ |
| 4495 | __LJMP static int hlua_applet_tcp_recv_yield(lua_State *L, int status, lua_KContext ctx) |
| 4496 | { |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4497 | struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 4498 | struct stream_interface *si = luactx->appctx->owner; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 4499 | size_t len = MAY_LJMP(luaL_checkinteger(L, 2)); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4500 | int ret; |
Willy Tarreau | 206ba83 | 2018-06-14 15:27:31 +0200 | [diff] [blame] | 4501 | const char *blk1; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 4502 | size_t len1; |
Willy Tarreau | 206ba83 | 2018-06-14 15:27:31 +0200 | [diff] [blame] | 4503 | const char *blk2; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 4504 | size_t len2; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4505 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 4506 | /* Read the maximum amount of data available. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 4507 | ret = co_getblk_nc(si_oc(si), &blk1, &len1, &blk2, &len2); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4508 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 4509 | /* Data not yet available. return yield. */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4510 | if (ret == 0) { |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 4511 | si_cant_get(si); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 4512 | 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] | 4513 | } |
| 4514 | |
| 4515 | /* End of data: commit the total strings and return. */ |
| 4516 | if (ret < 0) { |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4517 | luaL_pushresult(&luactx->b); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4518 | return 1; |
| 4519 | } |
| 4520 | |
| 4521 | /* Ensure that the block 2 length is usable. */ |
| 4522 | if (ret == 1) |
| 4523 | len2 = 0; |
| 4524 | |
| 4525 | if (len == -1) { |
| 4526 | |
| 4527 | /* If len == -1, catenate all the data avalaile and |
| 4528 | * yield because we want to get all the data until |
| 4529 | * the end of data stream. |
| 4530 | */ |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4531 | luaL_addlstring(&luactx->b, blk1, len1); |
| 4532 | luaL_addlstring(&luactx->b, blk2, len2); |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 4533 | co_skip(si_oc(si), len1 + len2); |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 4534 | si_cant_get(si); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 4535 | 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] | 4536 | |
| 4537 | } else { |
| 4538 | |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 4539 | /* Copy the first block caping to the length required. */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4540 | if (len1 > len) |
| 4541 | len1 = len; |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4542 | luaL_addlstring(&luactx->b, blk1, len1); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4543 | len -= len1; |
| 4544 | |
| 4545 | /* Copy the second block. */ |
| 4546 | if (len2 > len) |
| 4547 | len2 = len; |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4548 | luaL_addlstring(&luactx->b, blk2, len2); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4549 | len -= len2; |
| 4550 | |
| 4551 | /* Consume input channel output buffer data. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 4552 | co_skip(si_oc(si), len1 + len2); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4553 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 4554 | /* If there is no other data available, yield waiting for new data. */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4555 | if (len > 0) { |
| 4556 | lua_pushinteger(L, len); |
| 4557 | lua_replace(L, 2); |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 4558 | si_cant_get(si); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 4559 | 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] | 4560 | } |
| 4561 | |
| 4562 | /* return the result. */ |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4563 | luaL_pushresult(&luactx->b); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4564 | return 1; |
| 4565 | } |
| 4566 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 4567 | /* we never execute this */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4568 | hlua_pusherror(L, "Lua: internal error"); |
| 4569 | WILL_LJMP(lua_error(L)); |
| 4570 | return 0; |
| 4571 | } |
| 4572 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 4573 | /* Check arguments for the function "hlua_channel_get_yield". */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4574 | __LJMP static int hlua_applet_tcp_recv(lua_State *L) |
| 4575 | { |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4576 | struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4577 | int len = -1; |
| 4578 | |
| 4579 | if (lua_gettop(L) > 2) |
| 4580 | WILL_LJMP(luaL_error(L, "The 'recv' function requires between 1 and 2 arguments.")); |
| 4581 | if (lua_gettop(L) >= 2) { |
| 4582 | len = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 4583 | lua_pop(L, 1); |
| 4584 | } |
| 4585 | |
| 4586 | /* Confirm or set the required length */ |
| 4587 | lua_pushinteger(L, len); |
| 4588 | |
| 4589 | /* Initialise the string catenation. */ |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4590 | luaL_buffinit(L, &luactx->b); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4591 | |
| 4592 | return MAY_LJMP(hlua_applet_tcp_recv_yield(L, 0, 0)); |
| 4593 | } |
| 4594 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 4595 | /* Append data in the output side of the buffer. This data is immediately |
| 4596 | * sent. The function returns the amount of data written. If the buffer |
| 4597 | * cannot contain the data, the function yields. The function returns -1 |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4598 | * if the channel is closed. |
| 4599 | */ |
| 4600 | __LJMP static int hlua_applet_tcp_send_yield(lua_State *L, int status, lua_KContext ctx) |
| 4601 | { |
| 4602 | size_t len; |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4603 | struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4604 | const char *str = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 4605 | int l = MAY_LJMP(luaL_checkinteger(L, 3)); |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4606 | struct stream_interface *si = luactx->appctx->owner; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4607 | struct channel *chn = si_ic(si); |
| 4608 | int max; |
| 4609 | |
| 4610 | /* Get the max amount of data which can write as input in the channel. */ |
| 4611 | max = channel_recv_max(chn); |
| 4612 | if (max > (len - l)) |
| 4613 | max = len - l; |
| 4614 | |
| 4615 | /* Copy data. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 4616 | ci_putblk(chn, str + l, max); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4617 | |
| 4618 | /* update counters. */ |
| 4619 | l += max; |
| 4620 | lua_pop(L, 1); |
| 4621 | lua_pushinteger(L, l); |
| 4622 | |
| 4623 | /* If some data is not send, declares the situation to the |
| 4624 | * applet, and returns a yield. |
| 4625 | */ |
| 4626 | if (l < len) { |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 4627 | si_rx_room_blk(si); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 4628 | 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] | 4629 | } |
| 4630 | |
| 4631 | return 1; |
| 4632 | } |
| 4633 | |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 4634 | /* Just a wrapper of "hlua_applet_tcp_send_yield". This wrapper permits |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4635 | * yield the LUA process, and resume it without checking the |
| 4636 | * input arguments. |
| 4637 | */ |
| 4638 | __LJMP static int hlua_applet_tcp_send(lua_State *L) |
| 4639 | { |
| 4640 | MAY_LJMP(check_args(L, 2, "send")); |
| 4641 | lua_pushinteger(L, 0); |
| 4642 | |
| 4643 | return MAY_LJMP(hlua_applet_tcp_send_yield(L, 0, 0)); |
| 4644 | } |
| 4645 | |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 4646 | /* |
| 4647 | * |
| 4648 | * |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4649 | * Class AppletHTTP |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4650 | * |
| 4651 | * |
| 4652 | */ |
| 4653 | |
| 4654 | /* Returns a struct hlua_txn if the stack entry "ud" is |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 4655 | * a class stream, otherwise it throws an error. |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4656 | */ |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4657 | __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] | 4658 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 4659 | return MAY_LJMP(hlua_checkudata(L, ud, class_applet_http_ref)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4660 | } |
| 4661 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4662 | /* This function creates and push in the stack an Applet object |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4663 | * according with a current TXN. |
| 4664 | */ |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4665 | static int hlua_applet_http_new(lua_State *L, struct appctx *ctx) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4666 | { |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4667 | struct hlua_appctx *luactx; |
Thierry FOURNIER | 841475e | 2015-12-11 17:10:09 +0100 | [diff] [blame] | 4668 | struct hlua_txn htxn; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4669 | struct stream_interface *si = ctx->owner; |
| 4670 | struct stream *s = si_strm(si); |
| 4671 | struct proxy *px = s->be; |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4672 | struct htx *htx; |
| 4673 | struct htx_blk *blk; |
| 4674 | struct htx_sl *sl; |
| 4675 | struct ist path; |
| 4676 | unsigned long long len = 0; |
| 4677 | int32_t pos; |
Amaury Denoyelle | c453f95 | 2021-07-06 11:40:12 +0200 | [diff] [blame] | 4678 | struct http_uri_parser parser; |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4679 | |
| 4680 | /* Check stack size. */ |
| 4681 | if (!lua_checkstack(L, 3)) |
| 4682 | return 0; |
| 4683 | |
| 4684 | /* Create the object: obj[0] = userdata. |
| 4685 | * Note that the base of the Converters object is the |
| 4686 | * same than the TXN object. |
| 4687 | */ |
| 4688 | lua_newtable(L); |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4689 | luactx = lua_newuserdata(L, sizeof(*luactx)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4690 | lua_rawseti(L, -2, 0); |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4691 | luactx->appctx = ctx; |
| 4692 | luactx->appctx->ctx.hlua_apphttp.status = 200; /* Default status code returned. */ |
| 4693 | luactx->appctx->ctx.hlua_apphttp.reason = NULL; /* Use default reason based on status */ |
| 4694 | luactx->htxn.s = s; |
| 4695 | luactx->htxn.p = px; |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4696 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4697 | /* Create the "f" field that contains a list of fetches. */ |
| 4698 | lua_pushstring(L, "f"); |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4699 | if (!hlua_fetches_new(L, &luactx->htxn, 0)) |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4700 | return 0; |
| 4701 | lua_settable(L, -3); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4702 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4703 | /* Create the "sf" field that contains a list of stringsafe fetches. */ |
| 4704 | lua_pushstring(L, "sf"); |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4705 | if (!hlua_fetches_new(L, &luactx->htxn, HLUA_F_AS_STRING)) |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4706 | return 0; |
| 4707 | lua_settable(L, -3); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4708 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4709 | /* Create the "c" field that contains a list of converters. */ |
| 4710 | lua_pushstring(L, "c"); |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4711 | if (!hlua_converters_new(L, &luactx->htxn, 0)) |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4712 | return 0; |
| 4713 | lua_settable(L, -3); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4714 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4715 | /* Create the "sc" field that contains a list of stringsafe converters. */ |
| 4716 | lua_pushstring(L, "sc"); |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4717 | if (!hlua_converters_new(L, &luactx->htxn, HLUA_F_AS_STRING)) |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4718 | return 0; |
| 4719 | lua_settable(L, -3); |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 4720 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4721 | htx = htxbuf(&s->req.buf); |
| 4722 | blk = htx_get_first_blk(htx); |
Christopher Faulet | ea00973 | 2019-11-18 15:50:25 +0100 | [diff] [blame] | 4723 | BUG_ON(!blk || htx_get_blk_type(blk) != HTX_BLK_REQ_SL); |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4724 | sl = htx_get_blk_ptr(htx, blk); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4725 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4726 | /* Stores the request method. */ |
| 4727 | lua_pushstring(L, "method"); |
| 4728 | lua_pushlstring(L, HTX_SL_REQ_MPTR(sl), HTX_SL_REQ_MLEN(sl)); |
| 4729 | lua_settable(L, -3); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4730 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4731 | /* Stores the http version. */ |
| 4732 | lua_pushstring(L, "version"); |
| 4733 | lua_pushlstring(L, HTX_SL_REQ_VPTR(sl), HTX_SL_REQ_VLEN(sl)); |
| 4734 | lua_settable(L, -3); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4735 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4736 | /* creates an array of headers. hlua_http_get_headers() crates and push |
| 4737 | * the array on the top of the stack. |
| 4738 | */ |
| 4739 | lua_pushstring(L, "headers"); |
| 4740 | htxn.s = s; |
| 4741 | htxn.p = px; |
| 4742 | htxn.dir = SMP_OPT_DIR_REQ; |
Christopher Faulet | 9d1332b | 2020-02-24 16:46:16 +0100 | [diff] [blame] | 4743 | if (!hlua_http_get_headers(L, &htxn.s->txn->req)) |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4744 | return 0; |
| 4745 | lua_settable(L, -3); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4746 | |
Amaury Denoyelle | c453f95 | 2021-07-06 11:40:12 +0200 | [diff] [blame] | 4747 | parser = http_uri_parser_init(htx_sl_req_uri(sl)); |
| 4748 | path = http_parse_path(&parser); |
Tim Duesterhus | ed52637 | 2020-03-05 17:56:33 +0100 | [diff] [blame] | 4749 | if (isttest(path)) { |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4750 | char *p, *q, *end; |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4751 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4752 | p = path.ptr; |
| 4753 | end = path.ptr + path.len; |
| 4754 | q = p; |
| 4755 | while (q < end && *q != '?') |
| 4756 | q++; |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4757 | |
Thierry FOURNIER | 7d38863 | 2017-02-22 02:06:16 +0100 | [diff] [blame] | 4758 | /* Stores the request path. */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4759 | lua_pushstring(L, "path"); |
| 4760 | lua_pushlstring(L, p, q - p); |
Thierry FOURNIER | 7d38863 | 2017-02-22 02:06:16 +0100 | [diff] [blame] | 4761 | lua_settable(L, -3); |
Thierry FOURNIER | 04c57b3 | 2015-03-18 13:43:10 +0100 | [diff] [blame] | 4762 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4763 | /* Stores the query string. */ |
| 4764 | lua_pushstring(L, "qs"); |
| 4765 | if (*q == '?') |
| 4766 | q++; |
| 4767 | lua_pushlstring(L, q, end - q); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4768 | lua_settable(L, -3); |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4769 | } |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4770 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4771 | for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) { |
| 4772 | struct htx_blk *blk = htx_get_blk(htx, pos); |
| 4773 | enum htx_blk_type type = htx_get_blk_type(blk); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4774 | |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 4775 | if (type == HTX_BLK_TLR || type == HTX_BLK_EOT) |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4776 | break; |
| 4777 | if (type == HTX_BLK_DATA) |
| 4778 | len += htx_get_blksz(blk); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4779 | } |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4780 | if (htx->extra != ULLONG_MAX) |
| 4781 | len += htx->extra; |
| 4782 | |
| 4783 | /* Stores the request path. */ |
| 4784 | lua_pushstring(L, "length"); |
| 4785 | lua_pushinteger(L, len); |
| 4786 | lua_settable(L, -3); |
Thierry FOURNIER | 04c57b3 | 2015-03-18 13:43:10 +0100 | [diff] [blame] | 4787 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4788 | /* Create an empty array of HTTP request headers. */ |
| 4789 | lua_pushstring(L, "response"); |
| 4790 | lua_newtable(L); |
| 4791 | lua_settable(L, -3); |
Thierry FOURNIER | 04c57b3 | 2015-03-18 13:43:10 +0100 | [diff] [blame] | 4792 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4793 | /* Pop a class stream metatable and affect it to the table. */ |
| 4794 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_applet_http_ref); |
| 4795 | lua_setmetatable(L, -2); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4796 | |
| 4797 | return 1; |
| 4798 | } |
| 4799 | |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4800 | __LJMP static int hlua_applet_http_set_var(lua_State *L) |
| 4801 | { |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4802 | struct hlua_appctx *luactx; |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4803 | struct stream *s; |
| 4804 | const char *name; |
| 4805 | size_t len; |
| 4806 | struct sample smp; |
| 4807 | |
Tim Duesterhus | 4e172c9 | 2020-05-19 13:49:42 +0200 | [diff] [blame] | 4808 | if (lua_gettop(L) < 3 || lua_gettop(L) > 4) |
| 4809 | 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] | 4810 | |
| 4811 | /* It is useles to retrieve the stream, but this function |
| 4812 | * runs only in a stream context. |
| 4813 | */ |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4814 | luactx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4815 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4816 | s = luactx->htxn.s; |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4817 | |
| 4818 | /* Converts the third argument in a sample. */ |
Amaury Denoyelle | bc0af6a | 2020-10-29 17:21:20 +0100 | [diff] [blame] | 4819 | memset(&smp, 0, sizeof(smp)); |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4820 | hlua_lua2smp(L, 3, &smp); |
| 4821 | |
| 4822 | /* Store the sample in a variable. */ |
| 4823 | smp_set_owner(&smp, s->be, s->sess, s, 0); |
Tim Duesterhus | 4e172c9 | 2020-05-19 13:49:42 +0200 | [diff] [blame] | 4824 | |
| 4825 | if (lua_gettop(L) == 4 && lua_toboolean(L, 4)) |
| 4826 | lua_pushboolean(L, vars_set_by_name_ifexist(name, len, &smp) != 0); |
| 4827 | else |
| 4828 | lua_pushboolean(L, vars_set_by_name(name, len, &smp) != 0); |
| 4829 | |
Tim Duesterhus | 84ebc13 | 2020-05-19 13:49:41 +0200 | [diff] [blame] | 4830 | return 1; |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4831 | } |
| 4832 | |
| 4833 | __LJMP static int hlua_applet_http_unset_var(lua_State *L) |
| 4834 | { |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4835 | struct hlua_appctx *luactx; |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4836 | struct stream *s; |
| 4837 | const char *name; |
| 4838 | size_t len; |
| 4839 | struct sample smp; |
| 4840 | |
| 4841 | MAY_LJMP(check_args(L, 2, "unset_var")); |
| 4842 | |
| 4843 | /* It is useles to retrieve the stream, but this function |
| 4844 | * runs only in a stream context. |
| 4845 | */ |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4846 | luactx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4847 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4848 | s = luactx->htxn.s; |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4849 | |
| 4850 | /* Unset the variable. */ |
| 4851 | smp_set_owner(&smp, s->be, s->sess, s, 0); |
Tim Duesterhus | 84ebc13 | 2020-05-19 13:49:41 +0200 | [diff] [blame] | 4852 | lua_pushboolean(L, vars_unset_by_name_ifexist(name, len, &smp) != 0); |
| 4853 | return 1; |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4854 | } |
| 4855 | |
| 4856 | __LJMP static int hlua_applet_http_get_var(lua_State *L) |
| 4857 | { |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4858 | struct hlua_appctx *luactx; |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4859 | struct stream *s; |
| 4860 | const char *name; |
| 4861 | size_t len; |
| 4862 | struct sample smp; |
| 4863 | |
| 4864 | MAY_LJMP(check_args(L, 2, "get_var")); |
| 4865 | |
| 4866 | /* It is useles to retrieve the stream, but this function |
| 4867 | * runs only in a stream context. |
| 4868 | */ |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4869 | luactx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4870 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4871 | s = luactx->htxn.s; |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4872 | |
| 4873 | smp_set_owner(&smp, s->be, s->sess, s, 0); |
Willy Tarreau | e352b9d | 2021-09-03 11:52:38 +0200 | [diff] [blame] | 4874 | if (!vars_get_by_name(name, len, &smp, NULL)) { |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4875 | lua_pushnil(L); |
| 4876 | return 1; |
| 4877 | } |
| 4878 | |
| 4879 | return hlua_smp2lua(L, &smp); |
| 4880 | } |
| 4881 | |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 4882 | __LJMP static int hlua_applet_http_set_priv(lua_State *L) |
| 4883 | { |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4884 | struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4885 | struct stream *s = luactx->htxn.s; |
Thierry FOURNIER | 3b0a6d4 | 2016-12-16 08:48:32 +0100 | [diff] [blame] | 4886 | struct hlua *hlua; |
| 4887 | |
| 4888 | /* 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] | 4889 | if (!s->hlua) |
| 4890 | return 0; |
| 4891 | hlua = s->hlua; |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 4892 | |
| 4893 | MAY_LJMP(check_args(L, 2, "set_priv")); |
| 4894 | |
| 4895 | /* Remove previous value. */ |
Thierry FOURNIER | e068b60 | 2017-04-26 13:27:05 +0200 | [diff] [blame] | 4896 | luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref); |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 4897 | |
| 4898 | /* Get and store new value. */ |
| 4899 | lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */ |
| 4900 | hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */ |
| 4901 | |
| 4902 | return 0; |
| 4903 | } |
| 4904 | |
| 4905 | __LJMP static int hlua_applet_http_get_priv(lua_State *L) |
| 4906 | { |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4907 | struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4908 | struct stream *s = luactx->htxn.s; |
Thierry FOURNIER | 3b0a6d4 | 2016-12-16 08:48:32 +0100 | [diff] [blame] | 4909 | struct hlua *hlua; |
| 4910 | |
| 4911 | /* 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] | 4912 | if (!s->hlua) { |
| 4913 | lua_pushnil(L); |
| 4914 | return 1; |
| 4915 | } |
| 4916 | hlua = s->hlua; |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 4917 | |
| 4918 | /* Push configuration index in the stack. */ |
| 4919 | lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref); |
| 4920 | |
| 4921 | return 1; |
| 4922 | } |
| 4923 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4924 | /* If expected data not yet available, it returns a yield. This function |
| 4925 | * consumes the data in the buffer. It returns a string containing the |
| 4926 | * data. This string can be empty. |
| 4927 | */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4928 | __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] | 4929 | { |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4930 | struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4931 | struct stream_interface *si = luactx->appctx->owner; |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4932 | struct channel *req = si_oc(si); |
| 4933 | struct htx *htx; |
| 4934 | struct htx_blk *blk; |
| 4935 | size_t count; |
| 4936 | int stop = 0; |
| 4937 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4938 | htx = htx_from_buf(&req->buf); |
| 4939 | count = co_data(req); |
Christopher Faulet | a3f1550 | 2019-05-13 15:27:23 +0200 | [diff] [blame] | 4940 | blk = htx_get_first_blk(htx); |
Christopher Faulet | cc26b13 | 2018-12-18 21:20:57 +0100 | [diff] [blame] | 4941 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4942 | while (count && !stop && blk) { |
| 4943 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 4944 | uint32_t sz = htx_get_blksz(blk); |
| 4945 | struct ist v; |
| 4946 | uint32_t vlen; |
| 4947 | char *nl; |
| 4948 | |
| 4949 | vlen = sz; |
| 4950 | if (vlen > count) { |
| 4951 | if (type != HTX_BLK_DATA) |
| 4952 | break; |
| 4953 | vlen = count; |
| 4954 | } |
| 4955 | |
| 4956 | switch (type) { |
| 4957 | case HTX_BLK_UNUSED: |
| 4958 | break; |
| 4959 | |
| 4960 | case HTX_BLK_DATA: |
| 4961 | v = htx_get_blk_value(htx, blk); |
| 4962 | v.len = vlen; |
| 4963 | nl = istchr(v, '\n'); |
| 4964 | if (nl != NULL) { |
| 4965 | stop = 1; |
| 4966 | vlen = nl - v.ptr + 1; |
| 4967 | } |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 4968 | luaL_addlstring(&luactx->b, v.ptr, vlen); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4969 | break; |
| 4970 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4971 | case HTX_BLK_TLR: |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 4972 | case HTX_BLK_EOT: |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4973 | stop = 1; |
| 4974 | break; |
| 4975 | |
| 4976 | default: |
| 4977 | break; |
| 4978 | } |
| 4979 | |
| 4980 | co_set_data(req, co_data(req) - vlen); |
| 4981 | count -= vlen; |
| 4982 | if (sz == vlen) |
| 4983 | blk = htx_remove_blk(htx, blk); |
| 4984 | else { |
| 4985 | htx_cut_data_blk(htx, blk, vlen); |
| 4986 | break; |
| 4987 | } |
| 4988 | } |
| 4989 | |
Christopher Faulet | eccb31c | 2021-04-02 14:24:56 +0200 | [diff] [blame] | 4990 | /* The message was fully consumed and no more data are expected |
| 4991 | * (EOM flag set). |
| 4992 | */ |
| 4993 | if (htx_is_empty(htx) && (htx->flags & HTX_FL_EOM)) |
| 4994 | stop = 1; |
| 4995 | |
Christopher Faulet | 0ae79d0 | 2019-02-27 21:36:59 +0100 | [diff] [blame] | 4996 | htx_to_buf(htx, &req->buf); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4997 | if (!stop) { |
| 4998 | si_cant_get(si); |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4999 | 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] | 5000 | } |
| 5001 | |
| 5002 | /* return the result. */ |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 5003 | luaL_pushresult(&luactx->b); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5004 | return 1; |
| 5005 | } |
| 5006 | |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5007 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 5008 | /* Check arguments for the function "hlua_channel_get_yield". */ |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5009 | __LJMP static int hlua_applet_http_getline(lua_State *L) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5010 | { |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 5011 | struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5012 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5013 | /* Initialise the string catenation. */ |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 5014 | luaL_buffinit(L, &luactx->b); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5015 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5016 | return MAY_LJMP(hlua_applet_http_getline_yield(L, 0, 0)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5017 | } |
| 5018 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5019 | /* If expected data not yet available, it returns a yield. This function |
| 5020 | * consumes the data in the buffer. It returns a string containing the |
| 5021 | * data. This string can be empty. |
| 5022 | */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5023 | __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] | 5024 | { |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 5025 | struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 5026 | struct stream_interface *si = luactx->appctx->owner; |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5027 | struct channel *req = si_oc(si); |
| 5028 | struct htx *htx; |
| 5029 | struct htx_blk *blk; |
| 5030 | size_t count; |
| 5031 | int len; |
| 5032 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5033 | htx = htx_from_buf(&req->buf); |
| 5034 | len = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 5035 | count = co_data(req); |
Christopher Faulet | 29f1758 | 2019-05-23 11:03:26 +0200 | [diff] [blame] | 5036 | blk = htx_get_head_blk(htx); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5037 | while (count && len && blk) { |
| 5038 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 5039 | uint32_t sz = htx_get_blksz(blk); |
| 5040 | struct ist v; |
| 5041 | uint32_t vlen; |
| 5042 | |
| 5043 | vlen = sz; |
| 5044 | if (len > 0 && vlen > len) |
| 5045 | vlen = len; |
| 5046 | if (vlen > count) { |
| 5047 | if (type != HTX_BLK_DATA) |
| 5048 | break; |
| 5049 | vlen = count; |
| 5050 | } |
| 5051 | |
| 5052 | switch (type) { |
| 5053 | case HTX_BLK_UNUSED: |
| 5054 | break; |
| 5055 | |
| 5056 | case HTX_BLK_DATA: |
| 5057 | v = htx_get_blk_value(htx, blk); |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 5058 | luaL_addlstring(&luactx->b, v.ptr, vlen); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5059 | break; |
| 5060 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5061 | case HTX_BLK_TLR: |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 5062 | case HTX_BLK_EOT: |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5063 | len = 0; |
| 5064 | break; |
| 5065 | |
| 5066 | default: |
| 5067 | break; |
| 5068 | } |
| 5069 | |
| 5070 | co_set_data(req, co_data(req) - vlen); |
| 5071 | count -= vlen; |
| 5072 | if (len > 0) |
| 5073 | len -= vlen; |
| 5074 | if (sz == vlen) |
| 5075 | blk = htx_remove_blk(htx, blk); |
| 5076 | else { |
| 5077 | htx_cut_data_blk(htx, blk, vlen); |
| 5078 | break; |
| 5079 | } |
| 5080 | } |
| 5081 | |
Christopher Faulet | eccb31c | 2021-04-02 14:24:56 +0200 | [diff] [blame] | 5082 | /* The message was fully consumed and no more data are expected |
| 5083 | * (EOM flag set). |
| 5084 | */ |
| 5085 | if (htx_is_empty(htx) && (htx->flags & HTX_FL_EOM)) |
| 5086 | len = 0; |
| 5087 | |
Christopher Faulet | 0ae79d0 | 2019-02-27 21:36:59 +0100 | [diff] [blame] | 5088 | htx_to_buf(htx, &req->buf); |
| 5089 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5090 | /* If we are no other data available, yield waiting for new data. */ |
| 5091 | if (len) { |
| 5092 | if (len > 0) { |
| 5093 | lua_pushinteger(L, len); |
| 5094 | lua_replace(L, 2); |
| 5095 | } |
| 5096 | si_cant_get(si); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 5097 | 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] | 5098 | } |
| 5099 | |
| 5100 | /* return the result. */ |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 5101 | luaL_pushresult(&luactx->b); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5102 | return 1; |
| 5103 | } |
| 5104 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 5105 | /* Check arguments for the function "hlua_channel_get_yield". */ |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5106 | __LJMP static int hlua_applet_http_recv(lua_State *L) |
| 5107 | { |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 5108 | struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5109 | int len = -1; |
| 5110 | |
| 5111 | /* Check arguments. */ |
| 5112 | if (lua_gettop(L) > 2) |
| 5113 | WILL_LJMP(luaL_error(L, "The 'recv' function requires between 1 and 2 arguments.")); |
| 5114 | if (lua_gettop(L) >= 2) { |
| 5115 | len = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 5116 | lua_pop(L, 1); |
| 5117 | } |
| 5118 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5119 | lua_pushinteger(L, len); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5120 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5121 | /* Initialise the string catenation. */ |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 5122 | luaL_buffinit(L, &luactx->b); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5123 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5124 | return MAY_LJMP(hlua_applet_http_recv_yield(L, 0, 0)); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5125 | } |
| 5126 | |
| 5127 | /* Append data in the output side of the buffer. This data is immediately |
| 5128 | * sent. The function returns the amount of data written. If the buffer |
| 5129 | * cannot contain the data, the function yields. The function returns -1 |
| 5130 | * if the channel is closed. |
| 5131 | */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5132 | __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] | 5133 | { |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 5134 | struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 5135 | struct stream_interface *si = luactx->appctx->owner; |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5136 | struct channel *res = si_ic(si); |
| 5137 | struct htx *htx = htx_from_buf(&res->buf); |
| 5138 | const char *data; |
| 5139 | size_t len; |
| 5140 | int l = MAY_LJMP(luaL_checkinteger(L, 3)); |
| 5141 | int max; |
| 5142 | |
Christopher Faulet | 9060fc0 | 2019-07-03 11:39:30 +0200 | [diff] [blame] | 5143 | max = htx_get_max_blksz(htx, channel_htx_recv_max(res, htx)); |
Christopher Faulet | 4b0e9b2 | 2019-01-09 12:16:58 +0100 | [diff] [blame] | 5144 | if (!max) |
| 5145 | goto snd_yield; |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5146 | |
| 5147 | data = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 5148 | |
| 5149 | /* Get the max amount of data which can write as input in the channel. */ |
| 5150 | if (max > (len - l)) |
| 5151 | max = len - l; |
| 5152 | |
| 5153 | /* Copy data. */ |
Willy Tarreau | 0a7ef02 | 2019-05-28 10:30:11 +0200 | [diff] [blame] | 5154 | max = htx_add_data(htx, ist2(data + l, max)); |
Christopher Faulet | f6cce3f | 2019-02-27 21:20:09 +0100 | [diff] [blame] | 5155 | channel_add_input(res, max); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5156 | |
| 5157 | /* update counters. */ |
| 5158 | l += max; |
| 5159 | lua_pop(L, 1); |
| 5160 | lua_pushinteger(L, l); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5161 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5162 | /* If some data is not send, declares the situation to the |
| 5163 | * applet, and returns a yield. |
| 5164 | */ |
| 5165 | if (l < len) { |
Christopher Faulet | 4b0e9b2 | 2019-01-09 12:16:58 +0100 | [diff] [blame] | 5166 | snd_yield: |
Christopher Faulet | 0ae79d0 | 2019-02-27 21:36:59 +0100 | [diff] [blame] | 5167 | htx_to_buf(htx, &res->buf); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5168 | si_rx_room_blk(si); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 5169 | 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] | 5170 | } |
| 5171 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5172 | htx_to_buf(htx, &res->buf); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5173 | return 1; |
| 5174 | } |
| 5175 | |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 5176 | /* Just a wrapper of "hlua_applet_send_yield". This wrapper permits |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5177 | * yield the LUA process, and resume it without checking the |
| 5178 | * input arguments. |
| 5179 | */ |
| 5180 | __LJMP static int hlua_applet_http_send(lua_State *L) |
| 5181 | { |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 5182 | struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5183 | |
| 5184 | /* We want to send some data. Headers must be sent. */ |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 5185 | if (!(luactx->appctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT)) { |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5186 | hlua_pusherror(L, "Lua: 'send' you must call start_response() before sending data."); |
| 5187 | WILL_LJMP(lua_error(L)); |
| 5188 | } |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5189 | |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 5190 | /* This integer is used for followinf the amount of data sent. */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5191 | lua_pushinteger(L, 0); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5192 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5193 | return MAY_LJMP(hlua_applet_http_send_yield(L, 0, 0)); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5194 | } |
| 5195 | |
| 5196 | __LJMP static int hlua_applet_http_addheader(lua_State *L) |
| 5197 | { |
| 5198 | const char *name; |
| 5199 | int ret; |
| 5200 | |
| 5201 | MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 5202 | name = MAY_LJMP(luaL_checkstring(L, 2)); |
| 5203 | MAY_LJMP(luaL_checkstring(L, 3)); |
| 5204 | |
| 5205 | /* Push in the stack the "response" entry. */ |
| 5206 | ret = lua_getfield(L, 1, "response"); |
| 5207 | if (ret != LUA_TTABLE) { |
| 5208 | hlua_pusherror(L, "Lua: 'add_header' internal error: AppletHTTP['response'] " |
| 5209 | "is expected as an array. %s found", lua_typename(L, ret)); |
| 5210 | WILL_LJMP(lua_error(L)); |
| 5211 | } |
| 5212 | |
| 5213 | /* check if the header is already registered if it is not |
| 5214 | * the case, register it. |
| 5215 | */ |
| 5216 | ret = lua_getfield(L, -1, name); |
| 5217 | if (ret == LUA_TNIL) { |
| 5218 | |
| 5219 | /* Entry not found. */ |
| 5220 | lua_pop(L, 1); /* remove the nil. The "response" table is the top of the stack. */ |
| 5221 | |
| 5222 | /* Insert the new header name in the array in the top of the stack. |
| 5223 | * It left the new array in the top of the stack. |
| 5224 | */ |
| 5225 | lua_newtable(L); |
| 5226 | lua_pushvalue(L, 2); |
| 5227 | lua_pushvalue(L, -2); |
| 5228 | lua_settable(L, -4); |
| 5229 | |
| 5230 | } else if (ret != LUA_TTABLE) { |
| 5231 | |
| 5232 | /* corruption error. */ |
| 5233 | hlua_pusherror(L, "Lua: 'add_header' internal error: AppletHTTP['response']['%s'] " |
| 5234 | "is expected as an array. %s found", name, lua_typename(L, ret)); |
| 5235 | WILL_LJMP(lua_error(L)); |
| 5236 | } |
| 5237 | |
Thayne McCombs | 8f0cc5c | 2021-01-07 21:35:52 -0700 | [diff] [blame] | 5238 | /* Now the top of thestack is an array of values. We push |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5239 | * the header value as new entry. |
| 5240 | */ |
| 5241 | lua_pushvalue(L, 3); |
| 5242 | ret = lua_rawlen(L, -2); |
| 5243 | lua_rawseti(L, -2, ret + 1); |
| 5244 | lua_pushboolean(L, 1); |
| 5245 | return 1; |
| 5246 | } |
| 5247 | |
| 5248 | __LJMP static int hlua_applet_http_status(lua_State *L) |
| 5249 | { |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 5250 | struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5251 | int status = MAY_LJMP(luaL_checkinteger(L, 2)); |
Robin H. Johnson | 52f5db2 | 2017-01-01 13:10:52 -0800 | [diff] [blame] | 5252 | const char *reason = MAY_LJMP(luaL_optlstring(L, 3, NULL, NULL)); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5253 | |
| 5254 | if (status < 100 || status > 599) { |
| 5255 | lua_pushboolean(L, 0); |
| 5256 | return 1; |
| 5257 | } |
| 5258 | |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 5259 | luactx->appctx->ctx.hlua_apphttp.status = status; |
| 5260 | luactx->appctx->ctx.hlua_apphttp.reason = reason; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5261 | lua_pushboolean(L, 1); |
| 5262 | return 1; |
| 5263 | } |
| 5264 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5265 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5266 | __LJMP static int hlua_applet_http_send_response(lua_State *L) |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5267 | { |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 5268 | struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 5269 | struct stream_interface *si = luactx->appctx->owner; |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5270 | struct channel *res = si_ic(si); |
| 5271 | struct htx *htx; |
| 5272 | struct htx_sl *sl; |
| 5273 | struct h1m h1m; |
| 5274 | const char *status, *reason; |
| 5275 | const char *name, *value; |
| 5276 | size_t nlen, vlen; |
| 5277 | unsigned int flags; |
| 5278 | |
| 5279 | /* Send the message at once. */ |
| 5280 | htx = htx_from_buf(&res->buf); |
| 5281 | h1m_init_res(&h1m); |
| 5282 | |
| 5283 | /* Use the same http version than the request. */ |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 5284 | status = ultoa_r(luactx->appctx->ctx.hlua_apphttp.status, trash.area, trash.size); |
| 5285 | reason = luactx->appctx->ctx.hlua_apphttp.reason; |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5286 | if (reason == NULL) |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 5287 | reason = http_get_reason(luactx->appctx->ctx.hlua_apphttp.status); |
| 5288 | if (luactx->appctx->ctx.hlua_apphttp.flags & APPLET_HTTP11) { |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5289 | flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11); |
| 5290 | sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"), ist(status), ist(reason)); |
| 5291 | } |
| 5292 | else { |
| 5293 | flags = HTX_SL_F_IS_RESP; |
| 5294 | sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.0"), ist(status), ist(reason)); |
| 5295 | } |
| 5296 | if (!sl) { |
| 5297 | hlua_pusherror(L, "Lua applet http '%s': Failed to create response.\n", |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 5298 | luactx->appctx->rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5299 | WILL_LJMP(lua_error(L)); |
| 5300 | } |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 5301 | sl->info.res.status = luactx->appctx->ctx.hlua_apphttp.status; |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5302 | |
| 5303 | /* Get the array associated to the field "response" in the object AppletHTTP. */ |
| 5304 | lua_pushvalue(L, 0); |
| 5305 | if (lua_getfield(L, 1, "response") != LUA_TTABLE) { |
| 5306 | hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response'] missing.\n", |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 5307 | luactx->appctx->rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5308 | WILL_LJMP(lua_error(L)); |
| 5309 | } |
| 5310 | |
| 5311 | /* Browse the list of headers. */ |
| 5312 | lua_pushnil(L); |
| 5313 | while(lua_next(L, -2) != 0) { |
| 5314 | /* We expect a string as -2. */ |
| 5315 | if (lua_type(L, -2) != LUA_TSTRING) { |
| 5316 | hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response'][] element must be a string. got %s.\n", |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 5317 | luactx->appctx->rule->arg.hlua_rule->fcn->name, |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5318 | lua_typename(L, lua_type(L, -2))); |
| 5319 | WILL_LJMP(lua_error(L)); |
| 5320 | } |
| 5321 | name = lua_tolstring(L, -2, &nlen); |
| 5322 | |
| 5323 | /* We expect an array as -1. */ |
| 5324 | if (lua_type(L, -1) != LUA_TTABLE) { |
| 5325 | hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response']['%s'] element must be an table. got %s.\n", |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 5326 | luactx->appctx->rule->arg.hlua_rule->fcn->name, |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5327 | name, |
| 5328 | lua_typename(L, lua_type(L, -1))); |
| 5329 | WILL_LJMP(lua_error(L)); |
| 5330 | } |
| 5331 | |
| 5332 | /* Browse the table who is on the top of the stack. */ |
| 5333 | lua_pushnil(L); |
| 5334 | while(lua_next(L, -2) != 0) { |
| 5335 | int id; |
| 5336 | |
| 5337 | /* We expect a number as -2. */ |
| 5338 | if (lua_type(L, -2) != LUA_TNUMBER) { |
| 5339 | hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response']['%s'][] element must be a number. got %s.\n", |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 5340 | luactx->appctx->rule->arg.hlua_rule->fcn->name, |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5341 | name, |
| 5342 | lua_typename(L, lua_type(L, -2))); |
| 5343 | WILL_LJMP(lua_error(L)); |
| 5344 | } |
| 5345 | id = lua_tointeger(L, -2); |
| 5346 | |
| 5347 | /* We expect a string as -2. */ |
| 5348 | if (lua_type(L, -1) != LUA_TSTRING) { |
| 5349 | hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response']['%s'][%d] element must be a string. got %s.\n", |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 5350 | luactx->appctx->rule->arg.hlua_rule->fcn->name, |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5351 | name, id, |
| 5352 | lua_typename(L, lua_type(L, -1))); |
| 5353 | WILL_LJMP(lua_error(L)); |
| 5354 | } |
| 5355 | value = lua_tolstring(L, -1, &vlen); |
| 5356 | |
| 5357 | /* Simple Protocol checks. */ |
Christopher Faulet | 545fbba | 2021-09-28 09:36:25 +0200 | [diff] [blame] | 5358 | if (isteqi(ist2(name, nlen), ist("transfer-encoding"))) { |
| 5359 | int ret; |
| 5360 | |
| 5361 | ret = h1_parse_xfer_enc_header(&h1m, ist2(value, vlen)); |
| 5362 | if (ret < 0) { |
| 5363 | hlua_pusherror(L, "Lua applet http '%s': Invalid '%s' header.\n", |
| 5364 | luactx->appctx->rule->arg.hlua_rule->fcn->name, |
| 5365 | name); |
| 5366 | WILL_LJMP(lua_error(L)); |
| 5367 | } |
| 5368 | else if (ret == 0) |
| 5369 | goto next; /* Skip it */ |
| 5370 | } |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5371 | else if (isteqi(ist2(name, nlen), ist("content-length"))) { |
| 5372 | struct ist v = ist2(value, vlen); |
| 5373 | int ret; |
| 5374 | |
| 5375 | ret = h1_parse_cont_len_header(&h1m, &v); |
| 5376 | if (ret < 0) { |
| 5377 | hlua_pusherror(L, "Lua applet http '%s': Invalid '%s' header.\n", |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 5378 | luactx->appctx->rule->arg.hlua_rule->fcn->name, |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5379 | name); |
| 5380 | WILL_LJMP(lua_error(L)); |
| 5381 | } |
| 5382 | else if (ret == 0) |
| 5383 | goto next; /* Skip it */ |
| 5384 | } |
| 5385 | |
| 5386 | /* Add a new header */ |
| 5387 | if (!htx_add_header(htx, ist2(name, nlen), ist2(value, vlen))) { |
| 5388 | hlua_pusherror(L, "Lua applet http '%s': Failed to add header '%s' in the response.\n", |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 5389 | luactx->appctx->rule->arg.hlua_rule->fcn->name, |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5390 | name); |
| 5391 | WILL_LJMP(lua_error(L)); |
| 5392 | } |
| 5393 | next: |
| 5394 | /* Remove the array from the stack, and get next element with a remaining string. */ |
| 5395 | lua_pop(L, 1); |
| 5396 | } |
| 5397 | |
| 5398 | /* Remove the array from the stack, and get next element with a remaining string. */ |
| 5399 | lua_pop(L, 1); |
| 5400 | } |
| 5401 | |
| 5402 | if (h1m.flags & H1_MF_CHNK) |
| 5403 | h1m.flags &= ~H1_MF_CLEN; |
| 5404 | if (h1m.flags & (H1_MF_CLEN|H1_MF_CHNK)) |
| 5405 | h1m.flags |= H1_MF_XFER_LEN; |
| 5406 | |
| 5407 | /* Uset HTX start-line flags */ |
| 5408 | if (h1m.flags & H1_MF_XFER_ENC) |
| 5409 | flags |= HTX_SL_F_XFER_ENC; |
| 5410 | if (h1m.flags & H1_MF_XFER_LEN) { |
| 5411 | flags |= HTX_SL_F_XFER_LEN; |
| 5412 | if (h1m.flags & H1_MF_CHNK) |
| 5413 | flags |= HTX_SL_F_CHNK; |
| 5414 | else if (h1m.flags & H1_MF_CLEN) |
| 5415 | flags |= HTX_SL_F_CLEN; |
| 5416 | if (h1m.body_len == 0) |
| 5417 | flags |= HTX_SL_F_BODYLESS; |
| 5418 | } |
| 5419 | sl->flags |= flags; |
| 5420 | |
Thayne McCombs | 8f0cc5c | 2021-01-07 21:35:52 -0700 | [diff] [blame] | 5421 | /* If we don't have a content-length set, and the HTTP version is 1.1 |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5422 | * and the status code implies the presence of a message body, we must |
| 5423 | * announce a transfer encoding chunked. This is required by haproxy |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 5424 | * for the keepalive compliance. If the applet announces a transfer-encoding |
| 5425 | * chunked itself, don't do anything. |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5426 | */ |
| 5427 | if ((flags & (HTX_SL_F_VER_11|HTX_SL_F_XFER_LEN)) == HTX_SL_F_VER_11 && |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 5428 | luactx->appctx->ctx.hlua_apphttp.status >= 200 && |
| 5429 | luactx->appctx->ctx.hlua_apphttp.status != 204 && |
| 5430 | luactx->appctx->ctx.hlua_apphttp.status != 304) { |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5431 | /* Add a new header */ |
| 5432 | sl->flags |= (HTX_SL_F_XFER_ENC|H1_MF_CHNK|H1_MF_XFER_LEN); |
| 5433 | if (!htx_add_header(htx, ist("transfer-encoding"), ist("chunked"))) { |
| 5434 | hlua_pusherror(L, "Lua applet http '%s': Failed to add header 'transfer-encoding' in the response.\n", |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 5435 | luactx->appctx->rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5436 | WILL_LJMP(lua_error(L)); |
| 5437 | } |
| 5438 | } |
| 5439 | |
| 5440 | /* Finalize headers. */ |
| 5441 | if (!htx_add_endof(htx, HTX_BLK_EOH)) { |
| 5442 | hlua_pusherror(L, "Lua applet http '%s': Failed create the response.\n", |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 5443 | luactx->appctx->rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5444 | WILL_LJMP(lua_error(L)); |
| 5445 | } |
| 5446 | |
| 5447 | if (htx_used_space(htx) > b_size(&res->buf) - global.tune.maxrewrite) { |
| 5448 | b_reset(&res->buf); |
| 5449 | hlua_pusherror(L, "Lua: 'start_response': response header block too big"); |
| 5450 | WILL_LJMP(lua_error(L)); |
| 5451 | } |
| 5452 | |
| 5453 | htx_to_buf(htx, &res->buf); |
Christopher Faulet | f6cce3f | 2019-02-27 21:20:09 +0100 | [diff] [blame] | 5454 | channel_add_input(res, htx->data); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5455 | |
| 5456 | /* Headers sent, set the flag. */ |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 5457 | luactx->appctx->ctx.hlua_apphttp.flags |= APPLET_HDR_SENT; |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5458 | return 0; |
| 5459 | |
| 5460 | } |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5461 | /* We will build the status line and the headers of the HTTP response. |
| 5462 | * We will try send at once if its not possible, we give back the hand |
| 5463 | * waiting for more room. |
| 5464 | */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5465 | __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] | 5466 | { |
Willy Tarreau | 7e702d1 | 2021-04-28 17:59:21 +0200 | [diff] [blame] | 5467 | struct hlua_appctx *luactx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 5468 | struct stream_interface *si = luactx->appctx->owner; |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5469 | struct channel *res = si_ic(si); |
| 5470 | |
| 5471 | if (co_data(res)) { |
| 5472 | si_rx_room_blk(si); |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5473 | 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] | 5474 | } |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5475 | return MAY_LJMP(hlua_applet_http_send_response(L)); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5476 | } |
| 5477 | |
| 5478 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5479 | __LJMP static int hlua_applet_http_start_response(lua_State *L) |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5480 | { |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5481 | return MAY_LJMP(hlua_applet_http_start_response_yield(L, 0, 0)); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5482 | } |
| 5483 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5484 | /* |
| 5485 | * |
| 5486 | * |
| 5487 | * Class HTTP |
| 5488 | * |
| 5489 | * |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 5490 | */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5491 | |
| 5492 | /* Returns a struct hlua_txn if the stack entry "ud" is |
| 5493 | * a class stream, otherwise it throws an error. |
| 5494 | */ |
| 5495 | __LJMP static struct hlua_txn *hlua_checkhttp(lua_State *L, int ud) |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5496 | { |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5497 | return MAY_LJMP(hlua_checkudata(L, ud, class_http_ref)); |
| 5498 | } |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5499 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5500 | /* This function creates and push in the stack a HTTP object |
| 5501 | * according with a current TXN. |
| 5502 | */ |
| 5503 | static int hlua_http_new(lua_State *L, struct hlua_txn *txn) |
| 5504 | { |
| 5505 | struct hlua_txn *htxn; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5506 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5507 | /* Check stack size. */ |
| 5508 | if (!lua_checkstack(L, 3)) |
| 5509 | return 0; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5510 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5511 | /* Create the object: obj[0] = userdata. |
| 5512 | * Note that the base of the Converters object is the |
| 5513 | * same than the TXN object. |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5514 | */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5515 | lua_newtable(L); |
| 5516 | htxn = lua_newuserdata(L, sizeof(*htxn)); |
| 5517 | lua_rawseti(L, -2, 0); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5518 | |
| 5519 | htxn->s = txn->s; |
| 5520 | htxn->p = txn->p; |
Christopher Faulet | 256b69a | 2019-05-23 11:14:21 +0200 | [diff] [blame] | 5521 | htxn->dir = txn->dir; |
| 5522 | htxn->flags = txn->flags; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5523 | |
| 5524 | /* Pop a class stream metatable and affect it to the table. */ |
| 5525 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_http_ref); |
| 5526 | lua_setmetatable(L, -2); |
| 5527 | |
| 5528 | return 1; |
| 5529 | } |
| 5530 | |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 5531 | /* This function creates and returns an array containing the status-line |
| 5532 | * elements. This function does not fails. |
| 5533 | */ |
| 5534 | __LJMP static int hlua_http_get_stline(lua_State *L, struct htx_sl *sl) |
| 5535 | { |
| 5536 | /* Create the table. */ |
| 5537 | lua_newtable(L); |
| 5538 | |
| 5539 | if (sl->flags & HTX_SL_F_IS_RESP) { |
| 5540 | lua_pushstring(L, "version"); |
| 5541 | lua_pushlstring(L, HTX_SL_RES_VPTR(sl), HTX_SL_RES_VLEN(sl)); |
| 5542 | lua_settable(L, -3); |
| 5543 | lua_pushstring(L, "code"); |
| 5544 | lua_pushlstring(L, HTX_SL_RES_CPTR(sl), HTX_SL_RES_CLEN(sl)); |
| 5545 | lua_settable(L, -3); |
| 5546 | lua_pushstring(L, "reason"); |
| 5547 | lua_pushlstring(L, HTX_SL_RES_RPTR(sl), HTX_SL_RES_RLEN(sl)); |
| 5548 | lua_settable(L, -3); |
| 5549 | } |
| 5550 | else { |
| 5551 | lua_pushstring(L, "method"); |
| 5552 | lua_pushlstring(L, HTX_SL_REQ_MPTR(sl), HTX_SL_REQ_MLEN(sl)); |
| 5553 | lua_settable(L, -3); |
| 5554 | lua_pushstring(L, "uri"); |
| 5555 | lua_pushlstring(L, HTX_SL_REQ_UPTR(sl), HTX_SL_REQ_ULEN(sl)); |
| 5556 | lua_settable(L, -3); |
| 5557 | lua_pushstring(L, "version"); |
| 5558 | lua_pushlstring(L, HTX_SL_REQ_VPTR(sl), HTX_SL_REQ_VLEN(sl)); |
| 5559 | lua_settable(L, -3); |
| 5560 | } |
| 5561 | return 1; |
| 5562 | } |
| 5563 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5564 | /* This function creates ans returns an array of HTTP headers. |
| 5565 | * This function does not fails. It is used as wrapper with the |
| 5566 | * 2 following functions. |
| 5567 | */ |
Christopher Faulet | 9d1332b | 2020-02-24 16:46:16 +0100 | [diff] [blame] | 5568 | __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] | 5569 | { |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5570 | struct htx *htx; |
| 5571 | int32_t pos; |
| 5572 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5573 | /* Create the table. */ |
| 5574 | lua_newtable(L); |
| 5575 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5576 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5577 | htx = htxbuf(&msg->chn->buf); |
| 5578 | for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) { |
| 5579 | struct htx_blk *blk = htx_get_blk(htx, pos); |
| 5580 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 5581 | struct ist n, v; |
| 5582 | int len; |
Christopher Faulet | 724a12c | 2018-12-13 22:12:15 +0100 | [diff] [blame] | 5583 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5584 | if (type == HTX_BLK_HDR) { |
| 5585 | n = htx_get_blk_name(htx,blk); |
| 5586 | v = htx_get_blk_value(htx, blk); |
Christopher Faulet | 724a12c | 2018-12-13 22:12:15 +0100 | [diff] [blame] | 5587 | } |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5588 | else if (type == HTX_BLK_EOH) |
| 5589 | break; |
| 5590 | else |
| 5591 | continue; |
Christopher Faulet | 724a12c | 2018-12-13 22:12:15 +0100 | [diff] [blame] | 5592 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5593 | /* Check for existing entry: |
| 5594 | * assume that the table is on the top of the stack, and |
| 5595 | * push the key in the stack, the function lua_gettable() |
| 5596 | * perform the lookup. |
| 5597 | */ |
| 5598 | lua_pushlstring(L, n.ptr, n.len); |
| 5599 | lua_gettable(L, -2); |
Christopher Faulet | 724a12c | 2018-12-13 22:12:15 +0100 | [diff] [blame] | 5600 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5601 | switch (lua_type(L, -1)) { |
| 5602 | case LUA_TNIL: |
| 5603 | /* Table not found, create it. */ |
| 5604 | lua_pop(L, 1); /* remove the nil value. */ |
| 5605 | lua_pushlstring(L, n.ptr, n.len); /* push the header name as key. */ |
| 5606 | lua_newtable(L); /* create and push empty table. */ |
| 5607 | lua_pushlstring(L, v.ptr, v.len); /* push header value. */ |
| 5608 | lua_rawseti(L, -2, 0); /* index header value (pop it). */ |
| 5609 | 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] | 5610 | break; |
Christopher Faulet | 724a12c | 2018-12-13 22:12:15 +0100 | [diff] [blame] | 5611 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5612 | case LUA_TTABLE: |
| 5613 | /* Entry found: push the value in the table. */ |
| 5614 | len = lua_rawlen(L, -1); |
| 5615 | lua_pushlstring(L, v.ptr, v.len); /* push header value. */ |
| 5616 | lua_rawseti(L, -2, len+1); /* index header value (pop it). */ |
| 5617 | lua_pop(L, 1); /* remove the table (it is stored in the main table). */ |
| 5618 | break; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5619 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5620 | default: |
| 5621 | /* Other cases are errors. */ |
| 5622 | hlua_pusherror(L, "internal error during the parsing of headers."); |
| 5623 | WILL_LJMP(lua_error(L)); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5624 | } |
| 5625 | } |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5626 | return 1; |
| 5627 | } |
| 5628 | |
| 5629 | __LJMP static int hlua_http_req_get_headers(lua_State *L) |
| 5630 | { |
| 5631 | struct hlua_txn *htxn; |
| 5632 | |
| 5633 | MAY_LJMP(check_args(L, 1, "req_get_headers")); |
| 5634 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5635 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5636 | if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5637 | WILL_LJMP(lua_error(L)); |
| 5638 | |
Christopher Faulet | 9d1332b | 2020-02-24 16:46:16 +0100 | [diff] [blame] | 5639 | return hlua_http_get_headers(L, &htxn->s->txn->req); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5640 | } |
| 5641 | |
| 5642 | __LJMP static int hlua_http_res_get_headers(lua_State *L) |
| 5643 | { |
| 5644 | struct hlua_txn *htxn; |
| 5645 | |
| 5646 | MAY_LJMP(check_args(L, 1, "res_get_headers")); |
| 5647 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5648 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5649 | if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5650 | WILL_LJMP(lua_error(L)); |
| 5651 | |
Christopher Faulet | 9d1332b | 2020-02-24 16:46:16 +0100 | [diff] [blame] | 5652 | return hlua_http_get_headers(L, &htxn->s->txn->rsp); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5653 | } |
| 5654 | |
| 5655 | /* This function replace full header, or just a value in |
| 5656 | * the request or in the response. It is a wrapper fir the |
| 5657 | * 4 following functions. |
| 5658 | */ |
Christopher Faulet | d1914aa | 2020-02-24 16:52:46 +0100 | [diff] [blame] | 5659 | __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] | 5660 | { |
| 5661 | size_t name_len; |
| 5662 | const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len)); |
| 5663 | const char *reg = MAY_LJMP(luaL_checkstring(L, 3)); |
| 5664 | const char *value = MAY_LJMP(luaL_checkstring(L, 4)); |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5665 | struct htx *htx; |
Dragan Dosen | 2674303 | 2019-04-30 15:54:36 +0200 | [diff] [blame] | 5666 | struct my_regex *re; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5667 | |
Dragan Dosen | 2674303 | 2019-04-30 15:54:36 +0200 | [diff] [blame] | 5668 | if (!(re = regex_comp(reg, 1, 1, NULL))) |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5669 | WILL_LJMP(luaL_argerror(L, 3, "invalid regex")); |
| 5670 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5671 | htx = htxbuf(&msg->chn->buf); |
Christopher Faulet | d1914aa | 2020-02-24 16:52:46 +0100 | [diff] [blame] | 5672 | 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] | 5673 | regex_free(re); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5674 | return 0; |
| 5675 | } |
| 5676 | |
| 5677 | __LJMP static int hlua_http_req_rep_hdr(lua_State *L) |
| 5678 | { |
| 5679 | struct hlua_txn *htxn; |
| 5680 | |
| 5681 | MAY_LJMP(check_args(L, 4, "req_rep_hdr")); |
| 5682 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5683 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5684 | if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5685 | WILL_LJMP(lua_error(L)); |
| 5686 | |
Christopher Faulet | d1914aa | 2020-02-24 16:52:46 +0100 | [diff] [blame] | 5687 | 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] | 5688 | } |
| 5689 | |
| 5690 | __LJMP static int hlua_http_res_rep_hdr(lua_State *L) |
| 5691 | { |
| 5692 | struct hlua_txn *htxn; |
| 5693 | |
| 5694 | MAY_LJMP(check_args(L, 4, "res_rep_hdr")); |
| 5695 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5696 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5697 | if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5698 | WILL_LJMP(lua_error(L)); |
| 5699 | |
Christopher Faulet | d1914aa | 2020-02-24 16:52:46 +0100 | [diff] [blame] | 5700 | 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] | 5701 | } |
| 5702 | |
| 5703 | __LJMP static int hlua_http_req_rep_val(lua_State *L) |
| 5704 | { |
| 5705 | struct hlua_txn *htxn; |
| 5706 | |
| 5707 | MAY_LJMP(check_args(L, 4, "req_rep_hdr")); |
| 5708 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5709 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5710 | if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5711 | WILL_LJMP(lua_error(L)); |
| 5712 | |
Christopher Faulet | d1914aa | 2020-02-24 16:52:46 +0100 | [diff] [blame] | 5713 | 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] | 5714 | } |
| 5715 | |
| 5716 | __LJMP static int hlua_http_res_rep_val(lua_State *L) |
| 5717 | { |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5718 | struct hlua_txn *htxn; |
| 5719 | |
| 5720 | MAY_LJMP(check_args(L, 4, "res_rep_val")); |
| 5721 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5722 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5723 | if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5724 | WILL_LJMP(lua_error(L)); |
| 5725 | |
Christopher Faulet | d1914aa | 2020-02-24 16:52:46 +0100 | [diff] [blame] | 5726 | 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] | 5727 | } |
| 5728 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 5729 | /* This function deletes all the occurrences of an header. |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5730 | * It is a wrapper for the 2 following functions. |
| 5731 | */ |
Christopher Faulet | d31c7b3 | 2020-02-25 09:37:57 +0100 | [diff] [blame] | 5732 | __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] | 5733 | { |
| 5734 | size_t len; |
| 5735 | const char *name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5736 | struct htx *htx = htxbuf(&msg->chn->buf); |
| 5737 | struct http_hdr_ctx ctx; |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5738 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5739 | ctx.blk = NULL; |
| 5740 | while (http_find_header(htx, ist2(name, len), &ctx, 1)) |
| 5741 | http_remove_header(htx, &ctx); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5742 | return 0; |
| 5743 | } |
| 5744 | |
| 5745 | __LJMP static int hlua_http_req_del_hdr(lua_State *L) |
| 5746 | { |
| 5747 | struct hlua_txn *htxn; |
| 5748 | |
| 5749 | MAY_LJMP(check_args(L, 2, "req_del_hdr")); |
| 5750 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5751 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5752 | if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5753 | WILL_LJMP(lua_error(L)); |
| 5754 | |
Christopher Faulet | d31c7b3 | 2020-02-25 09:37:57 +0100 | [diff] [blame] | 5755 | return hlua_http_del_hdr(L, &htxn->s->txn->req); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5756 | } |
| 5757 | |
| 5758 | __LJMP static int hlua_http_res_del_hdr(lua_State *L) |
| 5759 | { |
| 5760 | struct hlua_txn *htxn; |
| 5761 | |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5762 | MAY_LJMP(check_args(L, 2, "res_del_hdr")); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5763 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5764 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5765 | if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5766 | WILL_LJMP(lua_error(L)); |
| 5767 | |
Christopher Faulet | d31c7b3 | 2020-02-25 09:37:57 +0100 | [diff] [blame] | 5768 | return hlua_http_del_hdr(L, &htxn->s->txn->rsp); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5769 | } |
| 5770 | |
| 5771 | /* This function adds an header. It is a wrapper used by |
| 5772 | * the 2 following functions. |
| 5773 | */ |
Christopher Faulet | d31c7b3 | 2020-02-25 09:37:57 +0100 | [diff] [blame] | 5774 | __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] | 5775 | { |
| 5776 | size_t name_len; |
| 5777 | const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len)); |
| 5778 | size_t value_len; |
| 5779 | const char *value = MAY_LJMP(luaL_checklstring(L, 3, &value_len)); |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5780 | struct htx *htx = htxbuf(&msg->chn->buf); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5781 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5782 | lua_pushboolean(L, http_add_header(htx, ist2(name, name_len), |
| 5783 | ist2(value, value_len))); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5784 | return 0; |
| 5785 | } |
| 5786 | |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 5787 | __LJMP static int hlua_http_req_add_hdr(lua_State *L) |
| 5788 | { |
| 5789 | struct hlua_txn *htxn; |
| 5790 | |
| 5791 | MAY_LJMP(check_args(L, 3, "req_add_hdr")); |
| 5792 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5793 | |
| 5794 | if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s)) |
| 5795 | WILL_LJMP(lua_error(L)); |
| 5796 | |
| 5797 | return hlua_http_add_hdr(L, &htxn->s->txn->req); |
| 5798 | } |
| 5799 | |
| 5800 | __LJMP static int hlua_http_res_add_hdr(lua_State *L) |
| 5801 | { |
| 5802 | struct hlua_txn *htxn; |
| 5803 | |
| 5804 | MAY_LJMP(check_args(L, 3, "res_add_hdr")); |
| 5805 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5806 | |
| 5807 | if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s)) |
| 5808 | WILL_LJMP(lua_error(L)); |
| 5809 | |
| 5810 | return hlua_http_add_hdr(L, &htxn->s->txn->rsp); |
| 5811 | } |
| 5812 | |
| 5813 | static int hlua_http_req_set_hdr(lua_State *L) |
| 5814 | { |
| 5815 | struct hlua_txn *htxn; |
| 5816 | |
| 5817 | MAY_LJMP(check_args(L, 3, "req_set_hdr")); |
| 5818 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5819 | |
| 5820 | if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s)) |
| 5821 | WILL_LJMP(lua_error(L)); |
| 5822 | |
| 5823 | hlua_http_del_hdr(L, &htxn->s->txn->req); |
| 5824 | return hlua_http_add_hdr(L, &htxn->s->txn->req); |
| 5825 | } |
| 5826 | |
| 5827 | static int hlua_http_res_set_hdr(lua_State *L) |
| 5828 | { |
| 5829 | struct hlua_txn *htxn; |
| 5830 | |
| 5831 | MAY_LJMP(check_args(L, 3, "res_set_hdr")); |
| 5832 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5833 | |
| 5834 | if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s)) |
| 5835 | WILL_LJMP(lua_error(L)); |
| 5836 | |
| 5837 | hlua_http_del_hdr(L, &htxn->s->txn->rsp); |
| 5838 | return hlua_http_add_hdr(L, &htxn->s->txn->rsp); |
| 5839 | } |
| 5840 | |
| 5841 | /* This function set the method. */ |
| 5842 | static int hlua_http_req_set_meth(lua_State *L) |
| 5843 | { |
| 5844 | struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5845 | size_t name_len; |
| 5846 | const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len)); |
| 5847 | |
| 5848 | if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s)) |
| 5849 | WILL_LJMP(lua_error(L)); |
| 5850 | |
| 5851 | lua_pushboolean(L, http_req_replace_stline(0, name, name_len, htxn->p, htxn->s) != -1); |
| 5852 | return 1; |
| 5853 | } |
| 5854 | |
| 5855 | /* This function set the method. */ |
| 5856 | static int hlua_http_req_set_path(lua_State *L) |
| 5857 | { |
| 5858 | struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5859 | size_t name_len; |
| 5860 | const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len)); |
| 5861 | |
| 5862 | if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s)) |
| 5863 | WILL_LJMP(lua_error(L)); |
| 5864 | |
| 5865 | lua_pushboolean(L, http_req_replace_stline(1, name, name_len, htxn->p, htxn->s) != -1); |
| 5866 | return 1; |
| 5867 | } |
| 5868 | |
| 5869 | /* This function set the query-string. */ |
| 5870 | static int hlua_http_req_set_query(lua_State *L) |
| 5871 | { |
| 5872 | struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5873 | size_t name_len; |
| 5874 | const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len)); |
| 5875 | |
| 5876 | if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s)) |
| 5877 | WILL_LJMP(lua_error(L)); |
| 5878 | |
| 5879 | /* Check length. */ |
| 5880 | if (name_len > trash.size - 1) { |
| 5881 | lua_pushboolean(L, 0); |
| 5882 | return 1; |
| 5883 | } |
| 5884 | |
| 5885 | /* Add the mark question as prefix. */ |
| 5886 | chunk_reset(&trash); |
| 5887 | trash.area[trash.data++] = '?'; |
| 5888 | memcpy(trash.area + trash.data, name, name_len); |
| 5889 | trash.data += name_len; |
| 5890 | |
| 5891 | lua_pushboolean(L, |
| 5892 | http_req_replace_stline(2, trash.area, trash.data, htxn->p, htxn->s) != -1); |
| 5893 | return 1; |
| 5894 | } |
| 5895 | |
| 5896 | /* This function set the uri. */ |
| 5897 | static int hlua_http_req_set_uri(lua_State *L) |
| 5898 | { |
| 5899 | struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5900 | size_t name_len; |
| 5901 | const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len)); |
| 5902 | |
| 5903 | if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s)) |
| 5904 | WILL_LJMP(lua_error(L)); |
| 5905 | |
| 5906 | lua_pushboolean(L, http_req_replace_stline(3, name, name_len, htxn->p, htxn->s) != -1); |
| 5907 | return 1; |
| 5908 | } |
| 5909 | |
| 5910 | /* This function set the response code & optionally reason. */ |
| 5911 | static int hlua_http_res_set_status(lua_State *L) |
| 5912 | { |
| 5913 | struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5914 | unsigned int code = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 5915 | const char *str = MAY_LJMP(luaL_optlstring(L, 3, NULL, NULL)); |
| 5916 | const struct ist reason = ist2(str, (str ? strlen(str) : 0)); |
| 5917 | |
| 5918 | if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s)) |
| 5919 | WILL_LJMP(lua_error(L)); |
| 5920 | |
| 5921 | http_res_set_status(code, reason, htxn->s); |
| 5922 | return 0; |
| 5923 | } |
| 5924 | |
| 5925 | /* |
| 5926 | * |
| 5927 | * |
| 5928 | * Class HTTPMessage |
| 5929 | * |
| 5930 | * |
| 5931 | */ |
| 5932 | |
| 5933 | /* Returns a struct http_msg if the stack entry "ud" is a class HTTPMessage, |
| 5934 | * otherwise it throws an error. |
| 5935 | */ |
| 5936 | __LJMP static struct http_msg *hlua_checkhttpmsg(lua_State *L, int ud) |
| 5937 | { |
| 5938 | return MAY_LJMP(hlua_checkudata(L, ud, class_http_msg_ref)); |
| 5939 | } |
| 5940 | |
| 5941 | /* Creates and pushes on the stack a HTTP object according with a current TXN. |
| 5942 | */ |
Christopher Faulet | 78c3547 | 2020-02-26 17:14:08 +0100 | [diff] [blame] | 5943 | static int hlua_http_msg_new(lua_State *L, struct http_msg *msg) |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 5944 | { |
| 5945 | /* Check stack size. */ |
| 5946 | if (!lua_checkstack(L, 3)) |
| 5947 | return 0; |
| 5948 | |
| 5949 | lua_newtable(L); |
| 5950 | lua_pushlightuserdata(L, msg); |
| 5951 | lua_rawseti(L, -2, 0); |
| 5952 | |
| 5953 | /* Create the "channel" field that contains the request channel object. */ |
| 5954 | lua_pushstring(L, "channel"); |
| 5955 | if (!hlua_channel_new(L, msg->chn)) |
| 5956 | return 0; |
| 5957 | lua_rawset(L, -3); |
| 5958 | |
| 5959 | /* Pop a class stream metatable and affect it to the table. */ |
| 5960 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_http_msg_ref); |
| 5961 | lua_setmetatable(L, -2); |
| 5962 | |
| 5963 | return 1; |
| 5964 | } |
| 5965 | |
| 5966 | /* Helper function returning a filter attached to the HTTP message at the |
| 5967 | * position <ud> in the stack, filling the current offset and length of the |
Ilya Shipitsin | ff0f278 | 2021-08-22 22:18:07 +0500 | [diff] [blame] | 5968 | * filter. If no filter is attached, NULL is returned and <offset> and <len> are |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 5969 | * filled with output and input length respectively. |
| 5970 | */ |
| 5971 | static struct filter *hlua_http_msg_filter(lua_State *L, int ud, struct http_msg *msg, size_t *offset, size_t *len) |
| 5972 | { |
| 5973 | struct channel *chn = msg->chn; |
| 5974 | struct htx *htx = htxbuf(&chn->buf); |
| 5975 | struct filter *filter = NULL; |
| 5976 | |
| 5977 | *offset = co_data(msg->chn); |
| 5978 | *len = htx->data - co_data(msg->chn); |
| 5979 | |
| 5980 | if (lua_getfield(L, ud, "__filter") == LUA_TLIGHTUSERDATA) { |
| 5981 | filter = lua_touserdata (L, -1); |
| 5982 | if (msg->msg_state >= HTTP_MSG_DATA) { |
| 5983 | struct hlua_flt_ctx *flt_ctx = filter->ctx; |
| 5984 | |
| 5985 | *offset = flt_ctx->cur_off[CHN_IDX(chn)]; |
| 5986 | *len = flt_ctx->cur_len[CHN_IDX(chn)]; |
| 5987 | } |
| 5988 | } |
| 5989 | |
| 5990 | lua_pop(L, 1); |
| 5991 | return filter; |
| 5992 | } |
| 5993 | |
| 5994 | /* Returns true if the channel attached to the HTTP message is the response |
| 5995 | * channel. |
| 5996 | */ |
| 5997 | __LJMP static int hlua_http_msg_is_resp(lua_State *L) |
| 5998 | { |
| 5999 | struct http_msg *msg; |
| 6000 | |
| 6001 | MAY_LJMP(check_args(L, 1, "is_resp")); |
| 6002 | msg = MAY_LJMP(hlua_checkhttpmsg(L, 1)); |
| 6003 | |
| 6004 | lua_pushboolean(L, !!(msg->chn->flags & CF_ISRESP)); |
| 6005 | return 1; |
| 6006 | } |
| 6007 | |
| 6008 | /* Returns an array containing the elements status-line of the HTTP message. It relies |
| 6009 | * on hlua_http_get_stline(). |
| 6010 | */ |
| 6011 | __LJMP static int hlua_http_msg_get_stline(lua_State *L) |
| 6012 | { |
| 6013 | struct http_msg *msg; |
| 6014 | struct htx *htx; |
| 6015 | struct htx_sl *sl; |
| 6016 | |
| 6017 | MAY_LJMP(check_args(L, 1, "get_stline")); |
| 6018 | msg = MAY_LJMP(hlua_checkhttpmsg(L, 1)); |
| 6019 | |
| 6020 | if (msg->msg_state > HTTP_MSG_BODY) |
| 6021 | WILL_LJMP(lua_error(L)); |
| 6022 | |
| 6023 | htx = htxbuf(&msg->chn->buf); |
| 6024 | sl = http_get_stline(htx); |
| 6025 | if (!sl) |
| 6026 | return 0; |
| 6027 | return hlua_http_get_stline(L, sl); |
| 6028 | } |
| 6029 | |
| 6030 | /* Returns an array containing all headers of the HTTP message. it relies on |
| 6031 | * hlua_http_get_headers(). |
| 6032 | */ |
| 6033 | __LJMP static int hlua_http_msg_get_headers(lua_State *L) |
| 6034 | { |
| 6035 | struct http_msg *msg; |
| 6036 | |
| 6037 | MAY_LJMP(check_args(L, 1, "get_headers")); |
| 6038 | msg = MAY_LJMP(hlua_checkhttpmsg(L, 1)); |
| 6039 | |
| 6040 | if (msg->msg_state > HTTP_MSG_BODY) |
| 6041 | WILL_LJMP(lua_error(L)); |
| 6042 | |
| 6043 | return hlua_http_get_headers(L, msg); |
| 6044 | } |
| 6045 | |
| 6046 | /* Deletes all occurrences of an header in the HTTP message matching on its |
| 6047 | * name. It relies on hlua_http_del_hdr(). |
| 6048 | */ |
| 6049 | __LJMP static int hlua_http_msg_del_hdr(lua_State *L) |
| 6050 | { |
| 6051 | struct http_msg *msg; |
| 6052 | |
| 6053 | MAY_LJMP(check_args(L, 2, "del_header")); |
| 6054 | msg = MAY_LJMP(hlua_checkhttpmsg(L, 1)); |
| 6055 | |
| 6056 | if (msg->msg_state > HTTP_MSG_BODY) |
| 6057 | WILL_LJMP(lua_error(L)); |
| 6058 | |
| 6059 | return hlua_http_del_hdr(L, msg); |
| 6060 | } |
| 6061 | |
Ilya Shipitsin | ff0f278 | 2021-08-22 22:18:07 +0500 | [diff] [blame] | 6062 | /* Matches the full value line of all occurrences of an header in the HTTP |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6063 | * message given its name against a regex and replaces it if it matches. It |
| 6064 | * relies on hlua_http_rep_hdr(). |
| 6065 | */ |
| 6066 | __LJMP static int hlua_http_msg_rep_hdr(lua_State *L) |
| 6067 | { |
| 6068 | struct http_msg *msg; |
| 6069 | |
| 6070 | MAY_LJMP(check_args(L, 4, "rep_header")); |
| 6071 | msg = MAY_LJMP(hlua_checkhttpmsg(L, 1)); |
| 6072 | |
| 6073 | if (msg->msg_state > HTTP_MSG_BODY) |
| 6074 | WILL_LJMP(lua_error(L)); |
| 6075 | |
| 6076 | return hlua_http_rep_hdr(L, msg, 1); |
| 6077 | } |
| 6078 | |
Ilya Shipitsin | bd6b4be | 2021-10-15 16:18:21 +0500 | [diff] [blame] | 6079 | /* Matches all comma-separated values of all occurrences of an header in the HTTP |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6080 | * message given its name against a regex and replaces it if it matches. It |
| 6081 | * relies on hlua_http_rep_hdr(). |
| 6082 | */ |
| 6083 | __LJMP static int hlua_http_msg_rep_val(lua_State *L) |
| 6084 | { |
| 6085 | struct http_msg *msg; |
| 6086 | |
| 6087 | MAY_LJMP(check_args(L, 4, "rep_value")); |
| 6088 | msg = MAY_LJMP(hlua_checkhttpmsg(L, 1)); |
| 6089 | |
| 6090 | if (msg->msg_state > HTTP_MSG_BODY) |
| 6091 | WILL_LJMP(lua_error(L)); |
| 6092 | |
| 6093 | return hlua_http_rep_hdr(L, msg, 0); |
| 6094 | } |
| 6095 | |
| 6096 | /* Add an header in the HTTP message. It relies on hlua_http_add_hdr() */ |
| 6097 | __LJMP static int hlua_http_msg_add_hdr(lua_State *L) |
| 6098 | { |
| 6099 | struct http_msg *msg; |
| 6100 | |
| 6101 | MAY_LJMP(check_args(L, 3, "add_header")); |
| 6102 | msg = MAY_LJMP(hlua_checkhttpmsg(L, 1)); |
| 6103 | |
| 6104 | if (msg->msg_state > HTTP_MSG_BODY) |
| 6105 | WILL_LJMP(lua_error(L)); |
| 6106 | |
| 6107 | return hlua_http_add_hdr(L, msg); |
| 6108 | } |
| 6109 | |
| 6110 | /* Add an header in the HTTP message removing existing headers with the same |
| 6111 | * name. It relies on hlua_http_del_hdr() and hlua_http_add_hdr(). |
| 6112 | */ |
| 6113 | __LJMP static int hlua_http_msg_set_hdr(lua_State *L) |
| 6114 | { |
| 6115 | struct http_msg *msg; |
| 6116 | |
| 6117 | MAY_LJMP(check_args(L, 3, "set_header")); |
| 6118 | msg = MAY_LJMP(hlua_checkhttpmsg(L, 1)); |
| 6119 | |
| 6120 | if (msg->msg_state > HTTP_MSG_BODY) |
| 6121 | WILL_LJMP(lua_error(L)); |
| 6122 | |
| 6123 | hlua_http_del_hdr(L, msg); |
| 6124 | return hlua_http_add_hdr(L, msg); |
| 6125 | } |
| 6126 | |
| 6127 | /* Rewrites the request method. It relies on http_req_replace_stline(). */ |
| 6128 | __LJMP static int hlua_http_msg_set_meth(lua_State *L) |
| 6129 | { |
| 6130 | struct stream *s; |
| 6131 | struct http_msg *msg; |
| 6132 | const char *name; |
| 6133 | size_t name_len; |
| 6134 | |
| 6135 | MAY_LJMP(check_args(L, 2, "set_method")); |
| 6136 | msg = MAY_LJMP(hlua_checkhttpmsg(L, 1)); |
| 6137 | name = MAY_LJMP(luaL_checklstring(L, 2, &name_len)); |
| 6138 | |
| 6139 | if ((msg->chn->flags & CF_ISRESP) || msg->msg_state > HTTP_MSG_BODY) |
| 6140 | WILL_LJMP(lua_error(L)); |
| 6141 | |
| 6142 | s = chn_strm(msg->chn); |
| 6143 | lua_pushboolean(L, http_req_replace_stline(0, name, name_len, s->be, s) != -1); |
| 6144 | return 1; |
| 6145 | } |
| 6146 | |
| 6147 | /* Rewrites the request path. It relies on http_req_replace_stline(). */ |
| 6148 | __LJMP static int hlua_http_msg_set_path(lua_State *L) |
| 6149 | { |
| 6150 | struct stream *s; |
| 6151 | struct http_msg *msg; |
| 6152 | const char *name; |
| 6153 | size_t name_len; |
| 6154 | |
| 6155 | MAY_LJMP(check_args(L, 2, "set_path")); |
| 6156 | msg = MAY_LJMP(hlua_checkhttpmsg(L, 1)); |
| 6157 | name = MAY_LJMP(luaL_checklstring(L, 2, &name_len)); |
| 6158 | |
| 6159 | if ((msg->chn->flags & CF_ISRESP) || msg->msg_state > HTTP_MSG_BODY) |
| 6160 | WILL_LJMP(lua_error(L)); |
| 6161 | |
| 6162 | s = chn_strm(msg->chn); |
| 6163 | lua_pushboolean(L, http_req_replace_stline(1, name, name_len, s->be, s) != -1); |
| 6164 | return 1; |
| 6165 | } |
| 6166 | |
| 6167 | /* Rewrites the request query-string. It relies on http_req_replace_stline(). */ |
| 6168 | __LJMP static int hlua_http_msg_set_query(lua_State *L) |
| 6169 | { |
| 6170 | struct stream *s; |
| 6171 | struct http_msg *msg; |
| 6172 | const char *name; |
| 6173 | size_t name_len; |
| 6174 | |
| 6175 | MAY_LJMP(check_args(L, 2, "set_query")); |
| 6176 | msg = MAY_LJMP(hlua_checkhttpmsg(L, 1)); |
| 6177 | name = MAY_LJMP(luaL_checklstring(L, 2, &name_len)); |
| 6178 | |
| 6179 | if ((msg->chn->flags & CF_ISRESP) || msg->msg_state > HTTP_MSG_BODY) |
| 6180 | WILL_LJMP(lua_error(L)); |
| 6181 | |
| 6182 | /* Check length. */ |
| 6183 | if (name_len > trash.size - 1) { |
| 6184 | lua_pushboolean(L, 0); |
| 6185 | return 1; |
| 6186 | } |
| 6187 | |
| 6188 | /* Add the mark question as prefix. */ |
| 6189 | chunk_reset(&trash); |
| 6190 | trash.area[trash.data++] = '?'; |
| 6191 | memcpy(trash.area + trash.data, name, name_len); |
| 6192 | trash.data += name_len; |
| 6193 | |
| 6194 | s = chn_strm(msg->chn); |
| 6195 | lua_pushboolean(L, http_req_replace_stline(2, trash.area, trash.data, s->be, s) != -1); |
| 6196 | return 1; |
| 6197 | } |
| 6198 | |
| 6199 | /* Rewrites the request URI. It relies on http_req_replace_stline(). */ |
| 6200 | __LJMP static int hlua_http_msg_set_uri(lua_State *L) |
| 6201 | { |
| 6202 | struct stream *s; |
| 6203 | struct http_msg *msg; |
| 6204 | const char *name; |
| 6205 | size_t name_len; |
| 6206 | |
| 6207 | MAY_LJMP(check_args(L, 2, "set_uri")); |
| 6208 | msg = MAY_LJMP(hlua_checkhttpmsg(L, 1)); |
| 6209 | name = MAY_LJMP(luaL_checklstring(L, 2, &name_len)); |
| 6210 | |
| 6211 | if ((msg->chn->flags & CF_ISRESP) || msg->msg_state > HTTP_MSG_BODY) |
| 6212 | WILL_LJMP(lua_error(L)); |
| 6213 | |
| 6214 | s = chn_strm(msg->chn); |
| 6215 | lua_pushboolean(L, http_req_replace_stline(3, name, name_len, s->be, s) != -1); |
| 6216 | return 1; |
| 6217 | } |
| 6218 | |
| 6219 | /* Rewrites the response status code. It relies on http_res_set_status(). */ |
| 6220 | __LJMP static int hlua_http_msg_set_status(lua_State *L) |
| 6221 | { |
| 6222 | struct http_msg *msg; |
| 6223 | unsigned int code; |
| 6224 | const char *reason; |
| 6225 | size_t reason_len; |
| 6226 | |
| 6227 | msg = MAY_LJMP(hlua_checkhttpmsg(L, 1)); |
| 6228 | code = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 6229 | reason = MAY_LJMP(luaL_optlstring(L, 3, NULL, &reason_len)); |
| 6230 | |
| 6231 | if (!(msg->chn->flags & CF_ISRESP) || msg->msg_state > HTTP_MSG_BODY) |
| 6232 | WILL_LJMP(lua_error(L)); |
| 6233 | |
| 6234 | lua_pushboolean(L, http_res_set_status(code, ist2(reason, reason_len), chn_strm(msg->chn)) != -1); |
| 6235 | return 1; |
| 6236 | } |
| 6237 | |
| 6238 | /* Returns true if the HTTP message is full. */ |
| 6239 | __LJMP static int hlua_http_msg_is_full(lua_State *L) |
| 6240 | { |
| 6241 | struct http_msg *msg; |
| 6242 | |
| 6243 | MAY_LJMP(check_args(L, 1, "is_full")); |
| 6244 | msg = MAY_LJMP(hlua_checkhttpmsg(L, 1)); |
| 6245 | lua_pushboolean(L, channel_full(msg->chn, 0)); |
| 6246 | return 1; |
| 6247 | } |
| 6248 | |
| 6249 | /* Returns true if the HTTP message may still receive data. */ |
| 6250 | __LJMP static int hlua_http_msg_may_recv(lua_State *L) |
| 6251 | { |
| 6252 | struct http_msg *msg; |
| 6253 | struct htx *htx; |
| 6254 | |
| 6255 | MAY_LJMP(check_args(L, 1, "may_recv")); |
| 6256 | msg = MAY_LJMP(hlua_checkhttpmsg(L, 1)); |
| 6257 | htx = htxbuf(&msg->chn->buf); |
| 6258 | lua_pushboolean(L, (htx_expect_more(htx) && !channel_input_closed(msg->chn) && channel_may_recv(msg->chn))); |
| 6259 | return 1; |
| 6260 | } |
| 6261 | |
| 6262 | /* Returns true if the HTTP message EOM was received */ |
| 6263 | __LJMP static int hlua_http_msg_is_eom(lua_State *L) |
| 6264 | { |
| 6265 | struct http_msg *msg; |
| 6266 | struct htx *htx; |
| 6267 | |
| 6268 | MAY_LJMP(check_args(L, 1, "may_recv")); |
| 6269 | msg = MAY_LJMP(hlua_checkhttpmsg(L, 1)); |
| 6270 | htx = htxbuf(&msg->chn->buf); |
| 6271 | lua_pushboolean(L, !htx_expect_more(htx)); |
| 6272 | return 1; |
| 6273 | } |
| 6274 | |
| 6275 | /* Returns the number of bytes available in the input side of the HTTP |
| 6276 | * message. This function never fails. |
| 6277 | */ |
| 6278 | __LJMP static int hlua_http_msg_get_in_len(lua_State *L) |
| 6279 | { |
| 6280 | struct http_msg *msg; |
Christopher Faulet | eae8afa | 2020-02-26 17:15:48 +0100 | [diff] [blame] | 6281 | size_t output, input; |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6282 | |
| 6283 | MAY_LJMP(check_args(L, 1, "input")); |
| 6284 | msg = MAY_LJMP(hlua_checkhttpmsg(L, 1)); |
Christopher Faulet | eae8afa | 2020-02-26 17:15:48 +0100 | [diff] [blame] | 6285 | hlua_http_msg_filter(L, 1, msg, &output, &input); |
| 6286 | lua_pushinteger(L, input); |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6287 | return 1; |
| 6288 | } |
| 6289 | |
| 6290 | /* Returns the number of bytes available in the output side of the HTTP |
| 6291 | * message. This function never fails. |
| 6292 | */ |
| 6293 | __LJMP static int hlua_http_msg_get_out_len(lua_State *L) |
| 6294 | { |
| 6295 | struct http_msg *msg; |
Christopher Faulet | eae8afa | 2020-02-26 17:15:48 +0100 | [diff] [blame] | 6296 | size_t output, input; |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6297 | |
| 6298 | MAY_LJMP(check_args(L, 1, "output")); |
| 6299 | msg = MAY_LJMP(hlua_checkhttpmsg(L, 1)); |
Christopher Faulet | eae8afa | 2020-02-26 17:15:48 +0100 | [diff] [blame] | 6300 | hlua_http_msg_filter(L, 1, msg, &output, &input); |
| 6301 | lua_pushinteger(L, output); |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6302 | return 1; |
| 6303 | } |
| 6304 | |
| 6305 | /* Copies at most <len> bytes of DATA blocks from the HTTP message <msg> |
| 6306 | * starting at the offset <offset> and put it in a string LUA variables. It |
Ilya Shipitsin | ff0f278 | 2021-08-22 22:18:07 +0500 | [diff] [blame] | 6307 | * returns the built string length. It stops on the first non-DATA HTX |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6308 | * block. This function is called during the payload filtering, so the headers |
| 6309 | * are already scheduled for output (from the filter point of view). |
| 6310 | */ |
| 6311 | static int _hlua_http_msg_dup(struct http_msg *msg, lua_State *L, size_t offset, size_t len) |
| 6312 | { |
| 6313 | struct htx *htx = htxbuf(&msg->chn->buf); |
| 6314 | struct htx_blk *blk; |
| 6315 | struct htx_ret htxret; |
| 6316 | luaL_Buffer b; |
| 6317 | int ret = 0; |
| 6318 | |
| 6319 | luaL_buffinit(L, &b); |
| 6320 | htxret = htx_find_offset(htx, offset); |
| 6321 | for (blk = htxret.blk, offset = htxret.ret; blk && len; blk = htx_get_next_blk(htx, blk)) { |
| 6322 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 6323 | struct ist v; |
| 6324 | |
| 6325 | switch (type) { |
| 6326 | case HTX_BLK_UNUSED: |
| 6327 | break; |
| 6328 | |
| 6329 | case HTX_BLK_DATA: |
| 6330 | v = htx_get_blk_value(htx, blk); |
Tim Duesterhus | b113b5c | 2021-09-15 13:58:44 +0200 | [diff] [blame] | 6331 | v = istadv(v, offset); |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6332 | if (v.len > len) |
| 6333 | v.len = len; |
| 6334 | |
| 6335 | luaL_addlstring(&b, v.ptr, v.len); |
| 6336 | ret += v.len; |
| 6337 | break; |
| 6338 | |
| 6339 | default: |
vishnu | 0af4bd7 | 2021-10-24 06:46:24 +0530 | [diff] [blame] | 6340 | if (!ret) |
| 6341 | goto no_data; |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6342 | goto end; |
| 6343 | } |
| 6344 | offset = 0; |
| 6345 | } |
| 6346 | |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6347 | end: |
vishnu | 0af4bd7 | 2021-10-24 06:46:24 +0530 | [diff] [blame] | 6348 | if (!ret && (htx->flags & HTX_FL_EOM)) |
| 6349 | goto no_data; |
| 6350 | luaL_pushresult(&b); |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6351 | return ret; |
vishnu | 0af4bd7 | 2021-10-24 06:46:24 +0530 | [diff] [blame] | 6352 | |
| 6353 | no_data: |
| 6354 | /* Remove the empty string and push nil on the stack */ |
| 6355 | lua_pop(L, 1); |
| 6356 | lua_pushnil(L); |
| 6357 | return 0; |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6358 | } |
| 6359 | |
| 6360 | /* Copies the string <str> to the HTTP message <msg> at the offset |
| 6361 | * <offset>. This function returns -1 if data cannot be copied. Otherwise, it |
Ilya Shipitsin | ff0f278 | 2021-08-22 22:18:07 +0500 | [diff] [blame] | 6362 | * returns the amount of data written. This function is responsible to update |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6363 | * the filter context. |
| 6364 | */ |
| 6365 | static int _hlua_http_msg_insert(struct http_msg *msg, struct filter *filter, struct ist str, size_t offset) |
| 6366 | { |
| 6367 | struct htx *htx = htx_from_buf(&msg->chn->buf); |
| 6368 | struct htx_ret htxret; |
| 6369 | int /*max, */ret = 0; |
| 6370 | |
| 6371 | /* Nothing to do, just return */ |
| 6372 | if (unlikely(istlen(str) == 0)) |
| 6373 | goto end; |
| 6374 | |
| 6375 | if (istlen(str) > htx_free_data_space(htx)) { |
| 6376 | ret = -1; |
| 6377 | goto end; |
| 6378 | } |
| 6379 | |
| 6380 | htxret = htx_find_offset(htx, offset); |
| 6381 | if (!htxret.blk || htx_get_blk_type(htxret.blk) != HTX_BLK_DATA) { |
| 6382 | if (!htx_add_last_data(htx, str)) |
| 6383 | goto end; |
| 6384 | } |
| 6385 | else { |
| 6386 | struct ist v = htx_get_blk_value(htx, htxret.blk); |
| 6387 | v.ptr += htxret.ret; |
| 6388 | v.len = 0; |
| 6389 | if (!htx_replace_blk_value(htx, htxret.blk, v, str)) |
| 6390 | goto end; |
| 6391 | } |
| 6392 | ret = str.len; |
| 6393 | if (ret) { |
| 6394 | struct hlua_flt_ctx *flt_ctx = filter->ctx; |
| 6395 | flt_update_offsets(filter, msg->chn, ret); |
| 6396 | flt_ctx->cur_len[CHN_IDX(msg->chn)] += ret; |
| 6397 | } |
| 6398 | |
| 6399 | end: |
| 6400 | htx_to_buf(htx, &msg->chn->buf); |
| 6401 | return ret; |
| 6402 | } |
| 6403 | |
| 6404 | /* Helper function removing at most <len> bytes of DATA blocks at the absolute |
| 6405 | * position <offset>. It stops on the first non-DATA HTX block. This function is |
| 6406 | * called during the payload filtering, so the headers are already scheduled for |
Ilya Shipitsin | ff0f278 | 2021-08-22 22:18:07 +0500 | [diff] [blame] | 6407 | * output (from the filter point of view). This function is responsible to |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6408 | * update the filter context. |
| 6409 | */ |
| 6410 | static void _hlua_http_msg_delete(struct http_msg *msg, struct filter *filter, size_t offset, size_t len) |
| 6411 | { |
| 6412 | struct hlua_flt_ctx *flt_ctx = filter->ctx; |
| 6413 | struct htx *htx = htx_from_buf(&msg->chn->buf); |
| 6414 | struct htx_blk *blk; |
| 6415 | struct htx_ret htxret; |
| 6416 | size_t ret = 0; |
| 6417 | |
| 6418 | /* Be sure <len> is always the amount of DATA to remove */ |
| 6419 | if (htx->data == offset+len && htx_get_tail_type(htx) == HTX_BLK_DATA) { |
| 6420 | htx_truncate(htx, offset); |
| 6421 | ret = len; |
| 6422 | goto end; |
| 6423 | } |
| 6424 | |
| 6425 | htxret = htx_find_offset(htx, offset); |
| 6426 | blk = htxret.blk; |
| 6427 | if (htxret.ret) { |
| 6428 | struct ist v; |
| 6429 | |
| 6430 | if (htx_get_blk_type(blk) != HTX_BLK_DATA) |
| 6431 | goto end; |
| 6432 | v = htx_get_blk_value(htx, blk); |
| 6433 | v.ptr += htxret.ret; |
| 6434 | if (v.len > len) |
| 6435 | v.len = len; |
Tim Duesterhus | b113b5c | 2021-09-15 13:58:44 +0200 | [diff] [blame] | 6436 | blk = htx_replace_blk_value(htx, blk, v, IST_NULL); |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6437 | len -= v.len; |
| 6438 | ret += v.len; |
| 6439 | } |
| 6440 | |
| 6441 | |
| 6442 | while (blk && len) { |
| 6443 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 6444 | uint32_t sz = htx_get_blksz(blk); |
| 6445 | |
| 6446 | switch (type) { |
| 6447 | case HTX_BLK_UNUSED: |
| 6448 | break; |
| 6449 | |
| 6450 | case HTX_BLK_DATA: |
| 6451 | if (len < sz) { |
| 6452 | htx_cut_data_blk(htx, blk, len); |
| 6453 | ret += len; |
| 6454 | goto end; |
| 6455 | } |
| 6456 | break; |
| 6457 | |
| 6458 | default: |
| 6459 | goto end; |
| 6460 | } |
| 6461 | |
Ilya Shipitsin | ff0f278 | 2021-08-22 22:18:07 +0500 | [diff] [blame] | 6462 | /* Remove all the data block */ |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6463 | len -= sz; |
| 6464 | ret += sz; |
| 6465 | blk = htx_remove_blk(htx, blk); |
| 6466 | } |
| 6467 | |
| 6468 | end: |
| 6469 | flt_update_offsets(filter, msg->chn, -ret); |
| 6470 | flt_ctx->cur_len[CHN_IDX(msg->chn)] -= ret; |
| 6471 | /* WARNING: we don't call htx_to_buf() on purpose, because we don't want |
| 6472 | * to loose the EOM flag if the message is empty. |
| 6473 | */ |
| 6474 | } |
| 6475 | |
| 6476 | /* Copies input data found in an HTTP message. Unlike the channel function used |
| 6477 | * to duplicate raw data, this one can only be called inside a filter, from |
| 6478 | * http_payload callback. So it cannot yield. An exception is returned if it is |
| 6479 | * called from another callback. If nothing was copied, a nil value is pushed on |
| 6480 | * the stack. |
| 6481 | */ |
| 6482 | __LJMP static int hlua_http_msg_get_body(lua_State *L) |
| 6483 | { |
| 6484 | struct http_msg *msg; |
| 6485 | struct filter *filter; |
| 6486 | size_t output, input; |
| 6487 | int offset, len; |
| 6488 | |
| 6489 | if (lua_gettop(L) < 1 || lua_gettop(L) > 3) |
| 6490 | WILL_LJMP(luaL_error(L, "'data' expects at most 2 arguments")); |
| 6491 | msg = MAY_LJMP(hlua_checkhttpmsg(L, 1)); |
| 6492 | |
| 6493 | if (msg->msg_state < HTTP_MSG_DATA) |
| 6494 | WILL_LJMP(lua_error(L)); |
| 6495 | |
| 6496 | filter = hlua_http_msg_filter(L, 1, msg, &output, &input); |
| 6497 | if (!filter || !hlua_filter_from_payload(filter)) |
| 6498 | WILL_LJMP(lua_error(L)); |
| 6499 | |
| 6500 | if (!ci_data(msg->chn) && channel_input_closed(msg->chn)) { |
| 6501 | lua_pushnil(L); |
| 6502 | return 1; |
| 6503 | } |
| 6504 | |
| 6505 | offset = output; |
| 6506 | if (lua_gettop(L) > 1) { |
| 6507 | offset = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 6508 | if (offset < 0) |
Christopher Faulet | 70c4345 | 2021-08-13 08:11:00 +0200 | [diff] [blame] | 6509 | offset = MAX(0, (int)input + offset); |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6510 | offset += output; |
| 6511 | if (offset < output || offset > input + output) { |
| 6512 | lua_pushfstring(L, "offset out of range."); |
| 6513 | WILL_LJMP(lua_error(L)); |
| 6514 | } |
| 6515 | } |
| 6516 | len = output + input - offset; |
| 6517 | if (lua_gettop(L) == 3) { |
| 6518 | len = MAY_LJMP(luaL_checkinteger(L, 3)); |
| 6519 | if (!len) |
| 6520 | goto dup; |
| 6521 | if (len == -1) |
| 6522 | len = global.tune.bufsize; |
| 6523 | if (len < 0) { |
| 6524 | lua_pushfstring(L, "length out of range."); |
| 6525 | WILL_LJMP(lua_error(L)); |
| 6526 | } |
| 6527 | } |
| 6528 | |
| 6529 | dup: |
| 6530 | _hlua_http_msg_dup(msg, L, offset, len); |
| 6531 | return 1; |
| 6532 | } |
| 6533 | |
| 6534 | /* Appends a string to the HTTP message, after all existing DATA blocks but |
| 6535 | * before the trailers, if any. It returns the amount of data written or -1 if |
| 6536 | * nothing was copied. Unlike the channel function used to append data, this one |
| 6537 | * can only be called inside a filter, from http_payload callback. So it cannot |
| 6538 | * yield. An exception is returned if it is called from another callback. |
| 6539 | */ |
| 6540 | __LJMP static int hlua_http_msg_append(lua_State *L) |
| 6541 | { |
| 6542 | struct http_msg *msg; |
| 6543 | struct filter *filter; |
| 6544 | const char *str; |
| 6545 | size_t offset, len, sz; |
| 6546 | int ret; |
| 6547 | |
| 6548 | MAY_LJMP(check_args(L, 2, "append")); |
| 6549 | msg = MAY_LJMP(hlua_checkhttpmsg(L, 1)); |
| 6550 | |
| 6551 | if (msg->msg_state < HTTP_MSG_DATA) |
| 6552 | WILL_LJMP(lua_error(L)); |
| 6553 | |
| 6554 | str = MAY_LJMP(luaL_checklstring(L, 2, &sz)); |
| 6555 | filter = hlua_http_msg_filter(L, 1, msg, &offset, &len); |
| 6556 | if (!filter || !hlua_filter_from_payload(filter)) |
| 6557 | WILL_LJMP(lua_error(L)); |
| 6558 | |
| 6559 | ret = _hlua_http_msg_insert(msg, filter, ist2(str, sz), offset+len); |
| 6560 | lua_pushinteger(L, ret); |
| 6561 | return 1; |
| 6562 | } |
| 6563 | |
| 6564 | /* Prepends a string to the HTTP message, before all existing DATA blocks. It |
| 6565 | * returns the amount of data written or -1 if nothing was copied. Unlike the |
| 6566 | * channel function used to prepend data, this one can only be called inside a |
| 6567 | * filter, from http_payload callback. So it cannot yield. An exception is |
| 6568 | * returned if it is called from another callback. |
| 6569 | */ |
| 6570 | __LJMP static int hlua_http_msg_prepend(lua_State *L) |
| 6571 | { |
| 6572 | struct http_msg *msg; |
| 6573 | struct filter *filter; |
| 6574 | const char *str; |
| 6575 | size_t offset, len, sz; |
| 6576 | int ret; |
| 6577 | |
| 6578 | MAY_LJMP(check_args(L, 2, "prepend")); |
| 6579 | msg = MAY_LJMP(hlua_checkhttpmsg(L, 1)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 6580 | |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6581 | if (msg->msg_state < HTTP_MSG_DATA) |
| 6582 | WILL_LJMP(lua_error(L)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 6583 | |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6584 | str = MAY_LJMP(luaL_checklstring(L, 2, &sz)); |
| 6585 | filter = hlua_http_msg_filter(L, 1, msg, &offset, &len); |
| 6586 | if (!filter || !hlua_filter_from_payload(filter)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 6587 | WILL_LJMP(lua_error(L)); |
| 6588 | |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6589 | ret = _hlua_http_msg_insert(msg, filter, ist2(str, sz), offset); |
| 6590 | lua_pushinteger(L, ret); |
| 6591 | return 1; |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 6592 | } |
| 6593 | |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6594 | /* Inserts a string to the HTTP message at a given offset. By default the string |
| 6595 | * is appended at the end of DATA blocks. It returns the amount of data written |
| 6596 | * or -1 if nothing was copied. Unlike the channel function used to insert data, |
| 6597 | * this one can only be called inside a filter, from http_payload callback. So |
| 6598 | * it cannot yield. An exception is returned if it is called from another |
| 6599 | * callback. |
| 6600 | */ |
| 6601 | __LJMP static int hlua_http_msg_insert_data(lua_State *L) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 6602 | { |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6603 | struct http_msg *msg; |
| 6604 | struct filter *filter; |
| 6605 | const char *str; |
| 6606 | size_t input, output, sz; |
| 6607 | int offset; |
| 6608 | int ret; |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 6609 | |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6610 | if (lua_gettop(L) < 2 || lua_gettop(L) > 3) |
| 6611 | WILL_LJMP(luaL_error(L, "'insert' expects at least 1 argument and at most 2 arguments")); |
| 6612 | MAY_LJMP(check_args(L, 2, "insert")); |
| 6613 | msg = MAY_LJMP(hlua_checkhttpmsg(L, 1)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 6614 | |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6615 | if (msg->msg_state < HTTP_MSG_DATA) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 6616 | WILL_LJMP(lua_error(L)); |
| 6617 | |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6618 | str = MAY_LJMP(luaL_checklstring(L, 2, &sz)); |
| 6619 | filter = hlua_http_msg_filter(L, 1, msg, &input, &output); |
| 6620 | if (!filter || !hlua_filter_from_payload(filter)) |
| 6621 | WILL_LJMP(lua_error(L)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 6622 | |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6623 | offset = input + output; |
| 6624 | if (lua_gettop(L) > 2) { |
| 6625 | offset = MAY_LJMP(luaL_checkinteger(L, 3)); |
| 6626 | if (offset < 0) |
Christopher Faulet | 70c4345 | 2021-08-13 08:11:00 +0200 | [diff] [blame] | 6627 | offset = MAX(0, (int)input + offset); |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6628 | offset += output; |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6629 | if (offset < output || offset > output + input) { |
| 6630 | lua_pushfstring(L, "offset out of range."); |
| 6631 | WILL_LJMP(lua_error(L)); |
| 6632 | } |
| 6633 | } |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 6634 | |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6635 | ret = _hlua_http_msg_insert(msg, filter, ist2(str, sz), offset); |
| 6636 | lua_pushinteger(L, ret); |
| 6637 | return 1; |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 6638 | } |
| 6639 | |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6640 | /* Removes a given amount of data from the HTTP message at a given offset. By |
| 6641 | * default all DATA blocks are removed. It returns the amount of data |
| 6642 | * removed. Unlike the channel function used to remove data, this one can only |
| 6643 | * be called inside a filter, from http_payload callback. So it cannot yield. An |
| 6644 | * exception is returned if it is called from another callback. |
| 6645 | */ |
| 6646 | __LJMP static int hlua_http_msg_del_data(lua_State *L) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 6647 | { |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6648 | struct http_msg *msg; |
| 6649 | struct filter *filter; |
| 6650 | size_t input, output; |
| 6651 | int offset, len; |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 6652 | |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6653 | if (lua_gettop(L) < 1 || lua_gettop(L) > 3) |
| 6654 | WILL_LJMP(luaL_error(L, "'insert' expects at most 2 arguments")); |
| 6655 | MAY_LJMP(check_args(L, 2, "insert")); |
| 6656 | msg = MAY_LJMP(hlua_checkhttpmsg(L, 1)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 6657 | |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6658 | if (msg->msg_state < HTTP_MSG_DATA) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 6659 | WILL_LJMP(lua_error(L)); |
| 6660 | |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6661 | filter = hlua_http_msg_filter(L, 1, msg, &input, &output); |
| 6662 | if (!filter || !hlua_filter_from_payload(filter)) |
| 6663 | WILL_LJMP(lua_error(L)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 6664 | |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6665 | offset = input + output; |
| 6666 | if (lua_gettop(L) > 2) { |
| 6667 | offset = MAY_LJMP(luaL_checkinteger(L, 3)); |
| 6668 | if (offset < 0) |
Christopher Faulet | 70c4345 | 2021-08-13 08:11:00 +0200 | [diff] [blame] | 6669 | offset = MAX(0, (int)input + offset); |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6670 | offset += output; |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6671 | if (offset < output || offset > output + input) { |
| 6672 | lua_pushfstring(L, "offset out of range."); |
| 6673 | WILL_LJMP(lua_error(L)); |
| 6674 | } |
| 6675 | } |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 6676 | |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6677 | len = output + input - offset; |
| 6678 | if (lua_gettop(L) == 4) { |
| 6679 | len = MAY_LJMP(luaL_checkinteger(L, 4)); |
| 6680 | if (!len) |
| 6681 | goto end; |
| 6682 | if (len == -1) |
| 6683 | len = output + input - offset; |
| 6684 | if (len < 0 || offset + len > output + input) { |
| 6685 | lua_pushfstring(L, "length out of range."); |
| 6686 | WILL_LJMP(lua_error(L)); |
| 6687 | } |
| 6688 | } |
| 6689 | |
| 6690 | _hlua_http_msg_delete(msg, filter, offset, len); |
| 6691 | |
| 6692 | end: |
| 6693 | lua_pushinteger(L, len); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 6694 | return 1; |
| 6695 | } |
| 6696 | |
Ilya Shipitsin | ff0f278 | 2021-08-22 22:18:07 +0500 | [diff] [blame] | 6697 | /* Replaces a given amount of data at the given offset by a string. By default, |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6698 | * all remaining data are removed, accordingly to the filter context. It returns |
| 6699 | * the amount of data written or -1 if nothing was copied. Unlike the channel |
| 6700 | * function used to replace data, this one can only be called inside a filter, |
| 6701 | * from http_payload callback. So it cannot yield. An exception is returned if |
| 6702 | * it is called from another callback. |
| 6703 | */ |
| 6704 | __LJMP static int hlua_http_msg_set_data(lua_State *L) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 6705 | { |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6706 | struct http_msg *msg; |
| 6707 | struct filter *filter; |
| 6708 | struct htx *htx; |
| 6709 | const char *str; |
| 6710 | size_t input, output, sz; |
| 6711 | int offset, len; |
| 6712 | int ret; |
Thierry FOURNIER / OZON.IO | b84ae92 | 2016-08-02 23:44:58 +0200 | [diff] [blame] | 6713 | |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6714 | if (lua_gettop(L) < 2 || lua_gettop(L) > 4) |
| 6715 | WILL_LJMP(luaL_error(L, "'set' expects at least 1 argument and at most 3 arguments")); |
| 6716 | msg = MAY_LJMP(hlua_checkhttpmsg(L, 1)); |
| 6717 | |
| 6718 | if (msg->msg_state < HTTP_MSG_DATA) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 6719 | WILL_LJMP(lua_error(L)); |
| 6720 | |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6721 | str = MAY_LJMP(luaL_checklstring(L, 2, &sz)); |
| 6722 | filter = hlua_http_msg_filter(L, 1, msg, &output, &input); |
| 6723 | if (!filter || !hlua_filter_from_payload(filter)) |
| 6724 | WILL_LJMP(lua_error(L)); |
| 6725 | |
| 6726 | offset = output; |
| 6727 | if (lua_gettop(L) > 2) { |
| 6728 | offset = MAY_LJMP(luaL_checkinteger(L, 3)); |
| 6729 | if (offset < 0) |
Christopher Faulet | 70c4345 | 2021-08-13 08:11:00 +0200 | [diff] [blame] | 6730 | offset = MAX(0, (int)input + offset); |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6731 | offset += output; |
| 6732 | if (offset < output || offset > input + output) { |
| 6733 | lua_pushfstring(L, "offset out of range."); |
| 6734 | WILL_LJMP(lua_error(L)); |
| 6735 | } |
| 6736 | } |
| 6737 | |
| 6738 | len = output + input - offset; |
| 6739 | if (lua_gettop(L) == 4) { |
| 6740 | len = MAY_LJMP(luaL_checkinteger(L, 4)); |
| 6741 | if (!len) |
| 6742 | goto set; |
| 6743 | if (len == -1) |
| 6744 | len = output + input - offset; |
| 6745 | if (len < 0 || offset + len > output + input) { |
| 6746 | lua_pushfstring(L, "length out of range."); |
| 6747 | WILL_LJMP(lua_error(L)); |
| 6748 | } |
| 6749 | } |
| 6750 | |
| 6751 | set: |
| 6752 | /* Be sure we can copied the string once input data will be removed. */ |
| 6753 | htx = htx_from_buf(&msg->chn->buf); |
| 6754 | if (sz > htx_free_data_space(htx) + len) |
| 6755 | lua_pushinteger(L, -1); |
| 6756 | else { |
| 6757 | _hlua_http_msg_delete(msg, filter, offset, len); |
| 6758 | ret = _hlua_http_msg_insert(msg, filter, ist2(str, sz), offset); |
| 6759 | lua_pushinteger(L, ret); |
| 6760 | } |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 6761 | return 1; |
| 6762 | } |
| 6763 | |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6764 | /* Prepends data into an HTTP message and forward it, from the filter point of |
| 6765 | * view. It returns the amount of data written or -1 if nothing was sent. Unlike |
| 6766 | * the channel function used to send data, this one can only be called inside a |
| 6767 | * filter, from http_payload callback. So it cannot yield. An exception is |
| 6768 | * returned if it is called from another callback. |
| 6769 | */ |
| 6770 | __LJMP static int hlua_http_msg_send(lua_State *L) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 6771 | { |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6772 | struct http_msg *msg; |
| 6773 | struct filter *filter; |
| 6774 | struct htx *htx; |
| 6775 | const char *str; |
| 6776 | size_t offset, len, sz; |
| 6777 | int ret; |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 6778 | |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6779 | MAY_LJMP(check_args(L, 2, "send")); |
| 6780 | msg = MAY_LJMP(hlua_checkhttpmsg(L, 1)); |
| 6781 | |
| 6782 | if (msg->msg_state < HTTP_MSG_DATA) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 6783 | WILL_LJMP(lua_error(L)); |
| 6784 | |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6785 | str = MAY_LJMP(luaL_checklstring(L, 2, &sz)); |
| 6786 | filter = hlua_http_msg_filter(L, 1, msg, &offset, &len); |
| 6787 | if (!filter || !hlua_filter_from_payload(filter)) |
| 6788 | WILL_LJMP(lua_error(L)); |
| 6789 | |
| 6790 | /* Return an error if the channel's output is closed */ |
| 6791 | if (unlikely(channel_output_closed(msg->chn))) { |
| 6792 | lua_pushinteger(L, -1); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 6793 | return 1; |
| 6794 | } |
| 6795 | |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6796 | htx = htx_from_buf(&msg->chn->buf); |
| 6797 | if (sz > htx_free_data_space(htx)) { |
| 6798 | lua_pushinteger(L, -1); |
| 6799 | return 1; |
| 6800 | } |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 6801 | |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6802 | ret = _hlua_http_msg_insert(msg, filter, ist2(str, sz), offset); |
| 6803 | if (ret > 0) { |
| 6804 | struct hlua_flt_ctx *flt_ctx = filter->ctx; |
| 6805 | |
| 6806 | FLT_OFF(filter, msg->chn) += ret; |
| 6807 | flt_ctx->cur_len[CHN_IDX(msg->chn)] -= ret; |
| 6808 | flt_ctx->cur_off[CHN_IDX(msg->chn)] += ret; |
| 6809 | } |
| 6810 | |
| 6811 | lua_pushinteger(L, ret); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 6812 | return 1; |
| 6813 | } |
| 6814 | |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6815 | /* Forwards a given amount of bytes. It return -1 if the channel's output is |
| 6816 | * closed. Otherwise, it returns the number of bytes forwarded. Unlike the |
| 6817 | * channel function used to forward data, this one can only be called inside a |
| 6818 | * filter, from http_payload callback. So it cannot yield. An exception is |
| 6819 | * returned if it is called from another callback. All other functions deal with |
| 6820 | * DATA block, this one not. |
| 6821 | */ |
| 6822 | __LJMP static int hlua_http_msg_forward(lua_State *L) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 6823 | { |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6824 | struct http_msg *msg; |
| 6825 | struct filter *filter; |
| 6826 | size_t offset, len; |
| 6827 | int fwd, ret = 0; |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 6828 | |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6829 | MAY_LJMP(check_args(L, 2, "forward")); |
| 6830 | msg = MAY_LJMP(hlua_checkhttpmsg(L, 1)); |
| 6831 | |
| 6832 | if (msg->msg_state < HTTP_MSG_DATA) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 6833 | WILL_LJMP(lua_error(L)); |
| 6834 | |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6835 | fwd = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 6836 | filter = hlua_http_msg_filter(L, 1, msg, &offset, &len); |
| 6837 | if (!filter || !hlua_filter_from_payload(filter)) |
| 6838 | WILL_LJMP(lua_error(L)); |
| 6839 | |
| 6840 | /* Nothing to do, just return */ |
| 6841 | if (!fwd) |
| 6842 | goto end; |
| 6843 | |
| 6844 | /* Return an error if the channel's output is closed */ |
| 6845 | if (unlikely(channel_output_closed(msg->chn))) { |
| 6846 | ret = -1; |
| 6847 | goto end; |
| 6848 | } |
| 6849 | |
| 6850 | ret = fwd; |
| 6851 | if (ret > len) |
| 6852 | ret = len; |
| 6853 | |
| 6854 | if (ret) { |
| 6855 | struct hlua_flt_ctx *flt_ctx = filter->ctx; |
| 6856 | |
| 6857 | FLT_OFF(filter, msg->chn) += ret; |
| 6858 | flt_ctx->cur_off[CHN_IDX(msg->chn)] += ret; |
| 6859 | flt_ctx->cur_len[CHN_IDX(msg->chn)] -= ret; |
| 6860 | } |
| 6861 | |
| 6862 | end: |
| 6863 | lua_pushinteger(L, ret); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 6864 | return 1; |
| 6865 | } |
| 6866 | |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6867 | /* Set EOM flag on the HTX message. |
| 6868 | * |
| 6869 | * NOTE: Not sure it is a good idea to manipulate this flag but for now I don't |
| 6870 | * really know how to do without this feature. |
| 6871 | */ |
| 6872 | __LJMP static int hlua_http_msg_set_eom(lua_State *L) |
Thierry FOURNIER | 35d70ef | 2015-08-26 16:21:56 +0200 | [diff] [blame] | 6873 | { |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6874 | struct http_msg *msg; |
| 6875 | struct htx *htx; |
Thierry FOURNIER | 35d70ef | 2015-08-26 16:21:56 +0200 | [diff] [blame] | 6876 | |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6877 | MAY_LJMP(check_args(L, 1, "set_eom")); |
| 6878 | msg = MAY_LJMP(hlua_checkhttpmsg(L, 1)); |
| 6879 | htx = htxbuf(&msg->chn->buf); |
| 6880 | htx->flags |= HTX_FL_EOM; |
| 6881 | return 0; |
| 6882 | } |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 6883 | |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 6884 | /* Unset EOM flag on the HTX message. |
| 6885 | * |
| 6886 | * NOTE: Not sure it is a good idea to manipulate this flag but for now I don't |
| 6887 | * really know how to do without this feature. |
| 6888 | */ |
| 6889 | __LJMP static int hlua_http_msg_unset_eom(lua_State *L) |
| 6890 | { |
| 6891 | struct http_msg *msg; |
| 6892 | struct htx *htx; |
| 6893 | |
| 6894 | MAY_LJMP(check_args(L, 1, "set_eom")); |
| 6895 | msg = MAY_LJMP(hlua_checkhttpmsg(L, 1)); |
| 6896 | htx = htxbuf(&msg->chn->buf); |
| 6897 | htx->flags &= ~HTX_FL_EOM; |
Thierry FOURNIER | 35d70ef | 2015-08-26 16:21:56 +0200 | [diff] [blame] | 6898 | return 0; |
| 6899 | } |
| 6900 | |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 6901 | /* |
| 6902 | * |
| 6903 | * |
William Lallemand | 3956c4e | 2021-09-21 16:25:15 +0200 | [diff] [blame] | 6904 | * Class HTTPClient |
| 6905 | * |
| 6906 | * |
| 6907 | */ |
| 6908 | __LJMP static struct hlua_httpclient *hlua_checkhttpclient(lua_State *L, int ud) |
| 6909 | { |
| 6910 | return MAY_LJMP(hlua_checkudata(L, ud, class_httpclient_ref)); |
| 6911 | } |
| 6912 | |
William Lallemand | f77f1de | 2021-09-28 19:10:38 +0200 | [diff] [blame] | 6913 | |
| 6914 | /* stops the httpclient and ask it to kill itself */ |
| 6915 | __LJMP static int hlua_httpclient_gc(lua_State *L) |
| 6916 | { |
| 6917 | struct hlua_httpclient *hlua_hc; |
| 6918 | |
| 6919 | MAY_LJMP(check_args(L, 1, "__gc")); |
| 6920 | |
| 6921 | hlua_hc = MAY_LJMP(hlua_checkhttpclient(L, 1)); |
| 6922 | |
| 6923 | httpclient_stop_and_destroy(hlua_hc->hc); |
| 6924 | |
| 6925 | hlua_hc->hc = NULL; |
| 6926 | |
| 6927 | |
| 6928 | return 0; |
| 6929 | } |
| 6930 | |
| 6931 | |
William Lallemand | 3956c4e | 2021-09-21 16:25:15 +0200 | [diff] [blame] | 6932 | __LJMP static int hlua_httpclient_new(lua_State *L) |
| 6933 | { |
| 6934 | struct hlua_httpclient *hlua_hc; |
| 6935 | struct hlua *hlua; |
| 6936 | |
| 6937 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 6938 | hlua = hlua_gethlua(L); |
| 6939 | if (!hlua) |
| 6940 | return 0; |
| 6941 | |
| 6942 | /* Check stack size. */ |
| 6943 | if (!lua_checkstack(L, 3)) { |
| 6944 | hlua_pusherror(L, "httpclient: full stack"); |
| 6945 | goto err; |
| 6946 | } |
| 6947 | /* Create the object: obj[0] = userdata. */ |
| 6948 | lua_newtable(L); |
| 6949 | hlua_hc = MAY_LJMP(lua_newuserdata(L, sizeof(*hlua_hc))); |
| 6950 | lua_rawseti(L, -2, 0); |
| 6951 | memset(hlua_hc, 0, sizeof(*hlua_hc)); |
| 6952 | |
| 6953 | hlua_hc->hc = httpclient_new(hlua, 0, IST_NULL); |
| 6954 | if (!hlua_hc->hc) |
| 6955 | goto err; |
| 6956 | |
| 6957 | /* Pop a class stream metatable and affect it to the userdata. */ |
| 6958 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_httpclient_ref); |
| 6959 | lua_setmetatable(L, -2); |
| 6960 | |
| 6961 | return 1; |
| 6962 | |
| 6963 | err: |
| 6964 | WILL_LJMP(lua_error(L)); |
| 6965 | return 0; |
| 6966 | } |
| 6967 | |
| 6968 | |
| 6969 | /* |
| 6970 | * Callback of the httpclient, this callback wakes the lua task up, once the |
| 6971 | * httpclient receives some data |
| 6972 | * |
| 6973 | */ |
| 6974 | |
William Lallemand | bd5739e | 2021-10-28 15:41:38 +0200 | [diff] [blame^] | 6975 | static void hlua_httpclient_cb(struct httpclient *hc) |
William Lallemand | 3956c4e | 2021-09-21 16:25:15 +0200 | [diff] [blame] | 6976 | { |
| 6977 | struct hlua *hlua = hc->caller; |
| 6978 | |
| 6979 | if (!hlua || !hlua->task) |
| 6980 | return; |
| 6981 | |
| 6982 | task_wakeup(hlua->task, TASK_WOKEN_MSG); |
| 6983 | } |
| 6984 | |
| 6985 | /* |
William Lallemand | d7df73a | 2021-09-23 17:54:00 +0200 | [diff] [blame] | 6986 | * Fill the lua stack with headers from the httpclient response |
| 6987 | * This works the same way as the hlua_http_get_headers() function |
| 6988 | */ |
| 6989 | __LJMP static int hlua_httpclient_get_headers(lua_State *L, struct hlua_httpclient *hlua_hc) |
| 6990 | { |
| 6991 | struct http_hdr *hdr; |
| 6992 | |
| 6993 | lua_newtable(L); |
| 6994 | |
William Lallemand | ef574b2 | 2021-10-05 16:19:31 +0200 | [diff] [blame] | 6995 | for (hdr = hlua_hc->hc->res.hdrs; hdr && isttest(hdr->n); hdr++) { |
William Lallemand | d7df73a | 2021-09-23 17:54:00 +0200 | [diff] [blame] | 6996 | struct ist n, v; |
| 6997 | int len; |
| 6998 | |
| 6999 | n = hdr->n; |
| 7000 | v = hdr->v; |
| 7001 | |
| 7002 | /* Check for existing entry: |
| 7003 | * assume that the table is on the top of the stack, and |
| 7004 | * push the key in the stack, the function lua_gettable() |
| 7005 | * perform the lookup. |
| 7006 | */ |
| 7007 | |
| 7008 | lua_pushlstring(L, n.ptr, n.len); |
| 7009 | lua_gettable(L, -2); |
| 7010 | |
| 7011 | switch (lua_type(L, -1)) { |
| 7012 | case LUA_TNIL: |
| 7013 | /* Table not found, create it. */ |
| 7014 | lua_pop(L, 1); /* remove the nil value. */ |
| 7015 | lua_pushlstring(L, n.ptr, n.len); /* push the header name as key. */ |
| 7016 | lua_newtable(L); /* create and push empty table. */ |
| 7017 | lua_pushlstring(L, v.ptr, v.len); /* push header value. */ |
| 7018 | lua_rawseti(L, -2, 0); /* index header value (pop it). */ |
| 7019 | lua_rawset(L, -3); /* index new table with header name (pop the values). */ |
| 7020 | break; |
| 7021 | |
| 7022 | case LUA_TTABLE: |
| 7023 | /* Entry found: push the value in the table. */ |
| 7024 | len = lua_rawlen(L, -1); |
| 7025 | lua_pushlstring(L, v.ptr, v.len); /* push header value. */ |
| 7026 | lua_rawseti(L, -2, len+1); /* index header value (pop it). */ |
| 7027 | lua_pop(L, 1); /* remove the table (it is stored in the main table). */ |
| 7028 | break; |
| 7029 | |
| 7030 | default: |
| 7031 | /* Other cases are errors. */ |
| 7032 | hlua_pusherror(L, "internal error during the parsing of headers."); |
| 7033 | WILL_LJMP(lua_error(L)); |
| 7034 | } |
| 7035 | } |
| 7036 | return 1; |
| 7037 | } |
| 7038 | |
| 7039 | /* |
William Lallemand | 746e6f3 | 2021-10-06 10:57:44 +0200 | [diff] [blame] | 7040 | * Allocate and return an array of http_hdr ist extracted from the <headers> lua table |
| 7041 | * |
| 7042 | * Caller must free the result |
| 7043 | */ |
| 7044 | struct http_hdr *hlua_httpclient_table_to_hdrs(lua_State *L) |
| 7045 | { |
| 7046 | struct http_hdr hdrs[global.tune.max_http_hdr]; |
| 7047 | struct http_hdr *result = NULL; |
| 7048 | uint32_t hdr_num = 0; |
| 7049 | |
| 7050 | lua_pushnil(L); |
| 7051 | while (lua_next(L, -2) != 0) { |
| 7052 | struct ist name, value; |
| 7053 | const char *n, *v; |
| 7054 | size_t nlen, vlen; |
| 7055 | |
| 7056 | if (!lua_isstring(L, -2) || !lua_istable(L, -1)) { |
| 7057 | /* Skip element if the key is not a string or if the value is not a table */ |
| 7058 | goto next_hdr; |
| 7059 | } |
| 7060 | |
| 7061 | n = lua_tolstring(L, -2, &nlen); |
| 7062 | name = ist2(n, nlen); |
| 7063 | |
| 7064 | /* Loop on header's values */ |
| 7065 | lua_pushnil(L); |
| 7066 | while (lua_next(L, -2)) { |
| 7067 | if (!lua_isstring(L, -1)) { |
| 7068 | /* Skip the value if it is not a string */ |
| 7069 | goto next_value; |
| 7070 | } |
| 7071 | |
| 7072 | v = lua_tolstring(L, -1, &vlen); |
| 7073 | value = ist2(v, vlen); |
| 7074 | name = ist2(n, nlen); |
| 7075 | |
| 7076 | hdrs[hdr_num].n = istdup(name); |
| 7077 | hdrs[hdr_num].v = istdup(value); |
| 7078 | |
| 7079 | hdr_num++; |
| 7080 | |
| 7081 | next_value: |
| 7082 | lua_pop(L, 1); |
| 7083 | } |
| 7084 | |
| 7085 | next_hdr: |
| 7086 | lua_pop(L, 1); |
| 7087 | |
| 7088 | } |
| 7089 | |
| 7090 | if (hdr_num) { |
| 7091 | /* alloc and copy the headers in the httpclient struct */ |
| 7092 | result = calloc((hdr_num + 1), sizeof(*hdrs)); |
| 7093 | if (!result) |
| 7094 | goto skip_headers; |
| 7095 | memcpy(result, hdrs, sizeof(struct http_hdr) * (hdr_num + 1)); |
| 7096 | |
| 7097 | result[hdr_num].n = IST_NULL; |
| 7098 | result[hdr_num].v = IST_NULL; |
| 7099 | } |
| 7100 | |
| 7101 | skip_headers: |
| 7102 | lua_pop(L, 1); |
| 7103 | |
| 7104 | return result; |
| 7105 | } |
| 7106 | |
| 7107 | |
William Lallemand | bd5739e | 2021-10-28 15:41:38 +0200 | [diff] [blame^] | 7108 | /* |
| 7109 | * For each yield, checks if there is some data in the httpclient and push them |
| 7110 | * in the lua buffer, once the httpclient finished its job, push the result on |
| 7111 | * the stack |
| 7112 | */ |
| 7113 | __LJMP static int hlua_httpclient_rcv_yield(lua_State *L, int status, lua_KContext ctx) |
| 7114 | { |
| 7115 | struct buffer *tr; |
| 7116 | int res; |
| 7117 | struct hlua *hlua = hlua_gethlua(L); |
| 7118 | struct hlua_httpclient *hlua_hc = hlua_checkhttpclient(L, 1); |
| 7119 | |
| 7120 | |
| 7121 | tr = get_trash_chunk(); |
| 7122 | |
| 7123 | res = httpclient_res_xfer(hlua_hc->hc, tr); |
| 7124 | luaL_addlstring(&hlua_hc->b, b_orig(tr), res); |
| 7125 | |
| 7126 | if (!httpclient_data(hlua_hc->hc) && httpclient_ended(hlua_hc->hc)) { |
| 7127 | |
| 7128 | luaL_pushresult(&hlua_hc->b); |
| 7129 | lua_settable(L, -3); |
| 7130 | |
| 7131 | lua_pushstring(L, "status"); |
| 7132 | lua_pushinteger(L, hlua_hc->hc->res.status); |
| 7133 | lua_settable(L, -3); |
| 7134 | |
| 7135 | |
| 7136 | lua_pushstring(L, "reason"); |
| 7137 | lua_pushlstring(L, hlua_hc->hc->res.reason.ptr, hlua_hc->hc->res.reason.len); |
| 7138 | lua_settable(L, -3); |
| 7139 | |
| 7140 | lua_pushstring(L, "headers"); |
| 7141 | hlua_httpclient_get_headers(L, hlua_hc); |
| 7142 | lua_settable(L, -3); |
| 7143 | |
| 7144 | return 1; |
| 7145 | } |
| 7146 | |
| 7147 | if (httpclient_data(hlua_hc->hc)) |
| 7148 | task_wakeup(hlua->task, TASK_WOKEN_MSG); |
| 7149 | |
| 7150 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_httpclient_rcv_yield, TICK_ETERNITY, 0)); |
| 7151 | |
| 7152 | return 0; |
| 7153 | } |
| 7154 | |
| 7155 | /* |
| 7156 | * Call this when trying to stream a body during a request |
| 7157 | */ |
| 7158 | __LJMP static int hlua_httpclient_snd_yield(lua_State *L, int status, lua_KContext ctx) |
| 7159 | { |
| 7160 | struct hlua *hlua; |
| 7161 | struct hlua_httpclient *hlua_hc = hlua_checkhttpclient(L, 1); |
| 7162 | const char *body_str = NULL; |
| 7163 | int ret; |
| 7164 | int end = 0; |
| 7165 | size_t buf_len; |
| 7166 | size_t to_send = 0; |
| 7167 | |
| 7168 | hlua = hlua_gethlua(L); |
| 7169 | |
| 7170 | if (!hlua || !hlua->task) |
| 7171 | WILL_LJMP(luaL_error(L, "The 'get' function is only allowed in " |
| 7172 | "'frontend', 'backend' or 'task'")); |
| 7173 | |
| 7174 | ret = lua_getfield(L, -1, "body"); |
| 7175 | if (ret != LUA_TSTRING) |
| 7176 | goto rcv; |
| 7177 | |
| 7178 | body_str = lua_tolstring(L, -1, &buf_len); |
| 7179 | lua_pop(L, 1); |
| 7180 | |
| 7181 | to_send = MIN(buf_len - hlua_hc->sent, 1024); |
| 7182 | |
| 7183 | if ((hlua_hc->sent + to_send) >= buf_len) |
| 7184 | end = 1; |
| 7185 | |
| 7186 | /* the end flag is always set since we are using the whole remaining size */ |
| 7187 | hlua_hc->sent += httpclient_req_xfer(hlua_hc->hc, ist2(body_str + hlua_hc->sent, to_send), end); |
| 7188 | |
| 7189 | if (buf_len > hlua_hc->sent) { |
| 7190 | /* still need to process the buffer */ |
| 7191 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_httpclient_snd_yield, TICK_ETERNITY, 0)); |
| 7192 | } else { |
| 7193 | goto rcv; |
| 7194 | /* we sent the whole request buffer we can recv */ |
| 7195 | } |
| 7196 | return 0; |
| 7197 | |
| 7198 | rcv: |
| 7199 | |
| 7200 | /* we return a "res" object */ |
| 7201 | lua_newtable(L); |
| 7202 | |
| 7203 | luaL_buffinit(L, &hlua_hc->b); |
| 7204 | lua_pushstring(L, "body"); |
| 7205 | |
| 7206 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_httpclient_rcv_yield, TICK_ETERNITY, 0)); |
| 7207 | |
| 7208 | return 1; |
| 7209 | } |
William Lallemand | 746e6f3 | 2021-10-06 10:57:44 +0200 | [diff] [blame] | 7210 | |
William Lallemand | 3956c4e | 2021-09-21 16:25:15 +0200 | [diff] [blame] | 7211 | /* |
William Lallemand | dc2cc90 | 2021-10-26 11:43:26 +0200 | [diff] [blame] | 7212 | * Send an HTTP request and wait for a response |
William Lallemand | 3956c4e | 2021-09-21 16:25:15 +0200 | [diff] [blame] | 7213 | */ |
| 7214 | |
William Lallemand | dc2cc90 | 2021-10-26 11:43:26 +0200 | [diff] [blame] | 7215 | __LJMP static int hlua_httpclient_send(lua_State *L, enum http_meth_t meth) |
William Lallemand | 3956c4e | 2021-09-21 16:25:15 +0200 | [diff] [blame] | 7216 | { |
| 7217 | struct hlua_httpclient *hlua_hc; |
William Lallemand | 746e6f3 | 2021-10-06 10:57:44 +0200 | [diff] [blame] | 7218 | struct http_hdr *hdrs = NULL; |
| 7219 | struct http_hdr *hdrs_i = NULL; |
William Lallemand | 3956c4e | 2021-09-21 16:25:15 +0200 | [diff] [blame] | 7220 | struct hlua *hlua; |
William Lallemand | 746e6f3 | 2021-10-06 10:57:44 +0200 | [diff] [blame] | 7221 | const char *url_str = NULL; |
William Lallemand | dec25c3 | 2021-10-25 19:48:37 +0200 | [diff] [blame] | 7222 | const char *body_str = NULL; |
William Lallemand | bd5739e | 2021-10-28 15:41:38 +0200 | [diff] [blame^] | 7223 | size_t buf_len; |
William Lallemand | 746e6f3 | 2021-10-06 10:57:44 +0200 | [diff] [blame] | 7224 | int ret; |
William Lallemand | 3956c4e | 2021-09-21 16:25:15 +0200 | [diff] [blame] | 7225 | |
| 7226 | hlua = hlua_gethlua(L); |
| 7227 | |
| 7228 | if (!hlua || !hlua->task) |
| 7229 | WILL_LJMP(luaL_error(L, "The 'get' function is only allowed in " |
| 7230 | "'frontend', 'backend' or 'task'")); |
| 7231 | |
William Lallemand | 746e6f3 | 2021-10-06 10:57:44 +0200 | [diff] [blame] | 7232 | if (lua_gettop(L) != 2 || lua_type(L, -1) != LUA_TTABLE) |
| 7233 | WILL_LJMP(luaL_error(L, "'get' needs a table as argument")); |
| 7234 | |
| 7235 | ret = lua_getfield(L, -1, "url"); |
| 7236 | if (ret == LUA_TSTRING) { |
| 7237 | url_str = lua_tostring(L, -1); |
| 7238 | } |
| 7239 | lua_pop(L, 1); |
William Lallemand | 3956c4e | 2021-09-21 16:25:15 +0200 | [diff] [blame] | 7240 | |
William Lallemand | 746e6f3 | 2021-10-06 10:57:44 +0200 | [diff] [blame] | 7241 | ret = lua_getfield(L, -1, "headers"); |
| 7242 | if (ret == LUA_TTABLE) { |
| 7243 | hdrs = hlua_httpclient_table_to_hdrs(L); |
| 7244 | } |
| 7245 | lua_pop(L, 1); |
William Lallemand | 79416cb | 2021-09-24 14:51:44 +0200 | [diff] [blame] | 7246 | |
William Lallemand | dec25c3 | 2021-10-25 19:48:37 +0200 | [diff] [blame] | 7247 | ret = lua_getfield(L, -1, "body"); |
| 7248 | if (ret == LUA_TSTRING) { |
William Lallemand | bd5739e | 2021-10-28 15:41:38 +0200 | [diff] [blame^] | 7249 | body_str = lua_tolstring(L, -1, &buf_len); |
William Lallemand | dec25c3 | 2021-10-25 19:48:37 +0200 | [diff] [blame] | 7250 | } |
William Lallemand | bd5739e | 2021-10-28 15:41:38 +0200 | [diff] [blame^] | 7251 | |
William Lallemand | dec25c3 | 2021-10-25 19:48:37 +0200 | [diff] [blame] | 7252 | lua_pop(L, 1); |
| 7253 | |
William Lallemand | 746e6f3 | 2021-10-06 10:57:44 +0200 | [diff] [blame] | 7254 | if (!url_str) { |
| 7255 | WILL_LJMP(luaL_error(L, "'get' need a 'url' argument")); |
| 7256 | return 0; |
| 7257 | } |
William Lallemand | 3956c4e | 2021-09-21 16:25:15 +0200 | [diff] [blame] | 7258 | |
| 7259 | hlua_hc = hlua_checkhttpclient(L, 1); |
| 7260 | |
| 7261 | hlua_hc->hc->req.url = istdup(ist(url_str)); |
William Lallemand | dc2cc90 | 2021-10-26 11:43:26 +0200 | [diff] [blame] | 7262 | hlua_hc->hc->req.meth = meth; |
William Lallemand | 3956c4e | 2021-09-21 16:25:15 +0200 | [diff] [blame] | 7263 | |
| 7264 | /* update the httpclient callbacks */ |
William Lallemand | bd5739e | 2021-10-28 15:41:38 +0200 | [diff] [blame^] | 7265 | hlua_hc->hc->ops.res_stline = hlua_httpclient_cb; |
| 7266 | hlua_hc->hc->ops.res_headers = hlua_httpclient_cb; |
| 7267 | hlua_hc->hc->ops.res_payload = hlua_httpclient_cb; |
William Lallemand | 3956c4e | 2021-09-21 16:25:15 +0200 | [diff] [blame] | 7268 | |
William Lallemand | bd5739e | 2021-10-28 15:41:38 +0200 | [diff] [blame^] | 7269 | /* a body is available, it will use the request callback */ |
| 7270 | if (body_str) { |
| 7271 | hlua_hc->hc->ops.req_payload = hlua_httpclient_cb; |
| 7272 | } |
William Lallemand | 3956c4e | 2021-09-21 16:25:15 +0200 | [diff] [blame] | 7273 | |
William Lallemand | bd5739e | 2021-10-28 15:41:38 +0200 | [diff] [blame^] | 7274 | ret = httpclient_req_gen(hlua_hc->hc, hlua_hc->hc->req.url, meth, hdrs, IST_NULL); |
William Lallemand | 3956c4e | 2021-09-21 16:25:15 +0200 | [diff] [blame] | 7275 | |
William Lallemand | 746e6f3 | 2021-10-06 10:57:44 +0200 | [diff] [blame] | 7276 | /* free the temporary headers array */ |
| 7277 | hdrs_i = hdrs; |
| 7278 | while (hdrs_i && isttest(hdrs_i->n)) { |
| 7279 | istfree(&hdrs_i->n); |
| 7280 | istfree(&hdrs_i->v); |
| 7281 | hdrs_i++; |
| 7282 | } |
| 7283 | ha_free(&hdrs); |
| 7284 | |
| 7285 | |
William Lallemand | 6137a9e | 2021-10-26 15:01:53 +0200 | [diff] [blame] | 7286 | if (ret != ERR_NONE) { |
| 7287 | WILL_LJMP(luaL_error(L, "Can't generate the HTTP request")); |
| 7288 | return 0; |
| 7289 | } |
| 7290 | |
William Lallemand | 6137a9e | 2021-10-26 15:01:53 +0200 | [diff] [blame] | 7291 | httpclient_start(hlua_hc->hc); |
| 7292 | |
William Lallemand | bd5739e | 2021-10-28 15:41:38 +0200 | [diff] [blame^] | 7293 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_httpclient_snd_yield, TICK_ETERNITY, 0)); |
William Lallemand | 3956c4e | 2021-09-21 16:25:15 +0200 | [diff] [blame] | 7294 | |
William Lallemand | 3956c4e | 2021-09-21 16:25:15 +0200 | [diff] [blame] | 7295 | return 0; |
| 7296 | } |
| 7297 | |
| 7298 | /* |
William Lallemand | dc2cc90 | 2021-10-26 11:43:26 +0200 | [diff] [blame] | 7299 | * Sends an HTTP HEAD request and wait for a response |
| 7300 | * |
| 7301 | * httpclient:head(url, headers, payload) |
| 7302 | */ |
| 7303 | __LJMP static int hlua_httpclient_head(lua_State *L) |
| 7304 | { |
| 7305 | return hlua_httpclient_send(L, HTTP_METH_HEAD); |
| 7306 | } |
| 7307 | |
| 7308 | /* |
| 7309 | * Send an HTTP GET request and wait for a response |
| 7310 | * |
| 7311 | * httpclient:get(url, headers, payload) |
| 7312 | */ |
| 7313 | __LJMP static int hlua_httpclient_get(lua_State *L) |
| 7314 | { |
| 7315 | return hlua_httpclient_send(L, HTTP_METH_GET); |
| 7316 | |
| 7317 | } |
| 7318 | |
| 7319 | /* |
| 7320 | * Sends an HTTP PUT request and wait for a response |
| 7321 | * |
| 7322 | * httpclient:put(url, headers, payload) |
| 7323 | */ |
| 7324 | __LJMP static int hlua_httpclient_put(lua_State *L) |
| 7325 | { |
| 7326 | return hlua_httpclient_send(L, HTTP_METH_PUT); |
| 7327 | } |
| 7328 | |
| 7329 | /* |
| 7330 | * Send an HTTP POST request and wait for a response |
| 7331 | * |
| 7332 | * httpclient:post(url, headers, payload) |
| 7333 | */ |
| 7334 | __LJMP static int hlua_httpclient_post(lua_State *L) |
| 7335 | { |
| 7336 | return hlua_httpclient_send(L, HTTP_METH_POST); |
| 7337 | } |
| 7338 | |
| 7339 | |
| 7340 | /* |
| 7341 | * Sends an HTTP DELETE request and wait for a response |
| 7342 | * |
| 7343 | * httpclient:delete(url, headers, payload) |
| 7344 | */ |
| 7345 | __LJMP static int hlua_httpclient_delete(lua_State *L) |
| 7346 | { |
| 7347 | return hlua_httpclient_send(L, HTTP_METH_DELETE); |
| 7348 | } |
| 7349 | |
| 7350 | /* |
William Lallemand | 3956c4e | 2021-09-21 16:25:15 +0200 | [diff] [blame] | 7351 | * |
| 7352 | * |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 7353 | * Class TXN |
| 7354 | * |
| 7355 | * |
| 7356 | */ |
| 7357 | |
| 7358 | /* Returns a struct hlua_session if the stack entry "ud" is |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 7359 | * a class stream, otherwise it throws an error. |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 7360 | */ |
| 7361 | __LJMP static struct hlua_txn *hlua_checktxn(lua_State *L, int ud) |
| 7362 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 7363 | return MAY_LJMP(hlua_checkudata(L, ud, class_txn_ref)); |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 7364 | } |
| 7365 | |
Thierry FOURNIER | 053ba8ad | 2015-06-08 13:05:33 +0200 | [diff] [blame] | 7366 | __LJMP static int hlua_set_var(lua_State *L) |
| 7367 | { |
| 7368 | struct hlua_txn *htxn; |
| 7369 | const char *name; |
| 7370 | size_t len; |
| 7371 | struct sample smp; |
| 7372 | |
Tim Duesterhus | 4e172c9 | 2020-05-19 13:49:42 +0200 | [diff] [blame] | 7373 | if (lua_gettop(L) < 3 || lua_gettop(L) > 4) |
| 7374 | 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] | 7375 | |
| 7376 | /* It is useles to retrieve the stream, but this function |
| 7377 | * runs only in a stream context. |
| 7378 | */ |
| 7379 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 7380 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 7381 | |
| 7382 | /* Converts the third argument in a sample. */ |
Amaury Denoyelle | bc0af6a | 2020-10-29 17:21:20 +0100 | [diff] [blame] | 7383 | memset(&smp, 0, sizeof(smp)); |
Thierry FOURNIER | 053ba8ad | 2015-06-08 13:05:33 +0200 | [diff] [blame] | 7384 | hlua_lua2smp(L, 3, &smp); |
| 7385 | |
| 7386 | /* Store the sample in a variable. */ |
Willy Tarreau | 7560dd4 | 2016-03-10 16:28:58 +0100 | [diff] [blame] | 7387 | 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] | 7388 | |
| 7389 | if (lua_gettop(L) == 4 && lua_toboolean(L, 4)) |
| 7390 | lua_pushboolean(L, vars_set_by_name_ifexist(name, len, &smp) != 0); |
| 7391 | else |
| 7392 | lua_pushboolean(L, vars_set_by_name(name, len, &smp) != 0); |
| 7393 | |
Tim Duesterhus | 84ebc13 | 2020-05-19 13:49:41 +0200 | [diff] [blame] | 7394 | return 1; |
Thierry FOURNIER | 053ba8ad | 2015-06-08 13:05:33 +0200 | [diff] [blame] | 7395 | } |
| 7396 | |
Christopher Faulet | 85d79c9 | 2016-11-09 16:54:56 +0100 | [diff] [blame] | 7397 | __LJMP static int hlua_unset_var(lua_State *L) |
| 7398 | { |
| 7399 | struct hlua_txn *htxn; |
| 7400 | const char *name; |
| 7401 | size_t len; |
| 7402 | struct sample smp; |
| 7403 | |
| 7404 | MAY_LJMP(check_args(L, 2, "unset_var")); |
| 7405 | |
| 7406 | /* It is useles to retrieve the stream, but this function |
| 7407 | * runs only in a stream context. |
| 7408 | */ |
| 7409 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 7410 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 7411 | |
| 7412 | /* Unset the variable. */ |
| 7413 | 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] | 7414 | lua_pushboolean(L, vars_unset_by_name_ifexist(name, len, &smp) != 0); |
| 7415 | return 1; |
Christopher Faulet | 85d79c9 | 2016-11-09 16:54:56 +0100 | [diff] [blame] | 7416 | } |
| 7417 | |
Thierry FOURNIER | 053ba8ad | 2015-06-08 13:05:33 +0200 | [diff] [blame] | 7418 | __LJMP static int hlua_get_var(lua_State *L) |
| 7419 | { |
| 7420 | struct hlua_txn *htxn; |
| 7421 | const char *name; |
| 7422 | size_t len; |
| 7423 | struct sample smp; |
| 7424 | |
| 7425 | MAY_LJMP(check_args(L, 2, "get_var")); |
| 7426 | |
| 7427 | /* It is useles to retrieve the stream, but this function |
| 7428 | * runs only in a stream context. |
| 7429 | */ |
| 7430 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 7431 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 7432 | |
Willy Tarreau | 7560dd4 | 2016-03-10 16:28:58 +0100 | [diff] [blame] | 7433 | smp_set_owner(&smp, htxn->p, htxn->s->sess, htxn->s, htxn->dir & SMP_OPT_DIR); |
Willy Tarreau | e352b9d | 2021-09-03 11:52:38 +0200 | [diff] [blame] | 7434 | if (!vars_get_by_name(name, len, &smp, NULL)) { |
Thierry FOURNIER | 053ba8ad | 2015-06-08 13:05:33 +0200 | [diff] [blame] | 7435 | lua_pushnil(L); |
| 7436 | return 1; |
| 7437 | } |
| 7438 | |
| 7439 | return hlua_smp2lua(L, &smp); |
| 7440 | } |
| 7441 | |
Willy Tarreau | 5955166 | 2015-03-10 14:23:13 +0100 | [diff] [blame] | 7442 | __LJMP static int hlua_set_priv(lua_State *L) |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 7443 | { |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 7444 | struct hlua *hlua; |
| 7445 | |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 7446 | MAY_LJMP(check_args(L, 2, "set_priv")); |
| 7447 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 7448 | /* It is useles to retrieve the stream, but this function |
| 7449 | * runs only in a stream context. |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 7450 | */ |
| 7451 | MAY_LJMP(hlua_checktxn(L, 1)); |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 7452 | |
| 7453 | /* Get hlua struct, or NULL if we execute from main lua state */ |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 7454 | hlua = hlua_gethlua(L); |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 7455 | if (!hlua) |
| 7456 | return 0; |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 7457 | |
| 7458 | /* Remove previous value. */ |
Thierry FOURNIER | e068b60 | 2017-04-26 13:27:05 +0200 | [diff] [blame] | 7459 | luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref); |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 7460 | |
| 7461 | /* Get and store new value. */ |
| 7462 | lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */ |
| 7463 | hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */ |
| 7464 | |
| 7465 | return 0; |
| 7466 | } |
| 7467 | |
Willy Tarreau | 5955166 | 2015-03-10 14:23:13 +0100 | [diff] [blame] | 7468 | __LJMP static int hlua_get_priv(lua_State *L) |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 7469 | { |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 7470 | struct hlua *hlua; |
| 7471 | |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 7472 | MAY_LJMP(check_args(L, 1, "get_priv")); |
| 7473 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 7474 | /* It is useles to retrieve the stream, but this function |
| 7475 | * runs only in a stream context. |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 7476 | */ |
| 7477 | MAY_LJMP(hlua_checktxn(L, 1)); |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 7478 | |
| 7479 | /* Get hlua struct, or NULL if we execute from main lua state */ |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 7480 | hlua = hlua_gethlua(L); |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 7481 | if (!hlua) { |
| 7482 | lua_pushnil(L); |
| 7483 | return 1; |
| 7484 | } |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 7485 | |
| 7486 | /* Push configuration index in the stack. */ |
| 7487 | lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref); |
| 7488 | |
| 7489 | return 1; |
| 7490 | } |
| 7491 | |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 7492 | /* Create stack entry containing a class TXN. This function |
| 7493 | * return 0 if the stack does not contains free slots, |
| 7494 | * otherwise it returns 1. |
| 7495 | */ |
Thierry FOURNIER | ab00df6 | 2016-07-14 11:42:37 +0200 | [diff] [blame] | 7496 | 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] | 7497 | { |
Willy Tarreau | de49138 | 2015-04-06 11:04:28 +0200 | [diff] [blame] | 7498 | struct hlua_txn *htxn; |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 7499 | |
| 7500 | /* Check stack size. */ |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 7501 | if (!lua_checkstack(L, 3)) |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 7502 | return 0; |
| 7503 | |
| 7504 | /* NOTE: The allocation never fails. The failure |
| 7505 | * throw an error, and the function never returns. |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 7506 | * if the throw is not available, the process is aborted. |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 7507 | */ |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 7508 | /* Create the object: obj[0] = userdata. */ |
| 7509 | lua_newtable(L); |
Willy Tarreau | de49138 | 2015-04-06 11:04:28 +0200 | [diff] [blame] | 7510 | htxn = lua_newuserdata(L, sizeof(*htxn)); |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 7511 | lua_rawseti(L, -2, 0); |
| 7512 | |
Willy Tarreau | de49138 | 2015-04-06 11:04:28 +0200 | [diff] [blame] | 7513 | htxn->s = s; |
| 7514 | htxn->p = p; |
Thierry FOURNIER | c4eebc8 | 2015-11-02 10:01:59 +0100 | [diff] [blame] | 7515 | htxn->dir = dir; |
Thierry FOURNIER | ab00df6 | 2016-07-14 11:42:37 +0200 | [diff] [blame] | 7516 | htxn->flags = flags; |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 7517 | |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 7518 | /* Create the "f" field that contains a list of fetches. */ |
| 7519 | lua_pushstring(L, "f"); |
Thierry FOURNIER | ca98866 | 2015-12-20 18:43:03 +0100 | [diff] [blame] | 7520 | if (!hlua_fetches_new(L, htxn, HLUA_F_MAY_USE_HTTP)) |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 7521 | return 0; |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 7522 | lua_rawset(L, -3); |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 7523 | |
| 7524 | /* Create the "sf" field that contains a list of stringsafe fetches. */ |
| 7525 | lua_pushstring(L, "sf"); |
Thierry FOURNIER | ca98866 | 2015-12-20 18:43:03 +0100 | [diff] [blame] | 7526 | 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] | 7527 | return 0; |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 7528 | lua_rawset(L, -3); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 7529 | |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 7530 | /* Create the "c" field that contains a list of converters. */ |
| 7531 | lua_pushstring(L, "c"); |
Willy Tarreau | de49138 | 2015-04-06 11:04:28 +0200 | [diff] [blame] | 7532 | if (!hlua_converters_new(L, htxn, 0)) |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 7533 | return 0; |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 7534 | lua_rawset(L, -3); |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 7535 | |
| 7536 | /* Create the "sc" field that contains a list of stringsafe converters. */ |
| 7537 | lua_pushstring(L, "sc"); |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 7538 | if (!hlua_converters_new(L, htxn, HLUA_F_AS_STRING)) |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 7539 | return 0; |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 7540 | lua_rawset(L, -3); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 7541 | |
Thierry FOURNIER | 397826a | 2015-03-11 19:39:09 +0100 | [diff] [blame] | 7542 | /* Create the "req" field that contains the request channel object. */ |
| 7543 | lua_pushstring(L, "req"); |
Willy Tarreau | 2a71af4 | 2015-03-10 13:51:50 +0100 | [diff] [blame] | 7544 | if (!hlua_channel_new(L, &s->req)) |
Thierry FOURNIER | 397826a | 2015-03-11 19:39:09 +0100 | [diff] [blame] | 7545 | return 0; |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 7546 | lua_rawset(L, -3); |
Thierry FOURNIER | 397826a | 2015-03-11 19:39:09 +0100 | [diff] [blame] | 7547 | |
| 7548 | /* Create the "res" field that contains the response channel object. */ |
| 7549 | lua_pushstring(L, "res"); |
Willy Tarreau | 2a71af4 | 2015-03-10 13:51:50 +0100 | [diff] [blame] | 7550 | if (!hlua_channel_new(L, &s->res)) |
Thierry FOURNIER | 397826a | 2015-03-11 19:39:09 +0100 | [diff] [blame] | 7551 | return 0; |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 7552 | lua_rawset(L, -3); |
Thierry FOURNIER | 397826a | 2015-03-11 19:39:09 +0100 | [diff] [blame] | 7553 | |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 7554 | /* Creates the HTTP object is the current proxy allows http. */ |
| 7555 | lua_pushstring(L, "http"); |
Christopher Faulet | 1bb6afa | 2021-03-08 17:57:53 +0100 | [diff] [blame] | 7556 | if (IS_HTX_STRM(s)) { |
Willy Tarreau | de49138 | 2015-04-06 11:04:28 +0200 | [diff] [blame] | 7557 | if (!hlua_http_new(L, htxn)) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 7558 | return 0; |
| 7559 | } |
| 7560 | else |
| 7561 | lua_pushnil(L); |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 7562 | lua_rawset(L, -3); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 7563 | |
Christopher Faulet | 78c3547 | 2020-02-26 17:14:08 +0100 | [diff] [blame] | 7564 | if ((htxn->flags & HLUA_TXN_CTX_MASK) == HLUA_TXN_FLT_CTX) { |
| 7565 | /* HTTPMessage object are created when a lua TXN is created from |
| 7566 | * a filter context only |
| 7567 | */ |
| 7568 | |
| 7569 | /* Creates the HTTP-Request object is the current proxy allows http. */ |
| 7570 | lua_pushstring(L, "http_req"); |
| 7571 | if (p->mode == PR_MODE_HTTP) { |
| 7572 | if (!hlua_http_msg_new(L, &s->txn->req)) |
| 7573 | return 0; |
| 7574 | } |
| 7575 | else |
| 7576 | lua_pushnil(L); |
| 7577 | lua_rawset(L, -3); |
| 7578 | |
| 7579 | /* Creates the HTTP-Response object is the current proxy allows http. */ |
| 7580 | lua_pushstring(L, "http_res"); |
| 7581 | if (p->mode == PR_MODE_HTTP) { |
| 7582 | if (!hlua_http_msg_new(L, &s->txn->rsp)) |
| 7583 | return 0; |
| 7584 | } |
| 7585 | else |
| 7586 | lua_pushnil(L); |
| 7587 | lua_rawset(L, -3); |
| 7588 | } |
| 7589 | |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 7590 | /* Pop a class sesison metatable and affect it to the userdata. */ |
| 7591 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_txn_ref); |
| 7592 | lua_setmetatable(L, -2); |
| 7593 | |
| 7594 | return 1; |
| 7595 | } |
| 7596 | |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 7597 | __LJMP static int hlua_txn_deflog(lua_State *L) |
| 7598 | { |
| 7599 | const char *msg; |
| 7600 | struct hlua_txn *htxn; |
| 7601 | |
| 7602 | MAY_LJMP(check_args(L, 2, "deflog")); |
| 7603 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 7604 | msg = MAY_LJMP(luaL_checkstring(L, 2)); |
| 7605 | |
| 7606 | hlua_sendlog(htxn->s->be, htxn->s->logs.level, msg); |
| 7607 | return 0; |
| 7608 | } |
| 7609 | |
| 7610 | __LJMP static int hlua_txn_log(lua_State *L) |
| 7611 | { |
| 7612 | int level; |
| 7613 | const char *msg; |
| 7614 | struct hlua_txn *htxn; |
| 7615 | |
| 7616 | MAY_LJMP(check_args(L, 3, "log")); |
| 7617 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 7618 | level = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 7619 | msg = MAY_LJMP(luaL_checkstring(L, 3)); |
| 7620 | |
| 7621 | if (level < 0 || level >= NB_LOG_LEVELS) |
| 7622 | WILL_LJMP(luaL_argerror(L, 1, "Invalid loglevel.")); |
| 7623 | |
| 7624 | hlua_sendlog(htxn->s->be, level, msg); |
| 7625 | return 0; |
| 7626 | } |
| 7627 | |
| 7628 | __LJMP static int hlua_txn_log_debug(lua_State *L) |
| 7629 | { |
| 7630 | const char *msg; |
| 7631 | struct hlua_txn *htxn; |
| 7632 | |
| 7633 | MAY_LJMP(check_args(L, 2, "Debug")); |
| 7634 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 7635 | msg = MAY_LJMP(luaL_checkstring(L, 2)); |
| 7636 | hlua_sendlog(htxn->s->be, LOG_DEBUG, msg); |
| 7637 | return 0; |
| 7638 | } |
| 7639 | |
| 7640 | __LJMP static int hlua_txn_log_info(lua_State *L) |
| 7641 | { |
| 7642 | const char *msg; |
| 7643 | struct hlua_txn *htxn; |
| 7644 | |
| 7645 | MAY_LJMP(check_args(L, 2, "Info")); |
| 7646 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 7647 | msg = MAY_LJMP(luaL_checkstring(L, 2)); |
| 7648 | hlua_sendlog(htxn->s->be, LOG_INFO, msg); |
| 7649 | return 0; |
| 7650 | } |
| 7651 | |
| 7652 | __LJMP static int hlua_txn_log_warning(lua_State *L) |
| 7653 | { |
| 7654 | const char *msg; |
| 7655 | struct hlua_txn *htxn; |
| 7656 | |
| 7657 | MAY_LJMP(check_args(L, 2, "Warning")); |
| 7658 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 7659 | msg = MAY_LJMP(luaL_checkstring(L, 2)); |
| 7660 | hlua_sendlog(htxn->s->be, LOG_WARNING, msg); |
| 7661 | return 0; |
| 7662 | } |
| 7663 | |
| 7664 | __LJMP static int hlua_txn_log_alert(lua_State *L) |
| 7665 | { |
| 7666 | const char *msg; |
| 7667 | struct hlua_txn *htxn; |
| 7668 | |
| 7669 | MAY_LJMP(check_args(L, 2, "Alert")); |
| 7670 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 7671 | msg = MAY_LJMP(luaL_checkstring(L, 2)); |
| 7672 | hlua_sendlog(htxn->s->be, LOG_ALERT, msg); |
| 7673 | return 0; |
| 7674 | } |
| 7675 | |
Thierry FOURNIER | 2cce353 | 2015-03-16 12:04:16 +0100 | [diff] [blame] | 7676 | __LJMP static int hlua_txn_set_loglevel(lua_State *L) |
| 7677 | { |
| 7678 | struct hlua_txn *htxn; |
| 7679 | int ll; |
| 7680 | |
| 7681 | MAY_LJMP(check_args(L, 2, "set_loglevel")); |
| 7682 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 7683 | ll = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 7684 | |
| 7685 | if (ll < 0 || ll > 7) |
| 7686 | WILL_LJMP(luaL_argerror(L, 2, "Bad log level. It must be between 0 and 7")); |
| 7687 | |
| 7688 | htxn->s->logs.level = ll; |
| 7689 | return 0; |
| 7690 | } |
| 7691 | |
| 7692 | __LJMP static int hlua_txn_set_tos(lua_State *L) |
| 7693 | { |
| 7694 | struct hlua_txn *htxn; |
Thierry FOURNIER | 2cce353 | 2015-03-16 12:04:16 +0100 | [diff] [blame] | 7695 | int tos; |
| 7696 | |
| 7697 | MAY_LJMP(check_args(L, 2, "set_tos")); |
| 7698 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 7699 | tos = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 7700 | |
Willy Tarreau | 1a18b54 | 2018-12-11 16:37:42 +0100 | [diff] [blame] | 7701 | conn_set_tos(objt_conn(htxn->s->sess->origin), tos); |
Thierry FOURNIER | 2cce353 | 2015-03-16 12:04:16 +0100 | [diff] [blame] | 7702 | return 0; |
| 7703 | } |
| 7704 | |
| 7705 | __LJMP static int hlua_txn_set_mark(lua_State *L) |
| 7706 | { |
Thierry FOURNIER | 2cce353 | 2015-03-16 12:04:16 +0100 | [diff] [blame] | 7707 | struct hlua_txn *htxn; |
Thierry FOURNIER | 2cce353 | 2015-03-16 12:04:16 +0100 | [diff] [blame] | 7708 | int mark; |
| 7709 | |
| 7710 | MAY_LJMP(check_args(L, 2, "set_mark")); |
| 7711 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 7712 | mark = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 7713 | |
Lukas Tribus | 579e3e3 | 2019-08-11 18:03:45 +0200 | [diff] [blame] | 7714 | conn_set_mark(objt_conn(htxn->s->sess->origin), mark); |
Thierry FOURNIER | 2cce353 | 2015-03-16 12:04:16 +0100 | [diff] [blame] | 7715 | return 0; |
| 7716 | } |
| 7717 | |
Patrick Hemmer | 268a707 | 2018-05-11 12:52:31 -0400 | [diff] [blame] | 7718 | __LJMP static int hlua_txn_set_priority_class(lua_State *L) |
| 7719 | { |
| 7720 | struct hlua_txn *htxn; |
| 7721 | |
| 7722 | MAY_LJMP(check_args(L, 2, "set_priority_class")); |
| 7723 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 7724 | htxn->s->priority_class = queue_limit_class(MAY_LJMP(luaL_checkinteger(L, 2))); |
| 7725 | return 0; |
| 7726 | } |
| 7727 | |
| 7728 | __LJMP static int hlua_txn_set_priority_offset(lua_State *L) |
| 7729 | { |
| 7730 | struct hlua_txn *htxn; |
| 7731 | |
| 7732 | MAY_LJMP(check_args(L, 2, "set_priority_offset")); |
| 7733 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 7734 | htxn->s->priority_offset = queue_limit_offset(MAY_LJMP(luaL_checkinteger(L, 2))); |
| 7735 | return 0; |
| 7736 | } |
| 7737 | |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 7738 | /* 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] | 7739 | * 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] | 7740 | * message and terminate the transaction. It returns 1 on success and 0 on |
| 7741 | * error. The Reply must be on top of the stack. |
| 7742 | */ |
| 7743 | __LJMP static int hlua_txn_forward_reply(lua_State *L, struct stream *s) |
| 7744 | { |
| 7745 | struct htx *htx; |
| 7746 | struct htx_sl *sl; |
| 7747 | struct h1m h1m; |
| 7748 | const char *status, *reason, *body; |
| 7749 | size_t status_len, reason_len, body_len; |
| 7750 | int ret, code, flags; |
| 7751 | |
| 7752 | code = 200; |
| 7753 | status = "200"; |
| 7754 | status_len = 3; |
| 7755 | ret = lua_getfield(L, -1, "status"); |
| 7756 | if (ret == LUA_TNUMBER) { |
| 7757 | code = lua_tointeger(L, -1); |
| 7758 | status = lua_tolstring(L, -1, &status_len); |
| 7759 | } |
| 7760 | lua_pop(L, 1); |
| 7761 | |
| 7762 | reason = http_get_reason(code); |
| 7763 | reason_len = strlen(reason); |
| 7764 | ret = lua_getfield(L, -1, "reason"); |
| 7765 | if (ret == LUA_TSTRING) |
| 7766 | reason = lua_tolstring(L, -1, &reason_len); |
| 7767 | lua_pop(L, 1); |
| 7768 | |
| 7769 | body = NULL; |
| 7770 | body_len = 0; |
| 7771 | ret = lua_getfield(L, -1, "body"); |
| 7772 | if (ret == LUA_TSTRING) |
| 7773 | body = lua_tolstring(L, -1, &body_len); |
| 7774 | lua_pop(L, 1); |
| 7775 | |
| 7776 | /* Prepare the response before inserting the headers */ |
| 7777 | h1m_init_res(&h1m); |
| 7778 | htx = htx_from_buf(&s->res.buf); |
| 7779 | channel_htx_truncate(&s->res, htx); |
| 7780 | if (s->txn->req.flags & HTTP_MSGF_VER_11) { |
| 7781 | flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11); |
| 7782 | sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"), |
| 7783 | ist2(status, status_len), ist2(reason, reason_len)); |
| 7784 | } |
| 7785 | else { |
| 7786 | flags = HTX_SL_F_IS_RESP; |
| 7787 | sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.0"), |
| 7788 | ist2(status, status_len), ist2(reason, reason_len)); |
| 7789 | } |
| 7790 | if (!sl) |
| 7791 | goto fail; |
| 7792 | sl->info.res.status = code; |
| 7793 | |
| 7794 | /* Push in the stack the "headers" entry. */ |
| 7795 | ret = lua_getfield(L, -1, "headers"); |
| 7796 | if (ret != LUA_TTABLE) |
| 7797 | goto skip_headers; |
| 7798 | |
| 7799 | lua_pushnil(L); |
| 7800 | while (lua_next(L, -2) != 0) { |
| 7801 | struct ist name, value; |
| 7802 | const char *n, *v; |
| 7803 | size_t nlen, vlen; |
| 7804 | |
| 7805 | if (!lua_isstring(L, -2) || !lua_istable(L, -1)) { |
| 7806 | /* Skip element if the key is not a string or if the value is not a table */ |
| 7807 | goto next_hdr; |
| 7808 | } |
| 7809 | |
| 7810 | n = lua_tolstring(L, -2, &nlen); |
| 7811 | name = ist2(n, nlen); |
| 7812 | if (isteqi(name, ist("content-length"))) { |
| 7813 | /* Always skip content-length header. It will be added |
| 7814 | * later with the correct len |
| 7815 | */ |
| 7816 | goto next_hdr; |
| 7817 | } |
| 7818 | |
| 7819 | /* Loop on header's values */ |
| 7820 | lua_pushnil(L); |
| 7821 | while (lua_next(L, -2)) { |
| 7822 | if (!lua_isstring(L, -1)) { |
| 7823 | /* Skip the value if it is not a string */ |
| 7824 | goto next_value; |
| 7825 | } |
| 7826 | |
| 7827 | v = lua_tolstring(L, -1, &vlen); |
| 7828 | value = ist2(v, vlen); |
| 7829 | |
| 7830 | if (isteqi(name, ist("transfer-encoding"))) |
| 7831 | h1_parse_xfer_enc_header(&h1m, value); |
| 7832 | if (!htx_add_header(htx, ist2(n, nlen), ist2(v, vlen))) |
| 7833 | goto fail; |
| 7834 | |
| 7835 | next_value: |
| 7836 | lua_pop(L, 1); |
| 7837 | } |
| 7838 | |
| 7839 | next_hdr: |
| 7840 | lua_pop(L, 1); |
| 7841 | } |
| 7842 | skip_headers: |
| 7843 | lua_pop(L, 1); |
| 7844 | |
| 7845 | /* Update h1m flags: CLEN is set if CHNK is not present */ |
| 7846 | if (!(h1m.flags & H1_MF_CHNK)) { |
| 7847 | const char *clen = ultoa(body_len); |
| 7848 | |
| 7849 | h1m.flags |= H1_MF_CLEN; |
| 7850 | if (!htx_add_header(htx, ist("content-length"), ist(clen))) |
| 7851 | goto fail; |
| 7852 | } |
| 7853 | if (h1m.flags & (H1_MF_CLEN|H1_MF_CHNK)) |
| 7854 | h1m.flags |= H1_MF_XFER_LEN; |
| 7855 | |
| 7856 | /* Update HTX start-line flags */ |
| 7857 | if (h1m.flags & H1_MF_XFER_ENC) |
| 7858 | flags |= HTX_SL_F_XFER_ENC; |
| 7859 | if (h1m.flags & H1_MF_XFER_LEN) { |
| 7860 | flags |= HTX_SL_F_XFER_LEN; |
| 7861 | if (h1m.flags & H1_MF_CHNK) |
| 7862 | flags |= HTX_SL_F_CHNK; |
| 7863 | else if (h1m.flags & H1_MF_CLEN) |
| 7864 | flags |= HTX_SL_F_CLEN; |
| 7865 | if (h1m.body_len == 0) |
| 7866 | flags |= HTX_SL_F_BODYLESS; |
| 7867 | } |
| 7868 | sl->flags |= flags; |
| 7869 | |
| 7870 | |
| 7871 | if (!htx_add_endof(htx, HTX_BLK_EOH) || |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 7872 | (body_len && !htx_add_data_atonce(htx, ist2(body, body_len)))) |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 7873 | goto fail; |
| 7874 | |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 7875 | htx->flags |= HTX_FL_EOM; |
| 7876 | |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 7877 | /* Now, forward the response and terminate the transaction */ |
| 7878 | s->txn->status = code; |
| 7879 | htx_to_buf(htx, &s->res.buf); |
| 7880 | if (!http_forward_proxy_resp(s, 1)) |
| 7881 | goto fail; |
| 7882 | |
| 7883 | return 1; |
| 7884 | |
| 7885 | fail: |
| 7886 | channel_htx_truncate(&s->res, htx); |
| 7887 | return 0; |
| 7888 | } |
| 7889 | |
| 7890 | /* Terminate a transaction if called from a lua action. For TCP streams, |
| 7891 | * processing is just aborted. Nothing is returned to the client and all |
| 7892 | * arguments are ignored. For HTTP streams, if a reply is passed as argument, it |
| 7893 | * is forwarded to the client before terminating the transaction. On success, |
| 7894 | * the function exits with ACT_RET_DONE code. If an error occurred, it exits |
| 7895 | * with ACT_RET_ERR code. If this function is not called from a lua action, it |
| 7896 | * just exits without any processing. |
Thierry FOURNIER | 893bfa3 | 2015-02-17 18:42:34 +0100 | [diff] [blame] | 7897 | */ |
Thierry FOURNIER | 4bb375c | 2015-08-26 08:42:21 +0200 | [diff] [blame] | 7898 | __LJMP static int hlua_txn_done(lua_State *L) |
Thierry FOURNIER | 893bfa3 | 2015-02-17 18:42:34 +0100 | [diff] [blame] | 7899 | { |
Willy Tarreau | b2ccb56 | 2015-04-06 11:11:15 +0200 | [diff] [blame] | 7900 | struct hlua_txn *htxn; |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 7901 | struct stream *s; |
| 7902 | int finst; |
Thierry FOURNIER | 893bfa3 | 2015-02-17 18:42:34 +0100 | [diff] [blame] | 7903 | |
Willy Tarreau | b2ccb56 | 2015-04-06 11:11:15 +0200 | [diff] [blame] | 7904 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
Thierry FOURNIER | 893bfa3 | 2015-02-17 18:42:34 +0100 | [diff] [blame] | 7905 | |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 7906 | /* If the flags NOTERM is set, we cannot terminate the session, so we |
| 7907 | * just end the execution of the current lua code. */ |
| 7908 | if (htxn->flags & HLUA_TXN_NOTERM) |
Thierry FOURNIER | ab00df6 | 2016-07-14 11:42:37 +0200 | [diff] [blame] | 7909 | WILL_LJMP(hlua_done(L)); |
Thierry FOURNIER | ab00df6 | 2016-07-14 11:42:37 +0200 | [diff] [blame] | 7910 | |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 7911 | s = htxn->s; |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 7912 | if (!IS_HTX_STRM(htxn->s)) { |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 7913 | struct channel *req = &s->req; |
| 7914 | struct channel *res = &s->res; |
Willy Tarreau | 8138967 | 2015-03-10 12:03:52 +0100 | [diff] [blame] | 7915 | |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 7916 | channel_auto_read(req); |
| 7917 | channel_abort(req); |
| 7918 | channel_auto_close(req); |
| 7919 | channel_erase(req); |
| 7920 | |
| 7921 | res->wex = tick_add_ifset(now_ms, res->wto); |
| 7922 | channel_auto_read(res); |
| 7923 | channel_auto_close(res); |
| 7924 | channel_shutr_now(res); |
| 7925 | |
| 7926 | finst = ((htxn->dir == SMP_OPT_DIR_REQ) ? SF_FINST_R : SF_FINST_D); |
| 7927 | goto done; |
Christopher Faulet | fe6a71b | 2019-07-26 16:40:24 +0200 | [diff] [blame] | 7928 | } |
Thierry FOURNIER | 10ec214 | 2015-08-24 17:23:45 +0200 | [diff] [blame] | 7929 | |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 7930 | if (lua_gettop(L) == 1 || !lua_istable(L, 2)) { |
| 7931 | /* No reply or invalid reply */ |
| 7932 | s->txn->status = 0; |
| 7933 | http_reply_and_close(s, 0, NULL); |
| 7934 | } |
| 7935 | else { |
| 7936 | /* Remove extra args to have the reply on top of the stack */ |
| 7937 | if (lua_gettop(L) > 2) |
| 7938 | lua_pop(L, lua_gettop(L) - 2); |
Thierry FOURNIER | 893bfa3 | 2015-02-17 18:42:34 +0100 | [diff] [blame] | 7939 | |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 7940 | if (!hlua_txn_forward_reply(L, s)) { |
| 7941 | if (!(s->flags & SF_ERR_MASK)) |
| 7942 | s->flags |= SF_ERR_PRXCOND; |
| 7943 | lua_pushinteger(L, ACT_RET_ERR); |
| 7944 | WILL_LJMP(hlua_done(L)); |
| 7945 | return 0; /* Never reached */ |
| 7946 | } |
Christopher Faulet | 4d0e263 | 2019-07-16 10:52:40 +0200 | [diff] [blame] | 7947 | } |
Thierry FOURNIER | 4bb375c | 2015-08-26 08:42:21 +0200 | [diff] [blame] | 7948 | |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 7949 | finst = ((htxn->dir == SMP_OPT_DIR_REQ) ? SF_FINST_R : SF_FINST_H); |
| 7950 | if (htxn->dir == SMP_OPT_DIR_REQ) { |
| 7951 | /* let's log the request time */ |
| 7952 | s->logs.tv_request = now; |
| 7953 | if (s->sess->fe == s->be) /* report it if the request was intercepted by the frontend */ |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 7954 | _HA_ATOMIC_INC(&s->sess->fe->fe_counters.intercepted_req); |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 7955 | } |
Christopher Faulet | fe6a71b | 2019-07-26 16:40:24 +0200 | [diff] [blame] | 7956 | |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 7957 | done: |
| 7958 | if (!(s->flags & SF_ERR_MASK)) |
| 7959 | s->flags |= SF_ERR_LOCAL; |
| 7960 | if (!(s->flags & SF_FINST_MASK)) |
| 7961 | s->flags |= finst; |
Christopher Faulet | fe6a71b | 2019-07-26 16:40:24 +0200 | [diff] [blame] | 7962 | |
Christopher Faulet | e48d1dc | 2021-08-13 14:11:17 +0200 | [diff] [blame] | 7963 | if ((htxn->flags & HLUA_TXN_CTX_MASK) == HLUA_TXN_FLT_CTX) |
| 7964 | lua_pushinteger(L, -1); |
| 7965 | else |
| 7966 | lua_pushinteger(L, ACT_RET_ABRT); |
Thierry FOURNIER | 4bb375c | 2015-08-26 08:42:21 +0200 | [diff] [blame] | 7967 | WILL_LJMP(hlua_done(L)); |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 7968 | return 0; |
| 7969 | } |
| 7970 | |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 7971 | /* |
| 7972 | * |
| 7973 | * |
| 7974 | * Class REPLY |
| 7975 | * |
| 7976 | * |
| 7977 | */ |
| 7978 | |
| 7979 | /* Pushes the TXN reply onto the top of the stack. If the stask does not have a |
| 7980 | * free slots, the function fails and returns 0; |
| 7981 | */ |
| 7982 | static int hlua_txn_reply_new(lua_State *L) |
| 7983 | { |
| 7984 | struct hlua_txn *htxn; |
| 7985 | const char *reason, *body = NULL; |
| 7986 | int ret, status; |
| 7987 | |
| 7988 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 7989 | if (!IS_HTX_STRM(htxn->s)) { |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 7990 | hlua_pusherror(L, "txn object is not an HTTP transaction."); |
| 7991 | WILL_LJMP(lua_error(L)); |
| 7992 | } |
| 7993 | |
| 7994 | /* Default value */ |
| 7995 | status = 200; |
| 7996 | reason = http_get_reason(status); |
| 7997 | |
| 7998 | if (lua_istable(L, 2)) { |
| 7999 | /* load status and reason from the table argument at index 2 */ |
| 8000 | ret = lua_getfield(L, 2, "status"); |
| 8001 | if (ret == LUA_TNIL) |
| 8002 | goto reason; |
| 8003 | else if (ret != LUA_TNUMBER) { |
| 8004 | /* invalid status: ignore the reason */ |
| 8005 | goto body; |
| 8006 | } |
| 8007 | status = lua_tointeger(L, -1); |
| 8008 | |
| 8009 | reason: |
| 8010 | lua_pop(L, 1); /* restore the stack: remove status */ |
| 8011 | ret = lua_getfield(L, 2, "reason"); |
| 8012 | if (ret == LUA_TSTRING) |
| 8013 | reason = lua_tostring(L, -1); |
| 8014 | |
| 8015 | body: |
| 8016 | lua_pop(L, 1); /* restore the stack: remove invalid status or reason */ |
| 8017 | ret = lua_getfield(L, 2, "body"); |
| 8018 | if (ret == LUA_TSTRING) |
| 8019 | body = lua_tostring(L, -1); |
| 8020 | lua_pop(L, 1); /* restore the stack: remove body */ |
| 8021 | } |
| 8022 | |
| 8023 | /* Create the Reply table */ |
| 8024 | lua_newtable(L); |
| 8025 | |
| 8026 | /* Add status element */ |
| 8027 | lua_pushstring(L, "status"); |
| 8028 | lua_pushinteger(L, status); |
| 8029 | lua_settable(L, -3); |
| 8030 | |
| 8031 | /* Add reason element */ |
| 8032 | reason = http_get_reason(status); |
| 8033 | lua_pushstring(L, "reason"); |
| 8034 | lua_pushstring(L, reason); |
| 8035 | lua_settable(L, -3); |
| 8036 | |
| 8037 | /* Add body element, nil if undefined */ |
| 8038 | lua_pushstring(L, "body"); |
| 8039 | if (body) |
| 8040 | lua_pushstring(L, body); |
| 8041 | else |
| 8042 | lua_pushnil(L); |
| 8043 | lua_settable(L, -3); |
| 8044 | |
| 8045 | /* Add headers element */ |
| 8046 | lua_pushstring(L, "headers"); |
| 8047 | lua_newtable(L); |
| 8048 | |
| 8049 | /* stack: [ txn, <Arg:table>, <Reply:table>, "headers", <headers:table> ] */ |
| 8050 | if (lua_istable(L, 2)) { |
| 8051 | /* load headers from the table argument at index 2. If it is a table, copy it. */ |
| 8052 | ret = lua_getfield(L, 2, "headers"); |
| 8053 | if (ret == LUA_TTABLE) { |
| 8054 | /* stack: [ ... <headers:table>, <table> ] */ |
| 8055 | lua_pushnil(L); |
| 8056 | while (lua_next(L, -2) != 0) { |
| 8057 | /* stack: [ ... <headers:table>, <table>, k, v] */ |
| 8058 | if (!lua_isstring(L, -1) && !lua_istable(L, -1)) { |
| 8059 | /* invalid value type, skip it */ |
| 8060 | lua_pop(L, 1); |
| 8061 | continue; |
| 8062 | } |
| 8063 | |
| 8064 | |
| 8065 | /* Duplicate the key and swap it with the value. */ |
| 8066 | lua_pushvalue(L, -2); |
| 8067 | lua_insert(L, -2); |
| 8068 | /* stack: [ ... <headers:table>, <table>, k, k, v ] */ |
| 8069 | |
| 8070 | lua_newtable(L); |
| 8071 | lua_insert(L, -2); |
| 8072 | /* stack: [ ... <headers:table>, <table>, k, k, <inner:table>, v ] */ |
| 8073 | |
| 8074 | if (lua_isstring(L, -1)) { |
| 8075 | /* push the value in the inner table */ |
| 8076 | lua_rawseti(L, -2, 1); |
| 8077 | } |
| 8078 | else { /* table */ |
| 8079 | lua_pushnil(L); |
| 8080 | while (lua_next(L, -2) != 0) { |
| 8081 | /* stack: [ ... <headers:table>, <table>, k, k, <inner:table>, <v:table>, k2, v2 ] */ |
| 8082 | if (!lua_isstring(L, -1)) { |
| 8083 | /* invalid value type, skip it*/ |
| 8084 | lua_pop(L, 1); |
| 8085 | continue; |
| 8086 | } |
| 8087 | /* push the value in the inner table */ |
| 8088 | lua_rawseti(L, -4, lua_rawlen(L, -4) + 1); |
| 8089 | /* stack: [ ... <headers:table>, <table>, k, k, <inner:table>, <v:table>, k2 ] */ |
| 8090 | } |
| 8091 | lua_pop(L, 1); |
| 8092 | /* stack: [ ... <headers:table>, <table>, k, k, <inner:table> ] */ |
| 8093 | } |
| 8094 | |
| 8095 | /* push (k,v) on the stack in the headers table: |
| 8096 | * stack: [ ... <headers:table>, <table>, k, k, v ] |
| 8097 | */ |
| 8098 | lua_settable(L, -5); |
| 8099 | /* stack: [ ... <headers:table>, <table>, k ] */ |
| 8100 | } |
| 8101 | } |
| 8102 | lua_pop(L, 1); |
| 8103 | } |
| 8104 | /* stack: [ txn, <Arg:table>, <Reply:table>, "headers", <headers:table> ] */ |
| 8105 | lua_settable(L, -3); |
| 8106 | /* stack: [ txn, <Arg:table>, <Reply:table> ] */ |
| 8107 | |
| 8108 | /* Pop a class sesison metatable and affect it to the userdata. */ |
| 8109 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_txn_reply_ref); |
| 8110 | lua_setmetatable(L, -2); |
| 8111 | return 1; |
| 8112 | } |
| 8113 | |
| 8114 | /* Set the reply status code, and optionally the reason. If no reason is |
| 8115 | * provided, the default one corresponding to the status code is used. |
| 8116 | */ |
| 8117 | __LJMP static int hlua_txn_reply_set_status(lua_State *L) |
| 8118 | { |
| 8119 | int status = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 8120 | const char *reason = MAY_LJMP(luaL_optlstring(L, 3, NULL, NULL)); |
| 8121 | |
| 8122 | /* First argument (self) must be a table */ |
| 8123 | luaL_checktype(L, 1, LUA_TTABLE); |
| 8124 | |
| 8125 | if (status < 100 || status > 599) { |
| 8126 | lua_pushboolean(L, 0); |
| 8127 | return 1; |
| 8128 | } |
| 8129 | if (!reason) |
| 8130 | reason = http_get_reason(status); |
| 8131 | |
| 8132 | lua_pushinteger(L, status); |
| 8133 | lua_setfield(L, 1, "status"); |
| 8134 | |
| 8135 | lua_pushstring(L, reason); |
| 8136 | lua_setfield(L, 1, "reason"); |
| 8137 | |
| 8138 | lua_pushboolean(L, 1); |
| 8139 | return 1; |
| 8140 | } |
| 8141 | |
| 8142 | /* Add a header into the reply object. Each header name is associated to an |
| 8143 | * array of values in the "headers" table. If the header name is not found, a |
| 8144 | * new entry is created. |
| 8145 | */ |
| 8146 | __LJMP static int hlua_txn_reply_add_header(lua_State *L) |
| 8147 | { |
| 8148 | const char *name = MAY_LJMP(luaL_checkstring(L, 2)); |
| 8149 | const char *value = MAY_LJMP(luaL_checkstring(L, 3)); |
| 8150 | int ret; |
| 8151 | |
| 8152 | /* First argument (self) must be a table */ |
| 8153 | luaL_checktype(L, 1, LUA_TTABLE); |
| 8154 | |
| 8155 | /* Push in the stack the "headers" entry. */ |
| 8156 | ret = lua_getfield(L, 1, "headers"); |
| 8157 | if (ret != LUA_TTABLE) { |
| 8158 | hlua_pusherror(L, "Reply['headers'] is expected to a an array. %s found", lua_typename(L, ret)); |
| 8159 | WILL_LJMP(lua_error(L)); |
| 8160 | } |
| 8161 | |
| 8162 | /* check if the header is already registered. If not, register it. */ |
| 8163 | ret = lua_getfield(L, -1, name); |
| 8164 | if (ret == LUA_TNIL) { |
| 8165 | /* Entry not found. */ |
| 8166 | lua_pop(L, 1); /* remove the nil. The "headers" table is the top of the stack. */ |
| 8167 | |
| 8168 | /* Insert the new header name in the array in the top of the stack. |
| 8169 | * It left the new array in the top of the stack. |
| 8170 | */ |
| 8171 | lua_newtable(L); |
| 8172 | lua_pushstring(L, name); |
| 8173 | lua_pushvalue(L, -2); |
| 8174 | lua_settable(L, -4); |
| 8175 | } |
| 8176 | else if (ret != LUA_TTABLE) { |
| 8177 | hlua_pusherror(L, "Reply['headers']['%s'] is expected to be an array. %s found", name, lua_typename(L, ret)); |
| 8178 | WILL_LJMP(lua_error(L)); |
| 8179 | } |
| 8180 | |
Thayne McCombs | 8f0cc5c | 2021-01-07 21:35:52 -0700 | [diff] [blame] | 8181 | /* Now the top of thestack is an array of values. We push |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 8182 | * the header value as new entry. |
| 8183 | */ |
| 8184 | lua_pushstring(L, value); |
| 8185 | ret = lua_rawlen(L, -2); |
| 8186 | lua_rawseti(L, -2, ret + 1); |
| 8187 | |
| 8188 | lua_pushboolean(L, 1); |
| 8189 | return 1; |
| 8190 | } |
| 8191 | |
| 8192 | /* Remove all occurrences of a given header name. */ |
| 8193 | __LJMP static int hlua_txn_reply_del_header(lua_State *L) |
| 8194 | { |
| 8195 | const char *name = MAY_LJMP(luaL_checkstring(L, 2)); |
| 8196 | int ret; |
| 8197 | |
| 8198 | /* First argument (self) must be a table */ |
| 8199 | luaL_checktype(L, 1, LUA_TTABLE); |
| 8200 | |
| 8201 | /* Push in the stack the "headers" entry. */ |
| 8202 | ret = lua_getfield(L, 1, "headers"); |
| 8203 | if (ret != LUA_TTABLE) { |
| 8204 | hlua_pusherror(L, "Reply['headers'] is expected to be an array. %s found", lua_typename(L, ret)); |
| 8205 | WILL_LJMP(lua_error(L)); |
| 8206 | } |
| 8207 | |
| 8208 | lua_pushstring(L, name); |
| 8209 | lua_pushnil(L); |
| 8210 | lua_settable(L, -3); |
| 8211 | |
| 8212 | lua_pushboolean(L, 1); |
| 8213 | return 1; |
| 8214 | } |
| 8215 | |
| 8216 | /* Set the reply's body. Overwrite any existing entry. */ |
| 8217 | __LJMP static int hlua_txn_reply_set_body(lua_State *L) |
| 8218 | { |
| 8219 | const char *payload = MAY_LJMP(luaL_checkstring(L, 2)); |
| 8220 | |
| 8221 | /* First argument (self) must be a table */ |
| 8222 | luaL_checktype(L, 1, LUA_TTABLE); |
| 8223 | |
| 8224 | lua_pushstring(L, payload); |
| 8225 | lua_setfield(L, 1, "body"); |
| 8226 | |
| 8227 | lua_pushboolean(L, 1); |
| 8228 | return 1; |
| 8229 | } |
| 8230 | |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 8231 | __LJMP static int hlua_log(lua_State *L) |
| 8232 | { |
| 8233 | int level; |
| 8234 | const char *msg; |
| 8235 | |
| 8236 | MAY_LJMP(check_args(L, 2, "log")); |
| 8237 | level = MAY_LJMP(luaL_checkinteger(L, 1)); |
| 8238 | msg = MAY_LJMP(luaL_checkstring(L, 2)); |
| 8239 | |
| 8240 | if (level < 0 || level >= NB_LOG_LEVELS) |
| 8241 | WILL_LJMP(luaL_argerror(L, 1, "Invalid loglevel.")); |
| 8242 | |
| 8243 | hlua_sendlog(NULL, level, msg); |
| 8244 | return 0; |
| 8245 | } |
| 8246 | |
| 8247 | __LJMP static int hlua_log_debug(lua_State *L) |
| 8248 | { |
| 8249 | const char *msg; |
| 8250 | |
| 8251 | MAY_LJMP(check_args(L, 1, "debug")); |
| 8252 | msg = MAY_LJMP(luaL_checkstring(L, 1)); |
| 8253 | hlua_sendlog(NULL, LOG_DEBUG, msg); |
| 8254 | return 0; |
| 8255 | } |
| 8256 | |
| 8257 | __LJMP static int hlua_log_info(lua_State *L) |
| 8258 | { |
| 8259 | const char *msg; |
| 8260 | |
| 8261 | MAY_LJMP(check_args(L, 1, "info")); |
| 8262 | msg = MAY_LJMP(luaL_checkstring(L, 1)); |
| 8263 | hlua_sendlog(NULL, LOG_INFO, msg); |
| 8264 | return 0; |
| 8265 | } |
| 8266 | |
| 8267 | __LJMP static int hlua_log_warning(lua_State *L) |
| 8268 | { |
| 8269 | const char *msg; |
| 8270 | |
| 8271 | MAY_LJMP(check_args(L, 1, "warning")); |
| 8272 | msg = MAY_LJMP(luaL_checkstring(L, 1)); |
| 8273 | hlua_sendlog(NULL, LOG_WARNING, msg); |
| 8274 | return 0; |
| 8275 | } |
| 8276 | |
| 8277 | __LJMP static int hlua_log_alert(lua_State *L) |
| 8278 | { |
| 8279 | const char *msg; |
| 8280 | |
| 8281 | MAY_LJMP(check_args(L, 1, "alert")); |
| 8282 | msg = MAY_LJMP(luaL_checkstring(L, 1)); |
| 8283 | hlua_sendlog(NULL, LOG_ALERT, msg); |
Thierry FOURNIER | 893bfa3 | 2015-02-17 18:42:34 +0100 | [diff] [blame] | 8284 | return 0; |
| 8285 | } |
| 8286 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 8287 | __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] | 8288 | { |
| 8289 | int wakeup_ms = lua_tointeger(L, -1); |
Willy Tarreau | 12c0270 | 2021-09-30 16:12:31 +0200 | [diff] [blame] | 8290 | if (!tick_is_expired(wakeup_ms, now_ms)) |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 8291 | 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] | 8292 | return 0; |
| 8293 | } |
| 8294 | |
| 8295 | __LJMP static int hlua_sleep(lua_State *L) |
| 8296 | { |
| 8297 | unsigned int delay; |
Thierry FOURNIER | d44731f | 2015-03-04 15:51:09 +0100 | [diff] [blame] | 8298 | unsigned int wakeup_ms; |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 8299 | |
Thierry FOURNIER | d44731f | 2015-03-04 15:51:09 +0100 | [diff] [blame] | 8300 | MAY_LJMP(check_args(L, 1, "sleep")); |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 8301 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 8302 | delay = MAY_LJMP(luaL_checkinteger(L, 1)) * 1000; |
Thierry FOURNIER | d44731f | 2015-03-04 15:51:09 +0100 | [diff] [blame] | 8303 | wakeup_ms = tick_add(now_ms, delay); |
| 8304 | lua_pushinteger(L, wakeup_ms); |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 8305 | |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 8306 | 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] | 8307 | return 0; |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 8308 | } |
| 8309 | |
Thierry FOURNIER | d44731f | 2015-03-04 15:51:09 +0100 | [diff] [blame] | 8310 | __LJMP static int hlua_msleep(lua_State *L) |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 8311 | { |
| 8312 | unsigned int delay; |
Thierry FOURNIER | d44731f | 2015-03-04 15:51:09 +0100 | [diff] [blame] | 8313 | unsigned int wakeup_ms; |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 8314 | |
Thierry FOURNIER | d44731f | 2015-03-04 15:51:09 +0100 | [diff] [blame] | 8315 | MAY_LJMP(check_args(L, 1, "msleep")); |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 8316 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 8317 | delay = MAY_LJMP(luaL_checkinteger(L, 1)); |
Thierry FOURNIER | d44731f | 2015-03-04 15:51:09 +0100 | [diff] [blame] | 8318 | wakeup_ms = tick_add(now_ms, delay); |
| 8319 | lua_pushinteger(L, wakeup_ms); |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 8320 | |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 8321 | 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] | 8322 | return 0; |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 8323 | } |
| 8324 | |
Thierry FOURNIER | 13416fe | 2015-02-17 15:01:59 +0100 | [diff] [blame] | 8325 | /* This functionis an LUA binding. it permits to give back |
| 8326 | * the hand at the HAProxy scheduler. It is used when the |
| 8327 | * LUA processing consumes a lot of time. |
| 8328 | */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 8329 | __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] | 8330 | { |
| 8331 | return 0; |
| 8332 | } |
| 8333 | |
Thierry FOURNIER | 13416fe | 2015-02-17 15:01:59 +0100 | [diff] [blame] | 8334 | __LJMP static int hlua_yield(lua_State *L) |
| 8335 | { |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 8336 | 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] | 8337 | return 0; |
Thierry FOURNIER | 13416fe | 2015-02-17 15:01:59 +0100 | [diff] [blame] | 8338 | } |
| 8339 | |
Thierry FOURNIER | 37196f4 | 2015-02-16 19:34:56 +0100 | [diff] [blame] | 8340 | /* This function change the nice of the currently executed |
| 8341 | * task. It is used set low or high priority at the current |
| 8342 | * task. |
| 8343 | */ |
Willy Tarreau | 5955166 | 2015-03-10 14:23:13 +0100 | [diff] [blame] | 8344 | __LJMP static int hlua_set_nice(lua_State *L) |
Thierry FOURNIER | 37196f4 | 2015-02-16 19:34:56 +0100 | [diff] [blame] | 8345 | { |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 8346 | struct hlua *hlua; |
| 8347 | int nice; |
Thierry FOURNIER | 37196f4 | 2015-02-16 19:34:56 +0100 | [diff] [blame] | 8348 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 8349 | MAY_LJMP(check_args(L, 1, "set_nice")); |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 8350 | nice = MAY_LJMP(luaL_checkinteger(L, 1)); |
Thierry FOURNIER | 37196f4 | 2015-02-16 19:34:56 +0100 | [diff] [blame] | 8351 | |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 8352 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 8353 | hlua = hlua_gethlua(L); |
| 8354 | |
| 8355 | /* If the task is not set, I'm in a start mode. */ |
Thierry FOURNIER | 37196f4 | 2015-02-16 19:34:56 +0100 | [diff] [blame] | 8356 | if (!hlua || !hlua->task) |
| 8357 | return 0; |
| 8358 | |
| 8359 | if (nice < -1024) |
| 8360 | nice = -1024; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 8361 | else if (nice > 1024) |
Thierry FOURNIER | 37196f4 | 2015-02-16 19:34:56 +0100 | [diff] [blame] | 8362 | nice = 1024; |
| 8363 | |
| 8364 | hlua->task->nice = nice; |
| 8365 | return 0; |
| 8366 | } |
| 8367 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 8368 | /* 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] | 8369 | * HAProxy task subsystem when the task is awaked. The LUA runtime can |
| 8370 | * return an E_AGAIN signal, the emmiter of this signal must set a |
| 8371 | * signal to wake the task. |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 8372 | * |
| 8373 | * Task wrapper are longjmp safe because the only one Lua code |
| 8374 | * executed is the safe hlua_ctx_resume(); |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 8375 | */ |
Willy Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 8376 | struct task *hlua_process_task(struct task *task, void *context, unsigned int state) |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 8377 | { |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 8378 | struct hlua *hlua = context; |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 8379 | enum hlua_exec status; |
| 8380 | |
Christopher Faulet | 5bc9972 | 2018-04-25 10:34:45 +0200 | [diff] [blame] | 8381 | if (task->thread_mask == MAX_THREADS_MASK) |
| 8382 | task_set_affinity(task, tid_bit); |
| 8383 | |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 8384 | /* If it is the first call to the task, we must initialize the |
| 8385 | * execution timeouts. |
| 8386 | */ |
| 8387 | if (!HLUA_IS_RUNNING(hlua)) |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 8388 | hlua->max_time = hlua_timeout_task; |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 8389 | |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 8390 | /* Execute the Lua code. */ |
| 8391 | status = hlua_ctx_resume(hlua, 1); |
| 8392 | |
| 8393 | switch (status) { |
| 8394 | /* finished or yield */ |
| 8395 | case HLUA_E_OK: |
| 8396 | hlua_ctx_destroy(hlua); |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 8397 | task_destroy(task); |
Tim Duesterhus | cd235c6 | 2018-04-24 13:56:01 +0200 | [diff] [blame] | 8398 | task = NULL; |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 8399 | break; |
| 8400 | |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 8401 | case HLUA_E_AGAIN: /* co process or timeout wake me later. */ |
Thierry FOURNIER | cb14688 | 2017-12-10 17:10:57 +0100 | [diff] [blame] | 8402 | notification_gc(&hlua->com); |
PiBa-NL | fe971b3 | 2018-05-02 22:27:14 +0200 | [diff] [blame] | 8403 | task->expire = hlua->wake_time; |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 8404 | break; |
| 8405 | |
| 8406 | /* finished with error. */ |
| 8407 | case HLUA_E_ERRMSG: |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 8408 | SEND_ERR(NULL, "Lua task: %s.\n", lua_tostring(hlua->T, -1)); |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 8409 | hlua_ctx_destroy(hlua); |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 8410 | task_destroy(task); |
Emeric Brun | 253e53e | 2017-10-17 18:58:40 +0200 | [diff] [blame] | 8411 | task = NULL; |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 8412 | break; |
| 8413 | |
| 8414 | case HLUA_E_ERR: |
| 8415 | default: |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 8416 | SEND_ERR(NULL, "Lua task: unknown error.\n"); |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 8417 | hlua_ctx_destroy(hlua); |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 8418 | task_destroy(task); |
Emeric Brun | 253e53e | 2017-10-17 18:58:40 +0200 | [diff] [blame] | 8419 | task = NULL; |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 8420 | break; |
| 8421 | } |
Emeric Brun | 253e53e | 2017-10-17 18:58:40 +0200 | [diff] [blame] | 8422 | return task; |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 8423 | } |
| 8424 | |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 8425 | /* This function is an LUA binding that register LUA function to be |
| 8426 | * executed after the HAProxy configuration parsing and before the |
| 8427 | * HAProxy scheduler starts. This function expect only one LUA |
| 8428 | * argument that is a function. This function returns nothing, but |
| 8429 | * throws if an error is encountered. |
| 8430 | */ |
| 8431 | __LJMP static int hlua_register_init(lua_State *L) |
| 8432 | { |
| 8433 | struct hlua_init_function *init; |
| 8434 | int ref; |
| 8435 | |
| 8436 | MAY_LJMP(check_args(L, 1, "register_init")); |
| 8437 | |
| 8438 | ref = MAY_LJMP(hlua_checkfunction(L, 1)); |
| 8439 | |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 8440 | init = calloc(1, sizeof(*init)); |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 8441 | if (!init) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 8442 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 8443 | |
| 8444 | init->function_ref = ref; |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 8445 | LIST_APPEND(&hlua_init_functions[hlua_state_id], &init->l); |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 8446 | return 0; |
| 8447 | } |
| 8448 | |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 8449 | /* This functio is an LUA binding. It permits to register a task |
| 8450 | * executed in parallel of the main HAroxy activity. The task is |
| 8451 | * created and it is set in the HAProxy scheduler. It can be called |
| 8452 | * from the "init" section, "post init" or during the runtime. |
| 8453 | * |
| 8454 | * Lua prototype: |
| 8455 | * |
| 8456 | * <none> core.register_task(<function>) |
| 8457 | */ |
| 8458 | static int hlua_register_task(lua_State *L) |
| 8459 | { |
Christopher Faulet | 5294ec0 | 2021-04-12 12:24:47 +0200 | [diff] [blame] | 8460 | struct hlua *hlua = NULL; |
| 8461 | struct task *task = NULL; |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 8462 | int ref; |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 8463 | int state_id; |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 8464 | |
| 8465 | MAY_LJMP(check_args(L, 1, "register_task")); |
| 8466 | |
| 8467 | ref = MAY_LJMP(hlua_checkfunction(L, 1)); |
| 8468 | |
Thierry Fournier | 75fc029 | 2020-11-28 13:18:56 +0100 | [diff] [blame] | 8469 | /* Get the reference state. If the reference is NULL, L is the master |
| 8470 | * state, otherwise hlua->T is. |
| 8471 | */ |
| 8472 | hlua = hlua_gethlua(L); |
| 8473 | if (hlua) |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 8474 | /* we are in runtime processing */ |
| 8475 | state_id = hlua->state_id; |
Thierry Fournier | 75fc029 | 2020-11-28 13:18:56 +0100 | [diff] [blame] | 8476 | else |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 8477 | /* we are in initialization mode */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 8478 | state_id = hlua_state_id; |
Thierry Fournier | 75fc029 | 2020-11-28 13:18:56 +0100 | [diff] [blame] | 8479 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 8480 | hlua = pool_alloc(pool_head_hlua); |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 8481 | if (!hlua) |
Christopher Faulet | 5294ec0 | 2021-04-12 12:24:47 +0200 | [diff] [blame] | 8482 | goto alloc_error; |
Christopher Faulet | 1e8433f | 2021-03-24 15:03:01 +0100 | [diff] [blame] | 8483 | HLUA_INIT(hlua); |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 8484 | |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 8485 | /* We are in the common lua state, execute the task anywhere, |
| 8486 | * otherwise, inherit the current thread identifier |
| 8487 | */ |
| 8488 | if (state_id == 0) |
Willy Tarreau | beeabf5 | 2021-10-01 18:23:30 +0200 | [diff] [blame] | 8489 | task = task_new_anywhere(); |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 8490 | else |
Willy Tarreau | beeabf5 | 2021-10-01 18:23:30 +0200 | [diff] [blame] | 8491 | task = task_new_here(); |
Willy Tarreau | e09101e | 2018-10-16 17:37:12 +0200 | [diff] [blame] | 8492 | if (!task) |
Christopher Faulet | 5294ec0 | 2021-04-12 12:24:47 +0200 | [diff] [blame] | 8493 | goto alloc_error; |
Willy Tarreau | e09101e | 2018-10-16 17:37:12 +0200 | [diff] [blame] | 8494 | |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 8495 | task->context = hlua; |
| 8496 | task->process = hlua_process_task; |
| 8497 | |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 8498 | if (!hlua_ctx_init(hlua, state_id, task, 1)) |
Christopher Faulet | 5294ec0 | 2021-04-12 12:24:47 +0200 | [diff] [blame] | 8499 | goto alloc_error; |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 8500 | |
| 8501 | /* Restore the function in the stack. */ |
| 8502 | lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, ref); |
| 8503 | hlua->nargs = 0; |
| 8504 | |
| 8505 | /* Schedule task. */ |
Willy Tarreau | e3957f8 | 2021-09-30 16:17:37 +0200 | [diff] [blame] | 8506 | task_wakeup(task, TASK_WOKEN_INIT); |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 8507 | |
| 8508 | return 0; |
Christopher Faulet | 5294ec0 | 2021-04-12 12:24:47 +0200 | [diff] [blame] | 8509 | |
| 8510 | alloc_error: |
| 8511 | task_destroy(task); |
| 8512 | hlua_ctx_destroy(hlua); |
| 8513 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
| 8514 | return 0; /* Never reached */ |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 8515 | } |
| 8516 | |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 8517 | /* Wrapper called by HAProxy to execute an LUA converter. This wrapper |
| 8518 | * doesn't allow "yield" functions because the HAProxy engine cannot |
| 8519 | * resume converters. |
| 8520 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 8521 | 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] | 8522 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 8523 | struct hlua_function *fcn = private; |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 8524 | struct stream *stream = smp->strm; |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 8525 | const char *error; |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 8526 | |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 8527 | if (!stream) |
| 8528 | return 0; |
| 8529 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 8530 | /* In the execution wrappers linked with a stream, the |
Thierry FOURNIER | 05ac424 | 2015-02-27 18:37:27 +0100 | [diff] [blame] | 8531 | * Lua context can be not initialized. This behavior |
| 8532 | * permits to save performances because a systematic |
| 8533 | * Lua initialization cause 5% performances loss. |
| 8534 | */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 8535 | if (!stream->hlua) { |
Christopher Faulet | 1e8433f | 2021-03-24 15:03:01 +0100 | [diff] [blame] | 8536 | struct hlua *hlua; |
| 8537 | |
| 8538 | hlua = pool_alloc(pool_head_hlua); |
| 8539 | if (!hlua) { |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 8540 | SEND_ERR(stream->be, "Lua converter '%s': can't initialize Lua context.\n", fcn->name); |
| 8541 | return 0; |
| 8542 | } |
Christopher Faulet | 1e8433f | 2021-03-24 15:03:01 +0100 | [diff] [blame] | 8543 | HLUA_INIT(hlua); |
| 8544 | stream->hlua = hlua; |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 8545 | 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] | 8546 | SEND_ERR(stream->be, "Lua converter '%s': can't initialize Lua context.\n", fcn->name); |
| 8547 | return 0; |
| 8548 | } |
Thierry FOURNIER | 05ac424 | 2015-02-27 18:37:27 +0100 | [diff] [blame] | 8549 | } |
| 8550 | |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 8551 | /* If it is the first run, initialize the data for the call. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 8552 | if (!HLUA_IS_RUNNING(stream->hlua)) { |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 8553 | |
| 8554 | /* The following Lua calls can fail. */ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 8555 | if (!SET_SAFE_LJMP(stream->hlua)) { |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 8556 | if (lua_type(stream->hlua->T, -1) == LUA_TSTRING) |
| 8557 | error = lua_tostring(stream->hlua->T, -1); |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 8558 | else |
| 8559 | error = "critical error"; |
| 8560 | SEND_ERR(stream->be, "Lua converter '%s': %s.\n", fcn->name, error); |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 8561 | return 0; |
| 8562 | } |
| 8563 | |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 8564 | /* Check stack available size. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 8565 | if (!lua_checkstack(stream->hlua->T, 1)) { |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 8566 | SEND_ERR(stream->be, "Lua converter '%s': full stack.\n", fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 8567 | RESET_SAFE_LJMP(stream->hlua); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 8568 | return 0; |
| 8569 | } |
| 8570 | |
| 8571 | /* Restore the function in the stack. */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 8572 | 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] | 8573 | |
| 8574 | /* convert input sample and pust-it in the stack. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 8575 | if (!lua_checkstack(stream->hlua->T, 1)) { |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 8576 | SEND_ERR(stream->be, "Lua converter '%s': full stack.\n", fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 8577 | RESET_SAFE_LJMP(stream->hlua); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 8578 | return 0; |
| 8579 | } |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 8580 | hlua_smp2lua(stream->hlua->T, smp); |
| 8581 | stream->hlua->nargs = 1; |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 8582 | |
| 8583 | /* push keywords in the stack. */ |
| 8584 | if (arg_p) { |
| 8585 | for (; arg_p->type != ARGT_STOP; arg_p++) { |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 8586 | if (!lua_checkstack(stream->hlua->T, 1)) { |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 8587 | SEND_ERR(stream->be, "Lua converter '%s': full stack.\n", fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 8588 | RESET_SAFE_LJMP(stream->hlua); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 8589 | return 0; |
| 8590 | } |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 8591 | hlua_arg2lua(stream->hlua->T, arg_p); |
| 8592 | stream->hlua->nargs++; |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 8593 | } |
| 8594 | } |
| 8595 | |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 8596 | /* We must initialize the execution timeouts. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 8597 | stream->hlua->max_time = hlua_timeout_session; |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 8598 | |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 8599 | /* At this point the execution is safe. */ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 8600 | RESET_SAFE_LJMP(stream->hlua); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 8601 | } |
| 8602 | |
| 8603 | /* Execute the function. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 8604 | switch (hlua_ctx_resume(stream->hlua, 0)) { |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 8605 | /* finished. */ |
| 8606 | case HLUA_E_OK: |
Thierry FOURNIER | fd80df1 | 2017-05-12 16:32:20 +0200 | [diff] [blame] | 8607 | /* If the stack is empty, the function fails. */ |
| 8608 | if (lua_gettop(stream->hlua->T) <= 0) |
| 8609 | return 0; |
| 8610 | |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 8611 | /* Convert the returned value in sample. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 8612 | hlua_lua2smp(stream->hlua->T, -1, smp); |
| 8613 | lua_pop(stream->hlua->T, 1); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 8614 | return 1; |
| 8615 | |
| 8616 | /* yield. */ |
| 8617 | case HLUA_E_AGAIN: |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 8618 | 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] | 8619 | return 0; |
| 8620 | |
| 8621 | /* finished with error. */ |
| 8622 | case HLUA_E_ERRMSG: |
| 8623 | /* Display log. */ |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 8624 | SEND_ERR(stream->be, "Lua converter '%s': %s.\n", |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 8625 | fcn->name, lua_tostring(stream->hlua->T, -1)); |
| 8626 | lua_pop(stream->hlua->T, 1); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 8627 | return 0; |
| 8628 | |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 8629 | case HLUA_E_ETMOUT: |
| 8630 | SEND_ERR(stream->be, "Lua converter '%s': execution timeout.\n", fcn->name); |
| 8631 | return 0; |
| 8632 | |
| 8633 | case HLUA_E_NOMEM: |
| 8634 | SEND_ERR(stream->be, "Lua converter '%s': out of memory error.\n", fcn->name); |
| 8635 | return 0; |
| 8636 | |
| 8637 | case HLUA_E_YIELD: |
| 8638 | SEND_ERR(stream->be, "Lua converter '%s': yield functions like core.tcp() or core.sleep() are not allowed.\n", fcn->name); |
| 8639 | return 0; |
| 8640 | |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 8641 | case HLUA_E_ERR: |
| 8642 | /* Display log. */ |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 8643 | 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] | 8644 | /* fall through */ |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 8645 | |
| 8646 | default: |
| 8647 | return 0; |
| 8648 | } |
| 8649 | } |
| 8650 | |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 8651 | /* Wrapper called by HAProxy to execute a sample-fetch. this wrapper |
| 8652 | * doesn't allow "yield" functions because the HAProxy engine cannot |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 8653 | * resume sample-fetches. This function will be called by the sample |
| 8654 | * fetch engine to call lua-based fetch operations. |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 8655 | */ |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 8656 | static int hlua_sample_fetch_wrapper(const struct arg *arg_p, struct sample *smp, |
| 8657 | const char *kw, void *private) |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 8658 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 8659 | struct hlua_function *fcn = private; |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 8660 | struct stream *stream = smp->strm; |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 8661 | const char *error; |
Christopher Faulet | 8c9e6bb | 2021-08-06 16:29:41 +0200 | [diff] [blame] | 8662 | unsigned int hflags = HLUA_TXN_NOTERM | HLUA_TXN_SMP_CTX; |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 8663 | |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 8664 | if (!stream) |
| 8665 | return 0; |
Christopher Faulet | afd8f10 | 2018-11-08 11:34:21 +0100 | [diff] [blame] | 8666 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 8667 | /* In the execution wrappers linked with a stream, the |
Thierry FOURNIER | 05ac424 | 2015-02-27 18:37:27 +0100 | [diff] [blame] | 8668 | * Lua context can be not initialized. This behavior |
| 8669 | * permits to save performances because a systematic |
| 8670 | * Lua initialization cause 5% performances loss. |
| 8671 | */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 8672 | if (!stream->hlua) { |
Christopher Faulet | 1e8433f | 2021-03-24 15:03:01 +0100 | [diff] [blame] | 8673 | struct hlua *hlua; |
| 8674 | |
| 8675 | hlua = pool_alloc(pool_head_hlua); |
| 8676 | if (!hlua) { |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 8677 | SEND_ERR(stream->be, "Lua sample-fetch '%s': can't initialize Lua context.\n", fcn->name); |
| 8678 | return 0; |
| 8679 | } |
Christopher Faulet | 1e8433f | 2021-03-24 15:03:01 +0100 | [diff] [blame] | 8680 | hlua->T = NULL; |
| 8681 | stream->hlua = hlua; |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 8682 | 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] | 8683 | SEND_ERR(stream->be, "Lua sample-fetch '%s': can't initialize Lua context.\n", fcn->name); |
| 8684 | return 0; |
| 8685 | } |
Thierry FOURNIER | 05ac424 | 2015-02-27 18:37:27 +0100 | [diff] [blame] | 8686 | } |
| 8687 | |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 8688 | /* If it is the first run, initialize the data for the call. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 8689 | if (!HLUA_IS_RUNNING(stream->hlua)) { |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 8690 | |
| 8691 | /* The following Lua calls can fail. */ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 8692 | if (!SET_SAFE_LJMP(stream->hlua)) { |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 8693 | if (lua_type(stream->hlua->T, -1) == LUA_TSTRING) |
| 8694 | error = lua_tostring(stream->hlua->T, -1); |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 8695 | else |
| 8696 | error = "critical error"; |
| 8697 | 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] | 8698 | return 0; |
| 8699 | } |
| 8700 | |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 8701 | /* Check stack available size. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 8702 | if (!lua_checkstack(stream->hlua->T, 2)) { |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 8703 | 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] | 8704 | RESET_SAFE_LJMP(stream->hlua); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 8705 | return 0; |
| 8706 | } |
| 8707 | |
| 8708 | /* Restore the function in the stack. */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 8709 | 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] | 8710 | |
| 8711 | /* push arguments in the stack. */ |
Christopher Faulet | bfab2dd | 2019-07-26 15:09:53 +0200 | [diff] [blame] | 8712 | 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] | 8713 | 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] | 8714 | RESET_SAFE_LJMP(stream->hlua); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 8715 | return 0; |
| 8716 | } |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 8717 | stream->hlua->nargs = 1; |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 8718 | |
| 8719 | /* push keywords in the stack. */ |
| 8720 | for (; arg_p && arg_p->type != ARGT_STOP; arg_p++) { |
| 8721 | /* Check stack available size. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 8722 | if (!lua_checkstack(stream->hlua->T, 1)) { |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 8723 | 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] | 8724 | RESET_SAFE_LJMP(stream->hlua); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 8725 | return 0; |
| 8726 | } |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 8727 | hlua_arg2lua(stream->hlua->T, arg_p); |
| 8728 | stream->hlua->nargs++; |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 8729 | } |
| 8730 | |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 8731 | /* We must initialize the execution timeouts. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 8732 | stream->hlua->max_time = hlua_timeout_session; |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 8733 | |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 8734 | /* At this point the execution is safe. */ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 8735 | RESET_SAFE_LJMP(stream->hlua); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 8736 | } |
| 8737 | |
| 8738 | /* Execute the function. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 8739 | switch (hlua_ctx_resume(stream->hlua, 0)) { |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 8740 | /* finished. */ |
| 8741 | case HLUA_E_OK: |
Thierry FOURNIER | fd80df1 | 2017-05-12 16:32:20 +0200 | [diff] [blame] | 8742 | /* If the stack is empty, the function fails. */ |
| 8743 | if (lua_gettop(stream->hlua->T) <= 0) |
| 8744 | return 0; |
| 8745 | |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 8746 | /* Convert the returned value in sample. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 8747 | hlua_lua2smp(stream->hlua->T, -1, smp); |
| 8748 | lua_pop(stream->hlua->T, 1); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 8749 | |
| 8750 | /* Set the end of execution flag. */ |
| 8751 | smp->flags &= ~SMP_F_MAY_CHANGE; |
| 8752 | return 1; |
| 8753 | |
| 8754 | /* yield. */ |
| 8755 | case HLUA_E_AGAIN: |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 8756 | 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] | 8757 | return 0; |
| 8758 | |
| 8759 | /* finished with error. */ |
| 8760 | case HLUA_E_ERRMSG: |
| 8761 | /* Display log. */ |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 8762 | SEND_ERR(smp->px, "Lua sample-fetch '%s': %s.\n", |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 8763 | fcn->name, lua_tostring(stream->hlua->T, -1)); |
| 8764 | lua_pop(stream->hlua->T, 1); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 8765 | return 0; |
| 8766 | |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 8767 | case HLUA_E_ETMOUT: |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 8768 | SEND_ERR(smp->px, "Lua sample-fetch '%s': execution timeout.\n", fcn->name); |
| 8769 | return 0; |
| 8770 | |
| 8771 | case HLUA_E_NOMEM: |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 8772 | SEND_ERR(smp->px, "Lua sample-fetch '%s': out of memory error.\n", fcn->name); |
| 8773 | return 0; |
| 8774 | |
| 8775 | case HLUA_E_YIELD: |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 8776 | SEND_ERR(smp->px, "Lua sample-fetch '%s': yield not allowed.\n", fcn->name); |
| 8777 | return 0; |
| 8778 | |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 8779 | case HLUA_E_ERR: |
| 8780 | /* Display log. */ |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 8781 | 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] | 8782 | /* fall through */ |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 8783 | |
| 8784 | default: |
| 8785 | return 0; |
| 8786 | } |
| 8787 | } |
| 8788 | |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 8789 | /* This function is an LUA binding used for registering |
| 8790 | * "sample-conv" functions. It expects a converter name used |
| 8791 | * in the haproxy configuration file, and an LUA function. |
| 8792 | */ |
| 8793 | __LJMP static int hlua_register_converters(lua_State *L) |
| 8794 | { |
| 8795 | struct sample_conv_kw_list *sck; |
| 8796 | const char *name; |
| 8797 | int ref; |
| 8798 | int len; |
Christopher Faulet | aa22430 | 2021-04-12 14:08:21 +0200 | [diff] [blame] | 8799 | struct hlua_function *fcn = NULL; |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 8800 | struct sample_conv *sc; |
| 8801 | struct buffer *trash; |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 8802 | |
| 8803 | MAY_LJMP(check_args(L, 2, "register_converters")); |
| 8804 | |
| 8805 | /* First argument : converter name. */ |
| 8806 | name = MAY_LJMP(luaL_checkstring(L, 1)); |
| 8807 | |
| 8808 | /* Second argument : lua function. */ |
| 8809 | ref = MAY_LJMP(hlua_checkfunction(L, 2)); |
| 8810 | |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 8811 | /* Check if the converter is already registered */ |
| 8812 | trash = get_trash_chunk(); |
| 8813 | chunk_printf(trash, "lua.%s", name); |
| 8814 | sc = find_sample_conv(trash->area, trash->data); |
| 8815 | if (sc != NULL) { |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 8816 | fcn = sc->private; |
| 8817 | if (fcn->function_ref[hlua_state_id] != -1) { |
| 8818 | ha_warning("Trying to register converter 'lua.%s' more than once. " |
| 8819 | "This will become a hard error in version 2.5.\n", name); |
| 8820 | } |
| 8821 | fcn->function_ref[hlua_state_id] = ref; |
| 8822 | return 0; |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 8823 | } |
| 8824 | |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 8825 | /* Allocate and fill the sample fetch keyword struct. */ |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 8826 | sck = calloc(1, sizeof(*sck) + sizeof(struct sample_conv) * 2); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 8827 | if (!sck) |
Christopher Faulet | aa22430 | 2021-04-12 14:08:21 +0200 | [diff] [blame] | 8828 | goto alloc_error; |
Thierry Fournier | 62a22aa | 2020-11-28 21:06:35 +0100 | [diff] [blame] | 8829 | fcn = new_hlua_function(); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 8830 | if (!fcn) |
Christopher Faulet | aa22430 | 2021-04-12 14:08:21 +0200 | [diff] [blame] | 8831 | goto alloc_error; |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 8832 | |
| 8833 | /* Fill fcn. */ |
| 8834 | fcn->name = strdup(name); |
| 8835 | if (!fcn->name) |
Christopher Faulet | aa22430 | 2021-04-12 14:08:21 +0200 | [diff] [blame] | 8836 | goto alloc_error; |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 8837 | fcn->function_ref[hlua_state_id] = ref; |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 8838 | |
| 8839 | /* List head */ |
| 8840 | sck->list.n = sck->list.p = NULL; |
| 8841 | |
| 8842 | /* converter keyword. */ |
| 8843 | len = strlen("lua.") + strlen(name) + 1; |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 8844 | sck->kw[0].kw = calloc(1, len); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 8845 | if (!sck->kw[0].kw) |
Christopher Faulet | aa22430 | 2021-04-12 14:08:21 +0200 | [diff] [blame] | 8846 | goto alloc_error; |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 8847 | |
| 8848 | snprintf((char *)sck->kw[0].kw, len, "lua.%s", name); |
| 8849 | sck->kw[0].process = hlua_sample_conv_wrapper; |
David Carlier | 0c437f4 | 2016-04-27 16:21:56 +0100 | [diff] [blame] | 8850 | 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] | 8851 | sck->kw[0].val_args = NULL; |
| 8852 | sck->kw[0].in_type = SMP_T_STR; |
| 8853 | sck->kw[0].out_type = SMP_T_STR; |
| 8854 | sck->kw[0].private = fcn; |
| 8855 | |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 8856 | /* Register this new converter */ |
| 8857 | sample_register_convs(sck); |
| 8858 | |
| 8859 | return 0; |
Christopher Faulet | aa22430 | 2021-04-12 14:08:21 +0200 | [diff] [blame] | 8860 | |
| 8861 | alloc_error: |
| 8862 | release_hlua_function(fcn); |
| 8863 | ha_free(&sck); |
| 8864 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
| 8865 | return 0; /* Never reached */ |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 8866 | } |
| 8867 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 8868 | /* This function is an LUA binding used for registering |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 8869 | * "sample-fetch" functions. It expects a converter name used |
| 8870 | * in the haproxy configuration file, and an LUA function. |
| 8871 | */ |
| 8872 | __LJMP static int hlua_register_fetches(lua_State *L) |
| 8873 | { |
| 8874 | const char *name; |
| 8875 | int ref; |
| 8876 | int len; |
| 8877 | struct sample_fetch_kw_list *sfk; |
Christopher Faulet | 2567f18 | 2021-04-12 14:11:50 +0200 | [diff] [blame] | 8878 | struct hlua_function *fcn = NULL; |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 8879 | struct sample_fetch *sf; |
| 8880 | struct buffer *trash; |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 8881 | |
| 8882 | MAY_LJMP(check_args(L, 2, "register_fetches")); |
| 8883 | |
| 8884 | /* First argument : sample-fetch name. */ |
| 8885 | name = MAY_LJMP(luaL_checkstring(L, 1)); |
| 8886 | |
| 8887 | /* Second argument : lua function. */ |
| 8888 | ref = MAY_LJMP(hlua_checkfunction(L, 2)); |
| 8889 | |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 8890 | /* Check if the sample-fetch is already registered */ |
| 8891 | trash = get_trash_chunk(); |
| 8892 | chunk_printf(trash, "lua.%s", name); |
| 8893 | sf = find_sample_fetch(trash->area, trash->data); |
| 8894 | if (sf != NULL) { |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 8895 | fcn = sf->private; |
| 8896 | if (fcn->function_ref[hlua_state_id] != -1) { |
| 8897 | ha_warning("Trying to register sample-fetch 'lua.%s' more than once. " |
| 8898 | "This will become a hard error in version 2.5.\n", name); |
| 8899 | } |
| 8900 | fcn->function_ref[hlua_state_id] = ref; |
| 8901 | return 0; |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 8902 | } |
| 8903 | |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 8904 | /* Allocate and fill the sample fetch keyword struct. */ |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 8905 | sfk = calloc(1, sizeof(*sfk) + sizeof(struct sample_fetch) * 2); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 8906 | if (!sfk) |
Christopher Faulet | 2567f18 | 2021-04-12 14:11:50 +0200 | [diff] [blame] | 8907 | goto alloc_error; |
Thierry Fournier | 62a22aa | 2020-11-28 21:06:35 +0100 | [diff] [blame] | 8908 | fcn = new_hlua_function(); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 8909 | if (!fcn) |
Christopher Faulet | 2567f18 | 2021-04-12 14:11:50 +0200 | [diff] [blame] | 8910 | goto alloc_error; |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 8911 | |
| 8912 | /* Fill fcn. */ |
| 8913 | fcn->name = strdup(name); |
| 8914 | if (!fcn->name) |
Christopher Faulet | 2567f18 | 2021-04-12 14:11:50 +0200 | [diff] [blame] | 8915 | goto alloc_error; |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 8916 | fcn->function_ref[hlua_state_id] = ref; |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 8917 | |
| 8918 | /* List head */ |
| 8919 | sfk->list.n = sfk->list.p = NULL; |
| 8920 | |
| 8921 | /* sample-fetch keyword. */ |
| 8922 | len = strlen("lua.") + strlen(name) + 1; |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 8923 | sfk->kw[0].kw = calloc(1, len); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 8924 | if (!sfk->kw[0].kw) |
Christopher Faulet | 2567f18 | 2021-04-12 14:11:50 +0200 | [diff] [blame] | 8925 | goto alloc_error; |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 8926 | |
| 8927 | snprintf((char *)sfk->kw[0].kw, len, "lua.%s", name); |
| 8928 | sfk->kw[0].process = hlua_sample_fetch_wrapper; |
David Carlier | 0c437f4 | 2016-04-27 16:21:56 +0100 | [diff] [blame] | 8929 | 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] | 8930 | sfk->kw[0].val_args = NULL; |
| 8931 | sfk->kw[0].out_type = SMP_T_STR; |
| 8932 | sfk->kw[0].use = SMP_USE_HTTP_ANY; |
| 8933 | sfk->kw[0].val = 0; |
| 8934 | sfk->kw[0].private = fcn; |
| 8935 | |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 8936 | /* Register this new fetch. */ |
| 8937 | sample_register_fetches(sfk); |
| 8938 | |
| 8939 | return 0; |
Christopher Faulet | 2567f18 | 2021-04-12 14:11:50 +0200 | [diff] [blame] | 8940 | |
| 8941 | alloc_error: |
| 8942 | release_hlua_function(fcn); |
| 8943 | ha_free(&sfk); |
| 8944 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
| 8945 | return 0; /* Never reached */ |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 8946 | } |
| 8947 | |
Christopher Faulet | 501465d | 2020-02-26 14:54:16 +0100 | [diff] [blame] | 8948 | /* This function is a lua binding to set the wake_time. |
Christopher Faulet | 2c2c2e3 | 2020-01-31 19:07:52 +0100 | [diff] [blame] | 8949 | */ |
Christopher Faulet | 501465d | 2020-02-26 14:54:16 +0100 | [diff] [blame] | 8950 | __LJMP static int hlua_set_wake_time(lua_State *L) |
Christopher Faulet | 2c2c2e3 | 2020-01-31 19:07:52 +0100 | [diff] [blame] | 8951 | { |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 8952 | struct hlua *hlua; |
Christopher Faulet | 2c2c2e3 | 2020-01-31 19:07:52 +0100 | [diff] [blame] | 8953 | unsigned int delay; |
| 8954 | unsigned int wakeup_ms; |
| 8955 | |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 8956 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 8957 | hlua = hlua_gethlua(L); |
| 8958 | if (!hlua) { |
| 8959 | return 0; |
| 8960 | } |
| 8961 | |
Christopher Faulet | 2c2c2e3 | 2020-01-31 19:07:52 +0100 | [diff] [blame] | 8962 | MAY_LJMP(check_args(L, 1, "wake_time")); |
| 8963 | |
| 8964 | delay = MAY_LJMP(luaL_checkinteger(L, 1)); |
| 8965 | wakeup_ms = tick_add(now_ms, delay); |
| 8966 | hlua->wake_time = wakeup_ms; |
| 8967 | return 0; |
| 8968 | } |
| 8969 | |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 8970 | /* This function is a wrapper to execute each LUA function declared as an action |
| 8971 | * wrapper during the initialisation period. This function may return any |
| 8972 | * ACT_RET_* value. On error ACT_RET_CONT is returned and the action is |
| 8973 | * ignored. If the lua action yields, ACT_RET_YIELD is returned. On success, the |
| 8974 | * return value is the first element on the stack. |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 8975 | */ |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 8976 | 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] | 8977 | struct session *sess, struct stream *s, int flags) |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 8978 | { |
| 8979 | char **arg; |
Christopher Faulet | 8c9e6bb | 2021-08-06 16:29:41 +0200 | [diff] [blame] | 8980 | unsigned int hflags = HLUA_TXN_ACT_CTX; |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 8981 | int dir, act_ret = ACT_RET_CONT; |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 8982 | const char *error; |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 8983 | |
| 8984 | switch (rule->from) { |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 8985 | case ACT_F_TCP_REQ_CNT: dir = SMP_OPT_DIR_REQ; break; |
| 8986 | case ACT_F_TCP_RES_CNT: dir = SMP_OPT_DIR_RES; break; |
| 8987 | case ACT_F_HTTP_REQ: dir = SMP_OPT_DIR_REQ; break; |
| 8988 | case ACT_F_HTTP_RES: dir = SMP_OPT_DIR_RES; break; |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 8989 | default: |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 8990 | SEND_ERR(px, "Lua: internal error while execute action.\n"); |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 8991 | goto end; |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 8992 | } |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 8993 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 8994 | /* In the execution wrappers linked with a stream, the |
Thierry FOURNIER | 05ac424 | 2015-02-27 18:37:27 +0100 | [diff] [blame] | 8995 | * Lua context can be not initialized. This behavior |
| 8996 | * permits to save performances because a systematic |
| 8997 | * Lua initialization cause 5% performances loss. |
| 8998 | */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 8999 | if (!s->hlua) { |
Christopher Faulet | 1e8433f | 2021-03-24 15:03:01 +0100 | [diff] [blame] | 9000 | struct hlua *hlua; |
| 9001 | |
| 9002 | hlua = pool_alloc(pool_head_hlua); |
| 9003 | if (!hlua) { |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 9004 | SEND_ERR(px, "Lua action '%s': can't initialize Lua context.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9005 | rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 9006 | goto end; |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 9007 | } |
Christopher Faulet | 1e8433f | 2021-03-24 15:03:01 +0100 | [diff] [blame] | 9008 | HLUA_INIT(hlua); |
| 9009 | s->hlua = hlua; |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 9010 | 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] | 9011 | SEND_ERR(px, "Lua action '%s': can't initialize Lua context.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9012 | rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 9013 | goto end; |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 9014 | } |
Thierry FOURNIER | 05ac424 | 2015-02-27 18:37:27 +0100 | [diff] [blame] | 9015 | } |
| 9016 | |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 9017 | /* If it is the first run, initialize the data for the call. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 9018 | if (!HLUA_IS_RUNNING(s->hlua)) { |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 9019 | |
| 9020 | /* The following Lua calls can fail. */ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 9021 | if (!SET_SAFE_LJMP(s->hlua)) { |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 9022 | if (lua_type(s->hlua->T, -1) == LUA_TSTRING) |
| 9023 | error = lua_tostring(s->hlua->T, -1); |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 9024 | else |
| 9025 | error = "critical error"; |
| 9026 | SEND_ERR(px, "Lua function '%s': %s.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9027 | rule->arg.hlua_rule->fcn->name, error); |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 9028 | goto end; |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 9029 | } |
| 9030 | |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 9031 | /* Check stack available size. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 9032 | if (!lua_checkstack(s->hlua->T, 1)) { |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 9033 | SEND_ERR(px, "Lua function '%s': full stack.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9034 | rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 9035 | RESET_SAFE_LJMP(s->hlua); |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 9036 | goto end; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 9037 | } |
| 9038 | |
| 9039 | /* Restore the function in the stack. */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 9040 | 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] | 9041 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 9042 | /* Create and and push object stream in the stack. */ |
Christopher Faulet | bfab2dd | 2019-07-26 15:09:53 +0200 | [diff] [blame] | 9043 | if (!hlua_txn_new(s->hlua->T, s, px, dir, hflags)) { |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 9044 | SEND_ERR(px, "Lua function '%s': full stack.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9045 | rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 9046 | RESET_SAFE_LJMP(s->hlua); |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 9047 | goto end; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 9048 | } |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 9049 | s->hlua->nargs = 1; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 9050 | |
| 9051 | /* push keywords in the stack. */ |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 9052 | for (arg = rule->arg.hlua_rule->args; arg && *arg; arg++) { |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 9053 | if (!lua_checkstack(s->hlua->T, 1)) { |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 9054 | SEND_ERR(px, "Lua function '%s': full stack.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9055 | rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 9056 | RESET_SAFE_LJMP(s->hlua); |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 9057 | goto end; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 9058 | } |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 9059 | lua_pushstring(s->hlua->T, *arg); |
| 9060 | s->hlua->nargs++; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 9061 | } |
| 9062 | |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 9063 | /* Now the execution is safe. */ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 9064 | RESET_SAFE_LJMP(s->hlua); |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 9065 | |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 9066 | /* We must initialize the execution timeouts. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 9067 | s->hlua->max_time = hlua_timeout_session; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 9068 | } |
| 9069 | |
| 9070 | /* Execute the function. */ |
Christopher Faulet | 105ba6c | 2019-12-18 14:41:51 +0100 | [diff] [blame] | 9071 | switch (hlua_ctx_resume(s->hlua, !(flags & ACT_OPT_FINAL))) { |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 9072 | /* finished. */ |
| 9073 | case HLUA_E_OK: |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 9074 | /* Catch the return value */ |
| 9075 | if (lua_gettop(s->hlua->T) > 0) |
| 9076 | act_ret = lua_tointeger(s->hlua->T, -1); |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 9077 | |
Christopher Faulet | 2c2c2e3 | 2020-01-31 19:07:52 +0100 | [diff] [blame] | 9078 | /* Set timeout in the required channel. */ |
Christopher Faulet | 498c483 | 2020-07-28 11:59:58 +0200 | [diff] [blame] | 9079 | if (act_ret == ACT_RET_YIELD) { |
| 9080 | if (flags & ACT_OPT_FINAL) |
| 9081 | goto err_yield; |
| 9082 | |
Christopher Faulet | 8f587ea | 2020-07-28 12:01:55 +0200 | [diff] [blame] | 9083 | if (dir == SMP_OPT_DIR_REQ) |
| 9084 | s->req.analyse_exp = tick_first((tick_is_expired(s->req.analyse_exp, now_ms) ? 0 : s->req.analyse_exp), |
| 9085 | s->hlua->wake_time); |
| 9086 | else |
| 9087 | s->res.analyse_exp = tick_first((tick_is_expired(s->res.analyse_exp, now_ms) ? 0 : s->res.analyse_exp), |
| 9088 | s->hlua->wake_time); |
Christopher Faulet | 2c2c2e3 | 2020-01-31 19:07:52 +0100 | [diff] [blame] | 9089 | } |
| 9090 | goto end; |
| 9091 | |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 9092 | /* yield. */ |
| 9093 | case HLUA_E_AGAIN: |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 9094 | /* Set timeout in the required channel. */ |
Christopher Faulet | 8f587ea | 2020-07-28 12:01:55 +0200 | [diff] [blame] | 9095 | if (dir == SMP_OPT_DIR_REQ) |
| 9096 | s->req.analyse_exp = tick_first((tick_is_expired(s->req.analyse_exp, now_ms) ? 0 : s->req.analyse_exp), |
| 9097 | s->hlua->wake_time); |
| 9098 | else |
| 9099 | s->res.analyse_exp = tick_first((tick_is_expired(s->res.analyse_exp, now_ms) ? 0 : s->res.analyse_exp), |
| 9100 | s->hlua->wake_time); |
| 9101 | |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 9102 | /* Some actions can be wake up when a "write" event |
| 9103 | * is detected on a response channel. This is useful |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 9104 | * only for actions targeted on the requests. |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 9105 | */ |
Christopher Faulet | 51fa358 | 2019-07-26 14:54:52 +0200 | [diff] [blame] | 9106 | if (HLUA_IS_WAKERESWR(s->hlua)) |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 9107 | s->res.flags |= CF_WAKE_WRITE; |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 9108 | if (HLUA_IS_WAKEREQWR(s->hlua)) |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 9109 | s->req.flags |= CF_WAKE_WRITE; |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 9110 | act_ret = ACT_RET_YIELD; |
| 9111 | goto end; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 9112 | |
| 9113 | /* finished with error. */ |
| 9114 | case HLUA_E_ERRMSG: |
| 9115 | /* Display log. */ |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 9116 | SEND_ERR(px, "Lua function '%s': %s.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9117 | rule->arg.hlua_rule->fcn->name, lua_tostring(s->hlua->T, -1)); |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 9118 | lua_pop(s->hlua->T, 1); |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 9119 | goto end; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 9120 | |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 9121 | case HLUA_E_ETMOUT: |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9122 | 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] | 9123 | goto end; |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 9124 | |
| 9125 | case HLUA_E_NOMEM: |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9126 | 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] | 9127 | goto end; |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 9128 | |
| 9129 | case HLUA_E_YIELD: |
Christopher Faulet | 498c483 | 2020-07-28 11:59:58 +0200 | [diff] [blame] | 9130 | err_yield: |
| 9131 | act_ret = ACT_RET_CONT; |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 9132 | 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] | 9133 | rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 9134 | goto end; |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 9135 | |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 9136 | case HLUA_E_ERR: |
| 9137 | /* Display log. */ |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 9138 | SEND_ERR(px, "Lua function '%s' return an unknown error.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9139 | rule->arg.hlua_rule->fcn->name); |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 9140 | |
| 9141 | default: |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 9142 | goto end; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 9143 | } |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 9144 | |
| 9145 | end: |
Christopher Faulet | 2361fd9 | 2020-07-30 10:40:58 +0200 | [diff] [blame] | 9146 | if (act_ret != ACT_RET_YIELD && s->hlua) |
Christopher Faulet | 8f587ea | 2020-07-28 12:01:55 +0200 | [diff] [blame] | 9147 | s->hlua->wake_time = TICK_ETERNITY; |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 9148 | return act_ret; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 9149 | } |
| 9150 | |
Willy Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 9151 | struct task *hlua_applet_wakeup(struct task *t, void *context, unsigned int state) |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9152 | { |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 9153 | struct appctx *ctx = context; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9154 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9155 | appctx_wakeup(ctx); |
Willy Tarreau | d958741 | 2017-08-23 16:07:33 +0200 | [diff] [blame] | 9156 | t->expire = TICK_ETERNITY; |
Willy Tarreau | d1aa41f | 2017-07-21 16:41:56 +0200 | [diff] [blame] | 9157 | return t; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9158 | } |
| 9159 | |
| 9160 | static int hlua_applet_tcp_init(struct appctx *ctx, struct proxy *px, struct stream *strm) |
| 9161 | { |
| 9162 | struct stream_interface *si = ctx->owner; |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 9163 | struct hlua *hlua; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9164 | struct task *task; |
| 9165 | char **arg; |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 9166 | const char *error; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9167 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 9168 | hlua = pool_alloc(pool_head_hlua); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 9169 | if (!hlua) { |
| 9170 | SEND_ERR(px, "Lua applet tcp '%s': out of memory.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9171 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 9172 | return 0; |
| 9173 | } |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9174 | HLUA_INIT(hlua); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 9175 | ctx->ctx.hlua_apptcp.hlua = hlua; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9176 | ctx->ctx.hlua_apptcp.flags = 0; |
| 9177 | |
| 9178 | /* Create task used by signal to wakeup applets. */ |
Willy Tarreau | beeabf5 | 2021-10-01 18:23:30 +0200 | [diff] [blame] | 9179 | task = task_new_here(); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9180 | if (!task) { |
| 9181 | SEND_ERR(px, "Lua applet tcp '%s': out of memory.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9182 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9183 | return 0; |
| 9184 | } |
| 9185 | task->nice = 0; |
| 9186 | task->context = ctx; |
| 9187 | task->process = hlua_applet_wakeup; |
| 9188 | ctx->ctx.hlua_apptcp.task = task; |
| 9189 | |
| 9190 | /* In the execution wrappers linked with a stream, the |
| 9191 | * Lua context can be not initialized. This behavior |
| 9192 | * permits to save performances because a systematic |
| 9193 | * Lua initialization cause 5% performances loss. |
| 9194 | */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 9195 | 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] | 9196 | 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] | 9197 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9198 | return 0; |
| 9199 | } |
| 9200 | |
| 9201 | /* Set timeout according with the applet configuration. */ |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 9202 | hlua->max_time = ctx->applet->timeout; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9203 | |
| 9204 | /* The following Lua calls can fail. */ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 9205 | if (!SET_SAFE_LJMP(hlua)) { |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 9206 | if (lua_type(hlua->T, -1) == LUA_TSTRING) |
| 9207 | error = lua_tostring(hlua->T, -1); |
| 9208 | else |
| 9209 | error = "critical error"; |
| 9210 | SEND_ERR(px, "Lua applet tcp '%s': %s.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9211 | ctx->rule->arg.hlua_rule->fcn->name, error); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9212 | return 0; |
| 9213 | } |
| 9214 | |
| 9215 | /* Check stack available size. */ |
| 9216 | if (!lua_checkstack(hlua->T, 1)) { |
| 9217 | SEND_ERR(px, "Lua applet tcp '%s': full stack.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9218 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 9219 | RESET_SAFE_LJMP(hlua); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9220 | return 0; |
| 9221 | } |
| 9222 | |
| 9223 | /* Restore the function in the stack. */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 9224 | 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] | 9225 | |
| 9226 | /* Create and and push object stream in the stack. */ |
| 9227 | if (!hlua_applet_tcp_new(hlua->T, ctx)) { |
| 9228 | SEND_ERR(px, "Lua applet tcp '%s': full stack.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9229 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 9230 | RESET_SAFE_LJMP(hlua); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9231 | return 0; |
| 9232 | } |
| 9233 | hlua->nargs = 1; |
| 9234 | |
| 9235 | /* push keywords in the stack. */ |
| 9236 | for (arg = ctx->rule->arg.hlua_rule->args; arg && *arg; arg++) { |
| 9237 | if (!lua_checkstack(hlua->T, 1)) { |
| 9238 | SEND_ERR(px, "Lua applet tcp '%s': full stack.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9239 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 9240 | RESET_SAFE_LJMP(hlua); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9241 | return 0; |
| 9242 | } |
| 9243 | lua_pushstring(hlua->T, *arg); |
| 9244 | hlua->nargs++; |
| 9245 | } |
| 9246 | |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 9247 | RESET_SAFE_LJMP(hlua); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9248 | |
| 9249 | /* Wakeup the applet ASAP. */ |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 9250 | si_cant_get(si); |
Willy Tarreau | 3367d41 | 2018-11-15 10:57:41 +0100 | [diff] [blame] | 9251 | si_rx_endp_more(si); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9252 | |
| 9253 | return 1; |
| 9254 | } |
| 9255 | |
Willy Tarreau | 60409db | 2019-08-21 14:14:50 +0200 | [diff] [blame] | 9256 | void hlua_applet_tcp_fct(struct appctx *ctx) |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9257 | { |
| 9258 | struct stream_interface *si = ctx->owner; |
| 9259 | struct stream *strm = si_strm(si); |
| 9260 | struct channel *res = si_ic(si); |
| 9261 | struct act_rule *rule = ctx->rule; |
| 9262 | struct proxy *px = strm->be; |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 9263 | struct hlua *hlua = ctx->ctx.hlua_apptcp.hlua; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9264 | |
| 9265 | /* The applet execution is already done. */ |
Olivier Houchard | 594c8c5 | 2018-08-28 14:41:31 +0200 | [diff] [blame] | 9266 | if (ctx->ctx.hlua_apptcp.flags & APPLET_DONE) { |
| 9267 | /* eat the whole request */ |
| 9268 | co_skip(si_oc(si), co_data(si_oc(si))); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9269 | return; |
Olivier Houchard | 594c8c5 | 2018-08-28 14:41:31 +0200 | [diff] [blame] | 9270 | } |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9271 | |
| 9272 | /* If the stream is disconnect or closed, ldo nothing. */ |
| 9273 | if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) |
| 9274 | return; |
| 9275 | |
| 9276 | /* Execute the function. */ |
| 9277 | switch (hlua_ctx_resume(hlua, 1)) { |
| 9278 | /* finished. */ |
| 9279 | case HLUA_E_OK: |
| 9280 | ctx->ctx.hlua_apptcp.flags |= APPLET_DONE; |
| 9281 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9282 | /* eat the whole request */ |
Willy Tarreau | a79021a | 2018-06-15 18:07:57 +0200 | [diff] [blame] | 9283 | co_skip(si_oc(si), co_data(si_oc(si))); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9284 | res->flags |= CF_READ_NULL; |
| 9285 | si_shutr(si); |
| 9286 | return; |
| 9287 | |
| 9288 | /* yield. */ |
| 9289 | case HLUA_E_AGAIN: |
Thierry Fournier | 0164f20 | 2016-02-20 17:47:43 +0100 | [diff] [blame] | 9290 | if (hlua->wake_time != TICK_ETERNITY) |
| 9291 | task_schedule(ctx->ctx.hlua_apptcp.task, hlua->wake_time); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9292 | return; |
| 9293 | |
| 9294 | /* finished with error. */ |
| 9295 | case HLUA_E_ERRMSG: |
| 9296 | /* Display log. */ |
| 9297 | SEND_ERR(px, "Lua applet tcp '%s': %s.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9298 | rule->arg.hlua_rule->fcn->name, lua_tostring(hlua->T, -1)); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9299 | lua_pop(hlua->T, 1); |
| 9300 | goto error; |
| 9301 | |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 9302 | case HLUA_E_ETMOUT: |
| 9303 | SEND_ERR(px, "Lua applet tcp '%s': execution timeout.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9304 | rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 9305 | goto error; |
| 9306 | |
| 9307 | case HLUA_E_NOMEM: |
| 9308 | SEND_ERR(px, "Lua applet tcp '%s': out of memory error.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9309 | rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 9310 | goto error; |
| 9311 | |
| 9312 | case HLUA_E_YIELD: /* unexpected */ |
| 9313 | SEND_ERR(px, "Lua applet tcp '%s': yield not allowed.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9314 | rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 9315 | goto error; |
| 9316 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9317 | case HLUA_E_ERR: |
| 9318 | /* Display log. */ |
| 9319 | SEND_ERR(px, "Lua applet tcp '%s' return an unknown error.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9320 | rule->arg.hlua_rule->fcn->name); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9321 | goto error; |
| 9322 | |
| 9323 | default: |
| 9324 | goto error; |
| 9325 | } |
| 9326 | |
| 9327 | error: |
| 9328 | |
| 9329 | /* For all other cases, just close the stream. */ |
| 9330 | si_shutw(si); |
| 9331 | si_shutr(si); |
| 9332 | ctx->ctx.hlua_apptcp.flags |= APPLET_DONE; |
| 9333 | } |
| 9334 | |
| 9335 | static void hlua_applet_tcp_release(struct appctx *ctx) |
| 9336 | { |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 9337 | task_destroy(ctx->ctx.hlua_apptcp.task); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9338 | ctx->ctx.hlua_apptcp.task = NULL; |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 9339 | hlua_ctx_destroy(ctx->ctx.hlua_apptcp.hlua); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 9340 | ctx->ctx.hlua_apptcp.hlua = NULL; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9341 | } |
| 9342 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9343 | /* The function returns 1 if the initialisation is complete, 0 if |
| 9344 | * an errors occurs and -1 if more data are required for initializing |
| 9345 | * the applet. |
| 9346 | */ |
| 9347 | static int hlua_applet_http_init(struct appctx *ctx, struct proxy *px, struct stream *strm) |
| 9348 | { |
| 9349 | struct stream_interface *si = ctx->owner; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9350 | struct http_txn *txn; |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 9351 | struct hlua *hlua; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9352 | char **arg; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9353 | struct task *task; |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 9354 | const char *error; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9355 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9356 | txn = strm->txn; |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 9357 | hlua = pool_alloc(pool_head_hlua); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 9358 | if (!hlua) { |
| 9359 | SEND_ERR(px, "Lua applet http '%s': out of memory.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9360 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 9361 | return 0; |
| 9362 | } |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9363 | HLUA_INIT(hlua); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 9364 | ctx->ctx.hlua_apphttp.hlua = hlua; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9365 | ctx->ctx.hlua_apphttp.left_bytes = -1; |
| 9366 | ctx->ctx.hlua_apphttp.flags = 0; |
| 9367 | |
Thierry FOURNIER | d93ea2b | 2015-12-20 19:14:52 +0100 | [diff] [blame] | 9368 | if (txn->req.flags & HTTP_MSGF_VER_11) |
| 9369 | ctx->ctx.hlua_apphttp.flags |= APPLET_HTTP11; |
| 9370 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9371 | /* Create task used by signal to wakeup applets. */ |
Willy Tarreau | beeabf5 | 2021-10-01 18:23:30 +0200 | [diff] [blame] | 9372 | task = task_new_here(); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9373 | if (!task) { |
| 9374 | SEND_ERR(px, "Lua applet http '%s': out of memory.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9375 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9376 | return 0; |
| 9377 | } |
| 9378 | task->nice = 0; |
| 9379 | task->context = ctx; |
| 9380 | task->process = hlua_applet_wakeup; |
| 9381 | ctx->ctx.hlua_apphttp.task = task; |
| 9382 | |
| 9383 | /* In the execution wrappers linked with a stream, the |
| 9384 | * Lua context can be not initialized. This behavior |
| 9385 | * permits to save performances because a systematic |
| 9386 | * Lua initialization cause 5% performances loss. |
| 9387 | */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 9388 | 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] | 9389 | 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] | 9390 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9391 | return 0; |
| 9392 | } |
| 9393 | |
| 9394 | /* Set timeout according with the applet configuration. */ |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 9395 | hlua->max_time = ctx->applet->timeout; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9396 | |
| 9397 | /* The following Lua calls can fail. */ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 9398 | if (!SET_SAFE_LJMP(hlua)) { |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 9399 | if (lua_type(hlua->T, -1) == LUA_TSTRING) |
| 9400 | error = lua_tostring(hlua->T, -1); |
| 9401 | else |
| 9402 | error = "critical error"; |
| 9403 | SEND_ERR(px, "Lua applet http '%s': %s.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9404 | ctx->rule->arg.hlua_rule->fcn->name, error); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9405 | return 0; |
| 9406 | } |
| 9407 | |
| 9408 | /* Check stack available size. */ |
| 9409 | if (!lua_checkstack(hlua->T, 1)) { |
| 9410 | SEND_ERR(px, "Lua applet http '%s': full stack.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9411 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 9412 | RESET_SAFE_LJMP(hlua); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9413 | return 0; |
| 9414 | } |
| 9415 | |
| 9416 | /* Restore the function in the stack. */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 9417 | 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] | 9418 | |
| 9419 | /* Create and and push object stream in the stack. */ |
| 9420 | if (!hlua_applet_http_new(hlua->T, ctx)) { |
| 9421 | SEND_ERR(px, "Lua applet http '%s': full stack.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9422 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 9423 | RESET_SAFE_LJMP(hlua); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9424 | return 0; |
| 9425 | } |
| 9426 | hlua->nargs = 1; |
| 9427 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9428 | /* push keywords in the stack. */ |
| 9429 | for (arg = ctx->rule->arg.hlua_rule->args; arg && *arg; arg++) { |
| 9430 | if (!lua_checkstack(hlua->T, 1)) { |
| 9431 | SEND_ERR(px, "Lua applet http '%s': full stack.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9432 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 9433 | RESET_SAFE_LJMP(hlua); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9434 | return 0; |
| 9435 | } |
| 9436 | lua_pushstring(hlua->T, *arg); |
| 9437 | hlua->nargs++; |
| 9438 | } |
| 9439 | |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 9440 | RESET_SAFE_LJMP(hlua); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9441 | |
| 9442 | /* Wakeup the applet when data is ready for read. */ |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 9443 | si_cant_get(si); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9444 | |
| 9445 | return 1; |
| 9446 | } |
| 9447 | |
Willy Tarreau | 60409db | 2019-08-21 14:14:50 +0200 | [diff] [blame] | 9448 | void hlua_applet_http_fct(struct appctx *ctx) |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 9449 | { |
| 9450 | struct stream_interface *si = ctx->owner; |
| 9451 | struct stream *strm = si_strm(si); |
| 9452 | struct channel *req = si_oc(si); |
| 9453 | struct channel *res = si_ic(si); |
| 9454 | struct act_rule *rule = ctx->rule; |
| 9455 | struct proxy *px = strm->be; |
| 9456 | struct hlua *hlua = ctx->ctx.hlua_apphttp.hlua; |
| 9457 | struct htx *req_htx, *res_htx; |
| 9458 | |
| 9459 | res_htx = htx_from_buf(&res->buf); |
| 9460 | |
| 9461 | /* If the stream is disconnect or closed, ldo nothing. */ |
| 9462 | if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) |
| 9463 | goto out; |
| 9464 | |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 9465 | /* Check if the input buffer is available. */ |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 9466 | if (!b_size(&res->buf)) { |
| 9467 | si_rx_room_blk(si); |
| 9468 | goto out; |
| 9469 | } |
| 9470 | /* check that the output is not closed */ |
Christopher Faulet | 56a3d6e | 2019-02-27 22:06:23 +0100 | [diff] [blame] | 9471 | if (res->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_SHUTR)) |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 9472 | ctx->ctx.hlua_apphttp.flags |= APPLET_DONE; |
| 9473 | |
| 9474 | /* Set the currently running flag. */ |
| 9475 | if (!HLUA_IS_RUNNING(hlua) && |
| 9476 | !(ctx->ctx.hlua_apphttp.flags & APPLET_DONE)) { |
Christopher Faulet | bd878d2 | 2021-04-28 10:50:21 +0200 | [diff] [blame] | 9477 | if (!co_data(req)) { |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 9478 | si_cant_get(si); |
| 9479 | goto out; |
| 9480 | } |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 9481 | } |
| 9482 | |
| 9483 | /* Executes The applet if it is not done. */ |
| 9484 | if (!(ctx->ctx.hlua_apphttp.flags & APPLET_DONE)) { |
| 9485 | |
| 9486 | /* Execute the function. */ |
| 9487 | switch (hlua_ctx_resume(hlua, 1)) { |
| 9488 | /* finished. */ |
| 9489 | case HLUA_E_OK: |
| 9490 | ctx->ctx.hlua_apphttp.flags |= APPLET_DONE; |
| 9491 | break; |
| 9492 | |
| 9493 | /* yield. */ |
| 9494 | case HLUA_E_AGAIN: |
| 9495 | if (hlua->wake_time != TICK_ETERNITY) |
| 9496 | task_schedule(ctx->ctx.hlua_apphttp.task, hlua->wake_time); |
Christopher Faulet | 56a3d6e | 2019-02-27 22:06:23 +0100 | [diff] [blame] | 9497 | goto out; |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 9498 | |
| 9499 | /* finished with error. */ |
| 9500 | case HLUA_E_ERRMSG: |
| 9501 | /* Display log. */ |
| 9502 | SEND_ERR(px, "Lua applet http '%s': %s.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9503 | rule->arg.hlua_rule->fcn->name, lua_tostring(hlua->T, -1)); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 9504 | lua_pop(hlua->T, 1); |
| 9505 | goto error; |
| 9506 | |
| 9507 | case HLUA_E_ETMOUT: |
| 9508 | SEND_ERR(px, "Lua applet http '%s': execution timeout.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9509 | rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 9510 | goto error; |
| 9511 | |
| 9512 | case HLUA_E_NOMEM: |
| 9513 | SEND_ERR(px, "Lua applet http '%s': out of memory error.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9514 | rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 9515 | goto error; |
| 9516 | |
| 9517 | case HLUA_E_YIELD: /* unexpected */ |
| 9518 | SEND_ERR(px, "Lua applet http '%s': yield not allowed.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9519 | rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 9520 | goto error; |
| 9521 | |
| 9522 | case HLUA_E_ERR: |
| 9523 | /* Display log. */ |
| 9524 | SEND_ERR(px, "Lua applet http '%s' return an unknown error.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9525 | rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 9526 | goto error; |
| 9527 | |
| 9528 | default: |
| 9529 | goto error; |
| 9530 | } |
| 9531 | } |
| 9532 | |
| 9533 | if (ctx->ctx.hlua_apphttp.flags & APPLET_DONE) { |
Christopher Faulet | 56a3d6e | 2019-02-27 22:06:23 +0100 | [diff] [blame] | 9534 | if (ctx->ctx.hlua_apphttp.flags & APPLET_RSP_SENT) |
| 9535 | goto done; |
| 9536 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 9537 | if (!(ctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT)) |
| 9538 | goto error; |
| 9539 | |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 9540 | /* no more data are expected. Don't add TLR because mux-h1 will take care of it */ |
| 9541 | res_htx->flags |= HTX_FL_EOM; |
Christopher Faulet | 56a3d6e | 2019-02-27 22:06:23 +0100 | [diff] [blame] | 9542 | strm->txn->status = ctx->ctx.hlua_apphttp.status; |
| 9543 | ctx->ctx.hlua_apphttp.flags |= APPLET_RSP_SENT; |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 9544 | } |
| 9545 | |
| 9546 | done: |
| 9547 | if (ctx->ctx.hlua_apphttp.flags & APPLET_DONE) { |
Christopher Faulet | 56a3d6e | 2019-02-27 22:06:23 +0100 | [diff] [blame] | 9548 | if (!(res->flags & CF_SHUTR)) { |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 9549 | res->flags |= CF_READ_NULL; |
Christopher Faulet | 56a3d6e | 2019-02-27 22:06:23 +0100 | [diff] [blame] | 9550 | si_shutr(si); |
| 9551 | } |
| 9552 | |
| 9553 | /* eat the whole request */ |
| 9554 | if (co_data(req)) { |
| 9555 | req_htx = htx_from_buf(&req->buf); |
| 9556 | co_htx_skip(req, req_htx, co_data(req)); |
| 9557 | htx_to_buf(req_htx, &req->buf); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 9558 | } |
| 9559 | } |
| 9560 | |
| 9561 | out: |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 9562 | htx_to_buf(res_htx, &res->buf); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 9563 | return; |
| 9564 | |
| 9565 | error: |
| 9566 | |
| 9567 | /* If we are in HTTP mode, and we are not send any |
| 9568 | * data, return a 500 server error in best effort: |
| 9569 | * if there is no room available in the buffer, |
| 9570 | * just close the connection. |
| 9571 | */ |
| 9572 | if (!(ctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT)) { |
Christopher Faulet | f734638 | 2019-07-17 22:02:08 +0200 | [diff] [blame] | 9573 | struct buffer *err = &http_err_chunks[HTTP_ERR_500]; |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 9574 | |
| 9575 | channel_erase(res); |
| 9576 | res->buf.data = b_data(err); |
| 9577 | memcpy(res->buf.area, b_head(err), b_data(err)); |
| 9578 | res_htx = htx_from_buf(&res->buf); |
Christopher Faulet | f6cce3f | 2019-02-27 21:20:09 +0100 | [diff] [blame] | 9579 | channel_add_input(res, res_htx->data); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 9580 | } |
| 9581 | if (!(strm->flags & SF_ERR_MASK)) |
| 9582 | strm->flags |= SF_ERR_RESOURCE; |
| 9583 | ctx->ctx.hlua_apphttp.flags |= APPLET_DONE; |
| 9584 | goto done; |
| 9585 | } |
| 9586 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9587 | static void hlua_applet_http_release(struct appctx *ctx) |
| 9588 | { |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 9589 | task_destroy(ctx->ctx.hlua_apphttp.task); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9590 | ctx->ctx.hlua_apphttp.task = NULL; |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 9591 | hlua_ctx_destroy(ctx->ctx.hlua_apphttp.hlua); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 9592 | ctx->ctx.hlua_apphttp.hlua = NULL; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9593 | } |
| 9594 | |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 9595 | /* global {tcp|http}-request parser. Return ACT_RET_PRS_OK in |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 9596 | * success case, else return ACT_RET_PRS_ERR. |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 9597 | * |
| 9598 | * This function can fail with an abort() due to an Lua critical error. |
| 9599 | * We are in the configuration parsing process of HAProxy, this abort() is |
| 9600 | * tolerated. |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 9601 | */ |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 9602 | static enum act_parse_ret action_register_lua(const char **args, int *cur_arg, struct proxy *px, |
| 9603 | struct act_rule *rule, char **err) |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 9604 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 9605 | struct hlua_function *fcn = rule->kw->private; |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 9606 | int i; |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 9607 | |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 9608 | /* Memory for the rule. */ |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 9609 | rule->arg.hlua_rule = calloc(1, sizeof(*rule->arg.hlua_rule)); |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 9610 | if (!rule->arg.hlua_rule) { |
| 9611 | memprintf(err, "out of memory error"); |
Christopher Faulet | 528526f | 2021-04-12 14:37:32 +0200 | [diff] [blame] | 9612 | goto error; |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 9613 | } |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 9614 | |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 9615 | /* Memory for arguments. */ |
Tim Duesterhus | e52b6e5 | 2020-09-12 20:26:43 +0200 | [diff] [blame] | 9616 | rule->arg.hlua_rule->args = calloc(fcn->nargs + 1, |
| 9617 | sizeof(*rule->arg.hlua_rule->args)); |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 9618 | if (!rule->arg.hlua_rule->args) { |
| 9619 | memprintf(err, "out of memory error"); |
Christopher Faulet | 528526f | 2021-04-12 14:37:32 +0200 | [diff] [blame] | 9620 | goto error; |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 9621 | } |
| 9622 | |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 9623 | /* Reference the Lua function and store the reference. */ |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9624 | rule->arg.hlua_rule->fcn = fcn; |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 9625 | |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 9626 | /* Expect some arguments */ |
| 9627 | for (i = 0; i < fcn->nargs; i++) { |
Thierry FOURNIER | 1725c2e | 2019-01-06 19:38:49 +0100 | [diff] [blame] | 9628 | if (*args[*cur_arg] == '\0') { |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 9629 | memprintf(err, "expect %d arguments", fcn->nargs); |
Christopher Faulet | 528526f | 2021-04-12 14:37:32 +0200 | [diff] [blame] | 9630 | goto error; |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 9631 | } |
Thierry FOURNIER | 1725c2e | 2019-01-06 19:38:49 +0100 | [diff] [blame] | 9632 | rule->arg.hlua_rule->args[i] = strdup(args[*cur_arg]); |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 9633 | if (!rule->arg.hlua_rule->args[i]) { |
| 9634 | memprintf(err, "out of memory error"); |
Christopher Faulet | 528526f | 2021-04-12 14:37:32 +0200 | [diff] [blame] | 9635 | goto error; |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 9636 | } |
| 9637 | (*cur_arg)++; |
| 9638 | } |
| 9639 | rule->arg.hlua_rule->args[i] = NULL; |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 9640 | |
Thierry FOURNIER | 4214873 | 2015-09-02 17:17:33 +0200 | [diff] [blame] | 9641 | rule->action = ACT_CUSTOM; |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 9642 | rule->action_ptr = hlua_action; |
Thierry FOURNIER | afa8049 | 2015-08-19 09:04:15 +0200 | [diff] [blame] | 9643 | return ACT_RET_PRS_OK; |
Christopher Faulet | 528526f | 2021-04-12 14:37:32 +0200 | [diff] [blame] | 9644 | |
| 9645 | error: |
| 9646 | if (rule->arg.hlua_rule) { |
| 9647 | if (rule->arg.hlua_rule->args) { |
| 9648 | for (i = 0; i < fcn->nargs; i++) |
| 9649 | ha_free(&rule->arg.hlua_rule->args[i]); |
| 9650 | ha_free(&rule->arg.hlua_rule->args); |
| 9651 | } |
| 9652 | ha_free(&rule->arg.hlua_rule); |
| 9653 | } |
| 9654 | return ACT_RET_PRS_ERR; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 9655 | } |
| 9656 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9657 | static enum act_parse_ret action_register_service_http(const char **args, int *cur_arg, struct proxy *px, |
| 9658 | struct act_rule *rule, char **err) |
| 9659 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 9660 | struct hlua_function *fcn = rule->kw->private; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9661 | |
Thierry FOURNIER | 718e2a7 | 2015-12-20 20:13:14 +0100 | [diff] [blame] | 9662 | /* HTTP applets are forbidden in tcp-request rules. |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 9663 | * HTTP applet request requires everything initialized by |
Thierry FOURNIER | 718e2a7 | 2015-12-20 20:13:14 +0100 | [diff] [blame] | 9664 | * "http_process_request" (analyzer flag AN_REQ_HTTP_INNER). |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 9665 | * The applet will be immediately initialized, but its before |
Thierry FOURNIER | 718e2a7 | 2015-12-20 20:13:14 +0100 | [diff] [blame] | 9666 | * the call of this analyzer. |
| 9667 | */ |
| 9668 | if (rule->from != ACT_F_HTTP_REQ) { |
| 9669 | memprintf(err, "HTTP applets are forbidden from 'tcp-request' rulesets"); |
| 9670 | return ACT_RET_PRS_ERR; |
| 9671 | } |
| 9672 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9673 | /* Memory for the rule. */ |
| 9674 | rule->arg.hlua_rule = calloc(1, sizeof(*rule->arg.hlua_rule)); |
| 9675 | if (!rule->arg.hlua_rule) { |
| 9676 | memprintf(err, "out of memory error"); |
| 9677 | return ACT_RET_PRS_ERR; |
| 9678 | } |
| 9679 | |
| 9680 | /* Reference the Lua function and store the reference. */ |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9681 | rule->arg.hlua_rule->fcn = fcn; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9682 | |
| 9683 | /* TODO: later accept arguments. */ |
| 9684 | rule->arg.hlua_rule->args = NULL; |
| 9685 | |
| 9686 | /* Add applet pointer in the rule. */ |
| 9687 | rule->applet.obj_type = OBJ_TYPE_APPLET; |
| 9688 | rule->applet.name = fcn->name; |
| 9689 | rule->applet.init = hlua_applet_http_init; |
| 9690 | rule->applet.fct = hlua_applet_http_fct; |
| 9691 | rule->applet.release = hlua_applet_http_release; |
| 9692 | rule->applet.timeout = hlua_timeout_applet; |
| 9693 | |
| 9694 | return ACT_RET_PRS_OK; |
| 9695 | } |
| 9696 | |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 9697 | /* This function is an LUA binding used for registering |
| 9698 | * "sample-conv" functions. It expects a converter name used |
| 9699 | * in the haproxy configuration file, and an LUA function. |
| 9700 | */ |
| 9701 | __LJMP static int hlua_register_action(lua_State *L) |
| 9702 | { |
Christopher Faulet | 4fc9da0 | 2021-04-12 15:08:12 +0200 | [diff] [blame] | 9703 | struct action_kw_list *akl = NULL; |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 9704 | const char *name; |
| 9705 | int ref; |
| 9706 | int len; |
Christopher Faulet | 4fc9da0 | 2021-04-12 15:08:12 +0200 | [diff] [blame] | 9707 | struct hlua_function *fcn = NULL; |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 9708 | int nargs; |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 9709 | struct buffer *trash; |
| 9710 | struct action_kw *akw; |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 9711 | |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 9712 | /* Initialise the number of expected arguments at 0. */ |
| 9713 | nargs = 0; |
| 9714 | |
| 9715 | if (lua_gettop(L) < 3 || lua_gettop(L) > 4) |
| 9716 | 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] | 9717 | |
| 9718 | /* First argument : converter name. */ |
| 9719 | name = MAY_LJMP(luaL_checkstring(L, 1)); |
| 9720 | |
| 9721 | /* Second argument : environment. */ |
| 9722 | if (lua_type(L, 2) != LUA_TTABLE) |
| 9723 | WILL_LJMP(luaL_error(L, "register_action: second argument must be a table of strings")); |
| 9724 | |
| 9725 | /* Third argument : lua function. */ |
| 9726 | ref = MAY_LJMP(hlua_checkfunction(L, 3)); |
| 9727 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 9728 | /* 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] | 9729 | if (lua_gettop(L) >= 4) |
| 9730 | nargs = MAY_LJMP(luaL_checkinteger(L, 4)); |
| 9731 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 9732 | /* browse the second argument as an array. */ |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 9733 | lua_pushnil(L); |
| 9734 | while (lua_next(L, 2) != 0) { |
| 9735 | if (lua_type(L, -1) != LUA_TSTRING) |
| 9736 | WILL_LJMP(luaL_error(L, "register_action: second argument must be a table of strings")); |
| 9737 | |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 9738 | /* Check if action exists */ |
| 9739 | trash = get_trash_chunk(); |
| 9740 | chunk_printf(trash, "lua.%s", name); |
| 9741 | if (strcmp(lua_tostring(L, -1), "tcp-req") == 0) { |
| 9742 | akw = tcp_req_cont_action(trash->area); |
| 9743 | } else if (strcmp(lua_tostring(L, -1), "tcp-res") == 0) { |
| 9744 | akw = tcp_res_cont_action(trash->area); |
| 9745 | } else if (strcmp(lua_tostring(L, -1), "http-req") == 0) { |
| 9746 | akw = action_http_req_custom(trash->area); |
| 9747 | } else if (strcmp(lua_tostring(L, -1), "http-res") == 0) { |
| 9748 | akw = action_http_res_custom(trash->area); |
| 9749 | } else { |
| 9750 | akw = NULL; |
| 9751 | } |
| 9752 | if (akw != NULL) { |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 9753 | fcn = akw->private; |
| 9754 | if (fcn->function_ref[hlua_state_id] != -1) { |
| 9755 | ha_warning("Trying to register action 'lua.%s' more than once. " |
| 9756 | "This will become a hard error in version 2.5.\n", name); |
| 9757 | } |
| 9758 | fcn->function_ref[hlua_state_id] = ref; |
| 9759 | |
| 9760 | /* pop the environment string. */ |
| 9761 | lua_pop(L, 1); |
| 9762 | continue; |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 9763 | } |
| 9764 | |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 9765 | /* Check required environment. Only accepted "http" or "tcp". */ |
| 9766 | /* Allocate and fill the sample fetch keyword struct. */ |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 9767 | akl = calloc(1, sizeof(*akl) + sizeof(struct action_kw) * 2); |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 9768 | if (!akl) |
Christopher Faulet | 4fc9da0 | 2021-04-12 15:08:12 +0200 | [diff] [blame] | 9769 | goto alloc_error;; |
Thierry Fournier | 62a22aa | 2020-11-28 21:06:35 +0100 | [diff] [blame] | 9770 | fcn = new_hlua_function(); |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 9771 | if (!fcn) |
Christopher Faulet | 4fc9da0 | 2021-04-12 15:08:12 +0200 | [diff] [blame] | 9772 | goto alloc_error; |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 9773 | |
| 9774 | /* Fill fcn. */ |
| 9775 | fcn->name = strdup(name); |
| 9776 | if (!fcn->name) |
Christopher Faulet | 4fc9da0 | 2021-04-12 15:08:12 +0200 | [diff] [blame] | 9777 | goto alloc_error; |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 9778 | fcn->function_ref[hlua_state_id] = ref; |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 9779 | |
Thayne McCombs | 8f0cc5c | 2021-01-07 21:35:52 -0700 | [diff] [blame] | 9780 | /* Set the expected number of arguments. */ |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 9781 | fcn->nargs = nargs; |
| 9782 | |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 9783 | /* List head */ |
| 9784 | akl->list.n = akl->list.p = NULL; |
| 9785 | |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 9786 | /* action keyword. */ |
| 9787 | len = strlen("lua.") + strlen(name) + 1; |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 9788 | akl->kw[0].kw = calloc(1, len); |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 9789 | if (!akl->kw[0].kw) |
Christopher Faulet | 4fc9da0 | 2021-04-12 15:08:12 +0200 | [diff] [blame] | 9790 | goto alloc_error; |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 9791 | |
| 9792 | snprintf((char *)akl->kw[0].kw, len, "lua.%s", name); |
| 9793 | |
Amaury Denoyelle | e4a617c | 2021-05-06 15:33:09 +0200 | [diff] [blame] | 9794 | akl->kw[0].flags = 0; |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 9795 | akl->kw[0].private = fcn; |
| 9796 | akl->kw[0].parse = action_register_lua; |
| 9797 | |
| 9798 | /* select the action registering point. */ |
| 9799 | if (strcmp(lua_tostring(L, -1), "tcp-req") == 0) |
| 9800 | tcp_req_cont_keywords_register(akl); |
| 9801 | else if (strcmp(lua_tostring(L, -1), "tcp-res") == 0) |
| 9802 | tcp_res_cont_keywords_register(akl); |
| 9803 | else if (strcmp(lua_tostring(L, -1), "http-req") == 0) |
| 9804 | http_req_keywords_register(akl); |
| 9805 | else if (strcmp(lua_tostring(L, -1), "http-res") == 0) |
| 9806 | http_res_keywords_register(akl); |
Christopher Faulet | 4fc9da0 | 2021-04-12 15:08:12 +0200 | [diff] [blame] | 9807 | else { |
| 9808 | release_hlua_function(fcn); |
| 9809 | if (akl) |
| 9810 | ha_free((char **)&(akl->kw[0].kw)); |
| 9811 | ha_free(&akl); |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 9812 | WILL_LJMP(luaL_error(L, "Lua action environment '%s' is unknown. " |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 9813 | "'tcp-req', 'tcp-res', 'http-req' or 'http-res' " |
| 9814 | "are expected.", lua_tostring(L, -1))); |
Christopher Faulet | 4fc9da0 | 2021-04-12 15:08:12 +0200 | [diff] [blame] | 9815 | } |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 9816 | |
| 9817 | /* pop the environment string. */ |
| 9818 | lua_pop(L, 1); |
Christopher Faulet | 4fc9da0 | 2021-04-12 15:08:12 +0200 | [diff] [blame] | 9819 | |
| 9820 | /* reset for next loop */ |
| 9821 | akl = NULL; |
| 9822 | fcn = NULL; |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 9823 | } |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9824 | return ACT_RET_PRS_OK; |
Christopher Faulet | 4fc9da0 | 2021-04-12 15:08:12 +0200 | [diff] [blame] | 9825 | |
| 9826 | alloc_error: |
| 9827 | release_hlua_function(fcn); |
| 9828 | ha_free(&akl); |
| 9829 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
| 9830 | return 0; /* Never reached */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9831 | } |
| 9832 | |
| 9833 | static enum act_parse_ret action_register_service_tcp(const char **args, int *cur_arg, struct proxy *px, |
| 9834 | struct act_rule *rule, char **err) |
| 9835 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 9836 | struct hlua_function *fcn = rule->kw->private; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9837 | |
Christopher Faulet | 280f85b | 2019-07-15 15:02:04 +0200 | [diff] [blame] | 9838 | if (px->mode == PR_MODE_HTTP) { |
| 9839 | memprintf(err, "Lua TCP services cannot be used on HTTP proxies"); |
Christopher Faulet | afd8f10 | 2018-11-08 11:34:21 +0100 | [diff] [blame] | 9840 | return ACT_RET_PRS_ERR; |
| 9841 | } |
| 9842 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9843 | /* Memory for the rule. */ |
| 9844 | rule->arg.hlua_rule = calloc(1, sizeof(*rule->arg.hlua_rule)); |
| 9845 | if (!rule->arg.hlua_rule) { |
| 9846 | memprintf(err, "out of memory error"); |
| 9847 | return ACT_RET_PRS_ERR; |
| 9848 | } |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 9849 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9850 | /* Reference the Lua function and store the reference. */ |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 9851 | rule->arg.hlua_rule->fcn = fcn; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9852 | |
| 9853 | /* TODO: later accept arguments. */ |
| 9854 | rule->arg.hlua_rule->args = NULL; |
| 9855 | |
| 9856 | /* Add applet pointer in the rule. */ |
| 9857 | rule->applet.obj_type = OBJ_TYPE_APPLET; |
| 9858 | rule->applet.name = fcn->name; |
| 9859 | rule->applet.init = hlua_applet_tcp_init; |
| 9860 | rule->applet.fct = hlua_applet_tcp_fct; |
| 9861 | rule->applet.release = hlua_applet_tcp_release; |
| 9862 | rule->applet.timeout = hlua_timeout_applet; |
| 9863 | |
| 9864 | return 0; |
| 9865 | } |
| 9866 | |
| 9867 | /* This function is an LUA binding used for registering |
| 9868 | * "sample-conv" functions. It expects a converter name used |
| 9869 | * in the haproxy configuration file, and an LUA function. |
| 9870 | */ |
| 9871 | __LJMP static int hlua_register_service(lua_State *L) |
| 9872 | { |
| 9873 | struct action_kw_list *akl; |
| 9874 | const char *name; |
| 9875 | const char *env; |
| 9876 | int ref; |
| 9877 | int len; |
Christopher Faulet | 5c028d7 | 2021-04-12 15:11:44 +0200 | [diff] [blame] | 9878 | struct hlua_function *fcn = NULL; |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 9879 | struct buffer *trash; |
| 9880 | struct action_kw *akw; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9881 | |
| 9882 | MAY_LJMP(check_args(L, 3, "register_service")); |
| 9883 | |
| 9884 | /* First argument : converter name. */ |
| 9885 | name = MAY_LJMP(luaL_checkstring(L, 1)); |
| 9886 | |
| 9887 | /* Second argument : environment. */ |
| 9888 | env = MAY_LJMP(luaL_checkstring(L, 2)); |
| 9889 | |
| 9890 | /* Third argument : lua function. */ |
| 9891 | ref = MAY_LJMP(hlua_checkfunction(L, 3)); |
| 9892 | |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 9893 | /* Check for service already registered */ |
| 9894 | trash = get_trash_chunk(); |
| 9895 | chunk_printf(trash, "lua.%s", name); |
| 9896 | akw = service_find(trash->area); |
| 9897 | if (akw != NULL) { |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 9898 | fcn = akw->private; |
| 9899 | if (fcn->function_ref[hlua_state_id] != -1) { |
| 9900 | ha_warning("Trying to register service 'lua.%s' more than once. " |
| 9901 | "This will become a hard error in version 2.5.\n", name); |
| 9902 | } |
| 9903 | fcn->function_ref[hlua_state_id] = ref; |
| 9904 | return 0; |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 9905 | } |
| 9906 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9907 | /* Allocate and fill the sample fetch keyword struct. */ |
| 9908 | akl = calloc(1, sizeof(*akl) + sizeof(struct action_kw) * 2); |
| 9909 | if (!akl) |
Christopher Faulet | 5c028d7 | 2021-04-12 15:11:44 +0200 | [diff] [blame] | 9910 | goto alloc_error; |
Thierry Fournier | 62a22aa | 2020-11-28 21:06:35 +0100 | [diff] [blame] | 9911 | fcn = new_hlua_function(); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9912 | if (!fcn) |
Christopher Faulet | 5c028d7 | 2021-04-12 15:11:44 +0200 | [diff] [blame] | 9913 | goto alloc_error; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9914 | |
| 9915 | /* Fill fcn. */ |
| 9916 | len = strlen("<lua.>") + strlen(name) + 1; |
| 9917 | fcn->name = calloc(1, len); |
| 9918 | if (!fcn->name) |
Christopher Faulet | 5c028d7 | 2021-04-12 15:11:44 +0200 | [diff] [blame] | 9919 | goto alloc_error; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9920 | snprintf((char *)fcn->name, len, "<lua.%s>", name); |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 9921 | fcn->function_ref[hlua_state_id] = ref; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9922 | |
| 9923 | /* List head */ |
| 9924 | akl->list.n = akl->list.p = NULL; |
| 9925 | |
| 9926 | /* converter keyword. */ |
| 9927 | len = strlen("lua.") + strlen(name) + 1; |
| 9928 | akl->kw[0].kw = calloc(1, len); |
| 9929 | if (!akl->kw[0].kw) |
Christopher Faulet | 5c028d7 | 2021-04-12 15:11:44 +0200 | [diff] [blame] | 9930 | goto alloc_error; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9931 | |
| 9932 | snprintf((char *)akl->kw[0].kw, len, "lua.%s", name); |
| 9933 | |
Thierry FOURNIER / OZON.IO | 02564fd | 2016-11-12 11:07:05 +0100 | [diff] [blame] | 9934 | /* Check required environment. Only accepted "http" or "tcp". */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9935 | if (strcmp(env, "tcp") == 0) |
| 9936 | akl->kw[0].parse = action_register_service_tcp; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9937 | else if (strcmp(env, "http") == 0) |
| 9938 | akl->kw[0].parse = action_register_service_http; |
Christopher Faulet | 5c028d7 | 2021-04-12 15:11:44 +0200 | [diff] [blame] | 9939 | else { |
| 9940 | release_hlua_function(fcn); |
| 9941 | if (akl) |
| 9942 | ha_free((char **)&(akl->kw[0].kw)); |
| 9943 | ha_free(&akl); |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 9944 | WILL_LJMP(luaL_error(L, "Lua service environment '%s' is unknown. " |
Eric Salama | fe7456f | 2017-12-21 14:30:07 +0100 | [diff] [blame] | 9945 | "'tcp' or 'http' are expected.", env)); |
Christopher Faulet | 5c028d7 | 2021-04-12 15:11:44 +0200 | [diff] [blame] | 9946 | } |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9947 | |
Amaury Denoyelle | e4a617c | 2021-05-06 15:33:09 +0200 | [diff] [blame] | 9948 | akl->kw[0].flags = 0; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9949 | akl->kw[0].private = fcn; |
| 9950 | |
| 9951 | /* End of array. */ |
| 9952 | memset(&akl->kw[1], 0, sizeof(*akl->kw)); |
| 9953 | |
| 9954 | /* Register this new converter */ |
| 9955 | service_keywords_register(akl); |
| 9956 | |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 9957 | return 0; |
Christopher Faulet | 5c028d7 | 2021-04-12 15:11:44 +0200 | [diff] [blame] | 9958 | |
| 9959 | alloc_error: |
| 9960 | release_hlua_function(fcn); |
| 9961 | ha_free(&akl); |
| 9962 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
| 9963 | return 0; /* Never reached */ |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 9964 | } |
| 9965 | |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 9966 | /* This function initialises Lua cli handler. It copies the |
| 9967 | * arguments in the Lua stack and create channel IO objects. |
| 9968 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 9969 | 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] | 9970 | { |
| 9971 | struct hlua *hlua; |
| 9972 | struct hlua_function *fcn; |
| 9973 | int i; |
| 9974 | const char *error; |
| 9975 | |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 9976 | fcn = private; |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 9977 | appctx->ctx.hlua_cli.fcn = private; |
| 9978 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 9979 | hlua = pool_alloc(pool_head_hlua); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 9980 | if (!hlua) { |
| 9981 | SEND_ERR(NULL, "Lua cli '%s': out of memory.\n", fcn->name); |
Thierry FOURNIER | 1be3415 | 2016-12-17 12:09:51 +0100 | [diff] [blame] | 9982 | return 1; |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 9983 | } |
| 9984 | HLUA_INIT(hlua); |
| 9985 | appctx->ctx.hlua_cli.hlua = hlua; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 9986 | |
| 9987 | /* Create task used by signal to wakeup applets. |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 9988 | * 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] | 9989 | * applet_http. It is absolutely compatible. |
| 9990 | */ |
Willy Tarreau | beeabf5 | 2021-10-01 18:23:30 +0200 | [diff] [blame] | 9991 | appctx->ctx.hlua_cli.task = task_new_here(); |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 9992 | if (!appctx->ctx.hlua_cli.task) { |
Thierry FOURNIER | ffbf569 | 2016-12-16 11:14:06 +0100 | [diff] [blame] | 9993 | SEND_ERR(NULL, "Lua cli '%s': out of memory.\n", fcn->name); |
Thierry FOURNIER | 1be3415 | 2016-12-17 12:09:51 +0100 | [diff] [blame] | 9994 | goto error; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 9995 | } |
| 9996 | appctx->ctx.hlua_cli.task->nice = 0; |
| 9997 | appctx->ctx.hlua_cli.task->context = appctx; |
| 9998 | appctx->ctx.hlua_cli.task->process = hlua_applet_wakeup; |
| 9999 | |
| 10000 | /* Initialises the Lua context */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 10001 | 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] | 10002 | 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] | 10003 | goto error; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 10004 | } |
| 10005 | |
| 10006 | /* The following Lua calls can fail. */ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 10007 | if (!SET_SAFE_LJMP(hlua)) { |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 10008 | if (lua_type(hlua->T, -1) == LUA_TSTRING) |
| 10009 | error = lua_tostring(hlua->T, -1); |
| 10010 | else |
| 10011 | error = "critical error"; |
| 10012 | SEND_ERR(NULL, "Lua cli '%s': %s.\n", fcn->name, error); |
| 10013 | goto error; |
| 10014 | } |
| 10015 | |
| 10016 | /* Check stack available size. */ |
| 10017 | if (!lua_checkstack(hlua->T, 2)) { |
| 10018 | SEND_ERR(NULL, "Lua cli '%s': full stack.\n", fcn->name); |
| 10019 | goto error; |
| 10020 | } |
| 10021 | |
| 10022 | /* Restore the function in the stack. */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 10023 | 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] | 10024 | |
| 10025 | /* Once the arguments parsed, the CLI is like an AppletTCP, |
| 10026 | * so push AppletTCP in the stack. |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 10027 | */ |
| 10028 | if (!hlua_applet_tcp_new(hlua->T, appctx)) { |
| 10029 | SEND_ERR(NULL, "Lua cli '%s': full stack.\n", fcn->name); |
| 10030 | goto error; |
| 10031 | } |
| 10032 | hlua->nargs = 1; |
| 10033 | |
| 10034 | /* push keywords in the stack. */ |
| 10035 | for (i = 0; *args[i]; i++) { |
| 10036 | /* Check stack available size. */ |
| 10037 | if (!lua_checkstack(hlua->T, 1)) { |
| 10038 | SEND_ERR(NULL, "Lua cli '%s': full stack.\n", fcn->name); |
| 10039 | goto error; |
| 10040 | } |
| 10041 | lua_pushstring(hlua->T, args[i]); |
| 10042 | hlua->nargs++; |
| 10043 | } |
| 10044 | |
| 10045 | /* We must initialize the execution timeouts. */ |
| 10046 | hlua->max_time = hlua_timeout_session; |
| 10047 | |
| 10048 | /* At this point the execution is safe. */ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 10049 | RESET_SAFE_LJMP(hlua); |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 10050 | |
| 10051 | /* It's ok */ |
| 10052 | return 0; |
| 10053 | |
| 10054 | /* It's not ok. */ |
| 10055 | error: |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 10056 | RESET_SAFE_LJMP(hlua); |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 10057 | hlua_ctx_destroy(hlua); |
Thierry FOURNIER | 1be3415 | 2016-12-17 12:09:51 +0100 | [diff] [blame] | 10058 | appctx->ctx.hlua_cli.hlua = NULL; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 10059 | return 1; |
| 10060 | } |
| 10061 | |
| 10062 | static int hlua_cli_io_handler_fct(struct appctx *appctx) |
| 10063 | { |
| 10064 | struct hlua *hlua; |
| 10065 | struct stream_interface *si; |
| 10066 | struct hlua_function *fcn; |
| 10067 | |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 10068 | hlua = appctx->ctx.hlua_cli.hlua; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 10069 | si = appctx->owner; |
Willy Tarreau | 8ae4f75 | 2016-12-14 15:41:45 +0100 | [diff] [blame] | 10070 | fcn = appctx->ctx.hlua_cli.fcn; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 10071 | |
| 10072 | /* If the stream is disconnect or closed, ldo nothing. */ |
| 10073 | if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) |
| 10074 | return 1; |
| 10075 | |
| 10076 | /* Execute the function. */ |
| 10077 | switch (hlua_ctx_resume(hlua, 1)) { |
| 10078 | |
| 10079 | /* finished. */ |
| 10080 | case HLUA_E_OK: |
| 10081 | return 1; |
| 10082 | |
| 10083 | /* yield. */ |
| 10084 | case HLUA_E_AGAIN: |
| 10085 | /* We want write. */ |
| 10086 | if (HLUA_IS_WAKERESWR(hlua)) |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 10087 | si_rx_room_blk(si); |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 10088 | /* Set the timeout. */ |
| 10089 | if (hlua->wake_time != TICK_ETERNITY) |
| 10090 | task_schedule(hlua->task, hlua->wake_time); |
| 10091 | return 0; |
| 10092 | |
| 10093 | /* finished with error. */ |
| 10094 | case HLUA_E_ERRMSG: |
| 10095 | /* Display log. */ |
| 10096 | SEND_ERR(NULL, "Lua cli '%s': %s.\n", |
| 10097 | fcn->name, lua_tostring(hlua->T, -1)); |
| 10098 | lua_pop(hlua->T, 1); |
| 10099 | return 1; |
| 10100 | |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 10101 | case HLUA_E_ETMOUT: |
| 10102 | SEND_ERR(NULL, "Lua converter '%s': execution timeout.\n", |
| 10103 | fcn->name); |
| 10104 | return 1; |
| 10105 | |
| 10106 | case HLUA_E_NOMEM: |
| 10107 | SEND_ERR(NULL, "Lua converter '%s': out of memory error.\n", |
| 10108 | fcn->name); |
| 10109 | return 1; |
| 10110 | |
| 10111 | case HLUA_E_YIELD: /* unexpected */ |
| 10112 | SEND_ERR(NULL, "Lua converter '%s': yield not allowed.\n", |
| 10113 | fcn->name); |
| 10114 | return 1; |
| 10115 | |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 10116 | case HLUA_E_ERR: |
| 10117 | /* Display log. */ |
| 10118 | SEND_ERR(NULL, "Lua cli '%s' return an unknown error.\n", |
| 10119 | fcn->name); |
| 10120 | return 1; |
| 10121 | |
| 10122 | default: |
| 10123 | return 1; |
| 10124 | } |
| 10125 | |
| 10126 | return 1; |
| 10127 | } |
| 10128 | |
| 10129 | static void hlua_cli_io_release_fct(struct appctx *appctx) |
| 10130 | { |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 10131 | hlua_ctx_destroy(appctx->ctx.hlua_cli.hlua); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 10132 | appctx->ctx.hlua_cli.hlua = NULL; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 10133 | } |
| 10134 | |
| 10135 | /* This function is an LUA binding used for registering |
| 10136 | * new keywords in the cli. It expects a list of keywords |
| 10137 | * which are the "path". It is limited to 5 keywords. A |
| 10138 | * description of the command, a function to be executed |
| 10139 | * for the parsing and a function for io handlers. |
| 10140 | */ |
| 10141 | __LJMP static int hlua_register_cli(lua_State *L) |
| 10142 | { |
| 10143 | struct cli_kw_list *cli_kws; |
| 10144 | const char *message; |
| 10145 | int ref_io; |
| 10146 | int len; |
Christopher Faulet | 3a9a12b | 2021-04-12 15:31:29 +0200 | [diff] [blame] | 10147 | struct hlua_function *fcn = NULL; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 10148 | int index; |
| 10149 | int i; |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 10150 | struct buffer *trash; |
| 10151 | const char *kw[5]; |
| 10152 | struct cli_kw *cli_kw; |
Christopher Faulet | 3a9a12b | 2021-04-12 15:31:29 +0200 | [diff] [blame] | 10153 | const char *errmsg; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 10154 | |
| 10155 | MAY_LJMP(check_args(L, 3, "register_cli")); |
| 10156 | |
| 10157 | /* First argument : an array of maximum 5 keywords. */ |
| 10158 | if (!lua_istable(L, 1)) |
| 10159 | WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table")); |
| 10160 | |
| 10161 | /* Second argument : string with contextual message. */ |
| 10162 | message = MAY_LJMP(luaL_checkstring(L, 2)); |
| 10163 | |
| 10164 | /* Third and fourth argument : lua function. */ |
| 10165 | ref_io = MAY_LJMP(hlua_checkfunction(L, 3)); |
| 10166 | |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 10167 | /* Check for CLI service already registered */ |
| 10168 | trash = get_trash_chunk(); |
| 10169 | index = 0; |
| 10170 | lua_pushnil(L); |
| 10171 | memset(kw, 0, sizeof(kw)); |
| 10172 | while (lua_next(L, 1) != 0) { |
| 10173 | if (index >= CLI_PREFIX_KW_NB) |
| 10174 | WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table with a maximum of 5 entries")); |
| 10175 | if (lua_type(L, -1) != LUA_TSTRING) |
| 10176 | WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table filled with strings")); |
| 10177 | kw[index] = lua_tostring(L, -1); |
| 10178 | if (index == 0) |
| 10179 | chunk_printf(trash, "%s", kw[index]); |
| 10180 | else |
| 10181 | chunk_appendf(trash, " %s", kw[index]); |
| 10182 | index++; |
| 10183 | lua_pop(L, 1); |
| 10184 | } |
| 10185 | cli_kw = cli_find_kw_exact((char **)kw); |
| 10186 | if (cli_kw != NULL) { |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 10187 | fcn = cli_kw->private; |
| 10188 | if (fcn->function_ref[hlua_state_id] != -1) { |
| 10189 | ha_warning("Trying to register CLI keyword 'lua.%s' more than once. " |
| 10190 | "This will become a hard error in version 2.5.\n", trash->area); |
| 10191 | } |
| 10192 | fcn->function_ref[hlua_state_id] = ref_io; |
| 10193 | return 0; |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 10194 | } |
| 10195 | |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 10196 | /* Allocate and fill the sample fetch keyword struct. */ |
| 10197 | cli_kws = calloc(1, sizeof(*cli_kws) + sizeof(struct cli_kw) * 2); |
Christopher Faulet | 3a9a12b | 2021-04-12 15:31:29 +0200 | [diff] [blame] | 10198 | if (!cli_kws) { |
| 10199 | errmsg = "Lua out of memory error."; |
| 10200 | goto error; |
| 10201 | } |
Thierry Fournier | 62a22aa | 2020-11-28 21:06:35 +0100 | [diff] [blame] | 10202 | fcn = new_hlua_function(); |
Christopher Faulet | 3a9a12b | 2021-04-12 15:31:29 +0200 | [diff] [blame] | 10203 | if (!fcn) { |
| 10204 | errmsg = "Lua out of memory error."; |
| 10205 | goto error; |
| 10206 | } |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 10207 | |
| 10208 | /* Fill path. */ |
| 10209 | index = 0; |
| 10210 | lua_pushnil(L); |
| 10211 | while(lua_next(L, 1) != 0) { |
Christopher Faulet | 3a9a12b | 2021-04-12 15:31:29 +0200 | [diff] [blame] | 10212 | if (index >= 5) { |
| 10213 | errmsg = "1st argument must be a table with a maximum of 5 entries"; |
| 10214 | goto error; |
| 10215 | } |
| 10216 | if (lua_type(L, -1) != LUA_TSTRING) { |
| 10217 | errmsg = "1st argument must be a table filled with strings"; |
| 10218 | goto error; |
| 10219 | } |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 10220 | cli_kws->kw[0].str_kw[index] = strdup(lua_tostring(L, -1)); |
Christopher Faulet | 3a9a12b | 2021-04-12 15:31:29 +0200 | [diff] [blame] | 10221 | if (!cli_kws->kw[0].str_kw[index]) { |
| 10222 | errmsg = "Lua out of memory error."; |
| 10223 | goto error; |
| 10224 | } |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 10225 | index++; |
| 10226 | lua_pop(L, 1); |
| 10227 | } |
| 10228 | |
| 10229 | /* Copy help message. */ |
| 10230 | cli_kws->kw[0].usage = strdup(message); |
Christopher Faulet | 3a9a12b | 2021-04-12 15:31:29 +0200 | [diff] [blame] | 10231 | if (!cli_kws->kw[0].usage) { |
| 10232 | errmsg = "Lua out of memory error."; |
| 10233 | goto error; |
| 10234 | } |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 10235 | |
| 10236 | /* Fill fcn io handler. */ |
| 10237 | len = strlen("<lua.cli>") + 1; |
| 10238 | for (i = 0; i < index; i++) |
| 10239 | len += strlen(cli_kws->kw[0].str_kw[i]) + 1; |
| 10240 | fcn->name = calloc(1, len); |
Christopher Faulet | 3a9a12b | 2021-04-12 15:31:29 +0200 | [diff] [blame] | 10241 | if (!fcn->name) { |
| 10242 | errmsg = "Lua out of memory error."; |
| 10243 | goto error; |
| 10244 | } |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 10245 | strncat((char *)fcn->name, "<lua.cli", len); |
| 10246 | for (i = 0; i < index; i++) { |
| 10247 | strncat((char *)fcn->name, ".", len); |
| 10248 | strncat((char *)fcn->name, cli_kws->kw[0].str_kw[i], len); |
| 10249 | } |
| 10250 | strncat((char *)fcn->name, ">", len); |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 10251 | fcn->function_ref[hlua_state_id] = ref_io; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 10252 | |
| 10253 | /* Fill last entries. */ |
| 10254 | cli_kws->kw[0].private = fcn; |
| 10255 | cli_kws->kw[0].parse = hlua_cli_parse_fct; |
| 10256 | cli_kws->kw[0].io_handler = hlua_cli_io_handler_fct; |
| 10257 | cli_kws->kw[0].io_release = hlua_cli_io_release_fct; |
| 10258 | |
| 10259 | /* Register this new converter */ |
| 10260 | cli_register_kw(cli_kws); |
| 10261 | |
| 10262 | return 0; |
Christopher Faulet | 3a9a12b | 2021-04-12 15:31:29 +0200 | [diff] [blame] | 10263 | |
| 10264 | error: |
| 10265 | release_hlua_function(fcn); |
| 10266 | if (cli_kws) { |
| 10267 | for (i = 0; i < index; i++) |
| 10268 | ha_free((char **)&(cli_kws->kw[0].str_kw[i])); |
| 10269 | ha_free((char **)&(cli_kws->kw[0].usage)); |
| 10270 | } |
| 10271 | ha_free(&cli_kws); |
| 10272 | WILL_LJMP(luaL_error(L, errmsg)); |
| 10273 | return 0; /* Never reached */ |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 10274 | } |
| 10275 | |
Christopher Faulet | 69c581a | 2021-05-31 08:54:04 +0200 | [diff] [blame] | 10276 | static int hlua_filter_init_per_thread(struct proxy *px, struct flt_conf *fconf) |
| 10277 | { |
| 10278 | struct hlua_flt_config *conf = fconf->conf; |
| 10279 | lua_State *L; |
| 10280 | int error, pos, state_id, flt_ref; |
| 10281 | |
| 10282 | state_id = reg_flt_to_stack_id(conf->reg); |
| 10283 | L = hlua_states[state_id]; |
| 10284 | pos = lua_gettop(L); |
| 10285 | |
| 10286 | /* The filter parsing function */ |
| 10287 | lua_rawgeti(L, LUA_REGISTRYINDEX, conf->reg->fun_ref[state_id]); |
| 10288 | |
| 10289 | /* Push the filter class on the stack and resolve all callbacks */ |
| 10290 | lua_rawgeti(L, LUA_REGISTRYINDEX, conf->reg->flt_ref[state_id]); |
| 10291 | |
| 10292 | /* Duplicate the filter class so each filter will have its own copy */ |
| 10293 | lua_newtable(L); |
| 10294 | lua_pushnil(L); |
| 10295 | |
| 10296 | while (lua_next(L, pos+2)) { |
| 10297 | lua_pushvalue(L, -2); |
| 10298 | lua_insert(L, -2); |
| 10299 | lua_settable(L, -4); |
| 10300 | } |
| 10301 | flt_ref = luaL_ref(L, LUA_REGISTRYINDEX); |
| 10302 | |
| 10303 | /* Remove the original lua filter class from the stack */ |
| 10304 | lua_pop(L, 1); |
| 10305 | |
| 10306 | /* Push the copy on the stack */ |
| 10307 | lua_rawgeti(L, LUA_REGISTRYINDEX, flt_ref); |
| 10308 | |
| 10309 | /* extra args are pushed in a table */ |
| 10310 | lua_newtable(L); |
| 10311 | for (pos = 0; conf->args[pos]; pos++) { |
| 10312 | /* Check stack available size. */ |
| 10313 | if (!lua_checkstack(L, 1)) { |
| 10314 | ha_alert("Lua filter '%s' : Lua error : full stack.", conf->reg->name); |
| 10315 | goto error; |
| 10316 | } |
| 10317 | lua_pushstring(L, conf->args[pos]); |
| 10318 | lua_rawseti(L, -2, lua_rawlen(L, -2) + 1); |
| 10319 | } |
| 10320 | |
| 10321 | error = lua_pcall(L, 2, LUA_MULTRET, 0); |
| 10322 | switch (error) { |
| 10323 | case LUA_OK: |
| 10324 | /* replace the filter ref */ |
| 10325 | conf->ref[state_id] = flt_ref; |
| 10326 | break; |
| 10327 | case LUA_ERRRUN: |
| 10328 | ha_alert("Lua filter '%s' : runtime error : %s", conf->reg->name, lua_tostring(L, -1)); |
| 10329 | goto error; |
| 10330 | case LUA_ERRMEM: |
| 10331 | ha_alert("Lua filter '%s' : out of memory error", conf->reg->name); |
| 10332 | goto error; |
| 10333 | case LUA_ERRERR: |
| 10334 | ha_alert("Lua filter '%s' : message handler error : %s", conf->reg->name, lua_tostring(L, -1)); |
| 10335 | goto error; |
| 10336 | #if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM <= 503 |
| 10337 | case LUA_ERRGCMM: |
| 10338 | ha_alert("Lua filter '%s' : garbage collector error : %s", conf->reg->name, lua_tostring(L, -1)); |
| 10339 | goto error; |
| 10340 | #endif |
| 10341 | default: |
Ilya Shipitsin | ff0f278 | 2021-08-22 22:18:07 +0500 | [diff] [blame] | 10342 | ha_alert("Lua filter '%s' : unknown error : %s", conf->reg->name, lua_tostring(L, -1)); |
Christopher Faulet | 69c581a | 2021-05-31 08:54:04 +0200 | [diff] [blame] | 10343 | goto error; |
| 10344 | } |
| 10345 | |
| 10346 | lua_settop(L, 0); |
| 10347 | return 0; |
| 10348 | |
| 10349 | error: |
| 10350 | lua_settop(L, 0); |
| 10351 | return -1; |
| 10352 | } |
| 10353 | |
| 10354 | static void hlua_filter_deinit_per_thread(struct proxy *px, struct flt_conf *fconf) |
| 10355 | { |
| 10356 | struct hlua_flt_config *conf = fconf->conf; |
| 10357 | lua_State *L; |
| 10358 | int state_id; |
| 10359 | |
| 10360 | if (!conf) |
| 10361 | return; |
| 10362 | |
| 10363 | state_id = reg_flt_to_stack_id(conf->reg); |
| 10364 | L = hlua_states[state_id]; |
| 10365 | luaL_unref(L, LUA_REGISTRYINDEX, conf->ref[state_id]); |
| 10366 | } |
| 10367 | |
| 10368 | static int hlua_filter_init(struct proxy *px, struct flt_conf *fconf) |
| 10369 | { |
| 10370 | struct hlua_flt_config *conf = fconf->conf; |
| 10371 | int state_id = reg_flt_to_stack_id(conf->reg); |
| 10372 | |
| 10373 | /* Rely on per-thread init for global scripts */ |
| 10374 | if (!state_id) |
| 10375 | return hlua_filter_init_per_thread(px, fconf); |
| 10376 | return 0; |
| 10377 | } |
| 10378 | |
| 10379 | static void hlua_filter_deinit(struct proxy *px, struct flt_conf *fconf) |
| 10380 | { |
| 10381 | |
| 10382 | if (fconf->conf) { |
| 10383 | struct hlua_flt_config *conf = fconf->conf; |
| 10384 | int state_id = reg_flt_to_stack_id(conf->reg); |
| 10385 | int pos; |
| 10386 | |
| 10387 | /* Rely on per-thread deinit for global scripts */ |
| 10388 | if (!state_id) |
| 10389 | hlua_filter_deinit_per_thread(px, fconf); |
| 10390 | |
| 10391 | for (pos = 0; conf->args[pos]; pos++) |
| 10392 | free(conf->args[pos]); |
| 10393 | free(conf->args); |
| 10394 | } |
| 10395 | ha_free(&fconf->conf); |
| 10396 | ha_free((char **)&fconf->id); |
| 10397 | ha_free(&fconf->ops); |
| 10398 | } |
| 10399 | |
| 10400 | static int hlua_filter_new(struct stream *s, struct filter *filter) |
| 10401 | { |
| 10402 | struct hlua_flt_config *conf = FLT_CONF(filter); |
| 10403 | struct hlua_flt_ctx *flt_ctx = NULL; |
| 10404 | int ret = 1; |
| 10405 | |
| 10406 | /* In the execution wrappers linked with a stream, the |
| 10407 | * Lua context can be not initialized. This behavior |
| 10408 | * permits to save performances because a systematic |
| 10409 | * Lua initialization cause 5% performances loss. |
| 10410 | */ |
| 10411 | if (!s->hlua) { |
| 10412 | struct hlua *hlua; |
| 10413 | |
| 10414 | hlua = pool_alloc(pool_head_hlua); |
| 10415 | if (!hlua) { |
| 10416 | SEND_ERR(s->be, "Lua filter '%s': can't initialize Lua context.\n", |
| 10417 | conf->reg->name); |
| 10418 | ret = 0; |
| 10419 | goto end; |
| 10420 | } |
| 10421 | HLUA_INIT(hlua); |
| 10422 | s->hlua = hlua; |
| 10423 | if (!hlua_ctx_init(s->hlua, reg_flt_to_stack_id(conf->reg), s->task, 0)) { |
| 10424 | SEND_ERR(s->be, "Lua filter '%s': can't initialize Lua context.\n", |
| 10425 | conf->reg->name); |
| 10426 | ret = 0; |
| 10427 | goto end; |
| 10428 | } |
| 10429 | } |
| 10430 | |
| 10431 | flt_ctx = pool_zalloc(pool_head_hlua_flt_ctx); |
| 10432 | if (!flt_ctx) { |
| 10433 | SEND_ERR(s->be, "Lua filter '%s': can't initialize filter Lua context.\n", |
| 10434 | conf->reg->name); |
| 10435 | ret = 0; |
| 10436 | goto end; |
| 10437 | } |
| 10438 | flt_ctx->hlua[0] = pool_alloc(pool_head_hlua); |
| 10439 | flt_ctx->hlua[1] = pool_alloc(pool_head_hlua); |
| 10440 | if (!flt_ctx->hlua[0] || !flt_ctx->hlua[1]) { |
| 10441 | SEND_ERR(s->be, "Lua filter '%s': can't initialize filter Lua context.\n", |
| 10442 | conf->reg->name); |
| 10443 | ret = 0; |
| 10444 | goto end; |
| 10445 | } |
| 10446 | HLUA_INIT(flt_ctx->hlua[0]); |
| 10447 | HLUA_INIT(flt_ctx->hlua[1]); |
| 10448 | if (!hlua_ctx_init(flt_ctx->hlua[0], reg_flt_to_stack_id(conf->reg), s->task, 0) || |
| 10449 | !hlua_ctx_init(flt_ctx->hlua[1], reg_flt_to_stack_id(conf->reg), s->task, 0)) { |
| 10450 | SEND_ERR(s->be, "Lua filter '%s': can't initialize filter Lua context.\n", |
| 10451 | conf->reg->name); |
| 10452 | ret = 0; |
| 10453 | goto end; |
| 10454 | } |
| 10455 | |
| 10456 | if (!HLUA_IS_RUNNING(s->hlua)) { |
| 10457 | /* The following Lua calls can fail. */ |
| 10458 | if (!SET_SAFE_LJMP(s->hlua)) { |
| 10459 | const char *error; |
| 10460 | |
| 10461 | if (lua_type(s->hlua->T, -1) == LUA_TSTRING) |
| 10462 | error = lua_tostring(s->hlua->T, -1); |
| 10463 | else |
| 10464 | error = "critical error"; |
| 10465 | SEND_ERR(s->be, "Lua filter '%s': %s.\n", conf->reg->name, error); |
| 10466 | ret = 0; |
| 10467 | goto end; |
| 10468 | } |
| 10469 | |
| 10470 | /* Check stack size. */ |
| 10471 | if (!lua_checkstack(s->hlua->T, 1)) { |
| 10472 | SEND_ERR(s->be, "Lua filter '%s': full stack.\n", conf->reg->name); |
Tim Duesterhus | 2281738 | 2021-09-11 23:17:25 +0200 | [diff] [blame] | 10473 | RESET_SAFE_LJMP(s->hlua); |
Christopher Faulet | 69c581a | 2021-05-31 08:54:04 +0200 | [diff] [blame] | 10474 | ret = 0; |
| 10475 | goto end; |
| 10476 | } |
| 10477 | |
| 10478 | lua_rawgeti(s->hlua->T, LUA_REGISTRYINDEX, conf->ref[s->hlua->state_id]); |
| 10479 | if (lua_getfield(s->hlua->T, -1, "new") != LUA_TFUNCTION) { |
| 10480 | SEND_ERR(s->be, "Lua filter '%s': 'new' field is not a function.\n", |
| 10481 | conf->reg->name); |
| 10482 | RESET_SAFE_LJMP(s->hlua); |
| 10483 | ret = 0; |
| 10484 | goto end; |
| 10485 | } |
| 10486 | lua_insert(s->hlua->T, -2); |
| 10487 | |
| 10488 | /* Push the copy on the stack */ |
| 10489 | s->hlua->nargs = 1; |
| 10490 | |
| 10491 | /* We must initialize the execution timeouts. */ |
| 10492 | s->hlua->max_time = hlua_timeout_session; |
| 10493 | |
| 10494 | /* At this point the execution is safe. */ |
| 10495 | RESET_SAFE_LJMP(s->hlua); |
| 10496 | } |
| 10497 | |
| 10498 | switch (hlua_ctx_resume(s->hlua, 0)) { |
| 10499 | case HLUA_E_OK: |
| 10500 | /* Nothing returned or not a table, ignore the filter for current stream */ |
| 10501 | if (!lua_gettop(s->hlua->T) || !lua_istable(s->hlua->T, 1)) { |
| 10502 | ret = 0; |
| 10503 | goto end; |
| 10504 | } |
| 10505 | |
| 10506 | /* Attached the filter pointer to the ctx */ |
| 10507 | lua_pushstring(s->hlua->T, "__filter"); |
| 10508 | lua_pushlightuserdata(s->hlua->T, filter); |
| 10509 | lua_settable(s->hlua->T, -3); |
| 10510 | |
| 10511 | /* Save a ref on the filter ctx */ |
| 10512 | lua_pushvalue(s->hlua->T, 1); |
| 10513 | flt_ctx->ref = luaL_ref(s->hlua->T, LUA_REGISTRYINDEX); |
| 10514 | filter->ctx = flt_ctx; |
| 10515 | break; |
| 10516 | case HLUA_E_ERRMSG: |
| 10517 | SEND_ERR(s->be, "Lua filter '%s' : %s.\n", conf->reg->name, lua_tostring(s->hlua->T, -1)); |
| 10518 | ret = -1; |
| 10519 | goto end; |
| 10520 | case HLUA_E_ETMOUT: |
| 10521 | SEND_ERR(s->be, "Lua filter '%s' : 'new' execution timeout.\n", conf->reg->name); |
| 10522 | ret = 0; |
| 10523 | goto end; |
| 10524 | case HLUA_E_NOMEM: |
| 10525 | SEND_ERR(s->be, "Lua filter '%s' : out of memory error.\n", conf->reg->name); |
| 10526 | ret = 0; |
| 10527 | goto end; |
| 10528 | case HLUA_E_AGAIN: |
| 10529 | case HLUA_E_YIELD: |
| 10530 | SEND_ERR(s->be, "Lua filter '%s': yield functions like core.tcp() or core.sleep()" |
| 10531 | " are not allowed from 'new' function.\n", conf->reg->name); |
| 10532 | ret = 0; |
| 10533 | goto end; |
| 10534 | case HLUA_E_ERR: |
| 10535 | SEND_ERR(s->be, "Lua filter '%s': 'new' returns an unknown error.\n", conf->reg->name); |
| 10536 | ret = 0; |
| 10537 | goto end; |
| 10538 | default: |
| 10539 | ret = 0; |
| 10540 | goto end; |
| 10541 | } |
| 10542 | |
| 10543 | end: |
| 10544 | if (s->hlua) |
| 10545 | lua_settop(s->hlua->T, 0); |
| 10546 | if (ret <= 0) { |
| 10547 | if (flt_ctx) { |
| 10548 | hlua_ctx_destroy(flt_ctx->hlua[0]); |
| 10549 | hlua_ctx_destroy(flt_ctx->hlua[1]); |
| 10550 | pool_free(pool_head_hlua_flt_ctx, flt_ctx); |
| 10551 | } |
| 10552 | } |
| 10553 | return ret; |
| 10554 | } |
| 10555 | |
| 10556 | static void hlua_filter_delete(struct stream *s, struct filter *filter) |
| 10557 | { |
| 10558 | struct hlua_flt_ctx *flt_ctx = filter->ctx; |
| 10559 | |
| 10560 | luaL_unref(s->hlua->T, LUA_REGISTRYINDEX, flt_ctx->ref); |
| 10561 | hlua_ctx_destroy(flt_ctx->hlua[0]); |
| 10562 | hlua_ctx_destroy(flt_ctx->hlua[1]); |
| 10563 | pool_free(pool_head_hlua_flt_ctx, flt_ctx); |
| 10564 | filter->ctx = NULL; |
| 10565 | } |
| 10566 | |
Christopher Faulet | 9f55a50 | 2020-02-25 15:21:02 +0100 | [diff] [blame] | 10567 | static int hlua_filter_from_payload(struct filter *filter) |
| 10568 | { |
| 10569 | struct hlua_flt_ctx *flt_ctx = filter->ctx; |
| 10570 | |
| 10571 | return (flt_ctx && !!(flt_ctx->flags & HLUA_FLT_CTX_FL_PAYLOAD)); |
| 10572 | } |
| 10573 | |
Christopher Faulet | c404f11 | 2020-02-26 15:03:09 +0100 | [diff] [blame] | 10574 | static int hlua_filter_callback(struct stream *s, struct filter *filter, const char *fun, |
| 10575 | int dir, unsigned int flags) |
| 10576 | { |
| 10577 | struct hlua *flt_hlua; |
| 10578 | struct hlua_flt_config *conf = FLT_CONF(filter); |
| 10579 | struct hlua_flt_ctx *flt_ctx = filter->ctx; |
| 10580 | unsigned int hflags = HLUA_TXN_FLT_CTX; |
| 10581 | int ret = 1; |
| 10582 | |
| 10583 | flt_hlua = flt_ctx->hlua[(dir == SMP_OPT_DIR_REQ ? 0 : 1)]; |
| 10584 | if (!flt_hlua) |
| 10585 | goto end; |
| 10586 | |
| 10587 | if (!HLUA_IS_RUNNING(flt_hlua)) { |
| 10588 | int extra_idx = lua_gettop(flt_hlua->T); |
| 10589 | |
| 10590 | /* The following Lua calls can fail. */ |
| 10591 | if (!SET_SAFE_LJMP(flt_hlua)) { |
| 10592 | const char *error; |
| 10593 | |
| 10594 | if (lua_type(flt_hlua->T, -1) == LUA_TSTRING) |
| 10595 | error = lua_tostring(flt_hlua->T, -1); |
| 10596 | else |
| 10597 | error = "critical error"; |
| 10598 | SEND_ERR(s->be, "Lua filter '%s': %s.\n", conf->reg->name, error); |
| 10599 | goto end; |
| 10600 | } |
| 10601 | |
| 10602 | /* Check stack size. */ |
| 10603 | if (!lua_checkstack(flt_hlua->T, 3)) { |
| 10604 | SEND_ERR(s->be, "Lua filter '%s': full stack.\n", conf->reg->name); |
| 10605 | RESET_SAFE_LJMP(flt_hlua); |
| 10606 | goto end; |
| 10607 | } |
| 10608 | |
| 10609 | lua_rawgeti(flt_hlua->T, LUA_REGISTRYINDEX, flt_ctx->ref); |
| 10610 | if (lua_getfield(flt_hlua->T, -1, fun) != LUA_TFUNCTION) { |
| 10611 | RESET_SAFE_LJMP(flt_hlua); |
| 10612 | goto end; |
| 10613 | } |
| 10614 | lua_insert(flt_hlua->T, -2); |
| 10615 | |
| 10616 | if (!hlua_txn_new(flt_hlua->T, s, s->be, dir, hflags)) { |
| 10617 | SEND_ERR(s->be, "Lua filter '%s': full stack.\n", conf->reg->name); |
| 10618 | RESET_SAFE_LJMP(flt_hlua); |
| 10619 | goto end; |
| 10620 | } |
| 10621 | flt_hlua->nargs = 2; |
| 10622 | |
| 10623 | if (flags & HLUA_FLT_CB_ARG_CHN) { |
| 10624 | if (dir == SMP_OPT_DIR_REQ) |
| 10625 | lua_getfield(flt_hlua->T, -1, "req"); |
| 10626 | else |
| 10627 | lua_getfield(flt_hlua->T, -1, "res"); |
| 10628 | if (lua_type(flt_hlua->T, -1) == LUA_TTABLE) { |
| 10629 | lua_pushstring(flt_hlua->T, "__filter"); |
| 10630 | lua_pushlightuserdata(flt_hlua->T, filter); |
| 10631 | lua_settable(flt_hlua->T, -3); |
| 10632 | } |
| 10633 | flt_hlua->nargs++; |
| 10634 | } |
| 10635 | else if (flags & HLUA_FLT_CB_ARG_HTTP_MSG) { |
Christopher Faulet | eae8afa | 2020-02-26 17:15:48 +0100 | [diff] [blame] | 10636 | if (dir == SMP_OPT_DIR_REQ) |
| 10637 | lua_getfield(flt_hlua->T, -1, "http_req"); |
| 10638 | else |
| 10639 | lua_getfield(flt_hlua->T, -1, "http_res"); |
| 10640 | if (lua_type(flt_hlua->T, -1) == LUA_TTABLE) { |
| 10641 | lua_pushstring(flt_hlua->T, "__filter"); |
| 10642 | lua_pushlightuserdata(flt_hlua->T, filter); |
| 10643 | lua_settable(flt_hlua->T, -3); |
| 10644 | } |
| 10645 | flt_hlua->nargs++; |
Christopher Faulet | c404f11 | 2020-02-26 15:03:09 +0100 | [diff] [blame] | 10646 | } |
| 10647 | |
| 10648 | /* Check stack size. */ |
| 10649 | if (!lua_checkstack(flt_hlua->T, 1)) { |
| 10650 | SEND_ERR(s->be, "Lua filter '%s': full stack.\n", conf->reg->name); |
| 10651 | RESET_SAFE_LJMP(flt_hlua); |
| 10652 | goto end; |
| 10653 | } |
| 10654 | |
| 10655 | while (extra_idx--) { |
| 10656 | lua_pushvalue(flt_hlua->T, 1); |
| 10657 | lua_remove(flt_hlua->T, 1); |
| 10658 | flt_hlua->nargs++; |
| 10659 | } |
| 10660 | |
| 10661 | /* We must initialize the execution timeouts. */ |
| 10662 | flt_hlua->max_time = hlua_timeout_session; |
| 10663 | |
| 10664 | /* At this point the execution is safe. */ |
| 10665 | RESET_SAFE_LJMP(flt_hlua); |
| 10666 | } |
| 10667 | |
| 10668 | switch (hlua_ctx_resume(flt_hlua, !(flags & HLUA_FLT_CB_FINAL))) { |
| 10669 | case HLUA_E_OK: |
| 10670 | /* Catch the return value if it required */ |
| 10671 | if ((flags & HLUA_FLT_CB_RETVAL) && lua_gettop(flt_hlua->T) > 0) { |
| 10672 | ret = lua_tointeger(flt_hlua->T, -1); |
| 10673 | lua_settop(flt_hlua->T, 0); /* Empty the stack. */ |
| 10674 | } |
| 10675 | |
| 10676 | /* Set timeout in the required channel. */ |
| 10677 | if (flt_hlua->wake_time != TICK_ETERNITY) { |
| 10678 | if (dir == SMP_OPT_DIR_REQ) |
| 10679 | s->req.analyse_exp = flt_hlua->wake_time; |
| 10680 | else |
| 10681 | s->res.analyse_exp = flt_hlua->wake_time; |
| 10682 | } |
| 10683 | break; |
| 10684 | case HLUA_E_AGAIN: |
| 10685 | /* Set timeout in the required channel. */ |
| 10686 | if (flt_hlua->wake_time != TICK_ETERNITY) { |
| 10687 | if (dir == SMP_OPT_DIR_REQ) |
| 10688 | s->req.analyse_exp = flt_hlua->wake_time; |
| 10689 | else |
| 10690 | s->res.analyse_exp = flt_hlua->wake_time; |
| 10691 | } |
| 10692 | /* Some actions can be wake up when a "write" event |
| 10693 | * is detected on a response channel. This is useful |
| 10694 | * only for actions targeted on the requests. |
| 10695 | */ |
| 10696 | if (HLUA_IS_WAKERESWR(flt_hlua)) |
| 10697 | s->res.flags |= CF_WAKE_WRITE; |
| 10698 | if (HLUA_IS_WAKEREQWR(flt_hlua)) |
| 10699 | s->req.flags |= CF_WAKE_WRITE; |
| 10700 | ret = 0; |
| 10701 | goto end; |
| 10702 | case HLUA_E_ERRMSG: |
| 10703 | SEND_ERR(s->be, "Lua filter '%s' : %s.\n", conf->reg->name, lua_tostring(flt_hlua->T, -1)); |
| 10704 | ret = -1; |
| 10705 | goto end; |
| 10706 | case HLUA_E_ETMOUT: |
| 10707 | SEND_ERR(s->be, "Lua filter '%s' : '%s' callback execution timeout.\n", conf->reg->name, fun); |
| 10708 | goto end; |
| 10709 | case HLUA_E_NOMEM: |
| 10710 | SEND_ERR(s->be, "Lua filter '%s' : out of memory error.\n", conf->reg->name); |
| 10711 | goto end; |
| 10712 | case HLUA_E_YIELD: |
| 10713 | SEND_ERR(s->be, "Lua filter '%s': yield functions like core.tcp() or core.sleep()" |
| 10714 | " are not allowed from '%s' callback.\n", conf->reg->name, fun); |
| 10715 | goto end; |
| 10716 | case HLUA_E_ERR: |
| 10717 | SEND_ERR(s->be, "Lua filter '%s': '%s' returns an unknown error.\n", conf->reg->name, fun); |
| 10718 | goto end; |
| 10719 | default: |
| 10720 | goto end; |
| 10721 | } |
| 10722 | |
| 10723 | |
| 10724 | end: |
| 10725 | return ret; |
| 10726 | } |
| 10727 | |
| 10728 | static int hlua_filter_start_analyze(struct stream *s, struct filter *filter, struct channel *chn) |
| 10729 | { |
| 10730 | struct hlua_flt_ctx *flt_ctx = filter->ctx; |
| 10731 | |
| 10732 | flt_ctx->flags = 0; |
| 10733 | return hlua_filter_callback(s, filter, "start_analyze", |
| 10734 | (!(chn->flags & CF_ISRESP) ? SMP_OPT_DIR_REQ : SMP_OPT_DIR_RES), |
| 10735 | (HLUA_FLT_CB_FINAL | HLUA_FLT_CB_RETVAL | HLUA_FLT_CB_ARG_CHN)); |
| 10736 | } |
| 10737 | |
| 10738 | static int hlua_filter_end_analyze(struct stream *s, struct filter *filter, struct channel *chn) |
| 10739 | { |
| 10740 | struct hlua_flt_ctx *flt_ctx = filter->ctx; |
| 10741 | |
| 10742 | flt_ctx->flags &= ~HLUA_FLT_CTX_FL_PAYLOAD; |
| 10743 | return hlua_filter_callback(s, filter, "end_analyze", |
| 10744 | (!(chn->flags & CF_ISRESP) ? SMP_OPT_DIR_REQ : SMP_OPT_DIR_RES), |
| 10745 | (HLUA_FLT_CB_FINAL | HLUA_FLT_CB_RETVAL | HLUA_FLT_CB_ARG_CHN)); |
| 10746 | } |
| 10747 | |
Christopher Faulet | eae8afa | 2020-02-26 17:15:48 +0100 | [diff] [blame] | 10748 | static int hlua_filter_http_headers(struct stream *s, struct filter *filter, struct http_msg *msg) |
| 10749 | { |
| 10750 | struct hlua_flt_ctx *flt_ctx = filter->ctx; |
| 10751 | |
| 10752 | flt_ctx->flags &= ~HLUA_FLT_CTX_FL_PAYLOAD; |
| 10753 | return hlua_filter_callback(s, filter, "http_headers", |
| 10754 | (!(msg->chn->flags & CF_ISRESP) ? SMP_OPT_DIR_REQ : SMP_OPT_DIR_RES), |
| 10755 | (HLUA_FLT_CB_FINAL | HLUA_FLT_CB_RETVAL | HLUA_FLT_CB_ARG_HTTP_MSG)); |
| 10756 | } |
| 10757 | |
| 10758 | static int hlua_filter_http_payload(struct stream *s, struct filter *filter, struct http_msg *msg, |
| 10759 | unsigned int offset, unsigned int len) |
| 10760 | { |
| 10761 | struct hlua_flt_ctx *flt_ctx = filter->ctx; |
| 10762 | struct hlua *flt_hlua; |
| 10763 | int dir = (!(msg->chn->flags & CF_ISRESP) ? SMP_OPT_DIR_REQ : SMP_OPT_DIR_RES); |
| 10764 | int idx = (dir == SMP_OPT_DIR_REQ ? 0 : 1); |
| 10765 | int ret; |
| 10766 | |
| 10767 | flt_hlua = flt_ctx->hlua[idx]; |
| 10768 | flt_ctx->cur_off[idx] = offset; |
| 10769 | flt_ctx->cur_len[idx] = len; |
| 10770 | flt_ctx->flags |= HLUA_FLT_CTX_FL_PAYLOAD; |
| 10771 | ret = hlua_filter_callback(s, filter, "http_payload", dir, (HLUA_FLT_CB_FINAL | HLUA_FLT_CB_ARG_HTTP_MSG)); |
| 10772 | if (ret != -1) { |
| 10773 | ret = flt_ctx->cur_len[idx]; |
| 10774 | if (lua_gettop(flt_hlua->T) > 0) { |
| 10775 | ret = lua_tointeger(flt_hlua->T, -1); |
| 10776 | if (ret > flt_ctx->cur_len[idx]) |
| 10777 | ret = flt_ctx->cur_len[idx]; |
| 10778 | lua_settop(flt_hlua->T, 0); /* Empty the stack. */ |
| 10779 | } |
| 10780 | } |
| 10781 | return ret; |
| 10782 | } |
| 10783 | |
| 10784 | static int hlua_filter_http_end(struct stream *s, struct filter *filter, struct http_msg *msg) |
| 10785 | { |
| 10786 | struct hlua_flt_ctx *flt_ctx = filter->ctx; |
| 10787 | |
| 10788 | flt_ctx->flags &= ~HLUA_FLT_CTX_FL_PAYLOAD; |
| 10789 | return hlua_filter_callback(s, filter, "http_end", |
| 10790 | (!(msg->chn->flags & CF_ISRESP) ? SMP_OPT_DIR_REQ : SMP_OPT_DIR_RES), |
| 10791 | (HLUA_FLT_CB_FINAL | HLUA_FLT_CB_RETVAL | HLUA_FLT_CB_ARG_HTTP_MSG)); |
| 10792 | } |
| 10793 | |
Christopher Faulet | c404f11 | 2020-02-26 15:03:09 +0100 | [diff] [blame] | 10794 | static int hlua_filter_tcp_payload(struct stream *s, struct filter *filter, struct channel *chn, |
| 10795 | unsigned int offset, unsigned int len) |
| 10796 | { |
| 10797 | struct hlua_flt_ctx *flt_ctx = filter->ctx; |
| 10798 | struct hlua *flt_hlua; |
| 10799 | int dir = (!(chn->flags & CF_ISRESP) ? SMP_OPT_DIR_REQ : SMP_OPT_DIR_RES); |
| 10800 | int idx = (dir == SMP_OPT_DIR_REQ ? 0 : 1); |
| 10801 | int ret; |
| 10802 | |
| 10803 | flt_hlua = flt_ctx->hlua[idx]; |
| 10804 | flt_ctx->cur_off[idx] = offset; |
| 10805 | flt_ctx->cur_len[idx] = len; |
| 10806 | flt_ctx->flags |= HLUA_FLT_CTX_FL_PAYLOAD; |
| 10807 | ret = hlua_filter_callback(s, filter, "tcp_payload", dir, (HLUA_FLT_CB_FINAL | HLUA_FLT_CB_ARG_CHN)); |
| 10808 | if (ret != -1) { |
| 10809 | ret = flt_ctx->cur_len[idx]; |
| 10810 | if (lua_gettop(flt_hlua->T) > 0) { |
| 10811 | ret = lua_tointeger(flt_hlua->T, -1); |
| 10812 | if (ret > flt_ctx->cur_len[idx]) |
| 10813 | ret = flt_ctx->cur_len[idx]; |
| 10814 | lua_settop(flt_hlua->T, 0); /* Empty the stack. */ |
| 10815 | } |
| 10816 | } |
| 10817 | return ret; |
| 10818 | } |
| 10819 | |
Christopher Faulet | 69c581a | 2021-05-31 08:54:04 +0200 | [diff] [blame] | 10820 | static int hlua_filter_parse_fct(char **args, int *cur_arg, struct proxy *px, |
| 10821 | struct flt_conf *fconf, char **err, void *private) |
| 10822 | { |
| 10823 | struct hlua_reg_filter *reg_flt = private; |
| 10824 | lua_State *L; |
| 10825 | struct hlua_flt_config *conf = NULL; |
| 10826 | const char *flt_id = NULL; |
| 10827 | int state_id, pos, flt_flags = 0; |
| 10828 | struct flt_ops *hlua_flt_ops = NULL; |
| 10829 | |
| 10830 | state_id = reg_flt_to_stack_id(reg_flt); |
| 10831 | L = hlua_states[state_id]; |
| 10832 | |
| 10833 | /* Initialize the filter ops with default callbacks */ |
| 10834 | hlua_flt_ops = calloc(1, sizeof(*hlua_flt_ops)); |
Christopher Faulet | c86bb87 | 2021-08-13 08:33:57 +0200 | [diff] [blame] | 10835 | if (!hlua_flt_ops) |
| 10836 | goto error; |
Christopher Faulet | 69c581a | 2021-05-31 08:54:04 +0200 | [diff] [blame] | 10837 | hlua_flt_ops->init = hlua_filter_init; |
| 10838 | hlua_flt_ops->deinit = hlua_filter_deinit; |
| 10839 | if (state_id) { |
| 10840 | /* Set per-thread callback if script is loaded per-thread */ |
| 10841 | hlua_flt_ops->init_per_thread = hlua_filter_init_per_thread; |
| 10842 | hlua_flt_ops->deinit_per_thread = hlua_filter_deinit_per_thread; |
| 10843 | } |
| 10844 | hlua_flt_ops->attach = hlua_filter_new; |
| 10845 | hlua_flt_ops->detach = hlua_filter_delete; |
| 10846 | |
| 10847 | /* Push the filter class on the stack and resolve all callbacks */ |
| 10848 | lua_rawgeti(L, LUA_REGISTRYINDEX, reg_flt->flt_ref[state_id]); |
| 10849 | |
Christopher Faulet | c404f11 | 2020-02-26 15:03:09 +0100 | [diff] [blame] | 10850 | if (lua_getfield(L, -1, "start_analyze") == LUA_TFUNCTION) |
| 10851 | hlua_flt_ops->channel_start_analyze = hlua_filter_start_analyze; |
| 10852 | lua_pop(L, 1); |
| 10853 | if (lua_getfield(L, -1, "end_analyze") == LUA_TFUNCTION) |
| 10854 | hlua_flt_ops->channel_end_analyze = hlua_filter_end_analyze; |
| 10855 | lua_pop(L, 1); |
Christopher Faulet | eae8afa | 2020-02-26 17:15:48 +0100 | [diff] [blame] | 10856 | if (lua_getfield(L, -1, "http_headers") == LUA_TFUNCTION) |
| 10857 | hlua_flt_ops->http_headers = hlua_filter_http_headers; |
| 10858 | lua_pop(L, 1); |
| 10859 | if (lua_getfield(L, -1, "http_payload") == LUA_TFUNCTION) |
| 10860 | hlua_flt_ops->http_payload = hlua_filter_http_payload; |
| 10861 | lua_pop(L, 1); |
| 10862 | if (lua_getfield(L, -1, "http_end") == LUA_TFUNCTION) |
| 10863 | hlua_flt_ops->http_end = hlua_filter_http_end; |
| 10864 | lua_pop(L, 1); |
Christopher Faulet | c404f11 | 2020-02-26 15:03:09 +0100 | [diff] [blame] | 10865 | if (lua_getfield(L, -1, "tcp_payload") == LUA_TFUNCTION) |
| 10866 | hlua_flt_ops->tcp_payload = hlua_filter_tcp_payload; |
| 10867 | lua_pop(L, 1); |
Christopher Faulet | 69c581a | 2021-05-31 08:54:04 +0200 | [diff] [blame] | 10868 | |
| 10869 | /* Get id and flags of the filter class */ |
| 10870 | if (lua_getfield(L, -1, "id") == LUA_TSTRING) |
| 10871 | flt_id = lua_tostring(L, -1); |
| 10872 | lua_pop(L, 1); |
| 10873 | if (lua_getfield(L, -1, "flags") == LUA_TNUMBER) |
| 10874 | flt_flags = lua_tointeger(L, -1); |
| 10875 | lua_pop(L, 1); |
| 10876 | |
| 10877 | /* Create the filter config */ |
| 10878 | conf = calloc(1, sizeof(*conf)); |
Christopher Faulet | c86bb87 | 2021-08-13 08:33:57 +0200 | [diff] [blame] | 10879 | if (!conf) |
Christopher Faulet | 69c581a | 2021-05-31 08:54:04 +0200 | [diff] [blame] | 10880 | goto error; |
Christopher Faulet | 69c581a | 2021-05-31 08:54:04 +0200 | [diff] [blame] | 10881 | conf->reg = reg_flt; |
| 10882 | |
| 10883 | /* duplicate args */ |
| 10884 | for (pos = 0; *args[*cur_arg + 1 + pos]; pos++); |
| 10885 | conf->args = calloc(pos + 1, sizeof(*conf->args)); |
Christopher Faulet | c86bb87 | 2021-08-13 08:33:57 +0200 | [diff] [blame] | 10886 | if (!conf->args) |
| 10887 | goto error; |
| 10888 | for (pos = 0; *args[*cur_arg + 1 + pos]; pos++) { |
Christopher Faulet | 69c581a | 2021-05-31 08:54:04 +0200 | [diff] [blame] | 10889 | conf->args[pos] = strdup(args[*cur_arg + 1 + pos]); |
Christopher Faulet | c86bb87 | 2021-08-13 08:33:57 +0200 | [diff] [blame] | 10890 | if (!conf->args[pos]) |
| 10891 | goto error; |
| 10892 | } |
Christopher Faulet | 69c581a | 2021-05-31 08:54:04 +0200 | [diff] [blame] | 10893 | conf->args[pos] = NULL; |
| 10894 | *cur_arg += pos + 1; |
| 10895 | |
Christopher Faulet | c86bb87 | 2021-08-13 08:33:57 +0200 | [diff] [blame] | 10896 | if (flt_id) { |
| 10897 | fconf->id = strdup(flt_id); |
| 10898 | if (!fconf->id) |
| 10899 | goto error; |
| 10900 | } |
Christopher Faulet | 69c581a | 2021-05-31 08:54:04 +0200 | [diff] [blame] | 10901 | fconf->flags = flt_flags; |
| 10902 | fconf->conf = conf; |
| 10903 | fconf->ops = hlua_flt_ops; |
| 10904 | |
| 10905 | lua_settop(L, 0); |
| 10906 | return 0; |
| 10907 | |
| 10908 | error: |
Christopher Faulet | c86bb87 | 2021-08-13 08:33:57 +0200 | [diff] [blame] | 10909 | memprintf(err, "Lua filter '%s' : Lua out of memory error", reg_flt->name); |
Christopher Faulet | 69c581a | 2021-05-31 08:54:04 +0200 | [diff] [blame] | 10910 | free(hlua_flt_ops); |
Christopher Faulet | c86bb87 | 2021-08-13 08:33:57 +0200 | [diff] [blame] | 10911 | if (conf && conf->args) { |
| 10912 | for (pos = 0; conf->args[pos]; pos++) |
| 10913 | free(conf->args[pos]); |
| 10914 | free(conf->args); |
| 10915 | } |
Christopher Faulet | 69c581a | 2021-05-31 08:54:04 +0200 | [diff] [blame] | 10916 | free(conf); |
Christopher Faulet | c86bb87 | 2021-08-13 08:33:57 +0200 | [diff] [blame] | 10917 | free((char *)fconf->id); |
Christopher Faulet | 69c581a | 2021-05-31 08:54:04 +0200 | [diff] [blame] | 10918 | lua_settop(L, 0); |
| 10919 | return -1; |
| 10920 | } |
| 10921 | |
Christopher Faulet | c404f11 | 2020-02-26 15:03:09 +0100 | [diff] [blame] | 10922 | __LJMP static int hlua_register_data_filter(lua_State *L) |
| 10923 | { |
| 10924 | struct filter *filter; |
| 10925 | struct channel *chn; |
| 10926 | |
| 10927 | MAY_LJMP(check_args(L, 2, "register_data_filter")); |
| 10928 | MAY_LJMP(luaL_checktype(L, 1, LUA_TTABLE)); |
| 10929 | chn = MAY_LJMP(hlua_checkchannel(L, 2)); |
| 10930 | |
| 10931 | lua_getfield(L, 1, "__filter"); |
| 10932 | MAY_LJMP(luaL_checktype(L, -1, LUA_TLIGHTUSERDATA)); |
| 10933 | filter = lua_touserdata (L, -1); |
| 10934 | lua_pop(L, 1); |
| 10935 | |
| 10936 | register_data_filter(chn_strm(chn), chn, filter); |
| 10937 | return 1; |
| 10938 | } |
| 10939 | |
| 10940 | __LJMP static int hlua_unregister_data_filter(lua_State *L) |
| 10941 | { |
| 10942 | struct filter *filter; |
| 10943 | struct channel *chn; |
| 10944 | |
| 10945 | MAY_LJMP(check_args(L, 2, "unregister_data_filter")); |
| 10946 | MAY_LJMP(luaL_checktype(L, 1, LUA_TTABLE)); |
| 10947 | chn = MAY_LJMP(hlua_checkchannel(L, 2)); |
| 10948 | |
| 10949 | lua_getfield(L, 1, "__filter"); |
| 10950 | MAY_LJMP(luaL_checktype(L, -1, LUA_TLIGHTUSERDATA)); |
| 10951 | filter = lua_touserdata (L, -1); |
| 10952 | lua_pop(L, 1); |
| 10953 | |
| 10954 | unregister_data_filter(chn_strm(chn), chn, filter); |
| 10955 | return 1; |
| 10956 | } |
| 10957 | |
Christopher Faulet | 69c581a | 2021-05-31 08:54:04 +0200 | [diff] [blame] | 10958 | /* This function is an LUA binding used for registering a filter. It expects a |
Ilya Shipitsin | ff0f278 | 2021-08-22 22:18:07 +0500 | [diff] [blame] | 10959 | * filter name used in the haproxy configuration file and a LUA function to |
Christopher Faulet | 69c581a | 2021-05-31 08:54:04 +0200 | [diff] [blame] | 10960 | * parse configuration arguments. |
| 10961 | */ |
| 10962 | __LJMP static int hlua_register_filter(lua_State *L) |
| 10963 | { |
| 10964 | struct buffer *trash; |
| 10965 | struct flt_kw_list *fkl; |
| 10966 | struct flt_kw *fkw; |
| 10967 | const char *name; |
| 10968 | struct hlua_reg_filter *reg_flt= NULL; |
| 10969 | int flt_ref, fun_ref; |
| 10970 | int len; |
| 10971 | |
| 10972 | MAY_LJMP(check_args(L, 3, "register_filter")); |
| 10973 | |
| 10974 | /* First argument : filter name. */ |
| 10975 | name = MAY_LJMP(luaL_checkstring(L, 1)); |
| 10976 | |
| 10977 | /* Second argument : The filter class */ |
| 10978 | flt_ref = MAY_LJMP(hlua_checktable(L, 2)); |
| 10979 | |
| 10980 | /* Third argument : lua function. */ |
| 10981 | fun_ref = MAY_LJMP(hlua_checkfunction(L, 3)); |
| 10982 | |
| 10983 | trash = get_trash_chunk(); |
| 10984 | chunk_printf(trash, "lua.%s", name); |
| 10985 | fkw = flt_find_kw(trash->area); |
| 10986 | if (fkw != NULL) { |
| 10987 | reg_flt = fkw->private; |
| 10988 | if (reg_flt->flt_ref[hlua_state_id] != -1 || reg_flt->fun_ref[hlua_state_id] != -1) { |
| 10989 | ha_warning("Trying to register filter 'lua.%s' more than once. " |
| 10990 | "This will become a hard error in version 2.5.\n", name); |
| 10991 | } |
| 10992 | reg_flt->flt_ref[hlua_state_id] = flt_ref; |
| 10993 | reg_flt->fun_ref[hlua_state_id] = fun_ref; |
| 10994 | return 0; |
| 10995 | } |
| 10996 | |
| 10997 | fkl = calloc(1, sizeof(*fkl) + sizeof(struct flt_kw) * 2); |
| 10998 | if (!fkl) |
| 10999 | goto alloc_error; |
| 11000 | fkl->scope = "HLUA"; |
| 11001 | |
| 11002 | reg_flt = new_hlua_reg_filter(name); |
| 11003 | if (!reg_flt) |
| 11004 | goto alloc_error; |
| 11005 | |
| 11006 | reg_flt->flt_ref[hlua_state_id] = flt_ref; |
| 11007 | reg_flt->fun_ref[hlua_state_id] = fun_ref; |
| 11008 | |
| 11009 | /* The filter keyword */ |
| 11010 | len = strlen("lua.") + strlen(name) + 1; |
| 11011 | fkl->kw[0].kw = calloc(1, len); |
| 11012 | if (!fkl->kw[0].kw) |
| 11013 | goto alloc_error; |
| 11014 | |
| 11015 | snprintf((char *)fkl->kw[0].kw, len, "lua.%s", name); |
| 11016 | |
| 11017 | fkl->kw[0].parse = hlua_filter_parse_fct; |
| 11018 | fkl->kw[0].private = reg_flt; |
| 11019 | memset(&fkl->kw[1], 0, sizeof(*fkl->kw)); |
| 11020 | |
| 11021 | /* Register this new filter */ |
| 11022 | flt_register_keywords(fkl); |
| 11023 | |
| 11024 | return 0; |
| 11025 | |
| 11026 | alloc_error: |
| 11027 | release_hlua_reg_filter(reg_flt); |
| 11028 | ha_free(&fkl); |
| 11029 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
| 11030 | return 0; /* Never reached */ |
| 11031 | } |
| 11032 | |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 11033 | static int hlua_read_timeout(char **args, int section_type, struct proxy *curpx, |
Willy Tarreau | 0182516 | 2021-03-09 09:53:46 +0100 | [diff] [blame] | 11034 | const struct proxy *defpx, const char *file, int line, |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 11035 | char **err, unsigned int *timeout) |
| 11036 | { |
| 11037 | const char *error; |
| 11038 | |
| 11039 | error = parse_time_err(args[1], timeout, TIME_UNIT_MS); |
Willy Tarreau | 9faebe3 | 2019-06-07 19:00:37 +0200 | [diff] [blame] | 11040 | if (error == PARSE_TIME_OVER) { |
| 11041 | memprintf(err, "timer overflow in argument <%s> to <%s> (maximum value is 2147483647 ms or ~24.8 days)", |
| 11042 | args[1], args[0]); |
| 11043 | return -1; |
| 11044 | } |
| 11045 | else if (error == PARSE_TIME_UNDER) { |
| 11046 | memprintf(err, "timer underflow in argument <%s> to <%s> (minimum non-null value is 1 ms)", |
| 11047 | args[1], args[0]); |
| 11048 | return -1; |
| 11049 | } |
| 11050 | else if (error) { |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 11051 | memprintf(err, "%s: invalid timeout", args[0]); |
| 11052 | return -1; |
| 11053 | } |
| 11054 | return 0; |
| 11055 | } |
| 11056 | |
| 11057 | static int hlua_session_timeout(char **args, int section_type, struct proxy *curpx, |
Willy Tarreau | 0182516 | 2021-03-09 09:53:46 +0100 | [diff] [blame] | 11058 | const struct proxy *defpx, const char *file, int line, |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 11059 | char **err) |
| 11060 | { |
| 11061 | return hlua_read_timeout(args, section_type, curpx, defpx, |
| 11062 | file, line, err, &hlua_timeout_session); |
| 11063 | } |
| 11064 | |
| 11065 | static int hlua_task_timeout(char **args, int section_type, struct proxy *curpx, |
Willy Tarreau | 0182516 | 2021-03-09 09:53:46 +0100 | [diff] [blame] | 11066 | const struct proxy *defpx, const char *file, int line, |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 11067 | char **err) |
| 11068 | { |
| 11069 | return hlua_read_timeout(args, section_type, curpx, defpx, |
| 11070 | file, line, err, &hlua_timeout_task); |
| 11071 | } |
| 11072 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 11073 | static int hlua_applet_timeout(char **args, int section_type, struct proxy *curpx, |
Willy Tarreau | 0182516 | 2021-03-09 09:53:46 +0100 | [diff] [blame] | 11074 | const struct proxy *defpx, const char *file, int line, |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 11075 | char **err) |
| 11076 | { |
| 11077 | return hlua_read_timeout(args, section_type, curpx, defpx, |
| 11078 | file, line, err, &hlua_timeout_applet); |
| 11079 | } |
| 11080 | |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 11081 | static int hlua_forced_yield(char **args, int section_type, struct proxy *curpx, |
Willy Tarreau | 0182516 | 2021-03-09 09:53:46 +0100 | [diff] [blame] | 11082 | const struct proxy *defpx, const char *file, int line, |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 11083 | char **err) |
| 11084 | { |
| 11085 | char *error; |
| 11086 | |
| 11087 | hlua_nb_instruction = strtoll(args[1], &error, 10); |
| 11088 | if (*error != '\0') { |
| 11089 | memprintf(err, "%s: invalid number", args[0]); |
| 11090 | return -1; |
| 11091 | } |
| 11092 | return 0; |
| 11093 | } |
| 11094 | |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 11095 | static int hlua_parse_maxmem(char **args, int section_type, struct proxy *curpx, |
Willy Tarreau | 0182516 | 2021-03-09 09:53:46 +0100 | [diff] [blame] | 11096 | const struct proxy *defpx, const char *file, int line, |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 11097 | char **err) |
| 11098 | { |
| 11099 | char *error; |
| 11100 | |
| 11101 | if (*(args[1]) == 0) { |
| 11102 | memprintf(err, "'%s' expects an integer argument (Lua memory size in MB).\n", args[0]); |
| 11103 | return -1; |
| 11104 | } |
| 11105 | hlua_global_allocator.limit = strtoll(args[1], &error, 10) * 1024L * 1024L; |
| 11106 | if (*error != '\0') { |
| 11107 | memprintf(err, "%s: invalid number %s (error at '%c')", args[0], args[1], *error); |
| 11108 | return -1; |
| 11109 | } |
| 11110 | return 0; |
| 11111 | } |
| 11112 | |
| 11113 | |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 11114 | /* This function is called by the main configuration key "lua-load". It loads and |
| 11115 | * execute an lua file during the parsing of the HAProxy configuration file. It is |
| 11116 | * the main lua entry point. |
| 11117 | * |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 11118 | * This function runs with the HAProxy keywords API. It returns -1 if an error |
| 11119 | * occurs, otherwise it returns 0. |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 11120 | * |
| 11121 | * In some error case, LUA set an error message in top of the stack. This function |
| 11122 | * 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] | 11123 | * |
| 11124 | * This function can fail with an abort() due to an Lua critical error. |
| 11125 | * We are in the configuration parsing process of HAProxy, this abort() is |
| 11126 | * tolerated. |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 11127 | */ |
Thierry Fournier | c93c15c | 2020-11-28 15:02:13 +0100 | [diff] [blame] | 11128 | static int hlua_load_state(char *filename, lua_State *L, char **err) |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 11129 | { |
| 11130 | int error; |
| 11131 | |
| 11132 | /* Just load and compile the file. */ |
Thierry Fournier | c93c15c | 2020-11-28 15:02:13 +0100 | [diff] [blame] | 11133 | error = luaL_loadfile(L, filename); |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 11134 | if (error) { |
Thierry Fournier | c93c15c | 2020-11-28 15:02:13 +0100 | [diff] [blame] | 11135 | memprintf(err, "error in Lua file '%s': %s", filename, lua_tostring(L, -1)); |
| 11136 | lua_pop(L, 1); |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 11137 | return -1; |
| 11138 | } |
| 11139 | |
| 11140 | /* If no syntax error where detected, execute the code. */ |
Thierry Fournier | c93c15c | 2020-11-28 15:02:13 +0100 | [diff] [blame] | 11141 | error = lua_pcall(L, 0, LUA_MULTRET, 0); |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 11142 | switch (error) { |
| 11143 | case LUA_OK: |
| 11144 | break; |
| 11145 | case LUA_ERRRUN: |
Thierry Fournier | c93c15c | 2020-11-28 15:02:13 +0100 | [diff] [blame] | 11146 | memprintf(err, "Lua runtime error: %s\n", lua_tostring(L, -1)); |
| 11147 | lua_pop(L, 1); |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 11148 | return -1; |
| 11149 | case LUA_ERRMEM: |
Thierry Fournier | de6145f | 2020-11-29 00:55:53 +0100 | [diff] [blame] | 11150 | memprintf(err, "Lua out of memory error\n"); |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 11151 | return -1; |
| 11152 | case LUA_ERRERR: |
Thierry Fournier | c93c15c | 2020-11-28 15:02:13 +0100 | [diff] [blame] | 11153 | memprintf(err, "Lua message handler error: %s\n", lua_tostring(L, -1)); |
| 11154 | lua_pop(L, 1); |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 11155 | return -1; |
Christopher Faulet | 08ed98f | 2020-07-28 10:33:25 +0200 | [diff] [blame] | 11156 | #if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM <= 503 |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 11157 | case LUA_ERRGCMM: |
Thierry Fournier | c93c15c | 2020-11-28 15:02:13 +0100 | [diff] [blame] | 11158 | memprintf(err, "Lua garbage collector error: %s\n", lua_tostring(L, -1)); |
| 11159 | lua_pop(L, 1); |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 11160 | return -1; |
Christopher Faulet | 08ed98f | 2020-07-28 10:33:25 +0200 | [diff] [blame] | 11161 | #endif |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 11162 | default: |
Thierry Fournier | c93c15c | 2020-11-28 15:02:13 +0100 | [diff] [blame] | 11163 | memprintf(err, "Lua unknown error: %s\n", lua_tostring(L, -1)); |
| 11164 | lua_pop(L, 1); |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 11165 | return -1; |
| 11166 | } |
| 11167 | |
| 11168 | return 0; |
| 11169 | } |
| 11170 | |
Thierry Fournier | c93c15c | 2020-11-28 15:02:13 +0100 | [diff] [blame] | 11171 | static int hlua_load(char **args, int section_type, struct proxy *curpx, |
Willy Tarreau | 0182516 | 2021-03-09 09:53:46 +0100 | [diff] [blame] | 11172 | const struct proxy *defpx, const char *file, int line, |
Thierry Fournier | c93c15c | 2020-11-28 15:02:13 +0100 | [diff] [blame] | 11173 | char **err) |
| 11174 | { |
| 11175 | if (*(args[1]) == 0) { |
| 11176 | memprintf(err, "'%s' expects a file name as parameter.\n", args[0]); |
| 11177 | return -1; |
| 11178 | } |
| 11179 | |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 11180 | /* loading for global state */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 11181 | hlua_state_id = 0; |
Willy Tarreau | 43ab05b | 2021-09-28 09:43:11 +0200 | [diff] [blame] | 11182 | ha_set_thread(NULL); |
Thierry Fournier | afc63e2 | 2020-11-28 17:06:51 +0100 | [diff] [blame] | 11183 | return hlua_load_state(args[1], hlua_states[0], err); |
Thierry Fournier | c93c15c | 2020-11-28 15:02:13 +0100 | [diff] [blame] | 11184 | } |
| 11185 | |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 11186 | static int hlua_load_per_thread(char **args, int section_type, struct proxy *curpx, |
Willy Tarreau | 0182516 | 2021-03-09 09:53:46 +0100 | [diff] [blame] | 11187 | const struct proxy *defpx, const char *file, int line, |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 11188 | char **err) |
| 11189 | { |
| 11190 | int len; |
| 11191 | |
| 11192 | if (*(args[1]) == 0) { |
| 11193 | memprintf(err, "'%s' expects a file as parameter.\n", args[0]); |
| 11194 | return -1; |
| 11195 | } |
| 11196 | |
| 11197 | if (per_thread_load == NULL) { |
| 11198 | /* allocate the first entry large enough to store the final NULL */ |
| 11199 | per_thread_load = calloc(1, sizeof(*per_thread_load)); |
| 11200 | if (per_thread_load == NULL) { |
| 11201 | memprintf(err, "out of memory error"); |
| 11202 | return -1; |
| 11203 | } |
| 11204 | } |
| 11205 | |
| 11206 | /* count used entries */ |
| 11207 | for (len = 0; per_thread_load[len] != NULL; len++) |
| 11208 | ; |
| 11209 | |
| 11210 | per_thread_load = realloc(per_thread_load, (len + 2) * sizeof(*per_thread_load)); |
| 11211 | if (per_thread_load == NULL) { |
| 11212 | memprintf(err, "out of memory error"); |
| 11213 | return -1; |
| 11214 | } |
| 11215 | |
| 11216 | per_thread_load[len] = strdup(args[1]); |
| 11217 | per_thread_load[len + 1] = NULL; |
| 11218 | |
| 11219 | if (per_thread_load[len] == NULL) { |
| 11220 | memprintf(err, "out of memory error"); |
| 11221 | return -1; |
| 11222 | } |
| 11223 | |
| 11224 | /* loading for thread 1 only */ |
| 11225 | hlua_state_id = 1; |
Willy Tarreau | 43ab05b | 2021-09-28 09:43:11 +0200 | [diff] [blame] | 11226 | ha_set_thread(NULL); |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 11227 | return hlua_load_state(args[1], hlua_states[1], err); |
| 11228 | } |
| 11229 | |
Tim Duesterhus | c9fc9f2 | 2020-01-12 13:55:39 +0100 | [diff] [blame] | 11230 | /* Prepend the given <path> followed by a semicolon to the `package.<type>` variable |
| 11231 | * in the given <ctx>. |
| 11232 | */ |
Thierry Fournier | 3fb9e51 | 2020-11-28 10:13:12 +0100 | [diff] [blame] | 11233 | static int hlua_prepend_path(lua_State *L, char *type, char *path) |
Tim Duesterhus | c9fc9f2 | 2020-01-12 13:55:39 +0100 | [diff] [blame] | 11234 | { |
Thierry Fournier | 3fb9e51 | 2020-11-28 10:13:12 +0100 | [diff] [blame] | 11235 | lua_getglobal(L, "package"); /* push package variable */ |
| 11236 | lua_pushstring(L, path); /* push given path */ |
| 11237 | lua_pushstring(L, ";"); /* push semicolon */ |
| 11238 | lua_getfield(L, -3, type); /* push old path */ |
| 11239 | lua_concat(L, 3); /* concatenate to new path */ |
| 11240 | lua_setfield(L, -2, type); /* store new path */ |
| 11241 | lua_pop(L, 1); /* pop package variable */ |
Tim Duesterhus | c9fc9f2 | 2020-01-12 13:55:39 +0100 | [diff] [blame] | 11242 | |
| 11243 | return 0; |
| 11244 | } |
| 11245 | |
Tim Duesterhus | dd74b5f | 2020-01-12 13:55:40 +0100 | [diff] [blame] | 11246 | static int hlua_config_prepend_path(char **args, int section_type, struct proxy *curpx, |
Willy Tarreau | 0182516 | 2021-03-09 09:53:46 +0100 | [diff] [blame] | 11247 | const struct proxy *defpx, const char *file, int line, |
Tim Duesterhus | dd74b5f | 2020-01-12 13:55:40 +0100 | [diff] [blame] | 11248 | char **err) |
| 11249 | { |
| 11250 | char *path; |
| 11251 | char *type = "path"; |
Tim Duesterhus | 621e74a | 2021-01-03 20:04:36 +0100 | [diff] [blame] | 11252 | struct prepend_path *p = NULL; |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 11253 | |
Tim Duesterhus | dd74b5f | 2020-01-12 13:55:40 +0100 | [diff] [blame] | 11254 | if (too_many_args(2, args, err, NULL)) { |
Tim Duesterhus | 621e74a | 2021-01-03 20:04:36 +0100 | [diff] [blame] | 11255 | goto err; |
Tim Duesterhus | dd74b5f | 2020-01-12 13:55:40 +0100 | [diff] [blame] | 11256 | } |
| 11257 | |
| 11258 | if (!(*args[1])) { |
| 11259 | memprintf(err, "'%s' expects to receive a <path> as argument", args[0]); |
Tim Duesterhus | 621e74a | 2021-01-03 20:04:36 +0100 | [diff] [blame] | 11260 | goto err; |
Tim Duesterhus | dd74b5f | 2020-01-12 13:55:40 +0100 | [diff] [blame] | 11261 | } |
| 11262 | path = args[1]; |
| 11263 | |
| 11264 | if (*args[2]) { |
| 11265 | if (strcmp(args[2], "path") != 0 && strcmp(args[2], "cpath") != 0) { |
| 11266 | memprintf(err, "'%s' expects <type> to either be 'path' or 'cpath'", args[0]); |
Tim Duesterhus | 621e74a | 2021-01-03 20:04:36 +0100 | [diff] [blame] | 11267 | goto err; |
Tim Duesterhus | dd74b5f | 2020-01-12 13:55:40 +0100 | [diff] [blame] | 11268 | } |
| 11269 | type = args[2]; |
| 11270 | } |
| 11271 | |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 11272 | p = calloc(1, sizeof(*p)); |
| 11273 | if (p == NULL) { |
Tim Duesterhus | f89d43a | 2021-01-03 20:04:37 +0100 | [diff] [blame] | 11274 | memprintf(err, "memory allocation failed"); |
Tim Duesterhus | 621e74a | 2021-01-03 20:04:36 +0100 | [diff] [blame] | 11275 | goto err; |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 11276 | } |
| 11277 | p->path = strdup(path); |
| 11278 | if (p->path == NULL) { |
Tim Duesterhus | f89d43a | 2021-01-03 20:04:37 +0100 | [diff] [blame] | 11279 | memprintf(err, "memory allocation failed"); |
Tim Duesterhus | 621e74a | 2021-01-03 20:04:36 +0100 | [diff] [blame] | 11280 | goto err2; |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 11281 | } |
| 11282 | p->type = strdup(type); |
| 11283 | if (p->type == NULL) { |
Tim Duesterhus | f89d43a | 2021-01-03 20:04:37 +0100 | [diff] [blame] | 11284 | memprintf(err, "memory allocation failed"); |
Tim Duesterhus | 621e74a | 2021-01-03 20:04:36 +0100 | [diff] [blame] | 11285 | goto err2; |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 11286 | } |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 11287 | LIST_APPEND(&prepend_path_list, &p->l); |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 11288 | |
Tim Duesterhus | 9e5e586 | 2021-10-11 18:51:08 +0200 | [diff] [blame] | 11289 | /* Handle the global state and the per-thread state for the first |
| 11290 | * thread. The remaining threads will be initialized based on |
| 11291 | * prepend_path_list. |
| 11292 | */ |
| 11293 | for (size_t i = 0; i < 2; i++) { |
| 11294 | lua_State *L = hlua_states[i]; |
| 11295 | const char *error; |
| 11296 | |
| 11297 | if (setjmp(safe_ljmp_env) != 0) { |
| 11298 | lua_atpanic(L, hlua_panic_safe); |
| 11299 | if (lua_type(L, -1) == LUA_TSTRING) |
| 11300 | error = lua_tostring(L, -1); |
| 11301 | else |
| 11302 | error = "critical error"; |
| 11303 | fprintf(stderr, "lua-prepend-path: %s.\n", error); |
| 11304 | exit(1); |
| 11305 | } else { |
| 11306 | lua_atpanic(L, hlua_panic_ljmp); |
| 11307 | } |
| 11308 | |
| 11309 | hlua_prepend_path(L, type, path); |
| 11310 | |
| 11311 | lua_atpanic(L, hlua_panic_safe); |
| 11312 | } |
| 11313 | |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 11314 | return 0; |
Tim Duesterhus | 621e74a | 2021-01-03 20:04:36 +0100 | [diff] [blame] | 11315 | |
| 11316 | err2: |
| 11317 | free(p->type); |
| 11318 | free(p->path); |
| 11319 | err: |
| 11320 | free(p); |
| 11321 | return -1; |
Tim Duesterhus | dd74b5f | 2020-01-12 13:55:40 +0100 | [diff] [blame] | 11322 | } |
| 11323 | |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 11324 | /* configuration keywords declaration */ |
| 11325 | static struct cfg_kw_list cfg_kws = {{ },{ |
Tim Duesterhus | dd74b5f | 2020-01-12 13:55:40 +0100 | [diff] [blame] | 11326 | { CFG_GLOBAL, "lua-prepend-path", hlua_config_prepend_path }, |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 11327 | { CFG_GLOBAL, "lua-load", hlua_load }, |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 11328 | { CFG_GLOBAL, "lua-load-per-thread", hlua_load_per_thread }, |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 11329 | { CFG_GLOBAL, "tune.lua.session-timeout", hlua_session_timeout }, |
| 11330 | { CFG_GLOBAL, "tune.lua.task-timeout", hlua_task_timeout }, |
Thierry FOURNIER | 56da101 | 2015-10-01 08:42:31 +0200 | [diff] [blame] | 11331 | { CFG_GLOBAL, "tune.lua.service-timeout", hlua_applet_timeout }, |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 11332 | { CFG_GLOBAL, "tune.lua.forced-yield", hlua_forced_yield }, |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 11333 | { CFG_GLOBAL, "tune.lua.maxmem", hlua_parse_maxmem }, |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 11334 | { 0, NULL, NULL }, |
| 11335 | }}; |
| 11336 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 11337 | INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws); |
| 11338 | |
Christopher Faulet | afd8f10 | 2018-11-08 11:34:21 +0100 | [diff] [blame] | 11339 | |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 11340 | /* This function can fail with an abort() due to an Lua critical error. |
| 11341 | * We are in the initialisation process of HAProxy, this abort() is |
| 11342 | * tolerated. |
| 11343 | */ |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 11344 | int hlua_post_init_state(lua_State *L) |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 11345 | { |
| 11346 | struct hlua_init_function *init; |
| 11347 | const char *msg; |
| 11348 | enum hlua_exec ret; |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 11349 | const char *error; |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 11350 | const char *kind; |
| 11351 | const char *trace; |
| 11352 | int return_status = 1; |
| 11353 | #if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504 |
| 11354 | int nres; |
| 11355 | #endif |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 11356 | |
Willy Tarreau | cdb5346 | 2020-12-02 12:12:00 +0100 | [diff] [blame] | 11357 | /* disable memory limit checks if limit is not set */ |
| 11358 | if (!hlua_global_allocator.limit) |
| 11359 | hlua_global_allocator.limit = ~hlua_global_allocator.limit; |
| 11360 | |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 11361 | /* Call post initialisation function in safe environment. */ |
Thierry Fournier | 3c53932 | 2020-11-28 16:05:05 +0100 | [diff] [blame] | 11362 | if (setjmp(safe_ljmp_env) != 0) { |
| 11363 | lua_atpanic(L, hlua_panic_safe); |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 11364 | if (lua_type(L, -1) == LUA_TSTRING) |
| 11365 | error = lua_tostring(L, -1); |
Thierry Fournier | 3d4a675 | 2016-02-19 20:53:30 +0100 | [diff] [blame] | 11366 | else |
| 11367 | error = "critical error"; |
| 11368 | fprintf(stderr, "Lua post-init: %s.\n", error); |
| 11369 | exit(1); |
Thierry Fournier | 3c53932 | 2020-11-28 16:05:05 +0100 | [diff] [blame] | 11370 | } else { |
| 11371 | lua_atpanic(L, hlua_panic_ljmp); |
Thierry Fournier | 3d4a675 | 2016-02-19 20:53:30 +0100 | [diff] [blame] | 11372 | } |
Frédéric Lécaille | 54f2bcf | 2018-08-29 13:46:24 +0200 | [diff] [blame] | 11373 | |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 11374 | hlua_fcn_post_init(L); |
Thierry Fournier | 3d4a675 | 2016-02-19 20:53:30 +0100 | [diff] [blame] | 11375 | |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 11376 | list_for_each_entry(init, &hlua_init_functions[hlua_state_id], l) { |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 11377 | lua_rawgeti(L, LUA_REGISTRYINDEX, init->function_ref); |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 11378 | |
| 11379 | #if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504 |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 11380 | ret = lua_resume(L, L, 0, &nres); |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 11381 | #else |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 11382 | ret = lua_resume(L, L, 0); |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 11383 | #endif |
| 11384 | kind = NULL; |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 11385 | switch (ret) { |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 11386 | |
| 11387 | case LUA_OK: |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 11388 | lua_pop(L, -1); |
Thierry Fournier | 13d08b7 | 2020-11-28 11:02:58 +0100 | [diff] [blame] | 11389 | break; |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 11390 | |
| 11391 | case LUA_ERRERR: |
| 11392 | kind = "message handler error"; |
Thayne McCombs | 8f0cc5c | 2021-01-07 21:35:52 -0700 | [diff] [blame] | 11393 | /* Fall through */ |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 11394 | case LUA_ERRRUN: |
| 11395 | if (!kind) |
| 11396 | kind = "runtime error"; |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 11397 | msg = lua_tostring(L, -1); |
| 11398 | lua_settop(L, 0); /* Empty the stack. */ |
| 11399 | lua_pop(L, 1); |
Christopher Faulet | d09cc51 | 2021-03-24 14:48:45 +0100 | [diff] [blame] | 11400 | trace = hlua_traceback(L, ", "); |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 11401 | if (msg) |
| 11402 | ha_alert("Lua init: %s: '%s' from %s\n", kind, msg, trace); |
| 11403 | else |
| 11404 | ha_alert("Lua init: unknown %s from %s\n", kind, trace); |
| 11405 | return_status = 0; |
| 11406 | break; |
| 11407 | |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 11408 | default: |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 11409 | /* Unknown error */ |
| 11410 | kind = "Unknown error"; |
Thayne McCombs | 8f0cc5c | 2021-01-07 21:35:52 -0700 | [diff] [blame] | 11411 | /* Fall through */ |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 11412 | case LUA_YIELD: |
| 11413 | /* yield is not configured at this step, this state doesn't happen */ |
| 11414 | if (!kind) |
| 11415 | kind = "yield not allowed"; |
Thayne McCombs | 8f0cc5c | 2021-01-07 21:35:52 -0700 | [diff] [blame] | 11416 | /* Fall through */ |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 11417 | case LUA_ERRMEM: |
| 11418 | if (!kind) |
| 11419 | kind = "out of memory error"; |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 11420 | lua_settop(L, 0); |
| 11421 | lua_pop(L, 1); |
Christopher Faulet | d09cc51 | 2021-03-24 14:48:45 +0100 | [diff] [blame] | 11422 | trace = hlua_traceback(L, ", "); |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 11423 | ha_alert("Lua init: %s: %s\n", kind, trace); |
| 11424 | return_status = 0; |
| 11425 | break; |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 11426 | } |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 11427 | if (!return_status) |
| 11428 | break; |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 11429 | } |
Thierry Fournier | 3c53932 | 2020-11-28 16:05:05 +0100 | [diff] [blame] | 11430 | |
| 11431 | lua_atpanic(L, hlua_panic_safe); |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 11432 | return return_status; |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 11433 | } |
| 11434 | |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 11435 | int hlua_post_init() |
| 11436 | { |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 11437 | int ret; |
| 11438 | int i; |
| 11439 | int errors; |
| 11440 | char *err = NULL; |
| 11441 | struct hlua_function *fcn; |
Christopher Faulet | 69c581a | 2021-05-31 08:54:04 +0200 | [diff] [blame] | 11442 | struct hlua_reg_filter *reg_flt; |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 11443 | |
Willy Tarreau | b131049 | 2021-08-30 09:35:18 +0200 | [diff] [blame] | 11444 | #if defined(USE_OPENSSL) |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 11445 | /* Initialize SSL server. */ |
Amaury Denoyelle | 704ba1d | 2021-03-24 17:57:47 +0100 | [diff] [blame] | 11446 | if (socket_ssl->xprt->prepare_srv) { |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 11447 | int saved_used_backed = global.ssl_used_backend; |
| 11448 | // don't affect maxconn automatic computation |
Amaury Denoyelle | 704ba1d | 2021-03-24 17:57:47 +0100 | [diff] [blame] | 11449 | socket_ssl->xprt->prepare_srv(socket_ssl); |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 11450 | global.ssl_used_backend = saved_used_backed; |
| 11451 | } |
| 11452 | #endif |
| 11453 | |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 11454 | /* Perform post init of common thread */ |
| 11455 | hlua_state_id = 0; |
Willy Tarreau | 43ab05b | 2021-09-28 09:43:11 +0200 | [diff] [blame] | 11456 | ha_set_thread(&ha_thread_info[0]); |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 11457 | ret = hlua_post_init_state(hlua_states[hlua_state_id]); |
| 11458 | if (ret == 0) |
| 11459 | return 0; |
| 11460 | |
| 11461 | /* init remaining lua states and load files */ |
| 11462 | for (hlua_state_id = 2; hlua_state_id < global.nbthread + 1; hlua_state_id++) { |
| 11463 | |
| 11464 | /* set thread context */ |
Willy Tarreau | 43ab05b | 2021-09-28 09:43:11 +0200 | [diff] [blame] | 11465 | ha_set_thread(&ha_thread_info[hlua_state_id - 1]); |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 11466 | |
| 11467 | /* Init lua state */ |
| 11468 | hlua_states[hlua_state_id] = hlua_init_state(hlua_state_id); |
| 11469 | |
| 11470 | /* Load lua files */ |
| 11471 | for (i = 0; per_thread_load && per_thread_load[i]; i++) { |
| 11472 | ret = hlua_load_state(per_thread_load[i], hlua_states[hlua_state_id], &err); |
| 11473 | if (ret != 0) { |
| 11474 | ha_alert("Lua init: %s\n", err); |
| 11475 | return 0; |
| 11476 | } |
| 11477 | } |
| 11478 | } |
| 11479 | |
| 11480 | /* Reset thread context */ |
Willy Tarreau | 43ab05b | 2021-09-28 09:43:11 +0200 | [diff] [blame] | 11481 | ha_set_thread(NULL); |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 11482 | |
| 11483 | /* Execute post init for all states */ |
| 11484 | for (hlua_state_id = 1; hlua_state_id < global.nbthread + 1; hlua_state_id++) { |
| 11485 | |
| 11486 | /* set thread context */ |
Willy Tarreau | 43ab05b | 2021-09-28 09:43:11 +0200 | [diff] [blame] | 11487 | ha_set_thread(&ha_thread_info[hlua_state_id - 1]); |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 11488 | |
| 11489 | /* run post init */ |
| 11490 | ret = hlua_post_init_state(hlua_states[hlua_state_id]); |
| 11491 | if (ret == 0) |
| 11492 | return 0; |
| 11493 | } |
| 11494 | |
| 11495 | /* Reset thread context */ |
Willy Tarreau | 43ab05b | 2021-09-28 09:43:11 +0200 | [diff] [blame] | 11496 | ha_set_thread(NULL); |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 11497 | |
| 11498 | /* control functions registering. Each function must have: |
| 11499 | * - only the function_ref[0] set positive and all other to -1 |
| 11500 | * - only the function_ref[0] set to -1 and all other positive |
| 11501 | * This ensure a same reference is not used both in shared |
| 11502 | * lua state and thread dedicated lua state. Note: is the case |
Ilya Shipitsin | b8888ab | 2021-01-06 21:20:16 +0500 | [diff] [blame] | 11503 | * reach, the shared state is priority, but the bug will be |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 11504 | * complicated to found for the end user. |
| 11505 | */ |
| 11506 | errors = 0; |
| 11507 | list_for_each_entry(fcn, &referenced_functions, l) { |
| 11508 | ret = 0; |
| 11509 | for (i = 1; i < global.nbthread + 1; i++) { |
| 11510 | if (fcn->function_ref[i] == -1) |
| 11511 | ret--; |
| 11512 | else |
| 11513 | ret++; |
| 11514 | } |
| 11515 | if (abs(ret) != global.nbthread) { |
| 11516 | ha_alert("Lua function '%s' is not referenced in all thread. " |
| 11517 | "Expect function in all thread or in none thread.\n", fcn->name); |
| 11518 | errors++; |
| 11519 | continue; |
| 11520 | } |
| 11521 | |
| 11522 | if ((fcn->function_ref[0] == -1) == (ret < 0)) { |
Ilya Shipitsin | b8888ab | 2021-01-06 21:20:16 +0500 | [diff] [blame] | 11523 | ha_alert("Lua function '%s' is referenced both ins shared Lua context (through lua-load) " |
| 11524 | "and per-thread Lua context (through lua-load-per-thread). these two context " |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 11525 | "exclusive.\n", fcn->name); |
| 11526 | errors++; |
| 11527 | } |
| 11528 | } |
| 11529 | |
Christopher Faulet | 69c581a | 2021-05-31 08:54:04 +0200 | [diff] [blame] | 11530 | /* Do the same with registered filters */ |
| 11531 | list_for_each_entry(reg_flt, &referenced_filters, l) { |
| 11532 | ret = 0; |
| 11533 | for (i = 1; i < global.nbthread + 1; i++) { |
| 11534 | if (reg_flt->flt_ref[i] == -1) |
| 11535 | ret--; |
| 11536 | else |
| 11537 | ret++; |
| 11538 | } |
| 11539 | if (abs(ret) != global.nbthread) { |
| 11540 | ha_alert("Lua filter '%s' is not referenced in all thread. " |
| 11541 | "Expect function in all thread or in none thread.\n", reg_flt->name); |
| 11542 | errors++; |
| 11543 | continue; |
| 11544 | } |
| 11545 | |
| 11546 | if ((reg_flt->flt_ref[0] == -1) == (ret < 0)) { |
| 11547 | ha_alert("Lua filter '%s' is referenced both ins shared Lua context (through lua-load) " |
| 11548 | "and per-thread Lua context (through lua-load-per-thread). these two context " |
| 11549 | "exclusive.\n", fcn->name); |
| 11550 | errors++; |
| 11551 | } |
| 11552 | } |
| 11553 | |
| 11554 | |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 11555 | if (errors > 0) |
| 11556 | return 0; |
| 11557 | |
Ilya Shipitsin | b8888ab | 2021-01-06 21:20:16 +0500 | [diff] [blame] | 11558 | /* after this point, this global will no longer be used, so set to |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 11559 | * -1 in order to have probably a segfault if someone use it |
| 11560 | */ |
| 11561 | hlua_state_id = -1; |
| 11562 | |
| 11563 | return 1; |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 11564 | } |
| 11565 | |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 11566 | /* The memory allocator used by the Lua stack. <ud> is a pointer to the |
| 11567 | * allocator's context. <ptr> is the pointer to alloc/free/realloc. <osize> |
| 11568 | * 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] | 11569 | * allocation. <nsize> is the requested new size. A new allocation is |
| 11570 | * indicated by <ptr> being NULL. A free is indicated by <nsize> being |
Willy Tarreau | cdb5346 | 2020-12-02 12:12:00 +0100 | [diff] [blame] | 11571 | * zero. This one verifies that the limits are respected but is optimized |
| 11572 | * for the fast case where limits are not used, hence stats are not updated. |
Willy Tarreau | a5efdff | 2021-10-22 16:00:02 +0200 | [diff] [blame] | 11573 | * |
| 11574 | * Warning: while this API ressembles glibc's realloc() a lot, glibc surpasses |
| 11575 | * POSIX by making realloc(ptr,0) an effective free(), but others do not do |
| 11576 | * that and will simply allocate zero as if it were the result of malloc(0), |
| 11577 | * so mapping this onto realloc() will lead to memory leaks on non-glibc |
| 11578 | * systems. |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 11579 | */ |
| 11580 | static void *hlua_alloc(void *ud, void *ptr, size_t osize, size_t nsize) |
| 11581 | { |
| 11582 | struct hlua_mem_allocator *zone = ud; |
Willy Tarreau | cdb5346 | 2020-12-02 12:12:00 +0100 | [diff] [blame] | 11583 | size_t limit, old, new; |
| 11584 | |
| 11585 | /* a limit of ~0 means unlimited and boot complete, so there's no need |
| 11586 | * for accounting anymore. |
| 11587 | */ |
Willy Tarreau | a5efdff | 2021-10-22 16:00:02 +0200 | [diff] [blame] | 11588 | if (likely(~zone->limit == 0)) { |
| 11589 | if (!nsize) |
| 11590 | ha_free(&ptr); |
| 11591 | else |
| 11592 | ptr = realloc(ptr, nsize); |
| 11593 | return ptr; |
| 11594 | } |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 11595 | |
Willy Tarreau | d36c7fa | 2020-12-02 12:26:29 +0100 | [diff] [blame] | 11596 | if (!ptr) |
| 11597 | osize = 0; |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 11598 | |
Willy Tarreau | cdb5346 | 2020-12-02 12:12:00 +0100 | [diff] [blame] | 11599 | /* enforce strict limits across all threads */ |
| 11600 | limit = zone->limit; |
| 11601 | old = _HA_ATOMIC_LOAD(&zone->allocated); |
| 11602 | do { |
| 11603 | new = old + nsize - osize; |
| 11604 | if (unlikely(nsize && limit && new > limit)) |
| 11605 | return NULL; |
| 11606 | } while (!_HA_ATOMIC_CAS(&zone->allocated, &old, new)); |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 11607 | |
Willy Tarreau | a5efdff | 2021-10-22 16:00:02 +0200 | [diff] [blame] | 11608 | if (!nsize) |
| 11609 | ha_free(&ptr); |
| 11610 | else |
| 11611 | ptr = realloc(ptr, nsize); |
Willy Tarreau | cdb5346 | 2020-12-02 12:12:00 +0100 | [diff] [blame] | 11612 | |
| 11613 | if (unlikely(!ptr && nsize)) // failed |
| 11614 | _HA_ATOMIC_SUB(&zone->allocated, nsize - osize); |
| 11615 | |
| 11616 | __ha_barrier_atomic_store(); |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 11617 | return ptr; |
| 11618 | } |
| 11619 | |
Thierry Fournier | ecb83c2 | 2020-11-28 15:49:44 +0100 | [diff] [blame] | 11620 | /* 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] | 11621 | * We are in the initialisation process of HAProxy, this abort() is |
| 11622 | * tolerated. |
| 11623 | */ |
Thierry Fournier | ecb83c2 | 2020-11-28 15:49:44 +0100 | [diff] [blame] | 11624 | lua_State *hlua_init_state(int thread_num) |
Thierry FOURNIER | 6f1fd48 | 2015-01-23 14:06:13 +0100 | [diff] [blame] | 11625 | { |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 11626 | int i; |
Thierry FOURNIER | d0fa538 | 2015-02-16 20:14:51 +0100 | [diff] [blame] | 11627 | int idx; |
| 11628 | struct sample_fetch *sf; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 11629 | struct sample_conv *sc; |
Thierry FOURNIER | d0fa538 | 2015-02-16 20:14:51 +0100 | [diff] [blame] | 11630 | char *p; |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 11631 | const char *error_msg; |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 11632 | void **context; |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11633 | lua_State *L; |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 11634 | struct prepend_path *pp; |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 11635 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 11636 | /* Init main lua stack. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11637 | L = lua_newstate(hlua_alloc, &hlua_global_allocator); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 11638 | |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 11639 | /* Initialise Lua context to NULL */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11640 | context = lua_getextraspace(L); |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 11641 | *context = NULL; |
| 11642 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 11643 | /* From this point, until the end of the initialisation function, |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 11644 | * the Lua function can fail with an abort. We are in the initialisation |
| 11645 | * process of HAProxy, this abort() is tolerated. |
| 11646 | */ |
| 11647 | |
Thierry Fournier | 3c53932 | 2020-11-28 16:05:05 +0100 | [diff] [blame] | 11648 | /* Call post initialisation function in safe environment. */ |
| 11649 | if (setjmp(safe_ljmp_env) != 0) { |
| 11650 | lua_atpanic(L, hlua_panic_safe); |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11651 | if (lua_type(L, -1) == LUA_TSTRING) |
| 11652 | error_msg = lua_tostring(L, -1); |
Thierry Fournier | 2f05cc6 | 2020-11-28 16:08:02 +0100 | [diff] [blame] | 11653 | else |
| 11654 | error_msg = "critical error"; |
| 11655 | fprintf(stderr, "Lua init: %s.\n", error_msg); |
| 11656 | exit(1); |
Thierry Fournier | 3c53932 | 2020-11-28 16:05:05 +0100 | [diff] [blame] | 11657 | } else { |
| 11658 | lua_atpanic(L, hlua_panic_ljmp); |
Thierry Fournier | 2f05cc6 | 2020-11-28 16:08:02 +0100 | [diff] [blame] | 11659 | } |
| 11660 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 11661 | /* Initialise lua. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11662 | luaL_openlibs(L); |
Tim Duesterhus | 541fe1e | 2020-01-12 13:55:41 +0100 | [diff] [blame] | 11663 | #define HLUA_PREPEND_PATH_TOSTRING1(x) #x |
| 11664 | #define HLUA_PREPEND_PATH_TOSTRING(x) HLUA_PREPEND_PATH_TOSTRING1(x) |
| 11665 | #ifdef HLUA_PREPEND_PATH |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11666 | hlua_prepend_path(L, "path", HLUA_PREPEND_PATH_TOSTRING(HLUA_PREPEND_PATH)); |
Tim Duesterhus | 541fe1e | 2020-01-12 13:55:41 +0100 | [diff] [blame] | 11667 | #endif |
| 11668 | #ifdef HLUA_PREPEND_CPATH |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11669 | hlua_prepend_path(L, "cpath", HLUA_PREPEND_PATH_TOSTRING(HLUA_PREPEND_CPATH)); |
Tim Duesterhus | 541fe1e | 2020-01-12 13:55:41 +0100 | [diff] [blame] | 11670 | #endif |
| 11671 | #undef HLUA_PREPEND_PATH_TOSTRING |
| 11672 | #undef HLUA_PREPEND_PATH_TOSTRING1 |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 11673 | |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 11674 | /* Apply configured prepend path */ |
| 11675 | list_for_each_entry(pp, &prepend_path_list, l) |
| 11676 | hlua_prepend_path(L, pp->type, pp->path); |
| 11677 | |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 11678 | /* |
| 11679 | * |
| 11680 | * Create "core" object. |
| 11681 | * |
| 11682 | */ |
| 11683 | |
Thierry FOURNIER | a2d8c65 | 2015-03-11 17:29:39 +0100 | [diff] [blame] | 11684 | /* This table entry is the object "core" base. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11685 | lua_newtable(L); |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 11686 | |
Thierry Fournier | ecb83c2 | 2020-11-28 15:49:44 +0100 | [diff] [blame] | 11687 | /* set the thread id */ |
| 11688 | hlua_class_const_int(L, "thread", thread_num); |
| 11689 | |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 11690 | /* Push the loglevel constants. */ |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 11691 | for (i = 0; i < NB_LOG_LEVELS; i++) |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11692 | hlua_class_const_int(L, log_levels[i], i); |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 11693 | |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 11694 | /* Register special functions. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11695 | hlua_class_function(L, "register_init", hlua_register_init); |
| 11696 | hlua_class_function(L, "register_task", hlua_register_task); |
| 11697 | hlua_class_function(L, "register_fetches", hlua_register_fetches); |
| 11698 | hlua_class_function(L, "register_converters", hlua_register_converters); |
| 11699 | hlua_class_function(L, "register_action", hlua_register_action); |
| 11700 | hlua_class_function(L, "register_service", hlua_register_service); |
| 11701 | hlua_class_function(L, "register_cli", hlua_register_cli); |
Christopher Faulet | 69c581a | 2021-05-31 08:54:04 +0200 | [diff] [blame] | 11702 | hlua_class_function(L, "register_filter", hlua_register_filter); |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11703 | hlua_class_function(L, "yield", hlua_yield); |
| 11704 | hlua_class_function(L, "set_nice", hlua_set_nice); |
| 11705 | hlua_class_function(L, "sleep", hlua_sleep); |
| 11706 | hlua_class_function(L, "msleep", hlua_msleep); |
| 11707 | hlua_class_function(L, "add_acl", hlua_add_acl); |
| 11708 | hlua_class_function(L, "del_acl", hlua_del_acl); |
| 11709 | hlua_class_function(L, "set_map", hlua_set_map); |
| 11710 | hlua_class_function(L, "del_map", hlua_del_map); |
| 11711 | hlua_class_function(L, "tcp", hlua_socket_new); |
William Lallemand | 3956c4e | 2021-09-21 16:25:15 +0200 | [diff] [blame] | 11712 | hlua_class_function(L, "httpclient", hlua_httpclient_new); |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11713 | hlua_class_function(L, "log", hlua_log); |
| 11714 | hlua_class_function(L, "Debug", hlua_log_debug); |
| 11715 | hlua_class_function(L, "Info", hlua_log_info); |
| 11716 | hlua_class_function(L, "Warning", hlua_log_warning); |
| 11717 | hlua_class_function(L, "Alert", hlua_log_alert); |
| 11718 | hlua_class_function(L, "done", hlua_done); |
| 11719 | hlua_fcn_reg_core_fcn(L); |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 11720 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11721 | lua_setglobal(L, "core"); |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 11722 | |
| 11723 | /* |
| 11724 | * |
Christopher Faulet | 0f3c890 | 2020-01-31 18:57:12 +0100 | [diff] [blame] | 11725 | * Create "act" object. |
| 11726 | * |
| 11727 | */ |
| 11728 | |
| 11729 | /* This table entry is the object "act" base. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11730 | lua_newtable(L); |
Christopher Faulet | 0f3c890 | 2020-01-31 18:57:12 +0100 | [diff] [blame] | 11731 | |
| 11732 | /* push action return constants */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11733 | hlua_class_const_int(L, "CONTINUE", ACT_RET_CONT); |
| 11734 | hlua_class_const_int(L, "STOP", ACT_RET_STOP); |
| 11735 | hlua_class_const_int(L, "YIELD", ACT_RET_YIELD); |
| 11736 | hlua_class_const_int(L, "ERROR", ACT_RET_ERR); |
| 11737 | hlua_class_const_int(L, "DONE", ACT_RET_DONE); |
| 11738 | hlua_class_const_int(L, "DENY", ACT_RET_DENY); |
| 11739 | hlua_class_const_int(L, "ABORT", ACT_RET_ABRT); |
| 11740 | hlua_class_const_int(L, "INVALID", ACT_RET_INV); |
Christopher Faulet | 0f3c890 | 2020-01-31 18:57:12 +0100 | [diff] [blame] | 11741 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11742 | hlua_class_function(L, "wake_time", hlua_set_wake_time); |
Christopher Faulet | 2c2c2e3 | 2020-01-31 19:07:52 +0100 | [diff] [blame] | 11743 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11744 | lua_setglobal(L, "act"); |
Christopher Faulet | 0f3c890 | 2020-01-31 18:57:12 +0100 | [diff] [blame] | 11745 | |
| 11746 | /* |
| 11747 | * |
Christopher Faulet | 69c581a | 2021-05-31 08:54:04 +0200 | [diff] [blame] | 11748 | * Create "Filter" object. |
| 11749 | * |
| 11750 | */ |
| 11751 | |
| 11752 | /* This table entry is the object "filter" base. */ |
| 11753 | lua_newtable(L); |
| 11754 | |
| 11755 | /* push flags and constants */ |
| 11756 | hlua_class_const_int(L, "CONTINUE", 1); |
| 11757 | hlua_class_const_int(L, "WAIT", 0); |
| 11758 | hlua_class_const_int(L, "ERROR", -1); |
| 11759 | |
| 11760 | hlua_class_const_int(L, "FLT_CFG_FL_HTX", FLT_CFG_FL_HTX); |
| 11761 | |
Christopher Faulet | c404f11 | 2020-02-26 15:03:09 +0100 | [diff] [blame] | 11762 | hlua_class_function(L, "wake_time", hlua_set_wake_time); |
| 11763 | hlua_class_function(L, "register_data_filter", hlua_register_data_filter); |
| 11764 | hlua_class_function(L, "unregister_data_filter", hlua_unregister_data_filter); |
| 11765 | |
Christopher Faulet | 69c581a | 2021-05-31 08:54:04 +0200 | [diff] [blame] | 11766 | lua_setglobal(L, "filter"); |
| 11767 | |
| 11768 | /* |
| 11769 | * |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 11770 | * Register class Map |
| 11771 | * |
| 11772 | */ |
| 11773 | |
| 11774 | /* This table entry is the object "Map" base. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11775 | lua_newtable(L); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 11776 | |
| 11777 | /* register pattern types. */ |
| 11778 | for (i=0; i<PAT_MATCH_NUM; i++) |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11779 | hlua_class_const_int(L, pat_match_names[i], i); |
Thierry FOURNIER | 4dc7197 | 2017-01-28 08:33:08 +0100 | [diff] [blame] | 11780 | for (i=0; i<PAT_MATCH_NUM; i++) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 11781 | snprintf(trash.area, trash.size, "_%s", pat_match_names[i]); |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11782 | hlua_class_const_int(L, trash.area, i); |
Thierry FOURNIER | 4dc7197 | 2017-01-28 08:33:08 +0100 | [diff] [blame] | 11783 | } |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 11784 | |
| 11785 | /* register constructor. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11786 | hlua_class_function(L, "new", hlua_map_new); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 11787 | |
| 11788 | /* Create and fill the metatable. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11789 | lua_newtable(L); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 11790 | |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 11791 | /* Create and fill the __index entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11792 | lua_pushstring(L, "__index"); |
| 11793 | lua_newtable(L); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 11794 | |
| 11795 | /* Register . */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11796 | hlua_class_function(L, "lookup", hlua_map_lookup); |
| 11797 | hlua_class_function(L, "slookup", hlua_map_slookup); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 11798 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11799 | lua_rawset(L, -3); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 11800 | |
Thierry Fournier | 45e78d7 | 2016-02-19 18:34:46 +0100 | [diff] [blame] | 11801 | /* Register previous table in the registry with reference and named entry. |
| 11802 | * The function hlua_register_metatable() pops the stack, so we |
| 11803 | * previously create a copy of the table. |
| 11804 | */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11805 | lua_pushvalue(L, -1); /* Copy the -1 entry and push it on the stack. */ |
| 11806 | class_map_ref = hlua_register_metatable(L, CLASS_MAP); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 11807 | |
| 11808 | /* Assign the metatable to the mai Map object. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11809 | lua_setmetatable(L, -2); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 11810 | |
| 11811 | /* Set a name to the table. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11812 | lua_setglobal(L, "Map"); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 11813 | |
| 11814 | /* |
| 11815 | * |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 11816 | * Register class Channel |
| 11817 | * |
| 11818 | */ |
| 11819 | |
| 11820 | /* Create and fill the metatable. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11821 | lua_newtable(L); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 11822 | |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 11823 | /* Create and fill the __index entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11824 | lua_pushstring(L, "__index"); |
| 11825 | lua_newtable(L); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 11826 | |
| 11827 | /* Register . */ |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 11828 | hlua_class_function(L, "data", hlua_channel_get_data); |
| 11829 | hlua_class_function(L, "line", hlua_channel_get_line); |
| 11830 | hlua_class_function(L, "set", hlua_channel_set_data); |
| 11831 | hlua_class_function(L, "remove", hlua_channel_del_data); |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11832 | hlua_class_function(L, "append", hlua_channel_append); |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 11833 | hlua_class_function(L, "prepend", hlua_channel_prepend); |
| 11834 | hlua_class_function(L, "insert", hlua_channel_insert_data); |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11835 | hlua_class_function(L, "send", hlua_channel_send); |
| 11836 | hlua_class_function(L, "forward", hlua_channel_forward); |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 11837 | hlua_class_function(L, "input", hlua_channel_get_in_len); |
| 11838 | hlua_class_function(L, "output", hlua_channel_get_out_len); |
| 11839 | hlua_class_function(L, "may_recv", hlua_channel_may_recv); |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11840 | hlua_class_function(L, "is_full", hlua_channel_is_full); |
| 11841 | hlua_class_function(L, "is_resp", hlua_channel_is_resp); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 11842 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 11843 | /* Deprecated API */ |
| 11844 | hlua_class_function(L, "get", hlua_channel_get); |
| 11845 | hlua_class_function(L, "dup", hlua_channel_dup); |
| 11846 | hlua_class_function(L, "getline", hlua_channel_getline); |
| 11847 | hlua_class_function(L, "get_in_len", hlua_channel_get_in_len); |
| 11848 | hlua_class_function(L, "get_out_len", hlua_channel_get_out_len); |
| 11849 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11850 | lua_rawset(L, -3); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 11851 | |
| 11852 | /* Register previous table in the registry with reference and named entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11853 | class_channel_ref = hlua_register_metatable(L, CLASS_CHANNEL); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 11854 | |
| 11855 | /* |
| 11856 | * |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 11857 | * Register class Fetches |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 11858 | * |
| 11859 | */ |
| 11860 | |
| 11861 | /* Create and fill the metatable. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11862 | lua_newtable(L); |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 11863 | |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 11864 | /* Create and fill the __index entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11865 | lua_pushstring(L, "__index"); |
| 11866 | lua_newtable(L); |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 11867 | |
Thierry FOURNIER | d0fa538 | 2015-02-16 20:14:51 +0100 | [diff] [blame] | 11868 | /* Browse existing fetches and create the associated |
| 11869 | * object method. |
| 11870 | */ |
| 11871 | sf = NULL; |
| 11872 | while ((sf = sample_fetch_getnext(sf, &idx)) != NULL) { |
Thierry FOURNIER | d0fa538 | 2015-02-16 20:14:51 +0100 | [diff] [blame] | 11873 | /* gL.Tua doesn't support '.' and '-' in the function names, replace it |
| 11874 | * by an underscore. |
| 11875 | */ |
Willy Tarreau | 5ef9656 | 2021-08-26 16:48:53 +0200 | [diff] [blame] | 11876 | strlcpy2(trash.area, sf->kw, trash.size); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 11877 | for (p = trash.area; *p; p++) |
Thierry FOURNIER | d0fa538 | 2015-02-16 20:14:51 +0100 | [diff] [blame] | 11878 | if (*p == '.' || *p == '-' || *p == '+') |
| 11879 | *p = '_'; |
| 11880 | |
| 11881 | /* Register the function. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11882 | lua_pushstring(L, trash.area); |
| 11883 | lua_pushlightuserdata(L, sf); |
| 11884 | lua_pushcclosure(L, hlua_run_sample_fetch, 1); |
| 11885 | lua_rawset(L, -3); |
Thierry FOURNIER | d0fa538 | 2015-02-16 20:14:51 +0100 | [diff] [blame] | 11886 | } |
| 11887 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11888 | lua_rawset(L, -3); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 11889 | |
| 11890 | /* Register previous table in the registry with reference and named entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11891 | class_fetches_ref = hlua_register_metatable(L, CLASS_FETCHES); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 11892 | |
| 11893 | /* |
| 11894 | * |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 11895 | * Register class Converters |
| 11896 | * |
| 11897 | */ |
| 11898 | |
| 11899 | /* Create and fill the metatable. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11900 | lua_newtable(L); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 11901 | |
| 11902 | /* Create and fill the __index entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11903 | lua_pushstring(L, "__index"); |
| 11904 | lua_newtable(L); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 11905 | |
| 11906 | /* Browse existing converters and create the associated |
| 11907 | * object method. |
| 11908 | */ |
| 11909 | sc = NULL; |
| 11910 | while ((sc = sample_conv_getnext(sc, &idx)) != NULL) { |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 11911 | /* gL.Tua doesn't support '.' and '-' in the function names, replace it |
| 11912 | * by an underscore. |
| 11913 | */ |
Willy Tarreau | 5ef9656 | 2021-08-26 16:48:53 +0200 | [diff] [blame] | 11914 | strlcpy2(trash.area, sc->kw, trash.size); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 11915 | for (p = trash.area; *p; p++) |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 11916 | if (*p == '.' || *p == '-' || *p == '+') |
| 11917 | *p = '_'; |
| 11918 | |
| 11919 | /* Register the function. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11920 | lua_pushstring(L, trash.area); |
| 11921 | lua_pushlightuserdata(L, sc); |
| 11922 | lua_pushcclosure(L, hlua_run_sample_conv, 1); |
| 11923 | lua_rawset(L, -3); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 11924 | } |
| 11925 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11926 | lua_rawset(L, -3); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 11927 | |
| 11928 | /* Register previous table in the registry with reference and named entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11929 | class_converters_ref = hlua_register_metatable(L, CLASS_CONVERTERS); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 11930 | |
| 11931 | /* |
| 11932 | * |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 11933 | * Register class HTTP |
| 11934 | * |
| 11935 | */ |
| 11936 | |
| 11937 | /* Create and fill the metatable. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11938 | lua_newtable(L); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 11939 | |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 11940 | /* Create and fill the __index entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11941 | lua_pushstring(L, "__index"); |
| 11942 | lua_newtable(L); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 11943 | |
| 11944 | /* Register Lua functions. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11945 | hlua_class_function(L, "req_get_headers",hlua_http_req_get_headers); |
| 11946 | hlua_class_function(L, "req_del_header", hlua_http_req_del_hdr); |
| 11947 | hlua_class_function(L, "req_rep_header", hlua_http_req_rep_hdr); |
| 11948 | hlua_class_function(L, "req_rep_value", hlua_http_req_rep_val); |
| 11949 | hlua_class_function(L, "req_add_header", hlua_http_req_add_hdr); |
| 11950 | hlua_class_function(L, "req_set_header", hlua_http_req_set_hdr); |
| 11951 | hlua_class_function(L, "req_set_method", hlua_http_req_set_meth); |
| 11952 | hlua_class_function(L, "req_set_path", hlua_http_req_set_path); |
| 11953 | hlua_class_function(L, "req_set_query", hlua_http_req_set_query); |
| 11954 | hlua_class_function(L, "req_set_uri", hlua_http_req_set_uri); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 11955 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11956 | hlua_class_function(L, "res_get_headers",hlua_http_res_get_headers); |
| 11957 | hlua_class_function(L, "res_del_header", hlua_http_res_del_hdr); |
| 11958 | hlua_class_function(L, "res_rep_header", hlua_http_res_rep_hdr); |
| 11959 | hlua_class_function(L, "res_rep_value", hlua_http_res_rep_val); |
| 11960 | hlua_class_function(L, "res_add_header", hlua_http_res_add_hdr); |
| 11961 | hlua_class_function(L, "res_set_header", hlua_http_res_set_hdr); |
| 11962 | hlua_class_function(L, "res_set_status", hlua_http_res_set_status); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 11963 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11964 | lua_rawset(L, -3); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 11965 | |
| 11966 | /* Register previous table in the registry with reference and named entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 11967 | class_http_ref = hlua_register_metatable(L, CLASS_HTTP); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 11968 | |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 11969 | /* |
| 11970 | * |
| 11971 | * Register class HTTPMessage |
| 11972 | * |
| 11973 | */ |
| 11974 | |
| 11975 | /* Create and fill the metatable. */ |
| 11976 | lua_newtable(L); |
| 11977 | |
Ilya Shipitsin | ff0f278 | 2021-08-22 22:18:07 +0500 | [diff] [blame] | 11978 | /* Create and fill the __index entry. */ |
Christopher Faulet | df97ac4 | 2020-02-26 16:57:19 +0100 | [diff] [blame] | 11979 | lua_pushstring(L, "__index"); |
| 11980 | lua_newtable(L); |
| 11981 | |
| 11982 | /* Register Lua functions. */ |
| 11983 | hlua_class_function(L, "is_resp", hlua_http_msg_is_resp); |
| 11984 | hlua_class_function(L, "get_stline", hlua_http_msg_get_stline); |
| 11985 | hlua_class_function(L, "get_headers", hlua_http_msg_get_headers); |
| 11986 | hlua_class_function(L, "del_header", hlua_http_msg_del_hdr); |
| 11987 | hlua_class_function(L, "rep_header", hlua_http_msg_rep_hdr); |
| 11988 | hlua_class_function(L, "rep_value", hlua_http_msg_rep_val); |
| 11989 | hlua_class_function(L, "add_header", hlua_http_msg_add_hdr); |
| 11990 | hlua_class_function(L, "set_header", hlua_http_msg_set_hdr); |
| 11991 | hlua_class_function(L, "set_method", hlua_http_msg_set_meth); |
| 11992 | hlua_class_function(L, "set_path", hlua_http_msg_set_path); |
| 11993 | hlua_class_function(L, "set_query", hlua_http_msg_set_query); |
| 11994 | hlua_class_function(L, "set_uri", hlua_http_msg_set_uri); |
| 11995 | hlua_class_function(L, "set_status", hlua_http_msg_set_status); |
| 11996 | hlua_class_function(L, "is_full", hlua_http_msg_is_full); |
| 11997 | hlua_class_function(L, "may_recv", hlua_http_msg_may_recv); |
| 11998 | hlua_class_function(L, "eom", hlua_http_msg_is_eom); |
| 11999 | hlua_class_function(L, "input", hlua_http_msg_get_in_len); |
| 12000 | hlua_class_function(L, "output", hlua_http_msg_get_out_len); |
| 12001 | |
| 12002 | hlua_class_function(L, "body", hlua_http_msg_get_body); |
| 12003 | hlua_class_function(L, "set", hlua_http_msg_set_data); |
| 12004 | hlua_class_function(L, "remove", hlua_http_msg_del_data); |
| 12005 | hlua_class_function(L, "append", hlua_http_msg_append); |
| 12006 | hlua_class_function(L, "prepend", hlua_http_msg_prepend); |
| 12007 | hlua_class_function(L, "insert", hlua_http_msg_insert_data); |
| 12008 | hlua_class_function(L, "set_eom", hlua_http_msg_set_eom); |
| 12009 | hlua_class_function(L, "unset_eom", hlua_http_msg_unset_eom); |
| 12010 | |
| 12011 | hlua_class_function(L, "send", hlua_http_msg_send); |
| 12012 | hlua_class_function(L, "forward", hlua_http_msg_forward); |
| 12013 | |
| 12014 | lua_rawset(L, -3); |
| 12015 | |
| 12016 | /* Register previous table in the registry with reference and named entry. */ |
| 12017 | class_http_msg_ref = hlua_register_metatable(L, CLASS_HTTP_MSG); |
William Lallemand | 3956c4e | 2021-09-21 16:25:15 +0200 | [diff] [blame] | 12018 | |
| 12019 | /* |
| 12020 | * |
| 12021 | * Register class HTTPClient |
| 12022 | * |
| 12023 | */ |
| 12024 | |
| 12025 | /* Create and fill the metatable. */ |
| 12026 | lua_newtable(L); |
| 12027 | lua_pushstring(L, "__index"); |
| 12028 | lua_newtable(L); |
| 12029 | hlua_class_function(L, "get", hlua_httpclient_get); |
William Lallemand | dc2cc90 | 2021-10-26 11:43:26 +0200 | [diff] [blame] | 12030 | hlua_class_function(L, "head", hlua_httpclient_head); |
| 12031 | hlua_class_function(L, "put", hlua_httpclient_put); |
| 12032 | hlua_class_function(L, "post", hlua_httpclient_post); |
| 12033 | hlua_class_function(L, "delete", hlua_httpclient_delete); |
William Lallemand | 3956c4e | 2021-09-21 16:25:15 +0200 | [diff] [blame] | 12034 | lua_settable(L, -3); /* Sets the __index entry. */ |
William Lallemand | f77f1de | 2021-09-28 19:10:38 +0200 | [diff] [blame] | 12035 | /* Register the garbage collector entry. */ |
| 12036 | lua_pushstring(L, "__gc"); |
| 12037 | lua_pushcclosure(L, hlua_httpclient_gc, 0); |
| 12038 | lua_settable(L, -3); /* Push the last 2 entries in the table at index -3 */ |
| 12039 | |
William Lallemand | 3956c4e | 2021-09-21 16:25:15 +0200 | [diff] [blame] | 12040 | |
| 12041 | |
| 12042 | class_httpclient_ref = hlua_register_metatable(L, CLASS_HTTPCLIENT); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 12043 | /* |
| 12044 | * |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 12045 | * Register class AppletTCP |
| 12046 | * |
| 12047 | */ |
| 12048 | |
| 12049 | /* Create and fill the metatable. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 12050 | lua_newtable(L); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 12051 | |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 12052 | /* Create and fill the __index entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 12053 | lua_pushstring(L, "__index"); |
| 12054 | lua_newtable(L); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 12055 | |
| 12056 | /* Register Lua functions. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 12057 | hlua_class_function(L, "getline", hlua_applet_tcp_getline); |
| 12058 | hlua_class_function(L, "receive", hlua_applet_tcp_recv); |
| 12059 | hlua_class_function(L, "send", hlua_applet_tcp_send); |
| 12060 | hlua_class_function(L, "set_priv", hlua_applet_tcp_set_priv); |
| 12061 | hlua_class_function(L, "get_priv", hlua_applet_tcp_get_priv); |
| 12062 | hlua_class_function(L, "set_var", hlua_applet_tcp_set_var); |
| 12063 | hlua_class_function(L, "unset_var", hlua_applet_tcp_unset_var); |
| 12064 | hlua_class_function(L, "get_var", hlua_applet_tcp_get_var); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 12065 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 12066 | lua_settable(L, -3); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 12067 | |
| 12068 | /* Register previous table in the registry with reference and named entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 12069 | class_applet_tcp_ref = hlua_register_metatable(L, CLASS_APPLET_TCP); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 12070 | |
| 12071 | /* |
| 12072 | * |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 12073 | * Register class AppletHTTP |
| 12074 | * |
| 12075 | */ |
| 12076 | |
| 12077 | /* Create and fill the metatable. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 12078 | lua_newtable(L); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 12079 | |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 12080 | /* Create and fill the __index entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 12081 | lua_pushstring(L, "__index"); |
| 12082 | lua_newtable(L); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 12083 | |
| 12084 | /* Register Lua functions. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 12085 | hlua_class_function(L, "set_priv", hlua_applet_http_set_priv); |
| 12086 | hlua_class_function(L, "get_priv", hlua_applet_http_get_priv); |
| 12087 | hlua_class_function(L, "set_var", hlua_applet_http_set_var); |
| 12088 | hlua_class_function(L, "unset_var", hlua_applet_http_unset_var); |
| 12089 | hlua_class_function(L, "get_var", hlua_applet_http_get_var); |
| 12090 | hlua_class_function(L, "getline", hlua_applet_http_getline); |
| 12091 | hlua_class_function(L, "receive", hlua_applet_http_recv); |
| 12092 | hlua_class_function(L, "send", hlua_applet_http_send); |
| 12093 | hlua_class_function(L, "add_header", hlua_applet_http_addheader); |
| 12094 | hlua_class_function(L, "set_status", hlua_applet_http_status); |
| 12095 | hlua_class_function(L, "start_response", hlua_applet_http_start_response); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 12096 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 12097 | lua_settable(L, -3); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 12098 | |
| 12099 | /* Register previous table in the registry with reference and named entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 12100 | class_applet_http_ref = hlua_register_metatable(L, CLASS_APPLET_HTTP); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 12101 | |
| 12102 | /* |
| 12103 | * |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 12104 | * Register class TXN |
| 12105 | * |
| 12106 | */ |
| 12107 | |
| 12108 | /* Create and fill the metatable. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 12109 | lua_newtable(L); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 12110 | |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 12111 | /* Create and fill the __index entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 12112 | lua_pushstring(L, "__index"); |
| 12113 | lua_newtable(L); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 12114 | |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 12115 | /* Register Lua functions. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 12116 | hlua_class_function(L, "set_priv", hlua_set_priv); |
| 12117 | hlua_class_function(L, "get_priv", hlua_get_priv); |
| 12118 | hlua_class_function(L, "set_var", hlua_set_var); |
| 12119 | hlua_class_function(L, "unset_var", hlua_unset_var); |
| 12120 | hlua_class_function(L, "get_var", hlua_get_var); |
| 12121 | hlua_class_function(L, "done", hlua_txn_done); |
| 12122 | hlua_class_function(L, "reply", hlua_txn_reply_new); |
| 12123 | hlua_class_function(L, "set_loglevel", hlua_txn_set_loglevel); |
| 12124 | hlua_class_function(L, "set_tos", hlua_txn_set_tos); |
| 12125 | hlua_class_function(L, "set_mark", hlua_txn_set_mark); |
| 12126 | hlua_class_function(L, "set_priority_class", hlua_txn_set_priority_class); |
| 12127 | hlua_class_function(L, "set_priority_offset", hlua_txn_set_priority_offset); |
| 12128 | hlua_class_function(L, "deflog", hlua_txn_deflog); |
| 12129 | hlua_class_function(L, "log", hlua_txn_log); |
| 12130 | hlua_class_function(L, "Debug", hlua_txn_log_debug); |
| 12131 | hlua_class_function(L, "Info", hlua_txn_log_info); |
| 12132 | hlua_class_function(L, "Warning", hlua_txn_log_warning); |
| 12133 | hlua_class_function(L, "Alert", hlua_txn_log_alert); |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 12134 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 12135 | lua_rawset(L, -3); |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 12136 | |
| 12137 | /* Register previous table in the registry with reference and named entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 12138 | class_txn_ref = hlua_register_metatable(L, CLASS_TXN); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 12139 | |
| 12140 | /* |
| 12141 | * |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 12142 | * Register class reply |
| 12143 | * |
| 12144 | */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 12145 | lua_newtable(L); |
| 12146 | lua_pushstring(L, "__index"); |
| 12147 | lua_newtable(L); |
| 12148 | hlua_class_function(L, "set_status", hlua_txn_reply_set_status); |
| 12149 | hlua_class_function(L, "add_header", hlua_txn_reply_add_header); |
| 12150 | hlua_class_function(L, "del_header", hlua_txn_reply_del_header); |
| 12151 | hlua_class_function(L, "set_body", hlua_txn_reply_set_body); |
| 12152 | lua_settable(L, -3); /* Sets the __index entry. */ |
| 12153 | class_txn_reply_ref = luaL_ref(L, LUA_REGISTRYINDEX); |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 12154 | |
| 12155 | |
| 12156 | /* |
| 12157 | * |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 12158 | * Register class Socket |
| 12159 | * |
| 12160 | */ |
| 12161 | |
| 12162 | /* Create and fill the metatable. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 12163 | lua_newtable(L); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 12164 | |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 12165 | /* Create and fill the __index entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 12166 | lua_pushstring(L, "__index"); |
| 12167 | lua_newtable(L); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 12168 | |
Baptiste Assmann | 84bb493 | 2015-03-02 21:40:06 +0100 | [diff] [blame] | 12169 | #ifdef USE_OPENSSL |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 12170 | hlua_class_function(L, "connect_ssl", hlua_socket_connect_ssl); |
Baptiste Assmann | 84bb493 | 2015-03-02 21:40:06 +0100 | [diff] [blame] | 12171 | #endif |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 12172 | hlua_class_function(L, "connect", hlua_socket_connect); |
| 12173 | hlua_class_function(L, "send", hlua_socket_send); |
| 12174 | hlua_class_function(L, "receive", hlua_socket_receive); |
| 12175 | hlua_class_function(L, "close", hlua_socket_close); |
| 12176 | hlua_class_function(L, "getpeername", hlua_socket_getpeername); |
| 12177 | hlua_class_function(L, "getsockname", hlua_socket_getsockname); |
| 12178 | hlua_class_function(L, "setoption", hlua_socket_setoption); |
| 12179 | hlua_class_function(L, "settimeout", hlua_socket_settimeout); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 12180 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 12181 | 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] | 12182 | |
| 12183 | /* Register the garbage collector entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 12184 | lua_pushstring(L, "__gc"); |
| 12185 | lua_pushcclosure(L, hlua_socket_gc, 0); |
| 12186 | 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] | 12187 | |
| 12188 | /* Register previous table in the registry with reference and named entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 12189 | class_socket_ref = hlua_register_metatable(L, CLASS_SOCKET); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 12190 | |
Thierry Fournier | aafc777 | 2020-12-04 11:47:47 +0100 | [diff] [blame] | 12191 | lua_atpanic(L, hlua_panic_safe); |
| 12192 | |
| 12193 | return L; |
| 12194 | } |
| 12195 | |
| 12196 | void hlua_init(void) { |
| 12197 | int i; |
Amaury Denoyelle | 239fdbf | 2021-03-24 10:22:03 +0100 | [diff] [blame] | 12198 | char *errmsg; |
Thierry Fournier | aafc777 | 2020-12-04 11:47:47 +0100 | [diff] [blame] | 12199 | #ifdef USE_OPENSSL |
| 12200 | struct srv_kw *kw; |
| 12201 | int tmp_error; |
| 12202 | char *error; |
| 12203 | char *args[] = { /* SSL client configuration. */ |
| 12204 | "ssl", |
| 12205 | "verify", |
| 12206 | "none", |
| 12207 | NULL |
| 12208 | }; |
| 12209 | #endif |
| 12210 | |
| 12211 | /* Init post init function list head */ |
| 12212 | for (i = 0; i < MAX_THREADS + 1; i++) |
| 12213 | LIST_INIT(&hlua_init_functions[i]); |
| 12214 | |
| 12215 | /* Init state for common/shared lua parts */ |
| 12216 | hlua_state_id = 0; |
Willy Tarreau | 43ab05b | 2021-09-28 09:43:11 +0200 | [diff] [blame] | 12217 | ha_set_thread(NULL); |
Thierry Fournier | aafc777 | 2020-12-04 11:47:47 +0100 | [diff] [blame] | 12218 | hlua_states[0] = hlua_init_state(0); |
| 12219 | |
| 12220 | /* Init state 1 for thread 0. We have at least one thread. */ |
| 12221 | hlua_state_id = 1; |
Willy Tarreau | 43ab05b | 2021-09-28 09:43:11 +0200 | [diff] [blame] | 12222 | ha_set_thread(NULL); |
Thierry Fournier | aafc777 | 2020-12-04 11:47:47 +0100 | [diff] [blame] | 12223 | hlua_states[1] = hlua_init_state(1); |
| 12224 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 12225 | /* Proxy and server configuration initialisation. */ |
William Lallemand | 6bb77b9 | 2021-07-28 15:48:16 +0200 | [diff] [blame] | 12226 | socket_proxy = alloc_new_proxy("LUA-SOCKET", PR_CAP_FE|PR_CAP_BE|PR_CAP_INT, &errmsg); |
Amaury Denoyelle | 239fdbf | 2021-03-24 10:22:03 +0100 | [diff] [blame] | 12227 | if (!socket_proxy) { |
| 12228 | fprintf(stderr, "Lua init: %s\n", errmsg); |
| 12229 | exit(1); |
| 12230 | } |
| 12231 | proxy_preset_defaults(socket_proxy); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 12232 | |
| 12233 | /* Init TCP server: unchanged parameters */ |
Amaury Denoyelle | 704ba1d | 2021-03-24 17:57:47 +0100 | [diff] [blame] | 12234 | socket_tcp = new_server(socket_proxy); |
| 12235 | if (!socket_tcp) { |
| 12236 | fprintf(stderr, "Lua init: failed to allocate tcp server socket\n"); |
| 12237 | exit(1); |
| 12238 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 12239 | |
| 12240 | #ifdef USE_OPENSSL |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 12241 | /* Init TCP server: unchanged parameters */ |
Amaury Denoyelle | 704ba1d | 2021-03-24 17:57:47 +0100 | [diff] [blame] | 12242 | socket_ssl = new_server(socket_proxy); |
| 12243 | if (!socket_ssl) { |
| 12244 | fprintf(stderr, "Lua init: failed to allocate ssl server socket\n"); |
| 12245 | exit(1); |
| 12246 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 12247 | |
Amaury Denoyelle | 704ba1d | 2021-03-24 17:57:47 +0100 | [diff] [blame] | 12248 | socket_ssl->use_ssl = 1; |
| 12249 | socket_ssl->xprt = xprt_get(XPRT_SSL); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 12250 | |
Bertrand Jacquin | 80839ff | 2021-01-21 19:14:46 +0000 | [diff] [blame] | 12251 | for (i = 0; args[i] != NULL; i++) { |
| 12252 | if ((kw = srv_find_kw(args[i])) != NULL) { /* Maybe it's registered server keyword */ |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 12253 | /* |
| 12254 | * |
| 12255 | * If the keyword is not known, we can search in the registered |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 12256 | * server keywords. This is useful to configure special SSL |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 12257 | * features like client certificates and ssl_verify. |
| 12258 | * |
| 12259 | */ |
Amaury Denoyelle | 704ba1d | 2021-03-24 17:57:47 +0100 | [diff] [blame] | 12260 | tmp_error = kw->parse(args, &i, socket_proxy, socket_ssl, &error); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 12261 | if (tmp_error != 0) { |
| 12262 | fprintf(stderr, "INTERNAL ERROR: %s\n", error); |
| 12263 | abort(); /* This must be never arrives because the command line |
| 12264 | not editable by the user. */ |
| 12265 | } |
Bertrand Jacquin | 80839ff | 2021-01-21 19:14:46 +0000 | [diff] [blame] | 12266 | i += kw->skip; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 12267 | } |
| 12268 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 12269 | #endif |
Thierry Fournier | 75933d4 | 2016-01-21 09:30:18 +0100 | [diff] [blame] | 12270 | |
Thierry FOURNIER | 6f1fd48 | 2015-01-23 14:06:13 +0100 | [diff] [blame] | 12271 | } |
Willy Tarreau | bb57d94 | 2016-12-21 19:04:56 +0100 | [diff] [blame] | 12272 | |
Tim Duesterhus | d0c0ca2 | 2020-07-04 11:53:26 +0200 | [diff] [blame] | 12273 | static void hlua_deinit() |
| 12274 | { |
Willy Tarreau | 186f376 | 2020-12-04 11:48:12 +0100 | [diff] [blame] | 12275 | int thr; |
Christopher Faulet | 69c581a | 2021-05-31 08:54:04 +0200 | [diff] [blame] | 12276 | struct hlua_reg_filter *reg_flt, *reg_flt_bck; |
| 12277 | |
| 12278 | list_for_each_entry_safe(reg_flt, reg_flt_bck, &referenced_filters, l) |
| 12279 | release_hlua_reg_filter(reg_flt); |
Willy Tarreau | 186f376 | 2020-12-04 11:48:12 +0100 | [diff] [blame] | 12280 | |
| 12281 | for (thr = 0; thr < MAX_THREADS+1; thr++) { |
| 12282 | if (hlua_states[thr]) |
| 12283 | lua_close(hlua_states[thr]); |
| 12284 | } |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 12285 | |
Amaury Denoyelle | bc2ebfa | 2021-08-25 15:34:53 +0200 | [diff] [blame] | 12286 | srv_drop(socket_tcp); |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 12287 | |
Willy Tarreau | 0f143af | 2021-03-05 10:41:48 +0100 | [diff] [blame] | 12288 | #ifdef USE_OPENSSL |
Amaury Denoyelle | bc2ebfa | 2021-08-25 15:34:53 +0200 | [diff] [blame] | 12289 | srv_drop(socket_ssl); |
Willy Tarreau | 0f143af | 2021-03-05 10:41:48 +0100 | [diff] [blame] | 12290 | #endif |
Amaury Denoyelle | 239fdbf | 2021-03-24 10:22:03 +0100 | [diff] [blame] | 12291 | |
| 12292 | free_proxy(socket_proxy); |
Tim Duesterhus | d0c0ca2 | 2020-07-04 11:53:26 +0200 | [diff] [blame] | 12293 | } |
| 12294 | |
| 12295 | REGISTER_POST_DEINIT(hlua_deinit); |
| 12296 | |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 12297 | static void hlua_register_build_options(void) |
| 12298 | { |
Willy Tarreau | bb57d94 | 2016-12-21 19:04:56 +0100 | [diff] [blame] | 12299 | char *ptr = NULL; |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 12300 | |
Willy Tarreau | bb57d94 | 2016-12-21 19:04:56 +0100 | [diff] [blame] | 12301 | memprintf(&ptr, "Built with Lua version : %s", LUA_RELEASE); |
| 12302 | hap_register_build_opts(ptr, 1); |
| 12303 | } |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 12304 | |
| 12305 | INITCALL0(STG_REGISTER, hlua_register_build_options); |