blob: e67e263d50377a618a356f1f892314fb9b743094 [file] [log] [blame]
Willy Tarreau8a8d83b2015-04-13 13:24:54 +02001/*
2 * include/types/applet.h
3 * This file describes the applet struct and associated constants.
4 *
5 * Copyright (C) 2000-2015 Willy Tarreau - w@1wt.eu
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation, version 2.1
10 * exclusively.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#ifndef _TYPES_APPLET_H
23#define _TYPES_APPLET_H
24
Willy Tarreau22d63a22019-04-24 08:41:29 +020025#include <types/freq_ctr.h>
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020026#include <types/hlua.h>
27#include <types/obj_type.h>
Thierry FOURNIERc069cfd2015-09-11 08:50:34 +020028#include <types/proxy.h>
29#include <types/stream.h>
Christopher Fauleta73e59b2016-12-09 17:30:18 +010030#include <common/buffer.h>
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020031#include <common/chunk.h>
32#include <common/config.h>
Thierry FOURNIER2da788e2017-09-11 18:37:23 +020033#include <common/xref.h>
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020034
35struct appctx;
36
37/* Applet descriptor */
Willy Tarreau30576452015-04-13 13:50:30 +020038struct applet {
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020039 enum obj_type obj_type; /* object type = OBJ_TYPE_APPLET */
40 /* 3 unused bytes here */
41 char *name; /* applet's name to report in logs */
Thierry FOURNIERc069cfd2015-09-11 08:50:34 +020042 int (*init)(struct appctx *, struct proxy *px, struct stream *strm); /* callback to init ressources, may be NULL.
43 expect 1 if ok, 0 if an error occurs, -1 if miss data. */
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020044 void (*fct)(struct appctx *); /* internal I/O handler, may never be NULL */
45 void (*release)(struct appctx *); /* callback to release resources, may be NULL */
Thierry FOURNIER1245a832015-09-22 00:02:58 +020046 unsigned int timeout; /* execution timeout. */
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020047};
48
Olivier Houchard673867c2018-05-25 16:58:52 +020049#define APPLET_WANT_DIE 0x01 /* applet was running and requested to die */
Emeric Brunc7306062017-06-26 16:36:53 +020050
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +020051#define APPCTX_CLI_ST1_PROMPT (1 << 0)
52#define APPCTX_CLI_ST1_PAYLOAD (1 << 1)
William Lallemandad032882019-07-01 10:56:15 +020053#define APPCTX_CLI_ST1_NOLF (1 << 2)
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +020054
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020055/* Context of a running applet. */
56struct appctx {
57 enum obj_type obj_type; /* OBJ_TYPE_APPCTX */
58 /* 3 unused bytes here */
Emeric Brunc7306062017-06-26 16:36:53 +020059 unsigned short state; /* Internal appctx state */
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020060 unsigned int st0; /* CLI state for stats, session state for peers */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +020061 unsigned int st1; /* prompt/payload (bitwise OR of APPCTX_CLI_ST1_*) for stats, session error for peers */
Willy Tarreau83061a82018-07-13 11:56:34 +020062 struct buffer *chunk; /* used to store unfinished commands */
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020063 unsigned int st2; /* output state for stats, unused by peers */
Willy Tarreau30576452015-04-13 13:50:30 +020064 struct applet *applet; /* applet this context refers to */
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020065 void *owner; /* pointer to upper layer's entity (eg: stream interface) */
Thierry FOURNIER5a363e72015-09-27 19:29:33 +020066 struct act_rule *rule; /* rule associated with the applet. */
Willy Tarreau3b6e5472016-11-24 15:53:53 +010067 int (*io_handler)(struct appctx *appctx); /* used within the cli_io_handler when st0 = CLI_ST_CALLBACK */
68 void (*io_release)(struct appctx *appctx); /* used within the cli_io_handler when st0 = CLI_ST_CALLBACK,
Thierry FOURNIER / OZON.IO6a22dcb2016-11-12 10:51:33 +010069 if the command is terminated or the session released */
Andjelko Iharosc4df59e2017-07-20 11:59:48 +020070 int cli_severity_output; /* used within the cli_io_handler to format severity output of informational feedback */
William Lallemandf630d012018-12-13 09:05:44 +010071 int cli_level; /* the level of CLI which can be lowered dynamically */
Christopher Fauleta73e59b2016-12-09 17:30:18 +010072 struct buffer_wait buffer_wait; /* position in the list of objects waiting for a buffer */
Willy Tarreauf65610a2017-10-31 16:06:06 +010073 unsigned long thread_mask; /* mask of thread IDs authorized to process the applet */
Olivier Houchard673867c2018-05-25 16:58:52 +020074 struct task *t; /* task associated to the applet */
Willy Tarreau22d63a22019-04-24 08:41:29 +020075 struct freq_ctr call_rate; /* appctx call rate */
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020076
77 union {
78 struct {
Emeric Brun80527f52017-06-19 17:46:37 +020079 void *ptr; /* current peer or NULL, do not use for something else */
Willy Tarreauebec3512016-12-16 12:14:12 +010080 } peers; /* used by the peers applet */
81 struct {
82 int connected;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +020083 struct xref xref; /* cross reference with the Lua object owner. */
Willy Tarreauebec3512016-12-16 12:14:12 +010084 struct list wake_on_read;
85 struct list wake_on_write;
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +020086 int die;
Willy Tarreauebec3512016-12-16 12:14:12 +010087 } hlua_cosocket; /* used by the Lua cosockets */
88 struct {
89 struct hlua *hlua;
90 int flags;
91 struct task *task;
92 } hlua_apptcp; /* used by the Lua TCP services */
93 struct {
94 struct hlua *hlua;
95 int left_bytes; /* The max amount of bytes that we can read. */
96 int flags;
97 int status;
Robin H. Johnson52f5db22017-01-01 13:10:52 -080098 const char *reason;
Willy Tarreauebec3512016-12-16 12:14:12 +010099 struct task *task;
100 } hlua_apphttp; /* used by the Lua HTTP services */
101 struct {
Christopher Faulet42bfa462017-01-04 14:14:19 +0100102 void *ptr; /* private pointer for SPOE filter */
Willy Tarreauebec3512016-12-16 12:14:12 +0100103 } spoe; /* used by SPOE filter */
104 struct {
105 const char *msg; /* pointer to a persistent message to be returned in CLI_ST_PRINT state */
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200106 int severity; /* severity of the message to be returned according to (syslog) rfc5424 */
Willy Tarreauebec3512016-12-16 12:14:12 +0100107 char *err; /* pointer to a 'must free' message to be returned in CLI_ST_PRINT_FREE state */
Willy Tarreau300decc2019-08-30 08:05:03 +0200108 struct list l0; /* General purpose list element, pointers, offsets and integers for... */
109 void *p0, *p1; /* ...registered commands, initialized to 0 by the CLI before first... */
110 size_t o0, o1; /* ...invocation of the keyword parser, except for the list element which... */
111 int i0, i1; /* ...is initialized with LIST_INIT(). */
Willy Tarreauebec3512016-12-16 12:14:12 +0100112 } cli; /* context used by the CLI */
William Lallemand77c11972017-10-31 20:43:01 +0100113 struct {
Frédéric Lécaille8df65ae2018-10-22 18:01:48 +0200114 struct cache_entry *entry; /* Entry to be sent from cache. */
Christopher Faulet54a8d5a2018-12-07 12:21:11 +0100115 unsigned int sent; /* The number of bytes already sent for this cache entry. */
116 unsigned int offset; /* start offset of remaining data relative to beginning of the next block */
Christopher Faulet8f3c2562019-06-03 22:19:18 +0200117 unsigned int rem_data; /* Remaing bytes for the last data block (HTX only, 0 means process next block) */
Frédéric Lécaille8df65ae2018-10-22 18:01:48 +0200118 struct shared_block *next; /* The next block of data to be sent for this cache entry. */
William Lallemand77c11972017-10-31 20:43:01 +0100119 } cache;
Willy Tarreauebec3512016-12-16 12:14:12 +0100120 /* all entries below are used by various CLI commands, please
121 * keep the grouped together and avoid adding new ones.
122 */
123 struct {
Willy Tarreau8a8d83b2015-04-13 13:24:54 +0200124 struct proxy *px;
125 struct server *sv;
126 void *l;
127 int scope_str; /* limit scope to a frontend/backend substring */
128 int scope_len; /* length of the string above in the buffer */
129 int px_st; /* STAT_PX_ST* */
130 unsigned int flags; /* STAT_* */
131 int iid, type, sid; /* proxy id, type and service id if bounding of stats is enabled */
132 int st_code; /* the status code returned by an action */
133 } stats;
134 struct {
135 struct bref bref; /* back-reference from the session being dumped */
136 void *target; /* session we want to dump, or NULL for all */
137 unsigned int uid; /* if non-null, the uniq_id of the session being dumped */
138 int section; /* section of the session being dumped */
139 int pos; /* last position of the current session's buffer */
140 } sess;
141 struct {
142 int iid; /* if >= 0, ID of the proxy to filter on */
143 struct proxy *px; /* current proxy being dumped, NULL = not started yet. */
Willy Tarreau35069f82016-11-25 09:16:37 +0100144 unsigned int flag; /* bit0: buffer being dumped, 0 = req, 1 = resp ; bit1=skip req ; bit2=skip resp. */
Willy Tarreau5865a8f2018-09-07 11:51:51 +0200145 unsigned int ev_id; /* event ID of error being dumped */
Willy Tarreau8a8d83b2015-04-13 13:24:54 +0200146 int ptr; /* <0: headers, >=0 : text pointer to restart from */
147 int bol; /* pointer to beginning of current line */
148 } errors;
149 struct {
150 void *target; /* table we want to dump, or NULL for all */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100151 struct stktable *t; /* table being currently dumped (first if NULL) */
Willy Tarreau8a8d83b2015-04-13 13:24:54 +0200152 struct stksess *entry; /* last entry we were trying to dump (or first if NULL) */
153 long long value; /* value to compare against */
154 signed char data_type; /* type of data to compare, or -1 if none */
155 signed char data_op; /* operator (STD_OP_*) when data_type set */
Willy Tarreaua24bc782016-12-14 15:50:35 +0100156 char action; /* action on the table : one of STK_CLI_ACT_* */
Willy Tarreau8a8d83b2015-04-13 13:24:54 +0200157 } table;
158 struct {
Willy Tarreau8a8d83b2015-04-13 13:24:54 +0200159 unsigned int display_flags;
160 struct pat_ref *ref;
Emeric Brun8d85aa42017-06-29 15:40:33 +0200161 struct bref bref; /* back-reference from the pat_ref_elt being dumped */
Willy Tarreau8a8d83b2015-04-13 13:24:54 +0200162 struct pattern_expr *expr;
Willy Tarreau83061a82018-07-13 11:56:34 +0200163 struct buffer chunk;
Willy Tarreau8a8d83b2015-04-13 13:24:54 +0200164 } map;
Willy Tarreau8a8d83b2015-04-13 13:24:54 +0200165 struct {
Thierry FOURNIERebed6e92016-12-16 11:54:07 +0100166 struct hlua *hlua;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +0100167 struct task *task;
Willy Tarreau8ae4f752016-12-14 15:41:45 +0100168 struct hlua_function *fcn;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +0100169 } hlua_cli;
Frédéric Lécaille95679dc2019-04-15 10:25:27 +0200170 struct {
171 void *target;
172 struct peers *peers; /* "peers" section being currently dumped. */
173 struct peer *peer; /* "peer" being currently dumped. */
174 } cfgpeers;
William Lallemand8f840d72019-10-23 10:53:05 +0200175 struct {
176 char *path;
177 int it;
178 struct {
179 struct ckch_store *old_ckchs;
180 struct ckch_store *new_ckchs;
181 struct ckch_inst *next_ckchi;
182 } n[2];
183 } ssl;
Willy Tarreauebec3512016-12-16 12:14:12 +0100184 /* NOTE: please add regular applet contexts (ie: not
185 * CLI-specific ones) above, before "cli".
186 */
187 } ctx; /* context-specific variables used by any applet */
Willy Tarreau8a8d83b2015-04-13 13:24:54 +0200188};
189
190#endif /* _TYPES_APPLET_H */
191
192/*
193 * Local variables:
194 * c-indent-level: 8
195 * c-basic-offset: 8
196 * End:
197 */