/* * include/haproxy/applet-t.h * This file describes the applet struct and associated constants. * * Copyright (C) 2000-2020 Willy Tarreau - w@1wt.eu * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, version 2.1 * exclusively. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef _HAPROXY_APPLET_T_H #define _HAPROXY_APPLET_T_H #include #include #include #include #include #include /* flags for appctx->state */ #define APPLET_WANT_DIE 0x01 /* applet was running and requested to die */ /* Room for per-command context (mostly CLI commands but not only) */ #define APPLET_MAX_SVCCTX 88 struct appctx; struct proxy; struct stconn; struct sedesc; struct session; /* Applet descriptor */ struct applet { enum obj_type obj_type; /* object type = OBJ_TYPE_APPLET */ /* 3 unused bytes here */ char *name; /* applet's name to report in logs */ int (*init)(struct appctx *); /* callback to init resources, may be NULL. expect 0 if ok, -1 if an error occurs. */ void (*fct)(struct appctx *); /* internal I/O handler, may never be NULL */ void (*release)(struct appctx *); /* callback to release resources, may be NULL */ unsigned int timeout; /* execution timeout. */ }; /* Context of a running applet. */ struct appctx { enum obj_type obj_type; /* OBJ_TYPE_APPCTX */ /* 3 unused bytes here */ unsigned short state; /* Internal appctx state */ unsigned int st0; /* CLI state for stats, session state for peers */ unsigned int st1; /* prompt/payload (bitwise OR of APPCTX_CLI_ST1_*) for stats, session error for peers */ struct buffer *chunk; /* used to store unfinished commands */ struct applet *applet; /* applet this context refers to */ struct session *sess; /* session for frontend applets (NULL for backend applets) */ struct sedesc *sedesc; /* stream endpoint descriptor the applet is attached to */ struct act_rule *rule; /* rule associated with the applet. */ int (*io_handler)(struct appctx *appctx); /* used within the cli_io_handler when st0 = CLI_ST_CALLBACK */ void (*io_release)(struct appctx *appctx); /* used within the cli_io_handler when st0 = CLI_ST_CALLBACK, if the command is terminated or the session released */ int cli_severity_output; /* used within the cli_io_handler to format severity output of informational feedback */ int cli_level; /* the level of CLI which can be lowered dynamically */ struct buffer_wait buffer_wait; /* position in the list of objects waiting for a buffer */ struct task *t; /* task associated to the applet */ struct freq_ctr call_rate; /* appctx call rate */ struct list wait_entry; /* entry in a list of waiters for an event (e.g. ring events) */ /* WARNING: the entries below are only kept for compatibility with * possible external code but will disappear in 2.7, you must use the * cleaner svcctx now (look at "show fd" for an example). */ union { __attribute__((deprecated)) unsigned int st2; unsigned int _st2; }; /* This anonymous union is temporary for 2.6 to avoid a new API change * after 2.6 while keeping the compatibility with pre-2.7 code. * The pointer seen by application code is appctx->svcctx. In 2.7 the * anonymous union will disappear and the struct "svc" will become * svc_storage, which is never accessed directly by application code. * The compatibility with the old appctx->ctx.* is preserved for now * and this union will disappear in 2.7 */ union { /* here we have the service's context (CLI command, applet, etc) */ void *svcctx; /* pointer to a context used by the command, e.g. below */ struct { void *shadow; /* shadow of svcctx above, do not use! */ char storage[APPLET_MAX_SVCCTX]; /* storage of svcctx above */ } svc; /* generic storage for most commands */ /* The "ctx" part below is kept only to help smooth transition * of legacy code and will disappear after 2.6. It ensures that * ctx.cli may safely map to a clean representation of the * "cli_print_ctx" struct mapped in "svc.storage" above. */ struct { void *shadow; /* shadow of svcctx above for alignment, do not use! */ struct { /* these 3 first fields must match EXACTLY "struct cli_print_ctx" */ const char *msg; /* pointer to a persistent message to be returned in CLI_ST_PRINT state */ char *err; /* pointer to a 'must free' message to be returned in CLI_ST_PRINT_FREE state */ int severity; /* severity of the message to be returned according to (syslog) rfc5424 */ /* WARNING: the entries below are only kept for compatibility * with possible external code but will disappear in 2.7, you * must use the cleaner svcctx now (look at "show fd" for an * example). */ void *p0, *p1, *p2; size_t o0, o1; int i0, i1; } cli __attribute__((deprecated)); /* context used by the CLI */ } ctx; /* context-specific variables used by any applet */ }; /* end of anon union */ }; #endif /* _HAPROXY_APPLET_T_H */ /* * Local variables: * c-indent-level: 8 * c-basic-offset: 8 * End: */