blob: 10f49f1f2be155f58f7b73fab070d64285e4d94d [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>
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020029#include <common/chunk.h>
30#include <common/config.h>
31
32struct appctx;
33
34/* Applet descriptor */
Willy Tarreau30576452015-04-13 13:50:30 +020035struct applet {
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020036 enum obj_type obj_type; /* object type = OBJ_TYPE_APPLET */
37 /* 3 unused bytes here */
38 char *name; /* applet's name to report in logs */
Thierry FOURNIERc069cfd2015-09-11 08:50:34 +020039 int (*init)(struct appctx *, struct proxy *px, struct stream *strm); /* callback to init ressources, may be NULL.
40 expect 1 if ok, 0 if an error occurs, -1 if miss data. */
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020041 void (*fct)(struct appctx *); /* internal I/O handler, may never be NULL */
42 void (*release)(struct appctx *); /* callback to release resources, may be NULL */
Thierry FOURNIER1245a832015-09-22 00:02:58 +020043 unsigned int timeout; /* execution timeout. */
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020044};
45
46/* Context of a running applet. */
47struct appctx {
Willy Tarreau81f38d62015-04-13 17:11:11 +020048 struct list runq; /* chaining in the applet run queue */
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020049 enum obj_type obj_type; /* OBJ_TYPE_APPCTX */
50 /* 3 unused bytes here */
51 unsigned int st0; /* CLI state for stats, session state for peers */
52 unsigned int st1; /* prompt for stats, session error for peers */
53 unsigned int st2; /* output state for stats, unused by peers */
Willy Tarreau30576452015-04-13 13:50:30 +020054 struct applet *applet; /* applet this context refers to */
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020055 void *owner; /* pointer to upper layer's entity (eg: stream interface) */
Thierry FOURNIER5a363e72015-09-27 19:29:33 +020056 struct act_rule *rule; /* rule associated with the applet. */
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020057
58 union {
59 struct {
60 struct proxy *px;
61 struct server *sv;
62 void *l;
63 int scope_str; /* limit scope to a frontend/backend substring */
64 int scope_len; /* length of the string above in the buffer */
65 int px_st; /* STAT_PX_ST* */
66 unsigned int flags; /* STAT_* */
67 int iid, type, sid; /* proxy id, type and service id if bounding of stats is enabled */
68 int st_code; /* the status code returned by an action */
69 } stats;
70 struct {
71 struct bref bref; /* back-reference from the session being dumped */
72 void *target; /* session we want to dump, or NULL for all */
73 unsigned int uid; /* if non-null, the uniq_id of the session being dumped */
74 int section; /* section of the session being dumped */
75 int pos; /* last position of the current session's buffer */
76 } sess;
77 struct {
78 int iid; /* if >= 0, ID of the proxy to filter on */
79 struct proxy *px; /* current proxy being dumped, NULL = not started yet. */
80 unsigned int buf; /* buffer being dumped, 0 = req, 1 = rep */
81 unsigned int sid; /* session ID of error being dumped */
82 int ptr; /* <0: headers, >=0 : text pointer to restart from */
83 int bol; /* pointer to beginning of current line */
84 } errors;
85 struct {
86 void *target; /* table we want to dump, or NULL for all */
87 struct proxy *proxy; /* table being currently dumped (first if NULL) */
88 struct stksess *entry; /* last entry we were trying to dump (or first if NULL) */
89 long long value; /* value to compare against */
90 signed char data_type; /* type of data to compare, or -1 if none */
91 signed char data_op; /* operator (STD_OP_*) when data_type set */
92 } table;
93 struct {
94 const char *msg; /* pointer to a persistent message to be returned in PRINT state */
95 char *err; /* pointer to a 'must free' message to be returned in PRINT_FREE state */
96 } cli;
97 struct {
98 void *ptr; /* multi-purpose pointer for peers */
99 } peers;
100 struct {
101 unsigned int display_flags;
102 struct pat_ref *ref;
103 struct pat_ref_elt *elt;
Willy Tarreau8a8d83b2015-04-13 13:24:54 +0200104 struct pattern_expr *expr;
105 struct chunk chunk;
106 } map;
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +0200107#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
108 struct {
William Lallemandcf9e7882016-06-14 17:45:18 +0200109 int dump_all;
William Lallemand72a8a182016-06-14 18:58:55 +0200110 int dump_keys_index;
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +0200111 struct tls_keys_ref *ref;
112 } tlskeys;
113#endif
Willy Tarreau8a8d83b2015-04-13 13:24:54 +0200114 struct {
115 int connected;
116 struct hlua_socket *socket;
117 struct list wake_on_read;
118 struct list wake_on_write;
119 } hlua;
Baptiste Assmann3863f972015-05-17 00:33:24 +0200120 struct {
Thierry FOURNIERf0a64b62015-09-19 12:36:17 +0200121 struct hlua hlua;
122 int flags;
123 struct task *task;
124 } hlua_apptcp;
125 struct {
Thierry FOURNIERa30b5db2015-09-18 09:04:27 +0200126 struct hlua hlua;
127 int left_bytes; /* The max amount of bytes that we can read. */
128 int flags;
129 int status;
130 struct task *task;
131 } hlua_apphttp;
132 struct {
Baptiste Assmann3863f972015-05-17 00:33:24 +0200133 struct dns_resolvers *ptr;
134 } resolvers;
Baptiste Assmann28289462015-07-03 08:01:20 +0200135 struct {
Cyril Bonté76a99782016-05-06 12:18:48 +0200136 int iid; /* if >= 0, ID of the proxy to filter on */
137 struct proxy *px; /* current proxy being dumped, NULL = not started yet. */
138 struct server *sv; /* current server being dumped, NULL = not started yet. */
Baptiste Assmann28289462015-07-03 08:01:20 +0200139 } server_state;
Willy Tarreauae795722016-02-16 11:27:28 +0100140 struct {
Cyril Bonté6ca9e012016-05-06 12:18:49 +0200141 struct proxy *px; /* current proxy being dumped, NULL = not started yet. */
142 } be; /* used by "show backends" command */
143 struct {
Willy Tarreauae795722016-02-16 11:27:28 +0100144 char **var;
145 } env;
Willy Tarreau8a8d83b2015-04-13 13:24:54 +0200146 } ctx; /* used by stats I/O handlers to dump the stats */
147};
148
149#endif /* _TYPES_APPLET_H */
150
151/*
152 * Local variables:
153 * c-indent-level: 8
154 * c-basic-offset: 8
155 * End:
156 */