blob: 89602aac5633240bb94ff7bb598dfa16297e9748 [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>
32
33struct appctx;
34
35/* Applet descriptor */
Willy Tarreau30576452015-04-13 13:50:30 +020036struct applet {
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020037 enum obj_type obj_type; /* object type = OBJ_TYPE_APPLET */
38 /* 3 unused bytes here */
39 char *name; /* applet's name to report in logs */
Thierry FOURNIERc069cfd2015-09-11 08:50:34 +020040 int (*init)(struct appctx *, struct proxy *px, struct stream *strm); /* callback to init ressources, may be NULL.
41 expect 1 if ok, 0 if an error occurs, -1 if miss data. */
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020042 void (*fct)(struct appctx *); /* internal I/O handler, may never be NULL */
43 void (*release)(struct appctx *); /* callback to release resources, may be NULL */
Thierry FOURNIER1245a832015-09-22 00:02:58 +020044 unsigned int timeout; /* execution timeout. */
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020045};
46
47/* Context of a running applet. */
48struct appctx {
Willy Tarreau81f38d62015-04-13 17:11:11 +020049 struct list runq; /* chaining in the applet run queue */
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020050 enum obj_type obj_type; /* OBJ_TYPE_APPCTX */
51 /* 3 unused bytes here */
52 unsigned int st0; /* CLI state for stats, session state for peers */
53 unsigned int st1; /* prompt for stats, session error for peers */
54 unsigned int st2; /* output state for stats, unused by peers */
Willy Tarreau30576452015-04-13 13:50:30 +020055 struct applet *applet; /* applet this context refers to */
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020056 void *owner; /* pointer to upper layer's entity (eg: stream interface) */
Thierry FOURNIER5a363e72015-09-27 19:29:33 +020057 struct act_rule *rule; /* rule associated with the applet. */
Willy Tarreau3b6e5472016-11-24 15:53:53 +010058 int (*io_handler)(struct appctx *appctx); /* used within the cli_io_handler when st0 = CLI_ST_CALLBACK */
59 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 +010060 if the command is terminated or the session released */
William Lallemand1e08cd82016-10-13 17:57:55 +020061 void *private;
Christopher Fauleta73e59b2016-12-09 17:30:18 +010062 struct buffer_wait buffer_wait; /* position in the list of objects waiting for a buffer */
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020063
64 union {
65 struct {
66 struct proxy *px;
67 struct server *sv;
68 void *l;
69 int scope_str; /* limit scope to a frontend/backend substring */
70 int scope_len; /* length of the string above in the buffer */
71 int px_st; /* STAT_PX_ST* */
72 unsigned int flags; /* STAT_* */
73 int iid, type, sid; /* proxy id, type and service id if bounding of stats is enabled */
74 int st_code; /* the status code returned by an action */
75 } stats;
76 struct {
77 struct bref bref; /* back-reference from the session being dumped */
78 void *target; /* session we want to dump, or NULL for all */
79 unsigned int uid; /* if non-null, the uniq_id of the session being dumped */
80 int section; /* section of the session being dumped */
81 int pos; /* last position of the current session's buffer */
82 } sess;
83 struct {
84 int iid; /* if >= 0, ID of the proxy to filter on */
85 struct proxy *px; /* current proxy being dumped, NULL = not started yet. */
Willy Tarreau35069f82016-11-25 09:16:37 +010086 unsigned int flag; /* bit0: buffer being dumped, 0 = req, 1 = resp ; bit1=skip req ; bit2=skip resp. */
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020087 unsigned int sid; /* session ID of error being dumped */
88 int ptr; /* <0: headers, >=0 : text pointer to restart from */
89 int bol; /* pointer to beginning of current line */
90 } errors;
91 struct {
92 void *target; /* table we want to dump, or NULL for all */
93 struct proxy *proxy; /* table being currently dumped (first if NULL) */
94 struct stksess *entry; /* last entry we were trying to dump (or first if NULL) */
95 long long value; /* value to compare against */
96 signed char data_type; /* type of data to compare, or -1 if none */
97 signed char data_op; /* operator (STD_OP_*) when data_type set */
98 } table;
99 struct {
100 const char *msg; /* pointer to a persistent message to be returned in PRINT state */
101 char *err; /* pointer to a 'must free' message to be returned in PRINT_FREE state */
102 } cli;
103 struct {
104 void *ptr; /* multi-purpose pointer for peers */
105 } peers;
106 struct {
107 unsigned int display_flags;
108 struct pat_ref *ref;
109 struct pat_ref_elt *elt;
Willy Tarreau8a8d83b2015-04-13 13:24:54 +0200110 struct pattern_expr *expr;
111 struct chunk chunk;
112 } map;
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +0200113#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
114 struct {
William Lallemandcf9e7882016-06-14 17:45:18 +0200115 int dump_all;
William Lallemand72a8a182016-06-14 18:58:55 +0200116 int dump_keys_index;
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +0200117 struct tls_keys_ref *ref;
118 } tlskeys;
119#endif
Willy Tarreau8a8d83b2015-04-13 13:24:54 +0200120 struct {
121 int connected;
122 struct hlua_socket *socket;
123 struct list wake_on_read;
124 struct list wake_on_write;
125 } hlua;
Baptiste Assmann3863f972015-05-17 00:33:24 +0200126 struct {
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +0200127 struct hlua hlua;
Thierry FOURNIER / OZON.IOa44fdd92016-11-13 13:19:20 +0100128 struct task *task;
129 } hlua_cli;
130 struct {
131 struct hlua hlua;
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +0200132 int flags;
133 struct task *task;
134 } hlua_apptcp;
135 struct {
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200136 struct hlua hlua;
137 int left_bytes; /* The max amount of bytes that we can read. */
138 int flags;
139 int status;
140 struct task *task;
141 } hlua_apphttp;
142 struct {
Baptiste Assmann3863f972015-05-17 00:33:24 +0200143 struct dns_resolvers *ptr;
144 } resolvers;
Baptiste Assmann28289462015-07-03 08:01:20 +0200145 struct {
Cyril Bonté76a99782016-05-06 12:18:48 +0200146 int iid; /* if >= 0, ID of the proxy to filter on */
147 struct proxy *px; /* current proxy being dumped, NULL = not started yet. */
148 struct server *sv; /* current server being dumped, NULL = not started yet. */
Baptiste Assmann28289462015-07-03 08:01:20 +0200149 } server_state;
Willy Tarreauae795722016-02-16 11:27:28 +0100150 struct {
Cyril Bonté6ca9e012016-05-06 12:18:49 +0200151 struct proxy *px; /* current proxy being dumped, NULL = not started yet. */
152 } be; /* used by "show backends" command */
153 struct {
Willy Tarreauae795722016-02-16 11:27:28 +0100154 char **var;
155 } env;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200156 struct {
157 struct task *task;
158 void *ctx;
159 void *agent;
160 unsigned int version;
161 unsigned int max_frame_size;
162 struct list list;
163 } spoe; /* used by SPOE filter */
Willy Tarreau8a8d83b2015-04-13 13:24:54 +0200164 } ctx; /* used by stats I/O handlers to dump the stats */
165};
166
167#endif /* _TYPES_APPLET_H */
168
169/*
170 * Local variables:
171 * c-indent-level: 8
172 * c-basic-offset: 8
173 * End:
174 */