blob: e96b703c8ca145815902b91fc7523e46b8164f2c [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
25#include <types/hlua.h>
26#include <types/obj_type.h>
Thierry FOURNIERc069cfd2015-09-11 08:50:34 +020027#include <types/proxy.h>
28#include <types/stream.h>
Christopher Fauleta73e59b2016-12-09 17:30:18 +010029#include <common/buffer.h>
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020030#include <common/chunk.h>
31#include <common/config.h>
Thierry FOURNIER2da788e2017-09-11 18:37:23 +020032#include <common/xref.h>
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020033
34struct appctx;
35
36/* Applet descriptor */
Willy Tarreau30576452015-04-13 13:50:30 +020037struct applet {
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020038 enum obj_type obj_type; /* object type = OBJ_TYPE_APPLET */
39 /* 3 unused bytes here */
40 char *name; /* applet's name to report in logs */
Thierry FOURNIERc069cfd2015-09-11 08:50:34 +020041 int (*init)(struct appctx *, struct proxy *px, struct stream *strm); /* callback to init ressources, may be NULL.
42 expect 1 if ok, 0 if an error occurs, -1 if miss data. */
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020043 void (*fct)(struct appctx *); /* internal I/O handler, may never be NULL */
44 void (*release)(struct appctx *); /* callback to release resources, may be NULL */
Thierry FOURNIER1245a832015-09-22 00:02:58 +020045 unsigned int timeout; /* execution timeout. */
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020046};
47
Emeric Brunc7306062017-06-26 16:36:53 +020048#define APPLET_SLEEPING 0x00 /* applet is currently sleeping or pending in active queue */
49#define APPLET_RUNNING 0x01 /* applet is currently running */
50#define APPLET_WOKEN_UP 0x02 /* applet was running and requested to woken up again */
51#define APPLET_WANT_DIE 0x04 /* applet was running and requested to die */
52
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020053/* Context of a running applet. */
54struct appctx {
Willy Tarreau81f38d62015-04-13 17:11:11 +020055 struct list runq; /* chaining in the applet run queue */
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020056 enum obj_type obj_type; /* OBJ_TYPE_APPCTX */
57 /* 3 unused bytes here */
Emeric Brunc7306062017-06-26 16:36:53 +020058 unsigned short state; /* Internal appctx state */
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020059 unsigned int st0; /* CLI state for stats, session state for peers */
60 unsigned int st1; /* prompt for stats, session error for peers */
61 unsigned int st2; /* output state for stats, unused by peers */
Willy Tarreau30576452015-04-13 13:50:30 +020062 struct applet *applet; /* applet this context refers to */
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020063 void *owner; /* pointer to upper layer's entity (eg: stream interface) */
Thierry FOURNIER5a363e72015-09-27 19:29:33 +020064 struct act_rule *rule; /* rule associated with the applet. */
Willy Tarreau3b6e5472016-11-24 15:53:53 +010065 int (*io_handler)(struct appctx *appctx); /* used within the cli_io_handler when st0 = CLI_ST_CALLBACK */
66 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 +010067 if the command is terminated or the session released */
Andjelko Iharosc4df59e2017-07-20 11:59:48 +020068 int cli_severity_output; /* used within the cli_io_handler to format severity output of informational feedback */
Christopher Fauleta73e59b2016-12-09 17:30:18 +010069 struct buffer_wait buffer_wait; /* position in the list of objects waiting for a buffer */
Emeric Brunc7306062017-06-26 16:36:53 +020070 unsigned long process_mask; /* mask of thread IDs authorized to process the applet */
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020071
72 union {
73 struct {
Willy Tarreauebec3512016-12-16 12:14:12 +010074 void *ptr; /* multi-purpose pointer for peers */
75 } peers; /* used by the peers applet */
76 struct {
77 int connected;
Thierry FOURNIER2da788e2017-09-11 18:37:23 +020078 struct xref xref; /* cross reference with the Lua object owner. */
Willy Tarreauebec3512016-12-16 12:14:12 +010079 struct list wake_on_read;
80 struct list wake_on_write;
Thierry FOURNIERb13b20a2017-07-16 20:48:54 +020081 int die;
Willy Tarreauebec3512016-12-16 12:14:12 +010082 } hlua_cosocket; /* used by the Lua cosockets */
83 struct {
84 struct hlua *hlua;
85 int flags;
86 struct task *task;
87 } hlua_apptcp; /* used by the Lua TCP services */
88 struct {
89 struct hlua *hlua;
90 int left_bytes; /* The max amount of bytes that we can read. */
91 int flags;
92 int status;
Robin H. Johnson52f5db22017-01-01 13:10:52 -080093 const char *reason;
Willy Tarreauebec3512016-12-16 12:14:12 +010094 struct task *task;
95 } hlua_apphttp; /* used by the Lua HTTP services */
96 struct {
Christopher Faulet42bfa462017-01-04 14:14:19 +010097 void *ptr; /* private pointer for SPOE filter */
Willy Tarreauebec3512016-12-16 12:14:12 +010098 } spoe; /* used by SPOE filter */
99 struct {
100 const char *msg; /* pointer to a persistent message to be returned in CLI_ST_PRINT state */
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200101 int severity; /* severity of the message to be returned according to (syslog) rfc5424 */
Willy Tarreauebec3512016-12-16 12:14:12 +0100102 char *err; /* pointer to a 'must free' message to be returned in CLI_ST_PRINT_FREE state */
Willy Tarreaua2d58722016-12-16 12:37:03 +0100103 void *p0, *p1; /* general purpose pointers and integers for registered commands, initialized */
104 int i0, i1; /* to 0 by the CLI before first invocation of the keyword parser. */
Willy Tarreauebec3512016-12-16 12:14:12 +0100105 } cli; /* context used by the CLI */
106
107 /* all entries below are used by various CLI commands, please
108 * keep the grouped together and avoid adding new ones.
109 */
110 struct {
Willy Tarreau8a8d83b2015-04-13 13:24:54 +0200111 struct proxy *px;
112 struct server *sv;
113 void *l;
114 int scope_str; /* limit scope to a frontend/backend substring */
115 int scope_len; /* length of the string above in the buffer */
116 int px_st; /* STAT_PX_ST* */
117 unsigned int flags; /* STAT_* */
118 int iid, type, sid; /* proxy id, type and service id if bounding of stats is enabled */
119 int st_code; /* the status code returned by an action */
120 } stats;
121 struct {
122 struct bref bref; /* back-reference from the session being dumped */
123 void *target; /* session we want to dump, or NULL for all */
124 unsigned int uid; /* if non-null, the uniq_id of the session being dumped */
125 int section; /* section of the session being dumped */
126 int pos; /* last position of the current session's buffer */
127 } sess;
128 struct {
129 int iid; /* if >= 0, ID of the proxy to filter on */
130 struct proxy *px; /* current proxy being dumped, NULL = not started yet. */
Willy Tarreau35069f82016-11-25 09:16:37 +0100131 unsigned int flag; /* bit0: buffer being dumped, 0 = req, 1 = resp ; bit1=skip req ; bit2=skip resp. */
Willy Tarreau8a8d83b2015-04-13 13:24:54 +0200132 unsigned int sid; /* session ID of error being dumped */
133 int ptr; /* <0: headers, >=0 : text pointer to restart from */
134 int bol; /* pointer to beginning of current line */
135 } errors;
136 struct {
137 void *target; /* table we want to dump, or NULL for all */
138 struct proxy *proxy; /* table being currently dumped (first if NULL) */
139 struct stksess *entry; /* last entry we were trying to dump (or first if NULL) */
140 long long value; /* value to compare against */
141 signed char data_type; /* type of data to compare, or -1 if none */
142 signed char data_op; /* operator (STD_OP_*) when data_type set */
Willy Tarreaua24bc782016-12-14 15:50:35 +0100143 char action; /* action on the table : one of STK_CLI_ACT_* */
Willy Tarreau8a8d83b2015-04-13 13:24:54 +0200144 } table;
145 struct {
Willy Tarreau8a8d83b2015-04-13 13:24:54 +0200146 unsigned int display_flags;
147 struct pat_ref *ref;
Emeric Brun8d85aa42017-06-29 15:40:33 +0200148 struct bref bref; /* back-reference from the pat_ref_elt being dumped */
Willy Tarreau8a8d83b2015-04-13 13:24:54 +0200149 struct pattern_expr *expr;
150 struct chunk chunk;
151 } map;
Willy Tarreau8a8d83b2015-04-13 13:24:54 +0200152 struct {
Thierry FOURNIERebed6e92016-12-16 11:54:07 +0100153 struct hlua *hlua;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +0100154 struct task *task;
Willy Tarreau8ae4f752016-12-14 15:41:45 +0100155 struct hlua_function *fcn;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +0100156 } hlua_cli;
Willy Tarreauebec3512016-12-16 12:14:12 +0100157 /* NOTE: please add regular applet contexts (ie: not
158 * CLI-specific ones) above, before "cli".
159 */
160 } ctx; /* context-specific variables used by any applet */
Willy Tarreau8a8d83b2015-04-13 13:24:54 +0200161};
162
163#endif /* _TYPES_APPLET_H */
164
165/*
166 * Local variables:
167 * c-indent-level: 8
168 * c-basic-offset: 8
169 * End:
170 */