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 | 7ea393d | 2020-06-04 18:02:10 +0200 | [diff] [blame] | 35 | #include <haproxy/connection.h> |
Willy Tarreau | 5413a87 | 2020-06-02 19:33:08 +0200 | [diff] [blame] | 36 | #include <haproxy/h1.h> |
Willy Tarreau | 8641605 | 2020-06-04 09:20:54 +0200 | [diff] [blame] | 37 | #include <haproxy/hlua.h> |
Willy Tarreau | 8c79400 | 2020-06-04 10:05:25 +0200 | [diff] [blame] | 38 | #include <haproxy/hlua_fcn.h> |
Willy Tarreau | c2b1ff0 | 2020-06-04 21:21:03 +0200 | [diff] [blame] | 39 | #include <haproxy/http_ana.h> |
Willy Tarreau | 126ba3a | 2020-06-04 18:26:43 +0200 | [diff] [blame] | 40 | #include <haproxy/http_fetch.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 41 | #include <haproxy/http_htx.h> |
Willy Tarreau | c761f84 | 2020-06-04 11:40:28 +0200 | [diff] [blame] | 42 | #include <haproxy/http_rules.h> |
Willy Tarreau | 36979d9 | 2020-06-05 17:27:29 +0200 | [diff] [blame] | 43 | #include <haproxy/log.h> |
Willy Tarreau | 2cd5809 | 2020-06-04 15:10:43 +0200 | [diff] [blame] | 44 | #include <haproxy/map.h> |
Willy Tarreau | 8efbdfb | 2020-06-04 11:29:21 +0200 | [diff] [blame] | 45 | #include <haproxy/obj_type.h> |
Willy Tarreau | 225a90a | 2020-06-04 15:06:28 +0200 | [diff] [blame] | 46 | #include <haproxy/pattern.h> |
Willy Tarreau | 469509b | 2020-06-04 15:13:30 +0200 | [diff] [blame] | 47 | #include <haproxy/payload.h> |
Willy Tarreau | a264d96 | 2020-06-04 22:29:18 +0200 | [diff] [blame] | 48 | #include <haproxy/proxy-t.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 49 | #include <haproxy/regex.h> |
Willy Tarreau | e6ce10b | 2020-06-04 15:33:47 +0200 | [diff] [blame] | 50 | #include <haproxy/sample.h> |
Willy Tarreau | 198e92a | 2021-03-05 10:23:32 +0100 | [diff] [blame] | 51 | #include <haproxy/server.h> |
Willy Tarreau | 48d25b3 | 2020-06-04 18:58:52 +0200 | [diff] [blame] | 52 | #include <haproxy/session.h> |
Willy Tarreau | 2eec9b5 | 2020-06-04 19:58:55 +0200 | [diff] [blame] | 53 | #include <haproxy/stats-t.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 54 | #include <haproxy/stream.h> |
Willy Tarreau | 5e539c9 | 2020-06-04 20:45:39 +0200 | [diff] [blame] | 55 | #include <haproxy/stream_interface.h> |
Willy Tarreau | cea0e1b | 2020-06-04 17:25:40 +0200 | [diff] [blame] | 56 | #include <haproxy/task.h> |
Willy Tarreau | 8b550af | 2020-06-04 17:42:48 +0200 | [diff] [blame] | 57 | #include <haproxy/tcp_rules.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 58 | #include <haproxy/thread.h> |
Willy Tarreau | 48fbcae | 2020-06-03 18:09:46 +0200 | [diff] [blame] | 59 | #include <haproxy/tools.h> |
Willy Tarreau | a171892 | 2020-06-04 16:25:31 +0200 | [diff] [blame] | 60 | #include <haproxy/vars.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 61 | #include <haproxy/xref.h> |
| 62 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 63 | |
Thierry FOURNIER | 6f1fd48 | 2015-01-23 14:06:13 +0100 | [diff] [blame] | 64 | /* Lua uses longjmp to perform yield or throwing errors. This |
| 65 | * macro is used only for identifying the function that can |
| 66 | * not return because a longjmp is executed. |
| 67 | * __LJMP marks a prototype of hlua file that can use longjmp. |
| 68 | * WILL_LJMP() marks an lua function that will use longjmp. |
| 69 | * MAY_LJMP() marks an lua function that may use longjmp. |
| 70 | */ |
| 71 | #define __LJMP |
Willy Tarreau | 4e7cc33 | 2018-10-20 17:45:48 +0200 | [diff] [blame] | 72 | #define WILL_LJMP(func) do { func; my_unreachable(); } while(0) |
Thierry FOURNIER | 6f1fd48 | 2015-01-23 14:06:13 +0100 | [diff] [blame] | 73 | #define MAY_LJMP(func) func |
| 74 | |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 75 | /* This couple of function executes securely some Lua calls outside of |
| 76 | * the lua runtime environment. Each Lua call can return a longjmp |
| 77 | * if it encounter a memory error. |
| 78 | * |
| 79 | * Lua documentation extract: |
| 80 | * |
| 81 | * If an error happens outside any protected environment, Lua calls |
| 82 | * a panic function (see lua_atpanic) and then calls abort, thus |
| 83 | * exiting the host application. Your panic function can avoid this |
| 84 | * exit by never returning (e.g., doing a long jump to your own |
| 85 | * recovery point outside Lua). |
| 86 | * |
| 87 | * The panic function runs as if it were a message handler (see |
| 88 | * §2.3); in particular, the error message is at the top of the |
| 89 | * stack. However, there is no guarantee about stack space. To push |
| 90 | * anything on the stack, the panic function must first check the |
| 91 | * available space (see §4.2). |
| 92 | * |
| 93 | * We must check all the Lua entry point. This includes: |
| 94 | * - The include/proto/hlua.h exported functions |
| 95 | * - the task wrapper function |
| 96 | * - The action wrapper function |
| 97 | * - The converters wrapper function |
| 98 | * - The sample-fetch wrapper functions |
| 99 | * |
Ilya Shipitsin | 46a030c | 2020-07-05 16:36:08 +0500 | [diff] [blame] | 100 | * It is tolerated that the initialisation function returns an abort. |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 101 | * Before each Lua abort, an error message is written on stderr. |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 102 | * |
| 103 | * The macro SET_SAFE_LJMP initialise the longjmp. The Macro |
| 104 | * RESET_SAFE_LJMP reset the longjmp. These function must be macro |
| 105 | * because they must be exists in the program stack when the longjmp |
| 106 | * is called. |
Thierry FOURNIER | 61ba0e2 | 2017-07-12 11:41:21 +0200 | [diff] [blame] | 107 | * |
| 108 | * Note that the Lua processing is not really thread safe. It provides |
| 109 | * heavy system which consists to add our own lock function in the Lua |
| 110 | * code and recompile the library. This system will probably not accepted |
| 111 | * by maintainers of various distribs. |
| 112 | * |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 113 | * 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] | 114 | * quick looking on the Lua sources displays a lua_lock() a the start |
| 115 | * of function and a lua_unlock() at the end of the function. So I |
| 116 | * conclude that the Lua thread safe mode just perform a mutex around |
| 117 | * all execution. So I prefer to do this in the HAProxy code, it will be |
| 118 | * easier for distro maintainers. |
| 119 | * |
| 120 | * Note that the HAProxy lua functions rounded by the macro SET_SAFE_LJMP |
| 121 | * and RESET_SAFE_LJMP manipulates the Lua stack, so it will be careful |
| 122 | * to set mutex around these functions. |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 123 | */ |
Willy Tarreau | 86abe44 | 2018-11-25 20:12:18 +0100 | [diff] [blame] | 124 | __decl_spinlock(hlua_global_lock); |
Thierry FOURNIER | ffbad79 | 2017-07-12 11:39:04 +0200 | [diff] [blame] | 125 | THREAD_LOCAL jmp_buf safe_ljmp_env; |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 126 | static int hlua_panic_safe(lua_State *L) { return 0; } |
Willy Tarreau | 9d6bb5a | 2020-02-06 15:55:41 +0100 | [diff] [blame] | 127 | static int hlua_panic_ljmp(lua_State *L) { WILL_LJMP(longjmp(safe_ljmp_env, 1)); } |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 128 | |
Thierry Fournier | 62a22aa | 2020-11-28 21:06:35 +0100 | [diff] [blame] | 129 | /* This is the chained list of struct hlua_function referenced |
| 130 | * for haproxy action, sample-fetches, converters, cli and |
| 131 | * applet bindings. It is used for a post-initialisation control. |
| 132 | */ |
| 133 | static struct list referenced_functions = LIST_HEAD_INIT(referenced_functions); |
| 134 | |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 135 | /* This variable is used only during initialization to identify the Lua state |
| 136 | * currently being initialized. 0 is the common lua state, 1 to n are the Lua |
| 137 | * states dedicated to each thread (in this case hlua_state_id==tid+1). |
| 138 | */ |
| 139 | static int hlua_state_id; |
| 140 | |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 141 | /* This is a NULL-terminated list of lua file which are referenced to load per thread */ |
| 142 | static char **per_thread_load = NULL; |
| 143 | |
| 144 | lua_State *hlua_init_state(int thread_id); |
| 145 | |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 146 | #define SET_SAFE_LJMP_L(__L, __HLUA) \ |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 147 | ({ \ |
| 148 | int ret; \ |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 149 | if ((__HLUA)->state_id == 0) \ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 150 | HA_SPIN_LOCK(LUA_LOCK, &hlua_global_lock); \ |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 151 | if (setjmp(safe_ljmp_env) != 0) { \ |
| 152 | lua_atpanic(__L, hlua_panic_safe); \ |
| 153 | ret = 0; \ |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 154 | if ((__HLUA)->state_id == 0) \ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 155 | HA_SPIN_UNLOCK(LUA_LOCK, &hlua_global_lock); \ |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 156 | } else { \ |
| 157 | lua_atpanic(__L, hlua_panic_ljmp); \ |
| 158 | ret = 1; \ |
| 159 | } \ |
| 160 | ret; \ |
| 161 | }) |
| 162 | |
| 163 | /* If we are the last function catching Lua errors, we |
| 164 | * must reset the panic function. |
| 165 | */ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 166 | #define RESET_SAFE_LJMP_L(__L, __HLUA) \ |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 167 | do { \ |
| 168 | lua_atpanic(__L, hlua_panic_safe); \ |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 169 | if ((__HLUA)->state_id == 0) \ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 170 | HA_SPIN_UNLOCK(LUA_LOCK, &hlua_global_lock); \ |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 171 | } while(0) |
| 172 | |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 173 | #define SET_SAFE_LJMP(__HLUA) \ |
| 174 | SET_SAFE_LJMP_L((__HLUA)->T, __HLUA) |
| 175 | |
| 176 | #define RESET_SAFE_LJMP(__HLUA) \ |
| 177 | RESET_SAFE_LJMP_L((__HLUA)->T, __HLUA) |
| 178 | |
| 179 | #define SET_SAFE_LJMP_PARENT(__HLUA) \ |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 180 | SET_SAFE_LJMP_L(hlua_states[(__HLUA)->state_id], __HLUA) |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 181 | |
| 182 | #define RESET_SAFE_LJMP_PARENT(__HLUA) \ |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 183 | RESET_SAFE_LJMP_L(hlua_states[(__HLUA)->state_id], __HLUA) |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 184 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 185 | /* Applet status flags */ |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 186 | #define APPLET_DONE 0x01 /* applet processing is done. */ |
Christopher Faulet | 18c2e8d | 2019-03-01 12:02:08 +0100 | [diff] [blame] | 187 | /* unused: 0x02 */ |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 188 | #define APPLET_HDR_SENT 0x04 /* Response header sent. */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 189 | /* unused: 0x08, 0x10 */ |
Thierry FOURNIER | d93ea2b | 2015-12-20 19:14:52 +0100 | [diff] [blame] | 190 | #define APPLET_HTTP11 0x20 /* Last chunk sent. */ |
Christopher Faulet | 56a3d6e | 2019-02-27 22:06:23 +0100 | [diff] [blame] | 191 | #define APPLET_RSP_SENT 0x40 /* The response was fully sent */ |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 192 | |
Thierry Fournier | afc63e2 | 2020-11-28 17:06:51 +0100 | [diff] [blame] | 193 | /* The main Lua execution context. The 0 index is the |
| 194 | * common state shared by all threads. |
| 195 | */ |
Willy Tarreau | 186f376 | 2020-12-04 11:48:12 +0100 | [diff] [blame] | 196 | static lua_State *hlua_states[MAX_THREADS + 1]; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 197 | |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 198 | /* This is the memory pool containing struct lua for applets |
| 199 | * (including cli). |
| 200 | */ |
Willy Tarreau | 8ceae72 | 2018-11-26 11:58:30 +0100 | [diff] [blame] | 201 | DECLARE_STATIC_POOL(pool_head_hlua, "hlua", sizeof(struct hlua)); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 202 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 203 | /* Used for Socket connection. */ |
Amaury Denoyelle | 239fdbf | 2021-03-24 10:22:03 +0100 | [diff] [blame] | 204 | static struct proxy *socket_proxy; |
Amaury Denoyelle | 704ba1d | 2021-03-24 17:57:47 +0100 | [diff] [blame] | 205 | static struct server *socket_tcp; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 206 | #ifdef USE_OPENSSL |
Amaury Denoyelle | 704ba1d | 2021-03-24 17:57:47 +0100 | [diff] [blame] | 207 | static struct server *socket_ssl; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 208 | #endif |
| 209 | |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 210 | /* List head of the function called at the initialisation time. */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 211 | struct list hlua_init_functions[MAX_THREADS + 1]; |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 212 | |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 213 | /* The following variables contains the reference of the different |
| 214 | * Lua classes. These references are useful for identify metadata |
| 215 | * associated with an object. |
| 216 | */ |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 217 | static int class_txn_ref; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 218 | static int class_socket_ref; |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 219 | static int class_channel_ref; |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 220 | static int class_fetches_ref; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 221 | static int class_converters_ref; |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 222 | static int class_http_ref; |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 223 | static int class_map_ref; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 224 | static int class_applet_tcp_ref; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 225 | static int class_applet_http_ref; |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 226 | static int class_txn_reply_ref; |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 227 | |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 228 | /* Global Lua execution timeout. By default Lua, execution linked |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 229 | * with stream (actions, sample-fetches and converters) have a |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 230 | * short timeout. Lua linked with tasks doesn't have a timeout |
| 231 | * because a task may remain alive during all the haproxy execution. |
| 232 | */ |
| 233 | static unsigned int hlua_timeout_session = 4000; /* session timeout. */ |
| 234 | static unsigned int hlua_timeout_task = TICK_ETERNITY; /* task timeout. */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 235 | static unsigned int hlua_timeout_applet = 4000; /* applet timeout. */ |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 236 | |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 237 | /* Interrupts the Lua processing each "hlua_nb_instruction" instructions. |
| 238 | * it is used for preventing infinite loops. |
| 239 | * |
| 240 | * I test the scheer with an infinite loop containing one incrementation |
| 241 | * and one test. I run this loop between 10 seconds, I raise a ceil of |
| 242 | * 710M loops from one interrupt each 9000 instructions, so I fix the value |
| 243 | * to one interrupt each 10 000 instructions. |
| 244 | * |
| 245 | * configured | Number of |
| 246 | * instructions | loops executed |
| 247 | * between two | in milions |
| 248 | * forced yields | |
| 249 | * ---------------+--------------- |
| 250 | * 10 | 160 |
| 251 | * 500 | 670 |
| 252 | * 1000 | 680 |
| 253 | * 5000 | 700 |
| 254 | * 7000 | 700 |
| 255 | * 8000 | 700 |
| 256 | * 9000 | 710 <- ceil |
| 257 | * 10000 | 710 |
| 258 | * 100000 | 710 |
| 259 | * 1000000 | 710 |
| 260 | * |
| 261 | */ |
| 262 | static unsigned int hlua_nb_instruction = 10000; |
| 263 | |
Willy Tarreau | cdb5346 | 2020-12-02 12:12:00 +0100 | [diff] [blame] | 264 | /* Descriptor for the memory allocation state. The limit is pre-initialised to |
| 265 | * 0 until it is replaced by "tune.lua.maxmem" during the config parsing, or it |
| 266 | * is replaced with ~0 during post_init after everything was loaded. This way |
| 267 | * it is guaranteed that if limit is ~0 the boot is complete and that if it's |
| 268 | * zero it's not yet limited and proper accounting is required. |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 269 | */ |
| 270 | struct hlua_mem_allocator { |
| 271 | size_t allocated; |
| 272 | size_t limit; |
| 273 | }; |
| 274 | |
Willy Tarreau | cdb5346 | 2020-12-02 12:12:00 +0100 | [diff] [blame] | 275 | static struct hlua_mem_allocator hlua_global_allocator THREAD_ALIGNED(64); |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 276 | |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 277 | /* These functions converts types between HAProxy internal args or |
| 278 | * sample and LUA types. Another function permits to check if the |
| 279 | * LUA stack contains arguments according with an required ARG_T |
| 280 | * format. |
| 281 | */ |
| 282 | static int hlua_arg2lua(lua_State *L, const struct arg *arg); |
| 283 | static int hlua_lua2arg(lua_State *L, int ud, struct arg *arg); |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 284 | __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] | 285 | uint64_t mask, struct proxy *p); |
Willy Tarreau | 5eadada | 2015-03-10 17:28:54 +0100 | [diff] [blame] | 286 | static int hlua_smp2lua(lua_State *L, struct sample *smp); |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 287 | static int hlua_smp2lua_str(lua_State *L, struct sample *smp); |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 288 | static int hlua_lua2smp(lua_State *L, int ud, struct sample *smp); |
| 289 | |
Christopher Faulet | 9d1332b | 2020-02-24 16:46:16 +0100 | [diff] [blame] | 290 | __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] | 291 | |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 292 | struct prepend_path { |
| 293 | struct list l; |
| 294 | char *type; |
| 295 | char *path; |
| 296 | }; |
| 297 | |
| 298 | static struct list prepend_path_list = LIST_HEAD_INIT(prepend_path_list); |
| 299 | |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 300 | #define SEND_ERR(__be, __fmt, __args...) \ |
| 301 | do { \ |
| 302 | send_log(__be, LOG_ERR, __fmt, ## __args); \ |
| 303 | if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) \ |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 304 | ha_alert(__fmt, ## __args); \ |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 305 | } while (0) |
| 306 | |
Thierry Fournier | 62a22aa | 2020-11-28 21:06:35 +0100 | [diff] [blame] | 307 | static inline struct hlua_function *new_hlua_function() |
| 308 | { |
| 309 | struct hlua_function *fcn; |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 310 | int i; |
Thierry Fournier | 62a22aa | 2020-11-28 21:06:35 +0100 | [diff] [blame] | 311 | |
| 312 | fcn = calloc(1, sizeof(*fcn)); |
| 313 | if (!fcn) |
| 314 | return NULL; |
| 315 | LIST_ADDQ(&referenced_functions, &fcn->l); |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 316 | for (i = 0; i < MAX_THREADS + 1; i++) |
| 317 | fcn->function_ref[i] = -1; |
Thierry Fournier | 62a22aa | 2020-11-28 21:06:35 +0100 | [diff] [blame] | 318 | return fcn; |
| 319 | } |
| 320 | |
Christopher Faulet | dda4444 | 2021-04-12 14:05:43 +0200 | [diff] [blame] | 321 | static inline void release_hlua_function(struct hlua_function *fcn) |
| 322 | { |
| 323 | if (!fcn) |
| 324 | return; |
| 325 | if (fcn->name) |
| 326 | ha_free(&fcn->name); |
| 327 | LIST_DEL(&fcn->l); |
| 328 | ha_free(&fcn); |
| 329 | } |
| 330 | |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 331 | /* If the common state is set, the stack id is 0, otherwise it is the tid + 1 */ |
| 332 | static inline int fcn_ref_to_stack_id(struct hlua_function *fcn) |
| 333 | { |
| 334 | if (fcn->function_ref[0] == -1) |
| 335 | return tid + 1; |
| 336 | return 0; |
| 337 | } |
| 338 | |
Thierry FOURNIER | e8b9a40 | 2015-02-25 18:48:12 +0100 | [diff] [blame] | 339 | /* Used to check an Lua function type in the stack. It creates and |
| 340 | * returns a reference of the function. This function throws an |
| 341 | * error if the rgument is not a "function". |
| 342 | */ |
| 343 | __LJMP unsigned int hlua_checkfunction(lua_State *L, int argno) |
| 344 | { |
| 345 | if (!lua_isfunction(L, argno)) { |
Thierry FOURNIER | fd1e955 | 2018-02-23 18:41:18 +0100 | [diff] [blame] | 346 | 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] | 347 | WILL_LJMP(luaL_argerror(L, argno, msg)); |
| 348 | } |
| 349 | lua_pushvalue(L, argno); |
| 350 | return luaL_ref(L, LUA_REGISTRYINDEX); |
| 351 | } |
| 352 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 353 | /* Return the string that is of the top of the stack. */ |
| 354 | const char *hlua_get_top_error_string(lua_State *L) |
| 355 | { |
| 356 | if (lua_gettop(L) < 1) |
| 357 | return "unknown error"; |
| 358 | if (lua_type(L, -1) != LUA_TSTRING) |
| 359 | return "unknown error"; |
| 360 | return lua_tostring(L, -1); |
| 361 | } |
| 362 | |
Christopher Faulet | d09cc51 | 2021-03-24 14:48:45 +0100 | [diff] [blame] | 363 | __LJMP const char *hlua_traceback(lua_State *L, const char* sep) |
Thierry FOURNIER | fc044c9 | 2018-06-07 14:40:48 +0200 | [diff] [blame] | 364 | { |
| 365 | lua_Debug ar; |
| 366 | int level = 0; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 367 | struct buffer *msg = get_trash_chunk(); |
Thierry FOURNIER | fc044c9 | 2018-06-07 14:40:48 +0200 | [diff] [blame] | 368 | |
| 369 | while (lua_getstack(L, level++, &ar)) { |
| 370 | |
| 371 | /* Add separator */ |
Christopher Faulet | d09cc51 | 2021-03-24 14:48:45 +0100 | [diff] [blame] | 372 | if (b_data(msg)) |
| 373 | chunk_appendf(msg, "%s", sep); |
Thierry FOURNIER | fc044c9 | 2018-06-07 14:40:48 +0200 | [diff] [blame] | 374 | |
| 375 | /* Fill fields: |
| 376 | * 'S': fills in the fields source, short_src, linedefined, lastlinedefined, and what; |
| 377 | * 'l': fills in the field currentline; |
| 378 | * 'n': fills in the field name and namewhat; |
| 379 | * 't': fills in the field istailcall; |
| 380 | */ |
| 381 | lua_getinfo(L, "Slnt", &ar); |
| 382 | |
| 383 | /* Append code localisation */ |
| 384 | if (ar.currentline > 0) |
Christopher Faulet | d09cc51 | 2021-03-24 14:48:45 +0100 | [diff] [blame] | 385 | chunk_appendf(msg, "%s:%d: ", ar.short_src, ar.currentline); |
Thierry FOURNIER | fc044c9 | 2018-06-07 14:40:48 +0200 | [diff] [blame] | 386 | else |
Christopher Faulet | d09cc51 | 2021-03-24 14:48:45 +0100 | [diff] [blame] | 387 | chunk_appendf(msg, "%s: ", ar.short_src); |
Thierry FOURNIER | fc044c9 | 2018-06-07 14:40:48 +0200 | [diff] [blame] | 388 | |
| 389 | /* |
| 390 | * Get function name |
| 391 | * |
| 392 | * if namewhat is no empty, name is defined. |
| 393 | * what contains "Lua" for Lua function, "C" for C function, |
| 394 | * or "main" for main code. |
| 395 | */ |
| 396 | 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] | 397 | chunk_appendf(msg, "in %s '%s'", ar.namewhat, ar.name); /* use it */ |
Thierry FOURNIER | fc044c9 | 2018-06-07 14:40:48 +0200 | [diff] [blame] | 398 | |
| 399 | 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] | 400 | chunk_appendf(msg, "in main chunk"); |
Thierry FOURNIER | fc044c9 | 2018-06-07 14:40:48 +0200 | [diff] [blame] | 401 | |
| 402 | else if (*ar.what != 'C') /* for Lua functions, use <file:line> */ |
Christopher Faulet | d09cc51 | 2021-03-24 14:48:45 +0100 | [diff] [blame] | 403 | chunk_appendf(msg, "in function line %d", ar.linedefined); |
Thierry FOURNIER | fc044c9 | 2018-06-07 14:40:48 +0200 | [diff] [blame] | 404 | |
| 405 | else /* nothing left... */ |
| 406 | chunk_appendf(msg, "?"); |
| 407 | |
| 408 | |
| 409 | /* Display tailed call */ |
| 410 | if (ar.istailcall) |
| 411 | chunk_appendf(msg, " ..."); |
| 412 | } |
| 413 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 414 | return msg->area; |
Thierry FOURNIER | fc044c9 | 2018-06-07 14:40:48 +0200 | [diff] [blame] | 415 | } |
| 416 | |
| 417 | |
Thierry FOURNIER | e8b9a40 | 2015-02-25 18:48:12 +0100 | [diff] [blame] | 418 | /* This function check the number of arguments available in the |
| 419 | * stack. If the number of arguments available is not the same |
Ilya Shipitsin | c02a23f | 2020-05-06 00:53:22 +0500 | [diff] [blame] | 420 | * then <nb> an error is thrown. |
Thierry FOURNIER | e8b9a40 | 2015-02-25 18:48:12 +0100 | [diff] [blame] | 421 | */ |
| 422 | __LJMP static inline void check_args(lua_State *L, int nb, char *fcn) |
| 423 | { |
| 424 | if (lua_gettop(L) == nb) |
| 425 | return; |
| 426 | WILL_LJMP(luaL_error(L, "'%s' needs %d arguments", fcn, nb)); |
| 427 | } |
| 428 | |
Mark Lakes | 22154b4 | 2018-01-29 14:38:40 -0800 | [diff] [blame] | 429 | /* This function pushes an error string prefixed by the file name |
Thierry FOURNIER | e8b9a40 | 2015-02-25 18:48:12 +0100 | [diff] [blame] | 430 | * and the line number where the error is encountered. |
| 431 | */ |
| 432 | static int hlua_pusherror(lua_State *L, const char *fmt, ...) |
| 433 | { |
| 434 | va_list argp; |
| 435 | va_start(argp, fmt); |
| 436 | luaL_where(L, 1); |
| 437 | lua_pushvfstring(L, fmt, argp); |
| 438 | va_end(argp); |
| 439 | lua_concat(L, 2); |
| 440 | return 1; |
| 441 | } |
| 442 | |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 443 | /* This functions is used with sample fetch and converters. It |
| 444 | * converts the HAProxy configuration argument in a lua stack |
| 445 | * values. |
| 446 | * |
| 447 | * It takes an array of "arg", and each entry of the array is |
| 448 | * converted and pushed in the LUA stack. |
| 449 | */ |
| 450 | static int hlua_arg2lua(lua_State *L, const struct arg *arg) |
| 451 | { |
| 452 | switch (arg->type) { |
| 453 | case ARGT_SINT: |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 454 | case ARGT_TIME: |
| 455 | case ARGT_SIZE: |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 456 | lua_pushinteger(L, arg->data.sint); |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 457 | break; |
| 458 | |
| 459 | case ARGT_STR: |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 460 | lua_pushlstring(L, arg->data.str.area, arg->data.str.data); |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 461 | break; |
| 462 | |
| 463 | case ARGT_IPV4: |
| 464 | case ARGT_IPV6: |
| 465 | case ARGT_MSK4: |
| 466 | case ARGT_MSK6: |
| 467 | case ARGT_FE: |
| 468 | case ARGT_BE: |
| 469 | case ARGT_TAB: |
| 470 | case ARGT_SRV: |
| 471 | case ARGT_USR: |
| 472 | case ARGT_MAP: |
| 473 | default: |
| 474 | lua_pushnil(L); |
| 475 | break; |
| 476 | } |
| 477 | return 1; |
| 478 | } |
| 479 | |
Ilya Shipitsin | c02a23f | 2020-05-06 00:53:22 +0500 | [diff] [blame] | 480 | /* 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] | 481 | * 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] | 482 | * with sample fetch wrappers. The input arguments are given to the |
| 483 | * lua wrapper and converted as arg list by the function. |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 484 | */ |
| 485 | static int hlua_lua2arg(lua_State *L, int ud, struct arg *arg) |
| 486 | { |
| 487 | switch (lua_type(L, ud)) { |
| 488 | |
| 489 | case LUA_TNUMBER: |
| 490 | case LUA_TBOOLEAN: |
| 491 | arg->type = ARGT_SINT; |
| 492 | arg->data.sint = lua_tointeger(L, ud); |
| 493 | break; |
| 494 | |
| 495 | case LUA_TSTRING: |
| 496 | arg->type = ARGT_STR; |
Tim Duesterhus | 2e89dec | 2019-09-29 23:03:08 +0200 | [diff] [blame] | 497 | 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] | 498 | /* 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] | 499 | 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] | 500 | arg->data.str.head = 0; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 501 | break; |
| 502 | |
| 503 | case LUA_TUSERDATA: |
| 504 | case LUA_TNIL: |
| 505 | case LUA_TTABLE: |
| 506 | case LUA_TFUNCTION: |
| 507 | case LUA_TTHREAD: |
| 508 | case LUA_TLIGHTUSERDATA: |
| 509 | arg->type = ARGT_SINT; |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 510 | arg->data.sint = 0; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 511 | break; |
| 512 | } |
| 513 | return 1; |
| 514 | } |
| 515 | |
| 516 | /* the following functions are used to convert a struct sample |
| 517 | * in Lua type. This useful to convert the return of the |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 518 | * fetches or converters. |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 519 | */ |
Willy Tarreau | 5eadada | 2015-03-10 17:28:54 +0100 | [diff] [blame] | 520 | static int hlua_smp2lua(lua_State *L, struct sample *smp) |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 521 | { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 522 | switch (smp->data.type) { |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 523 | case SMP_T_SINT: |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 524 | case SMP_T_BOOL: |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 525 | lua_pushinteger(L, smp->data.u.sint); |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 526 | break; |
| 527 | |
| 528 | case SMP_T_BIN: |
| 529 | case SMP_T_STR: |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 530 | 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] | 531 | break; |
| 532 | |
| 533 | case SMP_T_METH: |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 534 | switch (smp->data.u.meth.meth) { |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 535 | case HTTP_METH_OPTIONS: lua_pushstring(L, "OPTIONS"); break; |
| 536 | case HTTP_METH_GET: lua_pushstring(L, "GET"); break; |
| 537 | case HTTP_METH_HEAD: lua_pushstring(L, "HEAD"); break; |
| 538 | case HTTP_METH_POST: lua_pushstring(L, "POST"); break; |
| 539 | case HTTP_METH_PUT: lua_pushstring(L, "PUT"); break; |
| 540 | case HTTP_METH_DELETE: lua_pushstring(L, "DELETE"); break; |
| 541 | case HTTP_METH_TRACE: lua_pushstring(L, "TRACE"); break; |
| 542 | case HTTP_METH_CONNECT: lua_pushstring(L, "CONNECT"); break; |
| 543 | case HTTP_METH_OTHER: |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 544 | 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] | 545 | break; |
| 546 | default: |
| 547 | lua_pushnil(L); |
| 548 | break; |
| 549 | } |
| 550 | break; |
| 551 | |
| 552 | case SMP_T_IPV4: |
| 553 | case SMP_T_IPV6: |
| 554 | 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] | 555 | if (sample_casts[smp->data.type][SMP_T_STR] && |
| 556 | sample_casts[smp->data.type][SMP_T_STR](smp)) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 557 | 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] | 558 | else |
| 559 | lua_pushnil(L); |
| 560 | break; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 561 | default: |
| 562 | lua_pushnil(L); |
| 563 | break; |
| 564 | } |
| 565 | return 1; |
| 566 | } |
| 567 | |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 568 | /* the following functions are used to convert a struct sample |
| 569 | * in Lua strings. This is useful to convert the return of the |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 570 | * fetches or converters. |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 571 | */ |
| 572 | static int hlua_smp2lua_str(lua_State *L, struct sample *smp) |
| 573 | { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 574 | switch (smp->data.type) { |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 575 | |
| 576 | case SMP_T_BIN: |
| 577 | case SMP_T_STR: |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 578 | 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] | 579 | break; |
| 580 | |
| 581 | case SMP_T_METH: |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 582 | switch (smp->data.u.meth.meth) { |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 583 | case HTTP_METH_OPTIONS: lua_pushstring(L, "OPTIONS"); break; |
| 584 | case HTTP_METH_GET: lua_pushstring(L, "GET"); break; |
| 585 | case HTTP_METH_HEAD: lua_pushstring(L, "HEAD"); break; |
| 586 | case HTTP_METH_POST: lua_pushstring(L, "POST"); break; |
| 587 | case HTTP_METH_PUT: lua_pushstring(L, "PUT"); break; |
| 588 | case HTTP_METH_DELETE: lua_pushstring(L, "DELETE"); break; |
| 589 | case HTTP_METH_TRACE: lua_pushstring(L, "TRACE"); break; |
| 590 | case HTTP_METH_CONNECT: lua_pushstring(L, "CONNECT"); break; |
| 591 | case HTTP_METH_OTHER: |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 592 | 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] | 593 | break; |
| 594 | default: |
| 595 | lua_pushstring(L, ""); |
| 596 | break; |
| 597 | } |
| 598 | break; |
| 599 | |
| 600 | case SMP_T_SINT: |
| 601 | case SMP_T_BOOL: |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 602 | case SMP_T_IPV4: |
| 603 | case SMP_T_IPV6: |
| 604 | 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] | 605 | if (sample_casts[smp->data.type][SMP_T_STR] && |
| 606 | sample_casts[smp->data.type][SMP_T_STR](smp)) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 607 | 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] | 608 | else |
| 609 | lua_pushstring(L, ""); |
| 610 | break; |
| 611 | default: |
| 612 | lua_pushstring(L, ""); |
| 613 | break; |
| 614 | } |
| 615 | return 1; |
| 616 | } |
| 617 | |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 618 | /* the following functions are used to convert an Lua type in a |
| 619 | * struct sample. This is useful to provide data from a converter |
| 620 | * to the LUA code. |
| 621 | */ |
| 622 | static int hlua_lua2smp(lua_State *L, int ud, struct sample *smp) |
| 623 | { |
| 624 | switch (lua_type(L, ud)) { |
| 625 | |
| 626 | case LUA_TNUMBER: |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 627 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 628 | smp->data.u.sint = lua_tointeger(L, ud); |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 629 | break; |
| 630 | |
| 631 | |
| 632 | case LUA_TBOOLEAN: |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 633 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 634 | smp->data.u.sint = lua_toboolean(L, ud); |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 635 | break; |
| 636 | |
| 637 | case LUA_TSTRING: |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 638 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 639 | smp->flags |= SMP_F_CONST; |
Tim Duesterhus | 2e89dec | 2019-09-29 23:03:08 +0200 | [diff] [blame] | 640 | 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] | 641 | /* 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] | 642 | 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] | 643 | smp->data.u.str.head = 0; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 644 | break; |
| 645 | |
| 646 | case LUA_TUSERDATA: |
| 647 | case LUA_TNIL: |
| 648 | case LUA_TTABLE: |
| 649 | case LUA_TFUNCTION: |
| 650 | case LUA_TTHREAD: |
| 651 | case LUA_TLIGHTUSERDATA: |
Thierry FOURNIER | 93405e1 | 2015-08-26 14:19:03 +0200 | [diff] [blame] | 652 | case LUA_TNONE: |
| 653 | default: |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 654 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 655 | smp->data.u.sint = 0; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 656 | break; |
| 657 | } |
| 658 | return 1; |
| 659 | } |
| 660 | |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 661 | /* This function check the "argp" built by another conversion function |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 662 | * 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] | 663 | * 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] | 664 | * |
Ilya Shipitsin | c02a23f | 2020-05-06 00:53:22 +0500 | [diff] [blame] | 665 | * This function assumes that the argp argument contains ARGM_NBARGS + 1 |
Thierry FOURNIER | 3caa039 | 2015-03-13 13:38:17 +0100 | [diff] [blame] | 666 | * entries. |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 667 | */ |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 668 | __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] | 669 | uint64_t mask, struct proxy *p) |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 670 | { |
| 671 | int min_arg; |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 672 | int i, idx; |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 673 | struct proxy *px; |
Christopher Faulet | d25d926 | 2020-08-06 11:04:46 +0200 | [diff] [blame] | 674 | struct userlist *ul; |
Christopher Faulet | fd2e906 | 2020-08-06 11:10:57 +0200 | [diff] [blame] | 675 | struct my_regex *reg; |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 676 | const char *msg = NULL; |
Christopher Faulet | fd2e906 | 2020-08-06 11:10:57 +0200 | [diff] [blame] | 677 | char *sname, *pname, *err = NULL; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 678 | |
| 679 | idx = 0; |
| 680 | min_arg = ARGM(mask); |
| 681 | mask >>= ARGM_BITS; |
| 682 | |
| 683 | while (1) { |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 684 | struct buffer tmp = BUF_NULL; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 685 | |
| 686 | /* Check oversize. */ |
| 687 | if (idx >= ARGM_NBARGS && argp[idx].type != ARGT_STOP) { |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 688 | msg = "Malformed argument mask"; |
| 689 | goto error; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 690 | } |
| 691 | |
| 692 | /* Check for mandatory arguments. */ |
| 693 | if (argp[idx].type == ARGT_STOP) { |
Thierry FOURNIER | 3caa039 | 2015-03-13 13:38:17 +0100 | [diff] [blame] | 694 | if (idx < min_arg) { |
| 695 | |
| 696 | /* If miss other argument than the first one, we return an error. */ |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 697 | if (idx > 0) { |
| 698 | msg = "Mandatory argument expected"; |
| 699 | goto error; |
| 700 | } |
Thierry FOURNIER | 3caa039 | 2015-03-13 13:38:17 +0100 | [diff] [blame] | 701 | |
| 702 | /* If first argument have a certain type, some default values |
| 703 | * may be used. See the function smp_resolve_args(). |
| 704 | */ |
| 705 | switch (mask & ARGT_MASK) { |
| 706 | |
| 707 | case ARGT_FE: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 708 | if (!(p->cap & PR_CAP_FE)) { |
| 709 | msg = "Mandatory argument expected"; |
| 710 | goto error; |
| 711 | } |
Thierry FOURNIER | 3caa039 | 2015-03-13 13:38:17 +0100 | [diff] [blame] | 712 | argp[idx].data.prx = p; |
| 713 | argp[idx].type = ARGT_FE; |
| 714 | argp[idx+1].type = ARGT_STOP; |
| 715 | break; |
| 716 | |
| 717 | case ARGT_BE: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 718 | if (!(p->cap & PR_CAP_BE)) { |
| 719 | msg = "Mandatory argument expected"; |
| 720 | goto error; |
| 721 | } |
Thierry FOURNIER | 3caa039 | 2015-03-13 13:38:17 +0100 | [diff] [blame] | 722 | argp[idx].data.prx = p; |
| 723 | argp[idx].type = ARGT_BE; |
| 724 | argp[idx+1].type = ARGT_STOP; |
| 725 | break; |
| 726 | |
| 727 | case ARGT_TAB: |
| 728 | argp[idx].data.prx = p; |
| 729 | argp[idx].type = ARGT_TAB; |
| 730 | argp[idx+1].type = ARGT_STOP; |
| 731 | break; |
| 732 | |
| 733 | default: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 734 | msg = "Mandatory argument expected"; |
| 735 | goto error; |
Thierry FOURNIER | 3caa039 | 2015-03-13 13:38:17 +0100 | [diff] [blame] | 736 | break; |
| 737 | } |
| 738 | } |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 739 | break; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 740 | } |
| 741 | |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 742 | /* Check for exceed the number of required argument. */ |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 743 | if ((mask & ARGT_MASK) == ARGT_STOP && |
| 744 | argp[idx].type != ARGT_STOP) { |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 745 | msg = "Last argument expected"; |
| 746 | goto error; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 747 | } |
| 748 | |
| 749 | if ((mask & ARGT_MASK) == ARGT_STOP && |
| 750 | argp[idx].type == ARGT_STOP) { |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 751 | break; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 752 | } |
| 753 | |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 754 | /* Convert some argument types. All string in argp[] are for not |
| 755 | * duplicated yet. |
| 756 | */ |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 757 | switch (mask & ARGT_MASK) { |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 758 | case ARGT_SINT: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 759 | if (argp[idx].type != ARGT_SINT) { |
| 760 | msg = "integer expected"; |
| 761 | goto error; |
| 762 | } |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 763 | argp[idx].type = ARGT_SINT; |
| 764 | break; |
| 765 | |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 766 | case ARGT_TIME: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 767 | if (argp[idx].type != ARGT_SINT) { |
| 768 | msg = "integer expected"; |
| 769 | goto error; |
| 770 | } |
Thierry FOURNIER | 29176f3 | 2015-07-07 00:41:29 +0200 | [diff] [blame] | 771 | argp[idx].type = ARGT_TIME; |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 772 | break; |
| 773 | |
| 774 | case ARGT_SIZE: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 775 | if (argp[idx].type != ARGT_SINT) { |
| 776 | msg = "integer expected"; |
| 777 | goto error; |
| 778 | } |
Thierry FOURNIER | 29176f3 | 2015-07-07 00:41:29 +0200 | [diff] [blame] | 779 | argp[idx].type = ARGT_SIZE; |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 780 | break; |
| 781 | |
| 782 | case ARGT_FE: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 783 | if (argp[idx].type != ARGT_STR) { |
| 784 | msg = "string expected"; |
| 785 | goto error; |
| 786 | } |
Christopher Faulet | fdea1b6 | 2020-08-06 08:29:18 +0200 | [diff] [blame] | 787 | 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] | 788 | if (!argp[idx].data.prx) { |
| 789 | msg = "frontend doesn't exist"; |
| 790 | goto error; |
| 791 | } |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 792 | argp[idx].type = ARGT_FE; |
| 793 | break; |
| 794 | |
| 795 | case ARGT_BE: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 796 | if (argp[idx].type != ARGT_STR) { |
| 797 | msg = "string expected"; |
| 798 | goto error; |
| 799 | } |
Christopher Faulet | fdea1b6 | 2020-08-06 08:29:18 +0200 | [diff] [blame] | 800 | 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] | 801 | if (!argp[idx].data.prx) { |
| 802 | msg = "backend doesn't exist"; |
| 803 | goto error; |
| 804 | } |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 805 | argp[idx].type = ARGT_BE; |
| 806 | break; |
| 807 | |
| 808 | case ARGT_TAB: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 809 | if (argp[idx].type != ARGT_STR) { |
| 810 | msg = "string expected"; |
| 811 | goto error; |
| 812 | } |
Christopher Faulet | fdea1b6 | 2020-08-06 08:29:18 +0200 | [diff] [blame] | 813 | 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] | 814 | if (!argp[idx].data.t) { |
| 815 | msg = "table doesn't exist"; |
| 816 | goto error; |
| 817 | } |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 818 | argp[idx].type = ARGT_TAB; |
| 819 | break; |
| 820 | |
| 821 | case ARGT_SRV: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 822 | if (argp[idx].type != ARGT_STR) { |
| 823 | msg = "string expected"; |
| 824 | goto error; |
| 825 | } |
Christopher Faulet | fdea1b6 | 2020-08-06 08:29:18 +0200 | [diff] [blame] | 826 | sname = strrchr(argp[idx].data.str.area, '/'); |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 827 | if (sname) { |
| 828 | *sname++ = '\0'; |
Christopher Faulet | fdea1b6 | 2020-08-06 08:29:18 +0200 | [diff] [blame] | 829 | pname = argp[idx].data.str.area; |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 830 | px = proxy_be_by_name(pname); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 831 | if (!px) { |
| 832 | msg = "backend doesn't exist"; |
| 833 | goto error; |
| 834 | } |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 835 | } |
| 836 | else { |
Christopher Faulet | fdea1b6 | 2020-08-06 08:29:18 +0200 | [diff] [blame] | 837 | sname = argp[idx].data.str.area; |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 838 | px = p; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 839 | } |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 840 | argp[idx].data.srv = findserver(px, sname); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 841 | if (!argp[idx].data.srv) { |
| 842 | msg = "server doesn't exist"; |
| 843 | goto error; |
| 844 | } |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 845 | argp[idx].type = ARGT_SRV; |
| 846 | break; |
| 847 | |
| 848 | case ARGT_IPV4: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 849 | if (argp[idx].type != ARGT_STR) { |
| 850 | msg = "string expected"; |
| 851 | goto error; |
| 852 | } |
| 853 | if (inet_pton(AF_INET, argp[idx].data.str.area, &argp[idx].data.ipv4)) { |
| 854 | msg = "invalid IPv4 address"; |
| 855 | goto error; |
| 856 | } |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 857 | argp[idx].type = ARGT_IPV4; |
| 858 | break; |
| 859 | |
| 860 | case ARGT_MSK4: |
Christopher Faulet | e663a6e | 2020-08-07 09:11:22 +0200 | [diff] [blame] | 861 | if (argp[idx].type == ARGT_SINT) |
| 862 | len2mask4(argp[idx].data.sint, &argp[idx].data.ipv4); |
| 863 | else if (argp[idx].type == ARGT_STR) { |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 864 | if (!str2mask(argp[idx].data.str.area, &argp[idx].data.ipv4)) { |
| 865 | msg = "invalid IPv4 mask"; |
| 866 | goto error; |
| 867 | } |
| 868 | } |
| 869 | else { |
| 870 | msg = "integer or string expected"; |
| 871 | goto error; |
Christopher Faulet | e663a6e | 2020-08-07 09:11:22 +0200 | [diff] [blame] | 872 | } |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 873 | argp[idx].type = ARGT_MSK4; |
| 874 | break; |
| 875 | |
| 876 | case ARGT_IPV6: |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 877 | if (argp[idx].type != ARGT_STR) { |
| 878 | msg = "string expected"; |
| 879 | goto error; |
| 880 | } |
| 881 | if (inet_pton(AF_INET6, argp[idx].data.str.area, &argp[idx].data.ipv6)) { |
| 882 | msg = "invalid IPv6 address"; |
| 883 | goto error; |
| 884 | } |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 885 | argp[idx].type = ARGT_IPV6; |
| 886 | break; |
| 887 | |
| 888 | case ARGT_MSK6: |
Christopher Faulet | e663a6e | 2020-08-07 09:11:22 +0200 | [diff] [blame] | 889 | if (argp[idx].type == ARGT_SINT) |
| 890 | len2mask6(argp[idx].data.sint, &argp[idx].data.ipv6); |
| 891 | else if (argp[idx].type == ARGT_STR) { |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 892 | if (!str2mask6(argp[idx].data.str.area, &argp[idx].data.ipv6)) { |
| 893 | msg = "invalid IPv6 mask"; |
| 894 | goto error; |
| 895 | } |
| 896 | } |
| 897 | else { |
| 898 | msg = "integer or string expected"; |
| 899 | goto error; |
Christopher Faulet | e663a6e | 2020-08-07 09:11:22 +0200 | [diff] [blame] | 900 | } |
Tim Duesterhus | b814da6 | 2018-01-25 16:24:50 +0100 | [diff] [blame] | 901 | argp[idx].type = ARGT_MSK6; |
| 902 | break; |
| 903 | |
Christopher Faulet | fd2e906 | 2020-08-06 11:10:57 +0200 | [diff] [blame] | 904 | case ARGT_REG: |
| 905 | if (argp[idx].type != ARGT_STR) { |
| 906 | msg = "string expected"; |
| 907 | goto error; |
| 908 | } |
| 909 | reg = regex_comp(argp[idx].data.str.area, !(argp[idx].type_flags & ARGF_REG_ICASE), 1, &err); |
| 910 | if (!reg) { |
| 911 | msg = lua_pushfstring(L, "error compiling regex '%s' : '%s'", |
| 912 | argp[idx].data.str.area, err); |
| 913 | free(err); |
| 914 | goto error; |
| 915 | } |
| 916 | argp[idx].type = ARGT_REG; |
| 917 | argp[idx].data.reg = reg; |
| 918 | break; |
| 919 | |
Thierry FOURNIER | 7f4942a | 2015-03-12 18:28:50 +0100 | [diff] [blame] | 920 | case ARGT_USR: |
Christopher Faulet | d25d926 | 2020-08-06 11:04:46 +0200 | [diff] [blame] | 921 | if (argp[idx].type != ARGT_STR) { |
| 922 | msg = "string expected"; |
| 923 | goto error; |
| 924 | } |
| 925 | if (p->uri_auth && p->uri_auth->userlist && |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 926 | strcmp(p->uri_auth->userlist->name, argp[idx].data.str.area) == 0) |
Christopher Faulet | d25d926 | 2020-08-06 11:04:46 +0200 | [diff] [blame] | 927 | ul = p->uri_auth->userlist; |
| 928 | else |
| 929 | ul = auth_find_userlist(argp[idx].data.str.area); |
| 930 | |
| 931 | if (!ul) { |
| 932 | msg = lua_pushfstring(L, "unable to find userlist '%s'", argp[idx].data.str.area); |
| 933 | goto error; |
| 934 | } |
| 935 | argp[idx].type = ARGT_USR; |
| 936 | argp[idx].data.usr = ul; |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 937 | break; |
| 938 | |
| 939 | case ARGT_STR: |
| 940 | if (!chunk_dup(&tmp, &argp[idx].data.str)) { |
| 941 | msg = "unable to duplicate string arg"; |
| 942 | goto error; |
| 943 | } |
| 944 | argp[idx].data.str = tmp; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 945 | break; |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 946 | |
Christopher Faulet | d25d926 | 2020-08-06 11:04:46 +0200 | [diff] [blame] | 947 | case ARGT_MAP: |
Christopher Faulet | d25d926 | 2020-08-06 11:04:46 +0200 | [diff] [blame] | 948 | msg = "type not yet supported"; |
| 949 | goto error; |
| 950 | break; |
| 951 | |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 952 | } |
| 953 | |
| 954 | /* Check for type of argument. */ |
| 955 | if ((mask & ARGT_MASK) != argp[idx].type) { |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 956 | msg = lua_pushfstring(L, "'%s' expected, got '%s'", |
| 957 | arg_type_names[(mask & ARGT_MASK)], |
| 958 | arg_type_names[argp[idx].type & ARGT_MASK]); |
| 959 | goto error; |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 960 | } |
| 961 | |
| 962 | /* Next argument. */ |
| 963 | mask >>= ARGT_BITS; |
| 964 | idx++; |
| 965 | } |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 966 | return 0; |
| 967 | |
| 968 | error: |
| 969 | for (i = 0; i < idx; i++) { |
| 970 | if (argp[i].type == ARGT_STR) |
| 971 | chunk_destroy(&argp[i].data.str); |
Christopher Faulet | fd2e906 | 2020-08-06 11:10:57 +0200 | [diff] [blame] | 972 | else if (argp[i].type == ARGT_REG) |
| 973 | regex_free(argp[i].data.reg); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 974 | } |
| 975 | WILL_LJMP(luaL_argerror(L, first + idx, msg)); |
| 976 | return 0; /* Never reached */ |
Thierry FOURNIER | 55da165 | 2015-01-23 11:36:30 +0100 | [diff] [blame] | 977 | } |
| 978 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 979 | /* |
Ilya Shipitsin | c02a23f | 2020-05-06 00:53:22 +0500 | [diff] [blame] | 980 | * The following functions are used to make correspondence between the the |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 981 | * executed lua pointer and the "struct hlua *" that contain the context. |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 982 | * |
| 983 | * - hlua_gethlua : return the hlua context associated with an lua_State. |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 984 | * - hlua_sethlua : create the association between hlua context and lua_state. |
| 985 | */ |
| 986 | static inline struct hlua *hlua_gethlua(lua_State *L) |
| 987 | { |
Thierry FOURNIER | 38c5fd6 | 2015-03-10 02:40:29 +0100 | [diff] [blame] | 988 | struct hlua **hlua = lua_getextraspace(L); |
| 989 | return *hlua; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 990 | } |
| 991 | static inline void hlua_sethlua(struct hlua *hlua) |
| 992 | { |
Thierry FOURNIER | 38c5fd6 | 2015-03-10 02:40:29 +0100 | [diff] [blame] | 993 | struct hlua **hlua_store = lua_getextraspace(hlua->T); |
| 994 | *hlua_store = hlua; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 995 | } |
| 996 | |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 997 | /* This function is used to send logs. It try to send on screen (stderr) |
| 998 | * and on the default syslog server. |
| 999 | */ |
| 1000 | static inline void hlua_sendlog(struct proxy *px, int level, const char *msg) |
| 1001 | { |
| 1002 | struct tm tm; |
| 1003 | char *p; |
| 1004 | |
| 1005 | /* Cleanup the log message. */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1006 | p = trash.area; |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 1007 | for (; *msg != '\0'; msg++, p++) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1008 | if (p >= trash.area + trash.size - 1) { |
Thierry FOURNIER | ccf0063 | 2015-09-16 12:47:03 +0200 | [diff] [blame] | 1009 | /* Break the message if exceed the buffer size. */ |
| 1010 | *(p-4) = ' '; |
| 1011 | *(p-3) = '.'; |
| 1012 | *(p-2) = '.'; |
| 1013 | *(p-1) = '.'; |
| 1014 | break; |
| 1015 | } |
Willy Tarreau | 9080711 | 2020-02-25 08:16:33 +0100 | [diff] [blame] | 1016 | if (isprint((unsigned char)*msg)) |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 1017 | *p = *msg; |
| 1018 | else |
| 1019 | *p = '.'; |
| 1020 | } |
| 1021 | *p = '\0'; |
| 1022 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1023 | send_log(px, level, "%s\n", trash.area); |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 1024 | if (!(global.mode & MODE_QUIET) || (global.mode & (MODE_VERBOSE | MODE_STARTING))) { |
Christopher Faulet | f98d821 | 2020-10-02 18:13:52 +0200 | [diff] [blame] | 1025 | if (level == LOG_DEBUG && !(global.mode & MODE_DEBUG)) |
| 1026 | return; |
| 1027 | |
Willy Tarreau | a678b43 | 2015-08-28 10:14:59 +0200 | [diff] [blame] | 1028 | get_localtime(date.tv_sec, &tm); |
| 1029 | fprintf(stderr, "[%s] %03d/%02d%02d%02d (%d) : %s\n", |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 1030 | 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] | 1031 | (int)getpid(), trash.area); |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 1032 | fflush(stderr); |
| 1033 | } |
| 1034 | } |
| 1035 | |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1036 | /* This function just ensure that the yield will be always |
| 1037 | * returned with a timeout and permit to set some flags |
| 1038 | */ |
| 1039 | __LJMP void hlua_yieldk(lua_State *L, int nresults, int ctx, |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 1040 | lua_KFunction k, int timeout, unsigned int flags) |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1041 | { |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 1042 | struct hlua *hlua; |
| 1043 | |
| 1044 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 1045 | hlua = hlua_gethlua(L); |
| 1046 | if (!hlua) { |
| 1047 | return; |
| 1048 | } |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1049 | |
| 1050 | /* Set the wake timeout. If timeout is required, we set |
| 1051 | * the expiration time. |
| 1052 | */ |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 1053 | hlua->wake_time = timeout; |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1054 | |
Thierry FOURNIER | 4abd3ae | 2015-03-03 17:29:06 +0100 | [diff] [blame] | 1055 | hlua->flags |= flags; |
| 1056 | |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1057 | /* Process the yield. */ |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 1058 | MAY_LJMP(lua_yieldk(L, nresults, ctx, k)); |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1059 | } |
| 1060 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1061 | /* This function initialises the Lua environment stored in the stream. |
| 1062 | * 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] | 1063 | * 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] | 1064 | * |
| 1065 | * This function is particular. it initialises a new Lua thread. If the |
| 1066 | * initialisation fails (example: out of memory error), the lua function |
| 1067 | * throws an error (longjmp). |
| 1068 | * |
Thierry FOURNIER | bf90ce1 | 2019-01-06 19:04:24 +0100 | [diff] [blame] | 1069 | * 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] | 1070 | * environment, so we must not initialise it. While the support of |
Thierry FOURNIER | bf90ce1 | 2019-01-06 19:04:24 +0100 | [diff] [blame] | 1071 | * threads appear, the safe environment set a lock to ensure only one |
| 1072 | * Lua execution at a time. If we initialize safe environment in another |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 1073 | * safe environment, we have a dead lock. |
Thierry FOURNIER | bf90ce1 | 2019-01-06 19:04:24 +0100 | [diff] [blame] | 1074 | * |
| 1075 | * set "already_safe" true if the context is initialized form safe |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 1076 | * Lua function. |
Thierry FOURNIER | bf90ce1 | 2019-01-06 19:04:24 +0100 | [diff] [blame] | 1077 | * |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 1078 | * This function manipulates two Lua stacks: the main and the thread. Only |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 1079 | * the main stack can fail. The thread is not manipulated. This function |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 1080 | * MUST NOT manipulate the created thread stack state, because it is not |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 1081 | * protected against errors thrown by the thread stack. |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1082 | */ |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1083 | 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] | 1084 | { |
| 1085 | lua->Mref = LUA_REFNIL; |
Thierry FOURNIER | a097fdf | 2015-03-03 15:17:35 +0100 | [diff] [blame] | 1086 | lua->flags = 0; |
Willy Tarreau | f31af93 | 2020-01-14 09:59:38 +0100 | [diff] [blame] | 1087 | lua->gc_count = 0; |
Christopher Faulet | bc275a9 | 2020-02-26 14:55:16 +0100 | [diff] [blame] | 1088 | lua->wake_time = TICK_ETERNITY; |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1089 | lua->state_id = state_id; |
Thierry FOURNIER | 9ff7e6e | 2015-01-23 11:08:20 +0100 | [diff] [blame] | 1090 | LIST_INIT(&lua->com); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 1091 | if (!already_safe) { |
| 1092 | if (!SET_SAFE_LJMP_PARENT(lua)) { |
| 1093 | lua->Tref = LUA_REFNIL; |
| 1094 | return 0; |
| 1095 | } |
| 1096 | } |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1097 | lua->T = lua_newthread(hlua_states[state_id]); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1098 | if (!lua->T) { |
| 1099 | lua->Tref = LUA_REFNIL; |
Thierry FOURNIER | bf90ce1 | 2019-01-06 19:04:24 +0100 | [diff] [blame] | 1100 | if (!already_safe) |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 1101 | RESET_SAFE_LJMP_PARENT(lua); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1102 | return 0; |
| 1103 | } |
| 1104 | hlua_sethlua(lua); |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1105 | lua->Tref = luaL_ref(hlua_states[state_id], LUA_REGISTRYINDEX); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1106 | lua->task = task; |
Thierry FOURNIER | bf90ce1 | 2019-01-06 19:04:24 +0100 | [diff] [blame] | 1107 | if (!already_safe) |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 1108 | RESET_SAFE_LJMP_PARENT(lua); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1109 | return 1; |
| 1110 | } |
| 1111 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1112 | /* Used to destroy the Lua coroutine when the attached stream or task |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1113 | * is destroyed. The destroy also the memory context. The struct "lua" |
| 1114 | * is not freed. |
| 1115 | */ |
| 1116 | void hlua_ctx_destroy(struct hlua *lua) |
| 1117 | { |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 1118 | if (!lua) |
Thierry FOURNIER | a718b29 | 2015-03-04 16:48:34 +0100 | [diff] [blame] | 1119 | return; |
| 1120 | |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 1121 | if (!lua->T) |
| 1122 | goto end; |
| 1123 | |
Thierry FOURNIER | 9ff7e6e | 2015-01-23 11:08:20 +0100 | [diff] [blame] | 1124 | /* Purge all the pending signals. */ |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1125 | notification_purge(&lua->com); |
Thierry FOURNIER | 9ff7e6e | 2015-01-23 11:08:20 +0100 | [diff] [blame] | 1126 | |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 1127 | if (!SET_SAFE_LJMP(lua)) |
Thierry FOURNIER | 75d0208 | 2017-07-12 13:41:33 +0200 | [diff] [blame] | 1128 | return; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1129 | luaL_unref(lua->T, LUA_REGISTRYINDEX, lua->Mref); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 1130 | RESET_SAFE_LJMP(lua); |
Thierry FOURNIER | 5a50a85 | 2015-09-23 16:59:28 +0200 | [diff] [blame] | 1131 | |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 1132 | if (!SET_SAFE_LJMP_PARENT(lua)) |
Thierry FOURNIER | 75d0208 | 2017-07-12 13:41:33 +0200 | [diff] [blame] | 1133 | return; |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1134 | luaL_unref(hlua_states[lua->state_id], LUA_REGISTRYINDEX, lua->Tref); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 1135 | RESET_SAFE_LJMP_PARENT(lua); |
Thierry FOURNIER | 5a50a85 | 2015-09-23 16:59:28 +0200 | [diff] [blame] | 1136 | /* Forces a garbage collecting process. If the Lua program is finished |
| 1137 | * without error, we run the GC on the thread pointer. Its freed all |
| 1138 | * the unused memory. |
| 1139 | * If the thread is finnish with an error or is currently yielded, |
| 1140 | * it seems that the GC applied on the thread doesn't clean anything, |
| 1141 | * so e run the GC on the main thread. |
| 1142 | * NOTE: maybe this action locks all the Lua threads untiml the en of |
| 1143 | * the garbage collection. |
| 1144 | */ |
Willy Tarreau | f31af93 | 2020-01-14 09:59:38 +0100 | [diff] [blame] | 1145 | if (lua->gc_count) { |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 1146 | if (!SET_SAFE_LJMP_PARENT(lua)) |
Thierry FOURNIER | 75d0208 | 2017-07-12 13:41:33 +0200 | [diff] [blame] | 1147 | return; |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1148 | lua_gc(hlua_states[lua->state_id], LUA_GCCOLLECT, 0); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 1149 | RESET_SAFE_LJMP_PARENT(lua); |
Thierry FOURNIER | 7c39ab4 | 2015-09-27 22:53:33 +0200 | [diff] [blame] | 1150 | } |
Thierry FOURNIER | 5a50a85 | 2015-09-23 16:59:28 +0200 | [diff] [blame] | 1151 | |
Thierry FOURNIER | a7b536b | 2015-09-21 22:50:24 +0200 | [diff] [blame] | 1152 | lua->T = NULL; |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 1153 | |
| 1154 | end: |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 1155 | pool_free(pool_head_hlua, lua); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1156 | } |
| 1157 | |
| 1158 | /* This function is used to restore the Lua context when a coroutine |
| 1159 | * fails. This function copy the common memory between old coroutine |
| 1160 | * and the new coroutine. The old coroutine is destroyed, and its |
| 1161 | * replaced by the new coroutine. |
| 1162 | * If the flag "keep_msg" is set, the last entry of the old is assumed |
| 1163 | * as string error message and it is copied in the new stack. |
| 1164 | */ |
| 1165 | static int hlua_ctx_renew(struct hlua *lua, int keep_msg) |
| 1166 | { |
| 1167 | lua_State *T; |
| 1168 | int new_ref; |
| 1169 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1170 | /* New Lua coroutine. */ |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1171 | T = lua_newthread(hlua_states[lua->state_id]); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1172 | if (!T) |
| 1173 | return 0; |
| 1174 | |
| 1175 | /* Copy last error message. */ |
| 1176 | if (keep_msg) |
| 1177 | lua_xmove(lua->T, T, 1); |
| 1178 | |
| 1179 | /* Copy data between the coroutines. */ |
| 1180 | lua_rawgeti(lua->T, LUA_REGISTRYINDEX, lua->Mref); |
| 1181 | lua_xmove(lua->T, T, 1); |
Ilya Shipitsin | 46a030c | 2020-07-05 16:36:08 +0500 | [diff] [blame] | 1182 | new_ref = luaL_ref(T, LUA_REGISTRYINDEX); /* Value popped. */ |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1183 | |
| 1184 | /* Destroy old data. */ |
| 1185 | luaL_unref(lua->T, LUA_REGISTRYINDEX, lua->Mref); |
| 1186 | |
| 1187 | /* The thread is garbage collected by Lua. */ |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1188 | luaL_unref(hlua_states[lua->state_id], LUA_REGISTRYINDEX, lua->Tref); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1189 | |
| 1190 | /* Fill the struct with the new coroutine values. */ |
| 1191 | lua->Mref = new_ref; |
| 1192 | lua->T = T; |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1193 | lua->Tref = luaL_ref(hlua_states[lua->state_id], LUA_REGISTRYINDEX); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1194 | |
| 1195 | /* Set context. */ |
| 1196 | hlua_sethlua(lua); |
| 1197 | |
| 1198 | return 1; |
| 1199 | } |
| 1200 | |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 1201 | void hlua_hook(lua_State *L, lua_Debug *ar) |
| 1202 | { |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 1203 | struct hlua *hlua; |
| 1204 | |
| 1205 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 1206 | hlua = hlua_gethlua(L); |
| 1207 | if (!hlua) |
| 1208 | return; |
Thierry FOURNIER | cae49c9 | 2015-03-06 14:05:24 +0100 | [diff] [blame] | 1209 | |
| 1210 | /* Lua cannot yield when its returning from a function, |
| 1211 | * so, we can fix the interrupt hook to 1 instruction, |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 1212 | * expecting that the function is finished. |
Thierry FOURNIER | cae49c9 | 2015-03-06 14:05:24 +0100 | [diff] [blame] | 1213 | */ |
| 1214 | if (lua_gethookmask(L) & LUA_MASKRET) { |
| 1215 | lua_sethook(hlua->T, hlua_hook, LUA_MASKCOUNT, 1); |
| 1216 | return; |
| 1217 | } |
| 1218 | |
| 1219 | /* restore the interrupt condition. */ |
| 1220 | lua_sethook(hlua->T, hlua_hook, LUA_MASKCOUNT, hlua_nb_instruction); |
| 1221 | |
| 1222 | /* If we interrupt the Lua processing in yieldable state, we yield. |
| 1223 | * If the state is not yieldable, trying yield causes an error. |
| 1224 | */ |
| 1225 | if (lua_isyieldable(L)) |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 1226 | MAY_LJMP(hlua_yieldk(L, 0, 0, NULL, TICK_ETERNITY, HLUA_CTRLYIELD)); |
Thierry FOURNIER | cae49c9 | 2015-03-06 14:05:24 +0100 | [diff] [blame] | 1227 | |
Thierry FOURNIER | a85cfb1 | 2015-03-13 14:50:06 +0100 | [diff] [blame] | 1228 | /* If we cannot yield, update the clock and check the timeout. */ |
| 1229 | tv_update_date(0, 1); |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 1230 | hlua->run_time += now_ms - hlua->start_time; |
| 1231 | if (hlua->max_time && hlua->run_time >= hlua->max_time) { |
Thierry FOURNIER | cae49c9 | 2015-03-06 14:05:24 +0100 | [diff] [blame] | 1232 | lua_pushfstring(L, "execution timeout"); |
| 1233 | WILL_LJMP(lua_error(L)); |
| 1234 | } |
| 1235 | |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 1236 | /* Update the start time. */ |
| 1237 | hlua->start_time = now_ms; |
| 1238 | |
Thierry FOURNIER | cae49c9 | 2015-03-06 14:05:24 +0100 | [diff] [blame] | 1239 | /* Try to interrupt the process at the end of the current |
| 1240 | * unyieldable function. |
| 1241 | */ |
| 1242 | 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] | 1243 | } |
| 1244 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1245 | /* This function start or resumes the Lua stack execution. If the flag |
| 1246 | * "yield_allowed" if no set and the LUA stack execution returns a yield |
| 1247 | * The function return an error. |
| 1248 | * |
| 1249 | * The function can returns 4 values: |
| 1250 | * - HLUA_E_OK : The execution is terminated without any errors. |
| 1251 | * - HLUA_E_AGAIN : The execution must continue at the next associated |
| 1252 | * task wakeup. |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 1253 | * - 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] | 1254 | * the top of the stack. |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 1255 | * - HLUA_E_ERR : An error has occurred without error message. |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1256 | * |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 1257 | * 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] | 1258 | * LUA code. |
| 1259 | */ |
| 1260 | static enum hlua_exec hlua_ctx_resume(struct hlua *lua, int yield_allowed) |
| 1261 | { |
Christopher Faulet | 08ed98f | 2020-07-28 10:33:25 +0200 | [diff] [blame] | 1262 | #if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504 |
| 1263 | int nres; |
| 1264 | #endif |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1265 | int ret; |
| 1266 | const char *msg; |
Thierry FOURNIER | fc044c9 | 2018-06-07 14:40:48 +0200 | [diff] [blame] | 1267 | const char *trace; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1268 | |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 1269 | /* Initialise run time counter. */ |
| 1270 | if (!HLUA_IS_RUNNING(lua)) |
| 1271 | lua->run_time = 0; |
Thierry FOURNIER | dc9ca96 | 2015-03-05 11:16:52 +0100 | [diff] [blame] | 1272 | |
Thierry FOURNIER | 61ba0e2 | 2017-07-12 11:41:21 +0200 | [diff] [blame] | 1273 | /* Lock the whole Lua execution. This lock must be before the |
| 1274 | * label "resume_execution". |
| 1275 | */ |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1276 | if (lua->state_id == 0) |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 1277 | HA_SPIN_LOCK(LUA_LOCK, &hlua_global_lock); |
Thierry FOURNIER | 61ba0e2 | 2017-07-12 11:41:21 +0200 | [diff] [blame] | 1278 | |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 1279 | resume_execution: |
| 1280 | |
| 1281 | /* This hook interrupts the Lua processing each 'hlua_nb_instruction' |
| 1282 | * instructions. it is used for preventing infinite loops. |
| 1283 | */ |
| 1284 | lua_sethook(lua->T, hlua_hook, LUA_MASKCOUNT, hlua_nb_instruction); |
| 1285 | |
Thierry FOURNIER | 1bfc09b | 2015-03-05 17:10:14 +0100 | [diff] [blame] | 1286 | /* Remove all flags except the running flags. */ |
Thierry FOURNIER | 2f3867f | 2015-09-28 01:02:01 +0200 | [diff] [blame] | 1287 | HLUA_SET_RUN(lua); |
| 1288 | HLUA_CLR_CTRLYIELD(lua); |
| 1289 | HLUA_CLR_WAKERESWR(lua); |
| 1290 | HLUA_CLR_WAKEREQWR(lua); |
Thierry FOURNIER | 1bfc09b | 2015-03-05 17:10:14 +0100 | [diff] [blame] | 1291 | |
Christopher Faulet | bc275a9 | 2020-02-26 14:55:16 +0100 | [diff] [blame] | 1292 | /* Update the start time and reset wake_time. */ |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 1293 | lua->start_time = now_ms; |
Christopher Faulet | bc275a9 | 2020-02-26 14:55:16 +0100 | [diff] [blame] | 1294 | lua->wake_time = TICK_ETERNITY; |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 1295 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1296 | /* Call the function. */ |
Christopher Faulet | 08ed98f | 2020-07-28 10:33:25 +0200 | [diff] [blame] | 1297 | #if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504 |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1298 | 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] | 1299 | #else |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1300 | ret = lua_resume(lua->T, hlua_states[lua->state_id], lua->nargs); |
Christopher Faulet | 08ed98f | 2020-07-28 10:33:25 +0200 | [diff] [blame] | 1301 | #endif |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1302 | switch (ret) { |
| 1303 | |
| 1304 | case LUA_OK: |
| 1305 | ret = HLUA_E_OK; |
| 1306 | break; |
| 1307 | |
| 1308 | case LUA_YIELD: |
Thierry FOURNIER | dc9ca96 | 2015-03-05 11:16:52 +0100 | [diff] [blame] | 1309 | /* Check if the execution timeout is expired. It it is the case, we |
| 1310 | * break the Lua execution. |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 1311 | */ |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 1312 | tv_update_date(0, 1); |
| 1313 | lua->run_time += now_ms - lua->start_time; |
| 1314 | if (lua->max_time && lua->run_time > lua->max_time) { |
Thierry FOURNIER | dc9ca96 | 2015-03-05 11:16:52 +0100 | [diff] [blame] | 1315 | lua_settop(lua->T, 0); /* Empty the stack. */ |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 1316 | ret = HLUA_E_ETMOUT; |
Thierry FOURNIER | dc9ca96 | 2015-03-05 11:16:52 +0100 | [diff] [blame] | 1317 | break; |
| 1318 | } |
| 1319 | /* Process the forced yield. if the general yield is not allowed or |
| 1320 | * if no task were associated this the current Lua execution |
| 1321 | * coroutine, we resume the execution. Else we want to return in the |
| 1322 | * scheduler and we want to be waked up again, to continue the |
| 1323 | * current Lua execution. So we schedule our own task. |
| 1324 | */ |
| 1325 | if (HLUA_IS_CTRLYIELDING(lua)) { |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 1326 | if (!yield_allowed || !lua->task) |
| 1327 | goto resume_execution; |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 1328 | task_wakeup(lua->task, TASK_WOKEN_MSG); |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 1329 | } |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1330 | if (!yield_allowed) { |
| 1331 | lua_settop(lua->T, 0); /* Empty the stack. */ |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 1332 | ret = HLUA_E_YIELD; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1333 | break; |
| 1334 | } |
| 1335 | ret = HLUA_E_AGAIN; |
| 1336 | break; |
| 1337 | |
| 1338 | case LUA_ERRRUN: |
Thierry FOURNIER | 0a99b89 | 2015-08-26 00:14:17 +0200 | [diff] [blame] | 1339 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 1340 | /* Special exit case. The traditional exit is returned as an error |
Thierry FOURNIER | 0a99b89 | 2015-08-26 00:14:17 +0200 | [diff] [blame] | 1341 | * because the errors ares the only one mean to return immediately |
| 1342 | * from and lua execution. |
| 1343 | */ |
| 1344 | if (lua->flags & HLUA_EXIT) { |
| 1345 | ret = HLUA_E_OK; |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 1346 | hlua_ctx_renew(lua, 1); |
Thierry FOURNIER | 0a99b89 | 2015-08-26 00:14:17 +0200 | [diff] [blame] | 1347 | break; |
| 1348 | } |
| 1349 | |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1350 | lua->wake_time = TICK_ETERNITY; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1351 | if (!lua_checkstack(lua->T, 1)) { |
| 1352 | ret = HLUA_E_ERR; |
| 1353 | break; |
| 1354 | } |
| 1355 | msg = lua_tostring(lua->T, -1); |
| 1356 | lua_settop(lua->T, 0); /* Empty the stack. */ |
| 1357 | lua_pop(lua->T, 1); |
Christopher Faulet | d09cc51 | 2021-03-24 14:48:45 +0100 | [diff] [blame] | 1358 | trace = hlua_traceback(lua->T, ", "); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1359 | if (msg) |
Thierry Fournier | 46278ff | 2020-11-29 11:48:12 +0100 | [diff] [blame] | 1360 | 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] | 1361 | else |
Thierry Fournier | 46278ff | 2020-11-29 11:48:12 +0100 | [diff] [blame] | 1362 | 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] | 1363 | ret = HLUA_E_ERRMSG; |
| 1364 | break; |
| 1365 | |
| 1366 | case LUA_ERRMEM: |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1367 | lua->wake_time = TICK_ETERNITY; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1368 | lua_settop(lua->T, 0); /* Empty the stack. */ |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 1369 | ret = HLUA_E_NOMEM; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1370 | break; |
| 1371 | |
| 1372 | case LUA_ERRERR: |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1373 | lua->wake_time = TICK_ETERNITY; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1374 | if (!lua_checkstack(lua->T, 1)) { |
| 1375 | ret = HLUA_E_ERR; |
| 1376 | break; |
| 1377 | } |
| 1378 | msg = lua_tostring(lua->T, -1); |
| 1379 | lua_settop(lua->T, 0); /* Empty the stack. */ |
| 1380 | lua_pop(lua->T, 1); |
| 1381 | if (msg) |
Thierry Fournier | 46278ff | 2020-11-29 11:48:12 +0100 | [diff] [blame] | 1382 | 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] | 1383 | else |
Thierry Fournier | 46278ff | 2020-11-29 11:48:12 +0100 | [diff] [blame] | 1384 | 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] | 1385 | ret = HLUA_E_ERRMSG; |
| 1386 | break; |
| 1387 | |
| 1388 | default: |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 1389 | lua->wake_time = TICK_ETERNITY; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1390 | lua_settop(lua->T, 0); /* Empty the stack. */ |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 1391 | ret = HLUA_E_ERR; |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1392 | break; |
| 1393 | } |
| 1394 | |
| 1395 | switch (ret) { |
| 1396 | case HLUA_E_AGAIN: |
| 1397 | break; |
| 1398 | |
| 1399 | case HLUA_E_ERRMSG: |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1400 | notification_purge(&lua->com); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1401 | hlua_ctx_renew(lua, 1); |
Thierry FOURNIER | a097fdf | 2015-03-03 15:17:35 +0100 | [diff] [blame] | 1402 | HLUA_CLR_RUN(lua); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1403 | break; |
| 1404 | |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 1405 | case HLUA_E_ETMOUT: |
| 1406 | case HLUA_E_NOMEM: |
| 1407 | case HLUA_E_YIELD: |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1408 | case HLUA_E_ERR: |
Thierry FOURNIER | a097fdf | 2015-03-03 15:17:35 +0100 | [diff] [blame] | 1409 | HLUA_CLR_RUN(lua); |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1410 | notification_purge(&lua->com); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1411 | hlua_ctx_renew(lua, 0); |
| 1412 | break; |
| 1413 | |
| 1414 | case HLUA_E_OK: |
Thierry FOURNIER | a097fdf | 2015-03-03 15:17:35 +0100 | [diff] [blame] | 1415 | HLUA_CLR_RUN(lua); |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1416 | notification_purge(&lua->com); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1417 | break; |
| 1418 | } |
| 1419 | |
Thierry FOURNIER | 61ba0e2 | 2017-07-12 11:41:21 +0200 | [diff] [blame] | 1420 | /* This is the main exit point, remove the Lua lock. */ |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 1421 | if (lua->state_id == 0) |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 1422 | HA_SPIN_UNLOCK(LUA_LOCK, &hlua_global_lock); |
Thierry FOURNIER | 61ba0e2 | 2017-07-12 11:41:21 +0200 | [diff] [blame] | 1423 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 1424 | return ret; |
| 1425 | } |
| 1426 | |
Thierry FOURNIER | 0a99b89 | 2015-08-26 00:14:17 +0200 | [diff] [blame] | 1427 | /* This function exit the current code. */ |
| 1428 | __LJMP static int hlua_done(lua_State *L) |
| 1429 | { |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 1430 | struct hlua *hlua; |
| 1431 | |
| 1432 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 1433 | hlua = hlua_gethlua(L); |
| 1434 | if (!hlua) |
| 1435 | return 0; |
Thierry FOURNIER | 0a99b89 | 2015-08-26 00:14:17 +0200 | [diff] [blame] | 1436 | |
| 1437 | hlua->flags |= HLUA_EXIT; |
| 1438 | WILL_LJMP(lua_error(L)); |
| 1439 | |
| 1440 | return 0; |
| 1441 | } |
| 1442 | |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1443 | /* This function is an LUA binding. It provides a function |
| 1444 | * for deleting ACL from a referenced ACL file. |
| 1445 | */ |
| 1446 | __LJMP static int hlua_del_acl(lua_State *L) |
| 1447 | { |
| 1448 | const char *name; |
| 1449 | const char *key; |
| 1450 | struct pat_ref *ref; |
| 1451 | |
| 1452 | MAY_LJMP(check_args(L, 2, "del_acl")); |
| 1453 | |
| 1454 | name = MAY_LJMP(luaL_checkstring(L, 1)); |
| 1455 | key = MAY_LJMP(luaL_checkstring(L, 2)); |
| 1456 | |
| 1457 | ref = pat_ref_lookup(name); |
| 1458 | if (!ref) |
Vincent Bernat | a72db18 | 2015-10-06 16:05:59 +0200 | [diff] [blame] | 1459 | WILL_LJMP(luaL_error(L, "'del_acl': unknown acl file '%s'", name)); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1460 | |
Christopher Faulet | 5cf2dfc | 2020-06-03 18:39:16 +0200 | [diff] [blame] | 1461 | HA_SPIN_LOCK(PATREF_LOCK, &ref->lock); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1462 | pat_ref_delete(ref, key); |
Christopher Faulet | 5cf2dfc | 2020-06-03 18:39:16 +0200 | [diff] [blame] | 1463 | HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1464 | return 0; |
| 1465 | } |
| 1466 | |
| 1467 | /* This function is an LUA binding. It provides a function |
| 1468 | * for deleting map entry from a referenced map file. |
| 1469 | */ |
| 1470 | static int hlua_del_map(lua_State *L) |
| 1471 | { |
| 1472 | const char *name; |
| 1473 | const char *key; |
| 1474 | struct pat_ref *ref; |
| 1475 | |
| 1476 | MAY_LJMP(check_args(L, 2, "del_map")); |
| 1477 | |
| 1478 | name = MAY_LJMP(luaL_checkstring(L, 1)); |
| 1479 | key = MAY_LJMP(luaL_checkstring(L, 2)); |
| 1480 | |
| 1481 | ref = pat_ref_lookup(name); |
| 1482 | if (!ref) |
Vincent Bernat | a72db18 | 2015-10-06 16:05:59 +0200 | [diff] [blame] | 1483 | WILL_LJMP(luaL_error(L, "'del_map': unknown acl file '%s'", name)); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1484 | |
Christopher Faulet | 5cf2dfc | 2020-06-03 18:39:16 +0200 | [diff] [blame] | 1485 | HA_SPIN_LOCK(PATREF_LOCK, &ref->lock); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1486 | pat_ref_delete(ref, key); |
Christopher Faulet | 5cf2dfc | 2020-06-03 18:39:16 +0200 | [diff] [blame] | 1487 | HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1488 | return 0; |
| 1489 | } |
| 1490 | |
| 1491 | /* This function is an LUA binding. It provides a function |
| 1492 | * for adding ACL pattern from a referenced ACL file. |
| 1493 | */ |
| 1494 | static int hlua_add_acl(lua_State *L) |
| 1495 | { |
| 1496 | const char *name; |
| 1497 | const char *key; |
| 1498 | struct pat_ref *ref; |
| 1499 | |
| 1500 | MAY_LJMP(check_args(L, 2, "add_acl")); |
| 1501 | |
| 1502 | name = MAY_LJMP(luaL_checkstring(L, 1)); |
| 1503 | key = MAY_LJMP(luaL_checkstring(L, 2)); |
| 1504 | |
| 1505 | ref = pat_ref_lookup(name); |
| 1506 | if (!ref) |
Vincent Bernat | a72db18 | 2015-10-06 16:05:59 +0200 | [diff] [blame] | 1507 | WILL_LJMP(luaL_error(L, "'add_acl': unknown acl file '%s'", name)); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1508 | |
Christopher Faulet | 5cf2dfc | 2020-06-03 18:39:16 +0200 | [diff] [blame] | 1509 | HA_SPIN_LOCK(PATREF_LOCK, &ref->lock); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1510 | if (pat_ref_find_elt(ref, key) == NULL) |
| 1511 | pat_ref_add(ref, key, NULL, NULL); |
Christopher Faulet | 5cf2dfc | 2020-06-03 18:39:16 +0200 | [diff] [blame] | 1512 | HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1513 | return 0; |
| 1514 | } |
| 1515 | |
| 1516 | /* This function is an LUA binding. It provides a function |
| 1517 | * for setting map pattern and sample from a referenced map |
| 1518 | * file. |
| 1519 | */ |
| 1520 | static int hlua_set_map(lua_State *L) |
| 1521 | { |
| 1522 | const char *name; |
| 1523 | const char *key; |
| 1524 | const char *value; |
| 1525 | struct pat_ref *ref; |
| 1526 | |
| 1527 | MAY_LJMP(check_args(L, 3, "set_map")); |
| 1528 | |
| 1529 | name = MAY_LJMP(luaL_checkstring(L, 1)); |
| 1530 | key = MAY_LJMP(luaL_checkstring(L, 2)); |
| 1531 | value = MAY_LJMP(luaL_checkstring(L, 3)); |
| 1532 | |
| 1533 | ref = pat_ref_lookup(name); |
| 1534 | if (!ref) |
Vincent Bernat | a72db18 | 2015-10-06 16:05:59 +0200 | [diff] [blame] | 1535 | WILL_LJMP(luaL_error(L, "'set_map': unknown map file '%s'", name)); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1536 | |
Christopher Faulet | 5cf2dfc | 2020-06-03 18:39:16 +0200 | [diff] [blame] | 1537 | HA_SPIN_LOCK(PATREF_LOCK, &ref->lock); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1538 | if (pat_ref_find_elt(ref, key) != NULL) |
| 1539 | pat_ref_set(ref, key, value, NULL); |
| 1540 | else |
| 1541 | pat_ref_add(ref, key, value, NULL); |
Christopher Faulet | 5cf2dfc | 2020-06-03 18:39:16 +0200 | [diff] [blame] | 1542 | HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock); |
Thierry FOURNIER | 83758bb | 2015-02-04 13:21:04 +0100 | [diff] [blame] | 1543 | return 0; |
| 1544 | } |
| 1545 | |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 1546 | /* A class is a lot of memory that contain data. This data can be a table, |
| 1547 | * 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] | 1548 | * metatable have an original version registered in the global context with |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 1549 | * the name of the object (_G[<name>] = <metable> ). |
| 1550 | * |
| 1551 | * A metable is a table that modify the standard behavior of a standard |
| 1552 | * access to the associated data. The entries of this new metatable are |
| 1553 | * defined as is: |
| 1554 | * |
| 1555 | * http://lua-users.org/wiki/MetatableEvents |
| 1556 | * |
| 1557 | * __index |
| 1558 | * |
| 1559 | * we access an absent field in a table, the result is nil. This is |
| 1560 | * true, but it is not the whole truth. Actually, such access triggers |
| 1561 | * the interpreter to look for an __index metamethod: If there is no |
| 1562 | * such method, as usually happens, then the access results in nil; |
| 1563 | * otherwise, the metamethod will provide the result. |
| 1564 | * |
| 1565 | * Control 'prototype' inheritance. When accessing "myTable[key]" and |
| 1566 | * the key does not appear in the table, but the metatable has an __index |
| 1567 | * property: |
| 1568 | * |
| 1569 | * - if the value is a function, the function is called, passing in the |
| 1570 | * table and the key; the return value of that function is returned as |
| 1571 | * the result. |
| 1572 | * |
| 1573 | * - if the value is another table, the value of the key in that table is |
| 1574 | * asked for and returned (and if it doesn't exist in that table, but that |
| 1575 | * table's metatable has an __index property, then it continues on up) |
| 1576 | * |
| 1577 | * - Use "rawget(myTable,key)" to skip this metamethod. |
| 1578 | * |
| 1579 | * http://www.lua.org/pil/13.4.1.html |
| 1580 | * |
| 1581 | * __newindex |
| 1582 | * |
| 1583 | * Like __index, but control property assignment. |
| 1584 | * |
| 1585 | * __mode - Control weak references. A string value with one or both |
| 1586 | * of the characters 'k' and 'v' which specifies that the the |
| 1587 | * keys and/or values in the table are weak references. |
| 1588 | * |
| 1589 | * __call - Treat a table like a function. When a table is followed by |
| 1590 | * parenthesis such as "myTable( 'foo' )" and the metatable has |
| 1591 | * a __call key pointing to a function, that function is invoked |
| 1592 | * (passing any specified arguments) and the return value is |
| 1593 | * returned. |
| 1594 | * |
| 1595 | * __metatable - Hide the metatable. When "getmetatable( myTable )" is |
| 1596 | * called, if the metatable for myTable has a __metatable |
| 1597 | * key, the value of that key is returned instead of the |
| 1598 | * actual metatable. |
| 1599 | * |
| 1600 | * __tostring - Control string representation. When the builtin |
| 1601 | * "tostring( myTable )" function is called, if the metatable |
| 1602 | * for myTable has a __tostring property set to a function, |
| 1603 | * that function is invoked (passing myTable to it) and the |
| 1604 | * return value is used as the string representation. |
| 1605 | * |
| 1606 | * __len - Control table length. When the table length is requested using |
| 1607 | * the length operator ( '#' ), if the metatable for myTable has |
| 1608 | * a __len key pointing to a function, that function is invoked |
| 1609 | * (passing myTable to it) and the return value used as the value |
| 1610 | * of "#myTable". |
| 1611 | * |
| 1612 | * __gc - Userdata finalizer code. When userdata is set to be garbage |
| 1613 | * collected, if the metatable has a __gc field pointing to a |
| 1614 | * function, that function is first invoked, passing the userdata |
| 1615 | * to it. The __gc metamethod is not called for tables. |
| 1616 | * (See http://lua-users.org/lists/lua-l/2006-11/msg00508.html) |
| 1617 | * |
| 1618 | * Special metamethods for redefining standard operators: |
| 1619 | * http://www.lua.org/pil/13.1.html |
| 1620 | * |
| 1621 | * __add "+" |
| 1622 | * __sub "-" |
| 1623 | * __mul "*" |
| 1624 | * __div "/" |
| 1625 | * __unm "!" |
| 1626 | * __pow "^" |
| 1627 | * __concat ".." |
| 1628 | * |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 1629 | * Special methods for redefining standard relations |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 1630 | * http://www.lua.org/pil/13.2.html |
| 1631 | * |
| 1632 | * __eq "==" |
| 1633 | * __lt "<" |
| 1634 | * __le "<=" |
| 1635 | */ |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1636 | |
| 1637 | /* |
| 1638 | * |
| 1639 | * |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1640 | * Class Map |
| 1641 | * |
| 1642 | * |
| 1643 | */ |
| 1644 | |
| 1645 | /* Returns a struct hlua_map if the stack entry "ud" is |
| 1646 | * a class session, otherwise it throws an error. |
| 1647 | */ |
| 1648 | __LJMP static struct map_descriptor *hlua_checkmap(lua_State *L, int ud) |
| 1649 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 1650 | return MAY_LJMP(hlua_checkudata(L, ud, class_map_ref)); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1651 | } |
| 1652 | |
| 1653 | /* This function is the map constructor. It don't need |
| 1654 | * the class Map object. It creates and return a new Map |
| 1655 | * object. It must be called only during "body" or "init" |
| 1656 | * context because it process some filesystem accesses. |
| 1657 | */ |
| 1658 | __LJMP static int hlua_map_new(struct lua_State *L) |
| 1659 | { |
| 1660 | const char *fn; |
| 1661 | int match = PAT_MATCH_STR; |
| 1662 | struct sample_conv conv; |
| 1663 | const char *file = ""; |
| 1664 | int line = 0; |
| 1665 | lua_Debug ar; |
| 1666 | char *err = NULL; |
| 1667 | struct arg args[2]; |
| 1668 | |
| 1669 | if (lua_gettop(L) < 1 || lua_gettop(L) > 2) |
| 1670 | WILL_LJMP(luaL_error(L, "'new' needs at least 1 argument.")); |
| 1671 | |
| 1672 | fn = MAY_LJMP(luaL_checkstring(L, 1)); |
| 1673 | |
| 1674 | if (lua_gettop(L) >= 2) { |
| 1675 | match = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 1676 | if (match < 0 || match >= PAT_MATCH_NUM) |
| 1677 | WILL_LJMP(luaL_error(L, "'new' needs a valid match method.")); |
| 1678 | } |
| 1679 | |
| 1680 | /* Get Lua filename and line number. */ |
| 1681 | if (lua_getstack(L, 1, &ar)) { /* check function at level */ |
| 1682 | lua_getinfo(L, "Sl", &ar); /* get info about it */ |
| 1683 | if (ar.currentline > 0) { /* is there info? */ |
| 1684 | file = ar.short_src; |
| 1685 | line = ar.currentline; |
| 1686 | } |
| 1687 | } |
| 1688 | |
| 1689 | /* fill fake sample_conv struct. */ |
| 1690 | conv.kw = ""; /* unused. */ |
| 1691 | conv.process = NULL; /* unused. */ |
| 1692 | conv.arg_mask = 0; /* unused. */ |
| 1693 | conv.val_args = NULL; /* unused. */ |
| 1694 | conv.out_type = SMP_T_STR; |
| 1695 | conv.private = (void *)(long)match; |
| 1696 | switch (match) { |
| 1697 | case PAT_MATCH_STR: conv.in_type = SMP_T_STR; break; |
| 1698 | case PAT_MATCH_BEG: conv.in_type = SMP_T_STR; break; |
| 1699 | case PAT_MATCH_SUB: conv.in_type = SMP_T_STR; break; |
| 1700 | case PAT_MATCH_DIR: conv.in_type = SMP_T_STR; break; |
| 1701 | case PAT_MATCH_DOM: conv.in_type = SMP_T_STR; break; |
| 1702 | case PAT_MATCH_END: conv.in_type = SMP_T_STR; break; |
| 1703 | case PAT_MATCH_REG: conv.in_type = SMP_T_STR; break; |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 1704 | case PAT_MATCH_INT: conv.in_type = SMP_T_SINT; break; |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1705 | case PAT_MATCH_IP: conv.in_type = SMP_T_ADDR; break; |
| 1706 | default: |
| 1707 | WILL_LJMP(luaL_error(L, "'new' doesn't support this match mode.")); |
| 1708 | } |
| 1709 | |
| 1710 | /* fill fake args. */ |
| 1711 | args[0].type = ARGT_STR; |
Christopher Faulet | 73292e9 | 2020-08-06 08:40:09 +0200 | [diff] [blame] | 1712 | args[0].data.str.area = strdup(fn); |
| 1713 | args[0].data.str.data = strlen(fn); |
| 1714 | args[0].data.str.size = args[0].data.str.data+1; |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1715 | args[1].type = ARGT_STOP; |
| 1716 | |
| 1717 | /* load the map. */ |
| 1718 | if (!sample_load_map(args, &conv, file, line, &err)) { |
Ilya Shipitsin | b8888ab | 2021-01-06 21:20:16 +0500 | [diff] [blame] | 1719 | /* error case: we can't use luaL_error because we must |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1720 | * free the err variable. |
| 1721 | */ |
| 1722 | luaL_where(L, 1); |
| 1723 | lua_pushfstring(L, "'new': %s.", err); |
| 1724 | lua_concat(L, 2); |
| 1725 | free(err); |
Christopher Faulet | 6ad7df4 | 2020-08-07 11:45:18 +0200 | [diff] [blame] | 1726 | chunk_destroy(&args[0].data.str); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1727 | WILL_LJMP(lua_error(L)); |
| 1728 | } |
| 1729 | |
| 1730 | /* create the lua object. */ |
| 1731 | lua_newtable(L); |
| 1732 | lua_pushlightuserdata(L, args[0].data.map); |
| 1733 | lua_rawseti(L, -2, 0); |
| 1734 | |
| 1735 | /* Pop a class Map metatable and affect it to the userdata. */ |
| 1736 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_map_ref); |
| 1737 | lua_setmetatable(L, -2); |
| 1738 | |
| 1739 | |
| 1740 | return 1; |
| 1741 | } |
| 1742 | |
| 1743 | __LJMP static inline int _hlua_map_lookup(struct lua_State *L, int str) |
| 1744 | { |
| 1745 | struct map_descriptor *desc; |
| 1746 | struct pattern *pat; |
| 1747 | struct sample smp; |
| 1748 | |
| 1749 | MAY_LJMP(check_args(L, 2, "lookup")); |
| 1750 | desc = MAY_LJMP(hlua_checkmap(L, 1)); |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 1751 | if (desc->pat.expect_type == SMP_T_SINT) { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1752 | smp.data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1753 | smp.data.u.sint = MAY_LJMP(luaL_checkinteger(L, 2)); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1754 | } |
| 1755 | else { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1756 | smp.data.type = SMP_T_STR; |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1757 | smp.flags = SMP_F_CONST; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1758 | 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] | 1759 | smp.data.u.str.size = smp.data.u.str.data + 1; |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1760 | } |
| 1761 | |
| 1762 | pat = pattern_exec_match(&desc->pat, &smp, 1); |
Thierry FOURNIER | 503bb09 | 2015-08-19 08:35:43 +0200 | [diff] [blame] | 1763 | if (!pat || !pat->data) { |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 1764 | if (str) |
| 1765 | lua_pushstring(L, ""); |
| 1766 | else |
| 1767 | lua_pushnil(L); |
| 1768 | return 1; |
| 1769 | } |
| 1770 | |
| 1771 | /* 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] | 1772 | 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] | 1773 | return 1; |
| 1774 | } |
| 1775 | |
| 1776 | __LJMP static int hlua_map_lookup(struct lua_State *L) |
| 1777 | { |
| 1778 | return _hlua_map_lookup(L, 0); |
| 1779 | } |
| 1780 | |
| 1781 | __LJMP static int hlua_map_slookup(struct lua_State *L) |
| 1782 | { |
| 1783 | return _hlua_map_lookup(L, 1); |
| 1784 | } |
| 1785 | |
| 1786 | /* |
| 1787 | * |
| 1788 | * |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1789 | * Class Socket |
| 1790 | * |
| 1791 | * |
| 1792 | */ |
| 1793 | |
| 1794 | __LJMP static struct hlua_socket *hlua_checksocket(lua_State *L, int ud) |
| 1795 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 1796 | return MAY_LJMP(hlua_checkudata(L, ud, class_socket_ref)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1797 | } |
| 1798 | |
| 1799 | /* 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] | 1800 | * connection. It is used for notify space available to send or data |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1801 | * received. |
| 1802 | */ |
Willy Tarreau | 00a37f0 | 2015-04-13 12:05:19 +0200 | [diff] [blame] | 1803 | static void hlua_socket_handler(struct appctx *appctx) |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1804 | { |
Willy Tarreau | 00a37f0 | 2015-04-13 12:05:19 +0200 | [diff] [blame] | 1805 | struct stream_interface *si = appctx->owner; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1806 | |
Thierry FOURNIER | b13b20a | 2017-07-16 20:48:54 +0200 | [diff] [blame] | 1807 | if (appctx->ctx.hlua_cosocket.die) { |
| 1808 | si_shutw(si); |
| 1809 | si_shutr(si); |
| 1810 | si_ic(si)->flags |= CF_READ_NULL; |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1811 | notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read); |
| 1812 | notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write); |
Thierry FOURNIER | b13b20a | 2017-07-16 20:48:54 +0200 | [diff] [blame] | 1813 | stream_shutdown(si_strm(si), SF_ERR_KILLED); |
| 1814 | } |
| 1815 | |
Ilya Shipitsin | b8888ab | 2021-01-06 21:20:16 +0500 | [diff] [blame] | 1816 | /* If we can't write, wakeup the pending write signals. */ |
Thierry FOURNIER | 6d695e6 | 2015-09-27 19:29:38 +0200 | [diff] [blame] | 1817 | if (channel_output_closed(si_ic(si))) |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1818 | notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write); |
Thierry FOURNIER | 6d695e6 | 2015-09-27 19:29:38 +0200 | [diff] [blame] | 1819 | |
Ilya Shipitsin | b8888ab | 2021-01-06 21:20:16 +0500 | [diff] [blame] | 1820 | /* If we can't read, wakeup the pending read signals. */ |
Thierry FOURNIER | 6d695e6 | 2015-09-27 19:29:38 +0200 | [diff] [blame] | 1821 | if (channel_input_closed(si_oc(si))) |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1822 | notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read); |
Thierry FOURNIER | 6d695e6 | 2015-09-27 19:29:38 +0200 | [diff] [blame] | 1823 | |
Willy Tarreau | 5a0b25d | 2019-07-18 18:01:14 +0200 | [diff] [blame] | 1824 | /* if the connection is not established, inform the stream that we want |
Thierry FOURNIER | 316e319 | 2015-09-04 18:25:53 +0200 | [diff] [blame] | 1825 | * to be notified whenever the connection completes. |
| 1826 | */ |
Willy Tarreau | 5a0b25d | 2019-07-18 18:01:14 +0200 | [diff] [blame] | 1827 | if (si_opposite(si)->state < SI_ST_EST) { |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 1828 | si_cant_get(si); |
Willy Tarreau | 12c2423 | 2018-12-06 15:29:50 +0100 | [diff] [blame] | 1829 | si_rx_conn_blk(si); |
Willy Tarreau | 3367d41 | 2018-11-15 10:57:41 +0100 | [diff] [blame] | 1830 | si_rx_endp_more(si); |
Willy Tarreau | d4da196 | 2015-04-20 01:31:23 +0200 | [diff] [blame] | 1831 | return; |
Thierry FOURNIER | 316e319 | 2015-09-04 18:25:53 +0200 | [diff] [blame] | 1832 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1833 | |
| 1834 | /* This function is called after the connect. */ |
Thierry FOURNIER | 18d0990 | 2016-12-16 09:25:38 +0100 | [diff] [blame] | 1835 | appctx->ctx.hlua_cosocket.connected = 1; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1836 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 1837 | /* 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] | 1838 | if (channel_may_recv(si_ic(si))) |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1839 | notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1840 | |
| 1841 | /* Wake the tasks which wants to read if the buffer contains data. */ |
Thierry FOURNIER | eba6f64 | 2015-09-26 22:01:07 +0200 | [diff] [blame] | 1842 | if (!channel_is_empty(si_oc(si))) |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1843 | notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read); |
Thierry FOURNIER | 101b976 | 2018-05-27 01:27:40 +0200 | [diff] [blame] | 1844 | |
| 1845 | /* Some data were injected in the buffer, notify the stream |
| 1846 | * interface. |
| 1847 | */ |
| 1848 | if (!channel_is_empty(si_ic(si))) |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 1849 | si_update(si); |
Thierry FOURNIER | 101b976 | 2018-05-27 01:27:40 +0200 | [diff] [blame] | 1850 | |
| 1851 | /* If write notifications are registered, we considers we want |
Willy Tarreau | 3367d41 | 2018-11-15 10:57:41 +0100 | [diff] [blame] | 1852 | * to write, so we clear the blocking flag. |
Thierry FOURNIER | 101b976 | 2018-05-27 01:27:40 +0200 | [diff] [blame] | 1853 | */ |
| 1854 | if (notification_registered(&appctx->ctx.hlua_cosocket.wake_on_write)) |
Willy Tarreau | 3367d41 | 2018-11-15 10:57:41 +0100 | [diff] [blame] | 1855 | si_rx_endp_more(si); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1856 | } |
| 1857 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1858 | /* This function is called when the "struct stream" is destroyed. |
| 1859 | * Remove the link from the object to this stream. |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1860 | * Wake all the pending signals. |
| 1861 | */ |
Willy Tarreau | 00a37f0 | 2015-04-13 12:05:19 +0200 | [diff] [blame] | 1862 | static void hlua_socket_release(struct appctx *appctx) |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1863 | { |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 1864 | struct xref *peer; |
| 1865 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1866 | /* Remove my link in the original object. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 1867 | peer = xref_get_peer_and_lock(&appctx->ctx.hlua_cosocket.xref); |
| 1868 | if (peer) |
| 1869 | xref_disconnect(&appctx->ctx.hlua_cosocket.xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1870 | |
| 1871 | /* Wake all the task waiting for me. */ |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 1872 | notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read); |
| 1873 | notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1874 | } |
| 1875 | |
| 1876 | /* If the garbage collectio of the object is launch, nobody |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1877 | * uses this object. If the stream does not exists, just quit. |
| 1878 | * Send the shutdown signal to the stream. In some cases, |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1879 | * pending signal can rest in the read and write lists. destroy |
| 1880 | * it. |
| 1881 | */ |
| 1882 | __LJMP static int hlua_socket_gc(lua_State *L) |
| 1883 | { |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 1884 | struct hlua_socket *socket; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1885 | struct appctx *appctx; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1886 | struct xref *peer; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1887 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 1888 | MAY_LJMP(check_args(L, 1, "__gc")); |
| 1889 | |
| 1890 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 1891 | peer = xref_get_peer_and_lock(&socket->xref); |
| 1892 | if (!peer) |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1893 | return 0; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1894 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1895 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1896 | /* Set the flag which destroy the session. */ |
Thierry FOURNIER | b13b20a | 2017-07-16 20:48:54 +0200 | [diff] [blame] | 1897 | appctx->ctx.hlua_cosocket.die = 1; |
| 1898 | appctx_wakeup(appctx); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1899 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1900 | /* Remove all reference between the Lua stack and the coroutine stream. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 1901 | xref_disconnect(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1902 | return 0; |
| 1903 | } |
| 1904 | |
| 1905 | /* The close function send shutdown signal and break the |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1906 | * links between the stream and the object. |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1907 | */ |
sada | 05ed330 | 2018-05-11 11:48:18 -0700 | [diff] [blame] | 1908 | __LJMP static int hlua_socket_close_helper(lua_State *L) |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1909 | { |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 1910 | struct hlua_socket *socket; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1911 | struct appctx *appctx; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1912 | struct xref *peer; |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 1913 | struct hlua *hlua; |
| 1914 | |
| 1915 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 1916 | hlua = hlua_gethlua(L); |
| 1917 | if (!hlua) |
| 1918 | return 0; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1919 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 1920 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 1921 | |
| 1922 | /* Check if we run on the same thread than the xreator thread. |
| 1923 | * We cannot access to the socket if the thread is different. |
| 1924 | */ |
| 1925 | if (socket->tid != tid) |
| 1926 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 1927 | |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 1928 | peer = xref_get_peer_and_lock(&socket->xref); |
| 1929 | if (!peer) |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1930 | return 0; |
Willy Tarreau | f31af93 | 2020-01-14 09:59:38 +0100 | [diff] [blame] | 1931 | |
| 1932 | hlua->gc_count--; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1933 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1934 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1935 | /* Set the flag which destroy the session. */ |
Thierry FOURNIER | b13b20a | 2017-07-16 20:48:54 +0200 | [diff] [blame] | 1936 | appctx->ctx.hlua_cosocket.die = 1; |
| 1937 | appctx_wakeup(appctx); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1938 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1939 | /* Remove all reference between the Lua stack and the coroutine stream. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 1940 | xref_disconnect(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1941 | return 0; |
| 1942 | } |
| 1943 | |
sada | 05ed330 | 2018-05-11 11:48:18 -0700 | [diff] [blame] | 1944 | /* The close function calls close_helper. |
| 1945 | */ |
| 1946 | __LJMP static int hlua_socket_close(lua_State *L) |
| 1947 | { |
| 1948 | MAY_LJMP(check_args(L, 1, "close")); |
| 1949 | return hlua_socket_close_helper(L); |
| 1950 | } |
| 1951 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1952 | /* This Lua function assumes that the stack contain three parameters. |
| 1953 | * 1 - USERDATA containing a struct socket |
| 1954 | * 2 - INTEGER with values of the macro defined below |
| 1955 | * If the integer is -1, we must read at most one line. |
| 1956 | * If the integer is -2, we ust read all the data until the |
| 1957 | * end of the stream. |
| 1958 | * If the integer is positive value, we must read a number of |
| 1959 | * bytes corresponding to this value. |
| 1960 | */ |
| 1961 | #define HLSR_READ_LINE (-1) |
| 1962 | #define HLSR_READ_ALL (-2) |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 1963 | __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] | 1964 | { |
| 1965 | struct hlua_socket *socket = MAY_LJMP(hlua_checksocket(L, 1)); |
| 1966 | int wanted = lua_tointeger(L, 2); |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 1967 | struct hlua *hlua; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1968 | struct appctx *appctx; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 1969 | size_t len; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1970 | int nblk; |
Willy Tarreau | 206ba83 | 2018-06-14 15:27:31 +0200 | [diff] [blame] | 1971 | const char *blk1; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 1972 | size_t len1; |
Willy Tarreau | 206ba83 | 2018-06-14 15:27:31 +0200 | [diff] [blame] | 1973 | const char *blk2; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 1974 | size_t len2; |
Thierry FOURNIER | 0054392 | 2015-03-09 18:35:06 +0100 | [diff] [blame] | 1975 | int skip_at_end = 0; |
Willy Tarreau | 8138967 | 2015-03-10 12:03:52 +0100 | [diff] [blame] | 1976 | struct channel *oc; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1977 | struct stream_interface *si; |
| 1978 | struct stream *s; |
| 1979 | struct xref *peer; |
Thierry FOURNIER | 8c126c7 | 2018-05-25 16:27:44 +0200 | [diff] [blame] | 1980 | int missing_bytes; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1981 | |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 1982 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 1983 | hlua = hlua_gethlua(L); |
| 1984 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 1985 | /* Check if this lua stack is schedulable. */ |
| 1986 | if (!hlua || !hlua->task) |
| 1987 | WILL_LJMP(luaL_error(L, "The 'receive' function is only allowed in " |
| 1988 | "'frontend', 'backend' or 'task'")); |
| 1989 | |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 1990 | /* Check if we run on the same thread than the xreator thread. |
| 1991 | * We cannot access to the socket if the thread is different. |
| 1992 | */ |
| 1993 | if (socket->tid != tid) |
| 1994 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 1995 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 1996 | /* check for connection break. If some data where read, return it. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 1997 | peer = xref_get_peer_and_lock(&socket->xref); |
| 1998 | if (!peer) |
| 1999 | goto no_peer; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2000 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
| 2001 | si = appctx->owner; |
| 2002 | s = si_strm(si); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2003 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2004 | oc = &s->res; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2005 | if (wanted == HLSR_READ_LINE) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2006 | /* Read line. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 2007 | nblk = co_getline_nc(oc, &blk1, &len1, &blk2, &len2); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2008 | if (nblk < 0) /* Connection close. */ |
| 2009 | goto connection_closed; |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 2010 | if (nblk == 0) /* No data available. */ |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2011 | goto connection_empty; |
Thierry FOURNIER | 0054392 | 2015-03-09 18:35:06 +0100 | [diff] [blame] | 2012 | |
| 2013 | /* remove final \r\n. */ |
| 2014 | if (nblk == 1) { |
| 2015 | if (blk1[len1-1] == '\n') { |
| 2016 | len1--; |
| 2017 | skip_at_end++; |
| 2018 | if (blk1[len1-1] == '\r') { |
| 2019 | len1--; |
| 2020 | skip_at_end++; |
| 2021 | } |
| 2022 | } |
| 2023 | } |
| 2024 | else { |
| 2025 | if (blk2[len2-1] == '\n') { |
| 2026 | len2--; |
| 2027 | skip_at_end++; |
| 2028 | if (blk2[len2-1] == '\r') { |
| 2029 | len2--; |
| 2030 | skip_at_end++; |
| 2031 | } |
| 2032 | } |
| 2033 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2034 | } |
| 2035 | |
| 2036 | else if (wanted == HLSR_READ_ALL) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2037 | /* Read all the available data. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 2038 | nblk = co_getblk_nc(oc, &blk1, &len1, &blk2, &len2); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2039 | if (nblk < 0) /* Connection close. */ |
| 2040 | goto connection_closed; |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 2041 | if (nblk == 0) /* No data available. */ |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2042 | goto connection_empty; |
| 2043 | } |
| 2044 | |
| 2045 | else { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2046 | /* Read a block of data. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 2047 | nblk = co_getblk_nc(oc, &blk1, &len1, &blk2, &len2); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2048 | if (nblk < 0) /* Connection close. */ |
| 2049 | goto connection_closed; |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 2050 | if (nblk == 0) /* No data available. */ |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2051 | goto connection_empty; |
| 2052 | |
Thierry FOURNIER | 8c126c7 | 2018-05-25 16:27:44 +0200 | [diff] [blame] | 2053 | missing_bytes = wanted - socket->b.n; |
| 2054 | if (len1 > missing_bytes) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2055 | nblk = 1; |
Thierry FOURNIER | 8c126c7 | 2018-05-25 16:27:44 +0200 | [diff] [blame] | 2056 | len1 = missing_bytes; |
| 2057 | } if (nblk == 2 && len1 + len2 > missing_bytes) |
| 2058 | len2 = missing_bytes - len1; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2059 | } |
| 2060 | |
| 2061 | len = len1; |
| 2062 | |
| 2063 | luaL_addlstring(&socket->b, blk1, len1); |
| 2064 | if (nblk == 2) { |
| 2065 | len += len2; |
| 2066 | luaL_addlstring(&socket->b, blk2, len2); |
| 2067 | } |
| 2068 | |
| 2069 | /* Consume data. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 2070 | co_skip(oc, len + skip_at_end); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2071 | |
| 2072 | /* Don't wait anything. */ |
Thierry FOURNIER | 7e4ee47 | 2018-05-25 15:03:50 +0200 | [diff] [blame] | 2073 | appctx_wakeup(appctx); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2074 | |
| 2075 | /* If the pattern reclaim to read all the data |
| 2076 | * in the connection, got out. |
| 2077 | */ |
| 2078 | if (wanted == HLSR_READ_ALL) |
| 2079 | goto connection_empty; |
Thierry FOURNIER | 8c126c7 | 2018-05-25 16:27:44 +0200 | [diff] [blame] | 2080 | else if (wanted >= 0 && socket->b.n < wanted) |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2081 | goto connection_empty; |
| 2082 | |
| 2083 | /* Return result. */ |
| 2084 | luaL_pushresult(&socket->b); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2085 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2086 | return 1; |
| 2087 | |
| 2088 | connection_closed: |
| 2089 | |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2090 | xref_unlock(&socket->xref, peer); |
| 2091 | |
| 2092 | no_peer: |
| 2093 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2094 | /* If the buffer containds data. */ |
| 2095 | if (socket->b.n > 0) { |
| 2096 | luaL_pushresult(&socket->b); |
| 2097 | return 1; |
| 2098 | } |
| 2099 | lua_pushnil(L); |
| 2100 | lua_pushstring(L, "connection closed."); |
| 2101 | return 2; |
| 2102 | |
| 2103 | connection_empty: |
| 2104 | |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2105 | if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_read, hlua->task)) { |
| 2106 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2107 | WILL_LJMP(luaL_error(L, "out of memory")); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2108 | } |
| 2109 | xref_unlock(&socket->xref, peer); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 2110 | 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] | 2111 | return 0; |
| 2112 | } |
| 2113 | |
Tim Duesterhus | b33754c | 2018-01-04 19:32:14 +0100 | [diff] [blame] | 2114 | /* This Lua function gets two parameters. The first one can be string |
| 2115 | * or a number. If the string is "*l", the user requires one line. If |
| 2116 | * 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] | 2117 | * If the value is a number, the user require a number of bytes equal |
| 2118 | * to the value. The default value is "*l" (a line). |
| 2119 | * |
Tim Duesterhus | b33754c | 2018-01-04 19:32:14 +0100 | [diff] [blame] | 2120 | * This parameter with a variable type is converted in integer. This |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2121 | * integer takes this values: |
| 2122 | * -1 : read a line |
| 2123 | * -2 : read all the stream |
Tim Duesterhus | b33754c | 2018-01-04 19:32:14 +0100 | [diff] [blame] | 2124 | * >0 : amount of bytes. |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2125 | * |
Tim Duesterhus | b33754c | 2018-01-04 19:32:14 +0100 | [diff] [blame] | 2126 | * The second parameter is optional. It contains a string that must be |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2127 | * concatenated with the read data. |
| 2128 | */ |
| 2129 | __LJMP static int hlua_socket_receive(struct lua_State *L) |
| 2130 | { |
| 2131 | int wanted = HLSR_READ_LINE; |
| 2132 | const char *pattern; |
| 2133 | int type; |
| 2134 | char *error; |
| 2135 | size_t len; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2136 | struct hlua_socket *socket; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2137 | |
| 2138 | if (lua_gettop(L) < 1 || lua_gettop(L) > 3) |
| 2139 | WILL_LJMP(luaL_error(L, "The 'receive' function requires between 1 and 3 arguments.")); |
| 2140 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2141 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2142 | |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2143 | /* Check if we run on the same thread than the xreator thread. |
| 2144 | * We cannot access to the socket if the thread is different. |
| 2145 | */ |
| 2146 | if (socket->tid != tid) |
| 2147 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 2148 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2149 | /* check for pattern. */ |
| 2150 | if (lua_gettop(L) >= 2) { |
| 2151 | type = lua_type(L, 2); |
| 2152 | if (type == LUA_TSTRING) { |
| 2153 | pattern = lua_tostring(L, 2); |
| 2154 | if (strcmp(pattern, "*a") == 0) |
| 2155 | wanted = HLSR_READ_ALL; |
| 2156 | else if (strcmp(pattern, "*l") == 0) |
| 2157 | wanted = HLSR_READ_LINE; |
| 2158 | else { |
| 2159 | wanted = strtoll(pattern, &error, 10); |
| 2160 | if (*error != '\0') |
| 2161 | WILL_LJMP(luaL_error(L, "Unsupported pattern.")); |
| 2162 | } |
| 2163 | } |
| 2164 | else if (type == LUA_TNUMBER) { |
| 2165 | wanted = lua_tointeger(L, 2); |
| 2166 | if (wanted < 0) |
| 2167 | WILL_LJMP(luaL_error(L, "Unsupported size.")); |
| 2168 | } |
| 2169 | } |
| 2170 | |
| 2171 | /* Set pattern. */ |
| 2172 | lua_pushinteger(L, wanted); |
Tim Duesterhus | c6e377e | 2018-01-04 19:32:13 +0100 | [diff] [blame] | 2173 | |
| 2174 | /* Check if we would replace the top by itself. */ |
| 2175 | if (lua_gettop(L) != 2) |
| 2176 | lua_replace(L, 2); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2177 | |
Tim Duesterhus | b33754c | 2018-01-04 19:32:14 +0100 | [diff] [blame] | 2178 | /* init buffer, and fill it with prefix. */ |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2179 | luaL_buffinit(L, &socket->b); |
| 2180 | |
| 2181 | /* Check prefix. */ |
| 2182 | if (lua_gettop(L) >= 3) { |
| 2183 | if (lua_type(L, 3) != LUA_TSTRING) |
| 2184 | WILL_LJMP(luaL_error(L, "Expect a 'string' for the prefix")); |
| 2185 | pattern = lua_tolstring(L, 3, &len); |
| 2186 | luaL_addlstring(&socket->b, pattern, len); |
| 2187 | } |
| 2188 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2189 | return __LJMP(hlua_socket_receive_yield(L, 0, 0)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2190 | } |
| 2191 | |
| 2192 | /* Write the Lua input string in the output buffer. |
Mark Lakes | 22154b4 | 2018-01-29 14:38:40 -0800 | [diff] [blame] | 2193 | * This function returns a yield if no space is available. |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2194 | */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2195 | 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] | 2196 | { |
| 2197 | struct hlua_socket *socket; |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 2198 | struct hlua *hlua; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2199 | struct appctx *appctx; |
| 2200 | size_t buf_len; |
| 2201 | const char *buf; |
| 2202 | int len; |
| 2203 | int send_len; |
| 2204 | int sent; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2205 | struct xref *peer; |
| 2206 | struct stream_interface *si; |
| 2207 | struct stream *s; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2208 | |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 2209 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 2210 | hlua = hlua_gethlua(L); |
| 2211 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2212 | /* Check if this lua stack is schedulable. */ |
| 2213 | if (!hlua || !hlua->task) |
| 2214 | WILL_LJMP(luaL_error(L, "The 'write' function is only allowed in " |
| 2215 | "'frontend', 'backend' or 'task'")); |
| 2216 | |
| 2217 | /* Get object */ |
| 2218 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
| 2219 | buf = MAY_LJMP(luaL_checklstring(L, 2, &buf_len)); |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2220 | sent = MAY_LJMP(luaL_checkinteger(L, 3)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2221 | |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2222 | /* Check if we run on the same thread than the xreator thread. |
| 2223 | * We cannot access to the socket if the thread is different. |
| 2224 | */ |
| 2225 | if (socket->tid != tid) |
| 2226 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 2227 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2228 | /* check for connection break. If some data where read, return it. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2229 | peer = xref_get_peer_and_lock(&socket->xref); |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2230 | if (!peer) { |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2231 | lua_pushinteger(L, -1); |
| 2232 | return 1; |
| 2233 | } |
| 2234 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
| 2235 | si = appctx->owner; |
| 2236 | s = si_strm(si); |
| 2237 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2238 | /* Check for connection close. */ |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2239 | if (channel_output_closed(&s->req)) { |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2240 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2241 | lua_pushinteger(L, -1); |
| 2242 | return 1; |
| 2243 | } |
| 2244 | |
| 2245 | /* Update the input buffer data. */ |
| 2246 | buf += sent; |
| 2247 | send_len = buf_len - sent; |
| 2248 | |
| 2249 | /* All the data are sent. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2250 | if (sent >= buf_len) { |
| 2251 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2252 | return 1; /* Implicitly return the length sent. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2253 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2254 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 2255 | /* Check if the buffer is available because HAProxy doesn't allocate |
Thierry FOURNIER | 486d52a | 2015-03-09 17:51:43 +0100 | [diff] [blame] | 2256 | * the request buffer if its not required. |
| 2257 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2258 | if (s->req.buf.size == 0) { |
Willy Tarreau | 581abd3 | 2018-10-25 10:21:41 +0200 | [diff] [blame] | 2259 | if (!si_alloc_ibuf(si, &appctx->buffer_wait)) |
Christopher Faulet | 33834b1 | 2016-12-19 09:29:06 +0100 | [diff] [blame] | 2260 | goto hlua_socket_write_yield_return; |
Thierry FOURNIER | 486d52a | 2015-03-09 17:51:43 +0100 | [diff] [blame] | 2261 | } |
| 2262 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 2263 | /* Check for available space. */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2264 | len = b_room(&s->req.buf); |
Christopher Faulet | 33834b1 | 2016-12-19 09:29:06 +0100 | [diff] [blame] | 2265 | if (len <= 0) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2266 | goto hlua_socket_write_yield_return; |
Christopher Faulet | 33834b1 | 2016-12-19 09:29:06 +0100 | [diff] [blame] | 2267 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2268 | |
| 2269 | /* send data */ |
| 2270 | if (len < send_len) |
| 2271 | send_len = len; |
Thierry FOURNIER | 66b8919 | 2018-05-27 01:14:47 +0200 | [diff] [blame] | 2272 | len = ci_putblk(&s->req, buf, send_len); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2273 | |
| 2274 | /* "Not enough space" (-1), "Buffer too little to contain |
| 2275 | * the data" (-2) are not expected because the available length |
| 2276 | * is tested. |
| 2277 | * Other unknown error are also not expected. |
| 2278 | */ |
| 2279 | if (len <= 0) { |
Willy Tarreau | bc18da1 | 2015-03-13 14:00:47 +0100 | [diff] [blame] | 2280 | if (len == -1) |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2281 | s->req.flags |= CF_WAKE_WRITE; |
Willy Tarreau | bc18da1 | 2015-03-13 14:00:47 +0100 | [diff] [blame] | 2282 | |
sada | 05ed330 | 2018-05-11 11:48:18 -0700 | [diff] [blame] | 2283 | MAY_LJMP(hlua_socket_close_helper(L)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2284 | lua_pop(L, 1); |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2285 | lua_pushinteger(L, -1); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2286 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2287 | return 1; |
| 2288 | } |
| 2289 | |
| 2290 | /* update buffers. */ |
Thierry FOURNIER | 101b976 | 2018-05-27 01:27:40 +0200 | [diff] [blame] | 2291 | appctx_wakeup(appctx); |
Willy Tarreau | de70fa1 | 2015-09-26 11:25:05 +0200 | [diff] [blame] | 2292 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2293 | s->req.rex = TICK_ETERNITY; |
| 2294 | s->res.wex = TICK_ETERNITY; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2295 | |
| 2296 | /* Update length sent. */ |
| 2297 | lua_pop(L, 1); |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2298 | lua_pushinteger(L, sent + len); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2299 | |
| 2300 | /* All the data buffer is sent ? */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2301 | if (sent + len >= buf_len) { |
| 2302 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2303 | return 1; |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2304 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2305 | |
| 2306 | hlua_socket_write_yield_return: |
Thierry FOURNIER | ba42fcd | 2018-05-27 00:59:48 +0200 | [diff] [blame] | 2307 | if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_write, hlua->task)) { |
| 2308 | xref_unlock(&socket->xref, peer); |
| 2309 | WILL_LJMP(luaL_error(L, "out of memory")); |
| 2310 | } |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2311 | xref_unlock(&socket->xref, peer); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 2312 | 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] | 2313 | return 0; |
| 2314 | } |
| 2315 | |
| 2316 | /* This function initiate the send of data. It just check the input |
| 2317 | * parameters and push an integer in the Lua stack that contain the |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 2318 | * 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] | 2319 | * "hlua_socket_write_yield" that can yield. |
| 2320 | * |
| 2321 | * The Lua function gets between 3 and 4 parameters. The first one is |
| 2322 | * the associated object. The second is a string buffer. The third is |
| 2323 | * a facultative integer that represents where is the buffer position |
| 2324 | * of the start of the data that can send. The first byte is the |
| 2325 | * position "1". The default value is "1". The fourth argument is a |
| 2326 | * facultative integer that represents where is the buffer position |
| 2327 | * of the end of the data that can send. The default is the last byte. |
| 2328 | */ |
| 2329 | static int hlua_socket_send(struct lua_State *L) |
| 2330 | { |
| 2331 | int i; |
| 2332 | int j; |
| 2333 | const char *buf; |
| 2334 | size_t buf_len; |
| 2335 | |
| 2336 | /* Check number of arguments. */ |
| 2337 | if (lua_gettop(L) < 2 || lua_gettop(L) > 4) |
| 2338 | WILL_LJMP(luaL_error(L, "'send' needs between 2 and 4 arguments")); |
| 2339 | |
| 2340 | /* Get the string. */ |
| 2341 | buf = MAY_LJMP(luaL_checklstring(L, 2, &buf_len)); |
| 2342 | |
| 2343 | /* Get and check j. */ |
| 2344 | if (lua_gettop(L) == 4) { |
| 2345 | j = MAY_LJMP(luaL_checkinteger(L, 4)); |
| 2346 | if (j < 0) |
| 2347 | j = buf_len + j + 1; |
| 2348 | if (j > buf_len) |
| 2349 | j = buf_len + 1; |
| 2350 | lua_pop(L, 1); |
| 2351 | } |
| 2352 | else |
| 2353 | j = buf_len; |
| 2354 | |
| 2355 | /* Get and check i. */ |
| 2356 | if (lua_gettop(L) == 3) { |
| 2357 | i = MAY_LJMP(luaL_checkinteger(L, 3)); |
| 2358 | if (i < 0) |
| 2359 | i = buf_len + i + 1; |
| 2360 | if (i > buf_len) |
| 2361 | i = buf_len + 1; |
| 2362 | lua_pop(L, 1); |
| 2363 | } else |
| 2364 | i = 1; |
| 2365 | |
| 2366 | /* Check bth i and j. */ |
| 2367 | if (i > j) { |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2368 | lua_pushinteger(L, 0); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2369 | return 1; |
| 2370 | } |
| 2371 | if (i == 0 && j == 0) { |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2372 | lua_pushinteger(L, 0); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2373 | return 1; |
| 2374 | } |
| 2375 | if (i == 0) |
| 2376 | i = 1; |
| 2377 | if (j == 0) |
| 2378 | j = 1; |
| 2379 | |
| 2380 | /* Pop the string. */ |
| 2381 | lua_pop(L, 1); |
| 2382 | |
| 2383 | /* Update the buffer length. */ |
| 2384 | buf += i - 1; |
| 2385 | buf_len = j - i + 1; |
| 2386 | lua_pushlstring(L, buf, buf_len); |
| 2387 | |
| 2388 | /* This unsigned is used to remember the amount of sent data. */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2389 | lua_pushinteger(L, 0); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2390 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2391 | return MAY_LJMP(hlua_socket_write_yield(L, 0, 0)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2392 | } |
| 2393 | |
Willy Tarreau | 22b0a68 | 2015-06-17 19:43:49 +0200 | [diff] [blame] | 2394 | #define SOCKET_INFO_MAX_LEN sizeof("[0000:0000:0000:0000:0000:0000:0000:0000]:12345") |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2395 | __LJMP static inline int hlua_socket_info(struct lua_State *L, struct sockaddr_storage *addr) |
| 2396 | { |
| 2397 | static char buffer[SOCKET_INFO_MAX_LEN]; |
| 2398 | int ret; |
| 2399 | int len; |
| 2400 | char *p; |
| 2401 | |
| 2402 | ret = addr_to_str(addr, buffer+1, SOCKET_INFO_MAX_LEN-1); |
| 2403 | if (ret <= 0) { |
| 2404 | lua_pushnil(L); |
| 2405 | return 1; |
| 2406 | } |
| 2407 | |
| 2408 | if (ret == AF_UNIX) { |
| 2409 | lua_pushstring(L, buffer+1); |
| 2410 | return 1; |
| 2411 | } |
| 2412 | else if (ret == AF_INET6) { |
| 2413 | buffer[0] = '['; |
| 2414 | len = strlen(buffer); |
| 2415 | buffer[len] = ']'; |
| 2416 | len++; |
| 2417 | buffer[len] = ':'; |
| 2418 | len++; |
| 2419 | p = buffer; |
| 2420 | } |
| 2421 | else if (ret == AF_INET) { |
| 2422 | p = buffer + 1; |
| 2423 | len = strlen(p); |
| 2424 | p[len] = ':'; |
| 2425 | len++; |
| 2426 | } |
| 2427 | else { |
| 2428 | lua_pushnil(L); |
| 2429 | return 1; |
| 2430 | } |
| 2431 | |
| 2432 | if (port_to_str(addr, p + len, SOCKET_INFO_MAX_LEN-1 - len) <= 0) { |
| 2433 | lua_pushnil(L); |
| 2434 | return 1; |
| 2435 | } |
| 2436 | |
| 2437 | lua_pushstring(L, p); |
| 2438 | return 1; |
| 2439 | } |
| 2440 | |
| 2441 | /* Returns information about the peer of the connection. */ |
| 2442 | __LJMP static int hlua_socket_getpeername(struct lua_State *L) |
| 2443 | { |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2444 | struct hlua_socket *socket; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2445 | struct xref *peer; |
| 2446 | struct appctx *appctx; |
| 2447 | struct stream_interface *si; |
| 2448 | struct stream *s; |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2449 | int ret; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2450 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2451 | MAY_LJMP(check_args(L, 1, "getpeername")); |
| 2452 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2453 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2454 | |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2455 | /* Check if we run on the same thread than the xreator thread. |
| 2456 | * We cannot access to the socket if the thread is different. |
| 2457 | */ |
| 2458 | if (socket->tid != tid) |
| 2459 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 2460 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2461 | /* check for connection break. If some data where read, return it. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2462 | peer = xref_get_peer_and_lock(&socket->xref); |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2463 | if (!peer) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2464 | lua_pushnil(L); |
| 2465 | return 1; |
| 2466 | } |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2467 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
| 2468 | si = appctx->owner; |
| 2469 | s = si_strm(si); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2470 | |
Willy Tarreau | 5a0b25d | 2019-07-18 18:01:14 +0200 | [diff] [blame] | 2471 | if (!s->target_addr) { |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2472 | xref_unlock(&socket->xref, peer); |
Willy Tarreau | a71f642 | 2016-11-16 17:00:14 +0100 | [diff] [blame] | 2473 | lua_pushnil(L); |
| 2474 | return 1; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2475 | } |
| 2476 | |
Willy Tarreau | 5a0b25d | 2019-07-18 18:01:14 +0200 | [diff] [blame] | 2477 | ret = MAY_LJMP(hlua_socket_info(L, s->target_addr)); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2478 | xref_unlock(&socket->xref, peer); |
| 2479 | return ret; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2480 | } |
| 2481 | |
| 2482 | /* Returns information about my connection side. */ |
| 2483 | static int hlua_socket_getsockname(struct lua_State *L) |
| 2484 | { |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2485 | struct hlua_socket *socket; |
| 2486 | struct connection *conn; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2487 | struct appctx *appctx; |
| 2488 | struct xref *peer; |
| 2489 | struct stream_interface *si; |
| 2490 | struct stream *s; |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2491 | int ret; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2492 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2493 | MAY_LJMP(check_args(L, 1, "getsockname")); |
| 2494 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2495 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2496 | |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2497 | /* Check if we run on the same thread than the xreator thread. |
| 2498 | * We cannot access to the socket if the thread is different. |
| 2499 | */ |
| 2500 | if (socket->tid != tid) |
| 2501 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 2502 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2503 | /* check for connection break. If some data where read, return it. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2504 | peer = xref_get_peer_and_lock(&socket->xref); |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2505 | if (!peer) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2506 | lua_pushnil(L); |
| 2507 | return 1; |
| 2508 | } |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2509 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
| 2510 | si = appctx->owner; |
| 2511 | s = si_strm(si); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2512 | |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 2513 | conn = cs_conn(objt_cs(s->si[1].end)); |
Willy Tarreau | 5a0b25d | 2019-07-18 18:01:14 +0200 | [diff] [blame] | 2514 | if (!conn || !conn_get_src(conn)) { |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2515 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2516 | lua_pushnil(L); |
| 2517 | return 1; |
| 2518 | } |
| 2519 | |
Willy Tarreau | 9da9a6f | 2019-07-17 14:49:44 +0200 | [diff] [blame] | 2520 | ret = hlua_socket_info(L, conn->src); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2521 | xref_unlock(&socket->xref, peer); |
| 2522 | return ret; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2523 | } |
| 2524 | |
| 2525 | /* This struct define the applet. */ |
Willy Tarreau | 3057645 | 2015-04-13 13:50:30 +0200 | [diff] [blame] | 2526 | static struct applet update_applet = { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2527 | .obj_type = OBJ_TYPE_APPLET, |
| 2528 | .name = "<LUA_TCP>", |
| 2529 | .fct = hlua_socket_handler, |
| 2530 | .release = hlua_socket_release, |
| 2531 | }; |
| 2532 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2533 | __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] | 2534 | { |
| 2535 | struct hlua_socket *socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 2536 | struct hlua *hlua; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2537 | struct xref *peer; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2538 | struct appctx *appctx; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2539 | struct stream_interface *si; |
| 2540 | struct stream *s; |
| 2541 | |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 2542 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 2543 | hlua = hlua_gethlua(L); |
| 2544 | if (!hlua) |
| 2545 | return 0; |
| 2546 | |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2547 | /* Check if we run on the same thread than the xreator thread. |
| 2548 | * We cannot access to the socket if the thread is different. |
| 2549 | */ |
| 2550 | if (socket->tid != tid) |
| 2551 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 2552 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2553 | /* check for connection break. If some data where read, return it. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2554 | peer = xref_get_peer_and_lock(&socket->xref); |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2555 | if (!peer) { |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2556 | lua_pushnil(L); |
| 2557 | lua_pushstring(L, "Can't connect"); |
| 2558 | return 2; |
| 2559 | } |
| 2560 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
| 2561 | si = appctx->owner; |
| 2562 | s = si_strm(si); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2563 | |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2564 | /* Check if we run on the same thread than the xreator thread. |
| 2565 | * We cannot access to the socket if the thread is different. |
| 2566 | */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2567 | if (socket->tid != tid) { |
| 2568 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2569 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2570 | } |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2571 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2572 | /* Check for connection close. */ |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2573 | if (!hlua || channel_output_closed(&s->req)) { |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2574 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2575 | lua_pushnil(L); |
| 2576 | lua_pushstring(L, "Can't connect"); |
| 2577 | return 2; |
| 2578 | } |
| 2579 | |
Willy Tarreau | e09101e | 2018-10-16 17:37:12 +0200 | [diff] [blame] | 2580 | appctx = __objt_appctx(s->si[0].end); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2581 | |
| 2582 | /* Check for connection established. */ |
Thierry FOURNIER | 18d0990 | 2016-12-16 09:25:38 +0100 | [diff] [blame] | 2583 | if (appctx->ctx.hlua_cosocket.connected) { |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2584 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2585 | lua_pushinteger(L, 1); |
| 2586 | return 1; |
| 2587 | } |
| 2588 | |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2589 | if (!notification_new(&hlua->com, &appctx->ctx.hlua_cosocket.wake_on_write, hlua->task)) { |
| 2590 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2591 | WILL_LJMP(luaL_error(L, "out of memory error")); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2592 | } |
| 2593 | xref_unlock(&socket->xref, peer); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 2594 | 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] | 2595 | return 0; |
| 2596 | } |
| 2597 | |
| 2598 | /* This function fail or initite the connection. */ |
| 2599 | __LJMP static int hlua_socket_connect(struct lua_State *L) |
| 2600 | { |
| 2601 | struct hlua_socket *socket; |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2602 | int port = -1; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2603 | const char *ip; |
Thierry FOURNIER | 95ad96a | 2015-03-09 18:12:40 +0100 | [diff] [blame] | 2604 | struct hlua *hlua; |
| 2605 | struct appctx *appctx; |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2606 | int low, high; |
| 2607 | struct sockaddr_storage *addr; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2608 | struct xref *peer; |
| 2609 | struct stream_interface *si; |
| 2610 | struct stream *s; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2611 | |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2612 | if (lua_gettop(L) < 2) |
| 2613 | WILL_LJMP(luaL_error(L, "connect: need at least 2 arguments")); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2614 | |
| 2615 | /* Get args. */ |
| 2616 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2617 | |
| 2618 | /* Check if we run on the same thread than the xreator thread. |
| 2619 | * We cannot access to the socket if the thread is different. |
| 2620 | */ |
| 2621 | if (socket->tid != tid) |
| 2622 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 2623 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2624 | ip = MAY_LJMP(luaL_checkstring(L, 2)); |
Tim Duesterhus | 6edab86 | 2018-01-06 19:04:45 +0100 | [diff] [blame] | 2625 | if (lua_gettop(L) >= 3) { |
| 2626 | luaL_Buffer b; |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2627 | port = MAY_LJMP(luaL_checkinteger(L, 3)); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2628 | |
Tim Duesterhus | 6edab86 | 2018-01-06 19:04:45 +0100 | [diff] [blame] | 2629 | /* Force the ip to end with a colon, to support IPv6 addresses |
| 2630 | * that are not enclosed within square brackets. |
| 2631 | */ |
| 2632 | if (port > 0) { |
| 2633 | luaL_buffinit(L, &b); |
| 2634 | luaL_addstring(&b, ip); |
| 2635 | luaL_addchar(&b, ':'); |
| 2636 | luaL_pushresult(&b); |
| 2637 | ip = lua_tolstring(L, lua_gettop(L), NULL); |
| 2638 | } |
| 2639 | } |
| 2640 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2641 | /* check for connection break. If some data where read, return it. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2642 | peer = xref_get_peer_and_lock(&socket->xref); |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2643 | if (!peer) { |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2644 | lua_pushnil(L); |
| 2645 | return 1; |
| 2646 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2647 | |
| 2648 | /* Parse ip address. */ |
Willy Tarreau | 5fc9328 | 2020-09-16 18:25:03 +0200 | [diff] [blame] | 2649 | 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] | 2650 | if (!addr) { |
| 2651 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2652 | WILL_LJMP(luaL_error(L, "connect: cannot parse destination address '%s'", ip)); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2653 | } |
Willy Tarreau | 9da9a6f | 2019-07-17 14:49:44 +0200 | [diff] [blame] | 2654 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2655 | /* Set port. */ |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2656 | if (low == 0) { |
Willy Tarreau | 1c8d32b | 2019-07-18 15:47:45 +0200 | [diff] [blame] | 2657 | if (addr->ss_family == AF_INET) { |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2658 | if (port == -1) { |
| 2659 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2660 | WILL_LJMP(luaL_error(L, "connect: port missing")); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2661 | } |
Willy Tarreau | 1c8d32b | 2019-07-18 15:47:45 +0200 | [diff] [blame] | 2662 | ((struct sockaddr_in *)addr)->sin_port = htons(port); |
| 2663 | } else if (addr->ss_family == AF_INET6) { |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2664 | if (port == -1) { |
| 2665 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2666 | WILL_LJMP(luaL_error(L, "connect: port missing")); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2667 | } |
Willy Tarreau | 1c8d32b | 2019-07-18 15:47:45 +0200 | [diff] [blame] | 2668 | ((struct sockaddr_in6 *)addr)->sin6_port = htons(port); |
Thierry FOURNIER | c2f5653 | 2015-09-26 20:23:30 +0200 | [diff] [blame] | 2669 | } |
| 2670 | } |
Willy Tarreau | 1c8d32b | 2019-07-18 15:47:45 +0200 | [diff] [blame] | 2671 | |
Willy Tarreau | 5a0b25d | 2019-07-18 18:01:14 +0200 | [diff] [blame] | 2672 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
| 2673 | si = appctx->owner; |
| 2674 | s = si_strm(si); |
Willy Tarreau | 1c8d32b | 2019-07-18 15:47:45 +0200 | [diff] [blame] | 2675 | |
Willy Tarreau | 9b7587a | 2020-10-15 07:32:10 +0200 | [diff] [blame] | 2676 | if (!sockaddr_alloc(&s->target_addr, addr, sizeof(*addr))) { |
Willy Tarreau | 1c8d32b | 2019-07-18 15:47:45 +0200 | [diff] [blame] | 2677 | xref_unlock(&socket->xref, peer); |
| 2678 | WILL_LJMP(luaL_error(L, "connect: internal error")); |
| 2679 | } |
Willy Tarreau | 5a0b25d | 2019-07-18 18:01:14 +0200 | [diff] [blame] | 2680 | s->flags |= SF_ADDR_SET; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2681 | |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 2682 | /* Get hlua struct, or NULL if we execute from main lua state */ |
Thierry FOURNIER | 95ad96a | 2015-03-09 18:12:40 +0100 | [diff] [blame] | 2683 | hlua = hlua_gethlua(L); |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 2684 | if (!hlua) |
| 2685 | return 0; |
Willy Tarreau | bdc97a8 | 2015-08-24 15:42:28 +0200 | [diff] [blame] | 2686 | |
| 2687 | /* inform the stream that we want to be notified whenever the |
| 2688 | * connection completes. |
| 2689 | */ |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 2690 | si_cant_get(&s->si[0]); |
Willy Tarreau | 3367d41 | 2018-11-15 10:57:41 +0100 | [diff] [blame] | 2691 | si_rx_endp_more(&s->si[0]); |
Thierry FOURNIER | 8c8fbbe | 2015-09-26 17:02:35 +0200 | [diff] [blame] | 2692 | appctx_wakeup(appctx); |
Willy Tarreau | bdc97a8 | 2015-08-24 15:42:28 +0200 | [diff] [blame] | 2693 | |
Willy Tarreau | f31af93 | 2020-01-14 09:59:38 +0100 | [diff] [blame] | 2694 | hlua->gc_count++; |
Thierry FOURNIER | 7c39ab4 | 2015-09-27 22:53:33 +0200 | [diff] [blame] | 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 | 95ad96a | 2015-03-09 18:12:40 +0100 | [diff] [blame] | 2698 | WILL_LJMP(luaL_error(L, "out of memory")); |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2699 | } |
| 2700 | xref_unlock(&socket->xref, peer); |
PiBa-NL | 706d5ee | 2018-05-05 23:51:42 +0200 | [diff] [blame] | 2701 | |
| 2702 | task_wakeup(s->task, TASK_WOKEN_INIT); |
| 2703 | /* Return yield waiting for connection. */ |
| 2704 | |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 2705 | 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] | 2706 | |
| 2707 | return 0; |
| 2708 | } |
| 2709 | |
Baptiste Assmann | 84bb493 | 2015-03-02 21:40:06 +0100 | [diff] [blame] | 2710 | #ifdef USE_OPENSSL |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2711 | __LJMP static int hlua_socket_connect_ssl(struct lua_State *L) |
| 2712 | { |
| 2713 | struct hlua_socket *socket; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2714 | struct xref *peer; |
| 2715 | struct appctx *appctx; |
| 2716 | struct stream_interface *si; |
| 2717 | struct stream *s; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2718 | |
| 2719 | MAY_LJMP(check_args(L, 3, "connect_ssl")); |
| 2720 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2721 | |
| 2722 | /* check for connection break. If some data where read, return it. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2723 | peer = xref_get_peer_and_lock(&socket->xref); |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2724 | if (!peer) { |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2725 | lua_pushnil(L); |
| 2726 | return 1; |
| 2727 | } |
| 2728 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
| 2729 | si = appctx->owner; |
| 2730 | s = si_strm(si); |
| 2731 | |
Amaury Denoyelle | 704ba1d | 2021-03-24 17:57:47 +0100 | [diff] [blame] | 2732 | s->target = &socket_ssl->obj_type; |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2733 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2734 | return MAY_LJMP(hlua_socket_connect(L)); |
| 2735 | } |
Baptiste Assmann | 84bb493 | 2015-03-02 21:40:06 +0100 | [diff] [blame] | 2736 | #endif |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2737 | |
| 2738 | __LJMP static int hlua_socket_setoption(struct lua_State *L) |
| 2739 | { |
| 2740 | return 0; |
| 2741 | } |
| 2742 | |
| 2743 | __LJMP static int hlua_socket_settimeout(struct lua_State *L) |
| 2744 | { |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2745 | struct hlua_socket *socket; |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2746 | int tmout; |
Mark Lakes | 56cc125 | 2018-03-27 09:48:06 +0200 | [diff] [blame] | 2747 | double dtmout; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2748 | struct xref *peer; |
| 2749 | struct appctx *appctx; |
| 2750 | struct stream_interface *si; |
| 2751 | struct stream *s; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2752 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2753 | MAY_LJMP(check_args(L, 2, "settimeout")); |
| 2754 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2755 | socket = MAY_LJMP(hlua_checksocket(L, 1)); |
Mark Lakes | 56cc125 | 2018-03-27 09:48:06 +0200 | [diff] [blame] | 2756 | |
Cyril Bonté | 7ee465f | 2018-08-19 22:08:50 +0200 | [diff] [blame] | 2757 | /* convert the timeout to millis */ |
| 2758 | dtmout = MAY_LJMP(luaL_checknumber(L, 2)) * 1000; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2759 | |
Thierry Fournier | 17a921b | 2018-03-08 09:59:02 +0100 | [diff] [blame] | 2760 | /* Check for negative values */ |
Mark Lakes | 56cc125 | 2018-03-27 09:48:06 +0200 | [diff] [blame] | 2761 | if (dtmout < 0) |
Thierry Fournier | 17a921b | 2018-03-08 09:59:02 +0100 | [diff] [blame] | 2762 | WILL_LJMP(luaL_error(L, "settimeout: cannot set negatives values")); |
| 2763 | |
Mark Lakes | 56cc125 | 2018-03-27 09:48:06 +0200 | [diff] [blame] | 2764 | if (dtmout > INT_MAX) /* overflow check */ |
Cyril Bonté | 7ee465f | 2018-08-19 22:08:50 +0200 | [diff] [blame] | 2765 | 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] | 2766 | |
| 2767 | tmout = MS_TO_TICKS((int)dtmout); |
Cyril Bonté | 7ee465f | 2018-08-19 22:08:50 +0200 | [diff] [blame] | 2768 | if (tmout == 0) |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 2769 | tmout++; /* very small timeouts are adjusted to a minimum of 1ms */ |
Mark Lakes | 56cc125 | 2018-03-27 09:48:06 +0200 | [diff] [blame] | 2770 | |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2771 | /* Check if we run on the same thread than the xreator thread. |
| 2772 | * We cannot access to the socket if the thread is different. |
| 2773 | */ |
| 2774 | if (socket->tid != tid) |
| 2775 | WILL_LJMP(luaL_error(L, "connect: cannot use socket on other thread")); |
| 2776 | |
Mark Lakes | 56cc125 | 2018-03-27 09:48:06 +0200 | [diff] [blame] | 2777 | /* check for connection break. If some data were read, return it. */ |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2778 | peer = xref_get_peer_and_lock(&socket->xref); |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2779 | if (!peer) { |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2780 | hlua_pusherror(L, "socket: not yet initialised, you can't set timeouts."); |
| 2781 | WILL_LJMP(lua_error(L)); |
| 2782 | return 0; |
| 2783 | } |
| 2784 | appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref); |
| 2785 | si = appctx->owner; |
| 2786 | s = si_strm(si); |
| 2787 | |
Cyril Bonté | 7bb6345 | 2018-08-17 23:51:02 +0200 | [diff] [blame] | 2788 | s->sess->fe->timeout.connect = tmout; |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2789 | s->req.rto = tmout; |
| 2790 | s->req.wto = tmout; |
| 2791 | s->res.rto = tmout; |
| 2792 | s->res.wto = tmout; |
Cyril Bonté | 7bb6345 | 2018-08-17 23:51:02 +0200 | [diff] [blame] | 2793 | s->req.rex = tick_add_ifset(now_ms, tmout); |
| 2794 | s->req.wex = tick_add_ifset(now_ms, tmout); |
| 2795 | s->res.rex = tick_add_ifset(now_ms, tmout); |
| 2796 | s->res.wex = tick_add_ifset(now_ms, tmout); |
| 2797 | |
| 2798 | s->task->expire = tick_add_ifset(now_ms, tmout); |
| 2799 | task_queue(s->task); |
| 2800 | |
Thierry FOURNIER | 952939d | 2017-09-01 14:17:32 +0200 | [diff] [blame] | 2801 | xref_unlock(&socket->xref, peer); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2802 | |
Thierry Fournier | e9636f1 | 2018-03-08 09:54:32 +0100 | [diff] [blame] | 2803 | lua_pushinteger(L, 1); |
Tim Duesterhus | 119a5f1 | 2018-01-06 19:16:25 +0100 | [diff] [blame] | 2804 | return 1; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2805 | } |
| 2806 | |
| 2807 | __LJMP static int hlua_socket_new(lua_State *L) |
| 2808 | { |
| 2809 | struct hlua_socket *socket; |
| 2810 | struct appctx *appctx; |
Willy Tarreau | 15b5e14 | 2015-04-04 14:38:25 +0200 | [diff] [blame] | 2811 | struct session *sess; |
Willy Tarreau | 61cf7c8 | 2015-04-06 00:48:33 +0200 | [diff] [blame] | 2812 | struct stream *strm; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2813 | |
| 2814 | /* Check stack size. */ |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 2815 | if (!lua_checkstack(L, 3)) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2816 | hlua_pusherror(L, "socket: full stack"); |
| 2817 | goto out_fail_conf; |
| 2818 | } |
| 2819 | |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 2820 | /* Create the object: obj[0] = userdata. */ |
| 2821 | lua_newtable(L); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2822 | socket = MAY_LJMP(lua_newuserdata(L, sizeof(*socket))); |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 2823 | lua_rawseti(L, -2, 0); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2824 | memset(socket, 0, sizeof(*socket)); |
Thierry FOURNIER | 94a6bfc | 2017-07-12 12:10:44 +0200 | [diff] [blame] | 2825 | socket->tid = tid; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2826 | |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 2827 | /* Check if the various memory pools are initialized. */ |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 2828 | if (!pool_head_stream || !pool_head_buffer) { |
Thierry FOURNIER | 4a6170c | 2015-03-09 17:07:10 +0100 | [diff] [blame] | 2829 | hlua_pusherror(L, "socket: uninitialized pools."); |
| 2830 | goto out_fail_conf; |
| 2831 | } |
| 2832 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 2833 | /* Pop a class stream metatable and affect it to the userdata. */ |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2834 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_socket_ref); |
| 2835 | lua_setmetatable(L, -2); |
| 2836 | |
Willy Tarreau | d420a97 | 2015-04-06 00:39:18 +0200 | [diff] [blame] | 2837 | /* Create the applet context */ |
Willy Tarreau | 5f4a47b | 2017-10-31 15:59:32 +0100 | [diff] [blame] | 2838 | appctx = appctx_new(&update_applet, tid_bit); |
Willy Tarreau | 61cf7c8 | 2015-04-06 00:48:33 +0200 | [diff] [blame] | 2839 | if (!appctx) { |
| 2840 | hlua_pusherror(L, "socket: out of memory"); |
Willy Tarreau | feb7640 | 2015-04-03 14:10:06 +0200 | [diff] [blame] | 2841 | goto out_fail_conf; |
Willy Tarreau | 61cf7c8 | 2015-04-06 00:48:33 +0200 | [diff] [blame] | 2842 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2843 | |
Thierry FOURNIER | 18d0990 | 2016-12-16 09:25:38 +0100 | [diff] [blame] | 2844 | appctx->ctx.hlua_cosocket.connected = 0; |
Thierry FOURNIER | b13b20a | 2017-07-16 20:48:54 +0200 | [diff] [blame] | 2845 | appctx->ctx.hlua_cosocket.die = 0; |
Thierry FOURNIER | 18d0990 | 2016-12-16 09:25:38 +0100 | [diff] [blame] | 2846 | LIST_INIT(&appctx->ctx.hlua_cosocket.wake_on_write); |
| 2847 | LIST_INIT(&appctx->ctx.hlua_cosocket.wake_on_read); |
Willy Tarreau | b2bf833 | 2015-04-04 15:58:58 +0200 | [diff] [blame] | 2848 | |
Willy Tarreau | d420a97 | 2015-04-06 00:39:18 +0200 | [diff] [blame] | 2849 | /* Now create a session, task and stream for this applet */ |
Amaury Denoyelle | 239fdbf | 2021-03-24 10:22:03 +0100 | [diff] [blame] | 2850 | sess = session_new(socket_proxy, NULL, &appctx->obj_type); |
Willy Tarreau | d420a97 | 2015-04-06 00:39:18 +0200 | [diff] [blame] | 2851 | if (!sess) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2852 | hlua_pusherror(L, "socket: out of memory"); |
Willy Tarreau | d420a97 | 2015-04-06 00:39:18 +0200 | [diff] [blame] | 2853 | goto out_fail_sess; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2854 | } |
| 2855 | |
Christopher Faulet | 26256f8 | 2020-09-14 11:40:13 +0200 | [diff] [blame] | 2856 | strm = stream_new(sess, &appctx->obj_type, &BUF_NULL); |
Willy Tarreau | 61cf7c8 | 2015-04-06 00:48:33 +0200 | [diff] [blame] | 2857 | if (!strm) { |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2858 | hlua_pusherror(L, "socket: out of memory"); |
Willy Tarreau | d420a97 | 2015-04-06 00:39:18 +0200 | [diff] [blame] | 2859 | goto out_fail_stream; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2860 | } |
| 2861 | |
Thierry FOURNIER | 2da788e | 2017-09-11 18:37:23 +0200 | [diff] [blame] | 2862 | /* Initialise cross reference between stream and Lua socket object. */ |
| 2863 | xref_create(&socket->xref, &appctx->ctx.hlua_cosocket.xref); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2864 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2865 | /* Configure "right" stream interface. this "si" is used to connect |
| 2866 | * and retrieve data from the server. The connection is initialized |
| 2867 | * with the "struct server". |
| 2868 | */ |
Willy Tarreau | 61cf7c8 | 2015-04-06 00:48:33 +0200 | [diff] [blame] | 2869 | si_set_state(&strm->si[1], SI_ST_ASS); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2870 | |
| 2871 | /* Force destination server. */ |
Willy Tarreau | 5a0b25d | 2019-07-18 18:01:14 +0200 | [diff] [blame] | 2872 | strm->flags |= SF_DIRECT | SF_ASSIGNED | SF_BE_ASSIGNED; |
Amaury Denoyelle | 704ba1d | 2021-03-24 17:57:47 +0100 | [diff] [blame] | 2873 | strm->target = &socket_tcp->obj_type; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2874 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2875 | return 1; |
| 2876 | |
Willy Tarreau | d420a97 | 2015-04-06 00:39:18 +0200 | [diff] [blame] | 2877 | out_fail_stream: |
Willy Tarreau | 11c3624 | 2015-04-04 15:54:03 +0200 | [diff] [blame] | 2878 | session_free(sess); |
Willy Tarreau | d420a97 | 2015-04-06 00:39:18 +0200 | [diff] [blame] | 2879 | out_fail_sess: |
| 2880 | appctx_free(appctx); |
| 2881 | out_fail_conf: |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 2882 | WILL_LJMP(lua_error(L)); |
| 2883 | return 0; |
| 2884 | } |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 2885 | |
| 2886 | /* |
| 2887 | * |
| 2888 | * |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2889 | * Class Channel |
| 2890 | * |
| 2891 | * |
| 2892 | */ |
| 2893 | |
| 2894 | /* Returns the struct hlua_channel join to the class channel in the |
| 2895 | * stack entry "ud" or throws an argument error. |
| 2896 | */ |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 2897 | __LJMP static struct channel *hlua_checkchannel(lua_State *L, int ud) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2898 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 2899 | return MAY_LJMP(hlua_checkudata(L, ud, class_channel_ref)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2900 | } |
| 2901 | |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 2902 | /* Pushes the channel onto the top of the stack. If the stask does not have a |
| 2903 | * free slots, the function fails and returns 0; |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2904 | */ |
Willy Tarreau | 2a71af4 | 2015-03-10 13:51:50 +0100 | [diff] [blame] | 2905 | static int hlua_channel_new(lua_State *L, struct channel *channel) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2906 | { |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2907 | /* Check stack size. */ |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 2908 | if (!lua_checkstack(L, 3)) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2909 | return 0; |
| 2910 | |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 2911 | lua_newtable(L); |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 2912 | lua_pushlightuserdata(L, channel); |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 2913 | lua_rawseti(L, -2, 0); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2914 | |
| 2915 | /* Pop a class sesison metatable and affect it to the userdata. */ |
| 2916 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_channel_ref); |
| 2917 | lua_setmetatable(L, -2); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2918 | return 1; |
| 2919 | } |
| 2920 | |
| 2921 | /* Duplicate all the data present in the input channel and put it |
| 2922 | * in a string LUA variables. Returns -1 and push a nil value in |
| 2923 | * the stack if the channel is closed and all the data are consumed, |
| 2924 | * returns 0 if no data are available, otherwise it returns the length |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 2925 | * of the built string. |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2926 | */ |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 2927 | static inline int _hlua_channel_dup(struct channel *chn, lua_State *L) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2928 | { |
| 2929 | char *blk1; |
| 2930 | char *blk2; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 2931 | size_t len1; |
| 2932 | size_t len2; |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2933 | int ret; |
| 2934 | luaL_Buffer b; |
| 2935 | |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 2936 | ret = ci_getblk_nc(chn, &blk1, &len1, &blk2, &len2); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2937 | if (unlikely(ret == 0)) |
| 2938 | return 0; |
| 2939 | |
| 2940 | if (unlikely(ret < 0)) { |
| 2941 | lua_pushnil(L); |
| 2942 | return -1; |
| 2943 | } |
| 2944 | |
| 2945 | luaL_buffinit(L, &b); |
| 2946 | luaL_addlstring(&b, blk1, len1); |
| 2947 | if (unlikely(ret == 2)) |
| 2948 | luaL_addlstring(&b, blk2, len2); |
| 2949 | luaL_pushresult(&b); |
| 2950 | |
| 2951 | if (unlikely(ret == 2)) |
| 2952 | return len1 + len2; |
| 2953 | return len1; |
| 2954 | } |
| 2955 | |
| 2956 | /* "_hlua_channel_dup" wrapper. If no data are available, it returns |
| 2957 | * a yield. This function keep the data in the buffer. |
| 2958 | */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2959 | __LJMP static int hlua_channel_dup_yield(lua_State *L, int status, lua_KContext ctx) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2960 | { |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 2961 | struct channel *chn; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2962 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2963 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
| 2964 | |
Christopher Faulet | 1bb6afa | 2021-03-08 17:57:53 +0100 | [diff] [blame] | 2965 | if (IS_HTX_STRM(chn_strm(chn))) { |
Thierry Fournier | 77016da | 2020-08-15 14:35:51 +0200 | [diff] [blame] | 2966 | lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode."); |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 2967 | WILL_LJMP(lua_error(L)); |
Thierry Fournier | 77016da | 2020-08-15 14:35:51 +0200 | [diff] [blame] | 2968 | } |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 2969 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2970 | if (_hlua_channel_dup(chn, L) == 0) |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 2971 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_dup_yield, TICK_ETERNITY, 0)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2972 | return 1; |
| 2973 | } |
| 2974 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2975 | /* Check arguments for the function "hlua_channel_dup_yield". */ |
| 2976 | __LJMP static int hlua_channel_dup(lua_State *L) |
| 2977 | { |
| 2978 | MAY_LJMP(check_args(L, 1, "dup")); |
| 2979 | MAY_LJMP(hlua_checkchannel(L, 1)); |
| 2980 | return MAY_LJMP(hlua_channel_dup_yield(L, 0, 0)); |
| 2981 | } |
| 2982 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2983 | /* "_hlua_channel_dup" wrapper. If no data are available, it returns |
| 2984 | * a yield. This function consumes the data in the buffer. It returns |
| 2985 | * a string containing the data or a nil pointer if no data are available |
| 2986 | * and the channel is closed. |
| 2987 | */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2988 | __LJMP static int hlua_channel_get_yield(lua_State *L, int status, lua_KContext ctx) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 2989 | { |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 2990 | struct channel *chn; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2991 | int ret; |
| 2992 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 2993 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 2994 | |
Christopher Faulet | 1bb6afa | 2021-03-08 17:57:53 +0100 | [diff] [blame] | 2995 | if (IS_HTX_STRM(chn_strm(chn))) { |
Thierry Fournier | 77016da | 2020-08-15 14:35:51 +0200 | [diff] [blame] | 2996 | lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode."); |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 2997 | WILL_LJMP(lua_error(L)); |
Thierry Fournier | 77016da | 2020-08-15 14:35:51 +0200 | [diff] [blame] | 2998 | } |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 2999 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3000 | ret = _hlua_channel_dup(chn, L); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3001 | if (unlikely(ret == 0)) |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 3002 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_get_yield, TICK_ETERNITY, 0)); |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3003 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3004 | if (unlikely(ret == -1)) |
| 3005 | return 1; |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3006 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3007 | b_sub(&chn->buf, ret); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3008 | return 1; |
| 3009 | } |
| 3010 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3011 | /* Check arguments for the function "hlua_channel_get_yield". */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3012 | __LJMP static int hlua_channel_get(lua_State *L) |
| 3013 | { |
| 3014 | MAY_LJMP(check_args(L, 1, "get")); |
| 3015 | MAY_LJMP(hlua_checkchannel(L, 1)); |
| 3016 | return MAY_LJMP(hlua_channel_get_yield(L, 0, 0)); |
| 3017 | } |
| 3018 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3019 | /* This functions consumes and returns one line. If the channel is closed, |
| 3020 | * 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] | 3021 | * 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] | 3022 | * value. |
| 3023 | */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3024 | __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] | 3025 | { |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3026 | char *blk1; |
| 3027 | char *blk2; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 3028 | size_t len1; |
| 3029 | size_t len2; |
| 3030 | size_t len; |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3031 | struct channel *chn; |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3032 | int ret; |
| 3033 | luaL_Buffer b; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3034 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3035 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
| 3036 | |
Christopher Faulet | 1bb6afa | 2021-03-08 17:57:53 +0100 | [diff] [blame] | 3037 | if (IS_HTX_STRM(chn_strm(chn))) { |
Thierry Fournier | 77016da | 2020-08-15 14:35:51 +0200 | [diff] [blame] | 3038 | lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode."); |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 3039 | WILL_LJMP(lua_error(L)); |
Thierry Fournier | 77016da | 2020-08-15 14:35:51 +0200 | [diff] [blame] | 3040 | } |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 3041 | |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 3042 | ret = ci_getline_nc(chn, &blk1, &len1, &blk2, &len2); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3043 | if (ret == 0) |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 3044 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_getline_yield, TICK_ETERNITY, 0)); |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3045 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3046 | if (ret == -1) { |
| 3047 | lua_pushnil(L); |
| 3048 | return 1; |
| 3049 | } |
| 3050 | |
| 3051 | luaL_buffinit(L, &b); |
| 3052 | luaL_addlstring(&b, blk1, len1); |
| 3053 | len = len1; |
| 3054 | if (unlikely(ret == 2)) { |
| 3055 | luaL_addlstring(&b, blk2, len2); |
| 3056 | len += len2; |
| 3057 | } |
| 3058 | luaL_pushresult(&b); |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3059 | b_rep_blk(&chn->buf, ci_head(chn), ci_head(chn) + len, NULL, 0); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3060 | return 1; |
| 3061 | } |
| 3062 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3063 | /* Check arguments for the function "hlua_channel_getline_yield". */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3064 | __LJMP static int hlua_channel_getline(lua_State *L) |
| 3065 | { |
| 3066 | MAY_LJMP(check_args(L, 1, "getline")); |
| 3067 | MAY_LJMP(hlua_checkchannel(L, 1)); |
| 3068 | return MAY_LJMP(hlua_channel_getline_yield(L, 0, 0)); |
| 3069 | } |
| 3070 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3071 | /* This function takes a string as input, and append it at the |
| 3072 | * input side of channel. If the data is too big, but a space |
| 3073 | * is probably available after sending some data, the function |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3074 | * yields. If the data is bigger than the buffer, or if the |
| 3075 | * channel is closed, it returns -1. Otherwise, it returns the |
| 3076 | * amount of data written. |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3077 | */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3078 | __LJMP static int hlua_channel_append_yield(lua_State *L, int status, lua_KContext ctx) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3079 | { |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3080 | struct channel *chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3081 | size_t len; |
| 3082 | const char *str = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 3083 | int l = MAY_LJMP(luaL_checkinteger(L, 3)); |
| 3084 | int ret; |
| 3085 | int max; |
| 3086 | |
Christopher Faulet | 1bb6afa | 2021-03-08 17:57:53 +0100 | [diff] [blame] | 3087 | if (IS_HTX_STRM(chn_strm(chn))) { |
Thierry Fournier | 77016da | 2020-08-15 14:35:51 +0200 | [diff] [blame] | 3088 | lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode."); |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 3089 | WILL_LJMP(lua_error(L)); |
Thierry Fournier | 77016da | 2020-08-15 14:35:51 +0200 | [diff] [blame] | 3090 | } |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 3091 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3092 | /* Check if the buffer is available because HAProxy doesn't allocate |
Christopher Faulet | a73e59b | 2016-12-09 17:30:18 +0100 | [diff] [blame] | 3093 | * the request buffer if its not required. |
| 3094 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3095 | if (chn->buf.size == 0) { |
Willy Tarreau | 4b962a4 | 2018-11-15 11:03:21 +0100 | [diff] [blame] | 3096 | si_rx_buff_blk(chn_prod(chn)); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 3097 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_append_yield, TICK_ETERNITY, 0)); |
Christopher Faulet | a73e59b | 2016-12-09 17:30:18 +0100 | [diff] [blame] | 3098 | } |
| 3099 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3100 | max = channel_recv_limit(chn) - b_data(&chn->buf); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3101 | if (max > len - l) |
| 3102 | max = len - l; |
| 3103 | |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 3104 | ret = ci_putblk(chn, str + l, max); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3105 | if (ret == -2 || ret == -3) { |
| 3106 | lua_pushinteger(L, -1); |
| 3107 | return 1; |
| 3108 | } |
Willy Tarreau | bc18da1 | 2015-03-13 14:00:47 +0100 | [diff] [blame] | 3109 | if (ret == -1) { |
| 3110 | chn->flags |= CF_WAKE_WRITE; |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 3111 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_append_yield, TICK_ETERNITY, 0)); |
Willy Tarreau | bc18da1 | 2015-03-13 14:00:47 +0100 | [diff] [blame] | 3112 | } |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3113 | l += ret; |
| 3114 | lua_pop(L, 1); |
| 3115 | lua_pushinteger(L, l); |
| 3116 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3117 | max = channel_recv_limit(chn) - b_data(&chn->buf); |
Willy Tarreau | a79021a | 2018-06-15 18:07:57 +0200 | [diff] [blame] | 3118 | if (max == 0 && co_data(chn) == 0) { |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3119 | /* There are no space available, and the output buffer is empty. |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3120 | * in this case, we cannot add more data, so we cannot yield, |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 3121 | * we return the amount of copied data. |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3122 | */ |
| 3123 | return 1; |
| 3124 | } |
| 3125 | if (l < len) |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 3126 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_append_yield, TICK_ETERNITY, 0)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3127 | return 1; |
| 3128 | } |
| 3129 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3130 | /* Just a wrapper of "hlua_channel_append_yield". It returns the length |
| 3131 | * of the written string, or -1 if the channel is closed or if the |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3132 | * buffer size is too little for the data. |
| 3133 | */ |
| 3134 | __LJMP static int hlua_channel_append(lua_State *L) |
| 3135 | { |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3136 | size_t len; |
| 3137 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3138 | MAY_LJMP(check_args(L, 2, "append")); |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3139 | MAY_LJMP(hlua_checkchannel(L, 1)); |
| 3140 | MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 3141 | MAY_LJMP(luaL_checkinteger(L, 3)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3142 | lua_pushinteger(L, 0); |
| 3143 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3144 | return MAY_LJMP(hlua_channel_append_yield(L, 0, 0)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3145 | } |
| 3146 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3147 | /* Just a wrapper of "hlua_channel_append_yield". This wrapper starts |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3148 | * his process by cleaning the buffer. The result is a replacement |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3149 | * of the current data. It returns the length of the written string, |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3150 | * or -1 if the channel is closed or if the buffer size is too |
| 3151 | * little for the data. |
| 3152 | */ |
| 3153 | __LJMP static int hlua_channel_set(lua_State *L) |
| 3154 | { |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3155 | struct channel *chn; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3156 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3157 | MAY_LJMP(check_args(L, 2, "set")); |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3158 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3159 | lua_pushinteger(L, 0); |
| 3160 | |
Christopher Faulet | 1bb6afa | 2021-03-08 17:57:53 +0100 | [diff] [blame] | 3161 | if (IS_HTX_STRM(chn_strm(chn))) { |
Thierry Fournier | 77016da | 2020-08-15 14:35:51 +0200 | [diff] [blame] | 3162 | lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode."); |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 3163 | WILL_LJMP(lua_error(L)); |
Thierry Fournier | 77016da | 2020-08-15 14:35:51 +0200 | [diff] [blame] | 3164 | } |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 3165 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3166 | b_set_data(&chn->buf, co_data(chn)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3167 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3168 | return MAY_LJMP(hlua_channel_append_yield(L, 0, 0)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3169 | } |
| 3170 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3171 | /* Append data in the output side of the buffer. This data is immediately |
| 3172 | * sent. The function returns the amount of data written. If the buffer |
| 3173 | * cannot contain the data, the function yields. The function returns -1 |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3174 | * if the channel is closed. |
| 3175 | */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3176 | __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] | 3177 | { |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3178 | struct channel *chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3179 | size_t len; |
| 3180 | const char *str = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 3181 | int l = MAY_LJMP(luaL_checkinteger(L, 3)); |
| 3182 | int max; |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 3183 | struct hlua *hlua; |
| 3184 | |
| 3185 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 3186 | hlua = hlua_gethlua(L); |
| 3187 | if (!hlua) { |
| 3188 | lua_pushnil(L); |
| 3189 | return 1; |
| 3190 | } |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3191 | |
Christopher Faulet | 1bb6afa | 2021-03-08 17:57:53 +0100 | [diff] [blame] | 3192 | if (IS_HTX_STRM(chn_strm(chn))) { |
Thierry Fournier | 77016da | 2020-08-15 14:35:51 +0200 | [diff] [blame] | 3193 | lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode."); |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 3194 | WILL_LJMP(lua_error(L)); |
Thierry Fournier | 77016da | 2020-08-15 14:35:51 +0200 | [diff] [blame] | 3195 | } |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 3196 | |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3197 | if (unlikely(channel_output_closed(chn))) { |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3198 | lua_pushinteger(L, -1); |
| 3199 | return 1; |
| 3200 | } |
| 3201 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3202 | /* Check if the buffer is available because HAProxy doesn't allocate |
Thierry FOURNIER | 3e3a608 | 2015-03-05 17:06:12 +0100 | [diff] [blame] | 3203 | * the request buffer if its not required. |
| 3204 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3205 | if (chn->buf.size == 0) { |
Willy Tarreau | 4b962a4 | 2018-11-15 11:03:21 +0100 | [diff] [blame] | 3206 | si_rx_buff_blk(chn_prod(chn)); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 3207 | MAY_LJMP(hlua_yieldk(L, 0, 0, hlua_channel_send_yield, TICK_ETERNITY, 0)); |
Thierry FOURNIER | 3e3a608 | 2015-03-05 17:06:12 +0100 | [diff] [blame] | 3208 | } |
| 3209 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3210 | /* The written data will be immediately sent, so we can check |
| 3211 | * the available space without taking in account the reserve. |
| 3212 | * The reserve is guaranteed for the processing of incoming |
Thierry FOURNIER | deb5d73 | 2015-03-06 01:07:45 +0100 | [diff] [blame] | 3213 | * data, because the buffer will be flushed. |
| 3214 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3215 | max = b_room(&chn->buf); |
Thierry FOURNIER | deb5d73 | 2015-03-06 01:07:45 +0100 | [diff] [blame] | 3216 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3217 | /* If there is no space available, and the output buffer is empty. |
Thierry FOURNIER | deb5d73 | 2015-03-06 01:07:45 +0100 | [diff] [blame] | 3218 | * in this case, we cannot add more data, so we cannot yield, |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 3219 | * we return the amount of copied data. |
Thierry FOURNIER | deb5d73 | 2015-03-06 01:07:45 +0100 | [diff] [blame] | 3220 | */ |
Willy Tarreau | a79021a | 2018-06-15 18:07:57 +0200 | [diff] [blame] | 3221 | if (max == 0 && co_data(chn) == 0) |
Thierry FOURNIER | deb5d73 | 2015-03-06 01:07:45 +0100 | [diff] [blame] | 3222 | return 1; |
| 3223 | |
| 3224 | /* Adjust the real required length. */ |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3225 | if (max > len - l) |
| 3226 | max = len - l; |
| 3227 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3228 | /* The buffer available size may be not contiguous. This test |
Thierry FOURNIER | deb5d73 | 2015-03-06 01:07:45 +0100 | [diff] [blame] | 3229 | * detects a non contiguous buffer and realign it. |
| 3230 | */ |
Willy Tarreau | 3f67999 | 2018-06-15 15:06:42 +0200 | [diff] [blame] | 3231 | if (ci_space_for_replace(chn) < max) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3232 | channel_slow_realign(chn, trash.area); |
Thierry FOURNIER | deb5d73 | 2015-03-06 01:07:45 +0100 | [diff] [blame] | 3233 | |
| 3234 | /* Copy input data in the buffer. */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3235 | max = b_rep_blk(&chn->buf, ci_head(chn), ci_head(chn), str + l, max); |
Thierry FOURNIER | deb5d73 | 2015-03-06 01:07:45 +0100 | [diff] [blame] | 3236 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3237 | /* buffer replace considers that the input part is filled. |
| 3238 | * so, I must forward these new data in the output part. |
| 3239 | */ |
Willy Tarreau | bcbd393 | 2018-06-06 07:13:22 +0200 | [diff] [blame] | 3240 | c_adv(chn, max); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3241 | |
| 3242 | l += max; |
| 3243 | lua_pop(L, 1); |
| 3244 | lua_pushinteger(L, l); |
| 3245 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3246 | /* If there is no space available, and the output buffer is empty. |
Thierry FOURNIER | deb5d73 | 2015-03-06 01:07:45 +0100 | [diff] [blame] | 3247 | * in this case, we cannot add more data, so we cannot yield, |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 3248 | * we return the amount of copied data. |
Thierry FOURNIER | deb5d73 | 2015-03-06 01:07:45 +0100 | [diff] [blame] | 3249 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3250 | max = b_room(&chn->buf); |
Willy Tarreau | a79021a | 2018-06-15 18:07:57 +0200 | [diff] [blame] | 3251 | if (max == 0 && co_data(chn) == 0) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3252 | return 1; |
Thierry FOURNIER | deb5d73 | 2015-03-06 01:07:45 +0100 | [diff] [blame] | 3253 | |
Thierry FOURNIER | ef6a211 | 2015-03-05 17:45:34 +0100 | [diff] [blame] | 3254 | if (l < len) { |
| 3255 | /* If we are waiting for space in the response buffer, we |
| 3256 | * must set the flag WAKERESWR. This flag required the task |
| 3257 | * wake up if any activity is detected on the response buffer. |
| 3258 | */ |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3259 | if (chn->flags & CF_ISRESP) |
Thierry FOURNIER | ef6a211 | 2015-03-05 17:45:34 +0100 | [diff] [blame] | 3260 | HLUA_SET_WAKERESWR(hlua); |
Thierry FOURNIER | 53e08ec | 2015-03-06 00:35:53 +0100 | [diff] [blame] | 3261 | else |
| 3262 | HLUA_SET_WAKEREQWR(hlua); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 3263 | 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] | 3264 | } |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3265 | |
| 3266 | return 1; |
| 3267 | } |
| 3268 | |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 3269 | /* Just a wrapper of "_hlua_channel_send". This wrapper permits |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3270 | * yield the LUA process, and resume it without checking the |
| 3271 | * input arguments. |
| 3272 | */ |
| 3273 | __LJMP static int hlua_channel_send(lua_State *L) |
| 3274 | { |
| 3275 | MAY_LJMP(check_args(L, 2, "send")); |
| 3276 | lua_pushinteger(L, 0); |
| 3277 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3278 | return MAY_LJMP(hlua_channel_send_yield(L, 0, 0)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3279 | } |
| 3280 | |
| 3281 | /* This function forward and amount of butes. The data pass from |
| 3282 | * the input side of the buffer to the output side, and can be |
| 3283 | * forwarded. This function never fails. |
| 3284 | * |
| 3285 | * The Lua function takes an amount of bytes to be forwarded in |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 3286 | * input. It returns the number of bytes forwarded. |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3287 | */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3288 | __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] | 3289 | { |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3290 | struct channel *chn; |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3291 | int len; |
| 3292 | int l; |
| 3293 | int max; |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 3294 | struct hlua *hlua; |
| 3295 | |
| 3296 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 3297 | hlua = hlua_gethlua(L); |
| 3298 | if (!hlua) |
| 3299 | return 1; |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3300 | |
| 3301 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 3302 | |
Christopher Faulet | 1bb6afa | 2021-03-08 17:57:53 +0100 | [diff] [blame] | 3303 | if (IS_HTX_STRM(chn_strm(chn))) { |
Thierry Fournier | 77016da | 2020-08-15 14:35:51 +0200 | [diff] [blame] | 3304 | lua_pushfstring(L, "Cannot manipulate HAProxy channels in HTTP mode."); |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 3305 | WILL_LJMP(lua_error(L)); |
Thierry Fournier | 77016da | 2020-08-15 14:35:51 +0200 | [diff] [blame] | 3306 | } |
Christopher Faulet | 3f829a4 | 2018-12-13 21:56:45 +0100 | [diff] [blame] | 3307 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3308 | len = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 3309 | l = MAY_LJMP(luaL_checkinteger(L, -1)); |
| 3310 | |
| 3311 | max = len - l; |
Willy Tarreau | a79021a | 2018-06-15 18:07:57 +0200 | [diff] [blame] | 3312 | if (max > ci_data(chn)) |
| 3313 | max = ci_data(chn); |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3314 | channel_forward(chn, max); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3315 | l += max; |
| 3316 | |
| 3317 | lua_pop(L, 1); |
| 3318 | lua_pushinteger(L, l); |
| 3319 | |
| 3320 | /* Check if it miss bytes to forward. */ |
| 3321 | if (l < len) { |
| 3322 | /* The the input channel or the output channel are closed, we |
| 3323 | * must return the amount of data forwarded. |
| 3324 | */ |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3325 | if (channel_input_closed(chn) || channel_output_closed(chn)) |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3326 | return 1; |
| 3327 | |
Thierry FOURNIER | ef6a211 | 2015-03-05 17:45:34 +0100 | [diff] [blame] | 3328 | /* If we are waiting for space data in the response buffer, we |
| 3329 | * must set the flag WAKERESWR. This flag required the task |
| 3330 | * wake up if any activity is detected on the response buffer. |
| 3331 | */ |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3332 | if (chn->flags & CF_ISRESP) |
Thierry FOURNIER | ef6a211 | 2015-03-05 17:45:34 +0100 | [diff] [blame] | 3333 | HLUA_SET_WAKERESWR(hlua); |
Thierry FOURNIER | 53e08ec | 2015-03-06 00:35:53 +0100 | [diff] [blame] | 3334 | else |
| 3335 | HLUA_SET_WAKEREQWR(hlua); |
Thierry FOURNIER | ef6a211 | 2015-03-05 17:45:34 +0100 | [diff] [blame] | 3336 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3337 | /* Otherwise, we can yield waiting for new data in the inpout side. */ |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 3338 | 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] | 3339 | } |
| 3340 | |
| 3341 | return 1; |
| 3342 | } |
| 3343 | |
| 3344 | /* Just check the input and prepare the stack for the previous |
| 3345 | * function "hlua_channel_forward_yield" |
| 3346 | */ |
| 3347 | __LJMP static int hlua_channel_forward(lua_State *L) |
| 3348 | { |
| 3349 | MAY_LJMP(check_args(L, 2, "forward")); |
| 3350 | MAY_LJMP(hlua_checkchannel(L, 1)); |
| 3351 | MAY_LJMP(luaL_checkinteger(L, 2)); |
| 3352 | |
| 3353 | lua_pushinteger(L, 0); |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 3354 | return MAY_LJMP(hlua_channel_forward_yield(L, 0, 0)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3355 | } |
| 3356 | |
| 3357 | /* Just returns the number of bytes available in the input |
| 3358 | * side of the buffer. This function never fails. |
| 3359 | */ |
| 3360 | __LJMP static int hlua_channel_get_in_len(lua_State *L) |
| 3361 | { |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3362 | struct channel *chn; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3363 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3364 | MAY_LJMP(check_args(L, 1, "get_in_len")); |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3365 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Christopher Faulet | a3ceac1 | 2018-12-14 13:39:09 +0100 | [diff] [blame] | 3366 | if (IS_HTX_STRM(chn_strm(chn))) { |
| 3367 | struct htx *htx = htxbuf(&chn->buf); |
| 3368 | lua_pushinteger(L, htx->data - co_data(chn)); |
| 3369 | } |
| 3370 | else |
| 3371 | lua_pushinteger(L, ci_data(chn)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3372 | return 1; |
| 3373 | } |
| 3374 | |
Thierry FOURNIER / OZON.IO | 65192f3 | 2016-11-07 15:28:40 +0100 | [diff] [blame] | 3375 | /* Returns true if the channel is full. */ |
| 3376 | __LJMP static int hlua_channel_is_full(lua_State *L) |
| 3377 | { |
| 3378 | struct channel *chn; |
Thierry FOURNIER / OZON.IO | 65192f3 | 2016-11-07 15:28:40 +0100 | [diff] [blame] | 3379 | |
| 3380 | MAY_LJMP(check_args(L, 1, "is_full")); |
| 3381 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Christopher Faulet | 0ec740e | 2020-02-26 11:59:19 +0100 | [diff] [blame] | 3382 | /* ignore the reserve, we are not on a producer side (ie in an |
| 3383 | * applet). |
| 3384 | */ |
| 3385 | lua_pushboolean(L, channel_full(chn, 0)); |
Thierry FOURNIER / OZON.IO | 65192f3 | 2016-11-07 15:28:40 +0100 | [diff] [blame] | 3386 | return 1; |
| 3387 | } |
| 3388 | |
Christopher Faulet | 2ac9ba2 | 2020-02-25 10:15:50 +0100 | [diff] [blame] | 3389 | /* Returns true if the channel is the response channel. */ |
| 3390 | __LJMP static int hlua_channel_is_resp(lua_State *L) |
| 3391 | { |
| 3392 | struct channel *chn; |
| 3393 | |
| 3394 | MAY_LJMP(check_args(L, 1, "is_resp")); |
| 3395 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
| 3396 | |
| 3397 | lua_pushboolean(L, !!(chn->flags & CF_ISRESP)); |
| 3398 | return 1; |
| 3399 | } |
| 3400 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3401 | /* Just returns the number of bytes available in the output |
| 3402 | * side of the buffer. This function never fails. |
| 3403 | */ |
| 3404 | __LJMP static int hlua_channel_get_out_len(lua_State *L) |
| 3405 | { |
Willy Tarreau | 47860ed | 2015-03-10 14:07:50 +0100 | [diff] [blame] | 3406 | struct channel *chn; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3407 | |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3408 | MAY_LJMP(check_args(L, 1, "get_out_len")); |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 3409 | chn = MAY_LJMP(hlua_checkchannel(L, 1)); |
Willy Tarreau | a79021a | 2018-06-15 18:07:57 +0200 | [diff] [blame] | 3410 | lua_pushinteger(L, co_data(chn)); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3411 | return 1; |
| 3412 | } |
| 3413 | |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3414 | /* |
| 3415 | * |
| 3416 | * |
| 3417 | * Class Fetches |
| 3418 | * |
| 3419 | * |
| 3420 | */ |
| 3421 | |
| 3422 | /* Returns a struct hlua_session if the stack entry "ud" is |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 3423 | * a class stream, otherwise it throws an error. |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3424 | */ |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 3425 | __LJMP static struct hlua_smp *hlua_checkfetches(lua_State *L, int ud) |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3426 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 3427 | return MAY_LJMP(hlua_checkudata(L, ud, class_fetches_ref)); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3428 | } |
| 3429 | |
| 3430 | /* This function creates and push in the stack a fetch object according |
| 3431 | * with a current TXN. |
| 3432 | */ |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 3433 | 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] | 3434 | { |
Willy Tarreau | 7073c47 | 2015-04-06 11:15:40 +0200 | [diff] [blame] | 3435 | struct hlua_smp *hsmp; |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3436 | |
| 3437 | /* Check stack size. */ |
| 3438 | if (!lua_checkstack(L, 3)) |
| 3439 | return 0; |
| 3440 | |
| 3441 | /* Create the object: obj[0] = userdata. |
| 3442 | * Note that the base of the Fetches object is the |
| 3443 | * transaction object. |
| 3444 | */ |
| 3445 | lua_newtable(L); |
Willy Tarreau | 7073c47 | 2015-04-06 11:15:40 +0200 | [diff] [blame] | 3446 | hsmp = lua_newuserdata(L, sizeof(*hsmp)); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3447 | lua_rawseti(L, -2, 0); |
| 3448 | |
Willy Tarreau | 7073c47 | 2015-04-06 11:15:40 +0200 | [diff] [blame] | 3449 | hsmp->s = txn->s; |
| 3450 | hsmp->p = txn->p; |
Thierry FOURNIER | c4eebc8 | 2015-11-02 10:01:59 +0100 | [diff] [blame] | 3451 | hsmp->dir = txn->dir; |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 3452 | hsmp->flags = flags; |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3453 | |
| 3454 | /* Pop a class sesison metatable and affect it to the userdata. */ |
| 3455 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_fetches_ref); |
| 3456 | lua_setmetatable(L, -2); |
| 3457 | |
| 3458 | return 1; |
| 3459 | } |
| 3460 | |
| 3461 | /* This function is an LUA binding. It is called with each sample-fetch. |
| 3462 | * It uses closure argument to store the associated sample-fetch. It |
| 3463 | * returns only one argument or throws an error. An error is thrown |
| 3464 | * only if an error is encountered during the argument parsing. If |
| 3465 | * the "sample-fetch" function fails, nil is returned. |
| 3466 | */ |
| 3467 | __LJMP static int hlua_run_sample_fetch(lua_State *L) |
| 3468 | { |
Willy Tarreau | b2ccb56 | 2015-04-06 11:11:15 +0200 | [diff] [blame] | 3469 | struct hlua_smp *hsmp; |
Willy Tarreau | 2ec2274 | 2015-03-10 14:27:20 +0100 | [diff] [blame] | 3470 | struct sample_fetch *f; |
Frédéric Lécaille | f874a83 | 2018-06-15 13:56:04 +0200 | [diff] [blame] | 3471 | struct arg args[ARGM_NBARGS + 1] = {{0}}; |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3472 | int i; |
| 3473 | struct sample smp; |
| 3474 | |
| 3475 | /* Get closure arguments. */ |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 3476 | f = lua_touserdata(L, lua_upvalueindex(1)); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3477 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3478 | /* Get traditional arguments. */ |
Willy Tarreau | b2ccb56 | 2015-04-06 11:11:15 +0200 | [diff] [blame] | 3479 | hsmp = MAY_LJMP(hlua_checkfetches(L, 1)); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3480 | |
Thierry FOURNIER | ca98866 | 2015-12-20 18:43:03 +0100 | [diff] [blame] | 3481 | /* Check execution authorization. */ |
| 3482 | if (f->use & SMP_USE_HTTP_ANY && |
| 3483 | !(hsmp->flags & HLUA_F_MAY_USE_HTTP)) { |
| 3484 | lua_pushfstring(L, "the sample-fetch '%s' needs an HTTP parser which " |
| 3485 | "is not available in Lua services", f->kw); |
| 3486 | WILL_LJMP(lua_error(L)); |
| 3487 | } |
| 3488 | |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3489 | /* Get extra arguments. */ |
| 3490 | for (i = 0; i < lua_gettop(L) - 1; i++) { |
| 3491 | if (i >= ARGM_NBARGS) |
| 3492 | break; |
| 3493 | hlua_lua2arg(L, i + 2, &args[i]); |
| 3494 | } |
| 3495 | args[i].type = ARGT_STOP; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3496 | args[i].data.str.area = NULL; |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3497 | |
| 3498 | /* Check arguments. */ |
Willy Tarreau | b2ccb56 | 2015-04-06 11:11:15 +0200 | [diff] [blame] | 3499 | 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] | 3500 | |
| 3501 | /* Run the special args checker. */ |
Willy Tarreau | 2ec2274 | 2015-03-10 14:27:20 +0100 | [diff] [blame] | 3502 | if (f->val_args && !f->val_args(args, NULL)) { |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3503 | lua_pushfstring(L, "error in arguments"); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 3504 | goto error; |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3505 | } |
| 3506 | |
| 3507 | /* Initialise the sample. */ |
| 3508 | memset(&smp, 0, sizeof(smp)); |
| 3509 | |
| 3510 | /* Run the sample fetch process. */ |
Willy Tarreau | 1777ea6 | 2016-03-10 16:15:46 +0100 | [diff] [blame] | 3511 | 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] | 3512 | if (!f->process(args, &smp, f->kw, f->private)) { |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 3513 | if (hsmp->flags & HLUA_F_AS_STRING) |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 3514 | lua_pushstring(L, ""); |
| 3515 | else |
| 3516 | lua_pushnil(L); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 3517 | goto end; |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3518 | } |
| 3519 | |
| 3520 | /* Convert the returned sample in lua value. */ |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 3521 | if (hsmp->flags & HLUA_F_AS_STRING) |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 3522 | hlua_smp2lua_str(L, &smp); |
| 3523 | else |
| 3524 | hlua_smp2lua(L, &smp); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 3525 | |
| 3526 | end: |
| 3527 | for (i = 0; args[i].type != ARGT_STOP; i++) { |
| 3528 | if (args[i].type == ARGT_STR) |
| 3529 | chunk_destroy(&args[i].data.str); |
Christopher Faulet | fd2e906 | 2020-08-06 11:10:57 +0200 | [diff] [blame] | 3530 | else if (args[i].type == ARGT_REG) |
| 3531 | regex_free(args[i].data.reg); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 3532 | } |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3533 | return 1; |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 3534 | |
| 3535 | error: |
| 3536 | for (i = 0; args[i].type != ARGT_STOP; i++) { |
| 3537 | if (args[i].type == ARGT_STR) |
| 3538 | chunk_destroy(&args[i].data.str); |
Christopher Faulet | fd2e906 | 2020-08-06 11:10:57 +0200 | [diff] [blame] | 3539 | else if (args[i].type == ARGT_REG) |
| 3540 | regex_free(args[i].data.reg); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 3541 | } |
| 3542 | WILL_LJMP(lua_error(L)); |
| 3543 | return 0; /* Never reached */ |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 3544 | } |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 3545 | |
| 3546 | /* |
| 3547 | * |
| 3548 | * |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3549 | * Class Converters |
| 3550 | * |
| 3551 | * |
| 3552 | */ |
| 3553 | |
| 3554 | /* Returns a struct hlua_session if the stack entry "ud" is |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 3555 | * a class stream, otherwise it throws an error. |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3556 | */ |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 3557 | __LJMP static struct hlua_smp *hlua_checkconverters(lua_State *L, int ud) |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3558 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 3559 | return MAY_LJMP(hlua_checkudata(L, ud, class_converters_ref)); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3560 | } |
| 3561 | |
| 3562 | /* This function creates and push in the stack a Converters object |
| 3563 | * according with a current TXN. |
| 3564 | */ |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 3565 | 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] | 3566 | { |
Willy Tarreau | 7073c47 | 2015-04-06 11:15:40 +0200 | [diff] [blame] | 3567 | struct hlua_smp *hsmp; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3568 | |
| 3569 | /* Check stack size. */ |
| 3570 | if (!lua_checkstack(L, 3)) |
| 3571 | return 0; |
| 3572 | |
| 3573 | /* Create the object: obj[0] = userdata. |
| 3574 | * Note that the base of the Converters object is the |
| 3575 | * same than the TXN object. |
| 3576 | */ |
| 3577 | lua_newtable(L); |
Willy Tarreau | 7073c47 | 2015-04-06 11:15:40 +0200 | [diff] [blame] | 3578 | hsmp = lua_newuserdata(L, sizeof(*hsmp)); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3579 | lua_rawseti(L, -2, 0); |
| 3580 | |
Willy Tarreau | 7073c47 | 2015-04-06 11:15:40 +0200 | [diff] [blame] | 3581 | hsmp->s = txn->s; |
| 3582 | hsmp->p = txn->p; |
Thierry FOURNIER | c4eebc8 | 2015-11-02 10:01:59 +0100 | [diff] [blame] | 3583 | hsmp->dir = txn->dir; |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 3584 | hsmp->flags = flags; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3585 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 3586 | /* Pop a class stream metatable and affect it to the table. */ |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3587 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_converters_ref); |
| 3588 | lua_setmetatable(L, -2); |
| 3589 | |
| 3590 | return 1; |
| 3591 | } |
| 3592 | |
| 3593 | /* This function is an LUA binding. It is called with each converter. |
| 3594 | * It uses closure argument to store the associated converter. It |
| 3595 | * returns only one argument or throws an error. An error is thrown |
| 3596 | * only if an error is encountered during the argument parsing. If |
| 3597 | * the converter function function fails, nil is returned. |
| 3598 | */ |
| 3599 | __LJMP static int hlua_run_sample_conv(lua_State *L) |
| 3600 | { |
Willy Tarreau | da5f108 | 2015-04-06 11:17:13 +0200 | [diff] [blame] | 3601 | struct hlua_smp *hsmp; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3602 | struct sample_conv *conv; |
Frédéric Lécaille | f874a83 | 2018-06-15 13:56:04 +0200 | [diff] [blame] | 3603 | struct arg args[ARGM_NBARGS + 1] = {{0}}; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3604 | int i; |
| 3605 | struct sample smp; |
| 3606 | |
| 3607 | /* Get closure arguments. */ |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 3608 | conv = lua_touserdata(L, lua_upvalueindex(1)); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3609 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3610 | /* Get traditional arguments. */ |
Willy Tarreau | da5f108 | 2015-04-06 11:17:13 +0200 | [diff] [blame] | 3611 | hsmp = MAY_LJMP(hlua_checkconverters(L, 1)); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3612 | |
| 3613 | /* Get extra arguments. */ |
| 3614 | for (i = 0; i < lua_gettop(L) - 2; i++) { |
| 3615 | if (i >= ARGM_NBARGS) |
| 3616 | break; |
| 3617 | hlua_lua2arg(L, i + 3, &args[i]); |
| 3618 | } |
| 3619 | args[i].type = ARGT_STOP; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3620 | args[i].data.str.area = NULL; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3621 | |
| 3622 | /* Check arguments. */ |
Willy Tarreau | da5f108 | 2015-04-06 11:17:13 +0200 | [diff] [blame] | 3623 | 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] | 3624 | |
| 3625 | /* Run the special args checker. */ |
| 3626 | if (conv->val_args && !conv->val_args(args, conv, "", 0, NULL)) { |
| 3627 | hlua_pusherror(L, "error in arguments"); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 3628 | goto error; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3629 | } |
| 3630 | |
| 3631 | /* Initialise the sample. */ |
Amaury Denoyelle | bc0af6a | 2020-10-29 17:21:20 +0100 | [diff] [blame] | 3632 | memset(&smp, 0, sizeof(smp)); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3633 | if (!hlua_lua2smp(L, 2, &smp)) { |
| 3634 | hlua_pusherror(L, "error in the input argument"); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 3635 | goto error; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3636 | } |
| 3637 | |
Willy Tarreau | 1777ea6 | 2016-03-10 16:15:46 +0100 | [diff] [blame] | 3638 | smp_set_owner(&smp, hsmp->p, hsmp->s->sess, hsmp->s, hsmp->dir & SMP_OPT_DIR); |
| 3639 | |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3640 | /* Apply expected cast. */ |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 3641 | if (!sample_casts[smp.data.type][conv->in_type]) { |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3642 | hlua_pusherror(L, "invalid input argument: cannot cast '%s' to '%s'", |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 3643 | smp_to_type[smp.data.type], smp_to_type[conv->in_type]); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 3644 | goto error; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3645 | } |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 3646 | if (sample_casts[smp.data.type][conv->in_type] != c_none && |
| 3647 | !sample_casts[smp.data.type][conv->in_type](&smp)) { |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3648 | hlua_pusherror(L, "error during the input argument casting"); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 3649 | goto error; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3650 | } |
| 3651 | |
| 3652 | /* Run the sample conversion process. */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 3653 | if (!conv->process(args, &smp, conv->private)) { |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 3654 | if (hsmp->flags & HLUA_F_AS_STRING) |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 3655 | lua_pushstring(L, ""); |
| 3656 | else |
Willy Tarreau | a678b43 | 2015-08-28 10:14:59 +0200 | [diff] [blame] | 3657 | lua_pushnil(L); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 3658 | goto end; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3659 | } |
| 3660 | |
| 3661 | /* Convert the returned sample in lua value. */ |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 3662 | if (hsmp->flags & HLUA_F_AS_STRING) |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 3663 | hlua_smp2lua_str(L, &smp); |
| 3664 | else |
| 3665 | hlua_smp2lua(L, &smp); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 3666 | end: |
| 3667 | for (i = 0; args[i].type != ARGT_STOP; i++) { |
| 3668 | if (args[i].type == ARGT_STR) |
| 3669 | chunk_destroy(&args[i].data.str); |
Christopher Faulet | fd2e906 | 2020-08-06 11:10:57 +0200 | [diff] [blame] | 3670 | else if (args[i].type == ARGT_REG) |
| 3671 | regex_free(args[i].data.reg); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 3672 | } |
Willy Tarreau | a678b43 | 2015-08-28 10:14:59 +0200 | [diff] [blame] | 3673 | return 1; |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 3674 | |
| 3675 | error: |
| 3676 | for (i = 0; args[i].type != ARGT_STOP; i++) { |
| 3677 | if (args[i].type == ARGT_STR) |
| 3678 | chunk_destroy(&args[i].data.str); |
Christopher Faulet | fd2e906 | 2020-08-06 11:10:57 +0200 | [diff] [blame] | 3679 | else if (args[i].type == ARGT_REG) |
| 3680 | regex_free(args[i].data.reg); |
Christopher Faulet | aec27ef | 2020-08-06 08:54:25 +0200 | [diff] [blame] | 3681 | } |
| 3682 | WILL_LJMP(lua_error(L)); |
| 3683 | return 0; /* Never reached */ |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 3684 | } |
| 3685 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3686 | /* |
| 3687 | * |
| 3688 | * |
| 3689 | * Class AppletTCP |
| 3690 | * |
| 3691 | * |
| 3692 | */ |
| 3693 | |
| 3694 | /* Returns a struct hlua_txn if the stack entry "ud" is |
| 3695 | * a class stream, otherwise it throws an error. |
| 3696 | */ |
| 3697 | __LJMP static struct hlua_appctx *hlua_checkapplet_tcp(lua_State *L, int ud) |
| 3698 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 3699 | return MAY_LJMP(hlua_checkudata(L, ud, class_applet_tcp_ref)); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3700 | } |
| 3701 | |
| 3702 | /* This function creates and push in the stack an Applet object |
| 3703 | * according with a current TXN. |
| 3704 | */ |
| 3705 | static int hlua_applet_tcp_new(lua_State *L, struct appctx *ctx) |
| 3706 | { |
| 3707 | struct hlua_appctx *appctx; |
| 3708 | struct stream_interface *si = ctx->owner; |
| 3709 | struct stream *s = si_strm(si); |
| 3710 | struct proxy *p = s->be; |
| 3711 | |
| 3712 | /* Check stack size. */ |
| 3713 | if (!lua_checkstack(L, 3)) |
| 3714 | return 0; |
| 3715 | |
| 3716 | /* Create the object: obj[0] = userdata. |
| 3717 | * Note that the base of the Converters object is the |
| 3718 | * same than the TXN object. |
| 3719 | */ |
| 3720 | lua_newtable(L); |
| 3721 | appctx = lua_newuserdata(L, sizeof(*appctx)); |
| 3722 | lua_rawseti(L, -2, 0); |
| 3723 | appctx->appctx = ctx; |
| 3724 | appctx->htxn.s = s; |
| 3725 | appctx->htxn.p = p; |
| 3726 | |
| 3727 | /* Create the "f" field that contains a list of fetches. */ |
| 3728 | lua_pushstring(L, "f"); |
| 3729 | if (!hlua_fetches_new(L, &appctx->htxn, 0)) |
| 3730 | return 0; |
| 3731 | lua_settable(L, -3); |
| 3732 | |
| 3733 | /* Create the "sf" field that contains a list of stringsafe fetches. */ |
| 3734 | lua_pushstring(L, "sf"); |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 3735 | if (!hlua_fetches_new(L, &appctx->htxn, HLUA_F_AS_STRING)) |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3736 | return 0; |
| 3737 | lua_settable(L, -3); |
| 3738 | |
| 3739 | /* Create the "c" field that contains a list of converters. */ |
| 3740 | lua_pushstring(L, "c"); |
| 3741 | if (!hlua_converters_new(L, &appctx->htxn, 0)) |
| 3742 | return 0; |
| 3743 | lua_settable(L, -3); |
| 3744 | |
| 3745 | /* Create the "sc" field that contains a list of stringsafe converters. */ |
| 3746 | lua_pushstring(L, "sc"); |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 3747 | if (!hlua_converters_new(L, &appctx->htxn, HLUA_F_AS_STRING)) |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3748 | return 0; |
| 3749 | lua_settable(L, -3); |
| 3750 | |
| 3751 | /* Pop a class stream metatable and affect it to the table. */ |
| 3752 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_applet_tcp_ref); |
| 3753 | lua_setmetatable(L, -2); |
| 3754 | |
| 3755 | return 1; |
| 3756 | } |
| 3757 | |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 3758 | __LJMP static int hlua_applet_tcp_set_var(lua_State *L) |
| 3759 | { |
| 3760 | struct hlua_appctx *appctx; |
| 3761 | struct stream *s; |
| 3762 | const char *name; |
| 3763 | size_t len; |
| 3764 | struct sample smp; |
| 3765 | |
Tim Duesterhus | 4e172c9 | 2020-05-19 13:49:42 +0200 | [diff] [blame] | 3766 | if (lua_gettop(L) < 3 || lua_gettop(L) > 4) |
| 3767 | 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] | 3768 | |
| 3769 | /* It is useles to retrieve the stream, but this function |
| 3770 | * runs only in a stream context. |
| 3771 | */ |
| 3772 | appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 3773 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 3774 | s = appctx->htxn.s; |
| 3775 | |
| 3776 | /* Converts the third argument in a sample. */ |
Amaury Denoyelle | bc0af6a | 2020-10-29 17:21:20 +0100 | [diff] [blame] | 3777 | memset(&smp, 0, sizeof(smp)); |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 3778 | hlua_lua2smp(L, 3, &smp); |
| 3779 | |
| 3780 | /* Store the sample in a variable. */ |
| 3781 | smp_set_owner(&smp, s->be, s->sess, s, 0); |
Tim Duesterhus | 4e172c9 | 2020-05-19 13:49:42 +0200 | [diff] [blame] | 3782 | |
| 3783 | if (lua_gettop(L) == 4 && lua_toboolean(L, 4)) |
| 3784 | lua_pushboolean(L, vars_set_by_name_ifexist(name, len, &smp) != 0); |
| 3785 | else |
| 3786 | lua_pushboolean(L, vars_set_by_name(name, len, &smp) != 0); |
| 3787 | |
Tim Duesterhus | 84ebc13 | 2020-05-19 13:49:41 +0200 | [diff] [blame] | 3788 | return 1; |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 3789 | } |
| 3790 | |
| 3791 | __LJMP static int hlua_applet_tcp_unset_var(lua_State *L) |
| 3792 | { |
| 3793 | struct hlua_appctx *appctx; |
| 3794 | struct stream *s; |
| 3795 | const char *name; |
| 3796 | size_t len; |
| 3797 | struct sample smp; |
| 3798 | |
| 3799 | MAY_LJMP(check_args(L, 2, "unset_var")); |
| 3800 | |
| 3801 | /* It is useles to retrieve the stream, but this function |
| 3802 | * runs only in a stream context. |
| 3803 | */ |
| 3804 | appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 3805 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 3806 | s = appctx->htxn.s; |
| 3807 | |
| 3808 | /* Unset the variable. */ |
| 3809 | smp_set_owner(&smp, s->be, s->sess, s, 0); |
Tim Duesterhus | 84ebc13 | 2020-05-19 13:49:41 +0200 | [diff] [blame] | 3810 | lua_pushboolean(L, vars_unset_by_name_ifexist(name, len, &smp) != 0); |
| 3811 | return 1; |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 3812 | } |
| 3813 | |
| 3814 | __LJMP static int hlua_applet_tcp_get_var(lua_State *L) |
| 3815 | { |
| 3816 | struct hlua_appctx *appctx; |
| 3817 | struct stream *s; |
| 3818 | const char *name; |
| 3819 | size_t len; |
| 3820 | struct sample smp; |
| 3821 | |
| 3822 | MAY_LJMP(check_args(L, 2, "get_var")); |
| 3823 | |
| 3824 | /* It is useles to retrieve the stream, but this function |
| 3825 | * runs only in a stream context. |
| 3826 | */ |
| 3827 | appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 3828 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 3829 | s = appctx->htxn.s; |
| 3830 | |
| 3831 | smp_set_owner(&smp, s->be, s->sess, s, 0); |
| 3832 | if (!vars_get_by_name(name, len, &smp)) { |
| 3833 | lua_pushnil(L); |
| 3834 | return 1; |
| 3835 | } |
| 3836 | |
| 3837 | return hlua_smp2lua(L, &smp); |
| 3838 | } |
| 3839 | |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 3840 | __LJMP static int hlua_applet_tcp_set_priv(lua_State *L) |
| 3841 | { |
| 3842 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 3843 | struct stream *s = appctx->htxn.s; |
Thierry FOURNIER | 3b0a6d4 | 2016-12-16 08:48:32 +0100 | [diff] [blame] | 3844 | struct hlua *hlua; |
| 3845 | |
| 3846 | /* 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] | 3847 | if (!s->hlua) |
| 3848 | return 0; |
| 3849 | hlua = s->hlua; |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 3850 | |
| 3851 | MAY_LJMP(check_args(L, 2, "set_priv")); |
| 3852 | |
| 3853 | /* Remove previous value. */ |
Thierry FOURNIER | e068b60 | 2017-04-26 13:27:05 +0200 | [diff] [blame] | 3854 | luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref); |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 3855 | |
| 3856 | /* Get and store new value. */ |
| 3857 | lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */ |
| 3858 | hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */ |
| 3859 | |
| 3860 | return 0; |
| 3861 | } |
| 3862 | |
| 3863 | __LJMP static int hlua_applet_tcp_get_priv(lua_State *L) |
| 3864 | { |
| 3865 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 3866 | struct stream *s = appctx->htxn.s; |
Thierry FOURNIER | 3b0a6d4 | 2016-12-16 08:48:32 +0100 | [diff] [blame] | 3867 | struct hlua *hlua; |
| 3868 | |
| 3869 | /* 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] | 3870 | if (!s->hlua) { |
| 3871 | lua_pushnil(L); |
| 3872 | return 1; |
| 3873 | } |
| 3874 | hlua = s->hlua; |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 3875 | |
| 3876 | /* Push configuration index in the stack. */ |
| 3877 | lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref); |
| 3878 | |
| 3879 | return 1; |
| 3880 | } |
| 3881 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3882 | /* If expected data not yet available, it returns a yield. This function |
| 3883 | * consumes the data in the buffer. It returns a string containing the |
| 3884 | * data. This string can be empty. |
| 3885 | */ |
| 3886 | __LJMP static int hlua_applet_tcp_getline_yield(lua_State *L, int status, lua_KContext ctx) |
| 3887 | { |
| 3888 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 3889 | struct stream_interface *si = appctx->appctx->owner; |
| 3890 | int ret; |
Willy Tarreau | 206ba83 | 2018-06-14 15:27:31 +0200 | [diff] [blame] | 3891 | const char *blk1; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 3892 | size_t len1; |
Willy Tarreau | 206ba83 | 2018-06-14 15:27:31 +0200 | [diff] [blame] | 3893 | const char *blk2; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 3894 | size_t len2; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3895 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3896 | /* Read the maximum amount of data available. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 3897 | ret = co_getline_nc(si_oc(si), &blk1, &len1, &blk2, &len2); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3898 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3899 | /* Data not yet available. return yield. */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3900 | if (ret == 0) { |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 3901 | si_cant_get(si); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 3902 | 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] | 3903 | } |
| 3904 | |
| 3905 | /* End of data: commit the total strings and return. */ |
| 3906 | if (ret < 0) { |
| 3907 | luaL_pushresult(&appctx->b); |
| 3908 | return 1; |
| 3909 | } |
| 3910 | |
| 3911 | /* Ensure that the block 2 length is usable. */ |
| 3912 | if (ret == 1) |
| 3913 | len2 = 0; |
| 3914 | |
Thayne McCombs | 8f0cc5c | 2021-01-07 21:35:52 -0700 | [diff] [blame] | 3915 | /* don't check the max length read and don't check. */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3916 | luaL_addlstring(&appctx->b, blk1, len1); |
| 3917 | luaL_addlstring(&appctx->b, blk2, len2); |
| 3918 | |
| 3919 | /* Consume input channel output buffer data. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 3920 | co_skip(si_oc(si), len1 + len2); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3921 | luaL_pushresult(&appctx->b); |
| 3922 | return 1; |
| 3923 | } |
| 3924 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3925 | /* Check arguments for the function "hlua_channel_get_yield". */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3926 | __LJMP static int hlua_applet_tcp_getline(lua_State *L) |
| 3927 | { |
| 3928 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 3929 | |
| 3930 | /* Initialise the string catenation. */ |
| 3931 | luaL_buffinit(L, &appctx->b); |
| 3932 | |
| 3933 | return MAY_LJMP(hlua_applet_tcp_getline_yield(L, 0, 0)); |
| 3934 | } |
| 3935 | |
| 3936 | /* If expected data not yet available, it returns a yield. This function |
| 3937 | * consumes the data in the buffer. It returns a string containing the |
| 3938 | * data. This string can be empty. |
| 3939 | */ |
| 3940 | __LJMP static int hlua_applet_tcp_recv_yield(lua_State *L, int status, lua_KContext ctx) |
| 3941 | { |
| 3942 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 3943 | struct stream_interface *si = appctx->appctx->owner; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 3944 | size_t len = MAY_LJMP(luaL_checkinteger(L, 2)); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3945 | int ret; |
Willy Tarreau | 206ba83 | 2018-06-14 15:27:31 +0200 | [diff] [blame] | 3946 | const char *blk1; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 3947 | size_t len1; |
Willy Tarreau | 206ba83 | 2018-06-14 15:27:31 +0200 | [diff] [blame] | 3948 | const char *blk2; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 3949 | size_t len2; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3950 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3951 | /* Read the maximum amount of data available. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 3952 | ret = co_getblk_nc(si_oc(si), &blk1, &len1, &blk2, &len2); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3953 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3954 | /* Data not yet available. return yield. */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3955 | if (ret == 0) { |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 3956 | si_cant_get(si); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 3957 | 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] | 3958 | } |
| 3959 | |
| 3960 | /* End of data: commit the total strings and return. */ |
| 3961 | if (ret < 0) { |
| 3962 | luaL_pushresult(&appctx->b); |
| 3963 | return 1; |
| 3964 | } |
| 3965 | |
| 3966 | /* Ensure that the block 2 length is usable. */ |
| 3967 | if (ret == 1) |
| 3968 | len2 = 0; |
| 3969 | |
| 3970 | if (len == -1) { |
| 3971 | |
| 3972 | /* If len == -1, catenate all the data avalaile and |
| 3973 | * yield because we want to get all the data until |
| 3974 | * the end of data stream. |
| 3975 | */ |
| 3976 | luaL_addlstring(&appctx->b, blk1, len1); |
| 3977 | luaL_addlstring(&appctx->b, blk2, len2); |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 3978 | co_skip(si_oc(si), len1 + len2); |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 3979 | si_cant_get(si); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 3980 | 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] | 3981 | |
| 3982 | } else { |
| 3983 | |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 3984 | /* Copy the first block caping to the length required. */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3985 | if (len1 > len) |
| 3986 | len1 = len; |
| 3987 | luaL_addlstring(&appctx->b, blk1, len1); |
| 3988 | len -= len1; |
| 3989 | |
| 3990 | /* Copy the second block. */ |
| 3991 | if (len2 > len) |
| 3992 | len2 = len; |
| 3993 | luaL_addlstring(&appctx->b, blk2, len2); |
| 3994 | len -= len2; |
| 3995 | |
| 3996 | /* Consume input channel output buffer data. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 3997 | co_skip(si_oc(si), len1 + len2); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 3998 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 3999 | /* If there is no other data available, yield waiting for new data. */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4000 | if (len > 0) { |
| 4001 | lua_pushinteger(L, len); |
| 4002 | lua_replace(L, 2); |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 4003 | si_cant_get(si); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 4004 | 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] | 4005 | } |
| 4006 | |
| 4007 | /* return the result. */ |
| 4008 | luaL_pushresult(&appctx->b); |
| 4009 | return 1; |
| 4010 | } |
| 4011 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 4012 | /* we never execute this */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4013 | hlua_pusherror(L, "Lua: internal error"); |
| 4014 | WILL_LJMP(lua_error(L)); |
| 4015 | return 0; |
| 4016 | } |
| 4017 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 4018 | /* Check arguments for the function "hlua_channel_get_yield". */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4019 | __LJMP static int hlua_applet_tcp_recv(lua_State *L) |
| 4020 | { |
| 4021 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 4022 | int len = -1; |
| 4023 | |
| 4024 | if (lua_gettop(L) > 2) |
| 4025 | WILL_LJMP(luaL_error(L, "The 'recv' function requires between 1 and 2 arguments.")); |
| 4026 | if (lua_gettop(L) >= 2) { |
| 4027 | len = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 4028 | lua_pop(L, 1); |
| 4029 | } |
| 4030 | |
| 4031 | /* Confirm or set the required length */ |
| 4032 | lua_pushinteger(L, len); |
| 4033 | |
| 4034 | /* Initialise the string catenation. */ |
| 4035 | luaL_buffinit(L, &appctx->b); |
| 4036 | |
| 4037 | return MAY_LJMP(hlua_applet_tcp_recv_yield(L, 0, 0)); |
| 4038 | } |
| 4039 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 4040 | /* Append data in the output side of the buffer. This data is immediately |
| 4041 | * sent. The function returns the amount of data written. If the buffer |
| 4042 | * cannot contain the data, the function yields. The function returns -1 |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4043 | * if the channel is closed. |
| 4044 | */ |
| 4045 | __LJMP static int hlua_applet_tcp_send_yield(lua_State *L, int status, lua_KContext ctx) |
| 4046 | { |
| 4047 | size_t len; |
| 4048 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_tcp(L, 1)); |
| 4049 | const char *str = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 4050 | int l = MAY_LJMP(luaL_checkinteger(L, 3)); |
| 4051 | struct stream_interface *si = appctx->appctx->owner; |
| 4052 | struct channel *chn = si_ic(si); |
| 4053 | int max; |
| 4054 | |
| 4055 | /* Get the max amount of data which can write as input in the channel. */ |
| 4056 | max = channel_recv_max(chn); |
| 4057 | if (max > (len - l)) |
| 4058 | max = len - l; |
| 4059 | |
| 4060 | /* Copy data. */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 4061 | ci_putblk(chn, str + l, max); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4062 | |
| 4063 | /* update counters. */ |
| 4064 | l += max; |
| 4065 | lua_pop(L, 1); |
| 4066 | lua_pushinteger(L, l); |
| 4067 | |
| 4068 | /* If some data is not send, declares the situation to the |
| 4069 | * applet, and returns a yield. |
| 4070 | */ |
| 4071 | if (l < len) { |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 4072 | si_rx_room_blk(si); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 4073 | 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] | 4074 | } |
| 4075 | |
| 4076 | return 1; |
| 4077 | } |
| 4078 | |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 4079 | /* Just a wrapper of "hlua_applet_tcp_send_yield". This wrapper permits |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 4080 | * yield the LUA process, and resume it without checking the |
| 4081 | * input arguments. |
| 4082 | */ |
| 4083 | __LJMP static int hlua_applet_tcp_send(lua_State *L) |
| 4084 | { |
| 4085 | MAY_LJMP(check_args(L, 2, "send")); |
| 4086 | lua_pushinteger(L, 0); |
| 4087 | |
| 4088 | return MAY_LJMP(hlua_applet_tcp_send_yield(L, 0, 0)); |
| 4089 | } |
| 4090 | |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 4091 | /* |
| 4092 | * |
| 4093 | * |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4094 | * Class AppletHTTP |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4095 | * |
| 4096 | * |
| 4097 | */ |
| 4098 | |
| 4099 | /* Returns a struct hlua_txn if the stack entry "ud" is |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 4100 | * a class stream, otherwise it throws an error. |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4101 | */ |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4102 | __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] | 4103 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 4104 | return MAY_LJMP(hlua_checkudata(L, ud, class_applet_http_ref)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4105 | } |
| 4106 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4107 | /* This function creates and push in the stack an Applet object |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4108 | * according with a current TXN. |
| 4109 | */ |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4110 | static int hlua_applet_http_new(lua_State *L, struct appctx *ctx) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4111 | { |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4112 | struct hlua_appctx *appctx; |
Thierry FOURNIER | 841475e | 2015-12-11 17:10:09 +0100 | [diff] [blame] | 4113 | struct hlua_txn htxn; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4114 | struct stream_interface *si = ctx->owner; |
| 4115 | struct stream *s = si_strm(si); |
| 4116 | struct proxy *px = s->be; |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4117 | struct htx *htx; |
| 4118 | struct htx_blk *blk; |
| 4119 | struct htx_sl *sl; |
| 4120 | struct ist path; |
| 4121 | unsigned long long len = 0; |
| 4122 | int32_t pos; |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4123 | |
| 4124 | /* Check stack size. */ |
| 4125 | if (!lua_checkstack(L, 3)) |
| 4126 | return 0; |
| 4127 | |
| 4128 | /* Create the object: obj[0] = userdata. |
| 4129 | * Note that the base of the Converters object is the |
| 4130 | * same than the TXN object. |
| 4131 | */ |
| 4132 | lua_newtable(L); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4133 | appctx = lua_newuserdata(L, sizeof(*appctx)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4134 | lua_rawseti(L, -2, 0); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4135 | appctx->appctx = ctx; |
| 4136 | appctx->appctx->ctx.hlua_apphttp.status = 200; /* Default status code returned. */ |
Robin H. Johnson | 52f5db2 | 2017-01-01 13:10:52 -0800 | [diff] [blame] | 4137 | appctx->appctx->ctx.hlua_apphttp.reason = NULL; /* Use default reason based on status */ |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4138 | appctx->htxn.s = s; |
| 4139 | appctx->htxn.p = px; |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4140 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4141 | /* Create the "f" field that contains a list of fetches. */ |
| 4142 | lua_pushstring(L, "f"); |
| 4143 | if (!hlua_fetches_new(L, &appctx->htxn, 0)) |
| 4144 | return 0; |
| 4145 | lua_settable(L, -3); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4146 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4147 | /* Create the "sf" field that contains a list of stringsafe fetches. */ |
| 4148 | lua_pushstring(L, "sf"); |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 4149 | if (!hlua_fetches_new(L, &appctx->htxn, HLUA_F_AS_STRING)) |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4150 | return 0; |
| 4151 | lua_settable(L, -3); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4152 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4153 | /* Create the "c" field that contains a list of converters. */ |
| 4154 | lua_pushstring(L, "c"); |
| 4155 | if (!hlua_converters_new(L, &appctx->htxn, 0)) |
| 4156 | return 0; |
| 4157 | lua_settable(L, -3); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4158 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4159 | /* Create the "sc" field that contains a list of stringsafe converters. */ |
| 4160 | lua_pushstring(L, "sc"); |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 4161 | if (!hlua_converters_new(L, &appctx->htxn, HLUA_F_AS_STRING)) |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4162 | return 0; |
| 4163 | lua_settable(L, -3); |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 4164 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4165 | htx = htxbuf(&s->req.buf); |
| 4166 | blk = htx_get_first_blk(htx); |
Christopher Faulet | ea00973 | 2019-11-18 15:50:25 +0100 | [diff] [blame] | 4167 | BUG_ON(!blk || htx_get_blk_type(blk) != HTX_BLK_REQ_SL); |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4168 | sl = htx_get_blk_ptr(htx, blk); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4169 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4170 | /* Stores the request method. */ |
| 4171 | lua_pushstring(L, "method"); |
| 4172 | lua_pushlstring(L, HTX_SL_REQ_MPTR(sl), HTX_SL_REQ_MLEN(sl)); |
| 4173 | lua_settable(L, -3); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4174 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4175 | /* Stores the http version. */ |
| 4176 | lua_pushstring(L, "version"); |
| 4177 | lua_pushlstring(L, HTX_SL_REQ_VPTR(sl), HTX_SL_REQ_VLEN(sl)); |
| 4178 | lua_settable(L, -3); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4179 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4180 | /* creates an array of headers. hlua_http_get_headers() crates and push |
| 4181 | * the array on the top of the stack. |
| 4182 | */ |
| 4183 | lua_pushstring(L, "headers"); |
| 4184 | htxn.s = s; |
| 4185 | htxn.p = px; |
| 4186 | htxn.dir = SMP_OPT_DIR_REQ; |
Christopher Faulet | 9d1332b | 2020-02-24 16:46:16 +0100 | [diff] [blame] | 4187 | if (!hlua_http_get_headers(L, &htxn.s->txn->req)) |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4188 | return 0; |
| 4189 | lua_settable(L, -3); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4190 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4191 | path = http_get_path(htx_sl_req_uri(sl)); |
Tim Duesterhus | ed52637 | 2020-03-05 17:56:33 +0100 | [diff] [blame] | 4192 | if (isttest(path)) { |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4193 | char *p, *q, *end; |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4194 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4195 | p = path.ptr; |
| 4196 | end = path.ptr + path.len; |
| 4197 | q = p; |
| 4198 | while (q < end && *q != '?') |
| 4199 | q++; |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4200 | |
Thierry FOURNIER | 7d38863 | 2017-02-22 02:06:16 +0100 | [diff] [blame] | 4201 | /* Stores the request path. */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4202 | lua_pushstring(L, "path"); |
| 4203 | lua_pushlstring(L, p, q - p); |
Thierry FOURNIER | 7d38863 | 2017-02-22 02:06:16 +0100 | [diff] [blame] | 4204 | lua_settable(L, -3); |
Thierry FOURNIER | 04c57b3 | 2015-03-18 13:43:10 +0100 | [diff] [blame] | 4205 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4206 | /* Stores the query string. */ |
| 4207 | lua_pushstring(L, "qs"); |
| 4208 | if (*q == '?') |
| 4209 | q++; |
| 4210 | lua_pushlstring(L, q, end - q); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4211 | lua_settable(L, -3); |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4212 | } |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4213 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4214 | for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) { |
| 4215 | struct htx_blk *blk = htx_get_blk(htx, pos); |
| 4216 | enum htx_blk_type type = htx_get_blk_type(blk); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4217 | |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 4218 | if (type == HTX_BLK_TLR || type == HTX_BLK_EOT) |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4219 | break; |
| 4220 | if (type == HTX_BLK_DATA) |
| 4221 | len += htx_get_blksz(blk); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4222 | } |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4223 | if (htx->extra != ULLONG_MAX) |
| 4224 | len += htx->extra; |
| 4225 | |
| 4226 | /* Stores the request path. */ |
| 4227 | lua_pushstring(L, "length"); |
| 4228 | lua_pushinteger(L, len); |
| 4229 | lua_settable(L, -3); |
Thierry FOURNIER | 04c57b3 | 2015-03-18 13:43:10 +0100 | [diff] [blame] | 4230 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4231 | /* Create an empty array of HTTP request headers. */ |
| 4232 | lua_pushstring(L, "response"); |
| 4233 | lua_newtable(L); |
| 4234 | lua_settable(L, -3); |
Thierry FOURNIER | 04c57b3 | 2015-03-18 13:43:10 +0100 | [diff] [blame] | 4235 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4236 | /* Pop a class stream metatable and affect it to the table. */ |
| 4237 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_applet_http_ref); |
| 4238 | lua_setmetatable(L, -2); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4239 | |
| 4240 | return 1; |
| 4241 | } |
| 4242 | |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4243 | __LJMP static int hlua_applet_http_set_var(lua_State *L) |
| 4244 | { |
| 4245 | struct hlua_appctx *appctx; |
| 4246 | struct stream *s; |
| 4247 | const char *name; |
| 4248 | size_t len; |
| 4249 | struct sample smp; |
| 4250 | |
Tim Duesterhus | 4e172c9 | 2020-05-19 13:49:42 +0200 | [diff] [blame] | 4251 | if (lua_gettop(L) < 3 || lua_gettop(L) > 4) |
| 4252 | 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] | 4253 | |
| 4254 | /* It is useles to retrieve the stream, but this function |
| 4255 | * runs only in a stream context. |
| 4256 | */ |
| 4257 | appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4258 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 4259 | s = appctx->htxn.s; |
| 4260 | |
| 4261 | /* Converts the third argument in a sample. */ |
Amaury Denoyelle | bc0af6a | 2020-10-29 17:21:20 +0100 | [diff] [blame] | 4262 | memset(&smp, 0, sizeof(smp)); |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4263 | hlua_lua2smp(L, 3, &smp); |
| 4264 | |
| 4265 | /* Store the sample in a variable. */ |
| 4266 | smp_set_owner(&smp, s->be, s->sess, s, 0); |
Tim Duesterhus | 4e172c9 | 2020-05-19 13:49:42 +0200 | [diff] [blame] | 4267 | |
| 4268 | if (lua_gettop(L) == 4 && lua_toboolean(L, 4)) |
| 4269 | lua_pushboolean(L, vars_set_by_name_ifexist(name, len, &smp) != 0); |
| 4270 | else |
| 4271 | lua_pushboolean(L, vars_set_by_name(name, len, &smp) != 0); |
| 4272 | |
Tim Duesterhus | 84ebc13 | 2020-05-19 13:49:41 +0200 | [diff] [blame] | 4273 | return 1; |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4274 | } |
| 4275 | |
| 4276 | __LJMP static int hlua_applet_http_unset_var(lua_State *L) |
| 4277 | { |
| 4278 | struct hlua_appctx *appctx; |
| 4279 | struct stream *s; |
| 4280 | const char *name; |
| 4281 | size_t len; |
| 4282 | struct sample smp; |
| 4283 | |
| 4284 | MAY_LJMP(check_args(L, 2, "unset_var")); |
| 4285 | |
| 4286 | /* It is useles to retrieve the stream, but this function |
| 4287 | * runs only in a stream context. |
| 4288 | */ |
| 4289 | appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4290 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 4291 | s = appctx->htxn.s; |
| 4292 | |
| 4293 | /* Unset the variable. */ |
| 4294 | smp_set_owner(&smp, s->be, s->sess, s, 0); |
Tim Duesterhus | 84ebc13 | 2020-05-19 13:49:41 +0200 | [diff] [blame] | 4295 | lua_pushboolean(L, vars_unset_by_name_ifexist(name, len, &smp) != 0); |
| 4296 | return 1; |
Thierry FOURNIER / OZON.IO | 4394a2c | 2016-12-12 12:31:54 +0100 | [diff] [blame] | 4297 | } |
| 4298 | |
| 4299 | __LJMP static int hlua_applet_http_get_var(lua_State *L) |
| 4300 | { |
| 4301 | struct hlua_appctx *appctx; |
| 4302 | struct stream *s; |
| 4303 | const char *name; |
| 4304 | size_t len; |
| 4305 | struct sample smp; |
| 4306 | |
| 4307 | MAY_LJMP(check_args(L, 2, "get_var")); |
| 4308 | |
| 4309 | /* It is useles to retrieve the stream, but this function |
| 4310 | * runs only in a stream context. |
| 4311 | */ |
| 4312 | appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4313 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 4314 | s = appctx->htxn.s; |
| 4315 | |
| 4316 | smp_set_owner(&smp, s->be, s->sess, s, 0); |
| 4317 | if (!vars_get_by_name(name, len, &smp)) { |
| 4318 | lua_pushnil(L); |
| 4319 | return 1; |
| 4320 | } |
| 4321 | |
| 4322 | return hlua_smp2lua(L, &smp); |
| 4323 | } |
| 4324 | |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 4325 | __LJMP static int hlua_applet_http_set_priv(lua_State *L) |
| 4326 | { |
| 4327 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4328 | struct stream *s = appctx->htxn.s; |
Thierry FOURNIER | 3b0a6d4 | 2016-12-16 08:48:32 +0100 | [diff] [blame] | 4329 | struct hlua *hlua; |
| 4330 | |
| 4331 | /* 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] | 4332 | if (!s->hlua) |
| 4333 | return 0; |
| 4334 | hlua = s->hlua; |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 4335 | |
| 4336 | MAY_LJMP(check_args(L, 2, "set_priv")); |
| 4337 | |
| 4338 | /* Remove previous value. */ |
Thierry FOURNIER | e068b60 | 2017-04-26 13:27:05 +0200 | [diff] [blame] | 4339 | luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref); |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 4340 | |
| 4341 | /* Get and store new value. */ |
| 4342 | lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */ |
| 4343 | hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */ |
| 4344 | |
| 4345 | return 0; |
| 4346 | } |
| 4347 | |
| 4348 | __LJMP static int hlua_applet_http_get_priv(lua_State *L) |
| 4349 | { |
| 4350 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4351 | struct stream *s = appctx->htxn.s; |
Thierry FOURNIER | 3b0a6d4 | 2016-12-16 08:48:32 +0100 | [diff] [blame] | 4352 | struct hlua *hlua; |
| 4353 | |
| 4354 | /* 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] | 4355 | if (!s->hlua) { |
| 4356 | lua_pushnil(L); |
| 4357 | return 1; |
| 4358 | } |
| 4359 | hlua = s->hlua; |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 4360 | |
| 4361 | /* Push configuration index in the stack. */ |
| 4362 | lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref); |
| 4363 | |
| 4364 | return 1; |
| 4365 | } |
| 4366 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4367 | /* If expected data not yet available, it returns a yield. This function |
| 4368 | * consumes the data in the buffer. It returns a string containing the |
| 4369 | * data. This string can be empty. |
| 4370 | */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4371 | __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] | 4372 | { |
| 4373 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4374 | struct stream_interface *si = appctx->appctx->owner; |
| 4375 | struct channel *req = si_oc(si); |
| 4376 | struct htx *htx; |
| 4377 | struct htx_blk *blk; |
| 4378 | size_t count; |
| 4379 | int stop = 0; |
| 4380 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4381 | htx = htx_from_buf(&req->buf); |
| 4382 | count = co_data(req); |
Christopher Faulet | a3f1550 | 2019-05-13 15:27:23 +0200 | [diff] [blame] | 4383 | blk = htx_get_first_blk(htx); |
Christopher Faulet | cc26b13 | 2018-12-18 21:20:57 +0100 | [diff] [blame] | 4384 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4385 | while (count && !stop && blk) { |
| 4386 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 4387 | uint32_t sz = htx_get_blksz(blk); |
| 4388 | struct ist v; |
| 4389 | uint32_t vlen; |
| 4390 | char *nl; |
| 4391 | |
| 4392 | vlen = sz; |
| 4393 | if (vlen > count) { |
| 4394 | if (type != HTX_BLK_DATA) |
| 4395 | break; |
| 4396 | vlen = count; |
| 4397 | } |
| 4398 | |
| 4399 | switch (type) { |
| 4400 | case HTX_BLK_UNUSED: |
| 4401 | break; |
| 4402 | |
| 4403 | case HTX_BLK_DATA: |
| 4404 | v = htx_get_blk_value(htx, blk); |
| 4405 | v.len = vlen; |
| 4406 | nl = istchr(v, '\n'); |
| 4407 | if (nl != NULL) { |
| 4408 | stop = 1; |
| 4409 | vlen = nl - v.ptr + 1; |
| 4410 | } |
| 4411 | luaL_addlstring(&appctx->b, v.ptr, vlen); |
| 4412 | break; |
| 4413 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4414 | case HTX_BLK_TLR: |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 4415 | case HTX_BLK_EOT: |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4416 | stop = 1; |
| 4417 | break; |
| 4418 | |
| 4419 | default: |
| 4420 | break; |
| 4421 | } |
| 4422 | |
| 4423 | co_set_data(req, co_data(req) - vlen); |
| 4424 | count -= vlen; |
| 4425 | if (sz == vlen) |
| 4426 | blk = htx_remove_blk(htx, blk); |
| 4427 | else { |
| 4428 | htx_cut_data_blk(htx, blk, vlen); |
| 4429 | break; |
| 4430 | } |
| 4431 | } |
| 4432 | |
Christopher Faulet | eccb31c | 2021-04-02 14:24:56 +0200 | [diff] [blame] | 4433 | /* The message was fully consumed and no more data are expected |
| 4434 | * (EOM flag set). |
| 4435 | */ |
| 4436 | if (htx_is_empty(htx) && (htx->flags & HTX_FL_EOM)) |
| 4437 | stop = 1; |
| 4438 | |
Christopher Faulet | 0ae79d0 | 2019-02-27 21:36:59 +0100 | [diff] [blame] | 4439 | htx_to_buf(htx, &req->buf); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4440 | if (!stop) { |
| 4441 | si_cant_get(si); |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4442 | 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] | 4443 | } |
| 4444 | |
| 4445 | /* return the result. */ |
| 4446 | luaL_pushresult(&appctx->b); |
| 4447 | return 1; |
| 4448 | } |
| 4449 | |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4450 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 4451 | /* Check arguments for the function "hlua_channel_get_yield". */ |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4452 | __LJMP static int hlua_applet_http_getline(lua_State *L) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4453 | { |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4454 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4455 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4456 | /* Initialise the string catenation. */ |
| 4457 | luaL_buffinit(L, &appctx->b); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4458 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4459 | return MAY_LJMP(hlua_applet_http_getline_yield(L, 0, 0)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 4460 | } |
| 4461 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4462 | /* If expected data not yet available, it returns a yield. This function |
| 4463 | * consumes the data in the buffer. It returns a string containing the |
| 4464 | * data. This string can be empty. |
| 4465 | */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4466 | __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] | 4467 | { |
| 4468 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4469 | struct stream_interface *si = appctx->appctx->owner; |
| 4470 | struct channel *req = si_oc(si); |
| 4471 | struct htx *htx; |
| 4472 | struct htx_blk *blk; |
| 4473 | size_t count; |
| 4474 | int len; |
| 4475 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4476 | htx = htx_from_buf(&req->buf); |
| 4477 | len = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 4478 | count = co_data(req); |
Christopher Faulet | 29f1758 | 2019-05-23 11:03:26 +0200 | [diff] [blame] | 4479 | blk = htx_get_head_blk(htx); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4480 | while (count && len && blk) { |
| 4481 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 4482 | uint32_t sz = htx_get_blksz(blk); |
| 4483 | struct ist v; |
| 4484 | uint32_t vlen; |
| 4485 | |
| 4486 | vlen = sz; |
| 4487 | if (len > 0 && vlen > len) |
| 4488 | vlen = len; |
| 4489 | if (vlen > count) { |
| 4490 | if (type != HTX_BLK_DATA) |
| 4491 | break; |
| 4492 | vlen = count; |
| 4493 | } |
| 4494 | |
| 4495 | switch (type) { |
| 4496 | case HTX_BLK_UNUSED: |
| 4497 | break; |
| 4498 | |
| 4499 | case HTX_BLK_DATA: |
| 4500 | v = htx_get_blk_value(htx, blk); |
| 4501 | luaL_addlstring(&appctx->b, v.ptr, vlen); |
| 4502 | break; |
| 4503 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4504 | case HTX_BLK_TLR: |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 4505 | case HTX_BLK_EOT: |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4506 | len = 0; |
| 4507 | break; |
| 4508 | |
| 4509 | default: |
| 4510 | break; |
| 4511 | } |
| 4512 | |
| 4513 | co_set_data(req, co_data(req) - vlen); |
| 4514 | count -= vlen; |
| 4515 | if (len > 0) |
| 4516 | len -= vlen; |
| 4517 | if (sz == vlen) |
| 4518 | blk = htx_remove_blk(htx, blk); |
| 4519 | else { |
| 4520 | htx_cut_data_blk(htx, blk, vlen); |
| 4521 | break; |
| 4522 | } |
| 4523 | } |
| 4524 | |
Christopher Faulet | eccb31c | 2021-04-02 14:24:56 +0200 | [diff] [blame] | 4525 | /* The message was fully consumed and no more data are expected |
| 4526 | * (EOM flag set). |
| 4527 | */ |
| 4528 | if (htx_is_empty(htx) && (htx->flags & HTX_FL_EOM)) |
| 4529 | len = 0; |
| 4530 | |
Christopher Faulet | 0ae79d0 | 2019-02-27 21:36:59 +0100 | [diff] [blame] | 4531 | htx_to_buf(htx, &req->buf); |
| 4532 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4533 | /* If we are no other data available, yield waiting for new data. */ |
| 4534 | if (len) { |
| 4535 | if (len > 0) { |
| 4536 | lua_pushinteger(L, len); |
| 4537 | lua_replace(L, 2); |
| 4538 | } |
| 4539 | si_cant_get(si); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 4540 | 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] | 4541 | } |
| 4542 | |
| 4543 | /* return the result. */ |
| 4544 | luaL_pushresult(&appctx->b); |
| 4545 | return 1; |
| 4546 | } |
| 4547 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 4548 | /* Check arguments for the function "hlua_channel_get_yield". */ |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4549 | __LJMP static int hlua_applet_http_recv(lua_State *L) |
| 4550 | { |
| 4551 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4552 | int len = -1; |
| 4553 | |
| 4554 | /* Check arguments. */ |
| 4555 | if (lua_gettop(L) > 2) |
| 4556 | WILL_LJMP(luaL_error(L, "The 'recv' function requires between 1 and 2 arguments.")); |
| 4557 | if (lua_gettop(L) >= 2) { |
| 4558 | len = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 4559 | lua_pop(L, 1); |
| 4560 | } |
| 4561 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4562 | lua_pushinteger(L, len); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4563 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4564 | /* Initialise the string catenation. */ |
| 4565 | luaL_buffinit(L, &appctx->b); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4566 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4567 | return MAY_LJMP(hlua_applet_http_recv_yield(L, 0, 0)); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4568 | } |
| 4569 | |
| 4570 | /* Append data in the output side of the buffer. This data is immediately |
| 4571 | * sent. The function returns the amount of data written. If the buffer |
| 4572 | * cannot contain the data, the function yields. The function returns -1 |
| 4573 | * if the channel is closed. |
| 4574 | */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4575 | __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] | 4576 | { |
| 4577 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4578 | struct stream_interface *si = appctx->appctx->owner; |
| 4579 | struct channel *res = si_ic(si); |
| 4580 | struct htx *htx = htx_from_buf(&res->buf); |
| 4581 | const char *data; |
| 4582 | size_t len; |
| 4583 | int l = MAY_LJMP(luaL_checkinteger(L, 3)); |
| 4584 | int max; |
| 4585 | |
Christopher Faulet | 9060fc0 | 2019-07-03 11:39:30 +0200 | [diff] [blame] | 4586 | max = htx_get_max_blksz(htx, channel_htx_recv_max(res, htx)); |
Christopher Faulet | 4b0e9b2 | 2019-01-09 12:16:58 +0100 | [diff] [blame] | 4587 | if (!max) |
| 4588 | goto snd_yield; |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4589 | |
| 4590 | data = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 4591 | |
| 4592 | /* Get the max amount of data which can write as input in the channel. */ |
| 4593 | if (max > (len - l)) |
| 4594 | max = len - l; |
| 4595 | |
| 4596 | /* Copy data. */ |
Willy Tarreau | 0a7ef02 | 2019-05-28 10:30:11 +0200 | [diff] [blame] | 4597 | max = htx_add_data(htx, ist2(data + l, max)); |
Christopher Faulet | f6cce3f | 2019-02-27 21:20:09 +0100 | [diff] [blame] | 4598 | channel_add_input(res, max); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4599 | |
| 4600 | /* update counters. */ |
| 4601 | l += max; |
| 4602 | lua_pop(L, 1); |
| 4603 | lua_pushinteger(L, l); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4604 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4605 | /* If some data is not send, declares the situation to the |
| 4606 | * applet, and returns a yield. |
| 4607 | */ |
| 4608 | if (l < len) { |
Christopher Faulet | 4b0e9b2 | 2019-01-09 12:16:58 +0100 | [diff] [blame] | 4609 | snd_yield: |
Christopher Faulet | 0ae79d0 | 2019-02-27 21:36:59 +0100 | [diff] [blame] | 4610 | htx_to_buf(htx, &res->buf); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4611 | si_rx_room_blk(si); |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 4612 | 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] | 4613 | } |
| 4614 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4615 | htx_to_buf(htx, &res->buf); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4616 | return 1; |
| 4617 | } |
| 4618 | |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 4619 | /* Just a wrapper of "hlua_applet_send_yield". This wrapper permits |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4620 | * yield the LUA process, and resume it without checking the |
| 4621 | * input arguments. |
| 4622 | */ |
| 4623 | __LJMP static int hlua_applet_http_send(lua_State *L) |
| 4624 | { |
| 4625 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4626 | |
| 4627 | /* We want to send some data. Headers must be sent. */ |
| 4628 | if (!(appctx->appctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT)) { |
| 4629 | hlua_pusherror(L, "Lua: 'send' you must call start_response() before sending data."); |
| 4630 | WILL_LJMP(lua_error(L)); |
| 4631 | } |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4632 | |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 4633 | /* This integer is used for followinf the amount of data sent. */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4634 | lua_pushinteger(L, 0); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4635 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4636 | return MAY_LJMP(hlua_applet_http_send_yield(L, 0, 0)); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4637 | } |
| 4638 | |
| 4639 | __LJMP static int hlua_applet_http_addheader(lua_State *L) |
| 4640 | { |
| 4641 | const char *name; |
| 4642 | int ret; |
| 4643 | |
| 4644 | MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4645 | name = MAY_LJMP(luaL_checkstring(L, 2)); |
| 4646 | MAY_LJMP(luaL_checkstring(L, 3)); |
| 4647 | |
| 4648 | /* Push in the stack the "response" entry. */ |
| 4649 | ret = lua_getfield(L, 1, "response"); |
| 4650 | if (ret != LUA_TTABLE) { |
| 4651 | hlua_pusherror(L, "Lua: 'add_header' internal error: AppletHTTP['response'] " |
| 4652 | "is expected as an array. %s found", lua_typename(L, ret)); |
| 4653 | WILL_LJMP(lua_error(L)); |
| 4654 | } |
| 4655 | |
| 4656 | /* check if the header is already registered if it is not |
| 4657 | * the case, register it. |
| 4658 | */ |
| 4659 | ret = lua_getfield(L, -1, name); |
| 4660 | if (ret == LUA_TNIL) { |
| 4661 | |
| 4662 | /* Entry not found. */ |
| 4663 | lua_pop(L, 1); /* remove the nil. The "response" table is the top of the stack. */ |
| 4664 | |
| 4665 | /* Insert the new header name in the array in the top of the stack. |
| 4666 | * It left the new array in the top of the stack. |
| 4667 | */ |
| 4668 | lua_newtable(L); |
| 4669 | lua_pushvalue(L, 2); |
| 4670 | lua_pushvalue(L, -2); |
| 4671 | lua_settable(L, -4); |
| 4672 | |
| 4673 | } else if (ret != LUA_TTABLE) { |
| 4674 | |
| 4675 | /* corruption error. */ |
| 4676 | hlua_pusherror(L, "Lua: 'add_header' internal error: AppletHTTP['response']['%s'] " |
| 4677 | "is expected as an array. %s found", name, lua_typename(L, ret)); |
| 4678 | WILL_LJMP(lua_error(L)); |
| 4679 | } |
| 4680 | |
Thayne McCombs | 8f0cc5c | 2021-01-07 21:35:52 -0700 | [diff] [blame] | 4681 | /* Now the top of thestack is an array of values. We push |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4682 | * the header value as new entry. |
| 4683 | */ |
| 4684 | lua_pushvalue(L, 3); |
| 4685 | ret = lua_rawlen(L, -2); |
| 4686 | lua_rawseti(L, -2, ret + 1); |
| 4687 | lua_pushboolean(L, 1); |
| 4688 | return 1; |
| 4689 | } |
| 4690 | |
| 4691 | __LJMP static int hlua_applet_http_status(lua_State *L) |
| 4692 | { |
| 4693 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4694 | int status = MAY_LJMP(luaL_checkinteger(L, 2)); |
Robin H. Johnson | 52f5db2 | 2017-01-01 13:10:52 -0800 | [diff] [blame] | 4695 | const char *reason = MAY_LJMP(luaL_optlstring(L, 3, NULL, NULL)); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4696 | |
| 4697 | if (status < 100 || status > 599) { |
| 4698 | lua_pushboolean(L, 0); |
| 4699 | return 1; |
| 4700 | } |
| 4701 | |
| 4702 | appctx->appctx->ctx.hlua_apphttp.status = status; |
Robin H. Johnson | 52f5db2 | 2017-01-01 13:10:52 -0800 | [diff] [blame] | 4703 | appctx->appctx->ctx.hlua_apphttp.reason = reason; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4704 | lua_pushboolean(L, 1); |
| 4705 | return 1; |
| 4706 | } |
| 4707 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4708 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4709 | __LJMP static int hlua_applet_http_send_response(lua_State *L) |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4710 | { |
| 4711 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4712 | struct stream_interface *si = appctx->appctx->owner; |
| 4713 | struct channel *res = si_ic(si); |
| 4714 | struct htx *htx; |
| 4715 | struct htx_sl *sl; |
| 4716 | struct h1m h1m; |
| 4717 | const char *status, *reason; |
| 4718 | const char *name, *value; |
| 4719 | size_t nlen, vlen; |
| 4720 | unsigned int flags; |
| 4721 | |
| 4722 | /* Send the message at once. */ |
| 4723 | htx = htx_from_buf(&res->buf); |
| 4724 | h1m_init_res(&h1m); |
| 4725 | |
| 4726 | /* Use the same http version than the request. */ |
| 4727 | status = ultoa_r(appctx->appctx->ctx.hlua_apphttp.status, trash.area, trash.size); |
| 4728 | reason = appctx->appctx->ctx.hlua_apphttp.reason; |
| 4729 | if (reason == NULL) |
| 4730 | reason = http_get_reason(appctx->appctx->ctx.hlua_apphttp.status); |
| 4731 | if (appctx->appctx->ctx.hlua_apphttp.flags & APPLET_HTTP11) { |
| 4732 | flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11); |
| 4733 | sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"), ist(status), ist(reason)); |
| 4734 | } |
| 4735 | else { |
| 4736 | flags = HTX_SL_F_IS_RESP; |
| 4737 | sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.0"), ist(status), ist(reason)); |
| 4738 | } |
| 4739 | if (!sl) { |
| 4740 | hlua_pusherror(L, "Lua applet http '%s': Failed to create response.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 4741 | appctx->appctx->rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4742 | WILL_LJMP(lua_error(L)); |
| 4743 | } |
| 4744 | sl->info.res.status = appctx->appctx->ctx.hlua_apphttp.status; |
| 4745 | |
| 4746 | /* Get the array associated to the field "response" in the object AppletHTTP. */ |
| 4747 | lua_pushvalue(L, 0); |
| 4748 | if (lua_getfield(L, 1, "response") != LUA_TTABLE) { |
| 4749 | hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response'] missing.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 4750 | appctx->appctx->rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4751 | WILL_LJMP(lua_error(L)); |
| 4752 | } |
| 4753 | |
| 4754 | /* Browse the list of headers. */ |
| 4755 | lua_pushnil(L); |
| 4756 | while(lua_next(L, -2) != 0) { |
| 4757 | /* We expect a string as -2. */ |
| 4758 | if (lua_type(L, -2) != LUA_TSTRING) { |
| 4759 | hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response'][] element must be a string. got %s.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 4760 | appctx->appctx->rule->arg.hlua_rule->fcn->name, |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4761 | lua_typename(L, lua_type(L, -2))); |
| 4762 | WILL_LJMP(lua_error(L)); |
| 4763 | } |
| 4764 | name = lua_tolstring(L, -2, &nlen); |
| 4765 | |
| 4766 | /* We expect an array as -1. */ |
| 4767 | if (lua_type(L, -1) != LUA_TTABLE) { |
| 4768 | hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response']['%s'] element must be an table. got %s.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 4769 | appctx->appctx->rule->arg.hlua_rule->fcn->name, |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4770 | name, |
| 4771 | lua_typename(L, lua_type(L, -1))); |
| 4772 | WILL_LJMP(lua_error(L)); |
| 4773 | } |
| 4774 | |
| 4775 | /* Browse the table who is on the top of the stack. */ |
| 4776 | lua_pushnil(L); |
| 4777 | while(lua_next(L, -2) != 0) { |
| 4778 | int id; |
| 4779 | |
| 4780 | /* We expect a number as -2. */ |
| 4781 | if (lua_type(L, -2) != LUA_TNUMBER) { |
| 4782 | hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response']['%s'][] element must be a number. got %s.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 4783 | appctx->appctx->rule->arg.hlua_rule->fcn->name, |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4784 | name, |
| 4785 | lua_typename(L, lua_type(L, -2))); |
| 4786 | WILL_LJMP(lua_error(L)); |
| 4787 | } |
| 4788 | id = lua_tointeger(L, -2); |
| 4789 | |
| 4790 | /* We expect a string as -2. */ |
| 4791 | if (lua_type(L, -1) != LUA_TSTRING) { |
| 4792 | hlua_pusherror(L, "Lua applet http '%s': AppletHTTP['response']['%s'][%d] element must be a string. got %s.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 4793 | appctx->appctx->rule->arg.hlua_rule->fcn->name, |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4794 | name, id, |
| 4795 | lua_typename(L, lua_type(L, -1))); |
| 4796 | WILL_LJMP(lua_error(L)); |
| 4797 | } |
| 4798 | value = lua_tolstring(L, -1, &vlen); |
| 4799 | |
| 4800 | /* Simple Protocol checks. */ |
| 4801 | if (isteqi(ist2(name, nlen), ist("transfer-encoding"))) |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 4802 | h1_parse_xfer_enc_header(&h1m, ist2(value, vlen)); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4803 | else if (isteqi(ist2(name, nlen), ist("content-length"))) { |
| 4804 | struct ist v = ist2(value, vlen); |
| 4805 | int ret; |
| 4806 | |
| 4807 | ret = h1_parse_cont_len_header(&h1m, &v); |
| 4808 | if (ret < 0) { |
| 4809 | hlua_pusherror(L, "Lua applet http '%s': Invalid '%s' header.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 4810 | appctx->appctx->rule->arg.hlua_rule->fcn->name, |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4811 | name); |
| 4812 | WILL_LJMP(lua_error(L)); |
| 4813 | } |
| 4814 | else if (ret == 0) |
| 4815 | goto next; /* Skip it */ |
| 4816 | } |
| 4817 | |
| 4818 | /* Add a new header */ |
| 4819 | if (!htx_add_header(htx, ist2(name, nlen), ist2(value, vlen))) { |
| 4820 | hlua_pusherror(L, "Lua applet http '%s': Failed to add header '%s' in the response.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 4821 | appctx->appctx->rule->arg.hlua_rule->fcn->name, |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4822 | name); |
| 4823 | WILL_LJMP(lua_error(L)); |
| 4824 | } |
| 4825 | next: |
| 4826 | /* Remove the array from the stack, and get next element with a remaining string. */ |
| 4827 | lua_pop(L, 1); |
| 4828 | } |
| 4829 | |
| 4830 | /* Remove the array from the stack, and get next element with a remaining string. */ |
| 4831 | lua_pop(L, 1); |
| 4832 | } |
| 4833 | |
| 4834 | if (h1m.flags & H1_MF_CHNK) |
| 4835 | h1m.flags &= ~H1_MF_CLEN; |
| 4836 | if (h1m.flags & (H1_MF_CLEN|H1_MF_CHNK)) |
| 4837 | h1m.flags |= H1_MF_XFER_LEN; |
| 4838 | |
| 4839 | /* Uset HTX start-line flags */ |
| 4840 | if (h1m.flags & H1_MF_XFER_ENC) |
| 4841 | flags |= HTX_SL_F_XFER_ENC; |
| 4842 | if (h1m.flags & H1_MF_XFER_LEN) { |
| 4843 | flags |= HTX_SL_F_XFER_LEN; |
| 4844 | if (h1m.flags & H1_MF_CHNK) |
| 4845 | flags |= HTX_SL_F_CHNK; |
| 4846 | else if (h1m.flags & H1_MF_CLEN) |
| 4847 | flags |= HTX_SL_F_CLEN; |
| 4848 | if (h1m.body_len == 0) |
| 4849 | flags |= HTX_SL_F_BODYLESS; |
| 4850 | } |
| 4851 | sl->flags |= flags; |
| 4852 | |
Thayne McCombs | 8f0cc5c | 2021-01-07 21:35:52 -0700 | [diff] [blame] | 4853 | /* 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] | 4854 | * and the status code implies the presence of a message body, we must |
| 4855 | * announce a transfer encoding chunked. This is required by haproxy |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 4856 | * for the keepalive compliance. If the applet announces a transfer-encoding |
| 4857 | * chunked itself, don't do anything. |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4858 | */ |
| 4859 | if ((flags & (HTX_SL_F_VER_11|HTX_SL_F_XFER_LEN)) == HTX_SL_F_VER_11 && |
| 4860 | appctx->appctx->ctx.hlua_apphttp.status >= 200 && |
| 4861 | appctx->appctx->ctx.hlua_apphttp.status != 204 && |
| 4862 | appctx->appctx->ctx.hlua_apphttp.status != 304) { |
| 4863 | /* Add a new header */ |
| 4864 | sl->flags |= (HTX_SL_F_XFER_ENC|H1_MF_CHNK|H1_MF_XFER_LEN); |
| 4865 | if (!htx_add_header(htx, ist("transfer-encoding"), ist("chunked"))) { |
| 4866 | hlua_pusherror(L, "Lua applet http '%s': Failed to add header 'transfer-encoding' in the response.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 4867 | appctx->appctx->rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4868 | WILL_LJMP(lua_error(L)); |
| 4869 | } |
| 4870 | } |
| 4871 | |
| 4872 | /* Finalize headers. */ |
| 4873 | if (!htx_add_endof(htx, HTX_BLK_EOH)) { |
| 4874 | hlua_pusherror(L, "Lua applet http '%s': Failed create the response.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 4875 | appctx->appctx->rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4876 | WILL_LJMP(lua_error(L)); |
| 4877 | } |
| 4878 | |
| 4879 | if (htx_used_space(htx) > b_size(&res->buf) - global.tune.maxrewrite) { |
| 4880 | b_reset(&res->buf); |
| 4881 | hlua_pusherror(L, "Lua: 'start_response': response header block too big"); |
| 4882 | WILL_LJMP(lua_error(L)); |
| 4883 | } |
| 4884 | |
| 4885 | htx_to_buf(htx, &res->buf); |
Christopher Faulet | f6cce3f | 2019-02-27 21:20:09 +0100 | [diff] [blame] | 4886 | channel_add_input(res, htx->data); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4887 | |
| 4888 | /* Headers sent, set the flag. */ |
| 4889 | appctx->appctx->ctx.hlua_apphttp.flags |= APPLET_HDR_SENT; |
| 4890 | return 0; |
| 4891 | |
| 4892 | } |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4893 | /* We will build the status line and the headers of the HTTP response. |
| 4894 | * We will try send at once if its not possible, we give back the hand |
| 4895 | * waiting for more room. |
| 4896 | */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4897 | __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] | 4898 | { |
| 4899 | struct hlua_appctx *appctx = MAY_LJMP(hlua_checkapplet_http(L, 1)); |
| 4900 | struct stream_interface *si = appctx->appctx->owner; |
| 4901 | struct channel *res = si_ic(si); |
| 4902 | |
| 4903 | if (co_data(res)) { |
| 4904 | si_rx_room_blk(si); |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4905 | 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] | 4906 | } |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4907 | return MAY_LJMP(hlua_applet_http_send_response(L)); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4908 | } |
| 4909 | |
| 4910 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4911 | __LJMP static int hlua_applet_http_start_response(lua_State *L) |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4912 | { |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4913 | return MAY_LJMP(hlua_applet_http_start_response_yield(L, 0, 0)); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4914 | } |
| 4915 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4916 | /* |
| 4917 | * |
| 4918 | * |
| 4919 | * Class HTTP |
| 4920 | * |
| 4921 | * |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 4922 | */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4923 | |
| 4924 | /* Returns a struct hlua_txn if the stack entry "ud" is |
| 4925 | * a class stream, otherwise it throws an error. |
| 4926 | */ |
| 4927 | __LJMP static struct hlua_txn *hlua_checkhttp(lua_State *L, int ud) |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4928 | { |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4929 | return MAY_LJMP(hlua_checkudata(L, ud, class_http_ref)); |
| 4930 | } |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4931 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4932 | /* This function creates and push in the stack a HTTP object |
| 4933 | * according with a current TXN. |
| 4934 | */ |
| 4935 | static int hlua_http_new(lua_State *L, struct hlua_txn *txn) |
| 4936 | { |
| 4937 | struct hlua_txn *htxn; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4938 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4939 | /* Check stack size. */ |
| 4940 | if (!lua_checkstack(L, 3)) |
| 4941 | return 0; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4942 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4943 | /* Create the object: obj[0] = userdata. |
| 4944 | * Note that the base of the Converters object is the |
| 4945 | * same than the TXN object. |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4946 | */ |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4947 | lua_newtable(L); |
| 4948 | htxn = lua_newuserdata(L, sizeof(*htxn)); |
| 4949 | lua_rawseti(L, -2, 0); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4950 | |
| 4951 | htxn->s = txn->s; |
| 4952 | htxn->p = txn->p; |
Christopher Faulet | 256b69a | 2019-05-23 11:14:21 +0200 | [diff] [blame] | 4953 | htxn->dir = txn->dir; |
| 4954 | htxn->flags = txn->flags; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4955 | |
| 4956 | /* Pop a class stream metatable and affect it to the table. */ |
| 4957 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_http_ref); |
| 4958 | lua_setmetatable(L, -2); |
| 4959 | |
| 4960 | return 1; |
| 4961 | } |
| 4962 | |
| 4963 | /* This function creates ans returns an array of HTTP headers. |
| 4964 | * This function does not fails. It is used as wrapper with the |
| 4965 | * 2 following functions. |
| 4966 | */ |
Christopher Faulet | 9d1332b | 2020-02-24 16:46:16 +0100 | [diff] [blame] | 4967 | __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] | 4968 | { |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4969 | struct htx *htx; |
| 4970 | int32_t pos; |
| 4971 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4972 | /* Create the table. */ |
| 4973 | lua_newtable(L); |
| 4974 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 4975 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4976 | htx = htxbuf(&msg->chn->buf); |
| 4977 | for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) { |
| 4978 | struct htx_blk *blk = htx_get_blk(htx, pos); |
| 4979 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 4980 | struct ist n, v; |
| 4981 | int len; |
Christopher Faulet | 724a12c | 2018-12-13 22:12:15 +0100 | [diff] [blame] | 4982 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4983 | if (type == HTX_BLK_HDR) { |
| 4984 | n = htx_get_blk_name(htx,blk); |
| 4985 | v = htx_get_blk_value(htx, blk); |
Christopher Faulet | 724a12c | 2018-12-13 22:12:15 +0100 | [diff] [blame] | 4986 | } |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4987 | else if (type == HTX_BLK_EOH) |
| 4988 | break; |
| 4989 | else |
| 4990 | continue; |
Christopher Faulet | 724a12c | 2018-12-13 22:12:15 +0100 | [diff] [blame] | 4991 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 4992 | /* Check for existing entry: |
| 4993 | * assume that the table is on the top of the stack, and |
| 4994 | * push the key in the stack, the function lua_gettable() |
| 4995 | * perform the lookup. |
| 4996 | */ |
| 4997 | lua_pushlstring(L, n.ptr, n.len); |
| 4998 | lua_gettable(L, -2); |
Christopher Faulet | 724a12c | 2018-12-13 22:12:15 +0100 | [diff] [blame] | 4999 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5000 | switch (lua_type(L, -1)) { |
| 5001 | case LUA_TNIL: |
| 5002 | /* Table not found, create it. */ |
| 5003 | lua_pop(L, 1); /* remove the nil value. */ |
| 5004 | lua_pushlstring(L, n.ptr, n.len); /* push the header name as key. */ |
| 5005 | lua_newtable(L); /* create and push empty table. */ |
| 5006 | lua_pushlstring(L, v.ptr, v.len); /* push header value. */ |
| 5007 | lua_rawseti(L, -2, 0); /* index header value (pop it). */ |
| 5008 | 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] | 5009 | break; |
Christopher Faulet | 724a12c | 2018-12-13 22:12:15 +0100 | [diff] [blame] | 5010 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5011 | case LUA_TTABLE: |
| 5012 | /* Entry found: push the value in the table. */ |
| 5013 | len = lua_rawlen(L, -1); |
| 5014 | lua_pushlstring(L, v.ptr, v.len); /* push header value. */ |
| 5015 | lua_rawseti(L, -2, len+1); /* index header value (pop it). */ |
| 5016 | lua_pop(L, 1); /* remove the table (it is stored in the main table). */ |
| 5017 | break; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5018 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5019 | default: |
| 5020 | /* Other cases are errors. */ |
| 5021 | hlua_pusherror(L, "internal error during the parsing of headers."); |
| 5022 | WILL_LJMP(lua_error(L)); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5023 | } |
| 5024 | } |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5025 | return 1; |
| 5026 | } |
| 5027 | |
| 5028 | __LJMP static int hlua_http_req_get_headers(lua_State *L) |
| 5029 | { |
| 5030 | struct hlua_txn *htxn; |
| 5031 | |
| 5032 | MAY_LJMP(check_args(L, 1, "req_get_headers")); |
| 5033 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5034 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5035 | if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5036 | WILL_LJMP(lua_error(L)); |
| 5037 | |
Christopher Faulet | 9d1332b | 2020-02-24 16:46:16 +0100 | [diff] [blame] | 5038 | return hlua_http_get_headers(L, &htxn->s->txn->req); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5039 | } |
| 5040 | |
| 5041 | __LJMP static int hlua_http_res_get_headers(lua_State *L) |
| 5042 | { |
| 5043 | struct hlua_txn *htxn; |
| 5044 | |
| 5045 | MAY_LJMP(check_args(L, 1, "res_get_headers")); |
| 5046 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5047 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5048 | if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5049 | WILL_LJMP(lua_error(L)); |
| 5050 | |
Christopher Faulet | 9d1332b | 2020-02-24 16:46:16 +0100 | [diff] [blame] | 5051 | return hlua_http_get_headers(L, &htxn->s->txn->rsp); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5052 | } |
| 5053 | |
| 5054 | /* This function replace full header, or just a value in |
| 5055 | * the request or in the response. It is a wrapper fir the |
| 5056 | * 4 following functions. |
| 5057 | */ |
Christopher Faulet | d1914aa | 2020-02-24 16:52:46 +0100 | [diff] [blame] | 5058 | __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] | 5059 | { |
| 5060 | size_t name_len; |
| 5061 | const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len)); |
| 5062 | const char *reg = MAY_LJMP(luaL_checkstring(L, 3)); |
| 5063 | const char *value = MAY_LJMP(luaL_checkstring(L, 4)); |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5064 | struct htx *htx; |
Dragan Dosen | 2674303 | 2019-04-30 15:54:36 +0200 | [diff] [blame] | 5065 | struct my_regex *re; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5066 | |
Dragan Dosen | 2674303 | 2019-04-30 15:54:36 +0200 | [diff] [blame] | 5067 | if (!(re = regex_comp(reg, 1, 1, NULL))) |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5068 | WILL_LJMP(luaL_argerror(L, 3, "invalid regex")); |
| 5069 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5070 | htx = htxbuf(&msg->chn->buf); |
Christopher Faulet | d1914aa | 2020-02-24 16:52:46 +0100 | [diff] [blame] | 5071 | 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] | 5072 | regex_free(re); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 5073 | return 0; |
| 5074 | } |
| 5075 | |
| 5076 | __LJMP static int hlua_http_req_rep_hdr(lua_State *L) |
| 5077 | { |
| 5078 | struct hlua_txn *htxn; |
| 5079 | |
| 5080 | MAY_LJMP(check_args(L, 4, "req_rep_hdr")); |
| 5081 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5082 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5083 | if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5084 | WILL_LJMP(lua_error(L)); |
| 5085 | |
Christopher Faulet | d1914aa | 2020-02-24 16:52:46 +0100 | [diff] [blame] | 5086 | 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] | 5087 | } |
| 5088 | |
| 5089 | __LJMP static int hlua_http_res_rep_hdr(lua_State *L) |
| 5090 | { |
| 5091 | struct hlua_txn *htxn; |
| 5092 | |
| 5093 | MAY_LJMP(check_args(L, 4, "res_rep_hdr")); |
| 5094 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5095 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5096 | if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5097 | WILL_LJMP(lua_error(L)); |
| 5098 | |
Christopher Faulet | d1914aa | 2020-02-24 16:52:46 +0100 | [diff] [blame] | 5099 | 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] | 5100 | } |
| 5101 | |
| 5102 | __LJMP static int hlua_http_req_rep_val(lua_State *L) |
| 5103 | { |
| 5104 | struct hlua_txn *htxn; |
| 5105 | |
| 5106 | MAY_LJMP(check_args(L, 4, "req_rep_hdr")); |
| 5107 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5108 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5109 | if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5110 | WILL_LJMP(lua_error(L)); |
| 5111 | |
Christopher Faulet | d1914aa | 2020-02-24 16:52:46 +0100 | [diff] [blame] | 5112 | 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] | 5113 | } |
| 5114 | |
| 5115 | __LJMP static int hlua_http_res_rep_val(lua_State *L) |
| 5116 | { |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5117 | struct hlua_txn *htxn; |
| 5118 | |
| 5119 | MAY_LJMP(check_args(L, 4, "res_rep_val")); |
| 5120 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5121 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5122 | if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5123 | WILL_LJMP(lua_error(L)); |
| 5124 | |
Christopher Faulet | d1914aa | 2020-02-24 16:52:46 +0100 | [diff] [blame] | 5125 | 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] | 5126 | } |
| 5127 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 5128 | /* This function deletes all the occurrences of an header. |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5129 | * It is a wrapper for the 2 following functions. |
| 5130 | */ |
Christopher Faulet | d31c7b3 | 2020-02-25 09:37:57 +0100 | [diff] [blame] | 5131 | __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] | 5132 | { |
| 5133 | size_t len; |
| 5134 | const char *name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5135 | struct htx *htx = htxbuf(&msg->chn->buf); |
| 5136 | struct http_hdr_ctx ctx; |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5137 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5138 | ctx.blk = NULL; |
| 5139 | while (http_find_header(htx, ist2(name, len), &ctx, 1)) |
| 5140 | http_remove_header(htx, &ctx); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5141 | return 0; |
| 5142 | } |
| 5143 | |
| 5144 | __LJMP static int hlua_http_req_del_hdr(lua_State *L) |
| 5145 | { |
| 5146 | struct hlua_txn *htxn; |
| 5147 | |
| 5148 | MAY_LJMP(check_args(L, 2, "req_del_hdr")); |
| 5149 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5150 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5151 | if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5152 | WILL_LJMP(lua_error(L)); |
| 5153 | |
Christopher Faulet | d31c7b3 | 2020-02-25 09:37:57 +0100 | [diff] [blame] | 5154 | return hlua_http_del_hdr(L, &htxn->s->txn->req); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5155 | } |
| 5156 | |
| 5157 | __LJMP static int hlua_http_res_del_hdr(lua_State *L) |
| 5158 | { |
| 5159 | struct hlua_txn *htxn; |
| 5160 | |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5161 | MAY_LJMP(check_args(L, 2, "res_del_hdr")); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5162 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5163 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5164 | if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5165 | WILL_LJMP(lua_error(L)); |
| 5166 | |
Christopher Faulet | d31c7b3 | 2020-02-25 09:37:57 +0100 | [diff] [blame] | 5167 | return hlua_http_del_hdr(L, &htxn->s->txn->rsp); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5168 | } |
| 5169 | |
| 5170 | /* This function adds an header. It is a wrapper used by |
| 5171 | * the 2 following functions. |
| 5172 | */ |
Christopher Faulet | d31c7b3 | 2020-02-25 09:37:57 +0100 | [diff] [blame] | 5173 | __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] | 5174 | { |
| 5175 | size_t name_len; |
| 5176 | const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len)); |
| 5177 | size_t value_len; |
| 5178 | const char *value = MAY_LJMP(luaL_checklstring(L, 3, &value_len)); |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5179 | struct htx *htx = htxbuf(&msg->chn->buf); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5180 | |
Christopher Faulet | a209796 | 2019-07-15 16:25:33 +0200 | [diff] [blame] | 5181 | lua_pushboolean(L, http_add_header(htx, ist2(name, name_len), |
| 5182 | ist2(value, value_len))); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5183 | return 0; |
| 5184 | } |
| 5185 | |
| 5186 | __LJMP static int hlua_http_req_add_hdr(lua_State *L) |
| 5187 | { |
| 5188 | struct hlua_txn *htxn; |
| 5189 | |
| 5190 | MAY_LJMP(check_args(L, 3, "req_add_hdr")); |
| 5191 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5192 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5193 | if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5194 | WILL_LJMP(lua_error(L)); |
| 5195 | |
Christopher Faulet | d31c7b3 | 2020-02-25 09:37:57 +0100 | [diff] [blame] | 5196 | return hlua_http_add_hdr(L, &htxn->s->txn->req); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5197 | } |
| 5198 | |
| 5199 | __LJMP static int hlua_http_res_add_hdr(lua_State *L) |
| 5200 | { |
| 5201 | struct hlua_txn *htxn; |
| 5202 | |
| 5203 | MAY_LJMP(check_args(L, 3, "res_add_hdr")); |
| 5204 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5205 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5206 | if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5207 | WILL_LJMP(lua_error(L)); |
| 5208 | |
Christopher Faulet | d31c7b3 | 2020-02-25 09:37:57 +0100 | [diff] [blame] | 5209 | return hlua_http_add_hdr(L, &htxn->s->txn->rsp); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5210 | } |
| 5211 | |
| 5212 | static int hlua_http_req_set_hdr(lua_State *L) |
| 5213 | { |
| 5214 | struct hlua_txn *htxn; |
| 5215 | |
| 5216 | MAY_LJMP(check_args(L, 3, "req_set_hdr")); |
| 5217 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5218 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5219 | if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5220 | WILL_LJMP(lua_error(L)); |
| 5221 | |
Christopher Faulet | d31c7b3 | 2020-02-25 09:37:57 +0100 | [diff] [blame] | 5222 | hlua_http_del_hdr(L, &htxn->s->txn->req); |
| 5223 | return hlua_http_add_hdr(L, &htxn->s->txn->req); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5224 | } |
| 5225 | |
| 5226 | static int hlua_http_res_set_hdr(lua_State *L) |
| 5227 | { |
| 5228 | struct hlua_txn *htxn; |
| 5229 | |
| 5230 | MAY_LJMP(check_args(L, 3, "res_set_hdr")); |
| 5231 | htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5232 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5233 | if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5234 | WILL_LJMP(lua_error(L)); |
| 5235 | |
Christopher Faulet | d31c7b3 | 2020-02-25 09:37:57 +0100 | [diff] [blame] | 5236 | hlua_http_del_hdr(L, &htxn->s->txn->rsp); |
| 5237 | return hlua_http_add_hdr(L, &htxn->s->txn->rsp); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5238 | } |
| 5239 | |
| 5240 | /* This function set the method. */ |
| 5241 | static int hlua_http_req_set_meth(lua_State *L) |
| 5242 | { |
Willy Tarreau | bcb39cc | 2015-04-06 11:21:44 +0200 | [diff] [blame] | 5243 | struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5244 | size_t name_len; |
| 5245 | const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5246 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5247 | if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5248 | WILL_LJMP(lua_error(L)); |
| 5249 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 5250 | lua_pushboolean(L, http_req_replace_stline(0, name, name_len, htxn->p, htxn->s) != -1); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5251 | return 1; |
| 5252 | } |
| 5253 | |
| 5254 | /* This function set the method. */ |
| 5255 | static int hlua_http_req_set_path(lua_State *L) |
| 5256 | { |
Willy Tarreau | bcb39cc | 2015-04-06 11:21:44 +0200 | [diff] [blame] | 5257 | struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5258 | size_t name_len; |
| 5259 | const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len)); |
Thierry FOURNIER / OZON.IO | b84ae92 | 2016-08-02 23:44:58 +0200 | [diff] [blame] | 5260 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5261 | if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5262 | WILL_LJMP(lua_error(L)); |
| 5263 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 5264 | lua_pushboolean(L, http_req_replace_stline(1, name, name_len, htxn->p, htxn->s) != -1); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5265 | return 1; |
| 5266 | } |
| 5267 | |
| 5268 | /* This function set the query-string. */ |
| 5269 | static int hlua_http_req_set_query(lua_State *L) |
| 5270 | { |
Willy Tarreau | bcb39cc | 2015-04-06 11:21:44 +0200 | [diff] [blame] | 5271 | struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5272 | size_t name_len; |
| 5273 | const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5274 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5275 | if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5276 | WILL_LJMP(lua_error(L)); |
| 5277 | |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5278 | /* Check length. */ |
| 5279 | if (name_len > trash.size - 1) { |
| 5280 | lua_pushboolean(L, 0); |
| 5281 | return 1; |
| 5282 | } |
| 5283 | |
| 5284 | /* Add the mark question as prefix. */ |
| 5285 | chunk_reset(&trash); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 5286 | trash.area[trash.data++] = '?'; |
| 5287 | memcpy(trash.area + trash.data, name, name_len); |
| 5288 | trash.data += name_len; |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5289 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 5290 | lua_pushboolean(L, |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 5291 | http_req_replace_stline(2, trash.area, trash.data, htxn->p, htxn->s) != -1); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5292 | return 1; |
| 5293 | } |
| 5294 | |
| 5295 | /* This function set the uri. */ |
| 5296 | static int hlua_http_req_set_uri(lua_State *L) |
| 5297 | { |
Willy Tarreau | bcb39cc | 2015-04-06 11:21:44 +0200 | [diff] [blame] | 5298 | struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5299 | size_t name_len; |
| 5300 | const char *name = MAY_LJMP(luaL_checklstring(L, 2, &name_len)); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5301 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5302 | if (htxn->dir != SMP_OPT_DIR_REQ || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5303 | WILL_LJMP(lua_error(L)); |
| 5304 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 5305 | lua_pushboolean(L, http_req_replace_stline(3, name, name_len, htxn->p, htxn->s) != -1); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5306 | return 1; |
| 5307 | } |
| 5308 | |
Robin H. Johnson | 52f5db2 | 2017-01-01 13:10:52 -0800 | [diff] [blame] | 5309 | /* This function set the response code & optionally reason. */ |
Thierry FOURNIER | 35d70ef | 2015-08-26 16:21:56 +0200 | [diff] [blame] | 5310 | static int hlua_http_res_set_status(lua_State *L) |
| 5311 | { |
| 5312 | struct hlua_txn *htxn = MAY_LJMP(hlua_checkhttp(L, 1)); |
| 5313 | unsigned int code = MAY_LJMP(luaL_checkinteger(L, 2)); |
Christopher Faulet | 96bff76 | 2019-12-17 13:46:18 +0100 | [diff] [blame] | 5314 | const char *str = MAY_LJMP(luaL_optlstring(L, 3, NULL, NULL)); |
| 5315 | const struct ist reason = ist2(str, (str ? strlen(str) : 0)); |
Thierry FOURNIER | 35d70ef | 2015-08-26 16:21:56 +0200 | [diff] [blame] | 5316 | |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5317 | if (htxn->dir != SMP_OPT_DIR_RES || !IS_HTX_STRM(htxn->s)) |
Christopher Faulet | 84a6d5b | 2019-07-26 16:17:01 +0200 | [diff] [blame] | 5318 | WILL_LJMP(lua_error(L)); |
| 5319 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 5320 | http_res_set_status(code, reason, htxn->s); |
Thierry FOURNIER | 35d70ef | 2015-08-26 16:21:56 +0200 | [diff] [blame] | 5321 | return 0; |
| 5322 | } |
| 5323 | |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5324 | /* |
| 5325 | * |
| 5326 | * |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 5327 | * Class TXN |
| 5328 | * |
| 5329 | * |
| 5330 | */ |
| 5331 | |
| 5332 | /* Returns a struct hlua_session if the stack entry "ud" is |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 5333 | * a class stream, otherwise it throws an error. |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 5334 | */ |
| 5335 | __LJMP static struct hlua_txn *hlua_checktxn(lua_State *L, int ud) |
| 5336 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 5337 | return MAY_LJMP(hlua_checkudata(L, ud, class_txn_ref)); |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 5338 | } |
| 5339 | |
Thierry FOURNIER | 053ba8ad | 2015-06-08 13:05:33 +0200 | [diff] [blame] | 5340 | __LJMP static int hlua_set_var(lua_State *L) |
| 5341 | { |
| 5342 | struct hlua_txn *htxn; |
| 5343 | const char *name; |
| 5344 | size_t len; |
| 5345 | struct sample smp; |
| 5346 | |
Tim Duesterhus | 4e172c9 | 2020-05-19 13:49:42 +0200 | [diff] [blame] | 5347 | if (lua_gettop(L) < 3 || lua_gettop(L) > 4) |
| 5348 | 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] | 5349 | |
| 5350 | /* It is useles to retrieve the stream, but this function |
| 5351 | * runs only in a stream context. |
| 5352 | */ |
| 5353 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5354 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 5355 | |
| 5356 | /* Converts the third argument in a sample. */ |
Amaury Denoyelle | bc0af6a | 2020-10-29 17:21:20 +0100 | [diff] [blame] | 5357 | memset(&smp, 0, sizeof(smp)); |
Thierry FOURNIER | 053ba8ad | 2015-06-08 13:05:33 +0200 | [diff] [blame] | 5358 | hlua_lua2smp(L, 3, &smp); |
| 5359 | |
| 5360 | /* Store the sample in a variable. */ |
Willy Tarreau | 7560dd4 | 2016-03-10 16:28:58 +0100 | [diff] [blame] | 5361 | 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] | 5362 | |
| 5363 | if (lua_gettop(L) == 4 && lua_toboolean(L, 4)) |
| 5364 | lua_pushboolean(L, vars_set_by_name_ifexist(name, len, &smp) != 0); |
| 5365 | else |
| 5366 | lua_pushboolean(L, vars_set_by_name(name, len, &smp) != 0); |
| 5367 | |
Tim Duesterhus | 84ebc13 | 2020-05-19 13:49:41 +0200 | [diff] [blame] | 5368 | return 1; |
Thierry FOURNIER | 053ba8ad | 2015-06-08 13:05:33 +0200 | [diff] [blame] | 5369 | } |
| 5370 | |
Christopher Faulet | 85d79c9 | 2016-11-09 16:54:56 +0100 | [diff] [blame] | 5371 | __LJMP static int hlua_unset_var(lua_State *L) |
| 5372 | { |
| 5373 | struct hlua_txn *htxn; |
| 5374 | const char *name; |
| 5375 | size_t len; |
| 5376 | struct sample smp; |
| 5377 | |
| 5378 | MAY_LJMP(check_args(L, 2, "unset_var")); |
| 5379 | |
| 5380 | /* It is useles to retrieve the stream, but this function |
| 5381 | * runs only in a stream context. |
| 5382 | */ |
| 5383 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5384 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 5385 | |
| 5386 | /* Unset the variable. */ |
| 5387 | 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] | 5388 | lua_pushboolean(L, vars_unset_by_name_ifexist(name, len, &smp) != 0); |
| 5389 | return 1; |
Christopher Faulet | 85d79c9 | 2016-11-09 16:54:56 +0100 | [diff] [blame] | 5390 | } |
| 5391 | |
Thierry FOURNIER | 053ba8ad | 2015-06-08 13:05:33 +0200 | [diff] [blame] | 5392 | __LJMP static int hlua_get_var(lua_State *L) |
| 5393 | { |
| 5394 | struct hlua_txn *htxn; |
| 5395 | const char *name; |
| 5396 | size_t len; |
| 5397 | struct sample smp; |
| 5398 | |
| 5399 | MAY_LJMP(check_args(L, 2, "get_var")); |
| 5400 | |
| 5401 | /* It is useles to retrieve the stream, but this function |
| 5402 | * runs only in a stream context. |
| 5403 | */ |
| 5404 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5405 | name = MAY_LJMP(luaL_checklstring(L, 2, &len)); |
| 5406 | |
Willy Tarreau | 7560dd4 | 2016-03-10 16:28:58 +0100 | [diff] [blame] | 5407 | smp_set_owner(&smp, htxn->p, htxn->s->sess, htxn->s, htxn->dir & SMP_OPT_DIR); |
Willy Tarreau | 6204cd9 | 2016-03-10 16:33:04 +0100 | [diff] [blame] | 5408 | if (!vars_get_by_name(name, len, &smp)) { |
Thierry FOURNIER | 053ba8ad | 2015-06-08 13:05:33 +0200 | [diff] [blame] | 5409 | lua_pushnil(L); |
| 5410 | return 1; |
| 5411 | } |
| 5412 | |
| 5413 | return hlua_smp2lua(L, &smp); |
| 5414 | } |
| 5415 | |
Willy Tarreau | 5955166 | 2015-03-10 14:23:13 +0100 | [diff] [blame] | 5416 | __LJMP static int hlua_set_priv(lua_State *L) |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 5417 | { |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 5418 | struct hlua *hlua; |
| 5419 | |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 5420 | MAY_LJMP(check_args(L, 2, "set_priv")); |
| 5421 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 5422 | /* It is useles to retrieve the stream, but this function |
| 5423 | * runs only in a stream context. |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 5424 | */ |
| 5425 | MAY_LJMP(hlua_checktxn(L, 1)); |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 5426 | |
| 5427 | /* Get hlua struct, or NULL if we execute from main lua state */ |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 5428 | hlua = hlua_gethlua(L); |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 5429 | if (!hlua) |
| 5430 | return 0; |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 5431 | |
| 5432 | /* Remove previous value. */ |
Thierry FOURNIER | e068b60 | 2017-04-26 13:27:05 +0200 | [diff] [blame] | 5433 | luaL_unref(L, LUA_REGISTRYINDEX, hlua->Mref); |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 5434 | |
| 5435 | /* Get and store new value. */ |
| 5436 | lua_pushvalue(L, 2); /* Copy the element 2 at the top of the stack. */ |
| 5437 | hlua->Mref = luaL_ref(L, LUA_REGISTRYINDEX); /* pop the previously pushed value. */ |
| 5438 | |
| 5439 | return 0; |
| 5440 | } |
| 5441 | |
Willy Tarreau | 5955166 | 2015-03-10 14:23:13 +0100 | [diff] [blame] | 5442 | __LJMP static int hlua_get_priv(lua_State *L) |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 5443 | { |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 5444 | struct hlua *hlua; |
| 5445 | |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 5446 | MAY_LJMP(check_args(L, 1, "get_priv")); |
| 5447 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 5448 | /* It is useles to retrieve the stream, but this function |
| 5449 | * runs only in a stream context. |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 5450 | */ |
| 5451 | MAY_LJMP(hlua_checktxn(L, 1)); |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 5452 | |
| 5453 | /* Get hlua struct, or NULL if we execute from main lua state */ |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 5454 | hlua = hlua_gethlua(L); |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 5455 | if (!hlua) { |
| 5456 | lua_pushnil(L); |
| 5457 | return 1; |
| 5458 | } |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 5459 | |
| 5460 | /* Push configuration index in the stack. */ |
| 5461 | lua_rawgeti(L, LUA_REGISTRYINDEX, hlua->Mref); |
| 5462 | |
| 5463 | return 1; |
| 5464 | } |
| 5465 | |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 5466 | /* Create stack entry containing a class TXN. This function |
| 5467 | * return 0 if the stack does not contains free slots, |
| 5468 | * otherwise it returns 1. |
| 5469 | */ |
Thierry FOURNIER | ab00df6 | 2016-07-14 11:42:37 +0200 | [diff] [blame] | 5470 | 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] | 5471 | { |
Willy Tarreau | de49138 | 2015-04-06 11:04:28 +0200 | [diff] [blame] | 5472 | struct hlua_txn *htxn; |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 5473 | |
| 5474 | /* Check stack size. */ |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 5475 | if (!lua_checkstack(L, 3)) |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 5476 | return 0; |
| 5477 | |
| 5478 | /* NOTE: The allocation never fails. The failure |
| 5479 | * throw an error, and the function never returns. |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 5480 | * if the throw is not available, the process is aborted. |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 5481 | */ |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 5482 | /* Create the object: obj[0] = userdata. */ |
| 5483 | lua_newtable(L); |
Willy Tarreau | de49138 | 2015-04-06 11:04:28 +0200 | [diff] [blame] | 5484 | htxn = lua_newuserdata(L, sizeof(*htxn)); |
Thierry FOURNIER | 2297bc2 | 2015-03-11 17:43:33 +0100 | [diff] [blame] | 5485 | lua_rawseti(L, -2, 0); |
| 5486 | |
Willy Tarreau | de49138 | 2015-04-06 11:04:28 +0200 | [diff] [blame] | 5487 | htxn->s = s; |
| 5488 | htxn->p = p; |
Thierry FOURNIER | c4eebc8 | 2015-11-02 10:01:59 +0100 | [diff] [blame] | 5489 | htxn->dir = dir; |
Thierry FOURNIER | ab00df6 | 2016-07-14 11:42:37 +0200 | [diff] [blame] | 5490 | htxn->flags = flags; |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 5491 | |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 5492 | /* Create the "f" field that contains a list of fetches. */ |
| 5493 | lua_pushstring(L, "f"); |
Thierry FOURNIER | ca98866 | 2015-12-20 18:43:03 +0100 | [diff] [blame] | 5494 | if (!hlua_fetches_new(L, htxn, HLUA_F_MAY_USE_HTTP)) |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 5495 | return 0; |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 5496 | lua_rawset(L, -3); |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 5497 | |
| 5498 | /* Create the "sf" field that contains a list of stringsafe fetches. */ |
| 5499 | lua_pushstring(L, "sf"); |
Thierry FOURNIER | ca98866 | 2015-12-20 18:43:03 +0100 | [diff] [blame] | 5500 | 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] | 5501 | return 0; |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 5502 | lua_rawset(L, -3); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 5503 | |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 5504 | /* Create the "c" field that contains a list of converters. */ |
| 5505 | lua_pushstring(L, "c"); |
Willy Tarreau | de49138 | 2015-04-06 11:04:28 +0200 | [diff] [blame] | 5506 | if (!hlua_converters_new(L, htxn, 0)) |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 5507 | return 0; |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 5508 | lua_rawset(L, -3); |
Thierry FOURNIER | 2694a1a | 2015-03-11 20:13:36 +0100 | [diff] [blame] | 5509 | |
| 5510 | /* Create the "sc" field that contains a list of stringsafe converters. */ |
| 5511 | lua_pushstring(L, "sc"); |
Thierry FOURNIER | 7fa0549 | 2015-12-20 18:42:25 +0100 | [diff] [blame] | 5512 | if (!hlua_converters_new(L, htxn, HLUA_F_AS_STRING)) |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 5513 | return 0; |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 5514 | lua_rawset(L, -3); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 5515 | |
Thierry FOURNIER | 397826a | 2015-03-11 19:39:09 +0100 | [diff] [blame] | 5516 | /* Create the "req" field that contains the request channel object. */ |
| 5517 | lua_pushstring(L, "req"); |
Willy Tarreau | 2a71af4 | 2015-03-10 13:51:50 +0100 | [diff] [blame] | 5518 | if (!hlua_channel_new(L, &s->req)) |
Thierry FOURNIER | 397826a | 2015-03-11 19:39:09 +0100 | [diff] [blame] | 5519 | return 0; |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 5520 | lua_rawset(L, -3); |
Thierry FOURNIER | 397826a | 2015-03-11 19:39:09 +0100 | [diff] [blame] | 5521 | |
| 5522 | /* Create the "res" field that contains the response channel object. */ |
| 5523 | lua_pushstring(L, "res"); |
Willy Tarreau | 2a71af4 | 2015-03-10 13:51:50 +0100 | [diff] [blame] | 5524 | if (!hlua_channel_new(L, &s->res)) |
Thierry FOURNIER | 397826a | 2015-03-11 19:39:09 +0100 | [diff] [blame] | 5525 | return 0; |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 5526 | lua_rawset(L, -3); |
Thierry FOURNIER | 397826a | 2015-03-11 19:39:09 +0100 | [diff] [blame] | 5527 | |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5528 | /* Creates the HTTP object is the current proxy allows http. */ |
| 5529 | lua_pushstring(L, "http"); |
Christopher Faulet | 1bb6afa | 2021-03-08 17:57:53 +0100 | [diff] [blame] | 5530 | if (IS_HTX_STRM(s)) { |
Willy Tarreau | de49138 | 2015-04-06 11:04:28 +0200 | [diff] [blame] | 5531 | if (!hlua_http_new(L, htxn)) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5532 | return 0; |
| 5533 | } |
| 5534 | else |
| 5535 | lua_pushnil(L); |
Thierry FOURNIER | 84e73c8 | 2015-09-25 22:13:32 +0200 | [diff] [blame] | 5536 | lua_rawset(L, -3); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 5537 | |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 5538 | /* Pop a class sesison metatable and affect it to the userdata. */ |
| 5539 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_txn_ref); |
| 5540 | lua_setmetatable(L, -2); |
| 5541 | |
| 5542 | return 1; |
| 5543 | } |
| 5544 | |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 5545 | __LJMP static int hlua_txn_deflog(lua_State *L) |
| 5546 | { |
| 5547 | const char *msg; |
| 5548 | struct hlua_txn *htxn; |
| 5549 | |
| 5550 | MAY_LJMP(check_args(L, 2, "deflog")); |
| 5551 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5552 | msg = MAY_LJMP(luaL_checkstring(L, 2)); |
| 5553 | |
| 5554 | hlua_sendlog(htxn->s->be, htxn->s->logs.level, msg); |
| 5555 | return 0; |
| 5556 | } |
| 5557 | |
| 5558 | __LJMP static int hlua_txn_log(lua_State *L) |
| 5559 | { |
| 5560 | int level; |
| 5561 | const char *msg; |
| 5562 | struct hlua_txn *htxn; |
| 5563 | |
| 5564 | MAY_LJMP(check_args(L, 3, "log")); |
| 5565 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5566 | level = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 5567 | msg = MAY_LJMP(luaL_checkstring(L, 3)); |
| 5568 | |
| 5569 | if (level < 0 || level >= NB_LOG_LEVELS) |
| 5570 | WILL_LJMP(luaL_argerror(L, 1, "Invalid loglevel.")); |
| 5571 | |
| 5572 | hlua_sendlog(htxn->s->be, level, msg); |
| 5573 | return 0; |
| 5574 | } |
| 5575 | |
| 5576 | __LJMP static int hlua_txn_log_debug(lua_State *L) |
| 5577 | { |
| 5578 | const char *msg; |
| 5579 | struct hlua_txn *htxn; |
| 5580 | |
| 5581 | MAY_LJMP(check_args(L, 2, "Debug")); |
| 5582 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5583 | msg = MAY_LJMP(luaL_checkstring(L, 2)); |
| 5584 | hlua_sendlog(htxn->s->be, LOG_DEBUG, msg); |
| 5585 | return 0; |
| 5586 | } |
| 5587 | |
| 5588 | __LJMP static int hlua_txn_log_info(lua_State *L) |
| 5589 | { |
| 5590 | const char *msg; |
| 5591 | struct hlua_txn *htxn; |
| 5592 | |
| 5593 | MAY_LJMP(check_args(L, 2, "Info")); |
| 5594 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5595 | msg = MAY_LJMP(luaL_checkstring(L, 2)); |
| 5596 | hlua_sendlog(htxn->s->be, LOG_INFO, msg); |
| 5597 | return 0; |
| 5598 | } |
| 5599 | |
| 5600 | __LJMP static int hlua_txn_log_warning(lua_State *L) |
| 5601 | { |
| 5602 | const char *msg; |
| 5603 | struct hlua_txn *htxn; |
| 5604 | |
| 5605 | MAY_LJMP(check_args(L, 2, "Warning")); |
| 5606 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5607 | msg = MAY_LJMP(luaL_checkstring(L, 2)); |
| 5608 | hlua_sendlog(htxn->s->be, LOG_WARNING, msg); |
| 5609 | return 0; |
| 5610 | } |
| 5611 | |
| 5612 | __LJMP static int hlua_txn_log_alert(lua_State *L) |
| 5613 | { |
| 5614 | const char *msg; |
| 5615 | struct hlua_txn *htxn; |
| 5616 | |
| 5617 | MAY_LJMP(check_args(L, 2, "Alert")); |
| 5618 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5619 | msg = MAY_LJMP(luaL_checkstring(L, 2)); |
| 5620 | hlua_sendlog(htxn->s->be, LOG_ALERT, msg); |
| 5621 | return 0; |
| 5622 | } |
| 5623 | |
Thierry FOURNIER | 2cce353 | 2015-03-16 12:04:16 +0100 | [diff] [blame] | 5624 | __LJMP static int hlua_txn_set_loglevel(lua_State *L) |
| 5625 | { |
| 5626 | struct hlua_txn *htxn; |
| 5627 | int ll; |
| 5628 | |
| 5629 | MAY_LJMP(check_args(L, 2, "set_loglevel")); |
| 5630 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5631 | ll = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 5632 | |
| 5633 | if (ll < 0 || ll > 7) |
| 5634 | WILL_LJMP(luaL_argerror(L, 2, "Bad log level. It must be between 0 and 7")); |
| 5635 | |
| 5636 | htxn->s->logs.level = ll; |
| 5637 | return 0; |
| 5638 | } |
| 5639 | |
| 5640 | __LJMP static int hlua_txn_set_tos(lua_State *L) |
| 5641 | { |
| 5642 | struct hlua_txn *htxn; |
Thierry FOURNIER | 2cce353 | 2015-03-16 12:04:16 +0100 | [diff] [blame] | 5643 | int tos; |
| 5644 | |
| 5645 | MAY_LJMP(check_args(L, 2, "set_tos")); |
| 5646 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5647 | tos = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 5648 | |
Willy Tarreau | 1a18b54 | 2018-12-11 16:37:42 +0100 | [diff] [blame] | 5649 | conn_set_tos(objt_conn(htxn->s->sess->origin), tos); |
Thierry FOURNIER | 2cce353 | 2015-03-16 12:04:16 +0100 | [diff] [blame] | 5650 | return 0; |
| 5651 | } |
| 5652 | |
| 5653 | __LJMP static int hlua_txn_set_mark(lua_State *L) |
| 5654 | { |
Thierry FOURNIER | 2cce353 | 2015-03-16 12:04:16 +0100 | [diff] [blame] | 5655 | struct hlua_txn *htxn; |
Thierry FOURNIER | 2cce353 | 2015-03-16 12:04:16 +0100 | [diff] [blame] | 5656 | int mark; |
| 5657 | |
| 5658 | MAY_LJMP(check_args(L, 2, "set_mark")); |
| 5659 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5660 | mark = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 5661 | |
Lukas Tribus | 579e3e3 | 2019-08-11 18:03:45 +0200 | [diff] [blame] | 5662 | conn_set_mark(objt_conn(htxn->s->sess->origin), mark); |
Thierry FOURNIER | 2cce353 | 2015-03-16 12:04:16 +0100 | [diff] [blame] | 5663 | return 0; |
| 5664 | } |
| 5665 | |
Patrick Hemmer | 268a707 | 2018-05-11 12:52:31 -0400 | [diff] [blame] | 5666 | __LJMP static int hlua_txn_set_priority_class(lua_State *L) |
| 5667 | { |
| 5668 | struct hlua_txn *htxn; |
| 5669 | |
| 5670 | MAY_LJMP(check_args(L, 2, "set_priority_class")); |
| 5671 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5672 | htxn->s->priority_class = queue_limit_class(MAY_LJMP(luaL_checkinteger(L, 2))); |
| 5673 | return 0; |
| 5674 | } |
| 5675 | |
| 5676 | __LJMP static int hlua_txn_set_priority_offset(lua_State *L) |
| 5677 | { |
| 5678 | struct hlua_txn *htxn; |
| 5679 | |
| 5680 | MAY_LJMP(check_args(L, 2, "set_priority_offset")); |
| 5681 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
| 5682 | htxn->s->priority_offset = queue_limit_offset(MAY_LJMP(luaL_checkinteger(L, 2))); |
| 5683 | return 0; |
| 5684 | } |
| 5685 | |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 5686 | /* 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] | 5687 | * 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] | 5688 | * message and terminate the transaction. It returns 1 on success and 0 on |
| 5689 | * error. The Reply must be on top of the stack. |
| 5690 | */ |
| 5691 | __LJMP static int hlua_txn_forward_reply(lua_State *L, struct stream *s) |
| 5692 | { |
| 5693 | struct htx *htx; |
| 5694 | struct htx_sl *sl; |
| 5695 | struct h1m h1m; |
| 5696 | const char *status, *reason, *body; |
| 5697 | size_t status_len, reason_len, body_len; |
| 5698 | int ret, code, flags; |
| 5699 | |
| 5700 | code = 200; |
| 5701 | status = "200"; |
| 5702 | status_len = 3; |
| 5703 | ret = lua_getfield(L, -1, "status"); |
| 5704 | if (ret == LUA_TNUMBER) { |
| 5705 | code = lua_tointeger(L, -1); |
| 5706 | status = lua_tolstring(L, -1, &status_len); |
| 5707 | } |
| 5708 | lua_pop(L, 1); |
| 5709 | |
| 5710 | reason = http_get_reason(code); |
| 5711 | reason_len = strlen(reason); |
| 5712 | ret = lua_getfield(L, -1, "reason"); |
| 5713 | if (ret == LUA_TSTRING) |
| 5714 | reason = lua_tolstring(L, -1, &reason_len); |
| 5715 | lua_pop(L, 1); |
| 5716 | |
| 5717 | body = NULL; |
| 5718 | body_len = 0; |
| 5719 | ret = lua_getfield(L, -1, "body"); |
| 5720 | if (ret == LUA_TSTRING) |
| 5721 | body = lua_tolstring(L, -1, &body_len); |
| 5722 | lua_pop(L, 1); |
| 5723 | |
| 5724 | /* Prepare the response before inserting the headers */ |
| 5725 | h1m_init_res(&h1m); |
| 5726 | htx = htx_from_buf(&s->res.buf); |
| 5727 | channel_htx_truncate(&s->res, htx); |
| 5728 | if (s->txn->req.flags & HTTP_MSGF_VER_11) { |
| 5729 | flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11); |
| 5730 | sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"), |
| 5731 | ist2(status, status_len), ist2(reason, reason_len)); |
| 5732 | } |
| 5733 | else { |
| 5734 | flags = HTX_SL_F_IS_RESP; |
| 5735 | sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.0"), |
| 5736 | ist2(status, status_len), ist2(reason, reason_len)); |
| 5737 | } |
| 5738 | if (!sl) |
| 5739 | goto fail; |
| 5740 | sl->info.res.status = code; |
| 5741 | |
| 5742 | /* Push in the stack the "headers" entry. */ |
| 5743 | ret = lua_getfield(L, -1, "headers"); |
| 5744 | if (ret != LUA_TTABLE) |
| 5745 | goto skip_headers; |
| 5746 | |
| 5747 | lua_pushnil(L); |
| 5748 | while (lua_next(L, -2) != 0) { |
| 5749 | struct ist name, value; |
| 5750 | const char *n, *v; |
| 5751 | size_t nlen, vlen; |
| 5752 | |
| 5753 | if (!lua_isstring(L, -2) || !lua_istable(L, -1)) { |
| 5754 | /* Skip element if the key is not a string or if the value is not a table */ |
| 5755 | goto next_hdr; |
| 5756 | } |
| 5757 | |
| 5758 | n = lua_tolstring(L, -2, &nlen); |
| 5759 | name = ist2(n, nlen); |
| 5760 | if (isteqi(name, ist("content-length"))) { |
| 5761 | /* Always skip content-length header. It will be added |
| 5762 | * later with the correct len |
| 5763 | */ |
| 5764 | goto next_hdr; |
| 5765 | } |
| 5766 | |
| 5767 | /* Loop on header's values */ |
| 5768 | lua_pushnil(L); |
| 5769 | while (lua_next(L, -2)) { |
| 5770 | if (!lua_isstring(L, -1)) { |
| 5771 | /* Skip the value if it is not a string */ |
| 5772 | goto next_value; |
| 5773 | } |
| 5774 | |
| 5775 | v = lua_tolstring(L, -1, &vlen); |
| 5776 | value = ist2(v, vlen); |
| 5777 | |
| 5778 | if (isteqi(name, ist("transfer-encoding"))) |
| 5779 | h1_parse_xfer_enc_header(&h1m, value); |
| 5780 | if (!htx_add_header(htx, ist2(n, nlen), ist2(v, vlen))) |
| 5781 | goto fail; |
| 5782 | |
| 5783 | next_value: |
| 5784 | lua_pop(L, 1); |
| 5785 | } |
| 5786 | |
| 5787 | next_hdr: |
| 5788 | lua_pop(L, 1); |
| 5789 | } |
| 5790 | skip_headers: |
| 5791 | lua_pop(L, 1); |
| 5792 | |
| 5793 | /* Update h1m flags: CLEN is set if CHNK is not present */ |
| 5794 | if (!(h1m.flags & H1_MF_CHNK)) { |
| 5795 | const char *clen = ultoa(body_len); |
| 5796 | |
| 5797 | h1m.flags |= H1_MF_CLEN; |
| 5798 | if (!htx_add_header(htx, ist("content-length"), ist(clen))) |
| 5799 | goto fail; |
| 5800 | } |
| 5801 | if (h1m.flags & (H1_MF_CLEN|H1_MF_CHNK)) |
| 5802 | h1m.flags |= H1_MF_XFER_LEN; |
| 5803 | |
| 5804 | /* Update HTX start-line flags */ |
| 5805 | if (h1m.flags & H1_MF_XFER_ENC) |
| 5806 | flags |= HTX_SL_F_XFER_ENC; |
| 5807 | if (h1m.flags & H1_MF_XFER_LEN) { |
| 5808 | flags |= HTX_SL_F_XFER_LEN; |
| 5809 | if (h1m.flags & H1_MF_CHNK) |
| 5810 | flags |= HTX_SL_F_CHNK; |
| 5811 | else if (h1m.flags & H1_MF_CLEN) |
| 5812 | flags |= HTX_SL_F_CLEN; |
| 5813 | if (h1m.body_len == 0) |
| 5814 | flags |= HTX_SL_F_BODYLESS; |
| 5815 | } |
| 5816 | sl->flags |= flags; |
| 5817 | |
| 5818 | |
| 5819 | if (!htx_add_endof(htx, HTX_BLK_EOH) || |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 5820 | (body_len && !htx_add_data_atonce(htx, ist2(body, body_len)))) |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 5821 | goto fail; |
| 5822 | |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 5823 | htx->flags |= HTX_FL_EOM; |
| 5824 | |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 5825 | /* Now, forward the response and terminate the transaction */ |
| 5826 | s->txn->status = code; |
| 5827 | htx_to_buf(htx, &s->res.buf); |
| 5828 | if (!http_forward_proxy_resp(s, 1)) |
| 5829 | goto fail; |
| 5830 | |
| 5831 | return 1; |
| 5832 | |
| 5833 | fail: |
| 5834 | channel_htx_truncate(&s->res, htx); |
| 5835 | return 0; |
| 5836 | } |
| 5837 | |
| 5838 | /* Terminate a transaction if called from a lua action. For TCP streams, |
| 5839 | * processing is just aborted. Nothing is returned to the client and all |
| 5840 | * arguments are ignored. For HTTP streams, if a reply is passed as argument, it |
| 5841 | * is forwarded to the client before terminating the transaction. On success, |
| 5842 | * the function exits with ACT_RET_DONE code. If an error occurred, it exits |
| 5843 | * with ACT_RET_ERR code. If this function is not called from a lua action, it |
| 5844 | * just exits without any processing. |
Thierry FOURNIER | 893bfa3 | 2015-02-17 18:42:34 +0100 | [diff] [blame] | 5845 | */ |
Thierry FOURNIER | 4bb375c | 2015-08-26 08:42:21 +0200 | [diff] [blame] | 5846 | __LJMP static int hlua_txn_done(lua_State *L) |
Thierry FOURNIER | 893bfa3 | 2015-02-17 18:42:34 +0100 | [diff] [blame] | 5847 | { |
Willy Tarreau | b2ccb56 | 2015-04-06 11:11:15 +0200 | [diff] [blame] | 5848 | struct hlua_txn *htxn; |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 5849 | struct stream *s; |
| 5850 | int finst; |
Thierry FOURNIER | 893bfa3 | 2015-02-17 18:42:34 +0100 | [diff] [blame] | 5851 | |
Willy Tarreau | b2ccb56 | 2015-04-06 11:11:15 +0200 | [diff] [blame] | 5852 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
Thierry FOURNIER | 893bfa3 | 2015-02-17 18:42:34 +0100 | [diff] [blame] | 5853 | |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 5854 | /* If the flags NOTERM is set, we cannot terminate the session, so we |
| 5855 | * just end the execution of the current lua code. */ |
| 5856 | if (htxn->flags & HLUA_TXN_NOTERM) |
Thierry FOURNIER | ab00df6 | 2016-07-14 11:42:37 +0200 | [diff] [blame] | 5857 | WILL_LJMP(hlua_done(L)); |
Thierry FOURNIER | ab00df6 | 2016-07-14 11:42:37 +0200 | [diff] [blame] | 5858 | |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 5859 | s = htxn->s; |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5860 | if (!IS_HTX_STRM(htxn->s)) { |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 5861 | struct channel *req = &s->req; |
| 5862 | struct channel *res = &s->res; |
Willy Tarreau | 8138967 | 2015-03-10 12:03:52 +0100 | [diff] [blame] | 5863 | |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 5864 | channel_auto_read(req); |
| 5865 | channel_abort(req); |
| 5866 | channel_auto_close(req); |
| 5867 | channel_erase(req); |
| 5868 | |
| 5869 | res->wex = tick_add_ifset(now_ms, res->wto); |
| 5870 | channel_auto_read(res); |
| 5871 | channel_auto_close(res); |
| 5872 | channel_shutr_now(res); |
| 5873 | |
| 5874 | finst = ((htxn->dir == SMP_OPT_DIR_REQ) ? SF_FINST_R : SF_FINST_D); |
| 5875 | goto done; |
Christopher Faulet | fe6a71b | 2019-07-26 16:40:24 +0200 | [diff] [blame] | 5876 | } |
Thierry FOURNIER | 10ec214 | 2015-08-24 17:23:45 +0200 | [diff] [blame] | 5877 | |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 5878 | if (lua_gettop(L) == 1 || !lua_istable(L, 2)) { |
| 5879 | /* No reply or invalid reply */ |
| 5880 | s->txn->status = 0; |
| 5881 | http_reply_and_close(s, 0, NULL); |
| 5882 | } |
| 5883 | else { |
| 5884 | /* Remove extra args to have the reply on top of the stack */ |
| 5885 | if (lua_gettop(L) > 2) |
| 5886 | lua_pop(L, lua_gettop(L) - 2); |
Thierry FOURNIER | 893bfa3 | 2015-02-17 18:42:34 +0100 | [diff] [blame] | 5887 | |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 5888 | if (!hlua_txn_forward_reply(L, s)) { |
| 5889 | if (!(s->flags & SF_ERR_MASK)) |
| 5890 | s->flags |= SF_ERR_PRXCOND; |
| 5891 | lua_pushinteger(L, ACT_RET_ERR); |
| 5892 | WILL_LJMP(hlua_done(L)); |
| 5893 | return 0; /* Never reached */ |
| 5894 | } |
Christopher Faulet | 4d0e263 | 2019-07-16 10:52:40 +0200 | [diff] [blame] | 5895 | } |
Thierry FOURNIER | 4bb375c | 2015-08-26 08:42:21 +0200 | [diff] [blame] | 5896 | |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 5897 | finst = ((htxn->dir == SMP_OPT_DIR_REQ) ? SF_FINST_R : SF_FINST_H); |
| 5898 | if (htxn->dir == SMP_OPT_DIR_REQ) { |
| 5899 | /* let's log the request time */ |
| 5900 | s->logs.tv_request = now; |
| 5901 | 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] | 5902 | _HA_ATOMIC_INC(&s->sess->fe->fe_counters.intercepted_req); |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 5903 | } |
Christopher Faulet | fe6a71b | 2019-07-26 16:40:24 +0200 | [diff] [blame] | 5904 | |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 5905 | done: |
| 5906 | if (!(s->flags & SF_ERR_MASK)) |
| 5907 | s->flags |= SF_ERR_LOCAL; |
| 5908 | if (!(s->flags & SF_FINST_MASK)) |
| 5909 | s->flags |= finst; |
Christopher Faulet | fe6a71b | 2019-07-26 16:40:24 +0200 | [diff] [blame] | 5910 | |
Christopher Faulet | 4ad7310 | 2020-03-05 11:07:31 +0100 | [diff] [blame] | 5911 | lua_pushinteger(L, ACT_RET_ABRT); |
Thierry FOURNIER | 4bb375c | 2015-08-26 08:42:21 +0200 | [diff] [blame] | 5912 | WILL_LJMP(hlua_done(L)); |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 5913 | return 0; |
| 5914 | } |
| 5915 | |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 5916 | /* |
| 5917 | * |
| 5918 | * |
| 5919 | * Class REPLY |
| 5920 | * |
| 5921 | * |
| 5922 | */ |
| 5923 | |
| 5924 | /* Pushes the TXN reply onto the top of the stack. If the stask does not have a |
| 5925 | * free slots, the function fails and returns 0; |
| 5926 | */ |
| 5927 | static int hlua_txn_reply_new(lua_State *L) |
| 5928 | { |
| 5929 | struct hlua_txn *htxn; |
| 5930 | const char *reason, *body = NULL; |
| 5931 | int ret, status; |
| 5932 | |
| 5933 | htxn = MAY_LJMP(hlua_checktxn(L, 1)); |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 5934 | if (!IS_HTX_STRM(htxn->s)) { |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 5935 | hlua_pusherror(L, "txn object is not an HTTP transaction."); |
| 5936 | WILL_LJMP(lua_error(L)); |
| 5937 | } |
| 5938 | |
| 5939 | /* Default value */ |
| 5940 | status = 200; |
| 5941 | reason = http_get_reason(status); |
| 5942 | |
| 5943 | if (lua_istable(L, 2)) { |
| 5944 | /* load status and reason from the table argument at index 2 */ |
| 5945 | ret = lua_getfield(L, 2, "status"); |
| 5946 | if (ret == LUA_TNIL) |
| 5947 | goto reason; |
| 5948 | else if (ret != LUA_TNUMBER) { |
| 5949 | /* invalid status: ignore the reason */ |
| 5950 | goto body; |
| 5951 | } |
| 5952 | status = lua_tointeger(L, -1); |
| 5953 | |
| 5954 | reason: |
| 5955 | lua_pop(L, 1); /* restore the stack: remove status */ |
| 5956 | ret = lua_getfield(L, 2, "reason"); |
| 5957 | if (ret == LUA_TSTRING) |
| 5958 | reason = lua_tostring(L, -1); |
| 5959 | |
| 5960 | body: |
| 5961 | lua_pop(L, 1); /* restore the stack: remove invalid status or reason */ |
| 5962 | ret = lua_getfield(L, 2, "body"); |
| 5963 | if (ret == LUA_TSTRING) |
| 5964 | body = lua_tostring(L, -1); |
| 5965 | lua_pop(L, 1); /* restore the stack: remove body */ |
| 5966 | } |
| 5967 | |
| 5968 | /* Create the Reply table */ |
| 5969 | lua_newtable(L); |
| 5970 | |
| 5971 | /* Add status element */ |
| 5972 | lua_pushstring(L, "status"); |
| 5973 | lua_pushinteger(L, status); |
| 5974 | lua_settable(L, -3); |
| 5975 | |
| 5976 | /* Add reason element */ |
| 5977 | reason = http_get_reason(status); |
| 5978 | lua_pushstring(L, "reason"); |
| 5979 | lua_pushstring(L, reason); |
| 5980 | lua_settable(L, -3); |
| 5981 | |
| 5982 | /* Add body element, nil if undefined */ |
| 5983 | lua_pushstring(L, "body"); |
| 5984 | if (body) |
| 5985 | lua_pushstring(L, body); |
| 5986 | else |
| 5987 | lua_pushnil(L); |
| 5988 | lua_settable(L, -3); |
| 5989 | |
| 5990 | /* Add headers element */ |
| 5991 | lua_pushstring(L, "headers"); |
| 5992 | lua_newtable(L); |
| 5993 | |
| 5994 | /* stack: [ txn, <Arg:table>, <Reply:table>, "headers", <headers:table> ] */ |
| 5995 | if (lua_istable(L, 2)) { |
| 5996 | /* load headers from the table argument at index 2. If it is a table, copy it. */ |
| 5997 | ret = lua_getfield(L, 2, "headers"); |
| 5998 | if (ret == LUA_TTABLE) { |
| 5999 | /* stack: [ ... <headers:table>, <table> ] */ |
| 6000 | lua_pushnil(L); |
| 6001 | while (lua_next(L, -2) != 0) { |
| 6002 | /* stack: [ ... <headers:table>, <table>, k, v] */ |
| 6003 | if (!lua_isstring(L, -1) && !lua_istable(L, -1)) { |
| 6004 | /* invalid value type, skip it */ |
| 6005 | lua_pop(L, 1); |
| 6006 | continue; |
| 6007 | } |
| 6008 | |
| 6009 | |
| 6010 | /* Duplicate the key and swap it with the value. */ |
| 6011 | lua_pushvalue(L, -2); |
| 6012 | lua_insert(L, -2); |
| 6013 | /* stack: [ ... <headers:table>, <table>, k, k, v ] */ |
| 6014 | |
| 6015 | lua_newtable(L); |
| 6016 | lua_insert(L, -2); |
| 6017 | /* stack: [ ... <headers:table>, <table>, k, k, <inner:table>, v ] */ |
| 6018 | |
| 6019 | if (lua_isstring(L, -1)) { |
| 6020 | /* push the value in the inner table */ |
| 6021 | lua_rawseti(L, -2, 1); |
| 6022 | } |
| 6023 | else { /* table */ |
| 6024 | lua_pushnil(L); |
| 6025 | while (lua_next(L, -2) != 0) { |
| 6026 | /* stack: [ ... <headers:table>, <table>, k, k, <inner:table>, <v:table>, k2, v2 ] */ |
| 6027 | if (!lua_isstring(L, -1)) { |
| 6028 | /* invalid value type, skip it*/ |
| 6029 | lua_pop(L, 1); |
| 6030 | continue; |
| 6031 | } |
| 6032 | /* push the value in the inner table */ |
| 6033 | lua_rawseti(L, -4, lua_rawlen(L, -4) + 1); |
| 6034 | /* stack: [ ... <headers:table>, <table>, k, k, <inner:table>, <v:table>, k2 ] */ |
| 6035 | } |
| 6036 | lua_pop(L, 1); |
| 6037 | /* stack: [ ... <headers:table>, <table>, k, k, <inner:table> ] */ |
| 6038 | } |
| 6039 | |
| 6040 | /* push (k,v) on the stack in the headers table: |
| 6041 | * stack: [ ... <headers:table>, <table>, k, k, v ] |
| 6042 | */ |
| 6043 | lua_settable(L, -5); |
| 6044 | /* stack: [ ... <headers:table>, <table>, k ] */ |
| 6045 | } |
| 6046 | } |
| 6047 | lua_pop(L, 1); |
| 6048 | } |
| 6049 | /* stack: [ txn, <Arg:table>, <Reply:table>, "headers", <headers:table> ] */ |
| 6050 | lua_settable(L, -3); |
| 6051 | /* stack: [ txn, <Arg:table>, <Reply:table> ] */ |
| 6052 | |
| 6053 | /* Pop a class sesison metatable and affect it to the userdata. */ |
| 6054 | lua_rawgeti(L, LUA_REGISTRYINDEX, class_txn_reply_ref); |
| 6055 | lua_setmetatable(L, -2); |
| 6056 | return 1; |
| 6057 | } |
| 6058 | |
| 6059 | /* Set the reply status code, and optionally the reason. If no reason is |
| 6060 | * provided, the default one corresponding to the status code is used. |
| 6061 | */ |
| 6062 | __LJMP static int hlua_txn_reply_set_status(lua_State *L) |
| 6063 | { |
| 6064 | int status = MAY_LJMP(luaL_checkinteger(L, 2)); |
| 6065 | const char *reason = MAY_LJMP(luaL_optlstring(L, 3, NULL, NULL)); |
| 6066 | |
| 6067 | /* First argument (self) must be a table */ |
| 6068 | luaL_checktype(L, 1, LUA_TTABLE); |
| 6069 | |
| 6070 | if (status < 100 || status > 599) { |
| 6071 | lua_pushboolean(L, 0); |
| 6072 | return 1; |
| 6073 | } |
| 6074 | if (!reason) |
| 6075 | reason = http_get_reason(status); |
| 6076 | |
| 6077 | lua_pushinteger(L, status); |
| 6078 | lua_setfield(L, 1, "status"); |
| 6079 | |
| 6080 | lua_pushstring(L, reason); |
| 6081 | lua_setfield(L, 1, "reason"); |
| 6082 | |
| 6083 | lua_pushboolean(L, 1); |
| 6084 | return 1; |
| 6085 | } |
| 6086 | |
| 6087 | /* Add a header into the reply object. Each header name is associated to an |
| 6088 | * array of values in the "headers" table. If the header name is not found, a |
| 6089 | * new entry is created. |
| 6090 | */ |
| 6091 | __LJMP static int hlua_txn_reply_add_header(lua_State *L) |
| 6092 | { |
| 6093 | const char *name = MAY_LJMP(luaL_checkstring(L, 2)); |
| 6094 | const char *value = MAY_LJMP(luaL_checkstring(L, 3)); |
| 6095 | int ret; |
| 6096 | |
| 6097 | /* First argument (self) must be a table */ |
| 6098 | luaL_checktype(L, 1, LUA_TTABLE); |
| 6099 | |
| 6100 | /* Push in the stack the "headers" entry. */ |
| 6101 | ret = lua_getfield(L, 1, "headers"); |
| 6102 | if (ret != LUA_TTABLE) { |
| 6103 | hlua_pusherror(L, "Reply['headers'] is expected to a an array. %s found", lua_typename(L, ret)); |
| 6104 | WILL_LJMP(lua_error(L)); |
| 6105 | } |
| 6106 | |
| 6107 | /* check if the header is already registered. If not, register it. */ |
| 6108 | ret = lua_getfield(L, -1, name); |
| 6109 | if (ret == LUA_TNIL) { |
| 6110 | /* Entry not found. */ |
| 6111 | lua_pop(L, 1); /* remove the nil. The "headers" table is the top of the stack. */ |
| 6112 | |
| 6113 | /* Insert the new header name in the array in the top of the stack. |
| 6114 | * It left the new array in the top of the stack. |
| 6115 | */ |
| 6116 | lua_newtable(L); |
| 6117 | lua_pushstring(L, name); |
| 6118 | lua_pushvalue(L, -2); |
| 6119 | lua_settable(L, -4); |
| 6120 | } |
| 6121 | else if (ret != LUA_TTABLE) { |
| 6122 | hlua_pusherror(L, "Reply['headers']['%s'] is expected to be an array. %s found", name, lua_typename(L, ret)); |
| 6123 | WILL_LJMP(lua_error(L)); |
| 6124 | } |
| 6125 | |
Thayne McCombs | 8f0cc5c | 2021-01-07 21:35:52 -0700 | [diff] [blame] | 6126 | /* Now the top of thestack is an array of values. We push |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 6127 | * the header value as new entry. |
| 6128 | */ |
| 6129 | lua_pushstring(L, value); |
| 6130 | ret = lua_rawlen(L, -2); |
| 6131 | lua_rawseti(L, -2, ret + 1); |
| 6132 | |
| 6133 | lua_pushboolean(L, 1); |
| 6134 | return 1; |
| 6135 | } |
| 6136 | |
| 6137 | /* Remove all occurrences of a given header name. */ |
| 6138 | __LJMP static int hlua_txn_reply_del_header(lua_State *L) |
| 6139 | { |
| 6140 | const char *name = MAY_LJMP(luaL_checkstring(L, 2)); |
| 6141 | int ret; |
| 6142 | |
| 6143 | /* First argument (self) must be a table */ |
| 6144 | luaL_checktype(L, 1, LUA_TTABLE); |
| 6145 | |
| 6146 | /* Push in the stack the "headers" entry. */ |
| 6147 | ret = lua_getfield(L, 1, "headers"); |
| 6148 | if (ret != LUA_TTABLE) { |
| 6149 | hlua_pusherror(L, "Reply['headers'] is expected to be an array. %s found", lua_typename(L, ret)); |
| 6150 | WILL_LJMP(lua_error(L)); |
| 6151 | } |
| 6152 | |
| 6153 | lua_pushstring(L, name); |
| 6154 | lua_pushnil(L); |
| 6155 | lua_settable(L, -3); |
| 6156 | |
| 6157 | lua_pushboolean(L, 1); |
| 6158 | return 1; |
| 6159 | } |
| 6160 | |
| 6161 | /* Set the reply's body. Overwrite any existing entry. */ |
| 6162 | __LJMP static int hlua_txn_reply_set_body(lua_State *L) |
| 6163 | { |
| 6164 | const char *payload = MAY_LJMP(luaL_checkstring(L, 2)); |
| 6165 | |
| 6166 | /* First argument (self) must be a table */ |
| 6167 | luaL_checktype(L, 1, LUA_TTABLE); |
| 6168 | |
| 6169 | lua_pushstring(L, payload); |
| 6170 | lua_setfield(L, 1, "body"); |
| 6171 | |
| 6172 | lua_pushboolean(L, 1); |
| 6173 | return 1; |
| 6174 | } |
| 6175 | |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 6176 | __LJMP static int hlua_log(lua_State *L) |
| 6177 | { |
| 6178 | int level; |
| 6179 | const char *msg; |
| 6180 | |
| 6181 | MAY_LJMP(check_args(L, 2, "log")); |
| 6182 | level = MAY_LJMP(luaL_checkinteger(L, 1)); |
| 6183 | msg = MAY_LJMP(luaL_checkstring(L, 2)); |
| 6184 | |
| 6185 | if (level < 0 || level >= NB_LOG_LEVELS) |
| 6186 | WILL_LJMP(luaL_argerror(L, 1, "Invalid loglevel.")); |
| 6187 | |
| 6188 | hlua_sendlog(NULL, level, msg); |
| 6189 | return 0; |
| 6190 | } |
| 6191 | |
| 6192 | __LJMP static int hlua_log_debug(lua_State *L) |
| 6193 | { |
| 6194 | const char *msg; |
| 6195 | |
| 6196 | MAY_LJMP(check_args(L, 1, "debug")); |
| 6197 | msg = MAY_LJMP(luaL_checkstring(L, 1)); |
| 6198 | hlua_sendlog(NULL, LOG_DEBUG, msg); |
| 6199 | return 0; |
| 6200 | } |
| 6201 | |
| 6202 | __LJMP static int hlua_log_info(lua_State *L) |
| 6203 | { |
| 6204 | const char *msg; |
| 6205 | |
| 6206 | MAY_LJMP(check_args(L, 1, "info")); |
| 6207 | msg = MAY_LJMP(luaL_checkstring(L, 1)); |
| 6208 | hlua_sendlog(NULL, LOG_INFO, msg); |
| 6209 | return 0; |
| 6210 | } |
| 6211 | |
| 6212 | __LJMP static int hlua_log_warning(lua_State *L) |
| 6213 | { |
| 6214 | const char *msg; |
| 6215 | |
| 6216 | MAY_LJMP(check_args(L, 1, "warning")); |
| 6217 | msg = MAY_LJMP(luaL_checkstring(L, 1)); |
| 6218 | hlua_sendlog(NULL, LOG_WARNING, msg); |
| 6219 | return 0; |
| 6220 | } |
| 6221 | |
| 6222 | __LJMP static int hlua_log_alert(lua_State *L) |
| 6223 | { |
| 6224 | const char *msg; |
| 6225 | |
| 6226 | MAY_LJMP(check_args(L, 1, "alert")); |
| 6227 | msg = MAY_LJMP(luaL_checkstring(L, 1)); |
| 6228 | hlua_sendlog(NULL, LOG_ALERT, msg); |
Thierry FOURNIER | 893bfa3 | 2015-02-17 18:42:34 +0100 | [diff] [blame] | 6229 | return 0; |
| 6230 | } |
| 6231 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 6232 | __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] | 6233 | { |
| 6234 | int wakeup_ms = lua_tointeger(L, -1); |
| 6235 | if (now_ms < wakeup_ms) |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 6236 | 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] | 6237 | return 0; |
| 6238 | } |
| 6239 | |
| 6240 | __LJMP static int hlua_sleep(lua_State *L) |
| 6241 | { |
| 6242 | unsigned int delay; |
Thierry FOURNIER | d44731f | 2015-03-04 15:51:09 +0100 | [diff] [blame] | 6243 | unsigned int wakeup_ms; |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 6244 | |
Thierry FOURNIER | d44731f | 2015-03-04 15:51:09 +0100 | [diff] [blame] | 6245 | MAY_LJMP(check_args(L, 1, "sleep")); |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 6246 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 6247 | delay = MAY_LJMP(luaL_checkinteger(L, 1)) * 1000; |
Thierry FOURNIER | d44731f | 2015-03-04 15:51:09 +0100 | [diff] [blame] | 6248 | wakeup_ms = tick_add(now_ms, delay); |
| 6249 | lua_pushinteger(L, wakeup_ms); |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 6250 | |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 6251 | 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] | 6252 | return 0; |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 6253 | } |
| 6254 | |
Thierry FOURNIER | d44731f | 2015-03-04 15:51:09 +0100 | [diff] [blame] | 6255 | __LJMP static int hlua_msleep(lua_State *L) |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 6256 | { |
| 6257 | unsigned int delay; |
Thierry FOURNIER | d44731f | 2015-03-04 15:51:09 +0100 | [diff] [blame] | 6258 | unsigned int wakeup_ms; |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 6259 | |
Thierry FOURNIER | d44731f | 2015-03-04 15:51:09 +0100 | [diff] [blame] | 6260 | MAY_LJMP(check_args(L, 1, "msleep")); |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 6261 | |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 6262 | delay = MAY_LJMP(luaL_checkinteger(L, 1)); |
Thierry FOURNIER | d44731f | 2015-03-04 15:51:09 +0100 | [diff] [blame] | 6263 | wakeup_ms = tick_add(now_ms, delay); |
| 6264 | lua_pushinteger(L, wakeup_ms); |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 6265 | |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 6266 | 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] | 6267 | return 0; |
Thierry FOURNIER | 5b8608f | 2015-02-16 19:43:25 +0100 | [diff] [blame] | 6268 | } |
| 6269 | |
Thierry FOURNIER | 13416fe | 2015-02-17 15:01:59 +0100 | [diff] [blame] | 6270 | /* This functionis an LUA binding. it permits to give back |
| 6271 | * the hand at the HAProxy scheduler. It is used when the |
| 6272 | * LUA processing consumes a lot of time. |
| 6273 | */ |
Thierry FOURNIER | f90838b | 2015-03-06 13:48:32 +0100 | [diff] [blame] | 6274 | __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] | 6275 | { |
| 6276 | return 0; |
| 6277 | } |
| 6278 | |
Thierry FOURNIER | 13416fe | 2015-02-17 15:01:59 +0100 | [diff] [blame] | 6279 | __LJMP static int hlua_yield(lua_State *L) |
| 6280 | { |
Willy Tarreau | 9635e03 | 2018-10-16 17:52:55 +0200 | [diff] [blame] | 6281 | 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] | 6282 | return 0; |
Thierry FOURNIER | 13416fe | 2015-02-17 15:01:59 +0100 | [diff] [blame] | 6283 | } |
| 6284 | |
Thierry FOURNIER | 37196f4 | 2015-02-16 19:34:56 +0100 | [diff] [blame] | 6285 | /* This function change the nice of the currently executed |
| 6286 | * task. It is used set low or high priority at the current |
| 6287 | * task. |
| 6288 | */ |
Willy Tarreau | 5955166 | 2015-03-10 14:23:13 +0100 | [diff] [blame] | 6289 | __LJMP static int hlua_set_nice(lua_State *L) |
Thierry FOURNIER | 37196f4 | 2015-02-16 19:34:56 +0100 | [diff] [blame] | 6290 | { |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 6291 | struct hlua *hlua; |
| 6292 | int nice; |
Thierry FOURNIER | 37196f4 | 2015-02-16 19:34:56 +0100 | [diff] [blame] | 6293 | |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 6294 | MAY_LJMP(check_args(L, 1, "set_nice")); |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 6295 | nice = MAY_LJMP(luaL_checkinteger(L, 1)); |
Thierry FOURNIER | 37196f4 | 2015-02-16 19:34:56 +0100 | [diff] [blame] | 6296 | |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 6297 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 6298 | hlua = hlua_gethlua(L); |
| 6299 | |
| 6300 | /* If the task is not set, I'm in a start mode. */ |
Thierry FOURNIER | 37196f4 | 2015-02-16 19:34:56 +0100 | [diff] [blame] | 6301 | if (!hlua || !hlua->task) |
| 6302 | return 0; |
| 6303 | |
| 6304 | if (nice < -1024) |
| 6305 | nice = -1024; |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 6306 | else if (nice > 1024) |
Thierry FOURNIER | 37196f4 | 2015-02-16 19:34:56 +0100 | [diff] [blame] | 6307 | nice = 1024; |
| 6308 | |
| 6309 | hlua->task->nice = nice; |
| 6310 | return 0; |
| 6311 | } |
| 6312 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 6313 | /* 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] | 6314 | * HAProxy task subsystem when the task is awaked. The LUA runtime can |
| 6315 | * return an E_AGAIN signal, the emmiter of this signal must set a |
| 6316 | * signal to wake the task. |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 6317 | * |
| 6318 | * Task wrapper are longjmp safe because the only one Lua code |
| 6319 | * executed is the safe hlua_ctx_resume(); |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6320 | */ |
Willy Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 6321 | 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] | 6322 | { |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 6323 | struct hlua *hlua = context; |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6324 | enum hlua_exec status; |
| 6325 | |
Christopher Faulet | 5bc9972 | 2018-04-25 10:34:45 +0200 | [diff] [blame] | 6326 | if (task->thread_mask == MAX_THREADS_MASK) |
| 6327 | task_set_affinity(task, tid_bit); |
| 6328 | |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 6329 | /* If it is the first call to the task, we must initialize the |
| 6330 | * execution timeouts. |
| 6331 | */ |
| 6332 | if (!HLUA_IS_RUNNING(hlua)) |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 6333 | hlua->max_time = hlua_timeout_task; |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 6334 | |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6335 | /* Execute the Lua code. */ |
| 6336 | status = hlua_ctx_resume(hlua, 1); |
| 6337 | |
| 6338 | switch (status) { |
| 6339 | /* finished or yield */ |
| 6340 | case HLUA_E_OK: |
| 6341 | hlua_ctx_destroy(hlua); |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 6342 | task_destroy(task); |
Tim Duesterhus | cd235c6 | 2018-04-24 13:56:01 +0200 | [diff] [blame] | 6343 | task = NULL; |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6344 | break; |
| 6345 | |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 6346 | case HLUA_E_AGAIN: /* co process or timeout wake me later. */ |
Thierry FOURNIER | cb14688 | 2017-12-10 17:10:57 +0100 | [diff] [blame] | 6347 | notification_gc(&hlua->com); |
PiBa-NL | fe971b3 | 2018-05-02 22:27:14 +0200 | [diff] [blame] | 6348 | task->expire = hlua->wake_time; |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6349 | break; |
| 6350 | |
| 6351 | /* finished with error. */ |
| 6352 | case HLUA_E_ERRMSG: |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6353 | SEND_ERR(NULL, "Lua task: %s.\n", lua_tostring(hlua->T, -1)); |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6354 | hlua_ctx_destroy(hlua); |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 6355 | task_destroy(task); |
Emeric Brun | 253e53e | 2017-10-17 18:58:40 +0200 | [diff] [blame] | 6356 | task = NULL; |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6357 | break; |
| 6358 | |
| 6359 | case HLUA_E_ERR: |
| 6360 | default: |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6361 | SEND_ERR(NULL, "Lua task: unknown error.\n"); |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6362 | hlua_ctx_destroy(hlua); |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 6363 | task_destroy(task); |
Emeric Brun | 253e53e | 2017-10-17 18:58:40 +0200 | [diff] [blame] | 6364 | task = NULL; |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6365 | break; |
| 6366 | } |
Emeric Brun | 253e53e | 2017-10-17 18:58:40 +0200 | [diff] [blame] | 6367 | return task; |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6368 | } |
| 6369 | |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 6370 | /* This function is an LUA binding that register LUA function to be |
| 6371 | * executed after the HAProxy configuration parsing and before the |
| 6372 | * HAProxy scheduler starts. This function expect only one LUA |
| 6373 | * argument that is a function. This function returns nothing, but |
| 6374 | * throws if an error is encountered. |
| 6375 | */ |
| 6376 | __LJMP static int hlua_register_init(lua_State *L) |
| 6377 | { |
| 6378 | struct hlua_init_function *init; |
| 6379 | int ref; |
| 6380 | |
| 6381 | MAY_LJMP(check_args(L, 1, "register_init")); |
| 6382 | |
| 6383 | ref = MAY_LJMP(hlua_checkfunction(L, 1)); |
| 6384 | |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 6385 | init = calloc(1, sizeof(*init)); |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 6386 | if (!init) |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 6387 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 6388 | |
| 6389 | init->function_ref = ref; |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 6390 | LIST_ADDQ(&hlua_init_functions[hlua_state_id], &init->l); |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 6391 | return 0; |
| 6392 | } |
| 6393 | |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6394 | /* This functio is an LUA binding. It permits to register a task |
| 6395 | * executed in parallel of the main HAroxy activity. The task is |
| 6396 | * created and it is set in the HAProxy scheduler. It can be called |
| 6397 | * from the "init" section, "post init" or during the runtime. |
| 6398 | * |
| 6399 | * Lua prototype: |
| 6400 | * |
| 6401 | * <none> core.register_task(<function>) |
| 6402 | */ |
| 6403 | static int hlua_register_task(lua_State *L) |
| 6404 | { |
Christopher Faulet | 5294ec0 | 2021-04-12 12:24:47 +0200 | [diff] [blame] | 6405 | struct hlua *hlua = NULL; |
| 6406 | struct task *task = NULL; |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6407 | int ref; |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 6408 | int state_id; |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6409 | |
| 6410 | MAY_LJMP(check_args(L, 1, "register_task")); |
| 6411 | |
| 6412 | ref = MAY_LJMP(hlua_checkfunction(L, 1)); |
| 6413 | |
Thierry Fournier | 75fc029 | 2020-11-28 13:18:56 +0100 | [diff] [blame] | 6414 | /* Get the reference state. If the reference is NULL, L is the master |
| 6415 | * state, otherwise hlua->T is. |
| 6416 | */ |
| 6417 | hlua = hlua_gethlua(L); |
| 6418 | if (hlua) |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 6419 | /* we are in runtime processing */ |
| 6420 | state_id = hlua->state_id; |
Thierry Fournier | 75fc029 | 2020-11-28 13:18:56 +0100 | [diff] [blame] | 6421 | else |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 6422 | /* we are in initialization mode */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 6423 | state_id = hlua_state_id; |
Thierry Fournier | 75fc029 | 2020-11-28 13:18:56 +0100 | [diff] [blame] | 6424 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 6425 | hlua = pool_alloc(pool_head_hlua); |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6426 | if (!hlua) |
Christopher Faulet | 5294ec0 | 2021-04-12 12:24:47 +0200 | [diff] [blame] | 6427 | goto alloc_error; |
Christopher Faulet | 1e8433f | 2021-03-24 15:03:01 +0100 | [diff] [blame] | 6428 | HLUA_INIT(hlua); |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6429 | |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 6430 | /* We are in the common lua state, execute the task anywhere, |
| 6431 | * otherwise, inherit the current thread identifier |
| 6432 | */ |
| 6433 | if (state_id == 0) |
| 6434 | task = task_new(MAX_THREADS_MASK); |
| 6435 | else |
| 6436 | task = task_new(tid_bit); |
Willy Tarreau | e09101e | 2018-10-16 17:37:12 +0200 | [diff] [blame] | 6437 | if (!task) |
Christopher Faulet | 5294ec0 | 2021-04-12 12:24:47 +0200 | [diff] [blame] | 6438 | goto alloc_error; |
Willy Tarreau | e09101e | 2018-10-16 17:37:12 +0200 | [diff] [blame] | 6439 | |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6440 | task->context = hlua; |
| 6441 | task->process = hlua_process_task; |
| 6442 | |
Thierry Fournier | 021d986 | 2020-11-28 23:42:03 +0100 | [diff] [blame] | 6443 | if (!hlua_ctx_init(hlua, state_id, task, 1)) |
Christopher Faulet | 5294ec0 | 2021-04-12 12:24:47 +0200 | [diff] [blame] | 6444 | goto alloc_error; |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6445 | |
| 6446 | /* Restore the function in the stack. */ |
| 6447 | lua_rawgeti(hlua->T, LUA_REGISTRYINDEX, ref); |
| 6448 | hlua->nargs = 0; |
| 6449 | |
| 6450 | /* Schedule task. */ |
| 6451 | task_schedule(task, now_ms); |
| 6452 | |
| 6453 | return 0; |
Christopher Faulet | 5294ec0 | 2021-04-12 12:24:47 +0200 | [diff] [blame] | 6454 | |
| 6455 | alloc_error: |
| 6456 | task_destroy(task); |
| 6457 | hlua_ctx_destroy(hlua); |
| 6458 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
| 6459 | return 0; /* Never reached */ |
Thierry FOURNIER | 24f3353 | 2015-01-23 12:13:00 +0100 | [diff] [blame] | 6460 | } |
| 6461 | |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6462 | /* Wrapper called by HAProxy to execute an LUA converter. This wrapper |
| 6463 | * doesn't allow "yield" functions because the HAProxy engine cannot |
| 6464 | * resume converters. |
| 6465 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6466 | 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] | 6467 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 6468 | struct hlua_function *fcn = private; |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6469 | struct stream *stream = smp->strm; |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 6470 | const char *error; |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6471 | |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 6472 | if (!stream) |
| 6473 | return 0; |
| 6474 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 6475 | /* In the execution wrappers linked with a stream, the |
Thierry FOURNIER | 05ac424 | 2015-02-27 18:37:27 +0100 | [diff] [blame] | 6476 | * Lua context can be not initialized. This behavior |
| 6477 | * permits to save performances because a systematic |
| 6478 | * Lua initialization cause 5% performances loss. |
| 6479 | */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6480 | if (!stream->hlua) { |
Christopher Faulet | 1e8433f | 2021-03-24 15:03:01 +0100 | [diff] [blame] | 6481 | struct hlua *hlua; |
| 6482 | |
| 6483 | hlua = pool_alloc(pool_head_hlua); |
| 6484 | if (!hlua) { |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6485 | SEND_ERR(stream->be, "Lua converter '%s': can't initialize Lua context.\n", fcn->name); |
| 6486 | return 0; |
| 6487 | } |
Christopher Faulet | 1e8433f | 2021-03-24 15:03:01 +0100 | [diff] [blame] | 6488 | HLUA_INIT(hlua); |
| 6489 | stream->hlua = hlua; |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 6490 | 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] | 6491 | SEND_ERR(stream->be, "Lua converter '%s': can't initialize Lua context.\n", fcn->name); |
| 6492 | return 0; |
| 6493 | } |
Thierry FOURNIER | 05ac424 | 2015-02-27 18:37:27 +0100 | [diff] [blame] | 6494 | } |
| 6495 | |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6496 | /* If it is the first run, initialize the data for the call. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6497 | if (!HLUA_IS_RUNNING(stream->hlua)) { |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 6498 | |
| 6499 | /* The following Lua calls can fail. */ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 6500 | if (!SET_SAFE_LJMP(stream->hlua)) { |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6501 | if (lua_type(stream->hlua->T, -1) == LUA_TSTRING) |
| 6502 | error = lua_tostring(stream->hlua->T, -1); |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 6503 | else |
| 6504 | error = "critical error"; |
| 6505 | SEND_ERR(stream->be, "Lua converter '%s': %s.\n", fcn->name, error); |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 6506 | return 0; |
| 6507 | } |
| 6508 | |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6509 | /* Check stack available size. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6510 | if (!lua_checkstack(stream->hlua->T, 1)) { |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6511 | SEND_ERR(stream->be, "Lua converter '%s': full stack.\n", fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 6512 | RESET_SAFE_LJMP(stream->hlua); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6513 | return 0; |
| 6514 | } |
| 6515 | |
| 6516 | /* Restore the function in the stack. */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 6517 | 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] | 6518 | |
| 6519 | /* convert input sample and pust-it in the stack. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6520 | if (!lua_checkstack(stream->hlua->T, 1)) { |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6521 | SEND_ERR(stream->be, "Lua converter '%s': full stack.\n", fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 6522 | RESET_SAFE_LJMP(stream->hlua); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6523 | return 0; |
| 6524 | } |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6525 | hlua_smp2lua(stream->hlua->T, smp); |
| 6526 | stream->hlua->nargs = 1; |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6527 | |
| 6528 | /* push keywords in the stack. */ |
| 6529 | if (arg_p) { |
| 6530 | for (; arg_p->type != ARGT_STOP; arg_p++) { |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6531 | if (!lua_checkstack(stream->hlua->T, 1)) { |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6532 | SEND_ERR(stream->be, "Lua converter '%s': full stack.\n", fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 6533 | RESET_SAFE_LJMP(stream->hlua); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6534 | return 0; |
| 6535 | } |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6536 | hlua_arg2lua(stream->hlua->T, arg_p); |
| 6537 | stream->hlua->nargs++; |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6538 | } |
| 6539 | } |
| 6540 | |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 6541 | /* We must initialize the execution timeouts. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6542 | stream->hlua->max_time = hlua_timeout_session; |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 6543 | |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 6544 | /* At this point the execution is safe. */ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 6545 | RESET_SAFE_LJMP(stream->hlua); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6546 | } |
| 6547 | |
| 6548 | /* Execute the function. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6549 | switch (hlua_ctx_resume(stream->hlua, 0)) { |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6550 | /* finished. */ |
| 6551 | case HLUA_E_OK: |
Thierry FOURNIER | fd80df1 | 2017-05-12 16:32:20 +0200 | [diff] [blame] | 6552 | /* If the stack is empty, the function fails. */ |
| 6553 | if (lua_gettop(stream->hlua->T) <= 0) |
| 6554 | return 0; |
| 6555 | |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6556 | /* Convert the returned value in sample. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6557 | hlua_lua2smp(stream->hlua->T, -1, smp); |
| 6558 | lua_pop(stream->hlua->T, 1); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6559 | return 1; |
| 6560 | |
| 6561 | /* yield. */ |
| 6562 | case HLUA_E_AGAIN: |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6563 | 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] | 6564 | return 0; |
| 6565 | |
| 6566 | /* finished with error. */ |
| 6567 | case HLUA_E_ERRMSG: |
| 6568 | /* Display log. */ |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6569 | SEND_ERR(stream->be, "Lua converter '%s': %s.\n", |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6570 | fcn->name, lua_tostring(stream->hlua->T, -1)); |
| 6571 | lua_pop(stream->hlua->T, 1); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6572 | return 0; |
| 6573 | |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 6574 | case HLUA_E_ETMOUT: |
| 6575 | SEND_ERR(stream->be, "Lua converter '%s': execution timeout.\n", fcn->name); |
| 6576 | return 0; |
| 6577 | |
| 6578 | case HLUA_E_NOMEM: |
| 6579 | SEND_ERR(stream->be, "Lua converter '%s': out of memory error.\n", fcn->name); |
| 6580 | return 0; |
| 6581 | |
| 6582 | case HLUA_E_YIELD: |
| 6583 | SEND_ERR(stream->be, "Lua converter '%s': yield functions like core.tcp() or core.sleep() are not allowed.\n", fcn->name); |
| 6584 | return 0; |
| 6585 | |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6586 | case HLUA_E_ERR: |
| 6587 | /* Display log. */ |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6588 | 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] | 6589 | /* fall through */ |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6590 | |
| 6591 | default: |
| 6592 | return 0; |
| 6593 | } |
| 6594 | } |
| 6595 | |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6596 | /* Wrapper called by HAProxy to execute a sample-fetch. this wrapper |
| 6597 | * doesn't allow "yield" functions because the HAProxy engine cannot |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 6598 | * resume sample-fetches. This function will be called by the sample |
| 6599 | * fetch engine to call lua-based fetch operations. |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6600 | */ |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6601 | static int hlua_sample_fetch_wrapper(const struct arg *arg_p, struct sample *smp, |
| 6602 | const char *kw, void *private) |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6603 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 6604 | struct hlua_function *fcn = private; |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6605 | struct stream *stream = smp->strm; |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 6606 | const char *error; |
Christopher Faulet | bfab2dd | 2019-07-26 15:09:53 +0200 | [diff] [blame] | 6607 | unsigned int hflags = HLUA_TXN_NOTERM; |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6608 | |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 6609 | if (!stream) |
| 6610 | return 0; |
Christopher Faulet | afd8f10 | 2018-11-08 11:34:21 +0100 | [diff] [blame] | 6611 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 6612 | /* In the execution wrappers linked with a stream, the |
Thierry FOURNIER | 05ac424 | 2015-02-27 18:37:27 +0100 | [diff] [blame] | 6613 | * Lua context can be not initialized. This behavior |
| 6614 | * permits to save performances because a systematic |
| 6615 | * Lua initialization cause 5% performances loss. |
| 6616 | */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6617 | if (!stream->hlua) { |
Christopher Faulet | 1e8433f | 2021-03-24 15:03:01 +0100 | [diff] [blame] | 6618 | struct hlua *hlua; |
| 6619 | |
| 6620 | hlua = pool_alloc(pool_head_hlua); |
| 6621 | if (!hlua) { |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6622 | SEND_ERR(stream->be, "Lua sample-fetch '%s': can't initialize Lua context.\n", fcn->name); |
| 6623 | return 0; |
| 6624 | } |
Christopher Faulet | 1e8433f | 2021-03-24 15:03:01 +0100 | [diff] [blame] | 6625 | hlua->T = NULL; |
| 6626 | stream->hlua = hlua; |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 6627 | 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] | 6628 | SEND_ERR(stream->be, "Lua sample-fetch '%s': can't initialize Lua context.\n", fcn->name); |
| 6629 | return 0; |
| 6630 | } |
Thierry FOURNIER | 05ac424 | 2015-02-27 18:37:27 +0100 | [diff] [blame] | 6631 | } |
| 6632 | |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6633 | /* If it is the first run, initialize the data for the call. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6634 | if (!HLUA_IS_RUNNING(stream->hlua)) { |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 6635 | |
| 6636 | /* The following Lua calls can fail. */ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 6637 | if (!SET_SAFE_LJMP(stream->hlua)) { |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6638 | if (lua_type(stream->hlua->T, -1) == LUA_TSTRING) |
| 6639 | error = lua_tostring(stream->hlua->T, -1); |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 6640 | else |
| 6641 | error = "critical error"; |
| 6642 | 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] | 6643 | return 0; |
| 6644 | } |
| 6645 | |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6646 | /* Check stack available size. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6647 | if (!lua_checkstack(stream->hlua->T, 2)) { |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6648 | 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] | 6649 | RESET_SAFE_LJMP(stream->hlua); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6650 | return 0; |
| 6651 | } |
| 6652 | |
| 6653 | /* Restore the function in the stack. */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 6654 | 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] | 6655 | |
| 6656 | /* push arguments in the stack. */ |
Christopher Faulet | bfab2dd | 2019-07-26 15:09:53 +0200 | [diff] [blame] | 6657 | 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] | 6658 | 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] | 6659 | RESET_SAFE_LJMP(stream->hlua); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6660 | return 0; |
| 6661 | } |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6662 | stream->hlua->nargs = 1; |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6663 | |
| 6664 | /* push keywords in the stack. */ |
| 6665 | for (; arg_p && arg_p->type != ARGT_STOP; arg_p++) { |
| 6666 | /* Check stack available size. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6667 | if (!lua_checkstack(stream->hlua->T, 1)) { |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6668 | 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] | 6669 | RESET_SAFE_LJMP(stream->hlua); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6670 | return 0; |
| 6671 | } |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6672 | hlua_arg2lua(stream->hlua->T, arg_p); |
| 6673 | stream->hlua->nargs++; |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6674 | } |
| 6675 | |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 6676 | /* We must initialize the execution timeouts. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6677 | stream->hlua->max_time = hlua_timeout_session; |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 6678 | |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 6679 | /* At this point the execution is safe. */ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 6680 | RESET_SAFE_LJMP(stream->hlua); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6681 | } |
| 6682 | |
| 6683 | /* Execute the function. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6684 | switch (hlua_ctx_resume(stream->hlua, 0)) { |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6685 | /* finished. */ |
| 6686 | case HLUA_E_OK: |
Thierry FOURNIER | fd80df1 | 2017-05-12 16:32:20 +0200 | [diff] [blame] | 6687 | /* If the stack is empty, the function fails. */ |
| 6688 | if (lua_gettop(stream->hlua->T) <= 0) |
| 6689 | return 0; |
| 6690 | |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6691 | /* Convert the returned value in sample. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6692 | hlua_lua2smp(stream->hlua->T, -1, smp); |
| 6693 | lua_pop(stream->hlua->T, 1); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6694 | |
| 6695 | /* Set the end of execution flag. */ |
| 6696 | smp->flags &= ~SMP_F_MAY_CHANGE; |
| 6697 | return 1; |
| 6698 | |
| 6699 | /* yield. */ |
| 6700 | case HLUA_E_AGAIN: |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6701 | 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] | 6702 | return 0; |
| 6703 | |
| 6704 | /* finished with error. */ |
| 6705 | case HLUA_E_ERRMSG: |
| 6706 | /* Display log. */ |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6707 | SEND_ERR(smp->px, "Lua sample-fetch '%s': %s.\n", |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6708 | fcn->name, lua_tostring(stream->hlua->T, -1)); |
| 6709 | lua_pop(stream->hlua->T, 1); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6710 | return 0; |
| 6711 | |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 6712 | case HLUA_E_ETMOUT: |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 6713 | SEND_ERR(smp->px, "Lua sample-fetch '%s': execution timeout.\n", fcn->name); |
| 6714 | return 0; |
| 6715 | |
| 6716 | case HLUA_E_NOMEM: |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 6717 | SEND_ERR(smp->px, "Lua sample-fetch '%s': out of memory error.\n", fcn->name); |
| 6718 | return 0; |
| 6719 | |
| 6720 | case HLUA_E_YIELD: |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 6721 | SEND_ERR(smp->px, "Lua sample-fetch '%s': yield not allowed.\n", fcn->name); |
| 6722 | return 0; |
| 6723 | |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6724 | case HLUA_E_ERR: |
| 6725 | /* Display log. */ |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6726 | 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] | 6727 | /* fall through */ |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6728 | |
| 6729 | default: |
| 6730 | return 0; |
| 6731 | } |
| 6732 | } |
| 6733 | |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6734 | /* This function is an LUA binding used for registering |
| 6735 | * "sample-conv" functions. It expects a converter name used |
| 6736 | * in the haproxy configuration file, and an LUA function. |
| 6737 | */ |
| 6738 | __LJMP static int hlua_register_converters(lua_State *L) |
| 6739 | { |
| 6740 | struct sample_conv_kw_list *sck; |
| 6741 | const char *name; |
| 6742 | int ref; |
| 6743 | int len; |
Christopher Faulet | aa22430 | 2021-04-12 14:08:21 +0200 | [diff] [blame] | 6744 | struct hlua_function *fcn = NULL; |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 6745 | struct sample_conv *sc; |
| 6746 | struct buffer *trash; |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6747 | |
| 6748 | MAY_LJMP(check_args(L, 2, "register_converters")); |
| 6749 | |
| 6750 | /* First argument : converter name. */ |
| 6751 | name = MAY_LJMP(luaL_checkstring(L, 1)); |
| 6752 | |
| 6753 | /* Second argument : lua function. */ |
| 6754 | ref = MAY_LJMP(hlua_checkfunction(L, 2)); |
| 6755 | |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 6756 | /* Check if the converter is already registered */ |
| 6757 | trash = get_trash_chunk(); |
| 6758 | chunk_printf(trash, "lua.%s", name); |
| 6759 | sc = find_sample_conv(trash->area, trash->data); |
| 6760 | if (sc != NULL) { |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 6761 | fcn = sc->private; |
| 6762 | if (fcn->function_ref[hlua_state_id] != -1) { |
| 6763 | ha_warning("Trying to register converter 'lua.%s' more than once. " |
| 6764 | "This will become a hard error in version 2.5.\n", name); |
| 6765 | } |
| 6766 | fcn->function_ref[hlua_state_id] = ref; |
| 6767 | return 0; |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 6768 | } |
| 6769 | |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6770 | /* Allocate and fill the sample fetch keyword struct. */ |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 6771 | sck = calloc(1, sizeof(*sck) + sizeof(struct sample_conv) * 2); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6772 | if (!sck) |
Christopher Faulet | aa22430 | 2021-04-12 14:08:21 +0200 | [diff] [blame] | 6773 | goto alloc_error; |
Thierry Fournier | 62a22aa | 2020-11-28 21:06:35 +0100 | [diff] [blame] | 6774 | fcn = new_hlua_function(); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6775 | if (!fcn) |
Christopher Faulet | aa22430 | 2021-04-12 14:08:21 +0200 | [diff] [blame] | 6776 | goto alloc_error; |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6777 | |
| 6778 | /* Fill fcn. */ |
| 6779 | fcn->name = strdup(name); |
| 6780 | if (!fcn->name) |
Christopher Faulet | aa22430 | 2021-04-12 14:08:21 +0200 | [diff] [blame] | 6781 | goto alloc_error; |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 6782 | fcn->function_ref[hlua_state_id] = ref; |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6783 | |
| 6784 | /* List head */ |
| 6785 | sck->list.n = sck->list.p = NULL; |
| 6786 | |
| 6787 | /* converter keyword. */ |
| 6788 | len = strlen("lua.") + strlen(name) + 1; |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 6789 | sck->kw[0].kw = calloc(1, len); |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6790 | if (!sck->kw[0].kw) |
Christopher Faulet | aa22430 | 2021-04-12 14:08:21 +0200 | [diff] [blame] | 6791 | goto alloc_error; |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6792 | |
| 6793 | snprintf((char *)sck->kw[0].kw, len, "lua.%s", name); |
| 6794 | sck->kw[0].process = hlua_sample_conv_wrapper; |
David Carlier | 0c437f4 | 2016-04-27 16:21:56 +0100 | [diff] [blame] | 6795 | 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] | 6796 | sck->kw[0].val_args = NULL; |
| 6797 | sck->kw[0].in_type = SMP_T_STR; |
| 6798 | sck->kw[0].out_type = SMP_T_STR; |
| 6799 | sck->kw[0].private = fcn; |
| 6800 | |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6801 | /* Register this new converter */ |
| 6802 | sample_register_convs(sck); |
| 6803 | |
| 6804 | return 0; |
Christopher Faulet | aa22430 | 2021-04-12 14:08:21 +0200 | [diff] [blame] | 6805 | |
| 6806 | alloc_error: |
| 6807 | release_hlua_function(fcn); |
| 6808 | ha_free(&sck); |
| 6809 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
| 6810 | return 0; /* Never reached */ |
Thierry FOURNIER | 9be813f | 2015-02-16 20:21:12 +0100 | [diff] [blame] | 6811 | } |
| 6812 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 6813 | /* This function is an LUA binding used for registering |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6814 | * "sample-fetch" functions. It expects a converter name used |
| 6815 | * in the haproxy configuration file, and an LUA function. |
| 6816 | */ |
| 6817 | __LJMP static int hlua_register_fetches(lua_State *L) |
| 6818 | { |
| 6819 | const char *name; |
| 6820 | int ref; |
| 6821 | int len; |
| 6822 | struct sample_fetch_kw_list *sfk; |
Christopher Faulet | 2567f18 | 2021-04-12 14:11:50 +0200 | [diff] [blame] | 6823 | struct hlua_function *fcn = NULL; |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 6824 | struct sample_fetch *sf; |
| 6825 | struct buffer *trash; |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6826 | |
| 6827 | MAY_LJMP(check_args(L, 2, "register_fetches")); |
| 6828 | |
| 6829 | /* First argument : sample-fetch name. */ |
| 6830 | name = MAY_LJMP(luaL_checkstring(L, 1)); |
| 6831 | |
| 6832 | /* Second argument : lua function. */ |
| 6833 | ref = MAY_LJMP(hlua_checkfunction(L, 2)); |
| 6834 | |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 6835 | /* Check if the sample-fetch is already registered */ |
| 6836 | trash = get_trash_chunk(); |
| 6837 | chunk_printf(trash, "lua.%s", name); |
| 6838 | sf = find_sample_fetch(trash->area, trash->data); |
| 6839 | if (sf != NULL) { |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 6840 | fcn = sf->private; |
| 6841 | if (fcn->function_ref[hlua_state_id] != -1) { |
| 6842 | ha_warning("Trying to register sample-fetch 'lua.%s' more than once. " |
| 6843 | "This will become a hard error in version 2.5.\n", name); |
| 6844 | } |
| 6845 | fcn->function_ref[hlua_state_id] = ref; |
| 6846 | return 0; |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 6847 | } |
| 6848 | |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6849 | /* Allocate and fill the sample fetch keyword struct. */ |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 6850 | sfk = calloc(1, sizeof(*sfk) + sizeof(struct sample_fetch) * 2); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6851 | if (!sfk) |
Christopher Faulet | 2567f18 | 2021-04-12 14:11:50 +0200 | [diff] [blame] | 6852 | goto alloc_error; |
Thierry Fournier | 62a22aa | 2020-11-28 21:06:35 +0100 | [diff] [blame] | 6853 | fcn = new_hlua_function(); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6854 | if (!fcn) |
Christopher Faulet | 2567f18 | 2021-04-12 14:11:50 +0200 | [diff] [blame] | 6855 | goto alloc_error; |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6856 | |
| 6857 | /* Fill fcn. */ |
| 6858 | fcn->name = strdup(name); |
| 6859 | if (!fcn->name) |
Christopher Faulet | 2567f18 | 2021-04-12 14:11:50 +0200 | [diff] [blame] | 6860 | goto alloc_error; |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 6861 | fcn->function_ref[hlua_state_id] = ref; |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6862 | |
| 6863 | /* List head */ |
| 6864 | sfk->list.n = sfk->list.p = NULL; |
| 6865 | |
| 6866 | /* sample-fetch keyword. */ |
| 6867 | len = strlen("lua.") + strlen(name) + 1; |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 6868 | sfk->kw[0].kw = calloc(1, len); |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6869 | if (!sfk->kw[0].kw) |
Christopher Faulet | 2567f18 | 2021-04-12 14:11:50 +0200 | [diff] [blame] | 6870 | goto alloc_error; |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6871 | |
| 6872 | snprintf((char *)sfk->kw[0].kw, len, "lua.%s", name); |
| 6873 | sfk->kw[0].process = hlua_sample_fetch_wrapper; |
David Carlier | 0c437f4 | 2016-04-27 16:21:56 +0100 | [diff] [blame] | 6874 | 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] | 6875 | sfk->kw[0].val_args = NULL; |
| 6876 | sfk->kw[0].out_type = SMP_T_STR; |
| 6877 | sfk->kw[0].use = SMP_USE_HTTP_ANY; |
| 6878 | sfk->kw[0].val = 0; |
| 6879 | sfk->kw[0].private = fcn; |
| 6880 | |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6881 | /* Register this new fetch. */ |
| 6882 | sample_register_fetches(sfk); |
| 6883 | |
| 6884 | return 0; |
Christopher Faulet | 2567f18 | 2021-04-12 14:11:50 +0200 | [diff] [blame] | 6885 | |
| 6886 | alloc_error: |
| 6887 | release_hlua_function(fcn); |
| 6888 | ha_free(&sfk); |
| 6889 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
| 6890 | return 0; /* Never reached */ |
Thierry FOURNIER | fa0e5dd | 2015-02-16 20:19:18 +0100 | [diff] [blame] | 6891 | } |
| 6892 | |
Christopher Faulet | 501465d | 2020-02-26 14:54:16 +0100 | [diff] [blame] | 6893 | /* This function is a lua binding to set the wake_time. |
Christopher Faulet | 2c2c2e3 | 2020-01-31 19:07:52 +0100 | [diff] [blame] | 6894 | */ |
Christopher Faulet | 501465d | 2020-02-26 14:54:16 +0100 | [diff] [blame] | 6895 | __LJMP static int hlua_set_wake_time(lua_State *L) |
Christopher Faulet | 2c2c2e3 | 2020-01-31 19:07:52 +0100 | [diff] [blame] | 6896 | { |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 6897 | struct hlua *hlua; |
Christopher Faulet | 2c2c2e3 | 2020-01-31 19:07:52 +0100 | [diff] [blame] | 6898 | unsigned int delay; |
| 6899 | unsigned int wakeup_ms; |
| 6900 | |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 6901 | /* Get hlua struct, or NULL if we execute from main lua state */ |
| 6902 | hlua = hlua_gethlua(L); |
| 6903 | if (!hlua) { |
| 6904 | return 0; |
| 6905 | } |
| 6906 | |
Christopher Faulet | 2c2c2e3 | 2020-01-31 19:07:52 +0100 | [diff] [blame] | 6907 | MAY_LJMP(check_args(L, 1, "wake_time")); |
| 6908 | |
| 6909 | delay = MAY_LJMP(luaL_checkinteger(L, 1)); |
| 6910 | wakeup_ms = tick_add(now_ms, delay); |
| 6911 | hlua->wake_time = wakeup_ms; |
| 6912 | return 0; |
| 6913 | } |
| 6914 | |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 6915 | /* This function is a wrapper to execute each LUA function declared as an action |
| 6916 | * wrapper during the initialisation period. This function may return any |
| 6917 | * ACT_RET_* value. On error ACT_RET_CONT is returned and the action is |
| 6918 | * ignored. If the lua action yields, ACT_RET_YIELD is returned. On success, the |
| 6919 | * return value is the first element on the stack. |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6920 | */ |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 6921 | 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] | 6922 | struct session *sess, struct stream *s, int flags) |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6923 | { |
| 6924 | char **arg; |
Christopher Faulet | bfab2dd | 2019-07-26 15:09:53 +0200 | [diff] [blame] | 6925 | unsigned int hflags = 0; |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 6926 | int dir, act_ret = ACT_RET_CONT; |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 6927 | const char *error; |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 6928 | |
| 6929 | switch (rule->from) { |
Christopher Faulet | d8f0e07 | 2020-02-25 09:45:51 +0100 | [diff] [blame] | 6930 | case ACT_F_TCP_REQ_CNT: dir = SMP_OPT_DIR_REQ; break; |
| 6931 | case ACT_F_TCP_RES_CNT: dir = SMP_OPT_DIR_RES; break; |
| 6932 | case ACT_F_HTTP_REQ: dir = SMP_OPT_DIR_REQ; break; |
| 6933 | case ACT_F_HTTP_RES: dir = SMP_OPT_DIR_RES; break; |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 6934 | default: |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6935 | SEND_ERR(px, "Lua: internal error while execute action.\n"); |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 6936 | goto end; |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 6937 | } |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6938 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 6939 | /* In the execution wrappers linked with a stream, the |
Thierry FOURNIER | 05ac424 | 2015-02-27 18:37:27 +0100 | [diff] [blame] | 6940 | * Lua context can be not initialized. This behavior |
| 6941 | * permits to save performances because a systematic |
| 6942 | * Lua initialization cause 5% performances loss. |
| 6943 | */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6944 | if (!s->hlua) { |
Christopher Faulet | 1e8433f | 2021-03-24 15:03:01 +0100 | [diff] [blame] | 6945 | struct hlua *hlua; |
| 6946 | |
| 6947 | hlua = pool_alloc(pool_head_hlua); |
| 6948 | if (!hlua) { |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6949 | SEND_ERR(px, "Lua action '%s': can't initialize Lua context.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 6950 | rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 6951 | goto end; |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6952 | } |
Christopher Faulet | 1e8433f | 2021-03-24 15:03:01 +0100 | [diff] [blame] | 6953 | HLUA_INIT(hlua); |
| 6954 | s->hlua = hlua; |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 6955 | 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] | 6956 | SEND_ERR(px, "Lua action '%s': can't initialize Lua context.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 6957 | rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 6958 | goto end; |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6959 | } |
Thierry FOURNIER | 05ac424 | 2015-02-27 18:37:27 +0100 | [diff] [blame] | 6960 | } |
| 6961 | |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6962 | /* If it is the first run, initialize the data for the call. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6963 | if (!HLUA_IS_RUNNING(s->hlua)) { |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 6964 | |
| 6965 | /* The following Lua calls can fail. */ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 6966 | if (!SET_SAFE_LJMP(s->hlua)) { |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6967 | if (lua_type(s->hlua->T, -1) == LUA_TSTRING) |
| 6968 | error = lua_tostring(s->hlua->T, -1); |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 6969 | else |
| 6970 | error = "critical error"; |
| 6971 | SEND_ERR(px, "Lua function '%s': %s.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 6972 | rule->arg.hlua_rule->fcn->name, error); |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 6973 | goto end; |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 6974 | } |
| 6975 | |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6976 | /* Check stack available size. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6977 | if (!lua_checkstack(s->hlua->T, 1)) { |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6978 | SEND_ERR(px, "Lua function '%s': full stack.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 6979 | rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 6980 | RESET_SAFE_LJMP(s->hlua); |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 6981 | goto end; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6982 | } |
| 6983 | |
| 6984 | /* Restore the function in the stack. */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 6985 | 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] | 6986 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 6987 | /* Create and and push object stream in the stack. */ |
Christopher Faulet | bfab2dd | 2019-07-26 15:09:53 +0200 | [diff] [blame] | 6988 | if (!hlua_txn_new(s->hlua->T, s, px, dir, hflags)) { |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6989 | SEND_ERR(px, "Lua function '%s': full stack.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 6990 | rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 6991 | RESET_SAFE_LJMP(s->hlua); |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 6992 | goto end; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6993 | } |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6994 | s->hlua->nargs = 1; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 6995 | |
| 6996 | /* push keywords in the stack. */ |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 6997 | for (arg = rule->arg.hlua_rule->args; arg && *arg; arg++) { |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 6998 | if (!lua_checkstack(s->hlua->T, 1)) { |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 6999 | SEND_ERR(px, "Lua function '%s': full stack.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7000 | rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 7001 | RESET_SAFE_LJMP(s->hlua); |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 7002 | goto end; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 7003 | } |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 7004 | lua_pushstring(s->hlua->T, *arg); |
| 7005 | s->hlua->nargs++; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 7006 | } |
| 7007 | |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 7008 | /* Now the execution is safe. */ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 7009 | RESET_SAFE_LJMP(s->hlua); |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 7010 | |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 7011 | /* We must initialize the execution timeouts. */ |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 7012 | s->hlua->max_time = hlua_timeout_session; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 7013 | } |
| 7014 | |
| 7015 | /* Execute the function. */ |
Christopher Faulet | 105ba6c | 2019-12-18 14:41:51 +0100 | [diff] [blame] | 7016 | switch (hlua_ctx_resume(s->hlua, !(flags & ACT_OPT_FINAL))) { |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 7017 | /* finished. */ |
| 7018 | case HLUA_E_OK: |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 7019 | /* Catch the return value */ |
| 7020 | if (lua_gettop(s->hlua->T) > 0) |
| 7021 | act_ret = lua_tointeger(s->hlua->T, -1); |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 7022 | |
Christopher Faulet | 2c2c2e3 | 2020-01-31 19:07:52 +0100 | [diff] [blame] | 7023 | /* Set timeout in the required channel. */ |
Christopher Faulet | 498c483 | 2020-07-28 11:59:58 +0200 | [diff] [blame] | 7024 | if (act_ret == ACT_RET_YIELD) { |
| 7025 | if (flags & ACT_OPT_FINAL) |
| 7026 | goto err_yield; |
| 7027 | |
Christopher Faulet | 8f587ea | 2020-07-28 12:01:55 +0200 | [diff] [blame] | 7028 | if (dir == SMP_OPT_DIR_REQ) |
| 7029 | s->req.analyse_exp = tick_first((tick_is_expired(s->req.analyse_exp, now_ms) ? 0 : s->req.analyse_exp), |
| 7030 | s->hlua->wake_time); |
| 7031 | else |
| 7032 | s->res.analyse_exp = tick_first((tick_is_expired(s->res.analyse_exp, now_ms) ? 0 : s->res.analyse_exp), |
| 7033 | s->hlua->wake_time); |
Christopher Faulet | 2c2c2e3 | 2020-01-31 19:07:52 +0100 | [diff] [blame] | 7034 | } |
| 7035 | goto end; |
| 7036 | |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 7037 | /* yield. */ |
| 7038 | case HLUA_E_AGAIN: |
Thierry FOURNIER | c42c1ae | 2015-03-03 17:17:55 +0100 | [diff] [blame] | 7039 | /* Set timeout in the required channel. */ |
Christopher Faulet | 8f587ea | 2020-07-28 12:01:55 +0200 | [diff] [blame] | 7040 | if (dir == SMP_OPT_DIR_REQ) |
| 7041 | s->req.analyse_exp = tick_first((tick_is_expired(s->req.analyse_exp, now_ms) ? 0 : s->req.analyse_exp), |
| 7042 | s->hlua->wake_time); |
| 7043 | else |
| 7044 | s->res.analyse_exp = tick_first((tick_is_expired(s->res.analyse_exp, now_ms) ? 0 : s->res.analyse_exp), |
| 7045 | s->hlua->wake_time); |
| 7046 | |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 7047 | /* Some actions can be wake up when a "write" event |
| 7048 | * is detected on a response channel. This is useful |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 7049 | * only for actions targeted on the requests. |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 7050 | */ |
Christopher Faulet | 51fa358 | 2019-07-26 14:54:52 +0200 | [diff] [blame] | 7051 | if (HLUA_IS_WAKERESWR(s->hlua)) |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 7052 | s->res.flags |= CF_WAKE_WRITE; |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 7053 | if (HLUA_IS_WAKEREQWR(s->hlua)) |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 7054 | s->req.flags |= CF_WAKE_WRITE; |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 7055 | act_ret = ACT_RET_YIELD; |
| 7056 | goto end; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 7057 | |
| 7058 | /* finished with error. */ |
| 7059 | case HLUA_E_ERRMSG: |
| 7060 | /* Display log. */ |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 7061 | SEND_ERR(px, "Lua function '%s': %s.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7062 | rule->arg.hlua_rule->fcn->name, lua_tostring(s->hlua->T, -1)); |
Thierry FOURNIER | 2c8b54e | 2016-12-17 12:45:32 +0100 | [diff] [blame] | 7063 | lua_pop(s->hlua->T, 1); |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 7064 | goto end; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 7065 | |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 7066 | case HLUA_E_ETMOUT: |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7067 | 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] | 7068 | goto end; |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 7069 | |
| 7070 | case HLUA_E_NOMEM: |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7071 | 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] | 7072 | goto end; |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 7073 | |
| 7074 | case HLUA_E_YIELD: |
Christopher Faulet | 498c483 | 2020-07-28 11:59:58 +0200 | [diff] [blame] | 7075 | err_yield: |
| 7076 | act_ret = ACT_RET_CONT; |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 7077 | 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] | 7078 | rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 7079 | goto end; |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 7080 | |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 7081 | case HLUA_E_ERR: |
| 7082 | /* Display log. */ |
Thierry FOURNIER | 23bc375 | 2015-09-11 19:15:43 +0200 | [diff] [blame] | 7083 | SEND_ERR(px, "Lua function '%s' return an unknown error.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7084 | rule->arg.hlua_rule->fcn->name); |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 7085 | |
| 7086 | default: |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 7087 | goto end; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 7088 | } |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 7089 | |
| 7090 | end: |
Christopher Faulet | 2361fd9 | 2020-07-30 10:40:58 +0200 | [diff] [blame] | 7091 | if (act_ret != ACT_RET_YIELD && s->hlua) |
Christopher Faulet | 8f587ea | 2020-07-28 12:01:55 +0200 | [diff] [blame] | 7092 | s->hlua->wake_time = TICK_ETERNITY; |
Christopher Faulet | 7716cdf | 2020-01-29 11:53:30 +0100 | [diff] [blame] | 7093 | return act_ret; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 7094 | } |
| 7095 | |
Willy Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 7096 | 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] | 7097 | { |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 7098 | struct appctx *ctx = context; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7099 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7100 | appctx_wakeup(ctx); |
Willy Tarreau | d958741 | 2017-08-23 16:07:33 +0200 | [diff] [blame] | 7101 | t->expire = TICK_ETERNITY; |
Willy Tarreau | d1aa41f | 2017-07-21 16:41:56 +0200 | [diff] [blame] | 7102 | return t; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7103 | } |
| 7104 | |
| 7105 | static int hlua_applet_tcp_init(struct appctx *ctx, struct proxy *px, struct stream *strm) |
| 7106 | { |
| 7107 | struct stream_interface *si = ctx->owner; |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7108 | struct hlua *hlua; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7109 | struct task *task; |
| 7110 | char **arg; |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 7111 | const char *error; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7112 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 7113 | hlua = pool_alloc(pool_head_hlua); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7114 | if (!hlua) { |
| 7115 | SEND_ERR(px, "Lua applet tcp '%s': out of memory.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7116 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7117 | return 0; |
| 7118 | } |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7119 | HLUA_INIT(hlua); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7120 | ctx->ctx.hlua_apptcp.hlua = hlua; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7121 | ctx->ctx.hlua_apptcp.flags = 0; |
| 7122 | |
| 7123 | /* Create task used by signal to wakeup applets. */ |
Willy Tarreau | 5f4a47b | 2017-10-31 15:59:32 +0100 | [diff] [blame] | 7124 | task = task_new(tid_bit); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7125 | if (!task) { |
| 7126 | SEND_ERR(px, "Lua applet tcp '%s': out of memory.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7127 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7128 | return 0; |
| 7129 | } |
| 7130 | task->nice = 0; |
| 7131 | task->context = ctx; |
| 7132 | task->process = hlua_applet_wakeup; |
| 7133 | ctx->ctx.hlua_apptcp.task = task; |
| 7134 | |
| 7135 | /* In the execution wrappers linked with a stream, the |
| 7136 | * Lua context can be not initialized. This behavior |
| 7137 | * permits to save performances because a systematic |
| 7138 | * Lua initialization cause 5% performances loss. |
| 7139 | */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 7140 | 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] | 7141 | 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] | 7142 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7143 | return 0; |
| 7144 | } |
| 7145 | |
| 7146 | /* Set timeout according with the applet configuration. */ |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 7147 | hlua->max_time = ctx->applet->timeout; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7148 | |
| 7149 | /* The following Lua calls can fail. */ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 7150 | if (!SET_SAFE_LJMP(hlua)) { |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 7151 | if (lua_type(hlua->T, -1) == LUA_TSTRING) |
| 7152 | error = lua_tostring(hlua->T, -1); |
| 7153 | else |
| 7154 | error = "critical error"; |
| 7155 | SEND_ERR(px, "Lua applet tcp '%s': %s.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7156 | ctx->rule->arg.hlua_rule->fcn->name, error); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7157 | return 0; |
| 7158 | } |
| 7159 | |
| 7160 | /* Check stack available size. */ |
| 7161 | if (!lua_checkstack(hlua->T, 1)) { |
| 7162 | SEND_ERR(px, "Lua applet tcp '%s': full stack.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7163 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 7164 | RESET_SAFE_LJMP(hlua); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7165 | return 0; |
| 7166 | } |
| 7167 | |
| 7168 | /* Restore the function in the stack. */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 7169 | 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] | 7170 | |
| 7171 | /* Create and and push object stream in the stack. */ |
| 7172 | if (!hlua_applet_tcp_new(hlua->T, ctx)) { |
| 7173 | SEND_ERR(px, "Lua applet tcp '%s': full stack.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7174 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 7175 | RESET_SAFE_LJMP(hlua); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7176 | return 0; |
| 7177 | } |
| 7178 | hlua->nargs = 1; |
| 7179 | |
| 7180 | /* push keywords in the stack. */ |
| 7181 | for (arg = ctx->rule->arg.hlua_rule->args; arg && *arg; arg++) { |
| 7182 | if (!lua_checkstack(hlua->T, 1)) { |
| 7183 | SEND_ERR(px, "Lua applet tcp '%s': full stack.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7184 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 7185 | RESET_SAFE_LJMP(hlua); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7186 | return 0; |
| 7187 | } |
| 7188 | lua_pushstring(hlua->T, *arg); |
| 7189 | hlua->nargs++; |
| 7190 | } |
| 7191 | |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 7192 | RESET_SAFE_LJMP(hlua); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7193 | |
| 7194 | /* Wakeup the applet ASAP. */ |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 7195 | si_cant_get(si); |
Willy Tarreau | 3367d41 | 2018-11-15 10:57:41 +0100 | [diff] [blame] | 7196 | si_rx_endp_more(si); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7197 | |
| 7198 | return 1; |
| 7199 | } |
| 7200 | |
Willy Tarreau | 60409db | 2019-08-21 14:14:50 +0200 | [diff] [blame] | 7201 | void hlua_applet_tcp_fct(struct appctx *ctx) |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7202 | { |
| 7203 | struct stream_interface *si = ctx->owner; |
| 7204 | struct stream *strm = si_strm(si); |
| 7205 | struct channel *res = si_ic(si); |
| 7206 | struct act_rule *rule = ctx->rule; |
| 7207 | struct proxy *px = strm->be; |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7208 | struct hlua *hlua = ctx->ctx.hlua_apptcp.hlua; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7209 | |
| 7210 | /* The applet execution is already done. */ |
Olivier Houchard | 594c8c5 | 2018-08-28 14:41:31 +0200 | [diff] [blame] | 7211 | if (ctx->ctx.hlua_apptcp.flags & APPLET_DONE) { |
| 7212 | /* eat the whole request */ |
| 7213 | co_skip(si_oc(si), co_data(si_oc(si))); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7214 | return; |
Olivier Houchard | 594c8c5 | 2018-08-28 14:41:31 +0200 | [diff] [blame] | 7215 | } |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7216 | |
| 7217 | /* If the stream is disconnect or closed, ldo nothing. */ |
| 7218 | if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) |
| 7219 | return; |
| 7220 | |
| 7221 | /* Execute the function. */ |
| 7222 | switch (hlua_ctx_resume(hlua, 1)) { |
| 7223 | /* finished. */ |
| 7224 | case HLUA_E_OK: |
| 7225 | ctx->ctx.hlua_apptcp.flags |= APPLET_DONE; |
| 7226 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7227 | /* eat the whole request */ |
Willy Tarreau | a79021a | 2018-06-15 18:07:57 +0200 | [diff] [blame] | 7228 | co_skip(si_oc(si), co_data(si_oc(si))); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7229 | res->flags |= CF_READ_NULL; |
| 7230 | si_shutr(si); |
| 7231 | return; |
| 7232 | |
| 7233 | /* yield. */ |
| 7234 | case HLUA_E_AGAIN: |
Thierry Fournier | 0164f20 | 2016-02-20 17:47:43 +0100 | [diff] [blame] | 7235 | if (hlua->wake_time != TICK_ETERNITY) |
| 7236 | task_schedule(ctx->ctx.hlua_apptcp.task, hlua->wake_time); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7237 | return; |
| 7238 | |
| 7239 | /* finished with error. */ |
| 7240 | case HLUA_E_ERRMSG: |
| 7241 | /* Display log. */ |
| 7242 | SEND_ERR(px, "Lua applet tcp '%s': %s.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7243 | rule->arg.hlua_rule->fcn->name, lua_tostring(hlua->T, -1)); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7244 | lua_pop(hlua->T, 1); |
| 7245 | goto error; |
| 7246 | |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 7247 | case HLUA_E_ETMOUT: |
| 7248 | SEND_ERR(px, "Lua applet tcp '%s': execution timeout.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7249 | rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 7250 | goto error; |
| 7251 | |
| 7252 | case HLUA_E_NOMEM: |
| 7253 | SEND_ERR(px, "Lua applet tcp '%s': out of memory error.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7254 | rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 7255 | goto error; |
| 7256 | |
| 7257 | case HLUA_E_YIELD: /* unexpected */ |
| 7258 | SEND_ERR(px, "Lua applet tcp '%s': yield not allowed.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7259 | rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 7260 | goto error; |
| 7261 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7262 | case HLUA_E_ERR: |
| 7263 | /* Display log. */ |
| 7264 | SEND_ERR(px, "Lua applet tcp '%s' return an unknown error.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7265 | rule->arg.hlua_rule->fcn->name); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7266 | goto error; |
| 7267 | |
| 7268 | default: |
| 7269 | goto error; |
| 7270 | } |
| 7271 | |
| 7272 | error: |
| 7273 | |
| 7274 | /* For all other cases, just close the stream. */ |
| 7275 | si_shutw(si); |
| 7276 | si_shutr(si); |
| 7277 | ctx->ctx.hlua_apptcp.flags |= APPLET_DONE; |
| 7278 | } |
| 7279 | |
| 7280 | static void hlua_applet_tcp_release(struct appctx *ctx) |
| 7281 | { |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 7282 | task_destroy(ctx->ctx.hlua_apptcp.task); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7283 | ctx->ctx.hlua_apptcp.task = NULL; |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7284 | hlua_ctx_destroy(ctx->ctx.hlua_apptcp.hlua); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7285 | ctx->ctx.hlua_apptcp.hlua = NULL; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7286 | } |
| 7287 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7288 | /* The function returns 1 if the initialisation is complete, 0 if |
| 7289 | * an errors occurs and -1 if more data are required for initializing |
| 7290 | * the applet. |
| 7291 | */ |
| 7292 | static int hlua_applet_http_init(struct appctx *ctx, struct proxy *px, struct stream *strm) |
| 7293 | { |
| 7294 | struct stream_interface *si = ctx->owner; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7295 | struct http_txn *txn; |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7296 | struct hlua *hlua; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7297 | char **arg; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7298 | struct task *task; |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 7299 | const char *error; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7300 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7301 | txn = strm->txn; |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 7302 | hlua = pool_alloc(pool_head_hlua); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7303 | if (!hlua) { |
| 7304 | SEND_ERR(px, "Lua applet http '%s': out of memory.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7305 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7306 | return 0; |
| 7307 | } |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7308 | HLUA_INIT(hlua); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7309 | ctx->ctx.hlua_apphttp.hlua = hlua; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7310 | ctx->ctx.hlua_apphttp.left_bytes = -1; |
| 7311 | ctx->ctx.hlua_apphttp.flags = 0; |
| 7312 | |
Thierry FOURNIER | d93ea2b | 2015-12-20 19:14:52 +0100 | [diff] [blame] | 7313 | if (txn->req.flags & HTTP_MSGF_VER_11) |
| 7314 | ctx->ctx.hlua_apphttp.flags |= APPLET_HTTP11; |
| 7315 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7316 | /* Create task used by signal to wakeup applets. */ |
Willy Tarreau | 5f4a47b | 2017-10-31 15:59:32 +0100 | [diff] [blame] | 7317 | task = task_new(tid_bit); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7318 | if (!task) { |
| 7319 | SEND_ERR(px, "Lua applet http '%s': out of memory.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7320 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7321 | return 0; |
| 7322 | } |
| 7323 | task->nice = 0; |
| 7324 | task->context = ctx; |
| 7325 | task->process = hlua_applet_wakeup; |
| 7326 | ctx->ctx.hlua_apphttp.task = task; |
| 7327 | |
| 7328 | /* In the execution wrappers linked with a stream, the |
| 7329 | * Lua context can be not initialized. This behavior |
| 7330 | * permits to save performances because a systematic |
| 7331 | * Lua initialization cause 5% performances loss. |
| 7332 | */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 7333 | 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] | 7334 | 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] | 7335 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7336 | return 0; |
| 7337 | } |
| 7338 | |
| 7339 | /* Set timeout according with the applet configuration. */ |
Thierry FOURNIER | 10770fa | 2015-09-29 01:59:42 +0200 | [diff] [blame] | 7340 | hlua->max_time = ctx->applet->timeout; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7341 | |
| 7342 | /* The following Lua calls can fail. */ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 7343 | if (!SET_SAFE_LJMP(hlua)) { |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 7344 | if (lua_type(hlua->T, -1) == LUA_TSTRING) |
| 7345 | error = lua_tostring(hlua->T, -1); |
| 7346 | else |
| 7347 | error = "critical error"; |
| 7348 | SEND_ERR(px, "Lua applet http '%s': %s.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7349 | ctx->rule->arg.hlua_rule->fcn->name, error); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7350 | return 0; |
| 7351 | } |
| 7352 | |
| 7353 | /* Check stack available size. */ |
| 7354 | if (!lua_checkstack(hlua->T, 1)) { |
| 7355 | SEND_ERR(px, "Lua applet http '%s': full stack.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7356 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 7357 | RESET_SAFE_LJMP(hlua); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7358 | return 0; |
| 7359 | } |
| 7360 | |
| 7361 | /* Restore the function in the stack. */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 7362 | 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] | 7363 | |
| 7364 | /* Create and and push object stream in the stack. */ |
| 7365 | if (!hlua_applet_http_new(hlua->T, ctx)) { |
| 7366 | SEND_ERR(px, "Lua applet http '%s': full stack.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7367 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 7368 | RESET_SAFE_LJMP(hlua); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7369 | return 0; |
| 7370 | } |
| 7371 | hlua->nargs = 1; |
| 7372 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7373 | /* push keywords in the stack. */ |
| 7374 | for (arg = ctx->rule->arg.hlua_rule->args; arg && *arg; arg++) { |
| 7375 | if (!lua_checkstack(hlua->T, 1)) { |
| 7376 | SEND_ERR(px, "Lua applet http '%s': full stack.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7377 | ctx->rule->arg.hlua_rule->fcn->name); |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 7378 | RESET_SAFE_LJMP(hlua); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7379 | return 0; |
| 7380 | } |
| 7381 | lua_pushstring(hlua->T, *arg); |
| 7382 | hlua->nargs++; |
| 7383 | } |
| 7384 | |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 7385 | RESET_SAFE_LJMP(hlua); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7386 | |
| 7387 | /* Wakeup the applet when data is ready for read. */ |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 7388 | si_cant_get(si); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7389 | |
| 7390 | return 1; |
| 7391 | } |
| 7392 | |
Willy Tarreau | 60409db | 2019-08-21 14:14:50 +0200 | [diff] [blame] | 7393 | void hlua_applet_http_fct(struct appctx *ctx) |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7394 | { |
| 7395 | struct stream_interface *si = ctx->owner; |
| 7396 | struct stream *strm = si_strm(si); |
| 7397 | struct channel *req = si_oc(si); |
| 7398 | struct channel *res = si_ic(si); |
| 7399 | struct act_rule *rule = ctx->rule; |
| 7400 | struct proxy *px = strm->be; |
| 7401 | struct hlua *hlua = ctx->ctx.hlua_apphttp.hlua; |
| 7402 | struct htx *req_htx, *res_htx; |
| 7403 | |
| 7404 | res_htx = htx_from_buf(&res->buf); |
| 7405 | |
| 7406 | /* If the stream is disconnect or closed, ldo nothing. */ |
| 7407 | if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) |
| 7408 | goto out; |
| 7409 | |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 7410 | /* Check if the input buffer is available. */ |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7411 | if (!b_size(&res->buf)) { |
| 7412 | si_rx_room_blk(si); |
| 7413 | goto out; |
| 7414 | } |
| 7415 | /* check that the output is not closed */ |
Christopher Faulet | 56a3d6e | 2019-02-27 22:06:23 +0100 | [diff] [blame] | 7416 | if (res->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_SHUTR)) |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7417 | ctx->ctx.hlua_apphttp.flags |= APPLET_DONE; |
| 7418 | |
| 7419 | /* Set the currently running flag. */ |
| 7420 | if (!HLUA_IS_RUNNING(hlua) && |
| 7421 | !(ctx->ctx.hlua_apphttp.flags & APPLET_DONE)) { |
| 7422 | struct htx_blk *blk; |
| 7423 | size_t count = co_data(req); |
| 7424 | |
| 7425 | if (!count) { |
| 7426 | si_cant_get(si); |
| 7427 | goto out; |
| 7428 | } |
| 7429 | |
| 7430 | /* We need to flush the request header. This left the body for |
| 7431 | * the Lua. |
| 7432 | */ |
| 7433 | req_htx = htx_from_buf(&req->buf); |
Christopher Faulet | a3f1550 | 2019-05-13 15:27:23 +0200 | [diff] [blame] | 7434 | blk = htx_get_first_blk(req_htx); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7435 | while (count && blk) { |
| 7436 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 7437 | uint32_t sz = htx_get_blksz(blk); |
| 7438 | |
| 7439 | if (sz > count) { |
| 7440 | si_cant_get(si); |
Christopher Faulet | 0ae79d0 | 2019-02-27 21:36:59 +0100 | [diff] [blame] | 7441 | htx_to_buf(req_htx, &req->buf); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7442 | goto out; |
| 7443 | } |
| 7444 | |
| 7445 | count -= sz; |
| 7446 | co_set_data(req, co_data(req) - sz); |
| 7447 | blk = htx_remove_blk(req_htx, blk); |
| 7448 | |
| 7449 | if (type == HTX_BLK_EOH) |
| 7450 | break; |
| 7451 | } |
Christopher Faulet | 0ae79d0 | 2019-02-27 21:36:59 +0100 | [diff] [blame] | 7452 | htx_to_buf(req_htx, &req->buf); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7453 | } |
| 7454 | |
| 7455 | /* Executes The applet if it is not done. */ |
| 7456 | if (!(ctx->ctx.hlua_apphttp.flags & APPLET_DONE)) { |
| 7457 | |
| 7458 | /* Execute the function. */ |
| 7459 | switch (hlua_ctx_resume(hlua, 1)) { |
| 7460 | /* finished. */ |
| 7461 | case HLUA_E_OK: |
| 7462 | ctx->ctx.hlua_apphttp.flags |= APPLET_DONE; |
| 7463 | break; |
| 7464 | |
| 7465 | /* yield. */ |
| 7466 | case HLUA_E_AGAIN: |
| 7467 | if (hlua->wake_time != TICK_ETERNITY) |
| 7468 | task_schedule(ctx->ctx.hlua_apphttp.task, hlua->wake_time); |
Christopher Faulet | 56a3d6e | 2019-02-27 22:06:23 +0100 | [diff] [blame] | 7469 | goto out; |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7470 | |
| 7471 | /* finished with error. */ |
| 7472 | case HLUA_E_ERRMSG: |
| 7473 | /* Display log. */ |
| 7474 | SEND_ERR(px, "Lua applet http '%s': %s.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7475 | rule->arg.hlua_rule->fcn->name, lua_tostring(hlua->T, -1)); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7476 | lua_pop(hlua->T, 1); |
| 7477 | goto error; |
| 7478 | |
| 7479 | case HLUA_E_ETMOUT: |
| 7480 | SEND_ERR(px, "Lua applet http '%s': execution timeout.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7481 | rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7482 | goto error; |
| 7483 | |
| 7484 | case HLUA_E_NOMEM: |
| 7485 | SEND_ERR(px, "Lua applet http '%s': out of memory error.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7486 | rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7487 | goto error; |
| 7488 | |
| 7489 | case HLUA_E_YIELD: /* unexpected */ |
| 7490 | SEND_ERR(px, "Lua applet http '%s': yield not allowed.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7491 | rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7492 | goto error; |
| 7493 | |
| 7494 | case HLUA_E_ERR: |
| 7495 | /* Display log. */ |
| 7496 | SEND_ERR(px, "Lua applet http '%s' return an unknown error.\n", |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7497 | rule->arg.hlua_rule->fcn->name); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7498 | goto error; |
| 7499 | |
| 7500 | default: |
| 7501 | goto error; |
| 7502 | } |
| 7503 | } |
| 7504 | |
| 7505 | if (ctx->ctx.hlua_apphttp.flags & APPLET_DONE) { |
Christopher Faulet | 56a3d6e | 2019-02-27 22:06:23 +0100 | [diff] [blame] | 7506 | if (ctx->ctx.hlua_apphttp.flags & APPLET_RSP_SENT) |
| 7507 | goto done; |
| 7508 | |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7509 | if (!(ctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT)) |
| 7510 | goto error; |
| 7511 | |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 7512 | /* no more data are expected. Don't add TLR because mux-h1 will take care of it */ |
| 7513 | res_htx->flags |= HTX_FL_EOM; |
Christopher Faulet | 56a3d6e | 2019-02-27 22:06:23 +0100 | [diff] [blame] | 7514 | strm->txn->status = ctx->ctx.hlua_apphttp.status; |
| 7515 | ctx->ctx.hlua_apphttp.flags |= APPLET_RSP_SENT; |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7516 | } |
| 7517 | |
| 7518 | done: |
| 7519 | if (ctx->ctx.hlua_apphttp.flags & APPLET_DONE) { |
Christopher Faulet | 56a3d6e | 2019-02-27 22:06:23 +0100 | [diff] [blame] | 7520 | if (!(res->flags & CF_SHUTR)) { |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7521 | res->flags |= CF_READ_NULL; |
Christopher Faulet | 56a3d6e | 2019-02-27 22:06:23 +0100 | [diff] [blame] | 7522 | si_shutr(si); |
| 7523 | } |
| 7524 | |
| 7525 | /* eat the whole request */ |
| 7526 | if (co_data(req)) { |
| 7527 | req_htx = htx_from_buf(&req->buf); |
| 7528 | co_htx_skip(req, req_htx, co_data(req)); |
| 7529 | htx_to_buf(req_htx, &req->buf); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7530 | } |
| 7531 | } |
| 7532 | |
| 7533 | out: |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7534 | htx_to_buf(res_htx, &res->buf); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7535 | return; |
| 7536 | |
| 7537 | error: |
| 7538 | |
| 7539 | /* If we are in HTTP mode, and we are not send any |
| 7540 | * data, return a 500 server error in best effort: |
| 7541 | * if there is no room available in the buffer, |
| 7542 | * just close the connection. |
| 7543 | */ |
| 7544 | if (!(ctx->ctx.hlua_apphttp.flags & APPLET_HDR_SENT)) { |
Christopher Faulet | f734638 | 2019-07-17 22:02:08 +0200 | [diff] [blame] | 7545 | struct buffer *err = &http_err_chunks[HTTP_ERR_500]; |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7546 | |
| 7547 | channel_erase(res); |
| 7548 | res->buf.data = b_data(err); |
| 7549 | memcpy(res->buf.area, b_head(err), b_data(err)); |
| 7550 | res_htx = htx_from_buf(&res->buf); |
Christopher Faulet | f6cce3f | 2019-02-27 21:20:09 +0100 | [diff] [blame] | 7551 | channel_add_input(res, res_htx->data); |
Christopher Faulet | 9c832fc | 2018-12-14 13:34:05 +0100 | [diff] [blame] | 7552 | } |
| 7553 | if (!(strm->flags & SF_ERR_MASK)) |
| 7554 | strm->flags |= SF_ERR_RESOURCE; |
| 7555 | ctx->ctx.hlua_apphttp.flags |= APPLET_DONE; |
| 7556 | goto done; |
| 7557 | } |
| 7558 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7559 | static void hlua_applet_http_release(struct appctx *ctx) |
| 7560 | { |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 7561 | task_destroy(ctx->ctx.hlua_apphttp.task); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7562 | ctx->ctx.hlua_apphttp.task = NULL; |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7563 | hlua_ctx_destroy(ctx->ctx.hlua_apphttp.hlua); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7564 | ctx->ctx.hlua_apphttp.hlua = NULL; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7565 | } |
| 7566 | |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 7567 | /* global {tcp|http}-request parser. Return ACT_RET_PRS_OK in |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 7568 | * success case, else return ACT_RET_PRS_ERR. |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 7569 | * |
| 7570 | * This function can fail with an abort() due to an Lua critical error. |
| 7571 | * We are in the configuration parsing process of HAProxy, this abort() is |
| 7572 | * tolerated. |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 7573 | */ |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 7574 | static enum act_parse_ret action_register_lua(const char **args, int *cur_arg, struct proxy *px, |
| 7575 | struct act_rule *rule, char **err) |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 7576 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 7577 | struct hlua_function *fcn = rule->kw->private; |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 7578 | int i; |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7579 | |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 7580 | /* Memory for the rule. */ |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 7581 | rule->arg.hlua_rule = calloc(1, sizeof(*rule->arg.hlua_rule)); |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 7582 | if (!rule->arg.hlua_rule) { |
| 7583 | memprintf(err, "out of memory error"); |
Christopher Faulet | 528526f | 2021-04-12 14:37:32 +0200 | [diff] [blame] | 7584 | goto error; |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 7585 | } |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 7586 | |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 7587 | /* Memory for arguments. */ |
Tim Duesterhus | e52b6e5 | 2020-09-12 20:26:43 +0200 | [diff] [blame] | 7588 | rule->arg.hlua_rule->args = calloc(fcn->nargs + 1, |
| 7589 | sizeof(*rule->arg.hlua_rule->args)); |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 7590 | if (!rule->arg.hlua_rule->args) { |
| 7591 | memprintf(err, "out of memory error"); |
Christopher Faulet | 528526f | 2021-04-12 14:37:32 +0200 | [diff] [blame] | 7592 | goto error; |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 7593 | } |
| 7594 | |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 7595 | /* Reference the Lua function and store the reference. */ |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7596 | rule->arg.hlua_rule->fcn = fcn; |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 7597 | |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 7598 | /* Expect some arguments */ |
| 7599 | for (i = 0; i < fcn->nargs; i++) { |
Thierry FOURNIER | 1725c2e | 2019-01-06 19:38:49 +0100 | [diff] [blame] | 7600 | if (*args[*cur_arg] == '\0') { |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 7601 | memprintf(err, "expect %d arguments", fcn->nargs); |
Christopher Faulet | 528526f | 2021-04-12 14:37:32 +0200 | [diff] [blame] | 7602 | goto error; |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 7603 | } |
Thierry FOURNIER | 1725c2e | 2019-01-06 19:38:49 +0100 | [diff] [blame] | 7604 | rule->arg.hlua_rule->args[i] = strdup(args[*cur_arg]); |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 7605 | if (!rule->arg.hlua_rule->args[i]) { |
| 7606 | memprintf(err, "out of memory error"); |
Christopher Faulet | 528526f | 2021-04-12 14:37:32 +0200 | [diff] [blame] | 7607 | goto error; |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 7608 | } |
| 7609 | (*cur_arg)++; |
| 7610 | } |
| 7611 | rule->arg.hlua_rule->args[i] = NULL; |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 7612 | |
Thierry FOURNIER | 4214873 | 2015-09-02 17:17:33 +0200 | [diff] [blame] | 7613 | rule->action = ACT_CUSTOM; |
Thierry FOURNIER | 4dc15d1 | 2015-08-06 18:25:56 +0200 | [diff] [blame] | 7614 | rule->action_ptr = hlua_action; |
Thierry FOURNIER | afa8049 | 2015-08-19 09:04:15 +0200 | [diff] [blame] | 7615 | return ACT_RET_PRS_OK; |
Christopher Faulet | 528526f | 2021-04-12 14:37:32 +0200 | [diff] [blame] | 7616 | |
| 7617 | error: |
| 7618 | if (rule->arg.hlua_rule) { |
| 7619 | if (rule->arg.hlua_rule->args) { |
| 7620 | for (i = 0; i < fcn->nargs; i++) |
| 7621 | ha_free(&rule->arg.hlua_rule->args[i]); |
| 7622 | ha_free(&rule->arg.hlua_rule->args); |
| 7623 | } |
| 7624 | ha_free(&rule->arg.hlua_rule); |
| 7625 | } |
| 7626 | return ACT_RET_PRS_ERR; |
Thierry FOURNIER | 258d8aa | 2015-02-16 20:23:40 +0100 | [diff] [blame] | 7627 | } |
| 7628 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7629 | static enum act_parse_ret action_register_service_http(const char **args, int *cur_arg, struct proxy *px, |
| 7630 | struct act_rule *rule, char **err) |
| 7631 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 7632 | struct hlua_function *fcn = rule->kw->private; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7633 | |
Thierry FOURNIER | 718e2a7 | 2015-12-20 20:13:14 +0100 | [diff] [blame] | 7634 | /* HTTP applets are forbidden in tcp-request rules. |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 7635 | * HTTP applet request requires everything initialized by |
Thierry FOURNIER | 718e2a7 | 2015-12-20 20:13:14 +0100 | [diff] [blame] | 7636 | * "http_process_request" (analyzer flag AN_REQ_HTTP_INNER). |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 7637 | * The applet will be immediately initialized, but its before |
Thierry FOURNIER | 718e2a7 | 2015-12-20 20:13:14 +0100 | [diff] [blame] | 7638 | * the call of this analyzer. |
| 7639 | */ |
| 7640 | if (rule->from != ACT_F_HTTP_REQ) { |
| 7641 | memprintf(err, "HTTP applets are forbidden from 'tcp-request' rulesets"); |
| 7642 | return ACT_RET_PRS_ERR; |
| 7643 | } |
| 7644 | |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7645 | /* Memory for the rule. */ |
| 7646 | rule->arg.hlua_rule = calloc(1, sizeof(*rule->arg.hlua_rule)); |
| 7647 | if (!rule->arg.hlua_rule) { |
| 7648 | memprintf(err, "out of memory error"); |
| 7649 | return ACT_RET_PRS_ERR; |
| 7650 | } |
| 7651 | |
| 7652 | /* Reference the Lua function and store the reference. */ |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7653 | rule->arg.hlua_rule->fcn = fcn; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7654 | |
| 7655 | /* TODO: later accept arguments. */ |
| 7656 | rule->arg.hlua_rule->args = NULL; |
| 7657 | |
| 7658 | /* Add applet pointer in the rule. */ |
| 7659 | rule->applet.obj_type = OBJ_TYPE_APPLET; |
| 7660 | rule->applet.name = fcn->name; |
| 7661 | rule->applet.init = hlua_applet_http_init; |
| 7662 | rule->applet.fct = hlua_applet_http_fct; |
| 7663 | rule->applet.release = hlua_applet_http_release; |
| 7664 | rule->applet.timeout = hlua_timeout_applet; |
| 7665 | |
| 7666 | return ACT_RET_PRS_OK; |
| 7667 | } |
| 7668 | |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7669 | /* This function is an LUA binding used for registering |
| 7670 | * "sample-conv" functions. It expects a converter name used |
| 7671 | * in the haproxy configuration file, and an LUA function. |
| 7672 | */ |
| 7673 | __LJMP static int hlua_register_action(lua_State *L) |
| 7674 | { |
Christopher Faulet | 4fc9da0 | 2021-04-12 15:08:12 +0200 | [diff] [blame] | 7675 | struct action_kw_list *akl = NULL; |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7676 | const char *name; |
| 7677 | int ref; |
| 7678 | int len; |
Christopher Faulet | 4fc9da0 | 2021-04-12 15:08:12 +0200 | [diff] [blame] | 7679 | struct hlua_function *fcn = NULL; |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 7680 | int nargs; |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 7681 | struct buffer *trash; |
| 7682 | struct action_kw *akw; |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7683 | |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 7684 | /* Initialise the number of expected arguments at 0. */ |
| 7685 | nargs = 0; |
| 7686 | |
| 7687 | if (lua_gettop(L) < 3 || lua_gettop(L) > 4) |
| 7688 | 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] | 7689 | |
| 7690 | /* First argument : converter name. */ |
| 7691 | name = MAY_LJMP(luaL_checkstring(L, 1)); |
| 7692 | |
| 7693 | /* Second argument : environment. */ |
| 7694 | if (lua_type(L, 2) != LUA_TTABLE) |
| 7695 | WILL_LJMP(luaL_error(L, "register_action: second argument must be a table of strings")); |
| 7696 | |
| 7697 | /* Third argument : lua function. */ |
| 7698 | ref = MAY_LJMP(hlua_checkfunction(L, 3)); |
| 7699 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 7700 | /* 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] | 7701 | if (lua_gettop(L) >= 4) |
| 7702 | nargs = MAY_LJMP(luaL_checkinteger(L, 4)); |
| 7703 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 7704 | /* browse the second argument as an array. */ |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7705 | lua_pushnil(L); |
| 7706 | while (lua_next(L, 2) != 0) { |
| 7707 | if (lua_type(L, -1) != LUA_TSTRING) |
| 7708 | WILL_LJMP(luaL_error(L, "register_action: second argument must be a table of strings")); |
| 7709 | |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 7710 | /* Check if action exists */ |
| 7711 | trash = get_trash_chunk(); |
| 7712 | chunk_printf(trash, "lua.%s", name); |
| 7713 | if (strcmp(lua_tostring(L, -1), "tcp-req") == 0) { |
| 7714 | akw = tcp_req_cont_action(trash->area); |
| 7715 | } else if (strcmp(lua_tostring(L, -1), "tcp-res") == 0) { |
| 7716 | akw = tcp_res_cont_action(trash->area); |
| 7717 | } else if (strcmp(lua_tostring(L, -1), "http-req") == 0) { |
| 7718 | akw = action_http_req_custom(trash->area); |
| 7719 | } else if (strcmp(lua_tostring(L, -1), "http-res") == 0) { |
| 7720 | akw = action_http_res_custom(trash->area); |
| 7721 | } else { |
| 7722 | akw = NULL; |
| 7723 | } |
| 7724 | if (akw != NULL) { |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 7725 | fcn = akw->private; |
| 7726 | if (fcn->function_ref[hlua_state_id] != -1) { |
| 7727 | ha_warning("Trying to register action 'lua.%s' more than once. " |
| 7728 | "This will become a hard error in version 2.5.\n", name); |
| 7729 | } |
| 7730 | fcn->function_ref[hlua_state_id] = ref; |
| 7731 | |
| 7732 | /* pop the environment string. */ |
| 7733 | lua_pop(L, 1); |
| 7734 | continue; |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 7735 | } |
| 7736 | |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7737 | /* Check required environment. Only accepted "http" or "tcp". */ |
| 7738 | /* Allocate and fill the sample fetch keyword struct. */ |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 7739 | akl = calloc(1, sizeof(*akl) + sizeof(struct action_kw) * 2); |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7740 | if (!akl) |
Christopher Faulet | 4fc9da0 | 2021-04-12 15:08:12 +0200 | [diff] [blame] | 7741 | goto alloc_error;; |
Thierry Fournier | 62a22aa | 2020-11-28 21:06:35 +0100 | [diff] [blame] | 7742 | fcn = new_hlua_function(); |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7743 | if (!fcn) |
Christopher Faulet | 4fc9da0 | 2021-04-12 15:08:12 +0200 | [diff] [blame] | 7744 | goto alloc_error; |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7745 | |
| 7746 | /* Fill fcn. */ |
| 7747 | fcn->name = strdup(name); |
| 7748 | if (!fcn->name) |
Christopher Faulet | 4fc9da0 | 2021-04-12 15:08:12 +0200 | [diff] [blame] | 7749 | goto alloc_error; |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 7750 | fcn->function_ref[hlua_state_id] = ref; |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7751 | |
Thayne McCombs | 8f0cc5c | 2021-01-07 21:35:52 -0700 | [diff] [blame] | 7752 | /* Set the expected number of arguments. */ |
Thierry FOURNIER / OZON.IO | 4b123be | 2016-12-09 18:03:31 +0100 | [diff] [blame] | 7753 | fcn->nargs = nargs; |
| 7754 | |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7755 | /* List head */ |
| 7756 | akl->list.n = akl->list.p = NULL; |
| 7757 | |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7758 | /* action keyword. */ |
| 7759 | len = strlen("lua.") + strlen(name) + 1; |
Thierry FOURNIER | 3c7a77c | 2015-09-26 00:51:16 +0200 | [diff] [blame] | 7760 | akl->kw[0].kw = calloc(1, len); |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7761 | if (!akl->kw[0].kw) |
Christopher Faulet | 4fc9da0 | 2021-04-12 15:08:12 +0200 | [diff] [blame] | 7762 | goto alloc_error; |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7763 | |
| 7764 | snprintf((char *)akl->kw[0].kw, len, "lua.%s", name); |
| 7765 | |
| 7766 | akl->kw[0].match_pfx = 0; |
| 7767 | akl->kw[0].private = fcn; |
| 7768 | akl->kw[0].parse = action_register_lua; |
| 7769 | |
| 7770 | /* select the action registering point. */ |
| 7771 | if (strcmp(lua_tostring(L, -1), "tcp-req") == 0) |
| 7772 | tcp_req_cont_keywords_register(akl); |
| 7773 | else if (strcmp(lua_tostring(L, -1), "tcp-res") == 0) |
| 7774 | tcp_res_cont_keywords_register(akl); |
| 7775 | else if (strcmp(lua_tostring(L, -1), "http-req") == 0) |
| 7776 | http_req_keywords_register(akl); |
| 7777 | else if (strcmp(lua_tostring(L, -1), "http-res") == 0) |
| 7778 | http_res_keywords_register(akl); |
Christopher Faulet | 4fc9da0 | 2021-04-12 15:08:12 +0200 | [diff] [blame] | 7779 | else { |
| 7780 | release_hlua_function(fcn); |
| 7781 | if (akl) |
| 7782 | ha_free((char **)&(akl->kw[0].kw)); |
| 7783 | ha_free(&akl); |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 7784 | WILL_LJMP(luaL_error(L, "Lua action environment '%s' is unknown. " |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7785 | "'tcp-req', 'tcp-res', 'http-req' or 'http-res' " |
| 7786 | "are expected.", lua_tostring(L, -1))); |
Christopher Faulet | 4fc9da0 | 2021-04-12 15:08:12 +0200 | [diff] [blame] | 7787 | } |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7788 | |
| 7789 | /* pop the environment string. */ |
| 7790 | lua_pop(L, 1); |
Christopher Faulet | 4fc9da0 | 2021-04-12 15:08:12 +0200 | [diff] [blame] | 7791 | |
| 7792 | /* reset for next loop */ |
| 7793 | akl = NULL; |
| 7794 | fcn = NULL; |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7795 | } |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7796 | return ACT_RET_PRS_OK; |
Christopher Faulet | 4fc9da0 | 2021-04-12 15:08:12 +0200 | [diff] [blame] | 7797 | |
| 7798 | alloc_error: |
| 7799 | release_hlua_function(fcn); |
| 7800 | ha_free(&akl); |
| 7801 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
| 7802 | return 0; /* Never reached */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7803 | } |
| 7804 | |
| 7805 | static enum act_parse_ret action_register_service_tcp(const char **args, int *cur_arg, struct proxy *px, |
| 7806 | struct act_rule *rule, char **err) |
| 7807 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 7808 | struct hlua_function *fcn = rule->kw->private; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7809 | |
Christopher Faulet | 280f85b | 2019-07-15 15:02:04 +0200 | [diff] [blame] | 7810 | if (px->mode == PR_MODE_HTTP) { |
| 7811 | memprintf(err, "Lua TCP services cannot be used on HTTP proxies"); |
Christopher Faulet | afd8f10 | 2018-11-08 11:34:21 +0100 | [diff] [blame] | 7812 | return ACT_RET_PRS_ERR; |
| 7813 | } |
| 7814 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7815 | /* Memory for the rule. */ |
| 7816 | rule->arg.hlua_rule = calloc(1, sizeof(*rule->arg.hlua_rule)); |
| 7817 | if (!rule->arg.hlua_rule) { |
| 7818 | memprintf(err, "out of memory error"); |
| 7819 | return ACT_RET_PRS_ERR; |
| 7820 | } |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7821 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7822 | /* Reference the Lua function and store the reference. */ |
Thierry Fournier | ad5345f | 2020-11-29 02:05:57 +0100 | [diff] [blame] | 7823 | rule->arg.hlua_rule->fcn = fcn; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7824 | |
| 7825 | /* TODO: later accept arguments. */ |
| 7826 | rule->arg.hlua_rule->args = NULL; |
| 7827 | |
| 7828 | /* Add applet pointer in the rule. */ |
| 7829 | rule->applet.obj_type = OBJ_TYPE_APPLET; |
| 7830 | rule->applet.name = fcn->name; |
| 7831 | rule->applet.init = hlua_applet_tcp_init; |
| 7832 | rule->applet.fct = hlua_applet_tcp_fct; |
| 7833 | rule->applet.release = hlua_applet_tcp_release; |
| 7834 | rule->applet.timeout = hlua_timeout_applet; |
| 7835 | |
| 7836 | return 0; |
| 7837 | } |
| 7838 | |
| 7839 | /* This function is an LUA binding used for registering |
| 7840 | * "sample-conv" functions. It expects a converter name used |
| 7841 | * in the haproxy configuration file, and an LUA function. |
| 7842 | */ |
| 7843 | __LJMP static int hlua_register_service(lua_State *L) |
| 7844 | { |
| 7845 | struct action_kw_list *akl; |
| 7846 | const char *name; |
| 7847 | const char *env; |
| 7848 | int ref; |
| 7849 | int len; |
Christopher Faulet | 5c028d7 | 2021-04-12 15:11:44 +0200 | [diff] [blame] | 7850 | struct hlua_function *fcn = NULL; |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 7851 | struct buffer *trash; |
| 7852 | struct action_kw *akw; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7853 | |
| 7854 | MAY_LJMP(check_args(L, 3, "register_service")); |
| 7855 | |
| 7856 | /* First argument : converter name. */ |
| 7857 | name = MAY_LJMP(luaL_checkstring(L, 1)); |
| 7858 | |
| 7859 | /* Second argument : environment. */ |
| 7860 | env = MAY_LJMP(luaL_checkstring(L, 2)); |
| 7861 | |
| 7862 | /* Third argument : lua function. */ |
| 7863 | ref = MAY_LJMP(hlua_checkfunction(L, 3)); |
| 7864 | |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 7865 | /* Check for service already registered */ |
| 7866 | trash = get_trash_chunk(); |
| 7867 | chunk_printf(trash, "lua.%s", name); |
| 7868 | akw = service_find(trash->area); |
| 7869 | if (akw != NULL) { |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 7870 | fcn = akw->private; |
| 7871 | if (fcn->function_ref[hlua_state_id] != -1) { |
| 7872 | ha_warning("Trying to register service 'lua.%s' more than once. " |
| 7873 | "This will become a hard error in version 2.5.\n", name); |
| 7874 | } |
| 7875 | fcn->function_ref[hlua_state_id] = ref; |
| 7876 | return 0; |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 7877 | } |
| 7878 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7879 | /* Allocate and fill the sample fetch keyword struct. */ |
| 7880 | akl = calloc(1, sizeof(*akl) + sizeof(struct action_kw) * 2); |
| 7881 | if (!akl) |
Christopher Faulet | 5c028d7 | 2021-04-12 15:11:44 +0200 | [diff] [blame] | 7882 | goto alloc_error; |
Thierry Fournier | 62a22aa | 2020-11-28 21:06:35 +0100 | [diff] [blame] | 7883 | fcn = new_hlua_function(); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7884 | if (!fcn) |
Christopher Faulet | 5c028d7 | 2021-04-12 15:11:44 +0200 | [diff] [blame] | 7885 | goto alloc_error; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7886 | |
| 7887 | /* Fill fcn. */ |
| 7888 | len = strlen("<lua.>") + strlen(name) + 1; |
| 7889 | fcn->name = calloc(1, len); |
| 7890 | if (!fcn->name) |
Christopher Faulet | 5c028d7 | 2021-04-12 15:11:44 +0200 | [diff] [blame] | 7891 | goto alloc_error; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7892 | snprintf((char *)fcn->name, len, "<lua.%s>", name); |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 7893 | fcn->function_ref[hlua_state_id] = ref; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7894 | |
| 7895 | /* List head */ |
| 7896 | akl->list.n = akl->list.p = NULL; |
| 7897 | |
| 7898 | /* converter keyword. */ |
| 7899 | len = strlen("lua.") + strlen(name) + 1; |
| 7900 | akl->kw[0].kw = calloc(1, len); |
| 7901 | if (!akl->kw[0].kw) |
Christopher Faulet | 5c028d7 | 2021-04-12 15:11:44 +0200 | [diff] [blame] | 7902 | goto alloc_error; |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7903 | |
| 7904 | snprintf((char *)akl->kw[0].kw, len, "lua.%s", name); |
| 7905 | |
Thierry FOURNIER / OZON.IO | 02564fd | 2016-11-12 11:07:05 +0100 | [diff] [blame] | 7906 | /* Check required environment. Only accepted "http" or "tcp". */ |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7907 | if (strcmp(env, "tcp") == 0) |
| 7908 | akl->kw[0].parse = action_register_service_tcp; |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 7909 | else if (strcmp(env, "http") == 0) |
| 7910 | akl->kw[0].parse = action_register_service_http; |
Christopher Faulet | 5c028d7 | 2021-04-12 15:11:44 +0200 | [diff] [blame] | 7911 | else { |
| 7912 | release_hlua_function(fcn); |
| 7913 | if (akl) |
| 7914 | ha_free((char **)&(akl->kw[0].kw)); |
| 7915 | ha_free(&akl); |
Thierry FOURNIER | 2986c0d | 2018-02-25 14:32:36 +0100 | [diff] [blame] | 7916 | WILL_LJMP(luaL_error(L, "Lua service environment '%s' is unknown. " |
Eric Salama | fe7456f | 2017-12-21 14:30:07 +0100 | [diff] [blame] | 7917 | "'tcp' or 'http' are expected.", env)); |
Christopher Faulet | 5c028d7 | 2021-04-12 15:11:44 +0200 | [diff] [blame] | 7918 | } |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 7919 | |
| 7920 | akl->kw[0].match_pfx = 0; |
| 7921 | akl->kw[0].private = fcn; |
| 7922 | |
| 7923 | /* End of array. */ |
| 7924 | memset(&akl->kw[1], 0, sizeof(*akl->kw)); |
| 7925 | |
| 7926 | /* Register this new converter */ |
| 7927 | service_keywords_register(akl); |
| 7928 | |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7929 | return 0; |
Christopher Faulet | 5c028d7 | 2021-04-12 15:11:44 +0200 | [diff] [blame] | 7930 | |
| 7931 | alloc_error: |
| 7932 | release_hlua_function(fcn); |
| 7933 | ha_free(&akl); |
| 7934 | WILL_LJMP(luaL_error(L, "Lua out of memory error.")); |
| 7935 | return 0; /* Never reached */ |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 7936 | } |
| 7937 | |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7938 | /* This function initialises Lua cli handler. It copies the |
| 7939 | * arguments in the Lua stack and create channel IO objects. |
| 7940 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 7941 | 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] | 7942 | { |
| 7943 | struct hlua *hlua; |
| 7944 | struct hlua_function *fcn; |
| 7945 | int i; |
| 7946 | const char *error; |
| 7947 | |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7948 | fcn = private; |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7949 | appctx->ctx.hlua_cli.fcn = private; |
| 7950 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 7951 | hlua = pool_alloc(pool_head_hlua); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7952 | if (!hlua) { |
| 7953 | SEND_ERR(NULL, "Lua cli '%s': out of memory.\n", fcn->name); |
Thierry FOURNIER | 1be3415 | 2016-12-17 12:09:51 +0100 | [diff] [blame] | 7954 | return 1; |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 7955 | } |
| 7956 | HLUA_INIT(hlua); |
| 7957 | appctx->ctx.hlua_cli.hlua = hlua; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7958 | |
| 7959 | /* Create task used by signal to wakeup applets. |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 7960 | * 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] | 7961 | * applet_http. It is absolutely compatible. |
| 7962 | */ |
Willy Tarreau | 5f4a47b | 2017-10-31 15:59:32 +0100 | [diff] [blame] | 7963 | appctx->ctx.hlua_cli.task = task_new(tid_bit); |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7964 | if (!appctx->ctx.hlua_cli.task) { |
Thierry FOURNIER | ffbf569 | 2016-12-16 11:14:06 +0100 | [diff] [blame] | 7965 | SEND_ERR(NULL, "Lua cli '%s': out of memory.\n", fcn->name); |
Thierry FOURNIER | 1be3415 | 2016-12-17 12:09:51 +0100 | [diff] [blame] | 7966 | goto error; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7967 | } |
| 7968 | appctx->ctx.hlua_cli.task->nice = 0; |
| 7969 | appctx->ctx.hlua_cli.task->context = appctx; |
| 7970 | appctx->ctx.hlua_cli.task->process = hlua_applet_wakeup; |
| 7971 | |
| 7972 | /* Initialises the Lua context */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 7973 | 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] | 7974 | 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] | 7975 | goto error; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7976 | } |
| 7977 | |
| 7978 | /* The following Lua calls can fail. */ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 7979 | if (!SET_SAFE_LJMP(hlua)) { |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7980 | if (lua_type(hlua->T, -1) == LUA_TSTRING) |
| 7981 | error = lua_tostring(hlua->T, -1); |
| 7982 | else |
| 7983 | error = "critical error"; |
| 7984 | SEND_ERR(NULL, "Lua cli '%s': %s.\n", fcn->name, error); |
| 7985 | goto error; |
| 7986 | } |
| 7987 | |
| 7988 | /* Check stack available size. */ |
| 7989 | if (!lua_checkstack(hlua->T, 2)) { |
| 7990 | SEND_ERR(NULL, "Lua cli '%s': full stack.\n", fcn->name); |
| 7991 | goto error; |
| 7992 | } |
| 7993 | |
| 7994 | /* Restore the function in the stack. */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 7995 | 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] | 7996 | |
| 7997 | /* Once the arguments parsed, the CLI is like an AppletTCP, |
| 7998 | * so push AppletTCP in the stack. |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 7999 | */ |
| 8000 | if (!hlua_applet_tcp_new(hlua->T, appctx)) { |
| 8001 | SEND_ERR(NULL, "Lua cli '%s': full stack.\n", fcn->name); |
| 8002 | goto error; |
| 8003 | } |
| 8004 | hlua->nargs = 1; |
| 8005 | |
| 8006 | /* push keywords in the stack. */ |
| 8007 | for (i = 0; *args[i]; i++) { |
| 8008 | /* Check stack available size. */ |
| 8009 | if (!lua_checkstack(hlua->T, 1)) { |
| 8010 | SEND_ERR(NULL, "Lua cli '%s': full stack.\n", fcn->name); |
| 8011 | goto error; |
| 8012 | } |
| 8013 | lua_pushstring(hlua->T, args[i]); |
| 8014 | hlua->nargs++; |
| 8015 | } |
| 8016 | |
| 8017 | /* We must initialize the execution timeouts. */ |
| 8018 | hlua->max_time = hlua_timeout_session; |
| 8019 | |
| 8020 | /* At this point the execution is safe. */ |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 8021 | RESET_SAFE_LJMP(hlua); |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 8022 | |
| 8023 | /* It's ok */ |
| 8024 | return 0; |
| 8025 | |
| 8026 | /* It's not ok. */ |
| 8027 | error: |
Thierry Fournier | 7cbe504 | 2020-11-28 17:02:21 +0100 | [diff] [blame] | 8028 | RESET_SAFE_LJMP(hlua); |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 8029 | hlua_ctx_destroy(hlua); |
Thierry FOURNIER | 1be3415 | 2016-12-17 12:09:51 +0100 | [diff] [blame] | 8030 | appctx->ctx.hlua_cli.hlua = NULL; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 8031 | return 1; |
| 8032 | } |
| 8033 | |
| 8034 | static int hlua_cli_io_handler_fct(struct appctx *appctx) |
| 8035 | { |
| 8036 | struct hlua *hlua; |
| 8037 | struct stream_interface *si; |
| 8038 | struct hlua_function *fcn; |
| 8039 | |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 8040 | hlua = appctx->ctx.hlua_cli.hlua; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 8041 | si = appctx->owner; |
Willy Tarreau | 8ae4f75 | 2016-12-14 15:41:45 +0100 | [diff] [blame] | 8042 | fcn = appctx->ctx.hlua_cli.fcn; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 8043 | |
| 8044 | /* If the stream is disconnect or closed, ldo nothing. */ |
| 8045 | if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) |
| 8046 | return 1; |
| 8047 | |
| 8048 | /* Execute the function. */ |
| 8049 | switch (hlua_ctx_resume(hlua, 1)) { |
| 8050 | |
| 8051 | /* finished. */ |
| 8052 | case HLUA_E_OK: |
| 8053 | return 1; |
| 8054 | |
| 8055 | /* yield. */ |
| 8056 | case HLUA_E_AGAIN: |
| 8057 | /* We want write. */ |
| 8058 | if (HLUA_IS_WAKERESWR(hlua)) |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 8059 | si_rx_room_blk(si); |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 8060 | /* Set the timeout. */ |
| 8061 | if (hlua->wake_time != TICK_ETERNITY) |
| 8062 | task_schedule(hlua->task, hlua->wake_time); |
| 8063 | return 0; |
| 8064 | |
| 8065 | /* finished with error. */ |
| 8066 | case HLUA_E_ERRMSG: |
| 8067 | /* Display log. */ |
| 8068 | SEND_ERR(NULL, "Lua cli '%s': %s.\n", |
| 8069 | fcn->name, lua_tostring(hlua->T, -1)); |
| 8070 | lua_pop(hlua->T, 1); |
| 8071 | return 1; |
| 8072 | |
Thierry Fournier | d5b073c | 2018-05-21 19:42:47 +0200 | [diff] [blame] | 8073 | case HLUA_E_ETMOUT: |
| 8074 | SEND_ERR(NULL, "Lua converter '%s': execution timeout.\n", |
| 8075 | fcn->name); |
| 8076 | return 1; |
| 8077 | |
| 8078 | case HLUA_E_NOMEM: |
| 8079 | SEND_ERR(NULL, "Lua converter '%s': out of memory error.\n", |
| 8080 | fcn->name); |
| 8081 | return 1; |
| 8082 | |
| 8083 | case HLUA_E_YIELD: /* unexpected */ |
| 8084 | SEND_ERR(NULL, "Lua converter '%s': yield not allowed.\n", |
| 8085 | fcn->name); |
| 8086 | return 1; |
| 8087 | |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 8088 | case HLUA_E_ERR: |
| 8089 | /* Display log. */ |
| 8090 | SEND_ERR(NULL, "Lua cli '%s' return an unknown error.\n", |
| 8091 | fcn->name); |
| 8092 | return 1; |
| 8093 | |
| 8094 | default: |
| 8095 | return 1; |
| 8096 | } |
| 8097 | |
| 8098 | return 1; |
| 8099 | } |
| 8100 | |
| 8101 | static void hlua_cli_io_release_fct(struct appctx *appctx) |
| 8102 | { |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 8103 | hlua_ctx_destroy(appctx->ctx.hlua_cli.hlua); |
Thierry FOURNIER | ebed6e9 | 2016-12-16 11:54:07 +0100 | [diff] [blame] | 8104 | appctx->ctx.hlua_cli.hlua = NULL; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 8105 | } |
| 8106 | |
| 8107 | /* This function is an LUA binding used for registering |
| 8108 | * new keywords in the cli. It expects a list of keywords |
| 8109 | * which are the "path". It is limited to 5 keywords. A |
| 8110 | * description of the command, a function to be executed |
| 8111 | * for the parsing and a function for io handlers. |
| 8112 | */ |
| 8113 | __LJMP static int hlua_register_cli(lua_State *L) |
| 8114 | { |
| 8115 | struct cli_kw_list *cli_kws; |
| 8116 | const char *message; |
| 8117 | int ref_io; |
| 8118 | int len; |
Christopher Faulet | 3a9a12b | 2021-04-12 15:31:29 +0200 | [diff] [blame] | 8119 | struct hlua_function *fcn = NULL; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 8120 | int index; |
| 8121 | int i; |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 8122 | struct buffer *trash; |
| 8123 | const char *kw[5]; |
| 8124 | struct cli_kw *cli_kw; |
Christopher Faulet | 3a9a12b | 2021-04-12 15:31:29 +0200 | [diff] [blame] | 8125 | const char *errmsg; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 8126 | |
| 8127 | MAY_LJMP(check_args(L, 3, "register_cli")); |
| 8128 | |
| 8129 | /* First argument : an array of maximum 5 keywords. */ |
| 8130 | if (!lua_istable(L, 1)) |
| 8131 | WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table")); |
| 8132 | |
| 8133 | /* Second argument : string with contextual message. */ |
| 8134 | message = MAY_LJMP(luaL_checkstring(L, 2)); |
| 8135 | |
| 8136 | /* Third and fourth argument : lua function. */ |
| 8137 | ref_io = MAY_LJMP(hlua_checkfunction(L, 3)); |
| 8138 | |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 8139 | /* Check for CLI service already registered */ |
| 8140 | trash = get_trash_chunk(); |
| 8141 | index = 0; |
| 8142 | lua_pushnil(L); |
| 8143 | memset(kw, 0, sizeof(kw)); |
| 8144 | while (lua_next(L, 1) != 0) { |
| 8145 | if (index >= CLI_PREFIX_KW_NB) |
| 8146 | WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table with a maximum of 5 entries")); |
| 8147 | if (lua_type(L, -1) != LUA_TSTRING) |
| 8148 | WILL_LJMP(luaL_argerror(L, 1, "1st argument must be a table filled with strings")); |
| 8149 | kw[index] = lua_tostring(L, -1); |
| 8150 | if (index == 0) |
| 8151 | chunk_printf(trash, "%s", kw[index]); |
| 8152 | else |
| 8153 | chunk_appendf(trash, " %s", kw[index]); |
| 8154 | index++; |
| 8155 | lua_pop(L, 1); |
| 8156 | } |
| 8157 | cli_kw = cli_find_kw_exact((char **)kw); |
| 8158 | if (cli_kw != NULL) { |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 8159 | fcn = cli_kw->private; |
| 8160 | if (fcn->function_ref[hlua_state_id] != -1) { |
| 8161 | ha_warning("Trying to register CLI keyword 'lua.%s' more than once. " |
| 8162 | "This will become a hard error in version 2.5.\n", trash->area); |
| 8163 | } |
| 8164 | fcn->function_ref[hlua_state_id] = ref_io; |
| 8165 | return 0; |
Thierry Fournier | f67442e | 2020-11-28 20:41:07 +0100 | [diff] [blame] | 8166 | } |
| 8167 | |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 8168 | /* Allocate and fill the sample fetch keyword struct. */ |
| 8169 | cli_kws = calloc(1, sizeof(*cli_kws) + sizeof(struct cli_kw) * 2); |
Christopher Faulet | 3a9a12b | 2021-04-12 15:31:29 +0200 | [diff] [blame] | 8170 | if (!cli_kws) { |
| 8171 | errmsg = "Lua out of memory error."; |
| 8172 | goto error; |
| 8173 | } |
Thierry Fournier | 62a22aa | 2020-11-28 21:06:35 +0100 | [diff] [blame] | 8174 | fcn = new_hlua_function(); |
Christopher Faulet | 3a9a12b | 2021-04-12 15:31:29 +0200 | [diff] [blame] | 8175 | if (!fcn) { |
| 8176 | errmsg = "Lua out of memory error."; |
| 8177 | goto error; |
| 8178 | } |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 8179 | |
| 8180 | /* Fill path. */ |
| 8181 | index = 0; |
| 8182 | lua_pushnil(L); |
| 8183 | while(lua_next(L, 1) != 0) { |
Christopher Faulet | 3a9a12b | 2021-04-12 15:31:29 +0200 | [diff] [blame] | 8184 | if (index >= 5) { |
| 8185 | errmsg = "1st argument must be a table with a maximum of 5 entries"; |
| 8186 | goto error; |
| 8187 | } |
| 8188 | if (lua_type(L, -1) != LUA_TSTRING) { |
| 8189 | errmsg = "1st argument must be a table filled with strings"; |
| 8190 | goto error; |
| 8191 | } |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 8192 | cli_kws->kw[0].str_kw[index] = strdup(lua_tostring(L, -1)); |
Christopher Faulet | 3a9a12b | 2021-04-12 15:31:29 +0200 | [diff] [blame] | 8193 | if (!cli_kws->kw[0].str_kw[index]) { |
| 8194 | errmsg = "Lua out of memory error."; |
| 8195 | goto error; |
| 8196 | } |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 8197 | index++; |
| 8198 | lua_pop(L, 1); |
| 8199 | } |
| 8200 | |
| 8201 | /* Copy help message. */ |
| 8202 | cli_kws->kw[0].usage = strdup(message); |
Christopher Faulet | 3a9a12b | 2021-04-12 15:31:29 +0200 | [diff] [blame] | 8203 | if (!cli_kws->kw[0].usage) { |
| 8204 | errmsg = "Lua out of memory error."; |
| 8205 | goto error; |
| 8206 | } |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 8207 | |
| 8208 | /* Fill fcn io handler. */ |
| 8209 | len = strlen("<lua.cli>") + 1; |
| 8210 | for (i = 0; i < index; i++) |
| 8211 | len += strlen(cli_kws->kw[0].str_kw[i]) + 1; |
| 8212 | fcn->name = calloc(1, len); |
Christopher Faulet | 3a9a12b | 2021-04-12 15:31:29 +0200 | [diff] [blame] | 8213 | if (!fcn->name) { |
| 8214 | errmsg = "Lua out of memory error."; |
| 8215 | goto error; |
| 8216 | } |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 8217 | strncat((char *)fcn->name, "<lua.cli", len); |
| 8218 | for (i = 0; i < index; i++) { |
| 8219 | strncat((char *)fcn->name, ".", len); |
| 8220 | strncat((char *)fcn->name, cli_kws->kw[0].str_kw[i], len); |
| 8221 | } |
| 8222 | strncat((char *)fcn->name, ">", len); |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 8223 | fcn->function_ref[hlua_state_id] = ref_io; |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 8224 | |
| 8225 | /* Fill last entries. */ |
| 8226 | cli_kws->kw[0].private = fcn; |
| 8227 | cli_kws->kw[0].parse = hlua_cli_parse_fct; |
| 8228 | cli_kws->kw[0].io_handler = hlua_cli_io_handler_fct; |
| 8229 | cli_kws->kw[0].io_release = hlua_cli_io_release_fct; |
| 8230 | |
| 8231 | /* Register this new converter */ |
| 8232 | cli_register_kw(cli_kws); |
| 8233 | |
| 8234 | return 0; |
Christopher Faulet | 3a9a12b | 2021-04-12 15:31:29 +0200 | [diff] [blame] | 8235 | |
| 8236 | error: |
| 8237 | release_hlua_function(fcn); |
| 8238 | if (cli_kws) { |
| 8239 | for (i = 0; i < index; i++) |
| 8240 | ha_free((char **)&(cli_kws->kw[0].str_kw[i])); |
| 8241 | ha_free((char **)&(cli_kws->kw[0].usage)); |
| 8242 | } |
| 8243 | ha_free(&cli_kws); |
| 8244 | WILL_LJMP(luaL_error(L, errmsg)); |
| 8245 | return 0; /* Never reached */ |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 8246 | } |
| 8247 | |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 8248 | 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] | 8249 | const struct proxy *defpx, const char *file, int line, |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 8250 | char **err, unsigned int *timeout) |
| 8251 | { |
| 8252 | const char *error; |
| 8253 | |
| 8254 | error = parse_time_err(args[1], timeout, TIME_UNIT_MS); |
Willy Tarreau | 9faebe3 | 2019-06-07 19:00:37 +0200 | [diff] [blame] | 8255 | if (error == PARSE_TIME_OVER) { |
| 8256 | memprintf(err, "timer overflow in argument <%s> to <%s> (maximum value is 2147483647 ms or ~24.8 days)", |
| 8257 | args[1], args[0]); |
| 8258 | return -1; |
| 8259 | } |
| 8260 | else if (error == PARSE_TIME_UNDER) { |
| 8261 | memprintf(err, "timer underflow in argument <%s> to <%s> (minimum non-null value is 1 ms)", |
| 8262 | args[1], args[0]); |
| 8263 | return -1; |
| 8264 | } |
| 8265 | else if (error) { |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 8266 | memprintf(err, "%s: invalid timeout", args[0]); |
| 8267 | return -1; |
| 8268 | } |
| 8269 | return 0; |
| 8270 | } |
| 8271 | |
| 8272 | 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] | 8273 | const struct proxy *defpx, const char *file, int line, |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 8274 | char **err) |
| 8275 | { |
| 8276 | return hlua_read_timeout(args, section_type, curpx, defpx, |
| 8277 | file, line, err, &hlua_timeout_session); |
| 8278 | } |
| 8279 | |
| 8280 | 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] | 8281 | const struct proxy *defpx, const char *file, int line, |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 8282 | char **err) |
| 8283 | { |
| 8284 | return hlua_read_timeout(args, section_type, curpx, defpx, |
| 8285 | file, line, err, &hlua_timeout_task); |
| 8286 | } |
| 8287 | |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 8288 | 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] | 8289 | const struct proxy *defpx, const char *file, int line, |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 8290 | char **err) |
| 8291 | { |
| 8292 | return hlua_read_timeout(args, section_type, curpx, defpx, |
| 8293 | file, line, err, &hlua_timeout_applet); |
| 8294 | } |
| 8295 | |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 8296 | 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] | 8297 | const struct proxy *defpx, const char *file, int line, |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 8298 | char **err) |
| 8299 | { |
| 8300 | char *error; |
| 8301 | |
| 8302 | hlua_nb_instruction = strtoll(args[1], &error, 10); |
| 8303 | if (*error != '\0') { |
| 8304 | memprintf(err, "%s: invalid number", args[0]); |
| 8305 | return -1; |
| 8306 | } |
| 8307 | return 0; |
| 8308 | } |
| 8309 | |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 8310 | 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] | 8311 | const struct proxy *defpx, const char *file, int line, |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 8312 | char **err) |
| 8313 | { |
| 8314 | char *error; |
| 8315 | |
| 8316 | if (*(args[1]) == 0) { |
| 8317 | memprintf(err, "'%s' expects an integer argument (Lua memory size in MB).\n", args[0]); |
| 8318 | return -1; |
| 8319 | } |
| 8320 | hlua_global_allocator.limit = strtoll(args[1], &error, 10) * 1024L * 1024L; |
| 8321 | if (*error != '\0') { |
| 8322 | memprintf(err, "%s: invalid number %s (error at '%c')", args[0], args[1], *error); |
| 8323 | return -1; |
| 8324 | } |
| 8325 | return 0; |
| 8326 | } |
| 8327 | |
| 8328 | |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 8329 | /* This function is called by the main configuration key "lua-load". It loads and |
| 8330 | * execute an lua file during the parsing of the HAProxy configuration file. It is |
| 8331 | * the main lua entry point. |
| 8332 | * |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 8333 | * This function runs with the HAProxy keywords API. It returns -1 if an error |
| 8334 | * occurs, otherwise it returns 0. |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 8335 | * |
| 8336 | * In some error case, LUA set an error message in top of the stack. This function |
| 8337 | * 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] | 8338 | * |
| 8339 | * This function can fail with an abort() due to an Lua critical error. |
| 8340 | * We are in the configuration parsing process of HAProxy, this abort() is |
| 8341 | * tolerated. |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 8342 | */ |
Thierry Fournier | c93c15c | 2020-11-28 15:02:13 +0100 | [diff] [blame] | 8343 | static int hlua_load_state(char *filename, lua_State *L, char **err) |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 8344 | { |
| 8345 | int error; |
| 8346 | |
| 8347 | /* Just load and compile the file. */ |
Thierry Fournier | c93c15c | 2020-11-28 15:02:13 +0100 | [diff] [blame] | 8348 | error = luaL_loadfile(L, filename); |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 8349 | if (error) { |
Thierry Fournier | c93c15c | 2020-11-28 15:02:13 +0100 | [diff] [blame] | 8350 | memprintf(err, "error in Lua file '%s': %s", filename, lua_tostring(L, -1)); |
| 8351 | lua_pop(L, 1); |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 8352 | return -1; |
| 8353 | } |
| 8354 | |
| 8355 | /* If no syntax error where detected, execute the code. */ |
Thierry Fournier | c93c15c | 2020-11-28 15:02:13 +0100 | [diff] [blame] | 8356 | error = lua_pcall(L, 0, LUA_MULTRET, 0); |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 8357 | switch (error) { |
| 8358 | case LUA_OK: |
| 8359 | break; |
| 8360 | case LUA_ERRRUN: |
Thierry Fournier | c93c15c | 2020-11-28 15:02:13 +0100 | [diff] [blame] | 8361 | memprintf(err, "Lua runtime error: %s\n", lua_tostring(L, -1)); |
| 8362 | lua_pop(L, 1); |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 8363 | return -1; |
| 8364 | case LUA_ERRMEM: |
Thierry Fournier | de6145f | 2020-11-29 00:55:53 +0100 | [diff] [blame] | 8365 | memprintf(err, "Lua out of memory error\n"); |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 8366 | return -1; |
| 8367 | case LUA_ERRERR: |
Thierry Fournier | c93c15c | 2020-11-28 15:02:13 +0100 | [diff] [blame] | 8368 | memprintf(err, "Lua message handler error: %s\n", lua_tostring(L, -1)); |
| 8369 | lua_pop(L, 1); |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 8370 | return -1; |
Christopher Faulet | 08ed98f | 2020-07-28 10:33:25 +0200 | [diff] [blame] | 8371 | #if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM <= 503 |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 8372 | case LUA_ERRGCMM: |
Thierry Fournier | c93c15c | 2020-11-28 15:02:13 +0100 | [diff] [blame] | 8373 | memprintf(err, "Lua garbage collector error: %s\n", lua_tostring(L, -1)); |
| 8374 | lua_pop(L, 1); |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 8375 | return -1; |
Christopher Faulet | 08ed98f | 2020-07-28 10:33:25 +0200 | [diff] [blame] | 8376 | #endif |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 8377 | default: |
Thierry Fournier | c93c15c | 2020-11-28 15:02:13 +0100 | [diff] [blame] | 8378 | memprintf(err, "Lua unknown error: %s\n", lua_tostring(L, -1)); |
| 8379 | lua_pop(L, 1); |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 8380 | return -1; |
| 8381 | } |
| 8382 | |
| 8383 | return 0; |
| 8384 | } |
| 8385 | |
Thierry Fournier | c93c15c | 2020-11-28 15:02:13 +0100 | [diff] [blame] | 8386 | static int hlua_load(char **args, int section_type, struct proxy *curpx, |
Willy Tarreau | 0182516 | 2021-03-09 09:53:46 +0100 | [diff] [blame] | 8387 | const struct proxy *defpx, const char *file, int line, |
Thierry Fournier | c93c15c | 2020-11-28 15:02:13 +0100 | [diff] [blame] | 8388 | char **err) |
| 8389 | { |
| 8390 | if (*(args[1]) == 0) { |
| 8391 | memprintf(err, "'%s' expects a file name as parameter.\n", args[0]); |
| 8392 | return -1; |
| 8393 | } |
| 8394 | |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 8395 | /* loading for global state */ |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 8396 | hlua_state_id = 0; |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 8397 | ha_set_tid(0); |
Thierry Fournier | afc63e2 | 2020-11-28 17:06:51 +0100 | [diff] [blame] | 8398 | return hlua_load_state(args[1], hlua_states[0], err); |
Thierry Fournier | c93c15c | 2020-11-28 15:02:13 +0100 | [diff] [blame] | 8399 | } |
| 8400 | |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 8401 | 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] | 8402 | const struct proxy *defpx, const char *file, int line, |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 8403 | char **err) |
| 8404 | { |
| 8405 | int len; |
| 8406 | |
| 8407 | if (*(args[1]) == 0) { |
| 8408 | memprintf(err, "'%s' expects a file as parameter.\n", args[0]); |
| 8409 | return -1; |
| 8410 | } |
| 8411 | |
| 8412 | if (per_thread_load == NULL) { |
| 8413 | /* allocate the first entry large enough to store the final NULL */ |
| 8414 | per_thread_load = calloc(1, sizeof(*per_thread_load)); |
| 8415 | if (per_thread_load == NULL) { |
| 8416 | memprintf(err, "out of memory error"); |
| 8417 | return -1; |
| 8418 | } |
| 8419 | } |
| 8420 | |
| 8421 | /* count used entries */ |
| 8422 | for (len = 0; per_thread_load[len] != NULL; len++) |
| 8423 | ; |
| 8424 | |
| 8425 | per_thread_load = realloc(per_thread_load, (len + 2) * sizeof(*per_thread_load)); |
| 8426 | if (per_thread_load == NULL) { |
| 8427 | memprintf(err, "out of memory error"); |
| 8428 | return -1; |
| 8429 | } |
| 8430 | |
| 8431 | per_thread_load[len] = strdup(args[1]); |
| 8432 | per_thread_load[len + 1] = NULL; |
| 8433 | |
| 8434 | if (per_thread_load[len] == NULL) { |
| 8435 | memprintf(err, "out of memory error"); |
| 8436 | return -1; |
| 8437 | } |
| 8438 | |
| 8439 | /* loading for thread 1 only */ |
| 8440 | hlua_state_id = 1; |
| 8441 | ha_set_tid(0); |
| 8442 | return hlua_load_state(args[1], hlua_states[1], err); |
| 8443 | } |
| 8444 | |
Tim Duesterhus | c9fc9f2 | 2020-01-12 13:55:39 +0100 | [diff] [blame] | 8445 | /* Prepend the given <path> followed by a semicolon to the `package.<type>` variable |
| 8446 | * in the given <ctx>. |
| 8447 | */ |
Thierry Fournier | 3fb9e51 | 2020-11-28 10:13:12 +0100 | [diff] [blame] | 8448 | static int hlua_prepend_path(lua_State *L, char *type, char *path) |
Tim Duesterhus | c9fc9f2 | 2020-01-12 13:55:39 +0100 | [diff] [blame] | 8449 | { |
Thierry Fournier | 3fb9e51 | 2020-11-28 10:13:12 +0100 | [diff] [blame] | 8450 | lua_getglobal(L, "package"); /* push package variable */ |
| 8451 | lua_pushstring(L, path); /* push given path */ |
| 8452 | lua_pushstring(L, ";"); /* push semicolon */ |
| 8453 | lua_getfield(L, -3, type); /* push old path */ |
| 8454 | lua_concat(L, 3); /* concatenate to new path */ |
| 8455 | lua_setfield(L, -2, type); /* store new path */ |
| 8456 | lua_pop(L, 1); /* pop package variable */ |
Tim Duesterhus | c9fc9f2 | 2020-01-12 13:55:39 +0100 | [diff] [blame] | 8457 | |
| 8458 | return 0; |
| 8459 | } |
| 8460 | |
Tim Duesterhus | dd74b5f | 2020-01-12 13:55:40 +0100 | [diff] [blame] | 8461 | 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] | 8462 | const struct proxy *defpx, const char *file, int line, |
Tim Duesterhus | dd74b5f | 2020-01-12 13:55:40 +0100 | [diff] [blame] | 8463 | char **err) |
| 8464 | { |
| 8465 | char *path; |
| 8466 | char *type = "path"; |
Tim Duesterhus | 621e74a | 2021-01-03 20:04:36 +0100 | [diff] [blame] | 8467 | struct prepend_path *p = NULL; |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 8468 | |
Tim Duesterhus | dd74b5f | 2020-01-12 13:55:40 +0100 | [diff] [blame] | 8469 | if (too_many_args(2, args, err, NULL)) { |
Tim Duesterhus | 621e74a | 2021-01-03 20:04:36 +0100 | [diff] [blame] | 8470 | goto err; |
Tim Duesterhus | dd74b5f | 2020-01-12 13:55:40 +0100 | [diff] [blame] | 8471 | } |
| 8472 | |
| 8473 | if (!(*args[1])) { |
| 8474 | memprintf(err, "'%s' expects to receive a <path> as argument", args[0]); |
Tim Duesterhus | 621e74a | 2021-01-03 20:04:36 +0100 | [diff] [blame] | 8475 | goto err; |
Tim Duesterhus | dd74b5f | 2020-01-12 13:55:40 +0100 | [diff] [blame] | 8476 | } |
| 8477 | path = args[1]; |
| 8478 | |
| 8479 | if (*args[2]) { |
| 8480 | if (strcmp(args[2], "path") != 0 && strcmp(args[2], "cpath") != 0) { |
| 8481 | 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] | 8482 | goto err; |
Tim Duesterhus | dd74b5f | 2020-01-12 13:55:40 +0100 | [diff] [blame] | 8483 | } |
| 8484 | type = args[2]; |
| 8485 | } |
| 8486 | |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 8487 | p = calloc(1, sizeof(*p)); |
| 8488 | if (p == NULL) { |
Tim Duesterhus | f89d43a | 2021-01-03 20:04:37 +0100 | [diff] [blame] | 8489 | memprintf(err, "memory allocation failed"); |
Tim Duesterhus | 621e74a | 2021-01-03 20:04:36 +0100 | [diff] [blame] | 8490 | goto err; |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 8491 | } |
| 8492 | p->path = strdup(path); |
| 8493 | if (p->path == NULL) { |
Tim Duesterhus | f89d43a | 2021-01-03 20:04:37 +0100 | [diff] [blame] | 8494 | memprintf(err, "memory allocation failed"); |
Tim Duesterhus | 621e74a | 2021-01-03 20:04:36 +0100 | [diff] [blame] | 8495 | goto err2; |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 8496 | } |
| 8497 | p->type = strdup(type); |
| 8498 | if (p->type == NULL) { |
Tim Duesterhus | f89d43a | 2021-01-03 20:04:37 +0100 | [diff] [blame] | 8499 | memprintf(err, "memory allocation failed"); |
Tim Duesterhus | 621e74a | 2021-01-03 20:04:36 +0100 | [diff] [blame] | 8500 | goto err2; |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 8501 | } |
| 8502 | LIST_ADDQ(&prepend_path_list, &p->l); |
| 8503 | |
| 8504 | hlua_prepend_path(hlua_states[0], type, path); |
| 8505 | hlua_prepend_path(hlua_states[1], type, path); |
| 8506 | return 0; |
Tim Duesterhus | 621e74a | 2021-01-03 20:04:36 +0100 | [diff] [blame] | 8507 | |
| 8508 | err2: |
| 8509 | free(p->type); |
| 8510 | free(p->path); |
| 8511 | err: |
| 8512 | free(p); |
| 8513 | return -1; |
Tim Duesterhus | dd74b5f | 2020-01-12 13:55:40 +0100 | [diff] [blame] | 8514 | } |
| 8515 | |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 8516 | /* configuration keywords declaration */ |
| 8517 | static struct cfg_kw_list cfg_kws = {{ },{ |
Tim Duesterhus | dd74b5f | 2020-01-12 13:55:40 +0100 | [diff] [blame] | 8518 | { CFG_GLOBAL, "lua-prepend-path", hlua_config_prepend_path }, |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 8519 | { CFG_GLOBAL, "lua-load", hlua_load }, |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 8520 | { CFG_GLOBAL, "lua-load-per-thread", hlua_load_per_thread }, |
Thierry FOURNIER | bd41349 | 2015-03-03 16:52:26 +0100 | [diff] [blame] | 8521 | { CFG_GLOBAL, "tune.lua.session-timeout", hlua_session_timeout }, |
| 8522 | { CFG_GLOBAL, "tune.lua.task-timeout", hlua_task_timeout }, |
Thierry FOURNIER | 56da101 | 2015-10-01 08:42:31 +0200 | [diff] [blame] | 8523 | { CFG_GLOBAL, "tune.lua.service-timeout", hlua_applet_timeout }, |
Thierry FOURNIER | ee9f802 | 2015-03-03 17:37:37 +0100 | [diff] [blame] | 8524 | { CFG_GLOBAL, "tune.lua.forced-yield", hlua_forced_yield }, |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 8525 | { CFG_GLOBAL, "tune.lua.maxmem", hlua_parse_maxmem }, |
Thierry FOURNIER | 6c9b52c | 2015-01-23 15:57:06 +0100 | [diff] [blame] | 8526 | { 0, NULL, NULL }, |
| 8527 | }}; |
| 8528 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 8529 | INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws); |
| 8530 | |
Christopher Faulet | afd8f10 | 2018-11-08 11:34:21 +0100 | [diff] [blame] | 8531 | |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 8532 | /* This function can fail with an abort() due to an Lua critical error. |
| 8533 | * We are in the initialisation process of HAProxy, this abort() is |
| 8534 | * tolerated. |
| 8535 | */ |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 8536 | int hlua_post_init_state(lua_State *L) |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 8537 | { |
| 8538 | struct hlua_init_function *init; |
| 8539 | const char *msg; |
| 8540 | enum hlua_exec ret; |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 8541 | const char *error; |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 8542 | const char *kind; |
| 8543 | const char *trace; |
| 8544 | int return_status = 1; |
| 8545 | #if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504 |
| 8546 | int nres; |
| 8547 | #endif |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 8548 | |
Willy Tarreau | cdb5346 | 2020-12-02 12:12:00 +0100 | [diff] [blame] | 8549 | /* disable memory limit checks if limit is not set */ |
| 8550 | if (!hlua_global_allocator.limit) |
| 8551 | hlua_global_allocator.limit = ~hlua_global_allocator.limit; |
| 8552 | |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 8553 | /* Call post initialisation function in safe environment. */ |
Thierry Fournier | 3c53932 | 2020-11-28 16:05:05 +0100 | [diff] [blame] | 8554 | if (setjmp(safe_ljmp_env) != 0) { |
| 8555 | lua_atpanic(L, hlua_panic_safe); |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 8556 | if (lua_type(L, -1) == LUA_TSTRING) |
| 8557 | error = lua_tostring(L, -1); |
Thierry Fournier | 3d4a675 | 2016-02-19 20:53:30 +0100 | [diff] [blame] | 8558 | else |
| 8559 | error = "critical error"; |
| 8560 | fprintf(stderr, "Lua post-init: %s.\n", error); |
| 8561 | exit(1); |
Thierry Fournier | 3c53932 | 2020-11-28 16:05:05 +0100 | [diff] [blame] | 8562 | } else { |
| 8563 | lua_atpanic(L, hlua_panic_ljmp); |
Thierry Fournier | 3d4a675 | 2016-02-19 20:53:30 +0100 | [diff] [blame] | 8564 | } |
Frédéric Lécaille | 54f2bcf | 2018-08-29 13:46:24 +0200 | [diff] [blame] | 8565 | |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 8566 | hlua_fcn_post_init(L); |
Thierry Fournier | 3d4a675 | 2016-02-19 20:53:30 +0100 | [diff] [blame] | 8567 | |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 8568 | list_for_each_entry(init, &hlua_init_functions[hlua_state_id], l) { |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 8569 | lua_rawgeti(L, LUA_REGISTRYINDEX, init->function_ref); |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 8570 | |
| 8571 | #if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 504 |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 8572 | ret = lua_resume(L, L, 0, &nres); |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 8573 | #else |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 8574 | ret = lua_resume(L, L, 0); |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 8575 | #endif |
| 8576 | kind = NULL; |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 8577 | switch (ret) { |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 8578 | |
| 8579 | case LUA_OK: |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 8580 | lua_pop(L, -1); |
Thierry Fournier | 13d08b7 | 2020-11-28 11:02:58 +0100 | [diff] [blame] | 8581 | break; |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 8582 | |
| 8583 | case LUA_ERRERR: |
| 8584 | kind = "message handler error"; |
Thayne McCombs | 8f0cc5c | 2021-01-07 21:35:52 -0700 | [diff] [blame] | 8585 | /* Fall through */ |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 8586 | case LUA_ERRRUN: |
| 8587 | if (!kind) |
| 8588 | kind = "runtime error"; |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 8589 | msg = lua_tostring(L, -1); |
| 8590 | lua_settop(L, 0); /* Empty the stack. */ |
| 8591 | lua_pop(L, 1); |
Christopher Faulet | d09cc51 | 2021-03-24 14:48:45 +0100 | [diff] [blame] | 8592 | trace = hlua_traceback(L, ", "); |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 8593 | if (msg) |
| 8594 | ha_alert("Lua init: %s: '%s' from %s\n", kind, msg, trace); |
| 8595 | else |
| 8596 | ha_alert("Lua init: unknown %s from %s\n", kind, trace); |
| 8597 | return_status = 0; |
| 8598 | break; |
| 8599 | |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 8600 | default: |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 8601 | /* Unknown error */ |
| 8602 | kind = "Unknown error"; |
Thayne McCombs | 8f0cc5c | 2021-01-07 21:35:52 -0700 | [diff] [blame] | 8603 | /* Fall through */ |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 8604 | case LUA_YIELD: |
| 8605 | /* yield is not configured at this step, this state doesn't happen */ |
| 8606 | if (!kind) |
| 8607 | kind = "yield not allowed"; |
Thayne McCombs | 8f0cc5c | 2021-01-07 21:35:52 -0700 | [diff] [blame] | 8608 | /* Fall through */ |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 8609 | case LUA_ERRMEM: |
| 8610 | if (!kind) |
| 8611 | kind = "out of memory error"; |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 8612 | lua_settop(L, 0); |
| 8613 | lua_pop(L, 1); |
Christopher Faulet | d09cc51 | 2021-03-24 14:48:45 +0100 | [diff] [blame] | 8614 | trace = hlua_traceback(L, ", "); |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 8615 | ha_alert("Lua init: %s: %s\n", kind, trace); |
| 8616 | return_status = 0; |
| 8617 | break; |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 8618 | } |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 8619 | if (!return_status) |
| 8620 | break; |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 8621 | } |
Thierry Fournier | 3c53932 | 2020-11-28 16:05:05 +0100 | [diff] [blame] | 8622 | |
| 8623 | lua_atpanic(L, hlua_panic_safe); |
Thierry Fournier | 670db24 | 2020-11-28 10:49:59 +0100 | [diff] [blame] | 8624 | return return_status; |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 8625 | } |
| 8626 | |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 8627 | int hlua_post_init() |
| 8628 | { |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 8629 | int ret; |
| 8630 | int i; |
| 8631 | int errors; |
| 8632 | char *err = NULL; |
| 8633 | struct hlua_function *fcn; |
| 8634 | |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 8635 | #if USE_OPENSSL |
| 8636 | /* Initialize SSL server. */ |
Amaury Denoyelle | 704ba1d | 2021-03-24 17:57:47 +0100 | [diff] [blame] | 8637 | if (socket_ssl->xprt->prepare_srv) { |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 8638 | int saved_used_backed = global.ssl_used_backend; |
| 8639 | // don't affect maxconn automatic computation |
Amaury Denoyelle | 704ba1d | 2021-03-24 17:57:47 +0100 | [diff] [blame] | 8640 | socket_ssl->xprt->prepare_srv(socket_ssl); |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 8641 | global.ssl_used_backend = saved_used_backed; |
| 8642 | } |
| 8643 | #endif |
| 8644 | |
Thierry Fournier | c749259 | 2020-11-28 23:57:24 +0100 | [diff] [blame] | 8645 | /* Perform post init of common thread */ |
| 8646 | hlua_state_id = 0; |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 8647 | ha_set_tid(0); |
| 8648 | ret = hlua_post_init_state(hlua_states[hlua_state_id]); |
| 8649 | if (ret == 0) |
| 8650 | return 0; |
| 8651 | |
| 8652 | /* init remaining lua states and load files */ |
| 8653 | for (hlua_state_id = 2; hlua_state_id < global.nbthread + 1; hlua_state_id++) { |
| 8654 | |
| 8655 | /* set thread context */ |
| 8656 | ha_set_tid(hlua_state_id - 1); |
| 8657 | |
| 8658 | /* Init lua state */ |
| 8659 | hlua_states[hlua_state_id] = hlua_init_state(hlua_state_id); |
| 8660 | |
| 8661 | /* Load lua files */ |
| 8662 | for (i = 0; per_thread_load && per_thread_load[i]; i++) { |
| 8663 | ret = hlua_load_state(per_thread_load[i], hlua_states[hlua_state_id], &err); |
| 8664 | if (ret != 0) { |
| 8665 | ha_alert("Lua init: %s\n", err); |
| 8666 | return 0; |
| 8667 | } |
| 8668 | } |
| 8669 | } |
| 8670 | |
| 8671 | /* Reset thread context */ |
| 8672 | ha_set_tid(0); |
| 8673 | |
| 8674 | /* Execute post init for all states */ |
| 8675 | for (hlua_state_id = 1; hlua_state_id < global.nbthread + 1; hlua_state_id++) { |
| 8676 | |
| 8677 | /* set thread context */ |
| 8678 | ha_set_tid(hlua_state_id - 1); |
| 8679 | |
| 8680 | /* run post init */ |
| 8681 | ret = hlua_post_init_state(hlua_states[hlua_state_id]); |
| 8682 | if (ret == 0) |
| 8683 | return 0; |
| 8684 | } |
| 8685 | |
| 8686 | /* Reset thread context */ |
| 8687 | ha_set_tid(0); |
| 8688 | |
| 8689 | /* control functions registering. Each function must have: |
| 8690 | * - only the function_ref[0] set positive and all other to -1 |
| 8691 | * - only the function_ref[0] set to -1 and all other positive |
| 8692 | * This ensure a same reference is not used both in shared |
| 8693 | * lua state and thread dedicated lua state. Note: is the case |
Ilya Shipitsin | b8888ab | 2021-01-06 21:20:16 +0500 | [diff] [blame] | 8694 | * reach, the shared state is priority, but the bug will be |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 8695 | * complicated to found for the end user. |
| 8696 | */ |
| 8697 | errors = 0; |
| 8698 | list_for_each_entry(fcn, &referenced_functions, l) { |
| 8699 | ret = 0; |
| 8700 | for (i = 1; i < global.nbthread + 1; i++) { |
| 8701 | if (fcn->function_ref[i] == -1) |
| 8702 | ret--; |
| 8703 | else |
| 8704 | ret++; |
| 8705 | } |
| 8706 | if (abs(ret) != global.nbthread) { |
| 8707 | ha_alert("Lua function '%s' is not referenced in all thread. " |
| 8708 | "Expect function in all thread or in none thread.\n", fcn->name); |
| 8709 | errors++; |
| 8710 | continue; |
| 8711 | } |
| 8712 | |
| 8713 | if ((fcn->function_ref[0] == -1) == (ret < 0)) { |
Ilya Shipitsin | b8888ab | 2021-01-06 21:20:16 +0500 | [diff] [blame] | 8714 | ha_alert("Lua function '%s' is referenced both ins shared Lua context (through lua-load) " |
| 8715 | "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] | 8716 | "exclusive.\n", fcn->name); |
| 8717 | errors++; |
| 8718 | } |
| 8719 | } |
| 8720 | |
| 8721 | if (errors > 0) |
| 8722 | return 0; |
| 8723 | |
Ilya Shipitsin | b8888ab | 2021-01-06 21:20:16 +0500 | [diff] [blame] | 8724 | /* 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] | 8725 | * -1 in order to have probably a segfault if someone use it |
| 8726 | */ |
| 8727 | hlua_state_id = -1; |
| 8728 | |
| 8729 | return 1; |
Thierry Fournier | b8cef17 | 2020-11-28 15:37:17 +0100 | [diff] [blame] | 8730 | } |
| 8731 | |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 8732 | /* The memory allocator used by the Lua stack. <ud> is a pointer to the |
| 8733 | * allocator's context. <ptr> is the pointer to alloc/free/realloc. <osize> |
| 8734 | * 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] | 8735 | * allocation. <nsize> is the requested new size. A new allocation is |
| 8736 | * indicated by <ptr> being NULL. A free is indicated by <nsize> being |
Willy Tarreau | cdb5346 | 2020-12-02 12:12:00 +0100 | [diff] [blame] | 8737 | * zero. This one verifies that the limits are respected but is optimized |
| 8738 | * for the fast case where limits are not used, hence stats are not updated. |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 8739 | */ |
| 8740 | static void *hlua_alloc(void *ud, void *ptr, size_t osize, size_t nsize) |
| 8741 | { |
| 8742 | struct hlua_mem_allocator *zone = ud; |
Willy Tarreau | cdb5346 | 2020-12-02 12:12:00 +0100 | [diff] [blame] | 8743 | size_t limit, old, new; |
| 8744 | |
Tim Duesterhus | 2258652 | 2021-01-08 10:35:33 +0100 | [diff] [blame] | 8745 | if (unlikely(!ptr && !nsize)) |
| 8746 | return NULL; |
| 8747 | |
Willy Tarreau | cdb5346 | 2020-12-02 12:12:00 +0100 | [diff] [blame] | 8748 | /* a limit of ~0 means unlimited and boot complete, so there's no need |
| 8749 | * for accounting anymore. |
| 8750 | */ |
Christopher Faulet | cc2c4f8 | 2021-03-24 14:52:24 +0100 | [diff] [blame] | 8751 | if (likely(~zone->limit == 0)) |
| 8752 | return realloc(ptr, nsize); |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 8753 | |
Willy Tarreau | d36c7fa | 2020-12-02 12:26:29 +0100 | [diff] [blame] | 8754 | if (!ptr) |
| 8755 | osize = 0; |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 8756 | |
Willy Tarreau | cdb5346 | 2020-12-02 12:12:00 +0100 | [diff] [blame] | 8757 | /* enforce strict limits across all threads */ |
| 8758 | limit = zone->limit; |
| 8759 | old = _HA_ATOMIC_LOAD(&zone->allocated); |
| 8760 | do { |
| 8761 | new = old + nsize - osize; |
| 8762 | if (unlikely(nsize && limit && new > limit)) |
| 8763 | return NULL; |
| 8764 | } while (!_HA_ATOMIC_CAS(&zone->allocated, &old, new)); |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 8765 | |
| 8766 | ptr = realloc(ptr, nsize); |
Willy Tarreau | cdb5346 | 2020-12-02 12:12:00 +0100 | [diff] [blame] | 8767 | |
| 8768 | if (unlikely(!ptr && nsize)) // failed |
| 8769 | _HA_ATOMIC_SUB(&zone->allocated, nsize - osize); |
| 8770 | |
| 8771 | __ha_barrier_atomic_store(); |
Willy Tarreau | 32f61e2 | 2015-03-18 17:54:59 +0100 | [diff] [blame] | 8772 | return ptr; |
| 8773 | } |
| 8774 | |
Thierry Fournier | ecb83c2 | 2020-11-28 15:49:44 +0100 | [diff] [blame] | 8775 | /* 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] | 8776 | * We are in the initialisation process of HAProxy, this abort() is |
| 8777 | * tolerated. |
| 8778 | */ |
Thierry Fournier | ecb83c2 | 2020-11-28 15:49:44 +0100 | [diff] [blame] | 8779 | lua_State *hlua_init_state(int thread_num) |
Thierry FOURNIER | 6f1fd48 | 2015-01-23 14:06:13 +0100 | [diff] [blame] | 8780 | { |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 8781 | int i; |
Thierry FOURNIER | d0fa538 | 2015-02-16 20:14:51 +0100 | [diff] [blame] | 8782 | int idx; |
| 8783 | struct sample_fetch *sf; |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 8784 | struct sample_conv *sc; |
Thierry FOURNIER | d0fa538 | 2015-02-16 20:14:51 +0100 | [diff] [blame] | 8785 | char *p; |
Thierry Fournier | fd107a2 | 2016-02-19 19:57:23 +0100 | [diff] [blame] | 8786 | const char *error_msg; |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 8787 | void **context; |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8788 | lua_State *L; |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 8789 | struct prepend_path *pp; |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 8790 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 8791 | /* Init main lua stack. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8792 | L = lua_newstate(hlua_alloc, &hlua_global_allocator); |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 8793 | |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 8794 | /* Initialise Lua context to NULL */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8795 | context = lua_getextraspace(L); |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 8796 | *context = NULL; |
| 8797 | |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 8798 | /* From this point, until the end of the initialisation function, |
Thierry FOURNIER | babae28 | 2015-09-17 11:36:37 +0200 | [diff] [blame] | 8799 | * the Lua function can fail with an abort. We are in the initialisation |
| 8800 | * process of HAProxy, this abort() is tolerated. |
| 8801 | */ |
| 8802 | |
Thierry Fournier | 3c53932 | 2020-11-28 16:05:05 +0100 | [diff] [blame] | 8803 | /* Call post initialisation function in safe environment. */ |
| 8804 | if (setjmp(safe_ljmp_env) != 0) { |
| 8805 | lua_atpanic(L, hlua_panic_safe); |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8806 | if (lua_type(L, -1) == LUA_TSTRING) |
| 8807 | error_msg = lua_tostring(L, -1); |
Thierry Fournier | 2f05cc6 | 2020-11-28 16:08:02 +0100 | [diff] [blame] | 8808 | else |
| 8809 | error_msg = "critical error"; |
| 8810 | fprintf(stderr, "Lua init: %s.\n", error_msg); |
| 8811 | exit(1); |
Thierry Fournier | 3c53932 | 2020-11-28 16:05:05 +0100 | [diff] [blame] | 8812 | } else { |
| 8813 | lua_atpanic(L, hlua_panic_ljmp); |
Thierry Fournier | 2f05cc6 | 2020-11-28 16:08:02 +0100 | [diff] [blame] | 8814 | } |
| 8815 | |
Thierry FOURNIER | 380d093 | 2015-01-23 14:27:52 +0100 | [diff] [blame] | 8816 | /* Initialise lua. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8817 | luaL_openlibs(L); |
Tim Duesterhus | 541fe1e | 2020-01-12 13:55:41 +0100 | [diff] [blame] | 8818 | #define HLUA_PREPEND_PATH_TOSTRING1(x) #x |
| 8819 | #define HLUA_PREPEND_PATH_TOSTRING(x) HLUA_PREPEND_PATH_TOSTRING1(x) |
| 8820 | #ifdef HLUA_PREPEND_PATH |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8821 | hlua_prepend_path(L, "path", HLUA_PREPEND_PATH_TOSTRING(HLUA_PREPEND_PATH)); |
Tim Duesterhus | 541fe1e | 2020-01-12 13:55:41 +0100 | [diff] [blame] | 8822 | #endif |
| 8823 | #ifdef HLUA_PREPEND_CPATH |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8824 | hlua_prepend_path(L, "cpath", HLUA_PREPEND_PATH_TOSTRING(HLUA_PREPEND_CPATH)); |
Tim Duesterhus | 541fe1e | 2020-01-12 13:55:41 +0100 | [diff] [blame] | 8825 | #endif |
| 8826 | #undef HLUA_PREPEND_PATH_TOSTRING |
| 8827 | #undef HLUA_PREPEND_PATH_TOSTRING1 |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 8828 | |
Thierry Fournier | 59f11be | 2020-11-29 00:37:41 +0100 | [diff] [blame] | 8829 | /* Apply configured prepend path */ |
| 8830 | list_for_each_entry(pp, &prepend_path_list, l) |
| 8831 | hlua_prepend_path(L, pp->type, pp->path); |
| 8832 | |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 8833 | /* |
| 8834 | * |
| 8835 | * Create "core" object. |
| 8836 | * |
| 8837 | */ |
| 8838 | |
Thierry FOURNIER | a2d8c65 | 2015-03-11 17:29:39 +0100 | [diff] [blame] | 8839 | /* This table entry is the object "core" base. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8840 | lua_newtable(L); |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 8841 | |
Thierry Fournier | ecb83c2 | 2020-11-28 15:49:44 +0100 | [diff] [blame] | 8842 | /* set the thread id */ |
| 8843 | hlua_class_const_int(L, "thread", thread_num); |
| 8844 | |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 8845 | /* Push the loglevel constants. */ |
Willy Tarreau | 80f5fae | 2015-02-27 16:38:20 +0100 | [diff] [blame] | 8846 | for (i = 0; i < NB_LOG_LEVELS; i++) |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8847 | hlua_class_const_int(L, log_levels[i], i); |
Thierry FOURNIER | 2ba18a2 | 2015-01-23 14:07:08 +0100 | [diff] [blame] | 8848 | |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 8849 | /* Register special functions. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8850 | hlua_class_function(L, "register_init", hlua_register_init); |
| 8851 | hlua_class_function(L, "register_task", hlua_register_task); |
| 8852 | hlua_class_function(L, "register_fetches", hlua_register_fetches); |
| 8853 | hlua_class_function(L, "register_converters", hlua_register_converters); |
| 8854 | hlua_class_function(L, "register_action", hlua_register_action); |
| 8855 | hlua_class_function(L, "register_service", hlua_register_service); |
| 8856 | hlua_class_function(L, "register_cli", hlua_register_cli); |
| 8857 | hlua_class_function(L, "yield", hlua_yield); |
| 8858 | hlua_class_function(L, "set_nice", hlua_set_nice); |
| 8859 | hlua_class_function(L, "sleep", hlua_sleep); |
| 8860 | hlua_class_function(L, "msleep", hlua_msleep); |
| 8861 | hlua_class_function(L, "add_acl", hlua_add_acl); |
| 8862 | hlua_class_function(L, "del_acl", hlua_del_acl); |
| 8863 | hlua_class_function(L, "set_map", hlua_set_map); |
| 8864 | hlua_class_function(L, "del_map", hlua_del_map); |
| 8865 | hlua_class_function(L, "tcp", hlua_socket_new); |
| 8866 | hlua_class_function(L, "log", hlua_log); |
| 8867 | hlua_class_function(L, "Debug", hlua_log_debug); |
| 8868 | hlua_class_function(L, "Info", hlua_log_info); |
| 8869 | hlua_class_function(L, "Warning", hlua_log_warning); |
| 8870 | hlua_class_function(L, "Alert", hlua_log_alert); |
| 8871 | hlua_class_function(L, "done", hlua_done); |
| 8872 | hlua_fcn_reg_core_fcn(L); |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 8873 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8874 | lua_setglobal(L, "core"); |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 8875 | |
| 8876 | /* |
| 8877 | * |
Christopher Faulet | 0f3c890 | 2020-01-31 18:57:12 +0100 | [diff] [blame] | 8878 | * Create "act" object. |
| 8879 | * |
| 8880 | */ |
| 8881 | |
| 8882 | /* This table entry is the object "act" base. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8883 | lua_newtable(L); |
Christopher Faulet | 0f3c890 | 2020-01-31 18:57:12 +0100 | [diff] [blame] | 8884 | |
| 8885 | /* push action return constants */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8886 | hlua_class_const_int(L, "CONTINUE", ACT_RET_CONT); |
| 8887 | hlua_class_const_int(L, "STOP", ACT_RET_STOP); |
| 8888 | hlua_class_const_int(L, "YIELD", ACT_RET_YIELD); |
| 8889 | hlua_class_const_int(L, "ERROR", ACT_RET_ERR); |
| 8890 | hlua_class_const_int(L, "DONE", ACT_RET_DONE); |
| 8891 | hlua_class_const_int(L, "DENY", ACT_RET_DENY); |
| 8892 | hlua_class_const_int(L, "ABORT", ACT_RET_ABRT); |
| 8893 | hlua_class_const_int(L, "INVALID", ACT_RET_INV); |
Christopher Faulet | 0f3c890 | 2020-01-31 18:57:12 +0100 | [diff] [blame] | 8894 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8895 | hlua_class_function(L, "wake_time", hlua_set_wake_time); |
Christopher Faulet | 2c2c2e3 | 2020-01-31 19:07:52 +0100 | [diff] [blame] | 8896 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8897 | lua_setglobal(L, "act"); |
Christopher Faulet | 0f3c890 | 2020-01-31 18:57:12 +0100 | [diff] [blame] | 8898 | |
| 8899 | /* |
| 8900 | * |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 8901 | * Register class Map |
| 8902 | * |
| 8903 | */ |
| 8904 | |
| 8905 | /* This table entry is the object "Map" base. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8906 | lua_newtable(L); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 8907 | |
| 8908 | /* register pattern types. */ |
| 8909 | for (i=0; i<PAT_MATCH_NUM; i++) |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8910 | hlua_class_const_int(L, pat_match_names[i], i); |
Thierry FOURNIER | 4dc7197 | 2017-01-28 08:33:08 +0100 | [diff] [blame] | 8911 | for (i=0; i<PAT_MATCH_NUM; i++) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 8912 | snprintf(trash.area, trash.size, "_%s", pat_match_names[i]); |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8913 | hlua_class_const_int(L, trash.area, i); |
Thierry FOURNIER | 4dc7197 | 2017-01-28 08:33:08 +0100 | [diff] [blame] | 8914 | } |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 8915 | |
| 8916 | /* register constructor. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8917 | hlua_class_function(L, "new", hlua_map_new); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 8918 | |
| 8919 | /* Create and fill the metatable. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8920 | lua_newtable(L); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 8921 | |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 8922 | /* Create and fill the __index entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8923 | lua_pushstring(L, "__index"); |
| 8924 | lua_newtable(L); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 8925 | |
| 8926 | /* Register . */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8927 | hlua_class_function(L, "lookup", hlua_map_lookup); |
| 8928 | hlua_class_function(L, "slookup", hlua_map_slookup); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 8929 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8930 | lua_rawset(L, -3); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 8931 | |
Thierry Fournier | 45e78d7 | 2016-02-19 18:34:46 +0100 | [diff] [blame] | 8932 | /* Register previous table in the registry with reference and named entry. |
| 8933 | * The function hlua_register_metatable() pops the stack, so we |
| 8934 | * previously create a copy of the table. |
| 8935 | */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8936 | lua_pushvalue(L, -1); /* Copy the -1 entry and push it on the stack. */ |
| 8937 | class_map_ref = hlua_register_metatable(L, CLASS_MAP); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 8938 | |
| 8939 | /* Assign the metatable to the mai Map object. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8940 | lua_setmetatable(L, -2); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 8941 | |
| 8942 | /* Set a name to the table. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8943 | lua_setglobal(L, "Map"); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 8944 | |
| 8945 | /* |
| 8946 | * |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 8947 | * Register class Channel |
| 8948 | * |
| 8949 | */ |
| 8950 | |
| 8951 | /* Create and fill the metatable. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8952 | lua_newtable(L); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 8953 | |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 8954 | /* Create and fill the __index entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8955 | lua_pushstring(L, "__index"); |
| 8956 | lua_newtable(L); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 8957 | |
| 8958 | /* Register . */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8959 | hlua_class_function(L, "get", hlua_channel_get); |
| 8960 | hlua_class_function(L, "dup", hlua_channel_dup); |
| 8961 | hlua_class_function(L, "getline", hlua_channel_getline); |
| 8962 | hlua_class_function(L, "set", hlua_channel_set); |
| 8963 | hlua_class_function(L, "append", hlua_channel_append); |
| 8964 | hlua_class_function(L, "send", hlua_channel_send); |
| 8965 | hlua_class_function(L, "forward", hlua_channel_forward); |
| 8966 | hlua_class_function(L, "get_in_len", hlua_channel_get_in_len); |
| 8967 | hlua_class_function(L, "get_out_len", hlua_channel_get_out_len); |
| 8968 | hlua_class_function(L, "is_full", hlua_channel_is_full); |
| 8969 | hlua_class_function(L, "is_resp", hlua_channel_is_resp); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 8970 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8971 | lua_rawset(L, -3); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 8972 | |
| 8973 | /* Register previous table in the registry with reference and named entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8974 | class_channel_ref = hlua_register_metatable(L, CLASS_CHANNEL); |
Thierry FOURNIER | 5a6d3fd | 2015-02-09 16:38:34 +0100 | [diff] [blame] | 8975 | |
| 8976 | /* |
| 8977 | * |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 8978 | * Register class Fetches |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 8979 | * |
| 8980 | */ |
| 8981 | |
| 8982 | /* Create and fill the metatable. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8983 | lua_newtable(L); |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 8984 | |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 8985 | /* Create and fill the __index entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 8986 | lua_pushstring(L, "__index"); |
| 8987 | lua_newtable(L); |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 8988 | |
Thierry FOURNIER | d0fa538 | 2015-02-16 20:14:51 +0100 | [diff] [blame] | 8989 | /* Browse existing fetches and create the associated |
| 8990 | * object method. |
| 8991 | */ |
| 8992 | sf = NULL; |
| 8993 | while ((sf = sample_fetch_getnext(sf, &idx)) != NULL) { |
Thierry FOURNIER | d0fa538 | 2015-02-16 20:14:51 +0100 | [diff] [blame] | 8994 | /* gL.Tua doesn't support '.' and '-' in the function names, replace it |
| 8995 | * by an underscore. |
| 8996 | */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 8997 | strncpy(trash.area, sf->kw, trash.size); |
| 8998 | trash.area[trash.size - 1] = '\0'; |
| 8999 | for (p = trash.area; *p; p++) |
Thierry FOURNIER | d0fa538 | 2015-02-16 20:14:51 +0100 | [diff] [blame] | 9000 | if (*p == '.' || *p == '-' || *p == '+') |
| 9001 | *p = '_'; |
| 9002 | |
| 9003 | /* Register the function. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9004 | lua_pushstring(L, trash.area); |
| 9005 | lua_pushlightuserdata(L, sf); |
| 9006 | lua_pushcclosure(L, hlua_run_sample_fetch, 1); |
| 9007 | lua_rawset(L, -3); |
Thierry FOURNIER | d0fa538 | 2015-02-16 20:14:51 +0100 | [diff] [blame] | 9008 | } |
| 9009 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9010 | lua_rawset(L, -3); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 9011 | |
| 9012 | /* Register previous table in the registry with reference and named entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9013 | class_fetches_ref = hlua_register_metatable(L, CLASS_FETCHES); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 9014 | |
| 9015 | /* |
| 9016 | * |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 9017 | * Register class Converters |
| 9018 | * |
| 9019 | */ |
| 9020 | |
| 9021 | /* Create and fill the metatable. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9022 | lua_newtable(L); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 9023 | |
| 9024 | /* Create and fill the __index entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9025 | lua_pushstring(L, "__index"); |
| 9026 | lua_newtable(L); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 9027 | |
| 9028 | /* Browse existing converters and create the associated |
| 9029 | * object method. |
| 9030 | */ |
| 9031 | sc = NULL; |
| 9032 | while ((sc = sample_conv_getnext(sc, &idx)) != NULL) { |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 9033 | /* gL.Tua doesn't support '.' and '-' in the function names, replace it |
| 9034 | * by an underscore. |
| 9035 | */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 9036 | strncpy(trash.area, sc->kw, trash.size); |
| 9037 | trash.area[trash.size - 1] = '\0'; |
| 9038 | for (p = trash.area; *p; p++) |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 9039 | if (*p == '.' || *p == '-' || *p == '+') |
| 9040 | *p = '_'; |
| 9041 | |
| 9042 | /* Register the function. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9043 | lua_pushstring(L, trash.area); |
| 9044 | lua_pushlightuserdata(L, sc); |
| 9045 | lua_pushcclosure(L, hlua_run_sample_conv, 1); |
| 9046 | lua_rawset(L, -3); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 9047 | } |
| 9048 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9049 | lua_rawset(L, -3); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 9050 | |
| 9051 | /* Register previous table in the registry with reference and named entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9052 | class_converters_ref = hlua_register_metatable(L, CLASS_CONVERTERS); |
Thierry FOURNIER | 594afe7 | 2015-03-10 23:58:30 +0100 | [diff] [blame] | 9053 | |
| 9054 | /* |
| 9055 | * |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 9056 | * Register class HTTP |
| 9057 | * |
| 9058 | */ |
| 9059 | |
| 9060 | /* Create and fill the metatable. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9061 | lua_newtable(L); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 9062 | |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 9063 | /* Create and fill the __index entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9064 | lua_pushstring(L, "__index"); |
| 9065 | lua_newtable(L); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 9066 | |
| 9067 | /* Register Lua functions. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9068 | hlua_class_function(L, "req_get_headers",hlua_http_req_get_headers); |
| 9069 | hlua_class_function(L, "req_del_header", hlua_http_req_del_hdr); |
| 9070 | hlua_class_function(L, "req_rep_header", hlua_http_req_rep_hdr); |
| 9071 | hlua_class_function(L, "req_rep_value", hlua_http_req_rep_val); |
| 9072 | hlua_class_function(L, "req_add_header", hlua_http_req_add_hdr); |
| 9073 | hlua_class_function(L, "req_set_header", hlua_http_req_set_hdr); |
| 9074 | hlua_class_function(L, "req_set_method", hlua_http_req_set_meth); |
| 9075 | hlua_class_function(L, "req_set_path", hlua_http_req_set_path); |
| 9076 | hlua_class_function(L, "req_set_query", hlua_http_req_set_query); |
| 9077 | hlua_class_function(L, "req_set_uri", hlua_http_req_set_uri); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 9078 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9079 | hlua_class_function(L, "res_get_headers",hlua_http_res_get_headers); |
| 9080 | hlua_class_function(L, "res_del_header", hlua_http_res_del_hdr); |
| 9081 | hlua_class_function(L, "res_rep_header", hlua_http_res_rep_hdr); |
| 9082 | hlua_class_function(L, "res_rep_value", hlua_http_res_rep_val); |
| 9083 | hlua_class_function(L, "res_add_header", hlua_http_res_add_hdr); |
| 9084 | hlua_class_function(L, "res_set_header", hlua_http_res_set_hdr); |
| 9085 | hlua_class_function(L, "res_set_status", hlua_http_res_set_status); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 9086 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9087 | lua_rawset(L, -3); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 9088 | |
| 9089 | /* Register previous table in the registry with reference and named entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9090 | class_http_ref = hlua_register_metatable(L, CLASS_HTTP); |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 9091 | |
| 9092 | /* |
| 9093 | * |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9094 | * Register class AppletTCP |
| 9095 | * |
| 9096 | */ |
| 9097 | |
| 9098 | /* Create and fill the metatable. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9099 | lua_newtable(L); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9100 | |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 9101 | /* Create and fill the __index entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9102 | lua_pushstring(L, "__index"); |
| 9103 | lua_newtable(L); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9104 | |
| 9105 | /* Register Lua functions. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9106 | hlua_class_function(L, "getline", hlua_applet_tcp_getline); |
| 9107 | hlua_class_function(L, "receive", hlua_applet_tcp_recv); |
| 9108 | hlua_class_function(L, "send", hlua_applet_tcp_send); |
| 9109 | hlua_class_function(L, "set_priv", hlua_applet_tcp_set_priv); |
| 9110 | hlua_class_function(L, "get_priv", hlua_applet_tcp_get_priv); |
| 9111 | hlua_class_function(L, "set_var", hlua_applet_tcp_set_var); |
| 9112 | hlua_class_function(L, "unset_var", hlua_applet_tcp_unset_var); |
| 9113 | hlua_class_function(L, "get_var", hlua_applet_tcp_get_var); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9114 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9115 | lua_settable(L, -3); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9116 | |
| 9117 | /* Register previous table in the registry with reference and named entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9118 | class_applet_tcp_ref = hlua_register_metatable(L, CLASS_APPLET_TCP); |
Thierry FOURNIER | f0a64b6 | 2015-09-19 12:36:17 +0200 | [diff] [blame] | 9119 | |
| 9120 | /* |
| 9121 | * |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9122 | * Register class AppletHTTP |
| 9123 | * |
| 9124 | */ |
| 9125 | |
| 9126 | /* Create and fill the metatable. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9127 | lua_newtable(L); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9128 | |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 9129 | /* Create and fill the __index entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9130 | lua_pushstring(L, "__index"); |
| 9131 | lua_newtable(L); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9132 | |
| 9133 | /* Register Lua functions. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9134 | hlua_class_function(L, "set_priv", hlua_applet_http_set_priv); |
| 9135 | hlua_class_function(L, "get_priv", hlua_applet_http_get_priv); |
| 9136 | hlua_class_function(L, "set_var", hlua_applet_http_set_var); |
| 9137 | hlua_class_function(L, "unset_var", hlua_applet_http_unset_var); |
| 9138 | hlua_class_function(L, "get_var", hlua_applet_http_get_var); |
| 9139 | hlua_class_function(L, "getline", hlua_applet_http_getline); |
| 9140 | hlua_class_function(L, "receive", hlua_applet_http_recv); |
| 9141 | hlua_class_function(L, "send", hlua_applet_http_send); |
| 9142 | hlua_class_function(L, "add_header", hlua_applet_http_addheader); |
| 9143 | hlua_class_function(L, "set_status", hlua_applet_http_status); |
| 9144 | hlua_class_function(L, "start_response", hlua_applet_http_start_response); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9145 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9146 | lua_settable(L, -3); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9147 | |
| 9148 | /* Register previous table in the registry with reference and named entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9149 | class_applet_http_ref = hlua_register_metatable(L, CLASS_APPLET_HTTP); |
Thierry FOURNIER | a30b5db | 2015-09-18 09:04:27 +0200 | [diff] [blame] | 9150 | |
| 9151 | /* |
| 9152 | * |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 9153 | * Register class TXN |
| 9154 | * |
| 9155 | */ |
| 9156 | |
| 9157 | /* Create and fill the metatable. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9158 | lua_newtable(L); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 9159 | |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 9160 | /* Create and fill the __index entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9161 | lua_pushstring(L, "__index"); |
| 9162 | lua_newtable(L); |
Thierry FOURNIER | bb53c7b | 2015-03-11 18:28:02 +0100 | [diff] [blame] | 9163 | |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 9164 | /* Register Lua functions. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9165 | hlua_class_function(L, "set_priv", hlua_set_priv); |
| 9166 | hlua_class_function(L, "get_priv", hlua_get_priv); |
| 9167 | hlua_class_function(L, "set_var", hlua_set_var); |
| 9168 | hlua_class_function(L, "unset_var", hlua_unset_var); |
| 9169 | hlua_class_function(L, "get_var", hlua_get_var); |
| 9170 | hlua_class_function(L, "done", hlua_txn_done); |
| 9171 | hlua_class_function(L, "reply", hlua_txn_reply_new); |
| 9172 | hlua_class_function(L, "set_loglevel", hlua_txn_set_loglevel); |
| 9173 | hlua_class_function(L, "set_tos", hlua_txn_set_tos); |
| 9174 | hlua_class_function(L, "set_mark", hlua_txn_set_mark); |
| 9175 | hlua_class_function(L, "set_priority_class", hlua_txn_set_priority_class); |
| 9176 | hlua_class_function(L, "set_priority_offset", hlua_txn_set_priority_offset); |
| 9177 | hlua_class_function(L, "deflog", hlua_txn_deflog); |
| 9178 | hlua_class_function(L, "log", hlua_txn_log); |
| 9179 | hlua_class_function(L, "Debug", hlua_txn_log_debug); |
| 9180 | hlua_class_function(L, "Info", hlua_txn_log_info); |
| 9181 | hlua_class_function(L, "Warning", hlua_txn_log_warning); |
| 9182 | hlua_class_function(L, "Alert", hlua_txn_log_alert); |
Thierry FOURNIER | 05c0b8a | 2015-02-25 11:43:21 +0100 | [diff] [blame] | 9183 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9184 | lua_rawset(L, -3); |
Thierry FOURNIER | 65f34c6 | 2015-02-16 20:11:43 +0100 | [diff] [blame] | 9185 | |
| 9186 | /* Register previous table in the registry with reference and named entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9187 | class_txn_ref = hlua_register_metatable(L, CLASS_TXN); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 9188 | |
| 9189 | /* |
| 9190 | * |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 9191 | * Register class reply |
| 9192 | * |
| 9193 | */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9194 | lua_newtable(L); |
| 9195 | lua_pushstring(L, "__index"); |
| 9196 | lua_newtable(L); |
| 9197 | hlua_class_function(L, "set_status", hlua_txn_reply_set_status); |
| 9198 | hlua_class_function(L, "add_header", hlua_txn_reply_add_header); |
| 9199 | hlua_class_function(L, "del_header", hlua_txn_reply_del_header); |
| 9200 | hlua_class_function(L, "set_body", hlua_txn_reply_set_body); |
| 9201 | lua_settable(L, -3); /* Sets the __index entry. */ |
| 9202 | class_txn_reply_ref = luaL_ref(L, LUA_REGISTRYINDEX); |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 9203 | |
| 9204 | |
| 9205 | /* |
| 9206 | * |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 9207 | * Register class Socket |
| 9208 | * |
| 9209 | */ |
| 9210 | |
| 9211 | /* Create and fill the metatable. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9212 | lua_newtable(L); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 9213 | |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 9214 | /* Create and fill the __index entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9215 | lua_pushstring(L, "__index"); |
| 9216 | lua_newtable(L); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 9217 | |
Baptiste Assmann | 84bb493 | 2015-03-02 21:40:06 +0100 | [diff] [blame] | 9218 | #ifdef USE_OPENSSL |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9219 | hlua_class_function(L, "connect_ssl", hlua_socket_connect_ssl); |
Baptiste Assmann | 84bb493 | 2015-03-02 21:40:06 +0100 | [diff] [blame] | 9220 | #endif |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9221 | hlua_class_function(L, "connect", hlua_socket_connect); |
| 9222 | hlua_class_function(L, "send", hlua_socket_send); |
| 9223 | hlua_class_function(L, "receive", hlua_socket_receive); |
| 9224 | hlua_class_function(L, "close", hlua_socket_close); |
| 9225 | hlua_class_function(L, "getpeername", hlua_socket_getpeername); |
| 9226 | hlua_class_function(L, "getsockname", hlua_socket_getsockname); |
| 9227 | hlua_class_function(L, "setoption", hlua_socket_setoption); |
| 9228 | hlua_class_function(L, "settimeout", hlua_socket_settimeout); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 9229 | |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9230 | 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] | 9231 | |
| 9232 | /* Register the garbage collector entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9233 | lua_pushstring(L, "__gc"); |
| 9234 | lua_pushcclosure(L, hlua_socket_gc, 0); |
| 9235 | 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] | 9236 | |
| 9237 | /* Register previous table in the registry with reference and named entry. */ |
Thierry Fournier | 1eac28f | 2020-11-28 12:26:24 +0100 | [diff] [blame] | 9238 | class_socket_ref = hlua_register_metatable(L, CLASS_SOCKET); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 9239 | |
Thierry Fournier | aafc777 | 2020-12-04 11:47:47 +0100 | [diff] [blame] | 9240 | lua_atpanic(L, hlua_panic_safe); |
| 9241 | |
| 9242 | return L; |
| 9243 | } |
| 9244 | |
| 9245 | void hlua_init(void) { |
| 9246 | int i; |
Amaury Denoyelle | 239fdbf | 2021-03-24 10:22:03 +0100 | [diff] [blame] | 9247 | char *errmsg; |
Thierry Fournier | aafc777 | 2020-12-04 11:47:47 +0100 | [diff] [blame] | 9248 | #ifdef USE_OPENSSL |
| 9249 | struct srv_kw *kw; |
| 9250 | int tmp_error; |
| 9251 | char *error; |
| 9252 | char *args[] = { /* SSL client configuration. */ |
| 9253 | "ssl", |
| 9254 | "verify", |
| 9255 | "none", |
| 9256 | NULL |
| 9257 | }; |
| 9258 | #endif |
| 9259 | |
| 9260 | /* Init post init function list head */ |
| 9261 | for (i = 0; i < MAX_THREADS + 1; i++) |
| 9262 | LIST_INIT(&hlua_init_functions[i]); |
| 9263 | |
| 9264 | /* Init state for common/shared lua parts */ |
| 9265 | hlua_state_id = 0; |
| 9266 | ha_set_tid(0); |
| 9267 | hlua_states[0] = hlua_init_state(0); |
| 9268 | |
| 9269 | /* Init state 1 for thread 0. We have at least one thread. */ |
| 9270 | hlua_state_id = 1; |
| 9271 | ha_set_tid(0); |
| 9272 | hlua_states[1] = hlua_init_state(1); |
| 9273 | |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 9274 | /* Proxy and server configuration initialisation. */ |
Amaury Denoyelle | 239fdbf | 2021-03-24 10:22:03 +0100 | [diff] [blame] | 9275 | socket_proxy = alloc_new_proxy("LUA-SOCKET", PR_CAP_FE|PR_CAP_BE|PR_CAP_LUA, &errmsg); |
| 9276 | if (!socket_proxy) { |
| 9277 | fprintf(stderr, "Lua init: %s\n", errmsg); |
| 9278 | exit(1); |
| 9279 | } |
| 9280 | proxy_preset_defaults(socket_proxy); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 9281 | |
| 9282 | /* Init TCP server: unchanged parameters */ |
Amaury Denoyelle | 704ba1d | 2021-03-24 17:57:47 +0100 | [diff] [blame] | 9283 | socket_tcp = new_server(socket_proxy); |
| 9284 | if (!socket_tcp) { |
| 9285 | fprintf(stderr, "Lua init: failed to allocate tcp server socket\n"); |
| 9286 | exit(1); |
| 9287 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 9288 | |
| 9289 | #ifdef USE_OPENSSL |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 9290 | /* Init TCP server: unchanged parameters */ |
Amaury Denoyelle | 704ba1d | 2021-03-24 17:57:47 +0100 | [diff] [blame] | 9291 | socket_ssl = new_server(socket_proxy); |
| 9292 | if (!socket_ssl) { |
| 9293 | fprintf(stderr, "Lua init: failed to allocate ssl server socket\n"); |
| 9294 | exit(1); |
| 9295 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 9296 | |
Amaury Denoyelle | 704ba1d | 2021-03-24 17:57:47 +0100 | [diff] [blame] | 9297 | socket_ssl->use_ssl = 1; |
| 9298 | socket_ssl->xprt = xprt_get(XPRT_SSL); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 9299 | |
Bertrand Jacquin | 80839ff | 2021-01-21 19:14:46 +0000 | [diff] [blame] | 9300 | for (i = 0; args[i] != NULL; i++) { |
| 9301 | 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] | 9302 | /* |
| 9303 | * |
| 9304 | * If the keyword is not known, we can search in the registered |
Joseph Herlant | b8f9c5e | 2018-11-15 10:06:08 -0800 | [diff] [blame] | 9305 | * server keywords. This is useful to configure special SSL |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 9306 | * features like client certificates and ssl_verify. |
| 9307 | * |
| 9308 | */ |
Amaury Denoyelle | 704ba1d | 2021-03-24 17:57:47 +0100 | [diff] [blame] | 9309 | tmp_error = kw->parse(args, &i, socket_proxy, socket_ssl, &error); |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 9310 | if (tmp_error != 0) { |
| 9311 | fprintf(stderr, "INTERNAL ERROR: %s\n", error); |
| 9312 | abort(); /* This must be never arrives because the command line |
| 9313 | not editable by the user. */ |
| 9314 | } |
Bertrand Jacquin | 80839ff | 2021-01-21 19:14:46 +0000 | [diff] [blame] | 9315 | i += kw->skip; |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 9316 | } |
| 9317 | } |
Thierry FOURNIER | 7e7ac32 | 2015-02-16 19:27:16 +0100 | [diff] [blame] | 9318 | #endif |
Thierry Fournier | 75933d4 | 2016-01-21 09:30:18 +0100 | [diff] [blame] | 9319 | |
Thierry FOURNIER | 6f1fd48 | 2015-01-23 14:06:13 +0100 | [diff] [blame] | 9320 | } |
Willy Tarreau | bb57d94 | 2016-12-21 19:04:56 +0100 | [diff] [blame] | 9321 | |
Tim Duesterhus | d0c0ca2 | 2020-07-04 11:53:26 +0200 | [diff] [blame] | 9322 | static void hlua_deinit() |
| 9323 | { |
Willy Tarreau | 186f376 | 2020-12-04 11:48:12 +0100 | [diff] [blame] | 9324 | int thr; |
| 9325 | |
| 9326 | for (thr = 0; thr < MAX_THREADS+1; thr++) { |
| 9327 | if (hlua_states[thr]) |
| 9328 | lua_close(hlua_states[thr]); |
| 9329 | } |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 9330 | |
Amaury Denoyelle | 704ba1d | 2021-03-24 17:57:47 +0100 | [diff] [blame] | 9331 | free_server(socket_tcp); |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 9332 | |
Willy Tarreau | 0f143af | 2021-03-05 10:41:48 +0100 | [diff] [blame] | 9333 | #ifdef USE_OPENSSL |
Amaury Denoyelle | 704ba1d | 2021-03-24 17:57:47 +0100 | [diff] [blame] | 9334 | free_server(socket_ssl); |
Willy Tarreau | 0f143af | 2021-03-05 10:41:48 +0100 | [diff] [blame] | 9335 | #endif |
Amaury Denoyelle | 239fdbf | 2021-03-24 10:22:03 +0100 | [diff] [blame] | 9336 | |
| 9337 | free_proxy(socket_proxy); |
Tim Duesterhus | d0c0ca2 | 2020-07-04 11:53:26 +0200 | [diff] [blame] | 9338 | } |
| 9339 | |
| 9340 | REGISTER_POST_DEINIT(hlua_deinit); |
| 9341 | |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 9342 | static void hlua_register_build_options(void) |
| 9343 | { |
Willy Tarreau | bb57d94 | 2016-12-21 19:04:56 +0100 | [diff] [blame] | 9344 | char *ptr = NULL; |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 9345 | |
Willy Tarreau | bb57d94 | 2016-12-21 19:04:56 +0100 | [diff] [blame] | 9346 | memprintf(&ptr, "Built with Lua version : %s", LUA_RELEASE); |
| 9347 | hap_register_build_opts(ptr, 1); |
| 9348 | } |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 9349 | |
| 9350 | INITCALL0(STG_REGISTER, hlua_register_build_options); |