Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1 | .. toctree:: |
| 2 | :maxdepth: 2 |
| 3 | |
| 4 | |
| 5 | How Lua runs in HAProxy |
| 6 | ======================= |
| 7 | |
| 8 | HAProxy Lua running contexts |
| 9 | ---------------------------- |
| 10 | |
| 11 | The Lua code executed in HAProxy can be processed in 2 main modes. The first one |
| 12 | is the **initialisation mode**, and the second is the **runtime mode**. |
| 13 | |
| 14 | * In the **initialisation mode**, we can perform DNS solves, but we cannot |
| 15 | perform socket I/O. In this initialisation mode, HAProxy still blocked during |
| 16 | the execution of the Lua program. |
| 17 | |
| 18 | * In the **runtime mode**, we cannot perform DNS solves, but we can use sockets. |
| 19 | The execution of the Lua code is multiplexed with the requests processing, so |
| 20 | the Lua code seems to be run in blocking, but it is not the case. |
| 21 | |
| 22 | The Lua code is loaded in one or more files. These files contains main code and |
Aurelien DARRAGON | c84899c | 2023-02-20 18:18:59 +0100 | [diff] [blame] | 23 | functions. Lua has 8 execution contexts. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 24 | |
| 25 | 1. The Lua file **body context**. It is executed during the load of the Lua file |
| 26 | in the HAProxy `[global]` section with the directive `lua-load`. It is |
| 27 | executed in initialisation mode. This section is use for configuring Lua |
| 28 | bindings in HAProxy. |
| 29 | |
David Carlier | 61fdf8b | 2015-10-02 11:59:38 +0100 | [diff] [blame] | 30 | 2. The Lua **init context**. It is a Lua function executed just after the |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 31 | HAProxy configuration parsing. The execution is in initialisation mode. In |
| 32 | this context the HAProxy environment are already initialized. It is useful to |
| 33 | check configuration, or initializing socket connections or tasks. These |
| 34 | functions are declared in the body context with the Lua function |
| 35 | `core.register_init()`. The prototype of the function is a simple function |
| 36 | without return value and without parameters, like this: `function fcn()`. |
| 37 | |
David Carlier | 61fdf8b | 2015-10-02 11:59:38 +0100 | [diff] [blame] | 38 | 3. The Lua **task context**. It is a Lua function executed after the start |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 39 | of the HAProxy scheduler, and just after the declaration of the task with the |
| 40 | Lua function `core.register_task()`. This context can be concurrent with the |
| 41 | traffic processing. It is executed in runtime mode. The prototype of the |
| 42 | function is a simple function without return value and without parameters, |
| 43 | like this: `function fcn()`. |
| 44 | |
David Carlier | 61fdf8b | 2015-10-02 11:59:38 +0100 | [diff] [blame] | 45 | 4. The **action context**. It is a Lua function conditionally executed. These |
Thierry FOURNIER | a2d0225 | 2015-10-01 15:00:42 +0200 | [diff] [blame] | 46 | actions are registered by the Lua directives "`core.register_action()`". The |
| 47 | prototype of the Lua called function is a function with doesn't returns |
| 48 | anything and that take an object of class TXN as entry. `function fcn(txn)`. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 49 | |
| 50 | 5. The **sample-fetch context**. This function takes a TXN object as entry |
| 51 | argument and returns a string. These types of function cannot execute any |
| 52 | blocking function. They are useful to aggregate some of original HAProxy |
| 53 | sample-fetches and return the result. The prototype of the function is |
| 54 | `function string fcn(txn)`. These functions can be registered with the Lua |
| 55 | function `core.register_fetches()`. Each declared sample-fetch is prefixed by |
| 56 | the string "lua.". |
| 57 | |
Christopher Faulet | 1e9b1b6 | 2021-08-11 10:14:30 +0200 | [diff] [blame] | 58 | .. note:: |
| 59 | It is possible that this function cannot found the required data in the |
| 60 | original HAProxy sample-fetches, in this case, it cannot return the |
| 61 | result. This case is not yet supported |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 62 | |
David Carlier | 61fdf8b | 2015-10-02 11:59:38 +0100 | [diff] [blame] | 63 | 6. The **converter context**. It is a Lua function that takes a string as input |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 64 | and returns another string as output. These types of function are stateless, |
| 65 | it cannot access to any context. They don't execute any blocking function. |
| 66 | The call prototype is `function string fcn(string)`. This function can be |
| 67 | registered with the Lua function `core.register_converters()`. Each declared |
| 68 | converter is prefixed by the string "lua.". |
| 69 | |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 70 | 7. The **filter context**: It is a Lua object based on a class defining filter |
| 71 | callback functions. Lua filters are registered using |
| 72 | `core.register_filter()`. Each declared filter is prefixed by the string |
| 73 | "lua.". |
| 74 | |
Aurelien DARRAGON | c84899c | 2023-02-20 18:18:59 +0100 | [diff] [blame] | 75 | 8. The **event context**: Inside a function that handles events subscribed |
| 76 | through `core.event_sub()` or `Server.event_sub()`. |
| 77 | |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 78 | |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 79 | HAProxy Lua Hello world |
| 80 | ----------------------- |
| 81 | |
| 82 | HAProxy configuration file (`hello_world.conf`): |
| 83 | |
| 84 | :: |
| 85 | |
| 86 | global |
| 87 | lua-load hello_world.lua |
| 88 | |
| 89 | listen proxy |
| 90 | bind 127.0.0.1:10001 |
Thierry FOURNIER | a2d0225 | 2015-10-01 15:00:42 +0200 | [diff] [blame] | 91 | tcp-request inspect-delay 1s |
| 92 | tcp-request content use-service lua.hello_world |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 93 | |
| 94 | HAProxy Lua file (`hello_world.lua`): |
| 95 | |
| 96 | .. code-block:: lua |
| 97 | |
Thierry FOURNIER | a2d0225 | 2015-10-01 15:00:42 +0200 | [diff] [blame] | 98 | core.register_service("hello_world", "tcp", function(applet) |
| 99 | applet:send("hello world\n") |
| 100 | end) |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 101 | |
| 102 | How to start HAProxy for testing this configuration: |
| 103 | |
| 104 | :: |
| 105 | |
| 106 | ./haproxy -f hello_world.conf |
| 107 | |
| 108 | On other terminal, you can test with telnet: |
| 109 | |
| 110 | :: |
| 111 | |
| 112 | #:~ telnet 127.0.0.1 10001 |
| 113 | hello world |
| 114 | |
Thierry Fournier | ae6b568 | 2022-09-19 09:04:16 +0200 | [diff] [blame] | 115 | Usage of load parameters |
| 116 | ------------------------ |
| 117 | |
Ilya Shipitsin | 4a689da | 2022-10-29 09:34:32 +0500 | [diff] [blame] | 118 | HAProxy lua-load(-per-thread) directives allow a list of parameters after |
Thierry Fournier | ae6b568 | 2022-09-19 09:04:16 +0200 | [diff] [blame] | 119 | the lua file name. These parameters are accessible through an array of args |
| 120 | using this code `local args = table.pack(...)` in the body of loaded file. |
| 121 | |
| 122 | Below, a new version of the hello world using load parameters |
| 123 | |
| 124 | HAProxy configuration file (`hello_world.conf`): |
| 125 | |
| 126 | :: |
| 127 | |
| 128 | global |
| 129 | lua-load hello_world.lua "this is not an hello world" |
| 130 | |
| 131 | listen proxy |
| 132 | bind 127.0.0.1:10001 |
| 133 | tcp-request inspect-delay 1s |
| 134 | tcp-request content use-service lua.hello_world |
| 135 | |
| 136 | HAProxy Lua file (`hello_world.lua`): |
| 137 | |
| 138 | .. code-block:: lua |
| 139 | |
| 140 | local args = table.pack(...) |
| 141 | |
| 142 | core.register_service("hello_world", "tcp", function(applet) |
| 143 | applet:send(args[1] .. "\n") |
| 144 | end) |
| 145 | |
| 146 | |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 147 | Core class |
| 148 | ========== |
| 149 | |
| 150 | .. js:class:: core |
| 151 | |
| 152 | The "core" class contains all the HAProxy core functions. These function are |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 153 | useful for the controlling of the execution flow, registering hooks, |
| 154 | manipulating global maps or ACL, ... |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 155 | |
| 156 | "core" class is basically provided with HAProxy. No `require` line is |
| 157 | required to uses these function. |
| 158 | |
David Carlier | 61fdf8b | 2015-10-02 11:59:38 +0100 | [diff] [blame] | 159 | The "core" class is static, it is not possible to create a new object of this |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 160 | type. |
| 161 | |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 162 | .. js:attribute:: core.emerg |
| 163 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 164 | :returns: integer |
| 165 | |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 166 | This attribute is an integer, it contains the value of the loglevel |
| 167 | "emergency" (0). |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 168 | |
| 169 | .. js:attribute:: core.alert |
| 170 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 171 | :returns: integer |
| 172 | |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 173 | This attribute is an integer, it contains the value of the loglevel |
| 174 | "alert" (1). |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 175 | |
| 176 | .. js:attribute:: core.crit |
| 177 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 178 | :returns: integer |
| 179 | |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 180 | This attribute is an integer, it contains the value of the loglevel |
| 181 | "critical" (2). |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 182 | |
| 183 | .. js:attribute:: core.err |
| 184 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 185 | :returns: integer |
| 186 | |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 187 | This attribute is an integer, it contains the value of the loglevel |
| 188 | "error" (3). |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 189 | |
| 190 | .. js:attribute:: core.warning |
| 191 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 192 | :returns: integer |
| 193 | |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 194 | This attribute is an integer, it contains the value of the loglevel |
| 195 | "warning" (4). |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 196 | |
| 197 | .. js:attribute:: core.notice |
| 198 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 199 | :returns: integer |
| 200 | |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 201 | This attribute is an integer, it contains the value of the loglevel |
| 202 | "notice" (5). |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 203 | |
| 204 | .. js:attribute:: core.info |
| 205 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 206 | :returns: integer |
| 207 | |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 208 | This attribute is an integer, it contains the value of the loglevel |
| 209 | "info" (6). |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 210 | |
| 211 | .. js:attribute:: core.debug |
| 212 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 213 | :returns: integer |
| 214 | |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 215 | This attribute is an integer, it contains the value of the loglevel |
| 216 | "debug" (7). |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 217 | |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 218 | .. js:attribute:: core.proxies |
| 219 | |
| 220 | **context**: task, action, sample-fetch, converter |
| 221 | |
Patrick Hemmer | c6a1d71 | 2018-05-01 21:30:41 -0400 | [diff] [blame] | 222 | This attribute is a table of declared proxies (frontend and backends). Each |
| 223 | proxy give an access to his list of listeners and servers. The table is |
| 224 | indexed by proxy name, and each entry is of type :ref:`proxy_class`. |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 225 | |
Christopher Faulet | 1e9b1b6 | 2021-08-11 10:14:30 +0200 | [diff] [blame] | 226 | .. Warning:: |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 227 | if you declared a frontend and backend with the same name, only one of |
| 228 | them will be listed. |
Thierry FOURNIER | 9b82a58 | 2017-07-24 13:30:43 +0200 | [diff] [blame] | 229 | |
| 230 | :see: :js:attr:`core.backends` |
| 231 | :see: :js:attr:`core.frontends` |
| 232 | |
| 233 | .. js:attribute:: core.backends |
| 234 | |
| 235 | **context**: task, action, sample-fetch, converter |
| 236 | |
Patrick Hemmer | c6a1d71 | 2018-05-01 21:30:41 -0400 | [diff] [blame] | 237 | This attribute is a table of declared proxies with backend capability. Each |
| 238 | proxy give an access to his list of listeners and servers. The table is |
| 239 | indexed by the backend name, and each entry is of type :ref:`proxy_class`. |
Thierry FOURNIER | 9b82a58 | 2017-07-24 13:30:43 +0200 | [diff] [blame] | 240 | |
| 241 | :see: :js:attr:`core.proxies` |
| 242 | :see: :js:attr:`core.frontends` |
| 243 | |
| 244 | .. js:attribute:: core.frontends |
| 245 | |
| 246 | **context**: task, action, sample-fetch, converter |
| 247 | |
Patrick Hemmer | c6a1d71 | 2018-05-01 21:30:41 -0400 | [diff] [blame] | 248 | This attribute is a table of declared proxies with frontend capability. Each |
| 249 | proxy give an access to his list of listeners and servers. The table is |
| 250 | indexed by the frontend name, and each entry is of type :ref:`proxy_class`. |
Thierry FOURNIER | 9b82a58 | 2017-07-24 13:30:43 +0200 | [diff] [blame] | 251 | |
| 252 | :see: :js:attr:`core.proxies` |
| 253 | :see: :js:attr:`core.backends` |
| 254 | |
Thierry Fournier | ecb83c2 | 2020-11-28 15:49:44 +0100 | [diff] [blame] | 255 | .. js:attribute:: core.thread |
| 256 | |
| 257 | **context**: task, action, sample-fetch, converter, applet |
| 258 | |
| 259 | This variable contains the executing thread number starting at 1. 0 is a |
| 260 | special case for the common lua context. So, if thread is 0, Lua scope is |
| 261 | shared by all threads, otherwise the scope is dedicated to a single thread. |
| 262 | A program which needs to execute some parts exactly once regardless of the |
| 263 | number of threads can check that core.thread is 0 or 1. |
| 264 | |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 265 | .. js:function:: core.log(loglevel, msg) |
| 266 | |
| 267 | **context**: body, init, task, action, sample-fetch, converter |
| 268 | |
David Carlier | 61fdf8b | 2015-10-02 11:59:38 +0100 | [diff] [blame] | 269 | This function sends a log. The log is sent, according with the HAProxy |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 270 | configuration file, on the default syslog server if it is configured and on |
| 271 | the stderr if it is allowed. |
| 272 | |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 273 | :param integer loglevel: Is the log level associated with the message. It is a |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 274 | number between 0 and 7. |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 275 | :param string msg: The log content. |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 276 | :see: :js:attr:`core.emerg`, :js:attr:`core.alert`, :js:attr:`core.crit`, |
| 277 | :js:attr:`core.err`, :js:attr:`core.warning`, :js:attr:`core.notice`, |
| 278 | :js:attr:`core.info`, :js:attr:`core.debug` (log level definitions) |
| 279 | :see: :js:func:`core.Debug` |
| 280 | :see: :js:func:`core.Info` |
| 281 | :see: :js:func:`core.Warning` |
| 282 | :see: :js:func:`core.Alert` |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 283 | |
| 284 | .. js:function:: core.Debug(msg) |
| 285 | |
| 286 | **context**: body, init, task, action, sample-fetch, converter |
| 287 | |
| 288 | :param string msg: The log content. |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 289 | :see: :js:func:`core.log` |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 290 | |
| 291 | Does the same job than: |
| 292 | |
| 293 | .. code-block:: lua |
| 294 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 295 | function Debug(msg) |
| 296 | core.log(core.debug, msg) |
| 297 | end |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 298 | .. |
| 299 | |
| 300 | .. js:function:: core.Info(msg) |
| 301 | |
| 302 | **context**: body, init, task, action, sample-fetch, converter |
| 303 | |
| 304 | :param string msg: The log content. |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 305 | :see: :js:func:`core.log` |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 306 | |
| 307 | .. code-block:: lua |
| 308 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 309 | function Info(msg) |
| 310 | core.log(core.info, msg) |
| 311 | end |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 312 | .. |
| 313 | |
| 314 | .. js:function:: core.Warning(msg) |
| 315 | |
| 316 | **context**: body, init, task, action, sample-fetch, converter |
| 317 | |
| 318 | :param string msg: The log content. |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 319 | :see: :js:func:`core.log` |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 320 | |
| 321 | .. code-block:: lua |
| 322 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 323 | function Warning(msg) |
| 324 | core.log(core.warning, msg) |
| 325 | end |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 326 | .. |
| 327 | |
| 328 | .. js:function:: core.Alert(msg) |
| 329 | |
| 330 | **context**: body, init, task, action, sample-fetch, converter |
| 331 | |
| 332 | :param string msg: The log content. |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 333 | :see: :js:func:`core.log` |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 334 | |
| 335 | .. code-block:: lua |
| 336 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 337 | function Alert(msg) |
| 338 | core.log(core.alert, msg) |
| 339 | end |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 340 | .. |
| 341 | |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 342 | .. js:function:: core.add_acl(filename, key) |
| 343 | |
| 344 | **context**: init, task, action, sample-fetch, converter |
| 345 | |
| 346 | Add the ACL *key* in the ACLs list referenced by the file *filename*. |
| 347 | |
| 348 | :param string filename: the filename that reference the ACL entries. |
| 349 | :param string key: the key which will be added. |
| 350 | |
| 351 | .. js:function:: core.del_acl(filename, key) |
| 352 | |
| 353 | **context**: init, task, action, sample-fetch, converter |
| 354 | |
| 355 | Delete the ACL entry referenced by the key *key* in the list of ACLs |
| 356 | referenced by *filename*. |
| 357 | |
| 358 | :param string filename: the filename that reference the ACL entries. |
| 359 | :param string key: the key which will be deleted. |
| 360 | |
| 361 | .. js:function:: core.del_map(filename, key) |
| 362 | |
| 363 | **context**: init, task, action, sample-fetch, converter |
| 364 | |
| 365 | Delete the map entry indexed with the specified key in the list of maps |
| 366 | referenced by his filename. |
| 367 | |
| 368 | :param string filename: the filename that reference the map entries. |
| 369 | :param string key: the key which will be deleted. |
| 370 | |
Thierry Fournier | eea77c0 | 2016-03-18 08:47:13 +0100 | [diff] [blame] | 371 | .. js:function:: core.get_info() |
| 372 | |
| 373 | **context**: body, init, task, action, sample-fetch, converter |
| 374 | |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 375 | Returns HAProxy core information. We can find information like the uptime, |
Thierry Fournier | eea77c0 | 2016-03-18 08:47:13 +0100 | [diff] [blame] | 376 | the pid, memory pool usage, tasks number, ... |
| 377 | |
Ilya Shipitsin | 5fa29b8 | 2022-12-07 09:46:19 +0500 | [diff] [blame] | 378 | This information is also returned by the management socket via the command |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 379 | "show info". See the management socket documentation for more information |
Thierry Fournier | eea77c0 | 2016-03-18 08:47:13 +0100 | [diff] [blame] | 380 | about the content of these variables. |
| 381 | |
| 382 | :returns: an array of values. |
| 383 | |
Thierry Fournier | b1f4656 | 2016-01-21 09:46:15 +0100 | [diff] [blame] | 384 | .. js:function:: core.now() |
| 385 | |
| 386 | **context**: body, init, task, action |
| 387 | |
| 388 | This function returns the current time. The time returned is fixed by the |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 389 | HAProxy core and assures than the hour will be monotonic and that the system |
Thierry Fournier | b1f4656 | 2016-01-21 09:46:15 +0100 | [diff] [blame] | 390 | call 'gettimeofday' will not be called too. The time is refreshed between each |
| 391 | Lua execution or resume, so two consecutive call to the function "now" will |
| 392 | probably returns the same result. |
| 393 | |
Patrick Hemmer | c6a1d71 | 2018-05-01 21:30:41 -0400 | [diff] [blame] | 394 | :returns: a table which contains two entries "sec" and "usec". "sec" |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 395 | contains the current at the epoch format, and "usec" contains the |
| 396 | current microseconds. |
Thierry Fournier | b1f4656 | 2016-01-21 09:46:15 +0100 | [diff] [blame] | 397 | |
Thierry FOURNIER | a78f037 | 2016-12-14 19:04:41 +0100 | [diff] [blame] | 398 | .. js:function:: core.http_date(date) |
| 399 | |
| 400 | **context**: body, init, task, action |
| 401 | |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 402 | This function take a string representing http date, and returns an integer |
Thierry FOURNIER | a78f037 | 2016-12-14 19:04:41 +0100 | [diff] [blame] | 403 | containing the corresponding date with a epoch format. A valid http date |
| 404 | me respect the format IMF, RFC850 or ASCTIME. |
| 405 | |
| 406 | :param string date: a date http-date formatted |
| 407 | :returns: integer containing epoch date |
| 408 | :see: :js:func:`core.imf_date`. |
| 409 | :see: :js:func:`core.rfc850_date`. |
| 410 | :see: :js:func:`core.asctime_date`. |
| 411 | :see: https://tools.ietf.org/html/rfc7231#section-7.1.1.1 |
| 412 | |
| 413 | .. js:function:: core.imf_date(date) |
| 414 | |
| 415 | **context**: body, init, task, action |
| 416 | |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 417 | This function take a string representing IMF date, and returns an integer |
Thierry FOURNIER | a78f037 | 2016-12-14 19:04:41 +0100 | [diff] [blame] | 418 | containing the corresponding date with a epoch format. |
| 419 | |
| 420 | :param string date: a date IMF formatted |
| 421 | :returns: integer containing epoch date |
| 422 | :see: https://tools.ietf.org/html/rfc7231#section-7.1.1.1 |
| 423 | |
| 424 | The IMF format is like this: |
| 425 | |
| 426 | .. code-block:: text |
| 427 | |
| 428 | Sun, 06 Nov 1994 08:49:37 GMT |
| 429 | .. |
| 430 | |
| 431 | .. js:function:: core.rfc850_date(date) |
| 432 | |
| 433 | **context**: body, init, task, action |
| 434 | |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 435 | This function take a string representing RFC850 date, and returns an integer |
Thierry FOURNIER | a78f037 | 2016-12-14 19:04:41 +0100 | [diff] [blame] | 436 | containing the corresponding date with a epoch format. |
| 437 | |
| 438 | :param string date: a date RFC859 formatted |
| 439 | :returns: integer containing epoch date |
| 440 | :see: https://tools.ietf.org/html/rfc7231#section-7.1.1.1 |
| 441 | |
| 442 | The RFC850 format is like this: |
| 443 | |
| 444 | .. code-block:: text |
| 445 | |
| 446 | Sunday, 06-Nov-94 08:49:37 GMT |
| 447 | .. |
| 448 | |
| 449 | .. js:function:: core.asctime_date(date) |
| 450 | |
| 451 | **context**: body, init, task, action |
| 452 | |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 453 | This function take a string representing ASCTIME date, and returns an integer |
Thierry FOURNIER | a78f037 | 2016-12-14 19:04:41 +0100 | [diff] [blame] | 454 | containing the corresponding date with a epoch format. |
| 455 | |
| 456 | :param string date: a date ASCTIME formatted |
| 457 | :returns: integer containing epoch date |
| 458 | :see: https://tools.ietf.org/html/rfc7231#section-7.1.1.1 |
| 459 | |
| 460 | The ASCTIME format is like this: |
| 461 | |
| 462 | .. code-block:: text |
| 463 | |
| 464 | Sun Nov 6 08:49:37 1994 |
| 465 | .. |
| 466 | |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 467 | .. js:function:: core.msleep(milliseconds) |
| 468 | |
| 469 | **context**: body, init, task, action |
| 470 | |
| 471 | The `core.msleep()` stops the Lua execution between specified milliseconds. |
| 472 | |
| 473 | :param integer milliseconds: the required milliseconds. |
| 474 | |
Thierry FOURNIER | c5d11c6 | 2018-02-12 14:46:54 +0100 | [diff] [blame] | 475 | .. js:function:: core.register_action(name, actions, func [, nb_args]) |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 476 | |
| 477 | **context**: body |
| 478 | |
David Carlier | 61fdf8b | 2015-10-02 11:59:38 +0100 | [diff] [blame] | 479 | Register a Lua function executed as action. All the registered action can be |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 480 | used in HAProxy with the prefix "lua.". An action gets a TXN object class as |
| 481 | input. |
| 482 | |
| 483 | :param string name: is the name of the converter. |
Willy Tarreau | 61add3c | 2015-09-28 15:39:10 +0200 | [diff] [blame] | 484 | :param table actions: is a table of string describing the HAProxy actions who |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 485 | want to register to. The expected actions are 'tcp-req', 'tcp-res', 'http-req' |
| 486 | or 'http-res'. |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 487 | :param function func: is the Lua function called to work as converter. |
Thierry FOURNIER | c5d11c6 | 2018-02-12 14:46:54 +0100 | [diff] [blame] | 488 | :param integer nb_args: is the expected number of argument for the action. |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 489 | By default the value is 0. |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 490 | |
| 491 | The prototype of the Lua function used as argument is: |
| 492 | |
| 493 | .. code-block:: lua |
| 494 | |
Thierry FOURNIER | c5d11c6 | 2018-02-12 14:46:54 +0100 | [diff] [blame] | 495 | function(txn [, arg1 [, arg2]]) |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 496 | .. |
| 497 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 498 | * **txn** (:ref:`txn_class`): this is a TXN object used for manipulating the |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 499 | current request or TCP stream. |
| 500 | |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 501 | * **argX**: this is argument provided through the HAProxy configuration file. |
Thierry FOURNIER | c5d11c6 | 2018-02-12 14:46:54 +0100 | [diff] [blame] | 502 | |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 503 | Here, an example of action registration. The action just send an 'Hello world' |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 504 | in the logs. |
| 505 | |
| 506 | .. code-block:: lua |
| 507 | |
| 508 | core.register_action("hello-world", { "tcp-req", "http-req" }, function(txn) |
| 509 | txn:Info("Hello world") |
| 510 | end) |
| 511 | .. |
| 512 | |
Willy Tarreau | 714f345 | 2021-05-09 06:47:26 +0200 | [diff] [blame] | 513 | This example code is used in HAProxy configuration like this: |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 514 | |
| 515 | :: |
| 516 | |
| 517 | frontend tcp_frt |
| 518 | mode tcp |
| 519 | tcp-request content lua.hello-world |
| 520 | |
| 521 | frontend http_frt |
| 522 | mode http |
| 523 | http-request lua.hello-world |
Aurelien DARRAGON | d5c80d7 | 2023-03-13 19:36:13 +0100 | [diff] [blame] | 524 | |
Thierry FOURNIER | c5d11c6 | 2018-02-12 14:46:54 +0100 | [diff] [blame] | 525 | .. |
| 526 | |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 527 | A second example using arguments |
Thierry FOURNIER | c5d11c6 | 2018-02-12 14:46:54 +0100 | [diff] [blame] | 528 | |
| 529 | .. code-block:: lua |
| 530 | |
| 531 | function hello_world(txn, arg) |
| 532 | txn:Info("Hello world for " .. arg) |
| 533 | end |
| 534 | core.register_action("hello-world", { "tcp-req", "http-req" }, hello_world, 2) |
Aurelien DARRAGON | d5c80d7 | 2023-03-13 19:36:13 +0100 | [diff] [blame] | 535 | |
Thierry FOURNIER | c5d11c6 | 2018-02-12 14:46:54 +0100 | [diff] [blame] | 536 | .. |
Thierry FOURNIER | 8255a75 | 2015-09-23 21:03:35 +0200 | [diff] [blame] | 537 | |
Willy Tarreau | 714f345 | 2021-05-09 06:47:26 +0200 | [diff] [blame] | 538 | This example code is used in HAProxy configuration like this: |
Thierry FOURNIER | c5d11c6 | 2018-02-12 14:46:54 +0100 | [diff] [blame] | 539 | |
| 540 | :: |
| 541 | |
| 542 | frontend tcp_frt |
| 543 | mode tcp |
| 544 | tcp-request content lua.hello-world everybody |
Aurelien DARRAGON | d5c80d7 | 2023-03-13 19:36:13 +0100 | [diff] [blame] | 545 | |
Thierry FOURNIER | c5d11c6 | 2018-02-12 14:46:54 +0100 | [diff] [blame] | 546 | .. |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 547 | |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 548 | .. js:function:: core.register_converters(name, func) |
| 549 | |
| 550 | **context**: body |
| 551 | |
David Carlier | 61fdf8b | 2015-10-02 11:59:38 +0100 | [diff] [blame] | 552 | Register a Lua function executed as converter. All the registered converters |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 553 | can be used in HAProxy with the prefix "lua.". A converter gets a string as |
| 554 | input and returns a string as output. The registered function can take up to 9 |
| 555 | values as parameter. All the values are strings. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 556 | |
| 557 | :param string name: is the name of the converter. |
| 558 | :param function func: is the Lua function called to work as converter. |
| 559 | |
| 560 | The prototype of the Lua function used as argument is: |
| 561 | |
| 562 | .. code-block:: lua |
| 563 | |
| 564 | function(str, [p1 [, p2 [, ... [, p5]]]]) |
| 565 | .. |
| 566 | |
| 567 | * **str** (*string*): this is the input value automatically converted in |
| 568 | string. |
| 569 | * **p1** .. **p5** (*string*): this is a list of string arguments declared in |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 570 | the HAProxy configuration file. The number of arguments doesn't exceed 5. |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 571 | The order and the nature of these is conventionally chosen by the |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 572 | developer. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 573 | |
| 574 | .. js:function:: core.register_fetches(name, func) |
| 575 | |
| 576 | **context**: body |
| 577 | |
David Carlier | 61fdf8b | 2015-10-02 11:59:38 +0100 | [diff] [blame] | 578 | Register a Lua function executed as sample fetch. All the registered sample |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 579 | fetch can be used in HAProxy with the prefix "lua.". A Lua sample fetch |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 580 | returns a string as output. The registered function can take up to 9 values as |
| 581 | parameter. All the values are strings. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 582 | |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 583 | :param string name: is the name of the sample fetch. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 584 | :param function func: is the Lua function called to work as sample fetch. |
| 585 | |
| 586 | The prototype of the Lua function used as argument is: |
| 587 | |
| 588 | .. code-block:: lua |
| 589 | |
| 590 | string function(txn, [p1 [, p2 [, ... [, p5]]]]) |
| 591 | .. |
| 592 | |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 593 | * **txn** (:ref:`txn_class`): this is the txn object associated with the |
| 594 | current request. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 595 | * **p1** .. **p5** (*string*): this is a list of string arguments declared in |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 596 | the HAProxy configuration file. The number of arguments doesn't exceed 5. |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 597 | The order and the nature of these is conventionally chosen by the |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 598 | developer. |
| 599 | * **Returns**: A string containing some data, or nil if the value cannot be |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 600 | returned now. |
| 601 | |
| 602 | lua example code: |
| 603 | |
| 604 | .. code-block:: lua |
| 605 | |
| 606 | core.register_fetches("hello", function(txn) |
| 607 | return "hello" |
| 608 | end) |
| 609 | .. |
| 610 | |
| 611 | HAProxy example configuration: |
| 612 | |
| 613 | :: |
| 614 | |
| 615 | frontend example |
| 616 | http-request redirect location /%[lua.hello] |
| 617 | |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 618 | .. js:function:: core.register_filter(name, Flt, func) |
| 619 | |
| 620 | **context**: body |
| 621 | |
| 622 | Register a Lua function used to declare a filter. All the registered filters |
| 623 | can by used in HAProxy with the prefix "lua.". |
| 624 | |
| 625 | :param string name: is the name of the filter. |
| 626 | :param table Flt: is a Lua class containing the filter definition (id, flags, |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 627 | callbacks). |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 628 | :param function func: is the Lua function called to create the Lua filter. |
| 629 | |
| 630 | The prototype of the Lua function used as argument is: |
| 631 | |
| 632 | .. code-block:: lua |
| 633 | |
| 634 | function(flt, args) |
| 635 | .. |
| 636 | |
| 637 | * **flt** : Is a filter object based on the class provided in |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 638 | :js:func:`core.register_filter()` function. |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 639 | |
| 640 | * **args**: Is a table of strings containing all arguments provided through |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 641 | the HAProxy configuration file, on the filter line. |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 642 | |
| 643 | It must return the filter to use or nil to ignore it. Here, an example of |
| 644 | filter registration. |
| 645 | |
| 646 | .. code-block:: lua |
| 647 | |
| 648 | core.register_filter("my-filter", MyFilter, function(flt, args) |
| 649 | flt.args = args -- Save arguments |
| 650 | return flt |
| 651 | end) |
| 652 | .. |
| 653 | |
| 654 | This example code is used in HAProxy configuration like this: |
| 655 | |
| 656 | :: |
| 657 | |
| 658 | frontend http |
| 659 | mode http |
| 660 | filter lua.my-filter arg1 arg2 arg3 |
Aurelien DARRAGON | d5c80d7 | 2023-03-13 19:36:13 +0100 | [diff] [blame] | 661 | |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 662 | .. |
| 663 | |
| 664 | :see: :js:class:`Filter` |
| 665 | |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 666 | .. js:function:: core.register_service(name, mode, func) |
| 667 | |
| 668 | **context**: body |
| 669 | |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 670 | Register a Lua function executed as a service. All the registered services |
| 671 | can be used in HAProxy with the prefix "lua.". A service gets an object class |
| 672 | as input according with the required mode. |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 673 | |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 674 | :param string name: is the name of the service. |
Willy Tarreau | 61add3c | 2015-09-28 15:39:10 +0200 | [diff] [blame] | 675 | :param string mode: is string describing the required mode. Only 'tcp' or |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 676 | 'http' are allowed. |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 677 | :param function func: is the Lua function called to work as service. |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 678 | |
| 679 | The prototype of the Lua function used as argument is: |
| 680 | |
| 681 | .. code-block:: lua |
| 682 | |
| 683 | function(applet) |
| 684 | .. |
| 685 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 686 | * **applet** *applet* will be a :ref:`applettcp_class` or a |
| 687 | :ref:`applethttp_class`. It depends the type of registered applet. An applet |
| 688 | registered with the 'http' value for the *mode* parameter will gets a |
| 689 | :ref:`applethttp_class`. If the *mode* value is 'tcp', the applet will gets |
| 690 | a :ref:`applettcp_class`. |
| 691 | |
Christopher Faulet | 1e9b1b6 | 2021-08-11 10:14:30 +0200 | [diff] [blame] | 692 | .. warning:: |
| 693 | Applets of type 'http' cannot be called from 'tcp-*' rulesets. Only the |
| 694 | 'http-*' rulesets are authorized, this means that is not possible to call |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 695 | a HTTP applet from a proxy in tcp mode. Applets of type 'tcp' can be |
Christopher Faulet | 1e9b1b6 | 2021-08-11 10:14:30 +0200 | [diff] [blame] | 696 | called from anywhere. |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 697 | |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 698 | Here, an example of service registration. The service just send an |
| 699 | 'Hello world' as an http response. |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 700 | |
| 701 | .. code-block:: lua |
| 702 | |
Pieter Baauw | 4d7f766 | 2015-11-08 16:38:08 +0100 | [diff] [blame] | 703 | core.register_service("hello-world", "http", function(applet) |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 704 | local response = "Hello World !" |
| 705 | applet:set_status(200) |
Pieter Baauw | 2dcb9bc | 2015-10-01 22:47:12 +0200 | [diff] [blame] | 706 | applet:add_header("content-length", string.len(response)) |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 707 | applet:add_header("content-type", "text/plain") |
Pieter Baauw | 2dcb9bc | 2015-10-01 22:47:12 +0200 | [diff] [blame] | 708 | applet:start_response() |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 709 | applet:send(response) |
| 710 | end) |
| 711 | .. |
| 712 | |
Willy Tarreau | 714f345 | 2021-05-09 06:47:26 +0200 | [diff] [blame] | 713 | This example code is used in HAProxy configuration like this: |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 714 | |
| 715 | :: |
| 716 | |
| 717 | frontend example |
| 718 | http-request use-service lua.hello-world |
| 719 | |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 720 | .. js:function:: core.register_init(func) |
| 721 | |
| 722 | **context**: body |
| 723 | |
| 724 | Register a function executed after the configuration parsing. This is useful |
| 725 | to check any parameters. |
| 726 | |
Pieter Baauw | 4d7f766 | 2015-11-08 16:38:08 +0100 | [diff] [blame] | 727 | :param function func: is the Lua function called to work as initializer. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 728 | |
| 729 | The prototype of the Lua function used as argument is: |
| 730 | |
| 731 | .. code-block:: lua |
| 732 | |
| 733 | function() |
| 734 | .. |
| 735 | |
| 736 | It takes no input, and no output is expected. |
| 737 | |
Aurelien DARRAGON | b803899 | 2023-03-09 16:48:30 +0100 | [diff] [blame] | 738 | .. js:function:: core.register_task(func[, arg1[, arg2[, ...[, arg4]]]]) |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 739 | |
Aurelien DARRAGON | c84899c | 2023-02-20 18:18:59 +0100 | [diff] [blame] | 740 | **context**: body, init, task, action, sample-fetch, converter, event |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 741 | |
| 742 | Register and start independent task. The task is started when the HAProxy |
| 743 | main scheduler starts. For example this type of tasks can be executed to |
Thierry FOURNIER | 2e4893c | 2015-03-18 13:37:27 +0100 | [diff] [blame] | 744 | perform complex health checks. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 745 | |
Aurelien DARRAGON | b803899 | 2023-03-09 16:48:30 +0100 | [diff] [blame] | 746 | :param function func: is the Lua function called to work as an async task. |
| 747 | |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 748 | Up to 4 optional arguments (all types supported) may be passed to the |
| 749 | function. (They will be passed as-is to the task function) |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 750 | |
| 751 | The prototype of the Lua function used as argument is: |
| 752 | |
| 753 | .. code-block:: lua |
| 754 | |
Aurelien DARRAGON | b803899 | 2023-03-09 16:48:30 +0100 | [diff] [blame] | 755 | function([arg1[, arg2[, ...[, arg4]]]]) |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 756 | .. |
| 757 | |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 758 | It takes up to 4 optional arguments (provided when registering), and no |
| 759 | output is expected. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 760 | |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 761 | .. js:function:: core.register_cli([path], usage, func) |
| 762 | |
| 763 | **context**: body |
| 764 | |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 765 | Register a custom cli that will be available from haproxy stats socket. |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 766 | |
| 767 | :param array path: is the sequence of word for which the cli execute the Lua |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 768 | binding. |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 769 | :param string usage: is the usage message displayed in the help. |
| 770 | :param function func: is the Lua function called to handle the CLI commands. |
| 771 | |
| 772 | The prototype of the Lua function used as argument is: |
| 773 | |
| 774 | .. code-block:: lua |
| 775 | |
| 776 | function(AppletTCP, [arg1, [arg2, [...]]]) |
| 777 | .. |
| 778 | |
| 779 | I/O are managed with the :ref:`applettcp_class` object. Args are given as |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 780 | parameter. The args embed the registered path. If the path is declared like |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 781 | this: |
| 782 | |
| 783 | .. code-block:: lua |
| 784 | |
| 785 | core.register_cli({"show", "ssl", "stats"}, "Display SSL stats..", function(applet, arg1, arg2, arg3, arg4, arg5) |
| 786 | end) |
| 787 | .. |
| 788 | |
| 789 | And we execute this in the prompt: |
| 790 | |
| 791 | .. code-block:: text |
| 792 | |
| 793 | > prompt |
| 794 | > show ssl stats all |
| 795 | .. |
| 796 | |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 797 | Then, arg1, arg2 and arg3 will contains respectively "show", "ssl" and |
| 798 | "stats". |
Thierry FOURNIER / OZON.IO | a44fdd9 | 2016-11-13 13:19:20 +0100 | [diff] [blame] | 799 | arg4 will contain "all". arg5 contains nil. |
| 800 | |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 801 | .. js:function:: core.set_nice(nice) |
| 802 | |
| 803 | **context**: task, action, sample-fetch, converter |
| 804 | |
| 805 | Change the nice of the current task or current session. |
Thierry FOURNIER | 2e4893c | 2015-03-18 13:37:27 +0100 | [diff] [blame] | 806 | |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 807 | :param integer nice: the nice value, it must be between -1024 and 1024. |
| 808 | |
| 809 | .. js:function:: core.set_map(filename, key, value) |
| 810 | |
| 811 | **context**: init, task, action, sample-fetch, converter |
| 812 | |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 813 | Set the value *value* associated to the key *key* in the map referenced by |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 814 | *filename*. |
| 815 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 816 | :param string filename: the Map reference |
| 817 | :param string key: the key to set or replace |
| 818 | :param string value: the associated value |
| 819 | |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 820 | .. js:function:: core.sleep(int seconds) |
| 821 | |
| 822 | **context**: body, init, task, action |
| 823 | |
| 824 | The `core.sleep()` functions stop the Lua execution between specified seconds. |
| 825 | |
| 826 | :param integer seconds: the required seconds. |
| 827 | |
| 828 | .. js:function:: core.tcp() |
| 829 | |
| 830 | **context**: init, task, action |
| 831 | |
| 832 | This function returns a new object of a *socket* class. |
| 833 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 834 | :returns: A :ref:`socket_class` object. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 835 | |
William Lallemand | 00a1502 | 2021-11-19 16:02:44 +0100 | [diff] [blame] | 836 | .. js:function:: core.httpclient() |
| 837 | |
| 838 | **context**: init, task, action |
| 839 | |
| 840 | This function returns a new object of a *httpclient* class. |
| 841 | |
| 842 | :returns: A :ref:`httpclient_class` object. |
| 843 | |
Thierry Fournier | 1de1659 | 2016-01-27 09:49:07 +0100 | [diff] [blame] | 844 | .. js:function:: core.concat() |
| 845 | |
| 846 | **context**: body, init, task, action, sample-fetch, converter |
| 847 | |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 848 | This function returns a new concat object. |
Thierry Fournier | 1de1659 | 2016-01-27 09:49:07 +0100 | [diff] [blame] | 849 | |
| 850 | :returns: A :ref:`concat_class` object. |
| 851 | |
Thierry FOURNIER | 0a99b89 | 2015-08-26 00:14:17 +0200 | [diff] [blame] | 852 | .. js:function:: core.done(data) |
| 853 | |
| 854 | **context**: body, init, task, action, sample-fetch, converter |
| 855 | |
| 856 | :param any data: Return some data for the caller. It is useful with |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 857 | sample-fetches and sample-converters. |
Thierry FOURNIER | 0a99b89 | 2015-08-26 00:14:17 +0200 | [diff] [blame] | 858 | |
| 859 | Immediately stops the current Lua execution and returns to the caller which |
| 860 | may be a sample fetch, a converter or an action and returns the specified |
Thierry Fournier | 4234dbd | 2020-11-28 13:18:23 +0100 | [diff] [blame] | 861 | value (ignored for actions and init). It is used when the LUA process finishes |
| 862 | its work and wants to give back the control to HAProxy without executing the |
Thierry FOURNIER | 0a99b89 | 2015-08-26 00:14:17 +0200 | [diff] [blame] | 863 | remaining code. It can be seen as a multi-level "return". |
| 864 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 865 | .. js:function:: core.yield() |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 866 | |
| 867 | **context**: task, action, sample-fetch, converter |
| 868 | |
| 869 | Give back the hand at the HAProxy scheduler. It is used when the LUA |
| 870 | processing consumes a lot of processing time. |
| 871 | |
Thierry FOURNIER / OZON.IO | 62fec75 | 2016-11-10 20:38:11 +0100 | [diff] [blame] | 872 | .. js:function:: core.parse_addr(address) |
| 873 | |
| 874 | **context**: body, init, task, action, sample-fetch, converter |
| 875 | |
| 876 | :param network: is a string describing an ipv4 or ipv6 address and optionally |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 877 | its network length, like this: "127.0.0.1/8" or "aaaa::1234/32". |
Thierry FOURNIER / OZON.IO | 62fec75 | 2016-11-10 20:38:11 +0100 | [diff] [blame] | 878 | :returns: a userdata containing network or nil if an error occurs. |
| 879 | |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 880 | Parse ipv4 or ipv6 addresses and its facultative associated network. |
Thierry FOURNIER / OZON.IO | 62fec75 | 2016-11-10 20:38:11 +0100 | [diff] [blame] | 881 | |
| 882 | .. js:function:: core.match_addr(addr1, addr2) |
| 883 | |
| 884 | **context**: body, init, task, action, sample-fetch, converter |
| 885 | |
| 886 | :param addr1: is an address created with "core.parse_addr". |
| 887 | :param addr2: is an address created with "core.parse_addr". |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 888 | :returns: boolean, true if the network of the addresses match, else returns |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 889 | false. |
Thierry FOURNIER / OZON.IO | 62fec75 | 2016-11-10 20:38:11 +0100 | [diff] [blame] | 890 | |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 891 | Match two networks. For example "127.0.0.1/32" matches "127.0.0.0/8". The |
| 892 | order of network is not important. |
Thierry FOURNIER / OZON.IO | 62fec75 | 2016-11-10 20:38:11 +0100 | [diff] [blame] | 893 | |
Thierry FOURNIER / OZON.IO | 8a1027a | 2016-11-24 20:48:38 +0100 | [diff] [blame] | 894 | .. js:function:: core.tokenize(str, separators [, noblank]) |
| 895 | |
| 896 | **context**: body, init, task, action, sample-fetch, converter |
| 897 | |
| 898 | This function is useful for tokenizing an entry, or splitting some messages. |
| 899 | :param string str: The string which will be split. |
| 900 | :param string separators: A string containing a list of separators. |
| 901 | :param boolean noblank: Ignore empty entries. |
| 902 | :returns: an array of string. |
| 903 | |
| 904 | For example: |
| 905 | |
| 906 | .. code-block:: lua |
| 907 | |
| 908 | local array = core.tokenize("This function is useful, for tokenizing an entry.", "., ", true) |
| 909 | print_r(array) |
| 910 | .. |
| 911 | |
| 912 | Returns this array: |
| 913 | |
| 914 | .. code-block:: text |
| 915 | |
| 916 | (table) table: 0x21c01e0 [ |
| 917 | 1: (string) "This" |
| 918 | 2: (string) "function" |
| 919 | 3: (string) "is" |
| 920 | 4: (string) "useful" |
| 921 | 5: (string) "for" |
| 922 | 6: (string) "tokenizing" |
| 923 | 7: (string) "an" |
| 924 | 8: (string) "entry" |
| 925 | ] |
| 926 | .. |
| 927 | |
Aurelien DARRAGON | c84899c | 2023-02-20 18:18:59 +0100 | [diff] [blame] | 928 | .. js:function:: core.event_sub(event_types, func) |
| 929 | |
| 930 | **context**: body, init, task, action, sample-fetch, converter |
| 931 | |
| 932 | Register a function that will be called on specific system events. |
| 933 | |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 934 | :param array event_types: array of string containing the event types you want |
| 935 | to subscribe to |
| 936 | :param function func: is the Lua function called when one of the subscribed |
| 937 | events occur. |
Aurelien DARRAGON | c84899c | 2023-02-20 18:18:59 +0100 | [diff] [blame] | 938 | :returns: A :ref:`event_sub_class` object. |
Aurelien DARRAGON | 223770d | 2023-03-10 15:34:35 +0100 | [diff] [blame] | 939 | :see: :js:func:`Server.event_sub()`. |
Aurelien DARRAGON | c84899c | 2023-02-20 18:18:59 +0100 | [diff] [blame] | 940 | |
| 941 | List of available event types : |
| 942 | |
| 943 | **SERVER** Family: |
| 944 | |
| 945 | * **SERVER_ADD**: when a server is added |
| 946 | * **SERVER_DEL**: when a server is removed |
| 947 | * **SERVER_DOWN**: when a server state goes from UP to DOWN |
| 948 | * **SERVER_UP**: when a server state goes from DOWN to UP |
| 949 | |
| 950 | .. Note:: |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 951 | You may also use **SERVER** in **event_types** to subscribe to all server |
| 952 | events types at once. |
Aurelien DARRAGON | c84899c | 2023-02-20 18:18:59 +0100 | [diff] [blame] | 953 | |
| 954 | The prototype of the Lua function used as argument is: |
| 955 | |
| 956 | .. code-block:: lua |
| 957 | |
Aurelien DARRAGON | 096b383 | 2023-04-20 11:32:46 +0200 | [diff] [blame] | 958 | function(event, event_data, sub, when) |
Aurelien DARRAGON | c84899c | 2023-02-20 18:18:59 +0100 | [diff] [blame] | 959 | .. |
| 960 | |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 961 | * **event** (*string*): the event type (one of the **event_types** specified |
| 962 | when subscribing) |
| 963 | * **event_data**: specific to each event family (For **SERVER** family, |
| 964 | a :ref:`server_event_class` object) |
| 965 | * **sub**: class to manage the subscription from within the event |
| 966 | (a :ref:`event_sub_class` object) |
Aurelien DARRAGON | 096b383 | 2023-04-20 11:32:46 +0200 | [diff] [blame] | 967 | * **when**: timestamp corresponding to the date when the event was generated. |
| 968 | It is an integer representing the number of seconds elapsed since Epoch. |
| 969 | It may be provided as optional argument to `os.date()` lua function to |
| 970 | convert it to a string according to a given format string. |
Aurelien DARRAGON | c84899c | 2023-02-20 18:18:59 +0100 | [diff] [blame] | 971 | |
| 972 | .. Warning:: |
| 973 | The callback function will only be scheduled on the very same thread that |
| 974 | performed the subscription. |
| 975 | |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 976 | Moreover, each thread treats events sequentially. It means that if you |
| 977 | have, let's say SERVER_UP followed by a SERVER_DOWN in a short timelapse, |
| 978 | then the cb function will first be called with SERVER_UP, and once it's |
| 979 | done handling the event, the cb function will be called again with |
| 980 | SERVER_DOWN. |
Aurelien DARRAGON | c84899c | 2023-02-20 18:18:59 +0100 | [diff] [blame] | 981 | |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 982 | This is to ensure event consistency when it comes to logging / triggering |
| 983 | logic from lua. |
Aurelien DARRAGON | c84899c | 2023-02-20 18:18:59 +0100 | [diff] [blame] | 984 | |
| 985 | Your lua cb function may yield if needed, but you're pleased to process the |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 986 | event as fast as possible to prevent the event queue from growing up, |
| 987 | depending on the event flow that is expected for the given subscription. |
Aurelien DARRAGON | c84899c | 2023-02-20 18:18:59 +0100 | [diff] [blame] | 988 | |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 989 | To prevent abuses, if the event queue for the current subscription goes |
| 990 | over a certain amount of unconsumed events, the subscription will pause |
| 991 | itself automatically for as long as it takes for your handler to catch up. |
| 992 | This would lead to events being missed, so an error will be reported in the |
| 993 | logs to warn you about that. |
| 994 | This is not something you want to let happen too often, it may indicate |
| 995 | that you subscribed to an event that is occurring too frequently or/and |
| 996 | that your callback function is too slow to keep up the pace and you should |
| 997 | review it. |
Aurelien DARRAGON | c84899c | 2023-02-20 18:18:59 +0100 | [diff] [blame] | 998 | |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 999 | If you want to do some parallel processing because your callback functions |
| 1000 | are slow: you might want to create subtasks from lua using |
| 1001 | :js:func:`core.register_task()` from within your callback function to |
| 1002 | perform the heavy job in a dedicated task and allow remaining events to be |
| 1003 | processed more quickly. |
Aurelien DARRAGON | c84899c | 2023-02-20 18:18:59 +0100 | [diff] [blame] | 1004 | |
Thierry Fournier | f61aa63 | 2016-02-19 20:56:00 +0100 | [diff] [blame] | 1005 | .. _proxy_class: |
| 1006 | |
| 1007 | Proxy class |
| 1008 | ============ |
| 1009 | |
| 1010 | .. js:class:: Proxy |
| 1011 | |
| 1012 | This class provides a way for manipulating proxy and retrieving information |
| 1013 | like statistics. |
| 1014 | |
Thierry FOURNIER | 817e759 | 2017-07-24 14:35:04 +0200 | [diff] [blame] | 1015 | .. js:attribute:: Proxy.name |
| 1016 | |
| 1017 | Contain the name of the proxy. |
| 1018 | |
Aurelien DARRAGON | c4b2437 | 2023-03-02 12:00:06 +0100 | [diff] [blame] | 1019 | .. warning:: |
| 1020 | This attribute is now deprecated and will eventually be removed. |
| 1021 | Please use :js:func:`Proxy.get_name()` function instead. |
| 1022 | |
Thierry Fournier | b046773 | 2022-10-07 12:07:24 +0200 | [diff] [blame] | 1023 | .. js:function:: Proxy.get_name() |
| 1024 | |
| 1025 | Returns the name of the proxy. |
| 1026 | |
Baptiste Assmann | 46c7255 | 2017-10-26 21:51:58 +0200 | [diff] [blame] | 1027 | .. js:attribute:: Proxy.uuid |
| 1028 | |
| 1029 | Contain the unique identifier of the proxy. |
| 1030 | |
Aurelien DARRAGON | c4b2437 | 2023-03-02 12:00:06 +0100 | [diff] [blame] | 1031 | .. warning:: |
| 1032 | This attribute is now deprecated and will eventually be removed. |
| 1033 | Please use :js:func:`Proxy.get_uuid()` function instead. |
| 1034 | |
Thierry Fournier | b046773 | 2022-10-07 12:07:24 +0200 | [diff] [blame] | 1035 | .. js:function:: Proxy.get_uuid() |
| 1036 | |
| 1037 | Returns the unique identifier of the proxy. |
| 1038 | |
Thierry Fournier | f2fdc9d | 2016-02-22 08:21:39 +0100 | [diff] [blame] | 1039 | .. js:attribute:: Proxy.servers |
| 1040 | |
Patrick Hemmer | c6a1d71 | 2018-05-01 21:30:41 -0400 | [diff] [blame] | 1041 | Contain a table with the attached servers. The table is indexed by server |
| 1042 | name, and each server entry is an object of type :ref:`server_class`. |
Thierry Fournier | f2fdc9d | 2016-02-22 08:21:39 +0100 | [diff] [blame] | 1043 | |
Adis Nezirovic | 8878f8e | 2018-07-13 12:18:33 +0200 | [diff] [blame] | 1044 | .. js:attribute:: Proxy.stktable |
| 1045 | |
| 1046 | Contains a stick table object attached to the proxy. |
| 1047 | |
Thierry Fournier | ff48042 | 2016-02-25 08:36:46 +0100 | [diff] [blame] | 1048 | .. js:attribute:: Proxy.listeners |
| 1049 | |
Patrick Hemmer | c6a1d71 | 2018-05-01 21:30:41 -0400 | [diff] [blame] | 1050 | Contain a table with the attached listeners. The table is indexed by listener |
| 1051 | name, and each each listeners entry is an object of type |
| 1052 | :ref:`listener_class`. |
Thierry Fournier | ff48042 | 2016-02-25 08:36:46 +0100 | [diff] [blame] | 1053 | |
Thierry Fournier | f61aa63 | 2016-02-19 20:56:00 +0100 | [diff] [blame] | 1054 | .. js:function:: Proxy.pause(px) |
| 1055 | |
| 1056 | Pause the proxy. See the management socket documentation for more information. |
| 1057 | |
| 1058 | :param class_proxy px: A :ref:`proxy_class` which indicates the manipulated |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1059 | proxy. |
Thierry Fournier | f61aa63 | 2016-02-19 20:56:00 +0100 | [diff] [blame] | 1060 | |
| 1061 | .. js:function:: Proxy.resume(px) |
| 1062 | |
| 1063 | Resume the proxy. See the management socket documentation for more |
| 1064 | information. |
| 1065 | |
| 1066 | :param class_proxy px: A :ref:`proxy_class` which indicates the manipulated |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1067 | proxy. |
Thierry Fournier | f61aa63 | 2016-02-19 20:56:00 +0100 | [diff] [blame] | 1068 | |
| 1069 | .. js:function:: Proxy.stop(px) |
| 1070 | |
| 1071 | Stop the proxy. See the management socket documentation for more information. |
| 1072 | |
| 1073 | :param class_proxy px: A :ref:`proxy_class` which indicates the manipulated |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1074 | proxy. |
Thierry Fournier | f61aa63 | 2016-02-19 20:56:00 +0100 | [diff] [blame] | 1075 | |
| 1076 | .. js:function:: Proxy.shut_bcksess(px) |
| 1077 | |
| 1078 | Kill the session attached to a backup server. See the management socket |
| 1079 | documentation for more information. |
| 1080 | |
| 1081 | :param class_proxy px: A :ref:`proxy_class` which indicates the manipulated |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1082 | proxy. |
Thierry Fournier | f61aa63 | 2016-02-19 20:56:00 +0100 | [diff] [blame] | 1083 | |
| 1084 | .. js:function:: Proxy.get_cap(px) |
| 1085 | |
| 1086 | Returns a string describing the capabilities of the proxy. |
| 1087 | |
| 1088 | :param class_proxy px: A :ref:`proxy_class` which indicates the manipulated |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1089 | proxy. |
Thierry Fournier | f61aa63 | 2016-02-19 20:56:00 +0100 | [diff] [blame] | 1090 | :returns: a string "frontend", "backend", "proxy" or "ruleset". |
| 1091 | |
| 1092 | .. js:function:: Proxy.get_mode(px) |
| 1093 | |
| 1094 | Returns a string describing the mode of the current proxy. |
| 1095 | |
| 1096 | :param class_proxy px: A :ref:`proxy_class` which indicates the manipulated |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1097 | proxy. |
Thierry Fournier | f61aa63 | 2016-02-19 20:56:00 +0100 | [diff] [blame] | 1098 | :returns: a string "tcp", "http", "health" or "unknown" |
| 1099 | |
| 1100 | .. js:function:: Proxy.get_stats(px) |
| 1101 | |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 1102 | Returns a table containing the proxy statistics. The statistics returned are |
Thierry Fournier | f61aa63 | 2016-02-19 20:56:00 +0100 | [diff] [blame] | 1103 | not the same if the proxy is frontend or a backend. |
| 1104 | |
| 1105 | :param class_proxy px: A :ref:`proxy_class` which indicates the manipulated |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1106 | proxy. |
Patrick Hemmer | c6a1d71 | 2018-05-01 21:30:41 -0400 | [diff] [blame] | 1107 | :returns: a key/value table containing stats |
Thierry Fournier | f61aa63 | 2016-02-19 20:56:00 +0100 | [diff] [blame] | 1108 | |
Thierry Fournier | f2fdc9d | 2016-02-22 08:21:39 +0100 | [diff] [blame] | 1109 | .. _server_class: |
| 1110 | |
| 1111 | Server class |
| 1112 | ============ |
| 1113 | |
Patrick Hemmer | c6a1d71 | 2018-05-01 21:30:41 -0400 | [diff] [blame] | 1114 | .. js:class:: Server |
| 1115 | |
| 1116 | This class provides a way for manipulating servers and retrieving information. |
| 1117 | |
Patrick Hemmer | a62ae7e | 2018-04-29 14:23:48 -0400 | [diff] [blame] | 1118 | .. js:attribute:: Server.name |
| 1119 | |
| 1120 | Contain the name of the server. |
| 1121 | |
Aurelien DARRAGON | c4b2437 | 2023-03-02 12:00:06 +0100 | [diff] [blame] | 1122 | .. warning:: |
| 1123 | This attribute is now deprecated and will eventually be removed. |
| 1124 | Please use :js:func:`Server.get_name()` function instead. |
| 1125 | |
Thierry Fournier | b046773 | 2022-10-07 12:07:24 +0200 | [diff] [blame] | 1126 | .. js:function:: Server.get_name(sv) |
| 1127 | |
| 1128 | Returns the name of the server. |
| 1129 | |
Patrick Hemmer | a62ae7e | 2018-04-29 14:23:48 -0400 | [diff] [blame] | 1130 | .. js:attribute:: Server.puid |
| 1131 | |
| 1132 | Contain the proxy unique identifier of the server. |
| 1133 | |
Aurelien DARRAGON | c4b2437 | 2023-03-02 12:00:06 +0100 | [diff] [blame] | 1134 | .. warning:: |
| 1135 | This attribute is now deprecated and will eventually be removed. |
| 1136 | Please use :js:func:`Server.get_puid()` function instead. |
| 1137 | |
Thierry Fournier | b046773 | 2022-10-07 12:07:24 +0200 | [diff] [blame] | 1138 | .. js:function:: Server.get_puid(sv) |
| 1139 | |
| 1140 | Returns the proxy unique identifier of the server. |
| 1141 | |
Aurelien DARRAGON | 94ee663 | 2023-03-10 15:11:27 +0100 | [diff] [blame] | 1142 | .. js:function:: Server.get_rid(sv) |
| 1143 | |
| 1144 | Returns the rid (revision ID) of the server. |
| 1145 | It is an unsigned integer that is set upon server creation. Value is derived |
| 1146 | from a global counter that starts at 0 and is incremented each time one or |
| 1147 | multiple server deletions are followed by a server addition (meaning that |
| 1148 | old name/id reuse could occur). |
| 1149 | |
| 1150 | Combining server name/id with server rid yields a process-wide unique |
| 1151 | identifier. |
| 1152 | |
Thierry Fournier | f2fdc9d | 2016-02-22 08:21:39 +0100 | [diff] [blame] | 1153 | .. js:function:: Server.is_draining(sv) |
| 1154 | |
Patrick Hemmer | c6a1d71 | 2018-05-01 21:30:41 -0400 | [diff] [blame] | 1155 | Return true if the server is currently draining sticky connections. |
Thierry Fournier | f2fdc9d | 2016-02-22 08:21:39 +0100 | [diff] [blame] | 1156 | |
| 1157 | :param class_server sv: A :ref:`server_class` which indicates the manipulated |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1158 | server. |
Thierry Fournier | f2fdc9d | 2016-02-22 08:21:39 +0100 | [diff] [blame] | 1159 | :returns: a boolean |
| 1160 | |
Aurelien DARRAGON | c72051d | 2023-03-29 10:44:38 +0200 | [diff] [blame] | 1161 | .. js:function:: Server.is_backup(sv) |
| 1162 | |
| 1163 | Return true if the server is a backup server |
| 1164 | |
| 1165 | :param class_server sv: A :ref:`server_class` which indicates the manipulated |
| 1166 | server. |
| 1167 | :returns: a boolean |
| 1168 | |
Aurelien DARRAGON | 7a03dee | 2023-03-29 10:49:30 +0200 | [diff] [blame] | 1169 | .. js:function:: Server.is_dynamic(sv) |
| 1170 | |
| 1171 | Return true if the server was instantiated at runtime (e.g.: from the cli) |
| 1172 | |
| 1173 | :param class_server sv: A :ref:`server_class` which indicates the manipulated |
| 1174 | server. |
| 1175 | :returns: a boolean |
| 1176 | |
Aurelien DARRAGON | fc759b4 | 2023-04-03 10:43:17 +0200 | [diff] [blame^] | 1177 | .. js:function:: Server.get_cur_sess(sv) |
| 1178 | |
| 1179 | Return the number of currently active sessions on the server |
| 1180 | |
| 1181 | :param class_server sv: A :ref:`server_class` which indicates the manipulated |
| 1182 | server. |
| 1183 | :returns: an integer |
| 1184 | |
| 1185 | .. js:function:: Server.get_pend_conn(sv) |
| 1186 | |
| 1187 | Return the number of pending connections to the server |
| 1188 | |
| 1189 | :param class_server sv: A :ref:`server_class` which indicates the manipulated |
| 1190 | server. |
| 1191 | :returns: an integer |
| 1192 | |
Patrick Hemmer | 32d539f | 2018-04-29 14:25:46 -0400 | [diff] [blame] | 1193 | .. js:function:: Server.set_maxconn(sv, weight) |
| 1194 | |
| 1195 | Dynamically change the maximum connections of the server. See the management |
| 1196 | socket documentation for more information about the format of the string. |
| 1197 | |
| 1198 | :param class_server sv: A :ref:`server_class` which indicates the manipulated |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1199 | server. |
Patrick Hemmer | 32d539f | 2018-04-29 14:25:46 -0400 | [diff] [blame] | 1200 | :param string maxconn: A string describing the server maximum connections. |
| 1201 | |
| 1202 | .. js:function:: Server.get_maxconn(sv, weight) |
| 1203 | |
| 1204 | This function returns an integer representing the server maximum connections. |
| 1205 | |
| 1206 | :param class_server sv: A :ref:`server_class` which indicates the manipulated |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1207 | server. |
Patrick Hemmer | 32d539f | 2018-04-29 14:25:46 -0400 | [diff] [blame] | 1208 | :returns: an integer. |
| 1209 | |
Thierry Fournier | f2fdc9d | 2016-02-22 08:21:39 +0100 | [diff] [blame] | 1210 | .. js:function:: Server.set_weight(sv, weight) |
| 1211 | |
Patrick Hemmer | c6a1d71 | 2018-05-01 21:30:41 -0400 | [diff] [blame] | 1212 | Dynamically change the weight of the server. See the management socket |
Thierry Fournier | f2fdc9d | 2016-02-22 08:21:39 +0100 | [diff] [blame] | 1213 | documentation for more information about the format of the string. |
| 1214 | |
| 1215 | :param class_server sv: A :ref:`server_class` which indicates the manipulated |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1216 | server. |
Thierry Fournier | f2fdc9d | 2016-02-22 08:21:39 +0100 | [diff] [blame] | 1217 | :param string weight: A string describing the server weight. |
| 1218 | |
| 1219 | .. js:function:: Server.get_weight(sv) |
| 1220 | |
Patrick Hemmer | c6a1d71 | 2018-05-01 21:30:41 -0400 | [diff] [blame] | 1221 | This function returns an integer representing the server weight. |
Thierry Fournier | f2fdc9d | 2016-02-22 08:21:39 +0100 | [diff] [blame] | 1222 | |
| 1223 | :param class_server sv: A :ref:`server_class` which indicates the manipulated |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1224 | server. |
Thierry Fournier | f2fdc9d | 2016-02-22 08:21:39 +0100 | [diff] [blame] | 1225 | :returns: an integer. |
| 1226 | |
Joseph C. Sible | 49bbf52 | 2020-05-04 22:20:32 -0400 | [diff] [blame] | 1227 | .. js:function:: Server.set_addr(sv, addr[, port]) |
Thierry Fournier | f2fdc9d | 2016-02-22 08:21:39 +0100 | [diff] [blame] | 1228 | |
Patrick Hemmer | c6a1d71 | 2018-05-01 21:30:41 -0400 | [diff] [blame] | 1229 | Dynamically change the address of the server. See the management socket |
Thierry Fournier | f2fdc9d | 2016-02-22 08:21:39 +0100 | [diff] [blame] | 1230 | documentation for more information about the format of the string. |
| 1231 | |
| 1232 | :param class_server sv: A :ref:`server_class` which indicates the manipulated |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1233 | server. |
Patrick Hemmer | c6a1d71 | 2018-05-01 21:30:41 -0400 | [diff] [blame] | 1234 | :param string addr: A string describing the server address. |
Thierry Fournier | f2fdc9d | 2016-02-22 08:21:39 +0100 | [diff] [blame] | 1235 | |
| 1236 | .. js:function:: Server.get_addr(sv) |
| 1237 | |
Patrick Hemmer | c6a1d71 | 2018-05-01 21:30:41 -0400 | [diff] [blame] | 1238 | Returns a string describing the address of the server. |
Thierry Fournier | f2fdc9d | 2016-02-22 08:21:39 +0100 | [diff] [blame] | 1239 | |
| 1240 | :param class_server sv: A :ref:`server_class` which indicates the manipulated |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1241 | server. |
Thierry Fournier | f2fdc9d | 2016-02-22 08:21:39 +0100 | [diff] [blame] | 1242 | :returns: A string |
| 1243 | |
| 1244 | .. js:function:: Server.get_stats(sv) |
| 1245 | |
| 1246 | Returns server statistics. |
| 1247 | |
| 1248 | :param class_server sv: A :ref:`server_class` which indicates the manipulated |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1249 | server. |
Patrick Hemmer | c6a1d71 | 2018-05-01 21:30:41 -0400 | [diff] [blame] | 1250 | :returns: a key/value table containing stats |
Thierry Fournier | f2fdc9d | 2016-02-22 08:21:39 +0100 | [diff] [blame] | 1251 | |
Aurelien DARRAGON | 3889efa | 2023-04-03 14:00:58 +0200 | [diff] [blame] | 1252 | .. js:function:: Server.get_proxy(sv) |
| 1253 | |
| 1254 | Returns the parent proxy to which the server belongs. |
| 1255 | |
| 1256 | :param class_server sv: A :ref:`server_class` which indicates the manipulated |
| 1257 | server. |
| 1258 | :returns: a :ref:`proxy_class` or nil if not available |
| 1259 | |
Thierry Fournier | f2fdc9d | 2016-02-22 08:21:39 +0100 | [diff] [blame] | 1260 | .. js:function:: Server.shut_sess(sv) |
| 1261 | |
| 1262 | Shutdown all the sessions attached to the server. See the management socket |
| 1263 | documentation for more information about this function. |
| 1264 | |
| 1265 | :param class_server sv: A :ref:`server_class` which indicates the manipulated |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1266 | server. |
Thierry Fournier | f2fdc9d | 2016-02-22 08:21:39 +0100 | [diff] [blame] | 1267 | |
| 1268 | .. js:function:: Server.set_drain(sv) |
| 1269 | |
| 1270 | Drain sticky sessions. See the management socket documentation for more |
| 1271 | information about this function. |
| 1272 | |
| 1273 | :param class_server sv: A :ref:`server_class` which indicates the manipulated |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1274 | server. |
Thierry Fournier | f2fdc9d | 2016-02-22 08:21:39 +0100 | [diff] [blame] | 1275 | |
| 1276 | .. js:function:: Server.set_maint(sv) |
| 1277 | |
| 1278 | Set maintenance mode. See the management socket documentation for more |
| 1279 | information about this function. |
| 1280 | |
| 1281 | :param class_server sv: A :ref:`server_class` which indicates the manipulated |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1282 | server. |
Thierry Fournier | f2fdc9d | 2016-02-22 08:21:39 +0100 | [diff] [blame] | 1283 | |
| 1284 | .. js:function:: Server.set_ready(sv) |
| 1285 | |
| 1286 | Set normal mode. See the management socket documentation for more information |
| 1287 | about this function. |
| 1288 | |
| 1289 | :param class_server sv: A :ref:`server_class` which indicates the manipulated |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1290 | server. |
Thierry Fournier | f2fdc9d | 2016-02-22 08:21:39 +0100 | [diff] [blame] | 1291 | |
| 1292 | .. js:function:: Server.check_enable(sv) |
| 1293 | |
| 1294 | Enable health checks. See the management socket documentation for more |
| 1295 | information about this function. |
| 1296 | |
| 1297 | :param class_server sv: A :ref:`server_class` which indicates the manipulated |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1298 | server. |
Thierry Fournier | f2fdc9d | 2016-02-22 08:21:39 +0100 | [diff] [blame] | 1299 | |
| 1300 | .. js:function:: Server.check_disable(sv) |
| 1301 | |
| 1302 | Disable health checks. See the management socket documentation for more |
| 1303 | information about this function. |
| 1304 | |
| 1305 | :param class_server sv: A :ref:`server_class` which indicates the manipulated |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1306 | server. |
Thierry Fournier | f2fdc9d | 2016-02-22 08:21:39 +0100 | [diff] [blame] | 1307 | |
| 1308 | .. js:function:: Server.check_force_up(sv) |
| 1309 | |
| 1310 | Force health-check up. See the management socket documentation for more |
| 1311 | information about this function. |
| 1312 | |
| 1313 | :param class_server sv: A :ref:`server_class` which indicates the manipulated |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1314 | server. |
Thierry Fournier | f2fdc9d | 2016-02-22 08:21:39 +0100 | [diff] [blame] | 1315 | |
| 1316 | .. js:function:: Server.check_force_nolb(sv) |
| 1317 | |
| 1318 | Force health-check nolb mode. See the management socket documentation for more |
| 1319 | information about this function. |
| 1320 | |
| 1321 | :param class_server sv: A :ref:`server_class` which indicates the manipulated |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1322 | server. |
Thierry Fournier | f2fdc9d | 2016-02-22 08:21:39 +0100 | [diff] [blame] | 1323 | |
| 1324 | .. js:function:: Server.check_force_down(sv) |
| 1325 | |
| 1326 | Force health-check down. See the management socket documentation for more |
| 1327 | information about this function. |
| 1328 | |
| 1329 | :param class_server sv: A :ref:`server_class` which indicates the manipulated |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1330 | server. |
Thierry Fournier | f2fdc9d | 2016-02-22 08:21:39 +0100 | [diff] [blame] | 1331 | |
| 1332 | .. js:function:: Server.agent_enable(sv) |
| 1333 | |
| 1334 | Enable agent check. See the management socket documentation for more |
| 1335 | information about this function. |
| 1336 | |
| 1337 | :param class_server sv: A :ref:`server_class` which indicates the manipulated |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1338 | server. |
Thierry Fournier | f2fdc9d | 2016-02-22 08:21:39 +0100 | [diff] [blame] | 1339 | |
| 1340 | .. js:function:: Server.agent_disable(sv) |
| 1341 | |
| 1342 | Disable agent check. See the management socket documentation for more |
| 1343 | information about this function. |
| 1344 | |
| 1345 | :param class_server sv: A :ref:`server_class` which indicates the manipulated |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1346 | server. |
Thierry Fournier | f2fdc9d | 2016-02-22 08:21:39 +0100 | [diff] [blame] | 1347 | |
| 1348 | .. js:function:: Server.agent_force_up(sv) |
| 1349 | |
| 1350 | Force agent check up. See the management socket documentation for more |
| 1351 | information about this function. |
| 1352 | |
| 1353 | :param class_server sv: A :ref:`server_class` which indicates the manipulated |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1354 | server. |
Thierry Fournier | f2fdc9d | 2016-02-22 08:21:39 +0100 | [diff] [blame] | 1355 | |
| 1356 | .. js:function:: Server.agent_force_down(sv) |
| 1357 | |
| 1358 | Force agent check down. See the management socket documentation for more |
| 1359 | information about this function. |
| 1360 | |
| 1361 | :param class_server sv: A :ref:`server_class` which indicates the manipulated |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1362 | server. |
Thierry Fournier | f2fdc9d | 2016-02-22 08:21:39 +0100 | [diff] [blame] | 1363 | |
Aurelien DARRAGON | 406511a | 2023-03-29 11:30:36 +0200 | [diff] [blame] | 1364 | .. js:function:: Server.tracking(sv) |
| 1365 | |
| 1366 | Check if the current server is tracking another server. |
| 1367 | |
| 1368 | :param class_server sv: A :ref:`server_class` which indicates the manipulated |
| 1369 | server. |
| 1370 | :returns: A :ref:`server_class` which indicates the tracked server or nil if |
| 1371 | the server doesn't track another one. |
| 1372 | |
Aurelien DARRAGON | 4be36a1 | 2023-03-29 14:02:39 +0200 | [diff] [blame] | 1373 | .. js:function:: Server.get_trackers(sv) |
| 1374 | |
| 1375 | Check if the current server is being tracked by other servers. |
| 1376 | |
| 1377 | :param class_server sv: A :ref:`server_class` which indicates the manipulated |
| 1378 | server. |
| 1379 | :returns: An array of :ref:`server_class` which indicates the tracking |
| 1380 | servers (might be empty) |
| 1381 | |
Aurelien DARRAGON | 223770d | 2023-03-10 15:34:35 +0100 | [diff] [blame] | 1382 | .. js:function:: Server.event_sub(sv, event_types, func) |
| 1383 | |
| 1384 | Register a function that will be called on specific server events. |
| 1385 | It works exactly like :js:func:`core.event_sub()` except that the subscription |
| 1386 | will be performed within the server dedicated subscription list instead of the |
| 1387 | global one. |
| 1388 | (Your callback function will only be called for server events affecting sv) |
| 1389 | |
| 1390 | See :js:func:`core.event_sub()` for function usage. |
| 1391 | |
| 1392 | A key advantage to using :js:func:`Server.event_sub()` over |
| 1393 | :js:func:`core.event_sub()` for servers is that :js:func:`Server.event_sub()` |
| 1394 | allows you to be notified for servers events of a single server only. |
| 1395 | It removes the needs for extra filtering in your callback function if you only |
| 1396 | care about a single server, and also prevents useless wakeups. |
| 1397 | |
| 1398 | For instance, if you want to be notified for UP/DOWN events on a given set of |
Ilya Shipitsin | ccf8012 | 2023-04-22 20:20:39 +0200 | [diff] [blame] | 1399 | servers, it is recommended to perform multiple per-server subscriptions since |
Aurelien DARRAGON | 223770d | 2023-03-10 15:34:35 +0100 | [diff] [blame] | 1400 | it will be more efficient that doing a single global subscription that will |
| 1401 | filter the received events. |
| 1402 | Unless you really want to be notified for servers events of ALL servers of |
| 1403 | course, which could make sense given you setup but should be avoided if you |
| 1404 | have an important number of servers as it will add a significant load on your |
| 1405 | haproxy process in case of multiple servers state change in a short amount of |
| 1406 | time. |
| 1407 | |
| 1408 | .. Note:: |
| 1409 | You may also combine :js:func:`core.event_sub()` with |
| 1410 | :js:func:`Server.event_sub()`. |
| 1411 | |
| 1412 | Also, don't forget that you can use :js:func:`core.register_task()` from |
| 1413 | your callback function if needed. (ie: parallel work) |
| 1414 | |
| 1415 | Here is a working example combining :js:func:`core.event_sub()` with |
| 1416 | :js:func:`Server.event_sub()` and :js:func:`core.register_task()` |
| 1417 | (This only serves as a demo, this is not necessarily useful to do so) |
| 1418 | |
| 1419 | .. code-block:: lua |
| 1420 | |
| 1421 | core.event_sub({"SERVER_ADD"}, function(event, data, sub) |
| 1422 | -- in the global event handler |
| 1423 | if data["reference"] ~= nil then |
| 1424 | print("Tracking new server: ", data["name"]) |
| 1425 | data["reference"]:event_sub({"SERVER_UP", "SERVER_DOWN"}, function(event, data, sub) |
| 1426 | -- in the per-server event handler |
| 1427 | if data["reference"] ~= nil then |
| 1428 | core.register_task(function(server) |
| 1429 | -- subtask to perform some async work (e.g.: HTTP API calls, sending emails...) |
| 1430 | print("ASYNC: SERVER ", server:get_name(), " is ", event == "SERVER_UP" and "UP" or "DOWN") |
| 1431 | end, data["reference"]) |
| 1432 | end |
| 1433 | end) |
| 1434 | end |
| 1435 | end) |
| 1436 | |
| 1437 | .. |
| 1438 | |
| 1439 | In this example, we will first track global server addition events. |
| 1440 | For each newly added server ("add server" on the cli), we will register a |
| 1441 | UP/DOWN server subscription. |
| 1442 | Then, the callback function will schedule the event handling in an async |
| 1443 | subtask which will receive the server reference as an argument. |
| 1444 | |
Thierry Fournier | ff48042 | 2016-02-25 08:36:46 +0100 | [diff] [blame] | 1445 | .. _listener_class: |
| 1446 | |
| 1447 | Listener class |
| 1448 | ============== |
| 1449 | |
| 1450 | .. js:function:: Listener.get_stats(ls) |
| 1451 | |
| 1452 | Returns server statistics. |
| 1453 | |
| 1454 | :param class_listener ls: A :ref:`listener_class` which indicates the |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1455 | manipulated listener. |
Patrick Hemmer | c6a1d71 | 2018-05-01 21:30:41 -0400 | [diff] [blame] | 1456 | :returns: a key/value table containing stats |
Thierry Fournier | ff48042 | 2016-02-25 08:36:46 +0100 | [diff] [blame] | 1457 | |
Aurelien DARRAGON | c84899c | 2023-02-20 18:18:59 +0100 | [diff] [blame] | 1458 | .. _event_sub_class: |
| 1459 | |
| 1460 | EventSub class |
| 1461 | ============== |
| 1462 | |
| 1463 | .. js:function:: EventSub.unsub() |
| 1464 | |
| 1465 | End the subscription, the callback function will not be called again. |
| 1466 | |
| 1467 | .. _server_event_class: |
| 1468 | |
| 1469 | ServerEvent class |
| 1470 | ================= |
| 1471 | |
| 1472 | .. js:attribute:: ServerEvent.name |
| 1473 | |
| 1474 | Contains the name of the server. |
| 1475 | |
| 1476 | .. js:attribute:: ServerEvent.puid |
| 1477 | |
| 1478 | Contains the proxy-unique uid of the server |
| 1479 | |
| 1480 | .. js:attribute:: ServerEvent.rid |
| 1481 | |
| 1482 | Contains the revision ID of the server |
| 1483 | |
| 1484 | .. js:attribute:: ServerEvent.proxy_name |
| 1485 | |
| 1486 | Contains the name of the proxy to which the server belongs |
| 1487 | |
Aurelien DARRAGON | 55f84c7 | 2023-03-22 17:49:04 +0100 | [diff] [blame] | 1488 | .. js:attribute:: ServerEvent.proxy_uuid |
| 1489 | |
| 1490 | Contains the uuid of the proxy to which the server belongs |
| 1491 | |
Aurelien DARRAGON | c84899c | 2023-02-20 18:18:59 +0100 | [diff] [blame] | 1492 | .. js:attribute:: ServerEvent.reference |
| 1493 | |
| 1494 | Reference to the live server (A :ref:`server_class`). |
| 1495 | |
| 1496 | .. Warning:: |
| 1497 | Not available if the server was removed in the meantime. |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1498 | (Will never be set for SERVER_DEL event since the server does not exist |
| 1499 | anymore) |
Aurelien DARRAGON | c84899c | 2023-02-20 18:18:59 +0100 | [diff] [blame] | 1500 | |
Thierry Fournier | 1de1659 | 2016-01-27 09:49:07 +0100 | [diff] [blame] | 1501 | .. _concat_class: |
| 1502 | |
| 1503 | Concat class |
| 1504 | ============ |
| 1505 | |
| 1506 | .. js:class:: Concat |
| 1507 | |
| 1508 | This class provides a fast way for string concatenation. The way using native |
| 1509 | Lua concatenation like the code below is slow for some reasons. |
| 1510 | |
| 1511 | .. code-block:: lua |
| 1512 | |
| 1513 | str = "string1" |
| 1514 | str = str .. ", string2" |
| 1515 | str = str .. ", string3" |
| 1516 | .. |
| 1517 | |
| 1518 | For each concatenation, Lua: |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 1519 | - allocates memory for the result, |
| 1520 | - catenates the two string copying the strings in the new memory block, |
| 1521 | - frees the old memory block containing the string which is no longer used. |
| 1522 | |
Thierry Fournier | 1de1659 | 2016-01-27 09:49:07 +0100 | [diff] [blame] | 1523 | This process does many memory move, allocation and free. In addition, the |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 1524 | memory is not really freed, it is just marked as unused and waits for the |
Thierry Fournier | 1de1659 | 2016-01-27 09:49:07 +0100 | [diff] [blame] | 1525 | garbage collector. |
| 1526 | |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 1527 | The Concat class provides an alternative way to concatenate strings. It uses |
Thierry Fournier | 1de1659 | 2016-01-27 09:49:07 +0100 | [diff] [blame] | 1528 | the internal Lua mechanism (it does not allocate memory), but it doesn't copy |
| 1529 | the data more than once. |
| 1530 | |
| 1531 | On my computer, the following loops spends 0.2s for the Concat method and |
| 1532 | 18.5s for the pure Lua implementation. So, the Concat class is about 1000x |
| 1533 | faster than the embedded solution. |
| 1534 | |
| 1535 | .. code-block:: lua |
| 1536 | |
| 1537 | for j = 1, 100 do |
| 1538 | c = core.concat() |
| 1539 | for i = 1, 20000 do |
| 1540 | c:add("#####") |
| 1541 | end |
| 1542 | end |
| 1543 | .. |
| 1544 | |
| 1545 | .. code-block:: lua |
| 1546 | |
| 1547 | for j = 1, 100 do |
| 1548 | c = "" |
| 1549 | for i = 1, 20000 do |
| 1550 | c = c .. "#####" |
| 1551 | end |
| 1552 | end |
| 1553 | .. |
| 1554 | |
| 1555 | .. js:function:: Concat.add(concat, string) |
| 1556 | |
| 1557 | This function adds a string to the current concatenated string. |
| 1558 | |
| 1559 | :param class_concat concat: A :ref:`concat_class` which contains the currently |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1560 | built string. |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 1561 | :param string string: A new string to concatenate to the current built |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1562 | string. |
Thierry Fournier | 1de1659 | 2016-01-27 09:49:07 +0100 | [diff] [blame] | 1563 | |
| 1564 | .. js:function:: Concat.dump(concat) |
| 1565 | |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 1566 | This function returns the concatenated string. |
Thierry Fournier | 1de1659 | 2016-01-27 09:49:07 +0100 | [diff] [blame] | 1567 | |
| 1568 | :param class_concat concat: A :ref:`concat_class` which contains the currently |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1569 | built string. |
Thierry Fournier | 1de1659 | 2016-01-27 09:49:07 +0100 | [diff] [blame] | 1570 | :returns: the concatenated string |
| 1571 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 1572 | .. _fetches_class: |
| 1573 | |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1574 | Fetches class |
| 1575 | ============= |
| 1576 | |
| 1577 | .. js:class:: Fetches |
| 1578 | |
| 1579 | This class contains a lot of internal HAProxy sample fetches. See the |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 1580 | HAProxy "configuration.txt" documentation for more information. |
| 1581 | (chapters 7.3.2 to 7.3.6) |
Thierry FOURNIER | 2e4893c | 2015-03-18 13:37:27 +0100 | [diff] [blame] | 1582 | |
Christopher Faulet | 1e9b1b6 | 2021-08-11 10:14:30 +0200 | [diff] [blame] | 1583 | .. warning:: |
| 1584 | some sample fetches are not available in some context. These limitations |
| 1585 | are specified in this documentation when they're useful. |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 1586 | |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 1587 | :see: :js:attr:`TXN.f` |
| 1588 | :see: :js:attr:`TXN.sf` |
Thierry FOURNIER | 2e4893c | 2015-03-18 13:37:27 +0100 | [diff] [blame] | 1589 | |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 1590 | Fetches are useful to: |
Thierry FOURNIER | 2e4893c | 2015-03-18 13:37:27 +0100 | [diff] [blame] | 1591 | |
| 1592 | * get system time, |
| 1593 | * get environment variable, |
| 1594 | * get random numbers, |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 1595 | * know backend status like the number of users in queue or the number of |
Thierry FOURNIER | 2e4893c | 2015-03-18 13:37:27 +0100 | [diff] [blame] | 1596 | connections established, |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 1597 | * get client information like ip source or destination, |
Thierry FOURNIER | 2e4893c | 2015-03-18 13:37:27 +0100 | [diff] [blame] | 1598 | * deal with stick tables, |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 1599 | * fetch established SSL information, |
| 1600 | * fetch HTTP information like headers or method. |
Thierry FOURNIER | 2e4893c | 2015-03-18 13:37:27 +0100 | [diff] [blame] | 1601 | |
| 1602 | .. code-block:: lua |
| 1603 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 1604 | function action(txn) |
| 1605 | -- Get source IP |
| 1606 | local clientip = txn.f:src() |
| 1607 | end |
Thierry FOURNIER | 2e4893c | 2015-03-18 13:37:27 +0100 | [diff] [blame] | 1608 | .. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1609 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 1610 | .. _converters_class: |
| 1611 | |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1612 | Converters class |
| 1613 | ================ |
| 1614 | |
| 1615 | .. js:class:: Converters |
| 1616 | |
| 1617 | This class contains a lot of internal HAProxy sample converters. See the |
Thierry FOURNIER | 2e4893c | 2015-03-18 13:37:27 +0100 | [diff] [blame] | 1618 | HAProxy documentation "configuration.txt" for more information about her |
| 1619 | usage. Its the chapter 7.3.1. |
| 1620 | |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 1621 | :see: :js:attr:`TXN.c` |
| 1622 | :see: :js:attr:`TXN.sc` |
Thierry FOURNIER | 2e4893c | 2015-03-18 13:37:27 +0100 | [diff] [blame] | 1623 | |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 1624 | Converters provides stateful transformation. They are useful to: |
Thierry FOURNIER | 2e4893c | 2015-03-18 13:37:27 +0100 | [diff] [blame] | 1625 | |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 1626 | * convert input to base64, |
| 1627 | * apply hash on input string (djb2, crc32, sdbm, wt6), |
Thierry FOURNIER | 2e4893c | 2015-03-18 13:37:27 +0100 | [diff] [blame] | 1628 | * format date, |
| 1629 | * json escape, |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 1630 | * extract preferred language comparing two lists, |
Thierry FOURNIER | 2e4893c | 2015-03-18 13:37:27 +0100 | [diff] [blame] | 1631 | * turn to lower or upper chars, |
| 1632 | * deal with stick tables. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1633 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 1634 | .. _channel_class: |
| 1635 | |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1636 | Channel class |
| 1637 | ============= |
| 1638 | |
| 1639 | .. js:class:: Channel |
| 1640 | |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 1641 | **context**: action, sample-fetch, convert, filter |
| 1642 | |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1643 | HAProxy uses two buffers for the processing of the requests. The first one is |
| 1644 | used with the request data (from the client to the server) and the second is |
| 1645 | used for the response data (from the server to the client). |
| 1646 | |
| 1647 | Each buffer contains two types of data. The first type is the incoming data |
| 1648 | waiting for a processing. The second part is the outgoing data already |
| 1649 | processed. Usually, the incoming data is processed, after it is tagged as |
| 1650 | outgoing data, and finally it is sent. The following functions provides tools |
| 1651 | for manipulating these data in a buffer. |
| 1652 | |
| 1653 | The following diagram shows where the channel class function are applied. |
| 1654 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1655 | .. image:: _static/channel.png |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1656 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1657 | .. warning:: |
| 1658 | It is not possible to read from the response in request action, and it is |
Boyang Li | 60cfe8b | 2022-05-10 18:11:00 +0000 | [diff] [blame] | 1659 | not possible to read from the request channel in response action. |
Christopher Faulet | 0953039 | 2021-06-14 11:43:18 +0200 | [diff] [blame] | 1660 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1661 | .. warning:: |
| 1662 | It is forbidden to alter the Channels buffer from HTTP contexts. So only |
| 1663 | :js:func:`Channel.input`, :js:func:`Channel.output`, |
| 1664 | :js:func:`Channel.may_recv`, :js:func:`Channel.is_full` and |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 1665 | :js:func:`Channel.is_resp` can be called from a HTTP context. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1666 | |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 1667 | All the functions provided by this class are available in the |
| 1668 | **sample-fetches**, **actions** and **filters** contexts. For **filters**, |
| 1669 | incoming data (offset and length) are relative to the filter. Some functions |
Boyang Li | 60cfe8b | 2022-05-10 18:11:00 +0000 | [diff] [blame] | 1670 | may yield, but only for **actions**. Yield is not possible for |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 1671 | **sample-fetches**, **converters** and **filters**. |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1672 | |
| 1673 | .. js:function:: Channel.append(channel, string) |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1674 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1675 | This function copies the string **string** at the end of incoming data of the |
| 1676 | channel buffer. The function returns the copied length on success or -1 if |
| 1677 | data cannot be copied. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1678 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1679 | Same that :js:func:`Channel.insert(channel, string, channel:input())`. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1680 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 1681 | :param class_channel channel: The manipulated Channel. |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 1682 | :param string string: The data to copy at the end of incoming data. |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1683 | :returns: an integer containing the amount of bytes copied or -1. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1684 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1685 | .. js:function:: Channel.data(channel [, offset [, length]]) |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1686 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1687 | This function returns **length** bytes of incoming data from the channel |
| 1688 | buffer, starting at the offset **offset**. The data are not removed from the |
| 1689 | buffer. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1690 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1691 | By default, if no length is provided, all incoming data found, starting at the |
| 1692 | given offset, are returned. If **length** is set to -1, the function tries to |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 1693 | retrieve a maximum of data and, if called by an action, it yields if |
| 1694 | necessary. It also waits for more data if the requested length exceeds the |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 1695 | available amount of incoming data. Not providing an offset is the same as |
Ilya Shipitsin | ff0f278 | 2021-08-22 22:18:07 +0500 | [diff] [blame] | 1696 | setting it to 0. A positive offset is relative to the beginning of incoming |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 1697 | data of the channel buffer while negative offset is relative to the end. |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1698 | |
| 1699 | If there is no incoming data and the channel can't receive more data, a 'nil' |
| 1700 | value is returned. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1701 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 1702 | :param class_channel channel: The manipulated Channel. |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1703 | :param integer offset: *optional* The offset in incoming data to start to get |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1704 | data. 0 by default. May be negative to be relative to the end of incoming |
| 1705 | data. |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1706 | :param integer length: *optional* The expected length of data to retrieve. All |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1707 | incoming data by default. May be set to -1 to get a maximum of data. |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1708 | :returns: a string containing the data found or nil. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1709 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1710 | .. js:function:: Channel.forward(channel, length) |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1711 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1712 | This function forwards **length** bytes of data from the channel buffer. If |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 1713 | the requested length exceeds the available amount of incoming data, and if |
| 1714 | called by an action, the function yields, waiting for more data to forward. It |
| 1715 | returns the amount of data forwarded. |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1716 | |
| 1717 | :param class_channel channel: The manipulated Channel. |
| 1718 | :param integer int: The amount of data to forward. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1719 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1720 | .. js:function:: Channel.input(channel) |
| 1721 | |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 1722 | This function returns the length of incoming data in the channel buffer. When |
| 1723 | called by a filter, this value is relative to the filter. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1724 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 1725 | :param class_channel channel: The manipulated Channel. |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1726 | :returns: an integer containing the amount of available bytes. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1727 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1728 | .. js:function:: Channel.insert(channel, string [, offset]) |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1729 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1730 | This function copies the string **string** at the offset **offset** in |
| 1731 | incoming data of the channel buffer. The function returns the copied length on |
| 1732 | success or -1 if data cannot be copied. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1733 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1734 | By default, if no offset is provided, the string is copied in front of |
Ilya Shipitsin | ff0f278 | 2021-08-22 22:18:07 +0500 | [diff] [blame] | 1735 | incoming data. A positive offset is relative to the beginning of incoming data |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1736 | of the channel buffer while negative offset is relative to their end. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1737 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 1738 | :param class_channel channel: The manipulated Channel. |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 1739 | :param string string: The data to copy into incoming data. |
| 1740 | :param integer offset: *optional* The offset in incoming data where to copy |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1741 | data. 0 by default. May be negative to be relative to the end of incoming |
| 1742 | data. |
Pieter Baauw | 4d7f766 | 2015-11-08 16:38:08 +0100 | [diff] [blame] | 1743 | :returns: an integer containing the amount of bytes copied or -1. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1744 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1745 | .. js:function:: Channel.is_full(channel) |
| 1746 | |
| 1747 | This function returns true if the channel buffer is full. |
| 1748 | |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 1749 | :param class_channel channel: The manipulated Channel. |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1750 | :returns: a boolean |
| 1751 | |
| 1752 | .. js:function:: Channel.is_resp(channel) |
| 1753 | |
| 1754 | This function returns true if the channel is the response one. |
| 1755 | |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 1756 | :param class_channel channel: The manipulated Channel. |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1757 | :returns: a boolean |
| 1758 | |
| 1759 | .. js:function:: Channel.line(channel [, offset [, length]]) |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1760 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1761 | This function parses **length** bytes of incoming data of the channel buffer, |
| 1762 | starting at offset **offset**, and returns the first line found, including the |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1763 | '\\n'. The data are not removed from the buffer. If no line is found, all |
| 1764 | data are returned. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1765 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1766 | By default, if no length is provided, all incoming data, starting at the given |
| 1767 | offset, are evaluated. If **length** is set to -1, the function tries to |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 1768 | retrieve a maximum of data and, if called by an action, yields if |
| 1769 | necessary. It also waits for more data if the requested length exceeds the |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 1770 | available amount of incoming data. Not providing an offset is the same as |
Ilya Shipitsin | ff0f278 | 2021-08-22 22:18:07 +0500 | [diff] [blame] | 1771 | setting it to 0. A positive offset is relative to the beginning of incoming |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 1772 | data of the channel buffer while negative offset is relative to the end. |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1773 | |
| 1774 | If there is no incoming data and the channel can't receive more data, a 'nil' |
| 1775 | value is returned. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1776 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 1777 | :param class_channel channel: The manipulated Channel. |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 1778 | :param integer offset: *optional* The offset in incoming data to start to |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1779 | parse data. 0 by default. May be negative to be relative to the end of |
| 1780 | incoming data. |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1781 | :param integer length: *optional* The length of data to parse. All incoming |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1782 | data by default. May be set to -1 to get a maximum of data. |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1783 | :returns: a string containing the line found or nil. |
| 1784 | |
| 1785 | .. js:function:: Channel.may_recv(channel) |
| 1786 | |
| 1787 | This function returns true if the channel may still receive data. |
| 1788 | |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 1789 | :param class_channel channel: The manipulated Channel. |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1790 | :returns: a boolean |
| 1791 | |
| 1792 | .. js:function:: Channel.output(channel) |
| 1793 | |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 1794 | This function returns the length of outgoing data of the channel buffer. When |
| 1795 | called by a filter, this value is relative to the filter. |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1796 | |
| 1797 | :param class_channel channel: The manipulated Channel. |
| 1798 | :returns: an integer containing the amount of available bytes. |
| 1799 | |
| 1800 | .. js:function:: Channel.prepend(channel, string) |
| 1801 | |
| 1802 | This function copies the string **string** in front of incoming data of the |
| 1803 | channel buffer. The function returns the copied length on success or -1 if |
| 1804 | data cannot be copied. |
| 1805 | |
| 1806 | Same that :js:func:`Channel.insert(channel, string, 0)`. |
| 1807 | |
| 1808 | :param class_channel channel: The manipulated Channel. |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 1809 | :param string string: The data to copy in front of incoming data. |
Pieter Baauw | 4d7f766 | 2015-11-08 16:38:08 +0100 | [diff] [blame] | 1810 | :returns: an integer containing the amount of bytes copied or -1. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1811 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1812 | .. js:function:: Channel.remove(channel [, offset [, length]]) |
| 1813 | |
| 1814 | This function removes **length** bytes of incoming data of the channel buffer, |
| 1815 | starting at offset **offset**. This function returns number of bytes removed |
| 1816 | on success. |
| 1817 | |
| 1818 | By default, if no length is provided, all incoming data, starting at the given |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 1819 | offset, are removed. Not providing an offset is the same as setting it |
Ilya Shipitsin | ff0f278 | 2021-08-22 22:18:07 +0500 | [diff] [blame] | 1820 | to 0. A positive offset is relative to the beginning of incoming data of the |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 1821 | channel buffer while negative offset is relative to the end. |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1822 | |
| 1823 | :param class_channel channel: The manipulated Channel. |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 1824 | :param integer offset: *optional* The offset in incoming data where to start |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1825 | to remove data. 0 by default. May be negative to be relative to the end of |
| 1826 | incoming data. |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1827 | :param integer length: *optional* The length of data to remove. All incoming |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1828 | data by default. |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1829 | :returns: an integer containing the amount of bytes removed. |
| 1830 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 1831 | .. js:function:: Channel.send(channel, string) |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1832 | |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 1833 | This function requires immediate send of the string **string**. It means the |
Ilya Shipitsin | ff0f278 | 2021-08-22 22:18:07 +0500 | [diff] [blame] | 1834 | string is copied at the beginning of incoming data of the channel buffer and |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 1835 | immediately forwarded. Unless if the connection is close, and if called by an |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 1836 | action, this function yields to copy and forward all the string. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1837 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 1838 | :param class_channel channel: The manipulated Channel. |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1839 | :param string string: The data to send. |
Pieter Baauw | 4d7f766 | 2015-11-08 16:38:08 +0100 | [diff] [blame] | 1840 | :returns: an integer containing the amount of bytes copied or -1. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1841 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1842 | .. js:function:: Channel.set(channel, string [, offset [, length]]) |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1843 | |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1844 | This function replaces **length** bytes of incoming data of the channel |
| 1845 | buffer, starting at offset **offset**, by the string **string**. The function |
| 1846 | returns the copied length on success or -1 if data cannot be copied. |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1847 | |
| 1848 | By default, if no length is provided, all incoming data, starting at the given |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 1849 | offset, are replaced. Not providing an offset is the same as setting it |
Ilya Shipitsin | ff0f278 | 2021-08-22 22:18:07 +0500 | [diff] [blame] | 1850 | to 0. A positive offset is relative to the beginning of incoming data of the |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 1851 | channel buffer while negative offset is relative to the end. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1852 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 1853 | :param class_channel channel: The manipulated Channel. |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 1854 | :param string string: The data to copy into incoming data. |
| 1855 | :param integer offset: *optional* The offset in incoming data where to start |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1856 | the data replacement. 0 by default. May be negative to be relative to the |
| 1857 | end of incoming data. |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1858 | :param integer length: *optional* The length of data to replace. All incoming |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 1859 | data by default. |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1860 | :returns: an integer containing the amount of bytes copied or -1. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1861 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1862 | .. js:function:: Channel.dup(channel) |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1863 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1864 | **DEPRECATED** |
| 1865 | |
| 1866 | This function returns all incoming data found in the channel buffer. The data |
Boyang Li | 60cfe8b | 2022-05-10 18:11:00 +0000 | [diff] [blame] | 1867 | are not removed from the buffer and can be reprocessed later. |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1868 | |
| 1869 | If there is no incoming data and the channel can't receive more data, a 'nil' |
| 1870 | value is returned. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1871 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 1872 | :param class_channel channel: The manipulated Channel. |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1873 | :returns: a string containing all data found or nil. |
| 1874 | |
| 1875 | .. warning:: |
| 1876 | This function is deprecated. :js:func:`Channel.data()` must be used |
| 1877 | instead. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1878 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1879 | .. js:function:: Channel.get(channel) |
| 1880 | |
| 1881 | **DEPRECATED** |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1882 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1883 | This function returns all incoming data found in the channel buffer and remove |
| 1884 | them from the buffer. |
| 1885 | |
| 1886 | If there is no incoming data and the channel can't receive more data, a 'nil' |
| 1887 | value is returned. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1888 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 1889 | :param class_channel channel: The manipulated Channel. |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1890 | :returns: a string containing all the data found or nil. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 1891 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1892 | .. warning:: |
| 1893 | This function is deprecated. :js:func:`Channel.data()` must be used to |
| 1894 | retrieve data followed by a call to :js:func:`Channel:remove()` to remove |
| 1895 | data. |
Thierry FOURNIER / OZON.IO | 65192f3 | 2016-11-07 15:28:40 +0100 | [diff] [blame] | 1896 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1897 | .. code-block:: lua |
Thierry FOURNIER / OZON.IO | 65192f3 | 2016-11-07 15:28:40 +0100 | [diff] [blame] | 1898 | |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1899 | local data = chn:data() |
| 1900 | chn:remove(0, data:len()) |
| 1901 | |
| 1902 | .. |
| 1903 | |
| 1904 | .. js:function:: Channel.getline(channel) |
| 1905 | |
| 1906 | **DEPRECATED** |
| 1907 | |
| 1908 | This function returns the first line found in incoming data of the channel |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 1909 | buffer, including the '\\n'. The returned data are removed from the buffer. If |
| 1910 | no line is found, and if called by an action, this function yields to wait for |
| 1911 | more data, except if the channel can't receive more data. In this case all |
| 1912 | data are returned. |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1913 | |
| 1914 | If there is no incoming data and the channel can't receive more data, a 'nil' |
| 1915 | value is returned. |
| 1916 | |
| 1917 | :param class_channel channel: The manipulated Channel. |
| 1918 | :returns: a string containing the line found or nil. |
| 1919 | |
| 1920 | .. warning:: |
Boyang Li | 60cfe8b | 2022-05-10 18:11:00 +0000 | [diff] [blame] | 1921 | This function is deprecated. :js:func:`Channel.line()` must be used to |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1922 | retrieve a line followed by a call to :js:func:`Channel:remove()` to remove |
| 1923 | data. |
| 1924 | |
| 1925 | .. code-block:: lua |
| 1926 | |
| 1927 | local line = chn:line(0, -1) |
| 1928 | chn:remove(0, line:len()) |
| 1929 | |
| 1930 | .. |
| 1931 | |
| 1932 | .. js:function:: Channel.get_in_len(channel) |
| 1933 | |
Boyang Li | 60cfe8b | 2022-05-10 18:11:00 +0000 | [diff] [blame] | 1934 | **DEPRECATED** |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1935 | |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 1936 | This function returns the length of the input part of the buffer. When called |
| 1937 | by a filter, this value is relative to the filter. |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1938 | |
| 1939 | :param class_channel channel: The manipulated Channel. |
| 1940 | :returns: an integer containing the amount of available bytes. |
| 1941 | |
| 1942 | .. warning:: |
| 1943 | This function is deprecated. :js:func:`Channel.input()` must be used |
| 1944 | instead. |
| 1945 | |
| 1946 | .. js:function:: Channel.get_out_len(channel) |
| 1947 | |
Boyang Li | 60cfe8b | 2022-05-10 18:11:00 +0000 | [diff] [blame] | 1948 | **DEPRECATED** |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1949 | |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 1950 | This function returns the length of the output part of the buffer. When called |
| 1951 | by a filter, this value is relative to the filter. |
Christopher Faulet | 6a79fc1 | 2021-08-06 16:02:36 +0200 | [diff] [blame] | 1952 | |
| 1953 | :param class_channel channel: The manipulated Channel. |
| 1954 | :returns: an integer containing the amount of available bytes. |
| 1955 | |
| 1956 | .. warning:: |
| 1957 | This function is deprecated. :js:func:`Channel.output()` must be used |
| 1958 | instead. |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 1959 | |
| 1960 | .. _http_class: |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 1961 | |
| 1962 | HTTP class |
| 1963 | ========== |
| 1964 | |
| 1965 | .. js:class:: HTTP |
| 1966 | |
| 1967 | This class contain all the HTTP manipulation functions. |
| 1968 | |
Pieter Baauw | 386a127 | 2015-08-16 15:26:24 +0200 | [diff] [blame] | 1969 | .. js:function:: HTTP.req_get_headers(http) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 1970 | |
Patrick Hemmer | c6a1d71 | 2018-05-01 21:30:41 -0400 | [diff] [blame] | 1971 | Returns a table containing all the request headers. |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 1972 | |
| 1973 | :param class_http http: The related http object. |
Patrick Hemmer | c6a1d71 | 2018-05-01 21:30:41 -0400 | [diff] [blame] | 1974 | :returns: table of headers. |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 1975 | :see: :js:func:`HTTP.res_get_headers` |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 1976 | |
Patrick Hemmer | c6a1d71 | 2018-05-01 21:30:41 -0400 | [diff] [blame] | 1977 | This is the form of the returned table: |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 1978 | |
| 1979 | .. code-block:: lua |
| 1980 | |
| 1981 | HTTP:req_get_headers()['<header-name>'][<header-index>] = "<header-value>" |
| 1982 | |
| 1983 | local hdr = HTTP:req_get_headers() |
| 1984 | hdr["host"][0] = "www.test.com" |
| 1985 | hdr["accept"][0] = "audio/basic q=1" |
| 1986 | hdr["accept"][1] = "audio/*, q=0.2" |
| 1987 | hdr["accept"][2] = "*/*, q=0.1" |
| 1988 | .. |
| 1989 | |
Pieter Baauw | 386a127 | 2015-08-16 15:26:24 +0200 | [diff] [blame] | 1990 | .. js:function:: HTTP.res_get_headers(http) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 1991 | |
Patrick Hemmer | c6a1d71 | 2018-05-01 21:30:41 -0400 | [diff] [blame] | 1992 | Returns a table containing all the response headers. |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 1993 | |
| 1994 | :param class_http http: The related http object. |
Patrick Hemmer | c6a1d71 | 2018-05-01 21:30:41 -0400 | [diff] [blame] | 1995 | :returns: table of headers. |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 1996 | :see: :js:func:`HTTP.req_get_headers` |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 1997 | |
Patrick Hemmer | c6a1d71 | 2018-05-01 21:30:41 -0400 | [diff] [blame] | 1998 | This is the form of the returned table: |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 1999 | |
| 2000 | .. code-block:: lua |
| 2001 | |
| 2002 | HTTP:res_get_headers()['<header-name>'][<header-index>] = "<header-value>" |
| 2003 | |
| 2004 | local hdr = HTTP:req_get_headers() |
| 2005 | hdr["host"][0] = "www.test.com" |
| 2006 | hdr["accept"][0] = "audio/basic q=1" |
| 2007 | hdr["accept"][1] = "audio/*, q=0.2" |
| 2008 | hdr["accept"][2] = "*.*, q=0.1" |
| 2009 | .. |
| 2010 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2011 | .. js:function:: HTTP.req_add_header(http, name, value) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 2012 | |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 2013 | Appends a HTTP header field in the request whose name is |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 2014 | specified in "name" and whose value is defined in "value". |
| 2015 | |
| 2016 | :param class_http http: The related http object. |
| 2017 | :param string name: The header name. |
| 2018 | :param string value: The header value. |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 2019 | :see: :js:func:`HTTP.res_add_header` |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 2020 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2021 | .. js:function:: HTTP.res_add_header(http, name, value) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 2022 | |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 2023 | Appends a HTTP header field in the response whose name is |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 2024 | specified in "name" and whose value is defined in "value". |
| 2025 | |
| 2026 | :param class_http http: The related http object. |
| 2027 | :param string name: The header name. |
| 2028 | :param string value: The header value. |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 2029 | :see: :js:func:`HTTP.req_add_header` |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 2030 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2031 | .. js:function:: HTTP.req_del_header(http, name) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 2032 | |
| 2033 | Removes all HTTP header fields in the request whose name is |
| 2034 | specified in "name". |
| 2035 | |
| 2036 | :param class_http http: The related http object. |
| 2037 | :param string name: The header name. |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 2038 | :see: :js:func:`HTTP.res_del_header` |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 2039 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2040 | .. js:function:: HTTP.res_del_header(http, name) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 2041 | |
| 2042 | Removes all HTTP header fields in the response whose name is |
| 2043 | specified in "name". |
| 2044 | |
| 2045 | :param class_http http: The related http object. |
| 2046 | :param string name: The header name. |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 2047 | :see: :js:func:`HTTP.req_del_header` |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 2048 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2049 | .. js:function:: HTTP.req_set_header(http, name, value) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 2050 | |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 2051 | This variable replace all occurrence of all header "name", by only |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 2052 | one containing the "value". |
| 2053 | |
| 2054 | :param class_http http: The related http object. |
| 2055 | :param string name: The header name. |
| 2056 | :param string value: The header value. |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 2057 | :see: :js:func:`HTTP.res_set_header` |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 2058 | |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 2059 | This function does the same work as the following code: |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 2060 | |
| 2061 | .. code-block:: lua |
| 2062 | |
| 2063 | function fcn(txn) |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2064 | TXN.http:req_del_header("header") |
| 2065 | TXN.http:req_add_header("header", "value") |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 2066 | end |
| 2067 | .. |
| 2068 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2069 | .. js:function:: HTTP.res_set_header(http, name, value) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 2070 | |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 2071 | This function replaces all occurrence of all header "name", by only |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 2072 | one containing the "value". |
| 2073 | |
| 2074 | :param class_http http: The related http object. |
| 2075 | :param string name: The header name. |
| 2076 | :param string value: The header value. |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 2077 | :see: :js:func:`HTTP.req_rep_header()` |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 2078 | |
Pieter Baauw | 386a127 | 2015-08-16 15:26:24 +0200 | [diff] [blame] | 2079 | .. js:function:: HTTP.req_rep_header(http, name, regex, replace) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 2080 | |
| 2081 | Matches the regular expression in all occurrences of header field "name" |
| 2082 | according to "regex", and replaces them with the "replace" argument. The |
| 2083 | replacement value can contain back references like \1, \2, ... This |
| 2084 | function works with the request. |
| 2085 | |
| 2086 | :param class_http http: The related http object. |
| 2087 | :param string name: The header name. |
| 2088 | :param string regex: The match regular expression. |
| 2089 | :param string replace: The replacement value. |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 2090 | :see: :js:func:`HTTP.res_rep_header()` |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 2091 | |
Pieter Baauw | 386a127 | 2015-08-16 15:26:24 +0200 | [diff] [blame] | 2092 | .. js:function:: HTTP.res_rep_header(http, name, regex, string) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 2093 | |
| 2094 | Matches the regular expression in all occurrences of header field "name" |
| 2095 | according to "regex", and replaces them with the "replace" argument. The |
| 2096 | replacement value can contain back references like \1, \2, ... This |
| 2097 | function works with the request. |
| 2098 | |
| 2099 | :param class_http http: The related http object. |
| 2100 | :param string name: The header name. |
| 2101 | :param string regex: The match regular expression. |
| 2102 | :param string replace: The replacement value. |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 2103 | :see: :js:func:`HTTP.req_rep_header()` |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 2104 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2105 | .. js:function:: HTTP.req_set_method(http, method) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 2106 | |
| 2107 | Rewrites the request method with the parameter "method". |
| 2108 | |
| 2109 | :param class_http http: The related http object. |
| 2110 | :param string method: The new method. |
| 2111 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2112 | .. js:function:: HTTP.req_set_path(http, path) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 2113 | |
| 2114 | Rewrites the request path with the "path" parameter. |
| 2115 | |
| 2116 | :param class_http http: The related http object. |
| 2117 | :param string path: The new path. |
| 2118 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2119 | .. js:function:: HTTP.req_set_query(http, query) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 2120 | |
| 2121 | Rewrites the request's query string which appears after the first question |
| 2122 | mark ("?") with the parameter "query". |
| 2123 | |
| 2124 | :param class_http http: The related http object. |
| 2125 | :param string query: The new query. |
| 2126 | |
Thierry FOURNIER | 0d79cf6 | 2015-08-26 14:20:58 +0200 | [diff] [blame] | 2127 | .. js:function:: HTTP.req_set_uri(http, uri) |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 2128 | |
| 2129 | Rewrites the request URI with the parameter "uri". |
| 2130 | |
| 2131 | :param class_http http: The related http object. |
| 2132 | :param string uri: The new uri. |
| 2133 | |
Robin H. Johnson | 52f5db2 | 2017-01-01 13:10:52 -0800 | [diff] [blame] | 2134 | .. js:function:: HTTP.res_set_status(http, status [, reason]) |
Thierry FOURNIER | 35d70ef | 2015-08-26 16:21:56 +0200 | [diff] [blame] | 2135 | |
Robin H. Johnson | 52f5db2 | 2017-01-01 13:10:52 -0800 | [diff] [blame] | 2136 | Rewrites the response status code with the parameter "code". |
| 2137 | |
| 2138 | If no custom reason is provided, it will be generated from the status. |
Thierry FOURNIER | 35d70ef | 2015-08-26 16:21:56 +0200 | [diff] [blame] | 2139 | |
| 2140 | :param class_http http: The related http object. |
| 2141 | :param integer status: The new response status code. |
Robin H. Johnson | 52f5db2 | 2017-01-01 13:10:52 -0800 | [diff] [blame] | 2142 | :param string reason: The new response reason (optional). |
Thierry FOURNIER | 35d70ef | 2015-08-26 16:21:56 +0200 | [diff] [blame] | 2143 | |
William Lallemand | 00a1502 | 2021-11-19 16:02:44 +0100 | [diff] [blame] | 2144 | .. _httpclient_class: |
| 2145 | |
| 2146 | HTTPClient class |
| 2147 | ================ |
| 2148 | |
| 2149 | .. js:class:: HTTPClient |
| 2150 | |
| 2151 | The httpclient class allows issue of outbound HTTP requests through a simple |
| 2152 | API without the knowledge of HAProxy internals. |
| 2153 | |
| 2154 | .. js:function:: HTTPClient.get(httpclient, request) |
| 2155 | .. js:function:: HTTPClient.head(httpclient, request) |
| 2156 | .. js:function:: HTTPClient.put(httpclient, request) |
| 2157 | .. js:function:: HTTPClient.post(httpclient, request) |
| 2158 | .. js:function:: HTTPClient.delete(httpclient, request) |
| 2159 | |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 2160 | Send a HTTP request and wait for a response. GET, HEAD PUT, POST and DELETE |
| 2161 | methods can be used. |
| 2162 | The HTTPClient will send asynchronously the data and is able to send and |
| 2163 | receive more than HAProxy bufsize. |
William Lallemand | 00a1502 | 2021-11-19 16:02:44 +0100 | [diff] [blame] | 2164 | |
William Lallemand | a925619 | 2022-10-21 11:48:24 +0200 | [diff] [blame] | 2165 | The HTTPClient interface is not able to decompress responses, it is not |
| 2166 | recommended to send an Accept-Encoding in the request so the response is |
| 2167 | received uncompressed. |
William Lallemand | 00a1502 | 2021-11-19 16:02:44 +0100 | [diff] [blame] | 2168 | |
| 2169 | :param class httpclient: Is the manipulated HTTPClient. |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 2170 | :param table request: Is a table containing the parameters of the request |
| 2171 | that will be send. |
| 2172 | :param string request.url: Is a mandatory parameter for the request that |
| 2173 | contains the URL. |
| 2174 | :param string request.body: Is an optional parameter for the request that |
| 2175 | contains the body to send. |
| 2176 | :param table request.headers: Is an optional parameter for the request that |
| 2177 | contains the headers to send. |
| 2178 | :param string request.dst: Is an optional parameter for the destination in |
| 2179 | haproxy address format. |
| 2180 | :param integer request.timeout: Optional timeout parameter, set a |
| 2181 | "timeout server" on the connections. |
William Lallemand | 00a1502 | 2021-11-19 16:02:44 +0100 | [diff] [blame] | 2182 | :returns: Lua table containing the response |
| 2183 | |
| 2184 | |
| 2185 | .. code-block:: lua |
| 2186 | |
| 2187 | local httpclient = core.httpclient() |
William Lallemand | 4f4f2b7 | 2022-02-17 20:00:23 +0100 | [diff] [blame] | 2188 | local response = httpclient:post{url="http://127.0.0.1", body=body, dst="unix@/var/run/http.sock"} |
William Lallemand | 00a1502 | 2021-11-19 16:02:44 +0100 | [diff] [blame] | 2189 | |
| 2190 | .. |
| 2191 | |
| 2192 | .. code-block:: lua |
| 2193 | |
| 2194 | response = { |
| 2195 | status = 400, |
| 2196 | reason = "Bad request", |
| 2197 | headers = { |
| 2198 | ["content-type"] = { "text/html" }, |
| 2199 | ["cache-control"] = { "no-cache", "no-store" }, |
| 2200 | }, |
William Lallemand | 4f4f2b7 | 2022-02-17 20:00:23 +0100 | [diff] [blame] | 2201 | body = "<html><body><h1>invalid request<h1></body></html>", |
William Lallemand | 00a1502 | 2021-11-19 16:02:44 +0100 | [diff] [blame] | 2202 | } |
| 2203 | .. |
| 2204 | |
| 2205 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 2206 | .. _txn_class: |
| 2207 | |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2208 | TXN class |
| 2209 | ========= |
| 2210 | |
| 2211 | .. js:class:: TXN |
| 2212 | |
| 2213 | The txn class contain all the functions relative to the http or tcp |
| 2214 | transaction (Note than a tcp stream is the same than a tcp transaction, but |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 2215 | a HTTP transaction is not the same than a tcp stream). |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2216 | |
| 2217 | The usage of this class permits to retrieve data from the requests, alter it |
| 2218 | and forward it. |
| 2219 | |
| 2220 | All the functions provided by this class are available in the context |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 2221 | **sample-fetches**, **actions** and **filters**. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2222 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2223 | .. js:attribute:: TXN.c |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2224 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 2225 | :returns: An :ref:`converters_class`. |
| 2226 | |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2227 | This attribute contains a Converters class object. |
| 2228 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2229 | .. js:attribute:: TXN.sc |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2230 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 2231 | :returns: An :ref:`converters_class`. |
| 2232 | |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2233 | This attribute contains a Converters class object. The functions of |
| 2234 | this object returns always a string. |
| 2235 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2236 | .. js:attribute:: TXN.f |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2237 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 2238 | :returns: An :ref:`fetches_class`. |
| 2239 | |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2240 | This attribute contains a Fetches class object. |
| 2241 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2242 | .. js:attribute:: TXN.sf |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2243 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 2244 | :returns: An :ref:`fetches_class`. |
| 2245 | |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2246 | This attribute contains a Fetches class object. The functions of |
| 2247 | this object returns always a string. |
| 2248 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2249 | .. js:attribute:: TXN.req |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2250 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 2251 | :returns: An :ref:`channel_class`. |
| 2252 | |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2253 | This attribute contains a channel class object for the request buffer. |
| 2254 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2255 | .. js:attribute:: TXN.res |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2256 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 2257 | :returns: An :ref:`channel_class`. |
| 2258 | |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2259 | This attribute contains a channel class object for the response buffer. |
| 2260 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2261 | .. js:attribute:: TXN.http |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 2262 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 2263 | :returns: An :ref:`http_class`. |
| 2264 | |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 2265 | This attribute contains a HTTP class object. It is available only if the |
Thierry FOURNIER | 08504f4 | 2015-03-16 14:17:08 +0100 | [diff] [blame] | 2266 | proxy has the "mode http" enabled. |
| 2267 | |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 2268 | .. js:attribute:: TXN.http_req |
| 2269 | |
| 2270 | :returns: An :ref:`httpmessage_class`. |
| 2271 | |
| 2272 | This attribute contains the request HTTPMessage class object. It is available |
| 2273 | only if the proxy has the "mode http" enabled and only in the **filters** |
| 2274 | context. |
| 2275 | |
| 2276 | .. js:attribute:: TXN.http_res |
| 2277 | |
| 2278 | :returns: An :ref:`httpmessage_class`. |
| 2279 | |
| 2280 | This attribute contains the response HTTPMessage class object. It is available |
| 2281 | only if the proxy has the "mode http" enabled and only in the **filters** |
| 2282 | context. |
| 2283 | |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 2284 | .. js:function:: TXN.log(TXN, loglevel, msg) |
| 2285 | |
| 2286 | This function sends a log. The log is sent, according with the HAProxy |
| 2287 | configuration file, on the default syslog server if it is configured and on |
| 2288 | the stderr if it is allowed. |
| 2289 | |
| 2290 | :param class_txn txn: The class txn object containing the data. |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 2291 | :param integer loglevel: Is the log level associated with the message. It is |
| 2292 | a number between 0 and 7. |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 2293 | :param string msg: The log content. |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 2294 | :see: :js:attr:`core.emerg`, :js:attr:`core.alert`, :js:attr:`core.crit`, |
| 2295 | :js:attr:`core.err`, :js:attr:`core.warning`, :js:attr:`core.notice`, |
| 2296 | :js:attr:`core.info`, :js:attr:`core.debug` (log level definitions) |
| 2297 | :see: :js:func:`TXN.deflog` |
| 2298 | :see: :js:func:`TXN.Debug` |
| 2299 | :see: :js:func:`TXN.Info` |
| 2300 | :see: :js:func:`TXN.Warning` |
| 2301 | :see: :js:func:`TXN.Alert` |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 2302 | |
| 2303 | .. js:function:: TXN.deflog(TXN, msg) |
| 2304 | |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 2305 | Sends a log line with the default loglevel for the proxy associated with the |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 2306 | transaction. |
| 2307 | |
| 2308 | :param class_txn txn: The class txn object containing the data. |
| 2309 | :param string msg: The log content. |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 2310 | :see: :js:func:`TXN.log` |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 2311 | |
| 2312 | .. js:function:: TXN.Debug(txn, msg) |
| 2313 | |
| 2314 | :param class_txn txn: The class txn object containing the data. |
| 2315 | :param string msg: The log content. |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 2316 | :see: :js:func:`TXN.log` |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 2317 | |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 2318 | Does the same job as: |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 2319 | |
| 2320 | .. code-block:: lua |
| 2321 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 2322 | function Debug(txn, msg) |
| 2323 | TXN.log(txn, core.debug, msg) |
| 2324 | end |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 2325 | .. |
| 2326 | |
| 2327 | .. js:function:: TXN.Info(txn, msg) |
| 2328 | |
| 2329 | :param class_txn txn: The class txn object containing the data. |
| 2330 | :param string msg: The log content. |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 2331 | :see: :js:func:`TXN.log` |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 2332 | |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 2333 | Does the same job as: |
| 2334 | |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 2335 | .. code-block:: lua |
| 2336 | |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 2337 | function Info(txn, msg) |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 2338 | TXN.log(txn, core.info, msg) |
| 2339 | end |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 2340 | .. |
| 2341 | |
| 2342 | .. js:function:: TXN.Warning(txn, msg) |
| 2343 | |
| 2344 | :param class_txn txn: The class txn object containing the data. |
| 2345 | :param string msg: The log content. |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 2346 | :see: :js:func:`TXN.log` |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 2347 | |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 2348 | Does the same job as: |
| 2349 | |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 2350 | .. code-block:: lua |
| 2351 | |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 2352 | function Warning(txn, msg) |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 2353 | TXN.log(txn, core.warning, msg) |
| 2354 | end |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 2355 | .. |
| 2356 | |
| 2357 | .. js:function:: TXN.Alert(txn, msg) |
| 2358 | |
| 2359 | :param class_txn txn: The class txn object containing the data. |
| 2360 | :param string msg: The log content. |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 2361 | :see: :js:func:`TXN.log` |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 2362 | |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 2363 | Does the same job as: |
| 2364 | |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 2365 | .. code-block:: lua |
| 2366 | |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 2367 | function Alert(txn, msg) |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 2368 | TXN.log(txn, core.alert, msg) |
| 2369 | end |
Thierry FOURNIER | c798b5d | 2015-03-17 01:09:57 +0100 | [diff] [blame] | 2370 | .. |
| 2371 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2372 | .. js:function:: TXN.get_priv(txn) |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2373 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2374 | Return Lua data stored in the current transaction (with the `TXN.set_priv()`) |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2375 | function. If no data are stored, it returns a nil value. |
| 2376 | |
| 2377 | :param class_txn txn: The class txn object containing the data. |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 2378 | :returns: the opaque data previously stored, or nil if nothing is |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 2379 | available. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2380 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2381 | .. js:function:: TXN.set_priv(txn, data) |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2382 | |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 2383 | Store any data in the current HAProxy transaction. This action replaces the |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2384 | old stored data. |
| 2385 | |
| 2386 | :param class_txn txn: The class txn object containing the data. |
| 2387 | :param opaque data: The data which is stored in the transaction. |
| 2388 | |
Tim Duesterhus | 4e172c9 | 2020-05-19 13:49:42 +0200 | [diff] [blame] | 2389 | .. js:function:: TXN.set_var(TXN, var, value[, ifexist]) |
Thierry FOURNIER | 053ba8ad | 2015-06-08 13:05:33 +0200 | [diff] [blame] | 2390 | |
David Carlier | 61fdf8b | 2015-10-02 11:59:38 +0100 | [diff] [blame] | 2391 | Converts a Lua type in a HAProxy type and store it in a variable <var>. |
Thierry FOURNIER | 053ba8ad | 2015-06-08 13:05:33 +0200 | [diff] [blame] | 2392 | |
| 2393 | :param class_txn txn: The class txn object containing the data. |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 2394 | :param string var: The variable name according with the HAProxy variable |
| 2395 | syntax. |
| 2396 | :param type value: The value associated to the variable. The type can be |
| 2397 | string or integer. |
| 2398 | :param boolean ifexist: If this parameter is set to true the variable will |
| 2399 | only be set if it was defined elsewhere (i.e. used within the configuration). |
| 2400 | For global variables (using the "proc" scope), they will only be updated and |
| 2401 | never created. It is highly recommended to always set this to true. |
Christopher Faulet | 85d79c9 | 2016-11-09 16:54:56 +0100 | [diff] [blame] | 2402 | |
| 2403 | .. js:function:: TXN.unset_var(TXN, var) |
| 2404 | |
| 2405 | Unset the variable <var>. |
| 2406 | |
| 2407 | :param class_txn txn: The class txn object containing the data. |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 2408 | :param string var: The variable name according with the HAProxy variable |
| 2409 | syntax. |
Thierry FOURNIER | 053ba8ad | 2015-06-08 13:05:33 +0200 | [diff] [blame] | 2410 | |
| 2411 | .. js:function:: TXN.get_var(TXN, var) |
| 2412 | |
| 2413 | Returns data stored in the variable <var> converter in Lua type. |
| 2414 | |
| 2415 | :param class_txn txn: The class txn object containing the data. |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 2416 | :param string var: The variable name according with the HAProxy variable |
| 2417 | syntax. |
Thierry FOURNIER | 053ba8ad | 2015-06-08 13:05:33 +0200 | [diff] [blame] | 2418 | |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 2419 | .. js:function:: TXN.reply([reply]) |
| 2420 | |
| 2421 | Return a new reply object |
| 2422 | |
| 2423 | :param table reply: A table containing info to initialize the reply fields. |
| 2424 | :returns: A :ref:`reply_class` object. |
| 2425 | |
| 2426 | The table used to initialized the reply object may contain following entries : |
| 2427 | |
| 2428 | * status : The reply status code. the code 200 is used by default. |
| 2429 | * reason : The reply reason. The reason corresponding to the status code is |
| 2430 | used by default. |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 2431 | * headers : A list of headers, indexed by header name. Empty by default. For |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 2432 | a given name, multiple values are possible, stored in an ordered list. |
| 2433 | * body : The reply body, empty by default. |
| 2434 | |
| 2435 | .. code-block:: lua |
| 2436 | |
| 2437 | local reply = txn:reply{ |
| 2438 | status = 400, |
| 2439 | reason = "Bad request", |
| 2440 | headers = { |
| 2441 | ["content-type"] = { "text/html" }, |
| 2442 | ["cache-control"] = {"no-cache", "no-store" } |
| 2443 | }, |
| 2444 | body = "<html><body><h1>invalid request<h1></body></html>" |
| 2445 | } |
| 2446 | .. |
| 2447 | :see: :js:class:`Reply` |
| 2448 | |
| 2449 | .. js:function:: TXN.done(txn[, reply]) |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2450 | |
Willy Tarreau | bc183a6 | 2015-08-28 10:39:11 +0200 | [diff] [blame] | 2451 | This function terminates processing of the transaction and the associated |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 2452 | session and optionally reply to the client for HTTP sessions. |
| 2453 | |
| 2454 | :param class_txn txn: The class txn object containing the data. |
| 2455 | :param class_reply reply: The class reply object to return to the client. |
| 2456 | |
| 2457 | This functions can be used when a critical error is detected or to terminate |
Willy Tarreau | bc183a6 | 2015-08-28 10:39:11 +0200 | [diff] [blame] | 2458 | processing after some data have been returned to the client (eg: a redirect). |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 2459 | To do so, a reply may be provided. This object is optional and may contain a |
| 2460 | status code, a reason, a header list and a body. All these fields are |
Christopher Faulet | 7855b19 | 2021-11-09 18:39:51 +0100 | [diff] [blame] | 2461 | optional. When not provided, the default values are used. By default, with an |
| 2462 | empty reply object, an empty HTTP 200 response is returned to the client. If |
| 2463 | no reply object is provided, the transaction is terminated without any |
| 2464 | reply. If a reply object is provided, it must not exceed the buffer size once |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 2465 | converted into the internal HTTP representation. Because for now there is no |
Christopher Faulet | 7855b19 | 2021-11-09 18:39:51 +0100 | [diff] [blame] | 2466 | easy way to be sure it fits, it is probably better to keep it reasonably |
| 2467 | small. |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 2468 | |
| 2469 | The reply object may be fully created in lua or the class Reply may be used to |
| 2470 | create it. |
| 2471 | |
| 2472 | .. code-block:: lua |
| 2473 | |
| 2474 | local reply = txn:reply() |
| 2475 | reply:set_status(400, "Bad request") |
| 2476 | reply:add_header("content-type", "text/html") |
| 2477 | reply:add_header("cache-control", "no-cache") |
| 2478 | reply:add_header("cache-control", "no-store") |
| 2479 | reply:set_body("<html><body><h1>invalid request<h1></body></html>") |
| 2480 | txn:done(reply) |
| 2481 | .. |
| 2482 | |
| 2483 | .. code-block:: lua |
| 2484 | |
| 2485 | txn:done{ |
| 2486 | status = 400, |
| 2487 | reason = "Bad request", |
| 2488 | headers = { |
| 2489 | ["content-type"] = { "text/html" }, |
| 2490 | ["cache-control"] = { "no-cache", "no-store" }, |
| 2491 | }, |
| 2492 | body = "<html><body><h1>invalid request<h1></body></html>" |
| 2493 | } |
| 2494 | .. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2495 | |
Christopher Faulet | 1e9b1b6 | 2021-08-11 10:14:30 +0200 | [diff] [blame] | 2496 | .. warning:: |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 2497 | It does not make sense to call this function from sample-fetches. In this |
| 2498 | case the behavior is the same than core.done(): it finishes the Lua |
Christopher Faulet | 1e9b1b6 | 2021-08-11 10:14:30 +0200 | [diff] [blame] | 2499 | execution. The transaction is really aborted only from an action registered |
| 2500 | function. |
Thierry FOURNIER | ab00df6 | 2016-07-14 11:42:37 +0200 | [diff] [blame] | 2501 | |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 2502 | :see: :js:func:`TXN.reply`, :js:class:`Reply` |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2503 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2504 | .. js:function:: TXN.set_loglevel(txn, loglevel) |
Thierry FOURNIER | 2cce353 | 2015-03-16 12:04:16 +0100 | [diff] [blame] | 2505 | |
| 2506 | Is used to change the log level of the current request. The "loglevel" must |
| 2507 | be an integer between 0 and 7. |
| 2508 | |
| 2509 | :param class_txn txn: The class txn object containing the data. |
| 2510 | :param integer loglevel: The required log level. This variable can be one of |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 2511 | :see: :js:attr:`core.emerg`, :js:attr:`core.alert`, :js:attr:`core.crit`, |
| 2512 | :js:attr:`core.err`, :js:attr:`core.warning`, :js:attr:`core.notice`, |
| 2513 | :js:attr:`core.info`, :js:attr:`core.debug` (log level definitions) |
Thierry FOURNIER | 2cce353 | 2015-03-16 12:04:16 +0100 | [diff] [blame] | 2514 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2515 | .. js:function:: TXN.set_tos(txn, tos) |
Thierry FOURNIER | 2cce353 | 2015-03-16 12:04:16 +0100 | [diff] [blame] | 2516 | |
| 2517 | Is used to set the TOS or DSCP field value of packets sent to the client to |
| 2518 | the value passed in "tos" on platforms which support this. |
| 2519 | |
| 2520 | :param class_txn txn: The class txn object containing the data. |
| 2521 | :param integer tos: The new TOS os DSCP. |
| 2522 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2523 | .. js:function:: TXN.set_mark(txn, mark) |
Thierry FOURNIER | 2cce353 | 2015-03-16 12:04:16 +0100 | [diff] [blame] | 2524 | |
| 2525 | Is used to set the Netfilter MARK on all packets sent to the client to the |
| 2526 | value passed in "mark" on platforms which support it. |
| 2527 | |
| 2528 | :param class_txn txn: The class txn object containing the data. |
| 2529 | :param integer mark: The mark value. |
| 2530 | |
Patrick Hemmer | 268a707 | 2018-05-11 12:52:31 -0400 | [diff] [blame] | 2531 | .. js:function:: TXN.set_priority_class(txn, prio) |
| 2532 | |
| 2533 | This function adjusts the priority class of the transaction. The value should |
| 2534 | be within the range -2047..2047. Values outside this range will be |
| 2535 | truncated. |
| 2536 | |
| 2537 | See the HAProxy configuration.txt file keyword "http-request" action |
| 2538 | "set-priority-class" for details. |
| 2539 | |
| 2540 | .. js:function:: TXN.set_priority_offset(txn, prio) |
| 2541 | |
| 2542 | This function adjusts the priority offset of the transaction. The value |
| 2543 | should be within the range -524287..524287. Values outside this range will be |
| 2544 | truncated. |
| 2545 | |
| 2546 | See the HAProxy configuration.txt file keyword "http-request" action |
| 2547 | "set-priority-offset" for details. |
| 2548 | |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 2549 | .. _reply_class: |
| 2550 | |
| 2551 | Reply class |
| 2552 | ============ |
| 2553 | |
| 2554 | .. js:class:: Reply |
| 2555 | |
| 2556 | **context**: action |
| 2557 | |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 2558 | This class represents a HTTP response message. It provides some methods to |
Christopher Faulet | 7855b19 | 2021-11-09 18:39:51 +0100 | [diff] [blame] | 2559 | enrich it. Once converted into the internal HTTP representation, the response |
| 2560 | message must not exceed the buffer size. Because for now there is no |
| 2561 | easy way to be sure it fits, it is probably better to keep it reasonably |
| 2562 | small. |
| 2563 | |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 2564 | See tune.bufsize in the configuration manual for details. |
Christopher Faulet | 700d9e8 | 2020-01-31 12:21:52 +0100 | [diff] [blame] | 2565 | |
| 2566 | .. code-block:: lua |
| 2567 | |
| 2568 | local reply = txn:reply({status = 400}) -- default HTTP 400 reason-phase used |
| 2569 | reply:add_header("content-type", "text/html") |
| 2570 | reply:add_header("cache-control", "no-cache") |
| 2571 | reply:add_header("cache-control", "no-store") |
| 2572 | reply:set_body("<html><body><h1>invalid request<h1></body></html>") |
| 2573 | .. |
| 2574 | |
| 2575 | :see: :js:func:`TXN.reply` |
| 2576 | |
| 2577 | .. js:attribute:: Reply.status |
| 2578 | |
| 2579 | The reply status code. By default, the status code is set to 200. |
| 2580 | |
| 2581 | :returns: integer |
| 2582 | |
| 2583 | .. js:attribute:: Reply.reason |
| 2584 | |
| 2585 | The reason string describing the status code. |
| 2586 | |
| 2587 | :returns: string |
| 2588 | |
| 2589 | .. js:attribute:: Reply.headers |
| 2590 | |
| 2591 | A table indexing all reply headers by name. To each name is associated an |
| 2592 | ordered list of values. |
| 2593 | |
| 2594 | :returns: Lua table |
| 2595 | |
| 2596 | .. code-block:: lua |
| 2597 | |
| 2598 | { |
| 2599 | ["content-type"] = { "text/html" }, |
| 2600 | ["cache-control"] = {"no-cache", "no-store" }, |
| 2601 | x_header_name = { "value1", "value2", ... } |
| 2602 | ... |
| 2603 | } |
| 2604 | .. |
| 2605 | |
| 2606 | .. js:attribute:: Reply.body |
| 2607 | |
| 2608 | The reply payload. |
| 2609 | |
| 2610 | :returns: string |
| 2611 | |
| 2612 | .. js:function:: Reply.set_status(REPLY, status[, reason]) |
| 2613 | |
| 2614 | Set the reply status code and optionally the reason-phrase. If the reason is |
| 2615 | not provided, the default reason corresponding to the status code is used. |
| 2616 | |
| 2617 | :param class_reply reply: The related Reply object. |
| 2618 | :param integer status: The reply status code. |
| 2619 | :param string reason: The reply status reason (optional). |
| 2620 | |
| 2621 | .. js:function:: Reply.add_header(REPLY, name, value) |
| 2622 | |
| 2623 | Add a header to the reply object. If the header does not already exist, a new |
| 2624 | entry is created with its name as index and a one-element list containing its |
| 2625 | value as value. Otherwise, the header value is appended to the ordered list of |
| 2626 | values associated to the header name. |
| 2627 | |
| 2628 | :param class_reply reply: The related Reply object. |
| 2629 | :param string name: The header field name. |
| 2630 | :param string value: The header field value. |
| 2631 | |
| 2632 | .. js:function:: Reply.del_header(REPLY, name) |
| 2633 | |
| 2634 | Remove all occurrences of a header name from the reply object. |
| 2635 | |
| 2636 | :param class_reply reply: The related Reply object. |
| 2637 | :param string name: The header field name. |
| 2638 | |
| 2639 | .. js:function:: Reply.set_body(REPLY, body) |
| 2640 | |
| 2641 | Set the reply payload. |
| 2642 | |
| 2643 | :param class_reply reply: The related Reply object. |
| 2644 | :param string body: The reply payload. |
| 2645 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 2646 | .. _socket_class: |
| 2647 | |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2648 | Socket class |
| 2649 | ============ |
| 2650 | |
| 2651 | .. js:class:: Socket |
| 2652 | |
| 2653 | This class must be compatible with the Lua Socket class. Only the 'client' |
| 2654 | functions are available. See the Lua Socket documentation: |
| 2655 | |
| 2656 | `http://w3.impa.br/~diego/software/luasocket/tcp.html |
| 2657 | <http://w3.impa.br/~diego/software/luasocket/tcp.html>`_ |
| 2658 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2659 | .. js:function:: Socket.close(socket) |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2660 | |
| 2661 | Closes a TCP object. The internal socket used by the object is closed and the |
| 2662 | local address to which the object was bound is made available to other |
| 2663 | applications. No further operations (except for further calls to the close |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2664 | method) are allowed on a closed Socket. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2665 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2666 | :param class_socket socket: Is the manipulated Socket. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2667 | |
| 2668 | Note: It is important to close all used sockets once they are not needed, |
| 2669 | since, in many systems, each socket uses a file descriptor, which are limited |
| 2670 | system resources. Garbage-collected objects are automatically closed before |
| 2671 | destruction, though. |
| 2672 | |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 2673 | .. js:function:: Socket.connect(socket, address[, port]) |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2674 | |
| 2675 | Attempts to connect a socket object to a remote host. |
| 2676 | |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2677 | |
| 2678 | In case of error, the method returns nil followed by a string describing the |
| 2679 | error. In case of success, the method returns 1. |
| 2680 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2681 | :param class_socket socket: Is the manipulated Socket. |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 2682 | :param string address: can be an IP address or a host name. See below for more |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 2683 | information. |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 2684 | :param integer port: must be an integer number in the range [1..64K]. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2685 | :returns: 1 or nil. |
| 2686 | |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 2687 | An address field extension permits to use the connect() function to connect to |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 2688 | other stream than TCP. The syntax containing a simpleipv4 or ipv6 address is |
| 2689 | the basically expected format. This format requires the port. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2690 | |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 2691 | Other format accepted are a socket path like "/socket/path", it permits to |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 2692 | connect to a socket. Abstract namespaces are supported with the prefix |
Joseph Herlant | 02cedc4 | 2018-11-13 19:45:17 -0800 | [diff] [blame] | 2693 | "abns@", and finally a file descriptor can be passed with the prefix "fd@". |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 2694 | The prefix "ipv4@", "ipv6@" and "unix@" are also supported. The port can be |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 2695 | passed int the string. The syntax "127.0.0.1:1234" is valid. In this case, the |
Tim Duesterhus | 6edab86 | 2018-01-06 19:04:45 +0100 | [diff] [blame] | 2696 | parameter *port* must not be set. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2697 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2698 | .. js:function:: Socket.connect_ssl(socket, address, port) |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2699 | |
| 2700 | Same behavior than the function socket:connect, but uses SSL. |
| 2701 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2702 | :param class_socket socket: Is the manipulated Socket. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2703 | :returns: 1 or nil. |
| 2704 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2705 | .. js:function:: Socket.getpeername(socket) |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2706 | |
| 2707 | Returns information about the remote side of a connected client object. |
| 2708 | |
| 2709 | Returns a string with the IP address of the peer, followed by the port number |
| 2710 | that peer is using for the connection. In case of error, the method returns |
| 2711 | nil. |
| 2712 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2713 | :param class_socket socket: Is the manipulated Socket. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2714 | :returns: a string containing the server information. |
| 2715 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2716 | .. js:function:: Socket.getsockname(socket) |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2717 | |
| 2718 | Returns the local address information associated to the object. |
| 2719 | |
| 2720 | The method returns a string with local IP address and a number with the port. |
| 2721 | In case of error, the method returns nil. |
| 2722 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2723 | :param class_socket socket: Is the manipulated Socket. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2724 | :returns: a string containing the client information. |
| 2725 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2726 | .. js:function:: Socket.receive(socket, [pattern [, prefix]]) |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2727 | |
| 2728 | Reads data from a client object, according to the specified read pattern. |
| 2729 | Patterns follow the Lua file I/O format, and the difference in performance |
| 2730 | between all patterns is negligible. |
| 2731 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2732 | :param class_socket socket: Is the manipulated Socket. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2733 | :param string|integer pattern: Describe what is required (see below). |
| 2734 | :param string prefix: A string which will be prefix the returned data. |
| 2735 | :returns: a string containing the required data or nil. |
| 2736 | |
| 2737 | Pattern can be any of the following: |
| 2738 | |
| 2739 | * **`*a`**: reads from the socket until the connection is closed. No |
| 2740 | end-of-line translation is performed; |
| 2741 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2742 | * **`*l`**: reads a line of text from the Socket. The line is terminated by a |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2743 | LF character (ASCII 10), optionally preceded by a CR character |
| 2744 | (ASCII 13). The CR and LF characters are not included in the |
| 2745 | returned line. In fact, all CR characters are ignored by the |
| 2746 | pattern. This is the default pattern. |
| 2747 | |
| 2748 | * **number**: causes the method to read a specified number of bytes from the |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2749 | Socket. Prefix is an optional string to be concatenated to the |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2750 | beginning of any received data before return. |
| 2751 | |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 2752 | * **empty**: If the pattern is left empty, the default option is `*l`. |
| 2753 | |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2754 | If successful, the method returns the received pattern. In case of error, the |
| 2755 | method returns nil followed by an error message which can be the string |
| 2756 | 'closed' in case the connection was closed before the transmission was |
| 2757 | completed or the string 'timeout' in case there was a timeout during the |
| 2758 | operation. Also, after the error message, the function returns the partial |
| 2759 | result of the transmission. |
| 2760 | |
| 2761 | Important note: This function was changed severely. It used to support |
| 2762 | multiple patterns (but I have never seen this feature used) and now it |
| 2763 | doesn't anymore. Partial results used to be returned in the same way as |
| 2764 | successful results. This last feature violated the idea that all functions |
| 2765 | should return nil on error. Thus it was changed too. |
| 2766 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2767 | .. js:function:: Socket.send(socket, data [, start [, end ]]) |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2768 | |
| 2769 | Sends data through client object. |
| 2770 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2771 | :param class_socket socket: Is the manipulated Socket. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2772 | :param string data: The data that will be sent. |
| 2773 | :param integer start: The start position in the buffer of the data which will |
| 2774 | be sent. |
| 2775 | :param integer end: The end position in the buffer of the data which will |
| 2776 | be sent. |
| 2777 | :returns: see below. |
| 2778 | |
| 2779 | Data is the string to be sent. The optional arguments i and j work exactly |
| 2780 | like the standard string.sub Lua function to allow the selection of a |
| 2781 | substring to be sent. |
| 2782 | |
| 2783 | If successful, the method returns the index of the last byte within [start, |
| 2784 | end] that has been sent. Notice that, if start is 1 or absent, this is |
| 2785 | effectively the total number of bytes sent. In case of error, the method |
| 2786 | returns nil, followed by an error message, followed by the index of the last |
| 2787 | byte within [start, end] that has been sent. You might want to try again from |
| 2788 | the byte following that. The error message can be 'closed' in case the |
| 2789 | connection was closed before the transmission was completed or the string |
| 2790 | 'timeout' in case there was a timeout during the operation. |
| 2791 | |
| 2792 | Note: Output is not buffered. For small strings, it is always better to |
| 2793 | concatenate them in Lua (with the '..' operator) and send the result in one |
| 2794 | call instead of calling the method several times. |
| 2795 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2796 | .. js:function:: Socket.setoption(socket, option [, value]) |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2797 | |
| 2798 | Just implemented for compatibility, this cal does nothing. |
| 2799 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2800 | .. js:function:: Socket.settimeout(socket, value [, mode]) |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2801 | |
| 2802 | Changes the timeout values for the object. All I/O operations are blocking. |
| 2803 | That is, any call to the methods send, receive, and accept will block |
| 2804 | indefinitely, until the operation completes. The settimeout method defines a |
| 2805 | limit on the amount of time the I/O methods can block. When a timeout time |
| 2806 | has elapsed, the affected methods give up and fail with an error code. |
| 2807 | |
| 2808 | The amount of time to wait is specified as the value parameter, in seconds. |
| 2809 | |
Mark Lakes | 56cc125 | 2018-03-27 09:48:06 +0200 | [diff] [blame] | 2810 | The timeout modes are not implemented, the only settable timeout is the |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2811 | inactivity time waiting for complete the internal buffer send or waiting for |
| 2812 | receive data. |
| 2813 | |
Thierry FOURNIER | 486f5a0 | 2015-03-16 15:13:03 +0100 | [diff] [blame] | 2814 | :param class_socket socket: Is the manipulated Socket. |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 2815 | :param float value: The timeout value. Use floating point to specify |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 2816 | milliseconds. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 2817 | |
Thierry FOURNIER | 3190427 | 2017-10-25 12:59:51 +0200 | [diff] [blame] | 2818 | .. _regex_class: |
| 2819 | |
| 2820 | Regex class |
| 2821 | =========== |
| 2822 | |
| 2823 | .. js:class:: Regex |
| 2824 | |
| 2825 | This class allows the usage of HAProxy regexes because classic lua doesn't |
| 2826 | provides regexes. This class inherits the HAProxy compilation options, so the |
| 2827 | regexes can be libc regex, pcre regex or pcre JIT regex. |
| 2828 | |
| 2829 | The expression matching number is limited to 20 per regex. The only available |
| 2830 | option is case sensitive. |
| 2831 | |
| 2832 | Because regexes compilation is a heavy process, it is better to define all |
| 2833 | your regexes in the **body context** and use it during the runtime. |
| 2834 | |
| 2835 | .. code-block:: lua |
| 2836 | |
| 2837 | -- Create the regex |
| 2838 | st, regex = Regex.new("needle (..) (...)", true); |
| 2839 | |
| 2840 | -- Check compilation errors |
| 2841 | if st == false then |
| 2842 | print "error: " .. regex |
| 2843 | end |
| 2844 | |
| 2845 | -- Match the regexes |
| 2846 | print(regex:exec("Looking for a needle in the haystack")) -- true |
| 2847 | print(regex:exec("Lokking for a cat in the haystack")) -- false |
| 2848 | |
| 2849 | -- Extract words |
| 2850 | st, list = regex:match("Looking for a needle in the haystack") |
| 2851 | print(st) -- true |
| 2852 | print(list[1]) -- needle in the |
| 2853 | print(list[2]) -- in |
| 2854 | print(list[3]) -- the |
| 2855 | |
| 2856 | .. js:function:: Regex.new(regex, case_sensitive) |
| 2857 | |
| 2858 | Create and compile a regex. |
| 2859 | |
| 2860 | :param string regex: The regular expression according with the libc or pcre |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 2861 | standard |
Thierry FOURNIER | 3190427 | 2017-10-25 12:59:51 +0200 | [diff] [blame] | 2862 | :param boolean case_sensitive: Match is case sensitive or not. |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 2863 | :returns: boolean status and :ref:`regex_class` or string containing fail |
| 2864 | reason. |
Thierry FOURNIER | 3190427 | 2017-10-25 12:59:51 +0200 | [diff] [blame] | 2865 | |
| 2866 | .. js:function:: Regex.exec(regex, str) |
| 2867 | |
| 2868 | Execute the regex. |
| 2869 | |
| 2870 | :param class_regex regex: A :ref:`regex_class` object. |
| 2871 | :param string str: The input string will be compared with the compiled regex. |
| 2872 | :returns: a boolean status according with the match result. |
| 2873 | |
| 2874 | .. js:function:: Regex.match(regex, str) |
| 2875 | |
| 2876 | Execute the regex and return matched expressions. |
| 2877 | |
| 2878 | :param class_map map: A :ref:`regex_class` object. |
| 2879 | :param string str: The input string will be compared with the compiled regex. |
| 2880 | :returns: a boolean status according with the match result, and |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 2881 | a table containing all the string matched in order of declaration. |
Thierry FOURNIER | 3190427 | 2017-10-25 12:59:51 +0200 | [diff] [blame] | 2882 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 2883 | .. _map_class: |
| 2884 | |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 2885 | Map class |
| 2886 | ========= |
| 2887 | |
| 2888 | .. js:class:: Map |
| 2889 | |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 2890 | This class permits to do some lookups in HAProxy maps. The declared maps can |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 2891 | be modified during the runtime through the HAProxy management socket. |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 2892 | |
| 2893 | .. code-block:: lua |
| 2894 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 2895 | default = "usa" |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 2896 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 2897 | -- Create and load map |
Thierry FOURNIER | 4dc7197 | 2017-01-28 08:33:08 +0100 | [diff] [blame] | 2898 | geo = Map.new("geo.map", Map._ip); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 2899 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 2900 | -- Create new fetch that returns the user country |
| 2901 | core.register_fetches("country", function(txn) |
| 2902 | local src; |
| 2903 | local loc; |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 2904 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 2905 | src = txn.f:fhdr("x-forwarded-for"); |
| 2906 | if (src == nil) then |
| 2907 | src = txn.f:src() |
| 2908 | if (src == nil) then |
| 2909 | return default; |
| 2910 | end |
| 2911 | end |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 2912 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 2913 | -- Perform lookup |
| 2914 | loc = geo:lookup(src); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 2915 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 2916 | if (loc == nil) then |
| 2917 | return default; |
| 2918 | end |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 2919 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 2920 | return loc; |
| 2921 | end); |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 2922 | |
Thierry FOURNIER | 4dc7197 | 2017-01-28 08:33:08 +0100 | [diff] [blame] | 2923 | .. js:attribute:: Map._int |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 2924 | |
| 2925 | See the HAProxy configuration.txt file, chapter "Using ACLs and fetching |
Ilya Shipitsin | 2075ca8 | 2020-03-06 23:22:22 +0500 | [diff] [blame] | 2926 | samples" and subchapter "ACL basics" to understand this pattern matching |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 2927 | method. |
| 2928 | |
Thierry FOURNIER | 4dc7197 | 2017-01-28 08:33:08 +0100 | [diff] [blame] | 2929 | Note that :js:attr:`Map.int` is also available for compatibility. |
| 2930 | |
| 2931 | .. js:attribute:: Map._ip |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 2932 | |
| 2933 | See the HAProxy configuration.txt file, chapter "Using ACLs and fetching |
Ilya Shipitsin | 2075ca8 | 2020-03-06 23:22:22 +0500 | [diff] [blame] | 2934 | samples" and subchapter "ACL basics" to understand this pattern matching |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 2935 | method. |
| 2936 | |
Thierry FOURNIER | 4dc7197 | 2017-01-28 08:33:08 +0100 | [diff] [blame] | 2937 | Note that :js:attr:`Map.ip` is also available for compatibility. |
| 2938 | |
| 2939 | .. js:attribute:: Map._str |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 2940 | |
| 2941 | See the HAProxy configuration.txt file, chapter "Using ACLs and fetching |
Ilya Shipitsin | 2075ca8 | 2020-03-06 23:22:22 +0500 | [diff] [blame] | 2942 | samples" and subchapter "ACL basics" to understand this pattern matching |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 2943 | method. |
| 2944 | |
Thierry FOURNIER | 4dc7197 | 2017-01-28 08:33:08 +0100 | [diff] [blame] | 2945 | Note that :js:attr:`Map.str` is also available for compatibility. |
| 2946 | |
| 2947 | .. js:attribute:: Map._beg |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 2948 | |
| 2949 | See the HAProxy configuration.txt file, chapter "Using ACLs and fetching |
Ilya Shipitsin | 2075ca8 | 2020-03-06 23:22:22 +0500 | [diff] [blame] | 2950 | samples" and subchapter "ACL basics" to understand this pattern matching |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 2951 | method. |
| 2952 | |
Thierry FOURNIER | 4dc7197 | 2017-01-28 08:33:08 +0100 | [diff] [blame] | 2953 | Note that :js:attr:`Map.beg` is also available for compatibility. |
| 2954 | |
| 2955 | .. js:attribute:: Map._sub |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 2956 | |
| 2957 | See the HAProxy configuration.txt file, chapter "Using ACLs and fetching |
Ilya Shipitsin | 2075ca8 | 2020-03-06 23:22:22 +0500 | [diff] [blame] | 2958 | samples" and subchapter "ACL basics" to understand this pattern matching |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 2959 | method. |
| 2960 | |
Thierry FOURNIER | 4dc7197 | 2017-01-28 08:33:08 +0100 | [diff] [blame] | 2961 | Note that :js:attr:`Map.sub` is also available for compatibility. |
| 2962 | |
| 2963 | .. js:attribute:: Map._dir |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 2964 | |
| 2965 | See the HAProxy configuration.txt file, chapter "Using ACLs and fetching |
Ilya Shipitsin | 2075ca8 | 2020-03-06 23:22:22 +0500 | [diff] [blame] | 2966 | samples" and subchapter "ACL basics" to understand this pattern matching |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 2967 | method. |
| 2968 | |
Thierry FOURNIER | 4dc7197 | 2017-01-28 08:33:08 +0100 | [diff] [blame] | 2969 | Note that :js:attr:`Map.dir` is also available for compatibility. |
| 2970 | |
| 2971 | .. js:attribute:: Map._dom |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 2972 | |
| 2973 | See the HAProxy configuration.txt file, chapter "Using ACLs and fetching |
Ilya Shipitsin | 2075ca8 | 2020-03-06 23:22:22 +0500 | [diff] [blame] | 2974 | samples" and subchapter "ACL basics" to understand this pattern matching |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 2975 | method. |
| 2976 | |
Thierry FOURNIER | 4dc7197 | 2017-01-28 08:33:08 +0100 | [diff] [blame] | 2977 | Note that :js:attr:`Map.dom` is also available for compatibility. |
| 2978 | |
| 2979 | .. js:attribute:: Map._end |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 2980 | |
| 2981 | See the HAProxy configuration.txt file, chapter "Using ACLs and fetching |
Ilya Shipitsin | 2075ca8 | 2020-03-06 23:22:22 +0500 | [diff] [blame] | 2982 | samples" and subchapter "ACL basics" to understand this pattern matching |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 2983 | method. |
| 2984 | |
Thierry FOURNIER | 4dc7197 | 2017-01-28 08:33:08 +0100 | [diff] [blame] | 2985 | .. js:attribute:: Map._reg |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 2986 | |
| 2987 | See the HAProxy configuration.txt file, chapter "Using ACLs and fetching |
Ilya Shipitsin | 2075ca8 | 2020-03-06 23:22:22 +0500 | [diff] [blame] | 2988 | samples" and subchapter "ACL basics" to understand this pattern matching |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 2989 | method. |
| 2990 | |
Thierry FOURNIER | 4dc7197 | 2017-01-28 08:33:08 +0100 | [diff] [blame] | 2991 | Note that :js:attr:`Map.reg` is also available for compatibility. |
| 2992 | |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 2993 | |
| 2994 | .. js:function:: Map.new(file, method) |
| 2995 | |
| 2996 | Creates and load a map. |
| 2997 | |
| 2998 | :param string file: Is the file containing the map. |
| 2999 | :param integer method: Is the map pattern matching method. See the attributes |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 3000 | of the Map class. |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 3001 | :returns: a class Map object. |
Thierry FOURNIER | 4dc7197 | 2017-01-28 08:33:08 +0100 | [diff] [blame] | 3002 | :see: The Map attributes: :js:attr:`Map._int`, :js:attr:`Map._ip`, |
| 3003 | :js:attr:`Map._str`, :js:attr:`Map._beg`, :js:attr:`Map._sub`, |
| 3004 | :js:attr:`Map._dir`, :js:attr:`Map._dom`, :js:attr:`Map._end` and |
| 3005 | :js:attr:`Map._reg`. |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 3006 | |
| 3007 | .. js:function:: Map.lookup(map, str) |
| 3008 | |
| 3009 | Perform a lookup in a map. |
| 3010 | |
| 3011 | :param class_map map: Is the class Map object. |
| 3012 | :param string str: Is the string used as key. |
| 3013 | :returns: a string containing the result or nil if no match. |
| 3014 | |
| 3015 | .. js:function:: Map.slookup(map, str) |
| 3016 | |
| 3017 | Perform a lookup in a map. |
| 3018 | |
| 3019 | :param class_map map: Is the class Map object. |
| 3020 | :param string str: Is the string used as key. |
| 3021 | :returns: a string containing the result or empty string if no match. |
| 3022 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 3023 | .. _applethttp_class: |
| 3024 | |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 3025 | AppletHTTP class |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 3026 | ================ |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 3027 | |
| 3028 | .. js:class:: AppletHTTP |
| 3029 | |
| 3030 | This class is used with applets that requires the 'http' mode. The http applet |
| 3031 | can be registered with the *core.register_service()* function. They are used |
| 3032 | for processing an http request like a server in back of HAProxy. |
| 3033 | |
| 3034 | This is an hello world sample code: |
| 3035 | |
| 3036 | .. code-block:: lua |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 3037 | |
Pieter Baauw | 4d7f766 | 2015-11-08 16:38:08 +0100 | [diff] [blame] | 3038 | core.register_service("hello-world", "http", function(applet) |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 3039 | local response = "Hello World !" |
| 3040 | applet:set_status(200) |
Pieter Baauw | 2dcb9bc | 2015-10-01 22:47:12 +0200 | [diff] [blame] | 3041 | applet:add_header("content-length", string.len(response)) |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 3042 | applet:add_header("content-type", "text/plain") |
Pieter Baauw | 2dcb9bc | 2015-10-01 22:47:12 +0200 | [diff] [blame] | 3043 | applet:start_response() |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 3044 | applet:send(response) |
| 3045 | end) |
| 3046 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 3047 | .. js:attribute:: AppletHTTP.c |
| 3048 | |
| 3049 | :returns: A :ref:`converters_class` |
| 3050 | |
| 3051 | This attribute contains a Converters class object. |
| 3052 | |
| 3053 | .. js:attribute:: AppletHTTP.sc |
| 3054 | |
| 3055 | :returns: A :ref:`converters_class` |
| 3056 | |
| 3057 | This attribute contains a Converters class object. The |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 3058 | functions of this object always return a string. |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 3059 | |
| 3060 | .. js:attribute:: AppletHTTP.f |
| 3061 | |
| 3062 | :returns: A :ref:`fetches_class` |
| 3063 | |
| 3064 | This attribute contains a Fetches class object. Note that the |
| 3065 | applet execution place cannot access to a valid HAProxy core HTTP |
Ilya Shipitsin | 2075ca8 | 2020-03-06 23:22:22 +0500 | [diff] [blame] | 3066 | transaction, so some sample fetches related to the HTTP dependent |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 3067 | values (hdr, path, ...) are not available. |
| 3068 | |
| 3069 | .. js:attribute:: AppletHTTP.sf |
| 3070 | |
| 3071 | :returns: A :ref:`fetches_class` |
| 3072 | |
| 3073 | This attribute contains a Fetches class object. The functions of |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 3074 | this object always return a string. Note that the applet |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 3075 | execution place cannot access to a valid HAProxy core HTTP |
Ilya Shipitsin | 2075ca8 | 2020-03-06 23:22:22 +0500 | [diff] [blame] | 3076 | transaction, so some sample fetches related to the HTTP dependent |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 3077 | values (hdr, path, ...) are not available. |
| 3078 | |
Thierry FOURNIER | e34a78e | 2015-12-25 01:31:35 +0100 | [diff] [blame] | 3079 | .. js:attribute:: AppletHTTP.method |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 3080 | |
| 3081 | :returns: string |
| 3082 | |
| 3083 | The attribute method returns a string containing the HTTP |
| 3084 | method. |
| 3085 | |
| 3086 | .. js:attribute:: AppletHTTP.version |
| 3087 | |
| 3088 | :returns: string |
| 3089 | |
| 3090 | The attribute version, returns a string containing the HTTP |
| 3091 | request version. |
| 3092 | |
| 3093 | .. js:attribute:: AppletHTTP.path |
| 3094 | |
| 3095 | :returns: string |
| 3096 | |
| 3097 | The attribute path returns a string containing the HTTP |
| 3098 | request path. |
| 3099 | |
| 3100 | .. js:attribute:: AppletHTTP.qs |
| 3101 | |
| 3102 | :returns: string |
| 3103 | |
| 3104 | The attribute qs returns a string containing the HTTP |
| 3105 | request query string. |
| 3106 | |
| 3107 | .. js:attribute:: AppletHTTP.length |
| 3108 | |
| 3109 | :returns: integer |
| 3110 | |
| 3111 | The attribute length returns an integer containing the HTTP |
| 3112 | body length. |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 3113 | |
Thierry FOURNIER | 841475e | 2015-12-11 17:10:09 +0100 | [diff] [blame] | 3114 | .. js:attribute:: AppletHTTP.headers |
| 3115 | |
Patrick Hemmer | c6a1d71 | 2018-05-01 21:30:41 -0400 | [diff] [blame] | 3116 | :returns: table |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 3117 | |
Patrick Hemmer | c6a1d71 | 2018-05-01 21:30:41 -0400 | [diff] [blame] | 3118 | The attribute headers returns a table containing the HTTP |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 3119 | headers. The header names are always in lower case. As the header name can be |
| 3120 | encountered more than once in each request, the value is indexed with 0 as |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 3121 | first index value. The table has this form: |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 3122 | |
| 3123 | .. code-block:: lua |
| 3124 | |
| 3125 | AppletHTTP.headers['<header-name>'][<header-index>] = "<header-value>" |
| 3126 | |
| 3127 | AppletHTTP.headers["host"][0] = "www.test.com" |
| 3128 | AppletHTTP.headers["accept"][0] = "audio/basic q=1" |
| 3129 | AppletHTTP.headers["accept"][1] = "audio/*, q=0.2" |
Thierry FOURNIER | e34a78e | 2015-12-25 01:31:35 +0100 | [diff] [blame] | 3130 | AppletHTTP.headers["accept"][2] = "*/*, q=0.1" |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 3131 | .. |
| 3132 | |
Robin H. Johnson | 52f5db2 | 2017-01-01 13:10:52 -0800 | [diff] [blame] | 3133 | .. js:function:: AppletHTTP.set_status(applet, code [, reason]) |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 3134 | |
| 3135 | This function sets the HTTP status code for the response. The allowed code are |
| 3136 | from 100 to 599. |
| 3137 | |
Thierry FOURNIER | e34a78e | 2015-12-25 01:31:35 +0100 | [diff] [blame] | 3138 | :param class_AppletHTTP applet: An :ref:`applethttp_class` |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 3139 | :param integer code: the status code returned to the client. |
Robin H. Johnson | 52f5db2 | 2017-01-01 13:10:52 -0800 | [diff] [blame] | 3140 | :param string reason: the status reason returned to the client (optional). |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 3141 | |
Thierry FOURNIER | e34a78e | 2015-12-25 01:31:35 +0100 | [diff] [blame] | 3142 | .. js:function:: AppletHTTP.add_header(applet, name, value) |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 3143 | |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 3144 | This function adds a header in the response. Duplicated headers are not |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 3145 | collapsed. The special header *content-length* is used to determinate the |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 3146 | response length. If it does not exist, a *transfer-encoding: chunked* is set, |
| 3147 | and all the write from the function *AppletHTTP:send()* become a chunk. |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 3148 | |
Thierry FOURNIER | e34a78e | 2015-12-25 01:31:35 +0100 | [diff] [blame] | 3149 | :param class_AppletHTTP applet: An :ref:`applethttp_class` |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 3150 | :param string name: the header name |
| 3151 | :param string value: the header value |
| 3152 | |
Thierry FOURNIER | e34a78e | 2015-12-25 01:31:35 +0100 | [diff] [blame] | 3153 | .. js:function:: AppletHTTP.start_response(applet) |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 3154 | |
| 3155 | This function indicates to the HTTP engine that it can process and send the |
| 3156 | response headers. After this called we cannot add headers to the response; We |
| 3157 | cannot use the *AppletHTTP:send()* function if the |
| 3158 | *AppletHTTP:start_response()* is not called. |
| 3159 | |
Thierry FOURNIER | e34a78e | 2015-12-25 01:31:35 +0100 | [diff] [blame] | 3160 | :param class_AppletHTTP applet: An :ref:`applethttp_class` |
| 3161 | |
| 3162 | .. js:function:: AppletHTTP.getline(applet) |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 3163 | |
| 3164 | This function returns a string containing one line from the http body. If the |
| 3165 | data returned doesn't contains a final '\\n' its assumed than its the last |
| 3166 | available data before the end of stream. |
| 3167 | |
Thierry FOURNIER | e34a78e | 2015-12-25 01:31:35 +0100 | [diff] [blame] | 3168 | :param class_AppletHTTP applet: An :ref:`applethttp_class` |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 3169 | :returns: a string. The string can be empty if we reach the end of the stream. |
| 3170 | |
Thierry FOURNIER | e34a78e | 2015-12-25 01:31:35 +0100 | [diff] [blame] | 3171 | .. js:function:: AppletHTTP.receive(applet, [size]) |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 3172 | |
| 3173 | Reads data from the HTTP body, according to the specified read *size*. If the |
| 3174 | *size* is missing, the function tries to read all the content of the stream |
| 3175 | until the end. If the *size* is bigger than the http body, it returns the |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 3176 | amount of data available. |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 3177 | |
Thierry FOURNIER | e34a78e | 2015-12-25 01:31:35 +0100 | [diff] [blame] | 3178 | :param class_AppletHTTP applet: An :ref:`applethttp_class` |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 3179 | :param integer size: the required read size. |
Ilya Shipitsin | 11057a3 | 2020-06-21 21:18:27 +0500 | [diff] [blame] | 3180 | :returns: always return a string,the string can be empty is the connection is |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 3181 | closed. |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 3182 | |
Thierry FOURNIER | e34a78e | 2015-12-25 01:31:35 +0100 | [diff] [blame] | 3183 | .. js:function:: AppletHTTP.send(applet, msg) |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 3184 | |
| 3185 | Send the message *msg* on the http request body. |
| 3186 | |
Thierry FOURNIER | e34a78e | 2015-12-25 01:31:35 +0100 | [diff] [blame] | 3187 | :param class_AppletHTTP applet: An :ref:`applethttp_class` |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 3188 | :param string msg: the message to send. |
| 3189 | |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 3190 | .. js:function:: AppletHTTP.get_priv(applet) |
| 3191 | |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 3192 | Return Lua data stored in the current transaction. If no data are stored, |
| 3193 | it returns a nil value. |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 3194 | |
| 3195 | :param class_AppletHTTP applet: An :ref:`applethttp_class` |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 3196 | :returns: the opaque data previously stored, or nil if nothing is |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 3197 | available. |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 3198 | :see: :js:func:`AppletHTTP.set_priv` |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 3199 | |
| 3200 | .. js:function:: AppletHTTP.set_priv(applet, data) |
| 3201 | |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 3202 | Store any data in the current HAProxy transaction. This action replaces the |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 3203 | old stored data. |
| 3204 | |
| 3205 | :param class_AppletHTTP applet: An :ref:`applethttp_class` |
| 3206 | :param opaque data: The data which is stored in the transaction. |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 3207 | :see: :js:func:`AppletHTTP.get_priv` |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 3208 | |
Tim Duesterhus | 4e172c9 | 2020-05-19 13:49:42 +0200 | [diff] [blame] | 3209 | .. js:function:: AppletHTTP.set_var(applet, var, value[, ifexist]) |
Thierry FOURNIER / OZON.IO | c1edafe | 2016-12-12 16:25:30 +0100 | [diff] [blame] | 3210 | |
| 3211 | Converts a Lua type in a HAProxy type and store it in a variable <var>. |
| 3212 | |
| 3213 | :param class_AppletHTTP applet: An :ref:`applethttp_class` |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 3214 | :param string var: The variable name according with the HAProxy variable |
| 3215 | syntax. |
| 3216 | :param type value: The value associated to the variable. The type ca be string |
| 3217 | or integer. |
| 3218 | :param boolean ifexist: If this parameter is set to true the variable will |
| 3219 | only be set if it was defined elsewhere (i.e. used within the configuration). |
| 3220 | For global variables (using the "proc" scope), they will only be updated and |
| 3221 | never created. It is highly recommended to always set this to true. |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 3222 | |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 3223 | :see: :js:func:`AppletHTTP.unset_var` |
| 3224 | :see: :js:func:`AppletHTTP.get_var` |
Thierry FOURNIER / OZON.IO | c1edafe | 2016-12-12 16:25:30 +0100 | [diff] [blame] | 3225 | |
| 3226 | .. js:function:: AppletHTTP.unset_var(applet, var) |
| 3227 | |
| 3228 | Unset the variable <var>. |
| 3229 | |
| 3230 | :param class_AppletHTTP applet: An :ref:`applethttp_class` |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 3231 | :param string var: The variable name according with the HAProxy variable |
| 3232 | syntax. |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 3233 | :see: :js:func:`AppletHTTP.set_var` |
| 3234 | :see: :js:func:`AppletHTTP.get_var` |
Thierry FOURNIER / OZON.IO | c1edafe | 2016-12-12 16:25:30 +0100 | [diff] [blame] | 3235 | |
| 3236 | .. js:function:: AppletHTTP.get_var(applet, var) |
| 3237 | |
| 3238 | Returns data stored in the variable <var> converter in Lua type. |
| 3239 | |
| 3240 | :param class_AppletHTTP applet: An :ref:`applethttp_class` |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 3241 | :param string var: The variable name according with the HAProxy variable |
| 3242 | syntax. |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 3243 | :see: :js:func:`AppletHTTP.set_var` |
| 3244 | :see: :js:func:`AppletHTTP.unset_var` |
Thierry FOURNIER / OZON.IO | c1edafe | 2016-12-12 16:25:30 +0100 | [diff] [blame] | 3245 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 3246 | .. _applettcp_class: |
| 3247 | |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 3248 | AppletTCP class |
| 3249 | =============== |
| 3250 | |
| 3251 | .. js:class:: AppletTCP |
| 3252 | |
| 3253 | This class is used with applets that requires the 'tcp' mode. The tcp applet |
| 3254 | can be registered with the *core.register_service()* function. They are used |
| 3255 | for processing a tcp stream like a server in back of HAProxy. |
| 3256 | |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 3257 | .. js:attribute:: AppletTCP.c |
| 3258 | |
| 3259 | :returns: A :ref:`converters_class` |
| 3260 | |
| 3261 | This attribute contains a Converters class object. |
| 3262 | |
| 3263 | .. js:attribute:: AppletTCP.sc |
| 3264 | |
| 3265 | :returns: A :ref:`converters_class` |
| 3266 | |
| 3267 | This attribute contains a Converters class object. The |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 3268 | functions of this object always return a string. |
Thierry FOURNIER | dc59500 | 2015-12-21 11:13:52 +0100 | [diff] [blame] | 3269 | |
| 3270 | .. js:attribute:: AppletTCP.f |
| 3271 | |
| 3272 | :returns: A :ref:`fetches_class` |
| 3273 | |
| 3274 | This attribute contains a Fetches class object. |
| 3275 | |
| 3276 | .. js:attribute:: AppletTCP.sf |
| 3277 | |
| 3278 | :returns: A :ref:`fetches_class` |
| 3279 | |
| 3280 | This attribute contains a Fetches class object. |
| 3281 | |
Thierry FOURNIER | e34a78e | 2015-12-25 01:31:35 +0100 | [diff] [blame] | 3282 | .. js:function:: AppletTCP.getline(applet) |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 3283 | |
| 3284 | This function returns a string containing one line from the stream. If the |
| 3285 | data returned doesn't contains a final '\\n' its assumed than its the last |
| 3286 | available data before the end of stream. |
| 3287 | |
Thierry FOURNIER | e34a78e | 2015-12-25 01:31:35 +0100 | [diff] [blame] | 3288 | :param class_AppletTCP applet: An :ref:`applettcp_class` |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 3289 | :returns: a string. The string can be empty if we reach the end of the stream. |
| 3290 | |
Thierry FOURNIER | e34a78e | 2015-12-25 01:31:35 +0100 | [diff] [blame] | 3291 | .. js:function:: AppletTCP.receive(applet, [size]) |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 3292 | |
| 3293 | Reads data from the TCP stream, according to the specified read *size*. If the |
| 3294 | *size* is missing, the function tries to read all the content of the stream |
| 3295 | until the end. |
| 3296 | |
Thierry FOURNIER | e34a78e | 2015-12-25 01:31:35 +0100 | [diff] [blame] | 3297 | :param class_AppletTCP applet: An :ref:`applettcp_class` |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 3298 | :param integer size: the required read size. |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 3299 | :returns: always return a string, the string can be empty if the connection is |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 3300 | closed. |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 3301 | |
Thierry FOURNIER | e34a78e | 2015-12-25 01:31:35 +0100 | [diff] [blame] | 3302 | .. js:function:: AppletTCP.send(appletmsg) |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 3303 | |
| 3304 | Send the message on the stream. |
| 3305 | |
Thierry FOURNIER | e34a78e | 2015-12-25 01:31:35 +0100 | [diff] [blame] | 3306 | :param class_AppletTCP applet: An :ref:`applettcp_class` |
Thierry FOURNIER | a3bc513 | 2015-09-25 21:43:56 +0200 | [diff] [blame] | 3307 | :param string msg: the message to send. |
| 3308 | |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 3309 | .. js:function:: AppletTCP.get_priv(applet) |
| 3310 | |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 3311 | Return Lua data stored in the current transaction. If no data are stored, |
| 3312 | it returns a nil value. |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 3313 | |
| 3314 | :param class_AppletTCP applet: An :ref:`applettcp_class` |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 3315 | :returns: the opaque data previously stored, or nil if nothing is |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 3316 | available. |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 3317 | :see: :js:func:`AppletTCP.set_priv` |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 3318 | |
| 3319 | .. js:function:: AppletTCP.set_priv(applet, data) |
| 3320 | |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 3321 | Store any data in the current HAProxy transaction. This action replaces the |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 3322 | old stored data. |
| 3323 | |
| 3324 | :param class_AppletTCP applet: An :ref:`applettcp_class` |
| 3325 | :param opaque data: The data which is stored in the transaction. |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 3326 | :see: :js:func:`AppletTCP.get_priv` |
Thierry FOURNIER | 8db004c | 2015-12-25 01:33:18 +0100 | [diff] [blame] | 3327 | |
Tim Duesterhus | 4e172c9 | 2020-05-19 13:49:42 +0200 | [diff] [blame] | 3328 | .. js:function:: AppletTCP.set_var(applet, var, value[, ifexist]) |
Thierry FOURNIER / OZON.IO | c1edafe | 2016-12-12 16:25:30 +0100 | [diff] [blame] | 3329 | |
| 3330 | Converts a Lua type in a HAProxy type and stores it in a variable <var>. |
| 3331 | |
| 3332 | :param class_AppletTCP applet: An :ref:`applettcp_class` |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 3333 | :param string var: The variable name according with the HAProxy variable |
| 3334 | syntax. |
| 3335 | :param type value: The value associated to the variable. The type can be |
| 3336 | string or integer. |
| 3337 | :param boolean ifexist: If this parameter is set to true the variable will |
| 3338 | only be set if it was defined elsewhere (i.e. used within the configuration). |
| 3339 | For global variables (using the "proc" scope), they will only be updated and |
| 3340 | never created. It is highly recommended to always set this to true. |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 3341 | |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 3342 | :see: :js:func:`AppletTCP.unset_var` |
| 3343 | :see: :js:func:`AppletTCP.get_var` |
Thierry FOURNIER / OZON.IO | c1edafe | 2016-12-12 16:25:30 +0100 | [diff] [blame] | 3344 | |
| 3345 | .. js:function:: AppletTCP.unset_var(applet, var) |
| 3346 | |
| 3347 | Unsets the variable <var>. |
| 3348 | |
| 3349 | :param class_AppletTCP applet: An :ref:`applettcp_class` |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 3350 | :param string var: The variable name according with the HAProxy variable |
| 3351 | syntax. |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 3352 | :see: :js:func:`AppletTCP.unset_var` |
| 3353 | :see: :js:func:`AppletTCP.set_var` |
Thierry FOURNIER / OZON.IO | c1edafe | 2016-12-12 16:25:30 +0100 | [diff] [blame] | 3354 | |
| 3355 | .. js:function:: AppletTCP.get_var(applet, var) |
| 3356 | |
| 3357 | Returns data stored in the variable <var> converter in Lua type. |
| 3358 | |
| 3359 | :param class_AppletTCP applet: An :ref:`applettcp_class` |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 3360 | :param string var: The variable name according with the HAProxy variable |
| 3361 | syntax. |
Thierry FOURNIER | 12a865d | 2016-12-14 19:40:37 +0100 | [diff] [blame] | 3362 | :see: :js:func:`AppletTCP.unset_var` |
| 3363 | :see: :js:func:`AppletTCP.set_var` |
Thierry FOURNIER / OZON.IO | c1edafe | 2016-12-12 16:25:30 +0100 | [diff] [blame] | 3364 | |
Adis Nezirovic | 8878f8e | 2018-07-13 12:18:33 +0200 | [diff] [blame] | 3365 | StickTable class |
| 3366 | ================ |
| 3367 | |
| 3368 | .. js:class:: StickTable |
| 3369 | |
| 3370 | **context**: task, action, sample-fetch |
| 3371 | |
| 3372 | This class can be used to access the HAProxy stick tables from Lua. |
| 3373 | |
| 3374 | .. js:function:: StickTable.info() |
| 3375 | |
| 3376 | Returns stick table attributes as a Lua table. See HAProxy documentation for |
Ilya Shipitsin | 2272d8a | 2020-12-21 01:22:40 +0500 | [diff] [blame] | 3377 | "stick-table" for canonical info, or check out example below. |
Adis Nezirovic | 8878f8e | 2018-07-13 12:18:33 +0200 | [diff] [blame] | 3378 | |
| 3379 | :returns: Lua table |
| 3380 | |
| 3381 | Assume our table has IPv4 key and gpc0 and conn_rate "columns": |
| 3382 | |
| 3383 | .. code-block:: lua |
| 3384 | |
| 3385 | { |
| 3386 | expire=<int>, # Value in ms |
| 3387 | size=<int>, # Maximum table size |
| 3388 | used=<int>, # Actual number of entries in table |
| 3389 | data={ # Data columns, with types as key, and periods as values |
| 3390 | (-1 if type is not rate counter) |
| 3391 | conn_rate=<int>, |
| 3392 | gpc0=-1 |
| 3393 | }, |
| 3394 | length=<int>, # max string length for string table keys, key length |
| 3395 | # otherwise |
| 3396 | nopurge=<boolean>, # purge oldest entries when table is full |
| 3397 | type="ip" # can be "ip", "ipv6", "integer", "string", "binary" |
| 3398 | } |
| 3399 | |
| 3400 | .. js:function:: StickTable.lookup(key) |
| 3401 | |
| 3402 | Returns stick table entry for given <key> |
| 3403 | |
| 3404 | :param string key: Stick table key (IP addresses and strings are supported) |
| 3405 | :returns: Lua table |
| 3406 | |
| 3407 | .. js:function:: StickTable.dump([filter]) |
| 3408 | |
| 3409 | Returns all entries in stick table. An optional filter can be used |
| 3410 | to extract entries with specific data values. Filter is a table with valid |
| 3411 | comparison operators as keys followed by data type name and value pairs. |
| 3412 | Check out the HAProxy docs for "show table" for more details. For the |
| 3413 | reference, the supported operators are: |
Aurelien DARRAGON | 21f7ebb | 2023-03-13 19:49:31 +0100 | [diff] [blame] | 3414 | |
Adis Nezirovic | 8878f8e | 2018-07-13 12:18:33 +0200 | [diff] [blame] | 3415 | "eq", "ne", "le", "lt", "ge", "gt" |
| 3416 | |
| 3417 | For large tables, execution of this function can take a long time (for |
| 3418 | HAProxy standards). That's also true when filter is used, so take care and |
| 3419 | measure the impact. |
| 3420 | |
| 3421 | :param table filter: Stick table filter |
| 3422 | :returns: Stick table entries (table) |
| 3423 | |
| 3424 | See below for example filter, which contains 4 entries (or comparisons). |
| 3425 | (Maximum number of filter entries is 4, defined in the source code) |
| 3426 | |
| 3427 | .. code-block:: lua |
| 3428 | |
| 3429 | local filter = { |
| 3430 | {"gpc0", "gt", 30}, {"gpc1", "gt", 20}}, {"conn_rate", "le", 10} |
| 3431 | } |
| 3432 | |
Christopher Faulet | 0f3c890 | 2020-01-31 18:57:12 +0100 | [diff] [blame] | 3433 | .. _action_class: |
| 3434 | |
| 3435 | Action class |
| 3436 | ============= |
| 3437 | |
| 3438 | .. js:class:: Act |
| 3439 | |
| 3440 | **context**: action |
| 3441 | |
| 3442 | This class contains all return codes an action may return. It is the lua |
| 3443 | equivalent to HAProxy "ACT_RET_*" code. |
| 3444 | |
| 3445 | .. code-block:: lua |
| 3446 | |
| 3447 | core.register_action("deny", { "http-req" }, function (txn) |
| 3448 | return act.DENY |
| 3449 | end) |
| 3450 | .. |
| 3451 | .. js:attribute:: act.CONTINUE |
| 3452 | |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 3453 | This attribute is an integer (0). It instructs HAProxy to continue the |
| 3454 | current ruleset processing on the message. It is the default return code |
| 3455 | for a lua action. |
Christopher Faulet | 0f3c890 | 2020-01-31 18:57:12 +0100 | [diff] [blame] | 3456 | |
| 3457 | :returns: integer |
| 3458 | |
| 3459 | .. js:attribute:: act.STOP |
| 3460 | |
| 3461 | This attribute is an integer (1). It instructs HAProxy to stop the current |
| 3462 | ruleset processing on the message. |
| 3463 | |
| 3464 | .. js:attribute:: act.YIELD |
| 3465 | |
| 3466 | This attribute is an integer (2). It instructs HAProxy to temporarily pause |
| 3467 | the message processing. It will be resumed later on the same rule. The |
| 3468 | corresponding lua script is re-executed for the start. |
| 3469 | |
| 3470 | .. js:attribute:: act.ERROR |
| 3471 | |
| 3472 | This attribute is an integer (3). It triggers an internal errors The message |
| 3473 | processing is stopped and the transaction is terminated. For HTTP streams, an |
| 3474 | HTTP 500 error is returned to the client. |
| 3475 | |
| 3476 | :returns: integer |
| 3477 | |
| 3478 | .. js:attribute:: act.DONE |
| 3479 | |
| 3480 | This attribute is an integer (4). It instructs HAProxy to stop the message |
| 3481 | processing. |
| 3482 | |
| 3483 | :returns: integer |
| 3484 | |
| 3485 | .. js:attribute:: act.DENY |
| 3486 | |
| 3487 | This attribute is an integer (5). It denies the current message. The message |
| 3488 | processing is stopped and the transaction is terminated. For HTTP streams, an |
| 3489 | HTTP 403 error is returned to the client if the deny is returned during the |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 3490 | request analysis. During the response analysis, a HTTP 502 error is returned |
Christopher Faulet | 0f3c890 | 2020-01-31 18:57:12 +0100 | [diff] [blame] | 3491 | and the server response is discarded. |
| 3492 | |
| 3493 | :returns: integer |
| 3494 | |
| 3495 | .. js:attribute:: act.ABORT |
| 3496 | |
| 3497 | This attribute is an integer (6). It aborts the current message. The message |
| 3498 | processing is stopped and the transaction is terminated. For HTTP streams, |
Willy Tarreau | 714f345 | 2021-05-09 06:47:26 +0200 | [diff] [blame] | 3499 | HAProxy assumes a response was already sent to the client. From the Lua |
Christopher Faulet | 0f3c890 | 2020-01-31 18:57:12 +0100 | [diff] [blame] | 3500 | actions point of view, when this code is used, the transaction is terminated |
| 3501 | with no reply. |
| 3502 | |
| 3503 | :returns: integer |
| 3504 | |
| 3505 | .. js:attribute:: act.INVALID |
| 3506 | |
| 3507 | This attribute is an integer (7). It triggers an internal errors. The message |
| 3508 | processing is stopped and the transaction is terminated. For HTTP streams, an |
| 3509 | HTTP 400 error is returned to the client if the error is returned during the |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 3510 | request analysis. During the response analysis, a HTTP 502 error is returned |
Christopher Faulet | 0f3c890 | 2020-01-31 18:57:12 +0100 | [diff] [blame] | 3511 | and the server response is discarded. |
| 3512 | |
| 3513 | :returns: integer |
Adis Nezirovic | 8878f8e | 2018-07-13 12:18:33 +0200 | [diff] [blame] | 3514 | |
Christopher Faulet | 2c2c2e3 | 2020-01-31 19:07:52 +0100 | [diff] [blame] | 3515 | .. js:function:: act:wake_time(milliseconds) |
| 3516 | |
| 3517 | **context**: action |
| 3518 | |
| 3519 | Set the script pause timeout to the specified time, defined in |
| 3520 | milliseconds. |
| 3521 | |
| 3522 | :param integer milliseconds: the required milliseconds. |
| 3523 | |
| 3524 | This function may be used when a lua action returns `act.YIELD`, to force its |
| 3525 | wake-up at most after the specified number of milliseconds. |
| 3526 | |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 3527 | .. _filter_class: |
| 3528 | |
| 3529 | Filter class |
| 3530 | ============= |
| 3531 | |
| 3532 | .. js:class:: filter |
| 3533 | |
| 3534 | **context**: filter |
| 3535 | |
| 3536 | This class contains return codes some filter callback functions may return. It |
| 3537 | also contains configuration flags and some helper functions. To understand how |
| 3538 | the filter API works, see `doc/internal/filters.txt` documentation. |
| 3539 | |
| 3540 | .. js:attribute:: filter.CONTINUE |
| 3541 | |
| 3542 | This attribute is an integer (1). It may be returned by some filter callback |
| 3543 | functions to instruct this filtering step is finished for this filter. |
| 3544 | |
| 3545 | .. js:attribute:: filter.WAIT |
| 3546 | |
| 3547 | This attribute is an integer (0). It may be returned by some filter callback |
| 3548 | functions to instruct the filtering must be paused, waiting for more data or |
| 3549 | for an external event depending on this filter. |
| 3550 | |
| 3551 | .. js:attribute:: filter.ERROR |
| 3552 | |
| 3553 | This attribute is an integer (-1). It may be returned by some filter callback |
| 3554 | functions to trigger an error. |
| 3555 | |
| 3556 | .. js:attribute:: filter.FLT_CFG_FL_HTX |
| 3557 | |
| 3558 | This attribute is a flag corresponding to the filter flag FLT_CFG_FL_HTX. When |
| 3559 | it is set for a filter, it means the filter is able to filter HTTP streams. |
| 3560 | |
| 3561 | .. js:function:: filter.register_data_filter(chn) |
| 3562 | |
| 3563 | **context**: filter |
| 3564 | |
| 3565 | Enable the data filtering on the channel **chn** for the current filter. It |
Ilya Shipitsin | ff0f278 | 2021-08-22 22:18:07 +0500 | [diff] [blame] | 3566 | may be called at any time from any callback functions proceeding the data |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 3567 | analysis. |
| 3568 | |
| 3569 | :param class_Channel chn: A :ref:`channel_class`. |
| 3570 | |
| 3571 | .. js:function:: filter.unregister_data_filter(chn) |
| 3572 | |
| 3573 | **context**: filter |
| 3574 | |
| 3575 | Disable the data filtering on the channel **chn** for the current filter. It |
| 3576 | may be called at any time from any callback functions. |
| 3577 | |
| 3578 | :param class_Channel chn: A :ref:`channel_class`. |
| 3579 | |
| 3580 | .. js:function:: filter.wake_time(milliseconds) |
| 3581 | |
| 3582 | **context**: filter |
| 3583 | |
| 3584 | Set the script pause timeout to the specified time, defined in |
| 3585 | milliseconds. |
| 3586 | |
| 3587 | :param integer milliseconds: the required milliseconds. |
| 3588 | |
| 3589 | This function may be used from any lua filter callback function to force its |
| 3590 | wake-up at most after the specified number of milliseconds. Especially, when |
| 3591 | `filter.CONTINUE` is returned. |
| 3592 | |
| 3593 | |
| 3594 | A filters is declared using :js:func:`core.register_filter()` function. The |
| 3595 | provided class will be used to instantiate filters. It may define following |
| 3596 | attributes: |
| 3597 | |
| 3598 | * id: The filter identifier. It is a string that identifies the filter and is |
| 3599 | optional. |
| 3600 | |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 3601 | * flags: The filter flags. Only :js:attr:`filter.FLT_CFG_FL_HTX` may be set |
| 3602 | for now. |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 3603 | |
| 3604 | Such filter class must also define all required callback functions in the |
| 3605 | following list. Note that :js:func:`Filter.new()` must be defined otherwise the |
Ilya Shipitsin | ff0f278 | 2021-08-22 22:18:07 +0500 | [diff] [blame] | 3606 | filter is ignored. Others are optional. |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 3607 | |
| 3608 | * .. js:function:: FILTER.new() |
| 3609 | |
| 3610 | Called to instantiate a new filter. This function must be defined. |
| 3611 | |
| 3612 | :returns: a Lua object that will be used as filter instance for the current |
| 3613 | stream. |
| 3614 | |
| 3615 | * .. js:function:: FILTER.start_analyze(flt, txn, chn) |
| 3616 | |
| 3617 | Called when the analysis starts on the channel **chn**. |
| 3618 | |
| 3619 | * .. js:function:: FILTER.end_analyze(flt, txn, chn) |
| 3620 | |
| 3621 | Called when the analysis ends on the channel **chn**. |
| 3622 | |
| 3623 | * .. js:function:: FILTER.http_headers(flt, txn, http_msg) |
| 3624 | |
| 3625 | Called just before the HTTP payload analysis and after any processing on the |
| 3626 | HTTP message **http_msg**. This callback functions is only called for HTTP |
| 3627 | streams. |
| 3628 | |
| 3629 | * .. js:function:: FILTER.http_payload(flt, txn, http_msg) |
| 3630 | |
| 3631 | Called during the HTTP payload analysis on the HTTP message **http_msg**. This |
| 3632 | callback functions is only called for HTTP streams. |
| 3633 | |
| 3634 | * .. js:function:: FILTER.http_end(flt, txn, http_msg) |
| 3635 | |
| 3636 | Called after the HTTP payload analysis on the HTTP message **http_msg**. This |
| 3637 | callback functions is only called for HTTP streams. |
| 3638 | |
| 3639 | * .. js:function:: FILTER.tcp_payload(flt, txn, chn) |
| 3640 | |
| 3641 | Called during the TCP payload analysis on the channel **chn**. |
| 3642 | |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 3643 | Here is a full example: |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 3644 | |
| 3645 | .. code-block:: lua |
| 3646 | |
| 3647 | Trace = {} |
| 3648 | Trace.id = "Lua trace filter" |
| 3649 | Trace.flags = filter.FLT_CFG_FL_HTX; |
| 3650 | Trace.__index = Trace |
| 3651 | |
| 3652 | function Trace:new() |
| 3653 | local trace = {} |
| 3654 | setmetatable(trace, Trace) |
| 3655 | trace.req_len = 0 |
| 3656 | trace.res_len = 0 |
| 3657 | return trace |
| 3658 | end |
| 3659 | |
| 3660 | function Trace:start_analyze(txn, chn) |
| 3661 | if chn:is_resp() then |
| 3662 | print("Start response analysis") |
| 3663 | else |
| 3664 | print("Start request analysis") |
| 3665 | end |
| 3666 | filter.register_data_filter(self, chn) |
| 3667 | end |
| 3668 | |
| 3669 | function Trace:end_analyze(txn, chn) |
| 3670 | if chn:is_resp() then |
| 3671 | print("End response analysis: "..self.res_len.." bytes filtered") |
| 3672 | else |
| 3673 | print("End request analysis: "..self.req_len.." bytes filtered") |
| 3674 | end |
| 3675 | end |
| 3676 | |
| 3677 | function Trace:http_headers(txn, http_msg) |
| 3678 | stline = http_msg:get_stline() |
| 3679 | if http_msg.channel:is_resp() then |
| 3680 | print("response:") |
| 3681 | print(stline.version.." "..stline.code.." "..stline.reason) |
| 3682 | else |
| 3683 | print("request:") |
| 3684 | print(stline.method.." "..stline.uri.." "..stline.version) |
| 3685 | end |
| 3686 | |
| 3687 | for n, hdrs in pairs(http_msg:get_headers()) do |
| 3688 | for i,v in pairs(hdrs) do |
| 3689 | print(n..": "..v) |
| 3690 | end |
| 3691 | end |
| 3692 | return filter.CONTINUE |
| 3693 | end |
| 3694 | |
| 3695 | function Trace:http_payload(txn, http_msg) |
| 3696 | body = http_msg:body(-20000) |
| 3697 | if http_msg.channel:is_resp() then |
| 3698 | self.res_len = self.res_len + body:len() |
| 3699 | else |
| 3700 | self.req_len = self.req_len + body:len() |
| 3701 | end |
| 3702 | end |
| 3703 | |
| 3704 | core.register_filter("trace", Trace, function(trace, args) |
| 3705 | return trace |
| 3706 | end) |
| 3707 | |
| 3708 | .. |
| 3709 | |
| 3710 | .. _httpmessage_class: |
| 3711 | |
| 3712 | HTTPMessage class |
| 3713 | =================== |
| 3714 | |
| 3715 | .. js:class:: HTTPMessage |
| 3716 | |
| 3717 | **context**: filter |
| 3718 | |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 3719 | This class contains all functions to manipulate a HTTP message. For now, this |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 3720 | class is only available from a filter context. |
| 3721 | |
| 3722 | .. js:function:: HTTPMessage.add_header(http_msg, name, value) |
| 3723 | |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 3724 | Appends a HTTP header field in the HTTP message **http_msg** whose name is |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 3725 | specified in **name** and whose value is defined in **value**. |
| 3726 | |
| 3727 | :param class_httpmessage http_msg: The manipulated HTTP message. |
| 3728 | :param string name: The header name. |
| 3729 | :param string value: The header value. |
| 3730 | |
| 3731 | .. js:function:: HTTPMessage.append(http_msg, string) |
| 3732 | |
| 3733 | This function copies the string **string** at the end of incoming data of the |
| 3734 | HTTP message **http_msg**. The function returns the copied length on success |
| 3735 | or -1 if data cannot be copied. |
| 3736 | |
| 3737 | Same that :js:func:`HTTPMessage.insert(http_msg, string, http_msg:input())`. |
| 3738 | |
| 3739 | :param class_httpmessage http_msg: The manipulated HTTP message. |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 3740 | :param string string: The data to copy at the end of incoming data. |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 3741 | :returns: an integer containing the amount of bytes copied or -1. |
| 3742 | |
| 3743 | .. js:function:: HTTPMessage.body(http_msgl[, offset[, length]]) |
| 3744 | |
| 3745 | This function returns **length** bytes of incoming data from the HTTP message |
| 3746 | **http_msg**, starting at the offset **offset**. The data are not removed from |
| 3747 | the buffer. |
| 3748 | |
| 3749 | By default, if no length is provided, all incoming data found, starting at the |
| 3750 | given offset, are returned. If **length** is set to -1, the function tries to |
| 3751 | retrieve a maximum of data. Because it is called in the filter context, it |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 3752 | never yield. Not providing an offset is the same as setting it to 0. A |
Ilya Shipitsin | ff0f278 | 2021-08-22 22:18:07 +0500 | [diff] [blame] | 3753 | positive offset is relative to the beginning of incoming data of the |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 3754 | http_message buffer while negative offset is relative to their end. |
| 3755 | |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 3756 | If there is no incoming data and the HTTP message can't receive more data, |
| 3757 | a 'nil' value is returned. |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 3758 | |
| 3759 | :param class_httpmessage http_msg: The manipulated HTTP message. |
| 3760 | :param integer offset: *optional* The offset in incoming data to start to get |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 3761 | data. 0 by default. May be negative to be relative to the end of incoming |
| 3762 | data. |
| 3763 | :param integer length: *optional* The expected length of data to retrieve. |
| 3764 | All incoming data by default. May be set to -1 to get a maximum of data. |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 3765 | :returns: a string containing the data found or nil. |
| 3766 | |
| 3767 | .. js:function:: HTTPMessage.eom(http_msg) |
| 3768 | |
| 3769 | This function returns true if the end of message is reached for the HTTP |
| 3770 | message **http_msg**. |
| 3771 | |
| 3772 | :param class_httpmessage http_msg: The manipulated HTTP message. |
| 3773 | :returns: an integer containing the amount of available bytes. |
| 3774 | |
| 3775 | .. js:function:: HTTPMessage.del_header(http_msg, name) |
| 3776 | |
| 3777 | Removes all HTTP header fields in the HTTP message **http_msg** whose name is |
| 3778 | specified in **name**. |
| 3779 | |
| 3780 | :param class_httpmessage http_msg: The manipulated http message. |
| 3781 | :param string name: The header name. |
| 3782 | |
| 3783 | .. js:function:: HTTPMessage.get_headers(http_msg) |
| 3784 | |
| 3785 | Returns a table containing all the headers of the HTTP message **http_msg**. |
| 3786 | |
| 3787 | :param class_httpmessage http_msg: The manipulated http message. |
| 3788 | :returns: table of headers. |
| 3789 | |
| 3790 | This is the form of the returned table: |
| 3791 | |
| 3792 | .. code-block:: lua |
| 3793 | |
| 3794 | http_msg:get_headers()['<header-name>'][<header-index>] = "<header-value>" |
| 3795 | |
| 3796 | local hdr = http_msg:get_headers() |
| 3797 | hdr["host"][0] = "www.test.com" |
| 3798 | hdr["accept"][0] = "audio/basic q=1" |
| 3799 | hdr["accept"][1] = "audio/*, q=0.2" |
| 3800 | hdr["accept"][2] = "*.*, q=0.1" |
| 3801 | .. |
| 3802 | |
| 3803 | .. js:function:: HTTPMessage.get_stline(http_msg) |
| 3804 | |
| 3805 | Returns a table containing the start-line of the HTTP message **http_msg**. |
| 3806 | |
| 3807 | :param class_httpmessage http_msg: The manipulated http message. |
| 3808 | :returns: the start-line. |
| 3809 | |
| 3810 | This is the form of the returned table: |
| 3811 | |
| 3812 | .. code-block:: lua |
| 3813 | |
| 3814 | -- for the request : |
| 3815 | {"method" = string, "uri" = string, "version" = string} |
| 3816 | |
| 3817 | -- for the response: |
| 3818 | {"version" = string, "code" = string, "reason" = string} |
| 3819 | .. |
| 3820 | |
| 3821 | .. js:function:: HTTPMessage.forward(http_msg, length) |
| 3822 | |
| 3823 | This function forwards **length** bytes of data from the HTTP message |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 3824 | **http_msg**. Because it is called in the filter context, it never yields. Only |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 3825 | available incoming data may be forwarded, event if the requested length |
| 3826 | exceeds the available amount of incoming data. It returns the amount of data |
| 3827 | forwarded. |
| 3828 | |
| 3829 | :param class_httpmessage http_msg: The manipulated HTTP message. |
| 3830 | :param integer int: The amount of data to forward. |
| 3831 | |
| 3832 | .. js:function:: HTTPMessage.input(http_msg) |
| 3833 | |
| 3834 | This function returns the length of incoming data in the HTTP message |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 3835 | **http_msg** from the filter point of view. |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 3836 | |
| 3837 | :param class_httpmessage http_msg: The manipulated HTTP message. |
| 3838 | :returns: an integer containing the amount of available bytes. |
| 3839 | |
| 3840 | .. js:function:: HTTPMessage.insert(http_msg, string[, offset]) |
| 3841 | |
| 3842 | This function copies the string **string** at the offset **offset** in |
| 3843 | incoming data of the HTTP message **http_msg**. The function returns the |
| 3844 | copied length on success or -1 if data cannot be copied. |
| 3845 | |
| 3846 | By default, if no offset is provided, the string is copied in front of |
Ilya Shipitsin | ff0f278 | 2021-08-22 22:18:07 +0500 | [diff] [blame] | 3847 | incoming data. A positive offset is relative to the beginning of incoming data |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 3848 | of the HTTP message while negative offset is relative to their end. |
| 3849 | |
| 3850 | :param class_httpmessage http_msg: The manipulated HTTP message. |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 3851 | :param string string: The data to copy into incoming data. |
| 3852 | :param integer offset: *optional* The offset in incoming data where to copy |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 3853 | data. 0 by default. May be negative to be relative to the end of incoming |
| 3854 | data. |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 3855 | :returns: an integer containing the amount of bytes copied or -1. |
| 3856 | |
| 3857 | .. js:function:: HTTPMessage.is_full(http_msg) |
| 3858 | |
| 3859 | This function returns true if the HTTP message **http_msg** is full. |
| 3860 | |
| 3861 | :param class_httpmessage http_msg: The manipulated HTTP message. |
| 3862 | :returns: a boolean |
| 3863 | |
| 3864 | .. js:function:: HTTPMessage.is_resp(http_msg) |
| 3865 | |
| 3866 | This function returns true if the HTTP message **http_msg** is the response |
| 3867 | one. |
| 3868 | |
| 3869 | :param class_httpmessage http_msg: The manipulated HTTP message. |
| 3870 | :returns: a boolean |
| 3871 | |
| 3872 | .. js:function:: HTTPMessage.may_recv(http_msg) |
| 3873 | |
| 3874 | This function returns true if the HTTP message **http_msg** may still receive |
| 3875 | data. |
| 3876 | |
| 3877 | :param class_httpmessage http_msg: The manipulated HTTP message. |
| 3878 | :returns: a boolean |
| 3879 | |
| 3880 | .. js:function:: HTTPMessage.output(http_msg) |
| 3881 | |
| 3882 | This function returns the length of outgoing data of the HTTP message |
| 3883 | **http_msg**. |
| 3884 | |
| 3885 | :param class_httpmessage http_msg: The manipulated HTTP message. |
| 3886 | :returns: an integer containing the amount of available bytes. |
| 3887 | |
| 3888 | .. js:function:: HTTPMessage.prepend(http_msg, string) |
| 3889 | |
| 3890 | This function copies the string **string** in front of incoming data of the |
| 3891 | HTTP message **http_msg**. The function returns the copied length on success |
| 3892 | or -1 if data cannot be copied. |
| 3893 | |
| 3894 | Same that :js:func:`HTTPMessage.insert(http_msg, string, 0)`. |
| 3895 | |
| 3896 | :param class_httpmessage http_msg: The manipulated HTTP message. |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 3897 | :param string string: The data to copy in front of incoming data. |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 3898 | :returns: an integer containing the amount of bytes copied or -1. |
| 3899 | |
| 3900 | .. js:function:: HTTPMessage.remove(http_msg[, offset[, length]]) |
| 3901 | |
| 3902 | This function removes **length** bytes of incoming data of the HTTP message |
| 3903 | **http_msg**, starting at offset **offset**. This function returns number of |
| 3904 | bytes removed on success. |
| 3905 | |
| 3906 | By default, if no length is provided, all incoming data, starting at the given |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 3907 | offset, are removed. Not providing an offset is the same that setting it |
Ilya Shipitsin | ff0f278 | 2021-08-22 22:18:07 +0500 | [diff] [blame] | 3908 | to 0. A positive offset is relative to the beginning of incoming data of the |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 3909 | HTTP message while negative offset is relative to the end. |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 3910 | |
| 3911 | :param class_httpmessage http_msg: The manipulated HTTP message. |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 3912 | :param integer offset: *optional* The offset in incoming data where to start |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 3913 | to remove data. 0 by default. May be negative to be relative to the end of |
| 3914 | incoming data. |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 3915 | :param integer length: *optional* The length of data to remove. All incoming |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 3916 | data by default. |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 3917 | :returns: an integer containing the amount of bytes removed. |
| 3918 | |
| 3919 | .. js:function:: HTTPMessage.rep_header(http_msg, name, regex, replace) |
| 3920 | |
| 3921 | Matches the regular expression in all occurrences of header field **name** |
| 3922 | according to regex **regex**, and replaces them with the string **replace**. |
| 3923 | The replacement value can contain back references like \1, \2, ... This |
| 3924 | function acts on whole header lines, regardless of the number of values they |
| 3925 | may contain. |
| 3926 | |
| 3927 | :param class_httpmessage http_msg: The manipulated HTTP message. |
| 3928 | :param string name: The header name. |
| 3929 | :param string regex: The match regular expression. |
| 3930 | :param string replace: The replacement value. |
| 3931 | |
| 3932 | .. js:function:: HTTPMessage.rep_value(http_msg, name, regex, replace) |
| 3933 | |
| 3934 | Matches the regular expression on every comma-delimited value of header field |
| 3935 | **name** according to regex **regex**, and replaces them with the string |
| 3936 | **replace**. The replacement value can contain back references like \1, \2, |
| 3937 | ... |
| 3938 | |
| 3939 | :param class_httpmessage http_msg: The manipulated HTTP message. |
| 3940 | :param string name: The header name. |
| 3941 | :param string regex: The match regular expression. |
| 3942 | :param string replace: The replacement value. |
| 3943 | |
| 3944 | .. js:function:: HTTPMessage.send(http_msg, string) |
| 3945 | |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 3946 | This function requires immediate send of the string **string**. It means the |
Ilya Shipitsin | ff0f278 | 2021-08-22 22:18:07 +0500 | [diff] [blame] | 3947 | string is copied at the beginning of incoming data of the HTTP message |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 3948 | **http_msg** and immediately forwarded. Because it is called in the filter |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 3949 | context, it never yields. |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 3950 | |
| 3951 | :param class_httpmessage http_msg: The manipulated HTTP message. |
| 3952 | :param string string: The data to send. |
| 3953 | :returns: an integer containing the amount of bytes copied or -1. |
| 3954 | |
| 3955 | .. js:function:: HTTPMessage.set(http_msg, string[, offset[, length]]) |
| 3956 | |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 3957 | This function replaces **length** bytes of incoming data of the HTTP message |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 3958 | **http_msg**, starting at offset **offset**, by the string **string**. The |
| 3959 | function returns the copied length on success or -1 if data cannot be copied. |
| 3960 | |
| 3961 | By default, if no length is provided, all incoming data, starting at the given |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 3962 | offset, are replaced. Not providing an offset is the same as setting it |
Ilya Shipitsin | ff0f278 | 2021-08-22 22:18:07 +0500 | [diff] [blame] | 3963 | to 0. A positive offset is relative to the beginning of incoming data of the |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 3964 | HTTP message while negative offset is relative to the end. |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 3965 | |
| 3966 | :param class_httpmessage http_msg: The manipulated HTTP message. |
Aurelien DARRAGON | 53901f4 | 2022-10-13 19:49:42 +0200 | [diff] [blame] | 3967 | :param string string: The data to copy into incoming data. |
| 3968 | :param integer offset: *optional* The offset in incoming data where to start |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 3969 | the data replacement. 0 by default. May be negative to be relative to the |
| 3970 | end of incoming data. |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 3971 | :param integer length: *optional* The length of data to replace. All incoming |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 3972 | data by default. |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 3973 | :returns: an integer containing the amount of bytes copied or -1. |
| 3974 | |
| 3975 | .. js:function:: HTTPMessage.set_eom(http_msg) |
| 3976 | |
| 3977 | This function set the end of message for the HTTP message **http_msg**. |
| 3978 | |
| 3979 | :param class_httpmessage http_msg: The manipulated HTTP message. |
| 3980 | |
| 3981 | .. js:function:: HTTPMessage.set_header(http_msg, name, value) |
| 3982 | |
| 3983 | This variable replace all occurrence of all header matching the name **name**, |
| 3984 | by only one containing the value **value**. |
| 3985 | |
| 3986 | :param class_httpmessage http_msg: The manipulated HTTP message. |
| 3987 | :param string name: The header name. |
| 3988 | :param string value: The header value. |
| 3989 | |
| 3990 | This function does the same work as the following code: |
| 3991 | |
| 3992 | .. code-block:: lua |
| 3993 | |
| 3994 | http_msg:del_header("header") |
| 3995 | http_msg:add_header("header", "value") |
| 3996 | .. |
| 3997 | |
| 3998 | .. js:function:: HTTPMessage.set_method(http_msg, method) |
| 3999 | |
| 4000 | Rewrites the request method with the string **method**. The HTTP message |
| 4001 | **http_msg** must be the request. |
| 4002 | |
| 4003 | :param class_httpmessage http_msg: The manipulated HTTP message. |
| 4004 | :param string method: The new method. |
| 4005 | |
| 4006 | .. js:function:: HTTPMessage.set_path(http_msg, path) |
| 4007 | |
| 4008 | Rewrites the request path with the string **path**. The HTTP message |
| 4009 | **http_msg** must be the request. |
| 4010 | |
| 4011 | :param class_httpmessage http_msg: The manipulated HTTP message. |
| 4012 | :param string method: The new method. |
| 4013 | |
| 4014 | .. js:function:: HTTPMessage.set_query(http_msg, query) |
| 4015 | |
| 4016 | Rewrites the request's query string which appears after the first question |
| 4017 | mark ("?") with the string **query**. The HTTP message **http_msg** must be |
| 4018 | the request. |
| 4019 | |
| 4020 | :param class_httpmessage http_msg: The manipulated HTTP message. |
| 4021 | :param string query: The new query. |
| 4022 | |
| 4023 | .. js:function:: HTTPMessage.set_status(http_msg, status[, reason]) |
| 4024 | |
Ilya Shipitsin | ff0f278 | 2021-08-22 22:18:07 +0500 | [diff] [blame] | 4025 | Rewrites the response status code with the integer **code** and optional the |
Christopher Faulet | 5a2c661 | 2021-08-15 20:35:25 +0200 | [diff] [blame] | 4026 | reason **reason**. If no custom reason is provided, it will be generated from |
| 4027 | the status. The HTTP message **http_msg** must be the response. |
| 4028 | |
| 4029 | :param class_httpmessage http_msg: The manipulated HTTP message. |
| 4030 | :param integer status: The new response status code. |
| 4031 | :param string reason: The new response reason (optional). |
| 4032 | |
| 4033 | .. js:function:: HTTPMessage.set_uri(http_msg, uri) |
| 4034 | |
| 4035 | Rewrites the request URI with the string **uri**. The HTTP message |
| 4036 | **http_msg** must be the request. |
| 4037 | |
| 4038 | :param class_httpmessage http_msg: The manipulated HTTP message. |
| 4039 | :param string uri: The new uri. |
| 4040 | |
| 4041 | .. js:function:: HTTPMessage.unset_eom(http_msg) |
| 4042 | |
| 4043 | This function remove the end of message for the HTTP message **http_msg**. |
| 4044 | |
| 4045 | :param class_httpmessage http_msg: The manipulated HTTP message. |
| 4046 | |
William Lallemand | 10cea5c | 2022-03-30 16:02:43 +0200 | [diff] [blame] | 4047 | .. _CertCache_class: |
| 4048 | |
| 4049 | CertCache class |
| 4050 | ================ |
| 4051 | |
| 4052 | .. js:class:: CertCache |
| 4053 | |
| 4054 | This class allows to update an SSL certificate file in the memory of the |
| 4055 | current HAProxy process. It will do the same as "set ssl cert" + "commit ssl |
| 4056 | cert" over the HAProxy CLI. |
| 4057 | |
| 4058 | .. js:function:: CertCache.set(certificate) |
| 4059 | |
| 4060 | This function updates a certificate in memory. |
| 4061 | |
| 4062 | :param table certificate: A table containing the fields to update. |
| 4063 | :param string certificate.filename: The mandatory filename of the certificate |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 4064 | to update, it must already exist in memory. |
William Lallemand | 10cea5c | 2022-03-30 16:02:43 +0200 | [diff] [blame] | 4065 | :param string certificate.crt: A certificate in the PEM format. It can also |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 4066 | contain a private key. |
William Lallemand | 10cea5c | 2022-03-30 16:02:43 +0200 | [diff] [blame] | 4067 | :param string certificate.key: A private key in the PEM format. |
| 4068 | :param string certificate.ocsp: An OCSP response in base64. (cf management.txt) |
| 4069 | :param string certificate.issuer: The certificate of the OCSP issuer. |
| 4070 | :param string certificate.sctl: An SCTL file. |
| 4071 | |
| 4072 | .. code-block:: lua |
| 4073 | |
| 4074 | CertCache.set{filename="certs/localhost9994.pem.rsa", crt=crt} |
| 4075 | |
| 4076 | |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 4077 | External Lua libraries |
| 4078 | ====================== |
| 4079 | |
| 4080 | A lot of useful lua libraries can be found here: |
| 4081 | |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 4082 | * Lua toolbox has been superseded by |
| 4083 | `https://luarocks.org/ <https://luarocks.org/>`_ |
| 4084 | |
| 4085 | The old lua toolbox source code is still available here |
| 4086 | `https://github.com/catwell/lua-toolbox <https://github.com/catwell/lua-toolbox>`_ (DEPRECATED) |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 4087 | |
Ilya Shipitsin | 2075ca8 | 2020-03-06 23:22:22 +0500 | [diff] [blame] | 4088 | Redis client library: |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 4089 | |
| 4090 | * `https://github.com/nrk/redis-lua <https://github.com/nrk/redis-lua>`_ |
| 4091 | |
Aurelien DARRAGON | 2dac67a | 2023-04-20 12:16:17 +0200 | [diff] [blame] | 4092 | This is an example about the usage of the Redis library within HAProxy. |
| 4093 | Note that each call to any function of this library can throw an error if |
| 4094 | the socket connection fails. |
Thierry FOURNIER | 17bd152 | 2015-03-11 20:31:00 +0100 | [diff] [blame] | 4095 | |
| 4096 | .. code-block:: lua |
| 4097 | |
| 4098 | -- load the redis library |
| 4099 | local redis = require("redis"); |
| 4100 | |
| 4101 | function do_something(txn) |
| 4102 | |
| 4103 | -- create and connect new tcp socket |
| 4104 | local tcp = core.tcp(); |
| 4105 | tcp:settimeout(1); |
| 4106 | tcp:connect("127.0.0.1", 6379); |
| 4107 | |
| 4108 | -- use the redis library with this new socket |
| 4109 | local client = redis.connect({socket=tcp}); |
| 4110 | client:ping(); |
| 4111 | |
| 4112 | end |
| 4113 | |
| 4114 | OpenSSL: |
| 4115 | |
| 4116 | * `http://mkottman.github.io/luacrypto/index.html |
| 4117 | <http://mkottman.github.io/luacrypto/index.html>`_ |
| 4118 | |
| 4119 | * `https://github.com/brunoos/luasec/wiki |
| 4120 | <https://github.com/brunoos/luasec/wiki>`_ |