blob: 654f2699c5df6442e218d4b85fc8515b6832c398 [file] [log] [blame]
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001/*
2 * Stream processing offload engine management.
3 *
4 * Copyright 2016 HAProxy Technologies, Christopher Faulet <cfaulet@haproxy.com>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12#include <ctype.h>
13#include <errno.h>
14
Willy Tarreaudcc048a2020-06-04 19:11:43 +020015#include <haproxy/acl.h>
Willy Tarreau122eba92020-06-04 10:15:32 +020016#include <haproxy/action-t.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020017#include <haproxy/api.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020018#include <haproxy/arg.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020019#include <haproxy/cfgparse.h>
Willy Tarreauc7babd82020-06-04 21:29:29 +020020#include <haproxy/filters.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020021#include <haproxy/freq_ctr.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020022#include <haproxy/frontend.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020023#include <haproxy/global.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020024#include <haproxy/http_rules.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020025#include <haproxy/log.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020026#include <haproxy/pool.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020027#include <haproxy/proxy.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020028#include <haproxy/sample.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020029#include <haproxy/session.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020030#include <haproxy/signal.h>
Christopher Faulet1d7d0f82021-02-19 10:56:41 +010031#include <haproxy/sink.h>
Willy Tarreau6c58ab02020-06-04 22:35:49 +020032#include <haproxy/spoe.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020033#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020034#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020035#include <haproxy/task.h>
Willy Tarreau8b550af2020-06-04 17:42:48 +020036#include <haproxy/tcp_rules.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020037#include <haproxy/thread.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020038#include <haproxy/time.h>
Willy Tarreaua1718922020-06-04 16:25:31 +020039#include <haproxy/vars.h>
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020040
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020041
42#if defined(DEBUG_SPOE) || defined(DEBUG_FULL)
43#define SPOE_PRINTF(x...) fprintf(x)
Christopher Fauletb077cdc2018-01-24 16:37:57 +010044#define SPOE_DEBUG_STMT(statement) statement
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020045#else
46#define SPOE_PRINTF(x...)
Christopher Fauletb077cdc2018-01-24 16:37:57 +010047#define SPOE_DEBUG_STMT(statement)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020048#endif
49
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +010050/* Reserved 4 bytes to the frame size. So a frame and its size can be written
51 * together in a buffer */
52#define MAX_FRAME_SIZE global.tune.bufsize - 4
53
54/* The minimum size for a frame */
55#define MIN_FRAME_SIZE 256
56
Christopher Fauletf51f5fa2017-01-19 10:01:12 +010057/* Reserved for the metadata and the frame type.
58 * So <MAX_FRAME_SIZE> - <FRAME_HDR_SIZE> is the maximum payload size */
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +010059#define FRAME_HDR_SIZE 32
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020060
Christopher Fauletf51f5fa2017-01-19 10:01:12 +010061/* Helper to get SPOE ctx inside an appctx */
Christopher Faulet42bfa462017-01-04 14:14:19 +010062#define SPOE_APPCTX(appctx) ((struct spoe_appctx *)((appctx)->ctx.spoe.ptr))
63
Christopher Faulet3b386a32017-02-23 10:17:15 +010064/* SPOE filter id. Used to identify SPOE filters */
65const char *spoe_filter_id = "SPOE filter";
66
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020067/* Set if the handle on SIGUSR1 is registered */
68static int sighandler_registered = 0;
69
70/* proxy used during the parsing */
71struct proxy *curproxy = NULL;
72
73/* The name of the SPOE engine, used during the parsing */
74char *curengine = NULL;
75
76/* SPOE agent used during the parsing */
Christopher Faulet11610f32017-09-21 10:23:10 +020077/* SPOE agent/group/message used during the parsing */
78struct spoe_agent *curagent = NULL;
79struct spoe_group *curgrp = NULL;
80struct spoe_message *curmsg = NULL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020081
82/* list of SPOE messages and placeholders used during the parsing */
83struct list curmsgs;
Christopher Faulet11610f32017-09-21 10:23:10 +020084struct list curgrps;
85struct list curmphs;
86struct list curgphs;
Christopher Faulet336d3ef2017-12-22 10:00:55 +010087struct list curvars;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020088
Christopher Faulet7250b8f2018-03-26 17:19:01 +020089/* list of log servers used during the parsing */
90struct list curlogsrvs;
91
Christopher Faulet0e0f0852018-03-26 17:20:36 +020092/* agent's proxy flags (PR_O_* and PR_O2_*) used during parsing */
93int curpxopts;
94int curpxopts2;
95
Christopher Faulet42bfa462017-01-04 14:14:19 +010096/* Pools used to allocate SPOE structs */
Willy Tarreau8ceae722018-11-26 11:58:30 +010097DECLARE_STATIC_POOL(pool_head_spoe_ctx, "spoe_ctx", sizeof(struct spoe_context));
98DECLARE_STATIC_POOL(pool_head_spoe_appctx, "spoe_appctx", sizeof(struct spoe_appctx));
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020099
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200100struct flt_ops spoe_ops;
101
Christopher Faulet8ef75252017-02-20 22:56:03 +0100102static int spoe_queue_context(struct spoe_context *ctx);
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200103static int spoe_acquire_buffer(struct buffer *buf, struct buffer_wait *buffer_wait);
104static void spoe_release_buffer(struct buffer *buf, struct buffer_wait *buffer_wait);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200105
106/********************************************************************
107 * helper functions/globals
108 ********************************************************************/
109static void
Christopher Faulet11610f32017-09-21 10:23:10 +0200110spoe_release_placeholder(struct spoe_placeholder *ph)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200111{
Christopher Faulet11610f32017-09-21 10:23:10 +0200112 if (!ph)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200113 return;
Christopher Faulet11610f32017-09-21 10:23:10 +0200114 free(ph->id);
115 free(ph);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200116}
117
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200118static void
Christopher Faulet8ef75252017-02-20 22:56:03 +0100119spoe_release_message(struct spoe_message *msg)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200120{
Christopher Faulet57583e42017-09-04 15:41:09 +0200121 struct spoe_arg *arg, *argback;
122 struct acl *acl, *aclback;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200123
124 if (!msg)
125 return;
126 free(msg->id);
127 free(msg->conf.file);
Christopher Faulet57583e42017-09-04 15:41:09 +0200128 list_for_each_entry_safe(arg, argback, &msg->args, list) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200129 release_sample_expr(arg->expr);
130 free(arg->name);
131 LIST_DEL(&arg->list);
132 free(arg);
133 }
Christopher Faulet57583e42017-09-04 15:41:09 +0200134 list_for_each_entry_safe(acl, aclback, &msg->acls, list) {
135 LIST_DEL(&acl->list);
136 prune_acl(acl);
137 free(acl);
138 }
139 if (msg->cond) {
140 prune_acl_cond(msg->cond);
141 free(msg->cond);
142 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200143 free(msg);
144}
145
146static void
Christopher Faulet11610f32017-09-21 10:23:10 +0200147spoe_release_group(struct spoe_group *grp)
148{
149 if (!grp)
150 return;
151 free(grp->id);
152 free(grp->conf.file);
153 free(grp);
154}
155
156static void
Christopher Faulet8ef75252017-02-20 22:56:03 +0100157spoe_release_agent(struct spoe_agent *agent)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200158{
Christopher Faulet11610f32017-09-21 10:23:10 +0200159 struct spoe_message *msg, *msgback;
160 struct spoe_group *grp, *grpback;
Christopher Faulet24289f22017-09-25 14:48:02 +0200161 int i;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200162
163 if (!agent)
164 return;
165 free(agent->id);
166 free(agent->conf.file);
167 free(agent->var_pfx);
Christopher Faulet985532d2016-11-16 15:36:19 +0100168 free(agent->var_on_error);
Christopher Faulet36bda1c2018-03-22 09:08:20 +0100169 free(agent->var_t_process);
170 free(agent->var_t_total);
Christopher Faulet11610f32017-09-21 10:23:10 +0200171 list_for_each_entry_safe(msg, msgback, &agent->messages, list) {
172 LIST_DEL(&msg->list);
173 spoe_release_message(msg);
174 }
175 list_for_each_entry_safe(grp, grpback, &agent->groups, list) {
176 LIST_DEL(&grp->list);
177 spoe_release_group(grp);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200178 }
Willy Tarreau3ddcf762019-02-07 14:22:52 +0100179 if (agent->rt) {
Christopher Fauletb1bb1af2019-09-17 11:55:52 +0200180 for (i = 0; i < global.nbthread; ++i) {
181 free(agent->rt[i].engine_id);
Willy Tarreau3ddcf762019-02-07 14:22:52 +0100182 HA_SPIN_DESTROY(&agent->rt[i].lock);
Christopher Fauletb1bb1af2019-09-17 11:55:52 +0200183 }
Willy Tarreau3ddcf762019-02-07 14:22:52 +0100184 }
Christopher Faulet24289f22017-09-25 14:48:02 +0200185 free(agent->rt);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200186 free(agent);
187}
188
189static const char *spoe_frm_err_reasons[SPOE_FRM_ERRS] = {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100190 [SPOE_FRM_ERR_NONE] = "normal",
191 [SPOE_FRM_ERR_IO] = "I/O error",
192 [SPOE_FRM_ERR_TOUT] = "a timeout occurred",
193 [SPOE_FRM_ERR_TOO_BIG] = "frame is too big",
194 [SPOE_FRM_ERR_INVALID] = "invalid frame received",
195 [SPOE_FRM_ERR_NO_VSN] = "version value not found",
196 [SPOE_FRM_ERR_NO_FRAME_SIZE] = "max-frame-size value not found",
197 [SPOE_FRM_ERR_NO_CAP] = "capabilities value not found",
198 [SPOE_FRM_ERR_BAD_VSN] = "unsupported version",
199 [SPOE_FRM_ERR_BAD_FRAME_SIZE] = "max-frame-size too big or too small",
200 [SPOE_FRM_ERR_FRAG_NOT_SUPPORTED] = "fragmentation not supported",
201 [SPOE_FRM_ERR_INTERLACED_FRAMES] = "invalid interlaced frames",
Christopher Faulet8eda93f2017-02-09 09:44:33 +0100202 [SPOE_FRM_ERR_FRAMEID_NOTFOUND] = "frame-id not found",
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100203 [SPOE_FRM_ERR_RES] = "resource allocation error",
204 [SPOE_FRM_ERR_UNKNOWN] = "an unknown error occurred",
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200205};
206
207static const char *spoe_event_str[SPOE_EV_EVENTS] = {
208 [SPOE_EV_ON_CLIENT_SESS] = "on-client-session",
209 [SPOE_EV_ON_TCP_REQ_FE] = "on-frontend-tcp-request",
210 [SPOE_EV_ON_TCP_REQ_BE] = "on-backend-tcp-request",
211 [SPOE_EV_ON_HTTP_REQ_FE] = "on-frontend-http-request",
212 [SPOE_EV_ON_HTTP_REQ_BE] = "on-backend-http-request",
213
214 [SPOE_EV_ON_SERVER_SESS] = "on-server-session",
215 [SPOE_EV_ON_TCP_RSP] = "on-tcp-response",
216 [SPOE_EV_ON_HTTP_RSP] = "on-http-response",
217};
218
219
220#if defined(DEBUG_SPOE) || defined(DEBUG_FULL)
221
222static const char *spoe_ctx_state_str[SPOE_CTX_ST_ERROR+1] = {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100223 [SPOE_CTX_ST_NONE] = "NONE",
224 [SPOE_CTX_ST_READY] = "READY",
225 [SPOE_CTX_ST_ENCODING_MSGS] = "ENCODING_MSGS",
226 [SPOE_CTX_ST_SENDING_MSGS] = "SENDING_MSGS",
227 [SPOE_CTX_ST_WAITING_ACK] = "WAITING_ACK",
228 [SPOE_CTX_ST_DONE] = "DONE",
229 [SPOE_CTX_ST_ERROR] = "ERROR",
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200230};
231
232static const char *spoe_appctx_state_str[SPOE_APPCTX_ST_END+1] = {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100233 [SPOE_APPCTX_ST_CONNECT] = "CONNECT",
234 [SPOE_APPCTX_ST_CONNECTING] = "CONNECTING",
235 [SPOE_APPCTX_ST_IDLE] = "IDLE",
236 [SPOE_APPCTX_ST_PROCESSING] = "PROCESSING",
237 [SPOE_APPCTX_ST_SENDING_FRAG_NOTIFY] = "SENDING_FRAG_NOTIFY",
238 [SPOE_APPCTX_ST_WAITING_SYNC_ACK] = "WAITING_SYNC_ACK",
239 [SPOE_APPCTX_ST_DISCONNECT] = "DISCONNECT",
240 [SPOE_APPCTX_ST_DISCONNECTING] = "DISCONNECTING",
241 [SPOE_APPCTX_ST_EXIT] = "EXIT",
242 [SPOE_APPCTX_ST_END] = "END",
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200243};
244
245#endif
Christopher Fauleta1cda022016-12-21 08:58:06 +0100246
Christopher Faulet8ef75252017-02-20 22:56:03 +0100247/* Used to generates a unique id for an engine. On success, it returns a
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +0500248 * allocated string. So it is the caller's responsibility to release it. If the
Christopher Faulet8ef75252017-02-20 22:56:03 +0100249 * allocation failed, it returns NULL. */
Christopher Fauleta1cda022016-12-21 08:58:06 +0100250static char *
251generate_pseudo_uuid()
252{
Willy Tarreauee3bcdd2020-03-08 17:48:17 +0100253 ha_generate_uuid(&trash);
Kevin Zhu079f8082020-03-13 10:39:51 +0800254 return my_strndup(trash.area, trash.data);
Christopher Fauleta1cda022016-12-21 08:58:06 +0100255}
256
Christopher Fauletb2dd1e02018-03-22 09:07:41 +0100257
258static inline void
259spoe_update_stat_time(struct timeval *tv, long *t)
260{
261 if (*t == -1)
262 *t = tv_ms_elapsed(tv, &now);
263 else
264 *t += tv_ms_elapsed(tv, &now);
265 tv_zero(tv);
266}
267
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200268/********************************************************************
269 * Functions that encode/decode SPOE frames
270 ********************************************************************/
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200271/* Helper to get static string length, excluding the terminating null byte */
272#define SLEN(str) (sizeof(str)-1)
273
274/* Predefined key used in HELLO/DISCONNECT frames */
275#define SUPPORTED_VERSIONS_KEY "supported-versions"
276#define VERSION_KEY "version"
277#define MAX_FRAME_SIZE_KEY "max-frame-size"
278#define CAPABILITIES_KEY "capabilities"
Christopher Fauleta1cda022016-12-21 08:58:06 +0100279#define ENGINE_ID_KEY "engine-id"
Christopher Fauletba7bc162016-11-07 21:07:38 +0100280#define HEALTHCHECK_KEY "healthcheck"
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200281#define STATUS_CODE_KEY "status-code"
282#define MSG_KEY "message"
283
284struct spoe_version {
285 char *str;
286 int min;
287 int max;
288};
289
290/* All supported versions */
291static struct spoe_version supported_versions[] = {
Christopher Faulet63816502018-05-31 14:56:42 +0200292 /* 1.0 is now unsupported because of a bug about frame's flags*/
293 {"2.0", 2000, 2000},
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200294 {NULL, 0, 0}
295};
296
297/* Comma-separated list of supported versions */
Christopher Faulet63816502018-05-31 14:56:42 +0200298#define SUPPORTED_VERSIONS_VAL "2.0"
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200299
Christopher Faulet8ef75252017-02-20 22:56:03 +0100300/* Convert a string to a SPOE version value. The string must follow the format
301 * "MAJOR.MINOR". It will be concerted into the integer (1000 * MAJOR + MINOR).
302 * If an error occurred, -1 is returned. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200303static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100304spoe_str_to_vsn(const char *str, size_t len)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200305{
Christopher Faulet8ef75252017-02-20 22:56:03 +0100306 const char *p, *end;
307 int maj, min, vsn;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200308
Christopher Faulet8ef75252017-02-20 22:56:03 +0100309 p = str;
310 end = str+len;
311 maj = min = 0;
312 vsn = -1;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200313
Christopher Faulet8ef75252017-02-20 22:56:03 +0100314 /* skip leading spaces */
Willy Tarreau90807112020-02-25 08:16:33 +0100315 while (p < end && isspace((unsigned char)*p))
Christopher Faulet8ef75252017-02-20 22:56:03 +0100316 p++;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200317
Christopher Faulet8ef75252017-02-20 22:56:03 +0100318 /* parse Major number, until the '.' */
319 while (*p != '.') {
320 if (p >= end || *p < '0' || *p > '9')
321 goto out;
322 maj *= 10;
323 maj += (*p - '0');
324 p++;
325 }
326
327 /* check Major version */
328 if (!maj)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200329 goto out;
330
Christopher Faulet8ef75252017-02-20 22:56:03 +0100331 p++; /* skip the '.' */
332 if (p >= end || *p < '0' || *p > '9') /* Minor number is missing */
333 goto out;
334
335 /* Parse Minor number */
336 while (p < end) {
337 if (*p < '0' || *p > '9')
338 break;
339 min *= 10;
340 min += (*p - '0');
341 p++;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200342 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100343
344 /* check Minor number */
345 if (min > 999)
346 goto out;
347
348 /* skip trailing spaces */
Willy Tarreau90807112020-02-25 08:16:33 +0100349 while (p < end && isspace((unsigned char)*p))
Christopher Faulet8ef75252017-02-20 22:56:03 +0100350 p++;
351 if (p != end)
352 goto out;
353
354 vsn = maj * 1000 + min;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200355 out:
356 return vsn;
357}
358
Christopher Faulet8ef75252017-02-20 22:56:03 +0100359/* Encode the HELLO frame sent by HAProxy to an agent. It returns the number of
Joseph Herlantf7f60312018-11-15 13:46:49 -0800360 * encoded bytes in the frame on success, 0 if an encoding error occurred and -1
Christopher Faulet8ef75252017-02-20 22:56:03 +0100361 * if a fatal error occurred. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200362static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100363spoe_prepare_hahello_frame(struct appctx *appctx, char *frame, size_t size)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200364{
Willy Tarreau83061a82018-07-13 11:56:34 +0200365 struct buffer *chk;
Christopher Faulet42bfa462017-01-04 14:14:19 +0100366 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100367 char *p, *end;
368 unsigned int flags = SPOE_FRM_FL_FIN;
369 size_t sz;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200370
Christopher Faulet8ef75252017-02-20 22:56:03 +0100371 p = frame;
372 end = frame+size;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200373
Christopher Faulet8ef75252017-02-20 22:56:03 +0100374 /* Set Frame type */
375 *p++ = SPOE_FRM_T_HAPROXY_HELLO;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200376
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100377 /* Set flags */
Thierry FOURNIERc4dcaff2018-05-18 12:25:39 +0200378 flags = htonl(flags);
Christopher Faulet8ef75252017-02-20 22:56:03 +0100379 memcpy(p, (char *)&flags, 4);
380 p += 4;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200381
382 /* No stream-id and frame-id for HELLO frames */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100383 *p++ = 0; *p++ = 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200384
385 /* There are 3 mandatory items: "supported-versions", "max-frame-size"
386 * and "capabilities" */
387
388 /* "supported-versions" K/V item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100389 sz = SLEN(SUPPORTED_VERSIONS_KEY);
390 if (spoe_encode_buffer(SUPPORTED_VERSIONS_KEY, sz, &p, end) == -1)
391 goto too_big;
392
393 *p++ = SPOE_DATA_T_STR;
394 sz = SLEN(SUPPORTED_VERSIONS_VAL);
395 if (spoe_encode_buffer(SUPPORTED_VERSIONS_VAL, sz, &p, end) == -1)
396 goto too_big;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200397
398 /* "max-fram-size" K/V item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100399 sz = SLEN(MAX_FRAME_SIZE_KEY);
400 if (spoe_encode_buffer(MAX_FRAME_SIZE_KEY, sz, &p, end) == -1)
401 goto too_big;
402
403 *p++ = SPOE_DATA_T_UINT32;
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200404 if (encode_varint(SPOE_APPCTX(appctx)->max_frame_size, &p, end) == -1)
Christopher Faulet8ef75252017-02-20 22:56:03 +0100405 goto too_big;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200406
407 /* "capabilities" K/V item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100408 sz = SLEN(CAPABILITIES_KEY);
409 if (spoe_encode_buffer(CAPABILITIES_KEY, sz, &p, end) == -1)
410 goto too_big;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200411
Christopher Faulet8ef75252017-02-20 22:56:03 +0100412 *p++ = SPOE_DATA_T_STR;
Christopher Faulet305c6072017-02-23 16:17:53 +0100413 chk = get_trash_chunk();
414 if (agent != NULL && (agent->flags & SPOE_FL_PIPELINING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200415 memcpy(chk->area, "pipelining", 10);
416 chk->data += 10;
Christopher Faulet305c6072017-02-23 16:17:53 +0100417 }
418 if (agent != NULL && (agent->flags & SPOE_FL_ASYNC)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200419 if (chk->data) chk->area[chk->data++] = ',';
420 memcpy(chk->area+chk->data, "async", 5);
421 chk->data += 5;
Christopher Faulet305c6072017-02-23 16:17:53 +0100422 }
Christopher Fauletcecd8522017-02-24 22:11:21 +0100423 if (agent != NULL && (agent->flags & SPOE_FL_RCV_FRAGMENTATION)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200424 if (chk->data) chk->area[chk->data++] = ',';
425 memcpy(chk->area+chk->data, "fragmentation", 13);
Miroslav Zagorac6b3690b2019-01-13 16:55:01 +0100426 chk->data += 13;
Christopher Fauletcecd8522017-02-24 22:11:21 +0100427 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200428 if (spoe_encode_buffer(chk->area, chk->data, &p, end) == -1)
Christopher Faulet8ef75252017-02-20 22:56:03 +0100429 goto too_big;
430
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +0500431 /* (optional) "engine-id" K/V item, if present */
Christopher Fauletb1bb1af2019-09-17 11:55:52 +0200432 if (agent != NULL && agent->rt[tid].engine_id != NULL) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100433 sz = SLEN(ENGINE_ID_KEY);
434 if (spoe_encode_buffer(ENGINE_ID_KEY, sz, &p, end) == -1)
435 goto too_big;
436
437 *p++ = SPOE_DATA_T_STR;
Christopher Fauletb1bb1af2019-09-17 11:55:52 +0200438 sz = strlen(agent->rt[tid].engine_id);
439 if (spoe_encode_buffer(agent->rt[tid].engine_id, sz, &p, end) == -1)
Christopher Faulet8ef75252017-02-20 22:56:03 +0100440 goto too_big;
Christopher Fauleta1cda022016-12-21 08:58:06 +0100441 }
442
Christopher Faulet8ef75252017-02-20 22:56:03 +0100443 return (p - frame);
444
445 too_big:
446 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOO_BIG;
447 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200448}
449
Christopher Faulet8ef75252017-02-20 22:56:03 +0100450/* Encode DISCONNECT frame sent by HAProxy to an agent. It returns the number of
451 * encoded bytes in the frame on success, 0 if an encoding error occurred and -1
452 * if a fatal error occurred. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200453static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100454spoe_prepare_hadiscon_frame(struct appctx *appctx, char *frame, size_t size)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200455{
Christopher Faulet8ef75252017-02-20 22:56:03 +0100456 const char *reason;
457 char *p, *end;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100458 unsigned int flags = SPOE_FRM_FL_FIN;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100459 size_t sz;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200460
Christopher Faulet8ef75252017-02-20 22:56:03 +0100461 p = frame;
462 end = frame+size;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200463
Christopher Faulet8ef75252017-02-20 22:56:03 +0100464 /* Set Frame type */
465 *p++ = SPOE_FRM_T_HAPROXY_DISCON;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200466
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100467 /* Set flags */
Thierry FOURNIERc4dcaff2018-05-18 12:25:39 +0200468 flags = htonl(flags);
Christopher Faulet8ef75252017-02-20 22:56:03 +0100469 memcpy(p, (char *)&flags, 4);
470 p += 4;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200471
472 /* No stream-id and frame-id for DISCONNECT frames */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100473 *p++ = 0; *p++ = 0;
474
475 if (SPOE_APPCTX(appctx)->status_code >= SPOE_FRM_ERRS)
476 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_UNKNOWN;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200477
478 /* There are 2 mandatory items: "status-code" and "message" */
479
480 /* "status-code" K/V item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100481 sz = SLEN(STATUS_CODE_KEY);
482 if (spoe_encode_buffer(STATUS_CODE_KEY, sz, &p, end) == -1)
483 goto too_big;
484
485 *p++ = SPOE_DATA_T_UINT32;
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200486 if (encode_varint(SPOE_APPCTX(appctx)->status_code, &p, end) == -1)
Christopher Faulet8ef75252017-02-20 22:56:03 +0100487 goto too_big;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200488
489 /* "message" K/V item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100490 sz = SLEN(MSG_KEY);
491 if (spoe_encode_buffer(MSG_KEY, sz, &p, end) == -1)
492 goto too_big;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200493
Christopher Faulet8ef75252017-02-20 22:56:03 +0100494 /*Get the message corresponding to the status code */
495 reason = spoe_frm_err_reasons[SPOE_APPCTX(appctx)->status_code];
496
497 *p++ = SPOE_DATA_T_STR;
498 sz = strlen(reason);
499 if (spoe_encode_buffer(reason, sz, &p, end) == -1)
500 goto too_big;
501
502 return (p - frame);
503
504 too_big:
505 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOO_BIG;
506 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200507}
508
Christopher Faulet8ef75252017-02-20 22:56:03 +0100509/* Encode the NOTIFY frame sent by HAProxy to an agent. It returns the number of
510 * encoded bytes in the frame on success, 0 if an encoding error occurred and -1
511 * if a fatal error occurred. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200512static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100513spoe_prepare_hanotify_frame(struct appctx *appctx, struct spoe_context *ctx,
Christopher Fauleta1cda022016-12-21 08:58:06 +0100514 char *frame, size_t size)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200515{
Christopher Faulet8ef75252017-02-20 22:56:03 +0100516 char *p, *end;
517 unsigned int stream_id, frame_id;
518 unsigned int flags = SPOE_FRM_FL_FIN;
519 size_t sz;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200520
Christopher Faulet8ef75252017-02-20 22:56:03 +0100521 p = frame;
522 end = frame+size;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200523
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100524 stream_id = ctx->stream_id;
525 frame_id = ctx->frame_id;
526
527 if (ctx->flags & SPOE_CTX_FL_FRAGMENTED) {
528 /* The fragmentation is not supported by the applet */
529 if (!(SPOE_APPCTX(appctx)->flags & SPOE_APPCTX_FL_FRAGMENTATION)) {
530 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_FRAG_NOT_SUPPORTED;
531 return -1;
532 }
533 flags = ctx->frag_ctx.flags;
534 }
535
536 /* Set Frame type */
537 *p++ = SPOE_FRM_T_HAPROXY_NOTIFY;
538
539 /* Set flags */
Thierry FOURNIERc4dcaff2018-05-18 12:25:39 +0200540 flags = htonl(flags);
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100541 memcpy(p, (char *)&flags, 4);
542 p += 4;
543
544 /* Set stream-id and frame-id */
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200545 if (encode_varint(stream_id, &p, end) == -1)
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100546 goto too_big;
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200547 if (encode_varint(frame_id, &p, end) == -1)
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100548 goto too_big;
549
550 /* Copy encoded messages, if possible */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200551 sz = b_data(&ctx->buffer);
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100552 if (p + sz >= end)
553 goto too_big;
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200554 memcpy(p, b_head(&ctx->buffer), sz);
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100555 p += sz;
556
557 return (p - frame);
558
559 too_big:
560 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOO_BIG;
561 return 0;
562}
563
564/* Encode next part of a fragmented frame sent by HAProxy to an agent. It
565 * returns the number of encoded bytes in the frame on success, 0 if an encoding
566 * error occurred and -1 if a fatal error occurred. */
567static int
568spoe_prepare_hafrag_frame(struct appctx *appctx, struct spoe_context *ctx,
569 char *frame, size_t size)
570{
571 char *p, *end;
572 unsigned int stream_id, frame_id;
573 unsigned int flags;
574 size_t sz;
575
576 p = frame;
577 end = frame+size;
578
Christopher Faulet8ef75252017-02-20 22:56:03 +0100579 /* <ctx> is null when the stream has aborted the processing of a
580 * fragmented frame. In this case, we must notify the corresponding
581 * agent using ids stored in <frag_ctx>. */
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100582 if (ctx == NULL) {
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100583 flags = (SPOE_FRM_FL_FIN|SPOE_FRM_FL_ABRT);
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100584 stream_id = SPOE_APPCTX(appctx)->frag_ctx.cursid;
585 frame_id = SPOE_APPCTX(appctx)->frag_ctx.curfid;
586 }
587 else {
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100588 flags = ctx->frag_ctx.flags;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100589 stream_id = ctx->stream_id;
590 frame_id = ctx->frame_id;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100591 }
592
Christopher Faulet8ef75252017-02-20 22:56:03 +0100593 /* Set Frame type */
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100594 *p++ = SPOE_FRM_T_UNSET;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100595
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100596 /* Set flags */
Thierry FOURNIERc4dcaff2018-05-18 12:25:39 +0200597 flags = htonl(flags);
Christopher Faulet8ef75252017-02-20 22:56:03 +0100598 memcpy(p, (char *)&flags, 4);
599 p += 4;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200600
601 /* Set stream-id and frame-id */
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200602 if (encode_varint(stream_id, &p, end) == -1)
Christopher Faulet8ef75252017-02-20 22:56:03 +0100603 goto too_big;
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200604 if (encode_varint(frame_id, &p, end) == -1)
Christopher Faulet8ef75252017-02-20 22:56:03 +0100605 goto too_big;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200606
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100607 if (ctx == NULL)
608 goto end;
609
Christopher Faulet8ef75252017-02-20 22:56:03 +0100610 /* Copy encoded messages, if possible */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200611 sz = b_data(&ctx->buffer);
Christopher Faulet8ef75252017-02-20 22:56:03 +0100612 if (p + sz >= end)
613 goto too_big;
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200614 memcpy(p, b_head(&ctx->buffer), sz);
Christopher Faulet8ef75252017-02-20 22:56:03 +0100615 p += sz;
Christopher Fauleta1cda022016-12-21 08:58:06 +0100616
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100617 end:
Christopher Faulet8ef75252017-02-20 22:56:03 +0100618 return (p - frame);
619
620 too_big:
621 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOO_BIG;
622 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200623}
624
Christopher Faulet8ef75252017-02-20 22:56:03 +0100625/* Decode and process the HELLO frame sent by an agent. It returns the number of
626 * read bytes on success, 0 if a decoding error occurred, and -1 if a fatal
627 * error occurred. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200628static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100629spoe_handle_agenthello_frame(struct appctx *appctx, char *frame, size_t size)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200630{
Christopher Faulet305c6072017-02-23 16:17:53 +0100631 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
632 char *p, *end;
633 int vsn, max_frame_size;
634 unsigned int flags;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100635
636 p = frame;
637 end = frame + size;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200638
639 /* Check frame type */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100640 if (*p++ != SPOE_FRM_T_AGENT_HELLO) {
641 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200642 return 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100643 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200644
Christopher Faulet8ef75252017-02-20 22:56:03 +0100645 if (size < 7 /* TYPE + METADATA */) {
646 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
647 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200648 }
649
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100650 /* Retrieve flags */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100651 memcpy((char *)&flags, p, 4);
Thierry FOURNIERc4dcaff2018-05-18 12:25:39 +0200652 flags = ntohl(flags);
Christopher Faulet8ef75252017-02-20 22:56:03 +0100653 p += 4;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200654
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100655 /* Fragmentation is not supported for HELLO frame */
656 if (!(flags & SPOE_FRM_FL_FIN)) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100657 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_FRAG_NOT_SUPPORTED;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100658 return -1;
659 }
660
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200661 /* stream-id and frame-id must be cleared */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100662 if (*p != 0 || *(p+1) != 0) {
663 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
664 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200665 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100666 p += 2;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200667
668 /* There are 3 mandatory items: "version", "max-frame-size" and
669 * "capabilities" */
670
671 /* Loop on K/V items */
Christopher Fauleta1cda022016-12-21 08:58:06 +0100672 vsn = max_frame_size = flags = 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100673 while (p < end) {
674 char *str;
Frédéric Lécaille6ca71a92017-08-22 10:33:14 +0200675 uint64_t sz;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100676 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200677
678 /* Decode the item key */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100679 ret = spoe_decode_buffer(&p, end, &str, &sz);
680 if (ret == -1 || !sz) {
681 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
682 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200683 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100684
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200685 /* Check "version" K/V item */
Willy Tarreauda21ed12020-06-16 17:58:14 +0200686 if (sz >= strlen(VERSION_KEY) && !memcmp(str, VERSION_KEY, strlen(VERSION_KEY))) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100687 int i, type = *p++;
688
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200689 /* The value must be a string */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100690 if ((type & SPOE_DATA_T_MASK) != SPOE_DATA_T_STR) {
691 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
692 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200693 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100694 if (spoe_decode_buffer(&p, end, &str, &sz) == -1) {
695 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
696 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200697 }
698
Christopher Faulet8ef75252017-02-20 22:56:03 +0100699 vsn = spoe_str_to_vsn(str, sz);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200700 if (vsn == -1) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100701 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_BAD_VSN;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200702 return -1;
703 }
704 for (i = 0; supported_versions[i].str != NULL; ++i) {
705 if (vsn >= supported_versions[i].min &&
706 vsn <= supported_versions[i].max)
707 break;
708 }
709 if (supported_versions[i].str == NULL) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100710 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_BAD_VSN;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200711 return -1;
712 }
713 }
714 /* Check "max-frame-size" K/V item */
Willy Tarreauda21ed12020-06-16 17:58:14 +0200715 else if (sz >= strlen(MAX_FRAME_SIZE_KEY) && !memcmp(str, MAX_FRAME_SIZE_KEY, strlen(MAX_FRAME_SIZE_KEY))) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100716 int type = *p++;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200717
718 /* The value must be integer */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200719 if ((type & SPOE_DATA_T_MASK) != SPOE_DATA_T_INT32 &&
720 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_INT64 &&
721 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_UINT32 &&
722 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_UINT64) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100723 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
724 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200725 }
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200726 if (decode_varint(&p, end, &sz) == -1) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100727 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
728 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200729 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100730 if (sz < MIN_FRAME_SIZE ||
731 sz > SPOE_APPCTX(appctx)->max_frame_size) {
732 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_BAD_FRAME_SIZE;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200733 return -1;
734 }
735 max_frame_size = sz;
736 }
Christopher Fauleta1cda022016-12-21 08:58:06 +0100737 /* Check "capabilities" K/V item */
Willy Tarreauda21ed12020-06-16 17:58:14 +0200738 else if (sz >= strlen(CAPABILITIES_KEY) && !memcmp(str, CAPABILITIES_KEY, strlen(CAPABILITIES_KEY))) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100739 int type = *p++;
Christopher Fauleta1cda022016-12-21 08:58:06 +0100740
741 /* The value must be a string */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100742 if ((type & SPOE_DATA_T_MASK) != SPOE_DATA_T_STR) {
743 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
744 return 0;
Christopher Fauleta1cda022016-12-21 08:58:06 +0100745 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100746 if (spoe_decode_buffer(&p, end, &str, &sz) == -1) {
747 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
748 return 0;
749 }
Christopher Fauleta1cda022016-12-21 08:58:06 +0100750
Christopher Faulet8ef75252017-02-20 22:56:03 +0100751 while (sz) {
Christopher Fauleta1cda022016-12-21 08:58:06 +0100752 char *delim;
753
754 /* Skip leading spaces */
Willy Tarreau90807112020-02-25 08:16:33 +0100755 for (; isspace((unsigned char)*str) && sz; str++, sz--);
Christopher Fauleta1cda022016-12-21 08:58:06 +0100756
Christopher Faulet8ef75252017-02-20 22:56:03 +0100757 if (sz >= 10 && !strncmp(str, "pipelining", 10)) {
758 str += 10; sz -= 10;
Willy Tarreau90807112020-02-25 08:16:33 +0100759 if (!sz || isspace((unsigned char)*str) || *str == ',')
Christopher Fauleta1cda022016-12-21 08:58:06 +0100760 flags |= SPOE_APPCTX_FL_PIPELINING;
761 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100762 else if (sz >= 5 && !strncmp(str, "async", 5)) {
763 str += 5; sz -= 5;
Willy Tarreau90807112020-02-25 08:16:33 +0100764 if (!sz || isspace((unsigned char)*str) || *str == ',')
Christopher Fauleta1cda022016-12-21 08:58:06 +0100765 flags |= SPOE_APPCTX_FL_ASYNC;
766 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100767 else if (sz >= 13 && !strncmp(str, "fragmentation", 13)) {
768 str += 13; sz -= 13;
Willy Tarreau90807112020-02-25 08:16:33 +0100769 if (!sz || isspace((unsigned char)*str) || *str == ',')
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100770 flags |= SPOE_APPCTX_FL_FRAGMENTATION;
771 }
Christopher Fauleta1cda022016-12-21 08:58:06 +0100772
Christopher Faulet8ef75252017-02-20 22:56:03 +0100773 /* Get the next comma or break */
774 if (!sz || (delim = memchr(str, ',', sz)) == NULL)
Christopher Fauleta1cda022016-12-21 08:58:06 +0100775 break;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100776 delim++;
777 sz -= (delim - str);
778 str = delim;
Christopher Fauleta1cda022016-12-21 08:58:06 +0100779 }
780 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200781 else {
782 /* Silently ignore unknown item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100783 if (spoe_skip_data(&p, end) == -1) {
784 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
785 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200786 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200787 }
788 }
789
790 /* Final checks */
791 if (!vsn) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100792 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_NO_VSN;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200793 return -1;
794 }
795 if (!max_frame_size) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100796 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_NO_FRAME_SIZE;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200797 return -1;
798 }
Christopher Faulet11389012019-02-07 16:13:26 +0100799 if (!agent)
800 flags &= ~(SPOE_APPCTX_FL_PIPELINING|SPOE_APPCTX_FL_ASYNC);
801 else {
802 if ((flags & SPOE_APPCTX_FL_PIPELINING) && !(agent->flags & SPOE_FL_PIPELINING))
803 flags &= ~SPOE_APPCTX_FL_PIPELINING;
804 if ((flags & SPOE_APPCTX_FL_ASYNC) && !(agent->flags & SPOE_FL_ASYNC))
805 flags &= ~SPOE_APPCTX_FL_ASYNC;
806 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200807
Christopher Faulet42bfa462017-01-04 14:14:19 +0100808 SPOE_APPCTX(appctx)->version = (unsigned int)vsn;
809 SPOE_APPCTX(appctx)->max_frame_size = (unsigned int)max_frame_size;
810 SPOE_APPCTX(appctx)->flags |= flags;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100811
812 return (p - frame);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200813}
814
815/* Decode DISCONNECT frame sent by an agent. It returns the number of by read
816 * bytes on success, 0 if the frame can be ignored and -1 if an error
817 * occurred. */
818static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100819spoe_handle_agentdiscon_frame(struct appctx *appctx, char *frame, size_t size)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200820{
Christopher Faulet8ef75252017-02-20 22:56:03 +0100821 char *p, *end;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100822 unsigned int flags;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100823
824 p = frame;
825 end = frame + size;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200826
827 /* Check frame type */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100828 if (*p++ != SPOE_FRM_T_AGENT_DISCON) {
829 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200830 return 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100831 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200832
Christopher Faulet8ef75252017-02-20 22:56:03 +0100833 if (size < 7 /* TYPE + METADATA */) {
834 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
835 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200836 }
837
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100838 /* Retrieve flags */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100839 memcpy((char *)&flags, p, 4);
Thierry FOURNIERc4dcaff2018-05-18 12:25:39 +0200840 flags = ntohl(flags);
Christopher Faulet8ef75252017-02-20 22:56:03 +0100841 p += 4;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200842
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100843 /* Fragmentation is not supported for DISCONNECT frame */
844 if (!(flags & SPOE_FRM_FL_FIN)) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100845 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_FRAG_NOT_SUPPORTED;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100846 return -1;
847 }
848
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200849 /* stream-id and frame-id must be cleared */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100850 if (*p != 0 || *(p+1) != 0) {
851 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
852 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200853 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100854 p += 2;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200855
856 /* There are 2 mandatory items: "status-code" and "message" */
857
858 /* Loop on K/V items */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100859 while (p < end) {
860 char *str;
Frédéric Lécaille6ca71a92017-08-22 10:33:14 +0200861 uint64_t sz;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100862 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200863
864 /* Decode the item key */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100865 ret = spoe_decode_buffer(&p, end, &str, &sz);
866 if (ret == -1 || !sz) {
867 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
868 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200869 }
870
871 /* Check "status-code" K/V item */
Willy Tarreauda21ed12020-06-16 17:58:14 +0200872 if (sz >= strlen(STATUS_CODE_KEY) && !memcmp(str, STATUS_CODE_KEY, strlen(STATUS_CODE_KEY))) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100873 int type = *p++;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200874
875 /* The value must be an integer */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200876 if ((type & SPOE_DATA_T_MASK) != SPOE_DATA_T_INT32 &&
877 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_INT64 &&
878 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_UINT32 &&
879 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_UINT64) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100880 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
881 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200882 }
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200883 if (decode_varint(&p, end, &sz) == -1) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100884 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
885 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200886 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100887 SPOE_APPCTX(appctx)->status_code = sz;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200888 }
889
890 /* Check "message" K/V item */
Willy Tarreauda21ed12020-06-16 17:58:14 +0200891 else if (sz >= strlen(MSG_KEY) && !memcmp(str, MSG_KEY, strlen(MSG_KEY))) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100892 int type = *p++;
893
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200894 /* The value must be a string */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100895 if ((type & SPOE_DATA_T_MASK) != SPOE_DATA_T_STR) {
896 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
897 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200898 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100899 ret = spoe_decode_buffer(&p, end, &str, &sz);
900 if (ret == -1 || sz > 255) {
901 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
902 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200903 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100904#if defined(DEBUG_SPOE) || defined(DEBUG_FULL)
905 SPOE_APPCTX(appctx)->reason = str;
906 SPOE_APPCTX(appctx)->rlen = sz;
907#endif
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200908 }
909 else {
910 /* Silently ignore unknown item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100911 if (spoe_skip_data(&p, end) == -1) {
912 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
913 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200914 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200915 }
916 }
917
Christopher Faulet8ef75252017-02-20 22:56:03 +0100918 return (p - frame);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200919}
920
921
Christopher Fauleta1cda022016-12-21 08:58:06 +0100922/* Decode ACK frame sent by an agent. It returns the number of read bytes on
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200923 * success, 0 if the frame can be ignored and -1 if an error occurred. */
924static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100925spoe_handle_agentack_frame(struct appctx *appctx, struct spoe_context **ctx,
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100926 char *frame, size_t size)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200927{
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100928 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100929 char *p, *end;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100930 uint64_t stream_id, frame_id;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100931 int len;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100932 unsigned int flags;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100933
934 p = frame;
935 end = frame + size;
936 *ctx = NULL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200937
938 /* Check frame type */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100939 if (*p++ != SPOE_FRM_T_AGENT_ACK) {
940 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200941 return 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100942 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200943
Christopher Faulet8ef75252017-02-20 22:56:03 +0100944 if (size < 7 /* TYPE + METADATA */) {
945 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
946 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200947 }
948
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100949 /* Retrieve flags */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100950 memcpy((char *)&flags, p, 4);
Thierry FOURNIERc4dcaff2018-05-18 12:25:39 +0200951 flags = ntohl(flags);
Christopher Faulet8ef75252017-02-20 22:56:03 +0100952 p += 4;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200953
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100954 /* Fragmentation is not supported for now */
955 if (!(flags & SPOE_FRM_FL_FIN)) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100956 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_FRAG_NOT_SUPPORTED;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100957 return -1;
958 }
959
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200960 /* Get the stream-id and the frame-id */
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200961 if (decode_varint(&p, end, &stream_id) == -1) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100962 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
Christopher Fauleta1cda022016-12-21 08:58:06 +0100963 return 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100964 }
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200965 if (decode_varint(&p, end, &frame_id) == -1) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100966 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200967 return 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100968 }
Christopher Fauleta1cda022016-12-21 08:58:06 +0100969
Christopher Faulet8ef75252017-02-20 22:56:03 +0100970 /* Try to find the corresponding SPOE context */
Christopher Faulet42bfa462017-01-04 14:14:19 +0100971 if (SPOE_APPCTX(appctx)->flags & SPOE_APPCTX_FL_ASYNC) {
Christopher Faulet24289f22017-09-25 14:48:02 +0200972 list_for_each_entry((*ctx), &agent->rt[tid].waiting_queue, list) {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100973 if ((*ctx)->stream_id == (unsigned int)stream_id &&
974 (*ctx)->frame_id == (unsigned int)frame_id)
Christopher Fauleta1cda022016-12-21 08:58:06 +0100975 goto found;
976 }
977 }
978 else {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100979 list_for_each_entry((*ctx), &SPOE_APPCTX(appctx)->waiting_queue, list) {
980 if ((*ctx)->stream_id == (unsigned int)stream_id &&
Christopher Faulet8ef75252017-02-20 22:56:03 +0100981 (*ctx)->frame_id == (unsigned int)frame_id)
Christopher Fauleta1cda022016-12-21 08:58:06 +0100982 goto found;
983 }
984 }
985
Christopher Faulet8eda93f2017-02-09 09:44:33 +0100986 if (SPOE_APPCTX(appctx)->frag_ctx.ctx &&
987 SPOE_APPCTX(appctx)->frag_ctx.cursid == (unsigned int)stream_id &&
988 SPOE_APPCTX(appctx)->frag_ctx.curfid == (unsigned int)frame_id) {
989
990 /* ABRT bit is set for an unfinished fragmented frame */
991 if (flags & SPOE_FRM_FL_ABRT) {
992 *ctx = SPOE_APPCTX(appctx)->frag_ctx.ctx;
Christopher Faulet8eda93f2017-02-09 09:44:33 +0100993 (*ctx)->state = SPOE_CTX_ST_ERROR;
994 (*ctx)->status_code = SPOE_CTX_ERR_FRAG_FRAME_ABRT;
995 /* Ignore the payload */
996 goto end;
997 }
998 /* TODO: Handle more flags for fragmented frames: RESUME, FINISH... */
999 /* For now, we ignore the ack */
1000 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
1001 return 0;
1002 }
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001003
Christopher Fauleta1cda022016-12-21 08:58:06 +01001004 /* No Stream found, ignore the frame */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001005 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
1006 " - Ignore ACK frame"
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001007 " - stream-id=%u - frame-id=%u\n",
1008 (int)now.tv_sec, (int)now.tv_usec, agent->id,
1009 __FUNCTION__, appctx,
1010 (unsigned int)stream_id, (unsigned int)frame_id);
1011
Christopher Faulet8eda93f2017-02-09 09:44:33 +01001012 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_FRAMEID_NOTFOUND;
Christopher Fauletc7ba9102020-11-10 14:31:39 +01001013 if (appctx->st0 == SPOE_APPCTX_ST_WAITING_SYNC_ACK) {
1014 /* Report an error if we are waiting the ack for another frame,
1015 * but not if there is no longer frame waiting for a ack
1016 * (timeout)
1017 */
1018 if (!LIST_ISEMPTY(&SPOE_APPCTX(appctx)->waiting_queue) ||
1019 SPOE_APPCTX(appctx)->frag_ctx.ctx)
1020 return -1;
1021 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
1022 SPOE_APPCTX(appctx)->cur_fpa = 0;
1023 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001024 return 0;
1025
1026 found:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001027 if (!spoe_acquire_buffer(&SPOE_APPCTX(appctx)->buffer,
1028 &SPOE_APPCTX(appctx)->buffer_wait)) {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001029 *ctx = NULL;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001030 return 1; /* Retry later */
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001031 }
Christopher Faulet4596fb72017-01-11 14:05:19 +01001032
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001033 /* Copy encoded actions */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001034 len = (end - p);
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001035 memcpy(b_head(&SPOE_APPCTX(appctx)->buffer), p, len);
1036 b_set_data(&SPOE_APPCTX(appctx)->buffer, len);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001037 p += len;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001038
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001039 /* Transfer the buffer ownership to the SPOE context */
1040 (*ctx)->buffer = SPOE_APPCTX(appctx)->buffer;
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001041 SPOE_APPCTX(appctx)->buffer = BUF_NULL;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001042
Christopher Faulet8ef75252017-02-20 22:56:03 +01001043 (*ctx)->state = SPOE_CTX_ST_DONE;
1044
Christopher Faulet8eda93f2017-02-09 09:44:33 +01001045 end:
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001046 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
Christopher Faulet8ef75252017-02-20 22:56:03 +01001047 " - ACK frame received"
1048 " - ctx=%p - stream-id=%u - frame-id=%u - flags=0x%08x\n",
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001049 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Faulet8ef75252017-02-20 22:56:03 +01001050 __FUNCTION__, appctx, *ctx, (*ctx)->stream_id,
1051 (*ctx)->frame_id, flags);
1052 return (p - frame);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001053}
1054
Christopher Fauletba7bc162016-11-07 21:07:38 +01001055/* This function is used in cfgparse.c and declared in proto/checks.h. It
1056 * prepare the request to send to agents during a healthcheck. It returns 0 on
1057 * success and -1 if an error occurred. */
1058int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001059spoe_prepare_healthcheck_request(char **req, int *len)
Christopher Fauletba7bc162016-11-07 21:07:38 +01001060{
Christopher Faulet8ef75252017-02-20 22:56:03 +01001061 struct appctx appctx;
1062 struct spoe_appctx spoe_appctx;
1063 char *frame, *end, buf[MAX_FRAME_SIZE+4];
1064 size_t sz;
1065 int ret;
Christopher Fauletba7bc162016-11-07 21:07:38 +01001066
Christopher Faulet42bfa462017-01-04 14:14:19 +01001067 memset(&appctx, 0, sizeof(appctx));
1068 memset(&spoe_appctx, 0, sizeof(spoe_appctx));
Christopher Fauletba7bc162016-11-07 21:07:38 +01001069 memset(buf, 0, sizeof(buf));
Christopher Faulet42bfa462017-01-04 14:14:19 +01001070
1071 appctx.ctx.spoe.ptr = &spoe_appctx;
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01001072 SPOE_APPCTX(&appctx)->max_frame_size = MAX_FRAME_SIZE;
Christopher Fauletba7bc162016-11-07 21:07:38 +01001073
Christopher Faulet8ef75252017-02-20 22:56:03 +01001074 frame = buf+4; /* Reserved the 4 first bytes for the frame size */
1075 end = frame + MAX_FRAME_SIZE;
1076
1077 ret = spoe_prepare_hahello_frame(&appctx, frame, MAX_FRAME_SIZE);
1078 if (ret <= 0)
Christopher Fauletba7bc162016-11-07 21:07:38 +01001079 return -1;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001080 frame += ret;
Christopher Fauletba7bc162016-11-07 21:07:38 +01001081
Christopher Faulet8ef75252017-02-20 22:56:03 +01001082 /* Add "healthcheck" K/V item */
1083 sz = SLEN(HEALTHCHECK_KEY);
1084 if (spoe_encode_buffer(HEALTHCHECK_KEY, sz, &frame, end) == -1)
1085 return -1;
1086 *frame++ = (SPOE_DATA_T_BOOL | SPOE_DATA_FL_TRUE);
Christopher Fauletba7bc162016-11-07 21:07:38 +01001087
Christopher Faulet8ef75252017-02-20 22:56:03 +01001088 *len = frame - buf;
1089 sz = htonl(*len - 4);
1090 memcpy(buf, (char *)&sz, 4);
Christopher Fauletba7bc162016-11-07 21:07:38 +01001091
Christopher Faulet8ef75252017-02-20 22:56:03 +01001092 if ((*req = malloc(*len)) == NULL)
Christopher Fauletba7bc162016-11-07 21:07:38 +01001093 return -1;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001094 memcpy(*req, buf, *len);
Christopher Fauletba7bc162016-11-07 21:07:38 +01001095 return 0;
1096}
1097
1098/* This function is used in checks.c and declared in proto/checks.h. It decode
1099 * the response received from an agent during a healthcheck. It returns 0 on
1100 * success and -1 if an error occurred. */
1101int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001102spoe_handle_healthcheck_response(char *frame, size_t size, char *err, int errlen)
Christopher Fauletba7bc162016-11-07 21:07:38 +01001103{
Christopher Faulet42bfa462017-01-04 14:14:19 +01001104 struct appctx appctx;
1105 struct spoe_appctx spoe_appctx;
Christopher Fauletba7bc162016-11-07 21:07:38 +01001106
Christopher Faulet42bfa462017-01-04 14:14:19 +01001107 memset(&appctx, 0, sizeof(appctx));
1108 memset(&spoe_appctx, 0, sizeof(spoe_appctx));
Christopher Fauletba7bc162016-11-07 21:07:38 +01001109
Christopher Faulet42bfa462017-01-04 14:14:19 +01001110 appctx.ctx.spoe.ptr = &spoe_appctx;
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01001111 SPOE_APPCTX(&appctx)->max_frame_size = MAX_FRAME_SIZE;
Christopher Faulet42bfa462017-01-04 14:14:19 +01001112
Christopher Faulet8ef75252017-02-20 22:56:03 +01001113 if (*frame == SPOE_FRM_T_AGENT_DISCON) {
1114 spoe_handle_agentdiscon_frame(&appctx, frame, size);
Christopher Fauletba7bc162016-11-07 21:07:38 +01001115 goto error;
1116 }
Christopher Faulet8ef75252017-02-20 22:56:03 +01001117 if (spoe_handle_agenthello_frame(&appctx, frame, size) <= 0)
1118 goto error;
Christopher Fauletba7bc162016-11-07 21:07:38 +01001119
1120 return 0;
1121
1122 error:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001123 if (SPOE_APPCTX(&appctx)->status_code >= SPOE_FRM_ERRS)
1124 SPOE_APPCTX(&appctx)->status_code = SPOE_FRM_ERR_UNKNOWN;
1125 strncpy(err, spoe_frm_err_reasons[SPOE_APPCTX(&appctx)->status_code], errlen);
Christopher Fauletba7bc162016-11-07 21:07:38 +01001126 return -1;
1127}
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001128
Christopher Fauleta1cda022016-12-21 08:58:06 +01001129/* Send a SPOE frame to an agent. It returns -1 when an error occurred, 0 when
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05001130 * the frame can be ignored, 1 to retry later, and the frame length on
Christopher Fauleta1cda022016-12-21 08:58:06 +01001131 * success. */
1132static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001133spoe_send_frame(struct appctx *appctx, char *buf, size_t framesz)
Christopher Fauleta1cda022016-12-21 08:58:06 +01001134{
1135 struct stream_interface *si = appctx->owner;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001136 int ret;
1137 uint32_t netint;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001138
Christopher Faulet8ef75252017-02-20 22:56:03 +01001139 /* 4 bytes are reserved at the beginning of <buf> to store the frame
1140 * length. */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001141 netint = htonl(framesz);
1142 memcpy(buf, (char *)&netint, 4);
Willy Tarreau06d80a92017-10-19 14:32:15 +02001143 ret = ci_putblk(si_ic(si), buf, framesz+4);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001144 if (ret <= 0) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001145 if ((ret == -3 && b_is_null(&si_ic(si)->buf)) || ret == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001146 si_rx_room_blk(si);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001147 return 1; /* retry */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001148 }
1149 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001150 return -1; /* error */
1151 }
1152 return framesz;
1153}
1154
1155/* Receive a SPOE frame from an agent. It return -1 when an error occurred, 0
1156 * when the frame can be ignored, 1 to retry later and the frame length on
1157 * success. */
1158static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001159spoe_recv_frame(struct appctx *appctx, char *buf, size_t framesz)
Christopher Fauleta1cda022016-12-21 08:58:06 +01001160{
1161 struct stream_interface *si = appctx->owner;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001162 int ret;
1163 uint32_t netint;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001164
Willy Tarreau06d80a92017-10-19 14:32:15 +02001165 ret = co_getblk(si_oc(si), (char *)&netint, 4, 0);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001166 if (ret > 0) {
1167 framesz = ntohl(netint);
Christopher Faulet42bfa462017-01-04 14:14:19 +01001168 if (framesz > SPOE_APPCTX(appctx)->max_frame_size) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001169 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOO_BIG;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001170 return -1;
1171 }
Willy Tarreau06d80a92017-10-19 14:32:15 +02001172 ret = co_getblk(si_oc(si), buf, framesz, 4);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001173 }
1174 if (ret <= 0) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001175 if (ret == 0) {
Christopher Fauleta1cda022016-12-21 08:58:06 +01001176 return 1; /* retry */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001177 }
1178 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001179 return -1; /* error */
1180 }
1181 return framesz;
1182}
1183
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001184/********************************************************************
1185 * Functions that manage the SPOE applet
1186 ********************************************************************/
Christopher Faulet4596fb72017-01-11 14:05:19 +01001187static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001188spoe_wakeup_appctx(struct appctx *appctx)
Christopher Faulet4596fb72017-01-11 14:05:19 +01001189{
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01001190 si_want_get(appctx->owner);
Willy Tarreau8bb2ffb2018-11-14 17:54:13 +01001191 si_rx_endp_more(appctx->owner);
Christopher Faulet4596fb72017-01-11 14:05:19 +01001192 appctx_wakeup(appctx);
1193 return 1;
1194}
1195
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001196/* Callback function that catches applet timeouts. If a timeout occurred, we set
1197 * <appctx->st1> flag and the SPOE applet is woken up. */
1198static struct task *
Willy Tarreau144f84a2021-03-02 16:09:26 +01001199spoe_process_appctx(struct task * task, void *context, unsigned int state)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001200{
Olivier Houchard9f6af332018-05-25 14:04:04 +02001201 struct appctx *appctx = context;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001202
1203 appctx->st1 = SPOE_APPCTX_ERR_NONE;
1204 if (tick_is_expired(task->expire, now_ms)) {
1205 task->expire = TICK_ETERNITY;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001206 appctx->st1 = SPOE_APPCTX_ERR_TOUT;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001207 }
Christopher Faulet8ef75252017-02-20 22:56:03 +01001208 spoe_wakeup_appctx(appctx);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001209 return task;
1210}
1211
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001212/* Callback function that releases a SPOE applet. This happens when the
1213 * connection with the agent is closed. */
1214static void
Christopher Faulet8ef75252017-02-20 22:56:03 +01001215spoe_release_appctx(struct appctx *appctx)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001216{
Christopher Faulet8ef75252017-02-20 22:56:03 +01001217 struct stream_interface *si = appctx->owner;
1218 struct spoe_appctx *spoe_appctx = SPOE_APPCTX(appctx);
1219 struct spoe_agent *agent;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001220 struct spoe_context *ctx, *back;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001221
1222 if (spoe_appctx == NULL)
1223 return;
1224
1225 appctx->ctx.spoe.ptr = NULL;
1226 agent = spoe_appctx->agent;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001227
1228 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p\n",
1229 (int)now.tv_sec, (int)now.tv_usec, agent->id,
1230 __FUNCTION__, appctx);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001231
Christopher Faulet8ef75252017-02-20 22:56:03 +01001232 /* Remove applet from the list of running applets */
Olivier Houchard9e7ae282019-03-08 18:50:42 +01001233 _HA_ATOMIC_SUB(&agent->counters.applets, 1);
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001234 HA_SPIN_LOCK(SPOE_APPLET_LOCK, &agent->rt[tid].lock);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001235 if (!LIST_ISEMPTY(&spoe_appctx->list)) {
1236 LIST_DEL(&spoe_appctx->list);
1237 LIST_INIT(&spoe_appctx->list);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001238 }
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001239 HA_SPIN_UNLOCK(SPOE_APPLET_LOCK, &agent->rt[tid].lock);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001240
Christopher Faulet8ef75252017-02-20 22:56:03 +01001241 /* Shutdown the server connection, if needed */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001242 if (appctx->st0 != SPOE_APPCTX_ST_END) {
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001243 if (appctx->st0 == SPOE_APPCTX_ST_IDLE) {
1244 eb32_delete(&spoe_appctx->node);
Olivier Houchard9e7ae282019-03-08 18:50:42 +01001245 _HA_ATOMIC_SUB(&agent->counters.idles, 1);
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001246 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001247
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001248 appctx->st0 = SPOE_APPCTX_ST_END;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001249 if (spoe_appctx->status_code == SPOE_FRM_ERR_NONE)
1250 spoe_appctx->status_code = SPOE_FRM_ERR_IO;
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001251
1252 si_shutw(si);
1253 si_shutr(si);
1254 si_ic(si)->flags |= CF_READ_NULL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001255 }
1256
Christopher Faulet8ef75252017-02-20 22:56:03 +01001257 /* Destroy the task attached to this applet */
Willy Tarreauf6562792019-05-07 19:05:35 +02001258 task_destroy(spoe_appctx->task);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001259
Christopher Faulet8ef75252017-02-20 22:56:03 +01001260 /* Notify all waiting streams */
1261 list_for_each_entry_safe(ctx, back, &spoe_appctx->waiting_queue, list) {
Christopher Fauleta1cda022016-12-21 08:58:06 +01001262 LIST_DEL(&ctx->list);
1263 LIST_INIT(&ctx->list);
Olivier Houchard9e7ae282019-03-08 18:50:42 +01001264 _HA_ATOMIC_SUB(&agent->counters.nb_waiting, 1);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01001265 spoe_update_stat_time(&ctx->stats.tv_wait, &ctx->stats.t_waiting);
Christopher Fauletcf181c72020-11-10 18:45:34 +01001266 ctx->spoe_appctx = NULL;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001267 ctx->state = SPOE_CTX_ST_ERROR;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001268 ctx->status_code = (spoe_appctx->status_code + 0x100);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001269 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001270 }
1271
Christopher Faulet8ef75252017-02-20 22:56:03 +01001272 /* If the applet was processing a fragmented frame, notify the
1273 * corresponding stream. */
1274 if (spoe_appctx->frag_ctx.ctx) {
1275 ctx = spoe_appctx->frag_ctx.ctx;
Christopher Fauletfce747b2018-01-24 15:59:32 +01001276 ctx->spoe_appctx = NULL;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001277 ctx->state = SPOE_CTX_ST_ERROR;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001278 ctx->status_code = (spoe_appctx->status_code + 0x100);
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001279 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
1280 }
1281
Christopher Fauletcf181c72020-11-10 18:45:34 +01001282 if (!LIST_ISEMPTY(&agent->rt[tid].applets)) {
1283 list_for_each_entry_safe(ctx, back, &agent->rt[tid].waiting_queue, list) {
1284 if (ctx->spoe_appctx == spoe_appctx)
1285 ctx->spoe_appctx = NULL;
1286 }
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01001287 goto end;
Christopher Fauletcf181c72020-11-10 18:45:34 +01001288 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001289
Christopher Faulet8ef75252017-02-20 22:56:03 +01001290 /* If this was the last running applet, notify all waiting streams */
Christopher Faulet24289f22017-09-25 14:48:02 +02001291 list_for_each_entry_safe(ctx, back, &agent->rt[tid].sending_queue, list) {
Christopher Fauleta1cda022016-12-21 08:58:06 +01001292 LIST_DEL(&ctx->list);
1293 LIST_INIT(&ctx->list);
Olivier Houchard9e7ae282019-03-08 18:50:42 +01001294 _HA_ATOMIC_SUB(&agent->counters.nb_sending, 1);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01001295 spoe_update_stat_time(&ctx->stats.tv_queue, &ctx->stats.t_queue);
Christopher Fauletcf181c72020-11-10 18:45:34 +01001296 ctx->spoe_appctx = NULL;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001297 ctx->state = SPOE_CTX_ST_ERROR;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001298 ctx->status_code = (spoe_appctx->status_code + 0x100);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001299 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001300 }
Christopher Faulet24289f22017-09-25 14:48:02 +02001301 list_for_each_entry_safe(ctx, back, &agent->rt[tid].waiting_queue, list) {
Christopher Fauleta1cda022016-12-21 08:58:06 +01001302 LIST_DEL(&ctx->list);
1303 LIST_INIT(&ctx->list);
Olivier Houchard9e7ae282019-03-08 18:50:42 +01001304 _HA_ATOMIC_SUB(&agent->counters.nb_waiting, 1);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01001305 spoe_update_stat_time(&ctx->stats.tv_wait, &ctx->stats.t_waiting);
Christopher Fauletcf181c72020-11-10 18:45:34 +01001306 ctx->spoe_appctx = NULL;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001307 ctx->state = SPOE_CTX_ST_ERROR;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001308 ctx->status_code = (spoe_appctx->status_code + 0x100);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001309 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
1310 }
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01001311
1312 end:
Christopher Faulet55ae8a62019-05-23 22:47:48 +02001313 /* Release allocated memory */
1314 spoe_release_buffer(&spoe_appctx->buffer,
1315 &spoe_appctx->buffer_wait);
1316 pool_free(pool_head_spoe_appctx, spoe_appctx);
1317
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01001318 /* Update runtinme agent info */
Christopher Faulet24289f22017-09-25 14:48:02 +02001319 agent->rt[tid].frame_size = agent->max_frame_size;
1320 list_for_each_entry(spoe_appctx, &agent->rt[tid].applets, list)
1321 HA_ATOMIC_UPDATE_MIN(&agent->rt[tid].frame_size, spoe_appctx->max_frame_size);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001322}
1323
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001324static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001325spoe_handle_connect_appctx(struct appctx *appctx)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001326{
Christopher Fauleta1cda022016-12-21 08:58:06 +01001327 struct stream_interface *si = appctx->owner;
Christopher Faulet42bfa462017-01-04 14:14:19 +01001328 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001329 char *frame, *buf;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001330 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001331
Willy Tarreau7ab22adb2019-06-05 14:53:22 +02001332 if (si_state_in(si->state, SI_SB_CER|SI_SB_DIS|SI_SB_CLO)) {
1333 /* closed */
1334 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO;
1335 goto exit;
1336 }
1337
Willy Tarreau4f283fa2019-06-05 14:34:03 +02001338 if (!si_state_in(si->state, SI_SB_RDY|SI_SB_EST)) {
Willy Tarreau7ab22adb2019-06-05 14:53:22 +02001339 /* not connected yet */
Willy Tarreau8bb2ffb2018-11-14 17:54:13 +01001340 si_rx_endp_more(si);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001341 task_wakeup(si_strm(si)->task, TASK_WOKEN_MSG);
1342 goto stop;
1343 }
Christopher Fauleta73e59b2016-12-09 17:30:18 +01001344
Christopher Fauleta1cda022016-12-21 08:58:06 +01001345 if (appctx->st1 == SPOE_APPCTX_ERR_TOUT) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001346 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
1347 " - Connection timed out\n",
1348 (int)now.tv_sec, (int)now.tv_usec, agent->id,
1349 __FUNCTION__, appctx);
1350 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOUT;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001351 goto exit;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001352 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001353
Christopher Faulet42bfa462017-01-04 14:14:19 +01001354 if (SPOE_APPCTX(appctx)->task->expire == TICK_ETERNITY)
Christopher Faulet8ef75252017-02-20 22:56:03 +01001355 SPOE_APPCTX(appctx)->task->expire =
1356 tick_add_ifset(now_ms, agent->timeout.hello);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001357
Christopher Faulet8ef75252017-02-20 22:56:03 +01001358 /* 4 bytes are reserved at the beginning of <buf> to store the frame
1359 * length. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001360 buf = trash.area; frame = buf+4;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001361 ret = spoe_prepare_hahello_frame(appctx, frame,
1362 SPOE_APPCTX(appctx)->max_frame_size);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001363 if (ret > 1)
Christopher Faulet8ef75252017-02-20 22:56:03 +01001364 ret = spoe_send_frame(appctx, buf, ret);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001365
1366 switch (ret) {
1367 case -1: /* error */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001368 case 0: /* ignore => an error, cannot be ignored */
1369 goto exit;
1370
1371 case 1: /* retry later */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001372 goto stop;
1373
Christopher Faulet8ef75252017-02-20 22:56:03 +01001374 default:
1375 /* HELLO frame successfully sent, now wait for the
1376 * reply. */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001377 appctx->st0 = SPOE_APPCTX_ST_CONNECTING;
1378 goto next;
1379 }
1380
1381 next:
1382 return 0;
1383 stop:
1384 return 1;
1385 exit:
1386 appctx->st0 = SPOE_APPCTX_ST_EXIT;
1387 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001388}
1389
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001390static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001391spoe_handle_connecting_appctx(struct appctx *appctx)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001392{
Christopher Fauleta1cda022016-12-21 08:58:06 +01001393 struct stream_interface *si = appctx->owner;
Christopher Faulet42bfa462017-01-04 14:14:19 +01001394 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001395 char *frame;
1396 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001397
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001398
Christopher Fauletb067b062017-01-04 16:39:11 +01001399 if (si->state == SI_ST_CLO || si_opposite(si)->state == SI_ST_CLO) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001400 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001401 goto exit;
Christopher Fauletb067b062017-01-04 16:39:11 +01001402 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001403
Christopher Fauleta1cda022016-12-21 08:58:06 +01001404 if (appctx->st1 == SPOE_APPCTX_ERR_TOUT) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001405 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
1406 " - Connection timed out\n",
1407 (int)now.tv_sec, (int)now.tv_usec, agent->id,
1408 __FUNCTION__, appctx);
1409 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOUT;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001410 goto exit;
1411 }
1412
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001413 frame = trash.area; trash.data = 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001414 ret = spoe_recv_frame(appctx, frame,
1415 SPOE_APPCTX(appctx)->max_frame_size);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001416 if (ret > 1) {
1417 if (*frame == SPOE_FRM_T_AGENT_DISCON) {
1418 appctx->st0 = SPOE_APPCTX_ST_DISCONNECTING;
1419 goto next;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001420 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001421 trash.data = ret + 4;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001422 ret = spoe_handle_agenthello_frame(appctx, frame, ret);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001423 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001424
Christopher Fauleta1cda022016-12-21 08:58:06 +01001425 switch (ret) {
1426 case -1: /* error */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001427 case 0: /* ignore => an error, cannot be ignored */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001428 appctx->st0 = SPOE_APPCTX_ST_DISCONNECT;
1429 goto next;
1430
1431 case 1: /* retry later */
1432 goto stop;
1433
1434 default:
Olivier Houchard9e7ae282019-03-08 18:50:42 +01001435 _HA_ATOMIC_ADD(&agent->counters.idles, 1);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001436 appctx->st0 = SPOE_APPCTX_ST_IDLE;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001437 SPOE_APPCTX(appctx)->node.key = 0;
1438 eb32_insert(&agent->rt[tid].idle_applets, &SPOE_APPCTX(appctx)->node);
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01001439
1440 /* Update runtinme agent info */
Christopher Faulet24289f22017-09-25 14:48:02 +02001441 HA_ATOMIC_UPDATE_MIN(&agent->rt[tid].frame_size, SPOE_APPCTX(appctx)->max_frame_size);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001442 goto next;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001443 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001444
Christopher Fauleta1cda022016-12-21 08:58:06 +01001445 next:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001446 /* Do not forget to remove processed frame from the output buffer */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001447 if (trash.data)
1448 co_skip(si_oc(si), trash.data);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001449
1450 SPOE_APPCTX(appctx)->task->expire =
1451 tick_add_ifset(now_ms, agent->timeout.idle);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001452 return 0;
1453 stop:
1454 return 1;
1455 exit:
1456 appctx->st0 = SPOE_APPCTX_ST_EXIT;
1457 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001458}
1459
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001460
Christopher Fauleta1cda022016-12-21 08:58:06 +01001461static int
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001462spoe_handle_sending_frame_appctx(struct appctx *appctx, int *skip)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001463{
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001464 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
1465 struct spoe_context *ctx = NULL;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001466 char *frame, *buf;
1467 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001468
Christopher Faulet8ef75252017-02-20 22:56:03 +01001469 /* 4 bytes are reserved at the beginning of <buf> to store the frame
1470 * length. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001471 buf = trash.area; frame = buf+4;
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001472
1473 if (appctx->st0 == SPOE_APPCTX_ST_SENDING_FRAG_NOTIFY) {
1474 ctx = SPOE_APPCTX(appctx)->frag_ctx.ctx;
1475 ret = spoe_prepare_hafrag_frame(appctx, ctx, frame,
1476 SPOE_APPCTX(appctx)->max_frame_size);
1477 }
Christopher Faulet24289f22017-09-25 14:48:02 +02001478 else if (LIST_ISEMPTY(&agent->rt[tid].sending_queue)) {
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001479 *skip = 1;
1480 ret = 1;
1481 goto end;
1482 }
1483 else {
Christopher Faulet24289f22017-09-25 14:48:02 +02001484 ctx = LIST_NEXT(&agent->rt[tid].sending_queue, typeof(ctx), list);
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001485 ret = spoe_prepare_hanotify_frame(appctx, ctx, frame,
1486 SPOE_APPCTX(appctx)->max_frame_size);
1487
1488 }
1489
Christopher Faulet8ef75252017-02-20 22:56:03 +01001490 if (ret > 1)
1491 ret = spoe_send_frame(appctx, buf, ret);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001492
Christopher Faulet8ef75252017-02-20 22:56:03 +01001493 switch (ret) {
1494 case -1: /* error */
1495 appctx->st0 = SPOE_APPCTX_ST_DISCONNECT;
1496 goto end;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001497
Christopher Faulet8ef75252017-02-20 22:56:03 +01001498 case 0: /* ignore */
1499 if (ctx == NULL)
1500 goto abort_frag_frame;
1501
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001502 spoe_release_buffer(&ctx->buffer, &ctx->buffer_wait);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001503 LIST_DEL(&ctx->list);
1504 LIST_INIT(&ctx->list);
Olivier Houchard9e7ae282019-03-08 18:50:42 +01001505 _HA_ATOMIC_SUB(&agent->counters.nb_sending, 1);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01001506 spoe_update_stat_time(&ctx->stats.tv_queue, &ctx->stats.t_queue);
Christopher Fauletfce747b2018-01-24 15:59:32 +01001507 ctx->spoe_appctx = NULL;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001508 ctx->state = SPOE_CTX_ST_ERROR;
1509 ctx->status_code = (SPOE_APPCTX(appctx)->status_code + 0x100);
1510 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001511 *skip = 1;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001512 break;
1513
1514 case 1: /* retry */
1515 *skip = 1;
1516 break;
1517
1518 default:
1519 if (ctx == NULL)
1520 goto abort_frag_frame;
1521
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001522 spoe_release_buffer(&ctx->buffer, &ctx->buffer_wait);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001523 LIST_DEL(&ctx->list);
1524 LIST_INIT(&ctx->list);
Olivier Houchard9e7ae282019-03-08 18:50:42 +01001525 _HA_ATOMIC_SUB(&agent->counters.nb_sending, 1);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01001526 spoe_update_stat_time(&ctx->stats.tv_queue, &ctx->stats.t_queue);
Christopher Fauletfce747b2018-01-24 15:59:32 +01001527 ctx->spoe_appctx = SPOE_APPCTX(appctx);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001528 if (!(ctx->flags & SPOE_CTX_FL_FRAGMENTED) ||
1529 (ctx->frag_ctx.flags & SPOE_FRM_FL_FIN))
1530 goto no_frag_frame_sent;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001531 else
Christopher Faulet8ef75252017-02-20 22:56:03 +01001532 goto frag_frame_sent;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001533 }
1534 goto end;
1535
1536 frag_frame_sent:
1537 appctx->st0 = SPOE_APPCTX_ST_SENDING_FRAG_NOTIFY;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001538 *skip = 1;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001539 SPOE_APPCTX(appctx)->frag_ctx.ctx = ctx;
1540 SPOE_APPCTX(appctx)->frag_ctx.cursid = ctx->stream_id;
1541 SPOE_APPCTX(appctx)->frag_ctx.curfid = ctx->frame_id;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001542 ctx->state = SPOE_CTX_ST_ENCODING_MSGS;
1543 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
1544 goto end;
1545
1546 no_frag_frame_sent:
1547 if (SPOE_APPCTX(appctx)->flags & SPOE_APPCTX_FL_ASYNC) {
1548 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
Christopher Faulet24289f22017-09-25 14:48:02 +02001549 LIST_ADDQ(&agent->rt[tid].waiting_queue, &ctx->list);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001550 }
1551 else if (SPOE_APPCTX(appctx)->flags & SPOE_APPCTX_FL_PIPELINING) {
1552 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
1553 LIST_ADDQ(&SPOE_APPCTX(appctx)->waiting_queue, &ctx->list);
1554 }
1555 else {
1556 appctx->st0 = SPOE_APPCTX_ST_WAITING_SYNC_ACK;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001557 *skip = 1;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001558 LIST_ADDQ(&SPOE_APPCTX(appctx)->waiting_queue, &ctx->list);
1559 }
Olivier Houchard9e7ae282019-03-08 18:50:42 +01001560 _HA_ATOMIC_ADD(&agent->counters.nb_waiting, 1);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01001561 ctx->stats.tv_wait = now;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001562 SPOE_APPCTX(appctx)->frag_ctx.ctx = NULL;
1563 SPOE_APPCTX(appctx)->frag_ctx.cursid = 0;
1564 SPOE_APPCTX(appctx)->frag_ctx.curfid = 0;
Christopher Faulet8f82b202018-01-24 16:23:03 +01001565 SPOE_APPCTX(appctx)->cur_fpa++;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001566
Christopher Faulet8ef75252017-02-20 22:56:03 +01001567 ctx->state = SPOE_CTX_ST_WAITING_ACK;
1568 goto end;
1569
1570 abort_frag_frame:
1571 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
1572 SPOE_APPCTX(appctx)->frag_ctx.ctx = NULL;
1573 SPOE_APPCTX(appctx)->frag_ctx.cursid = 0;
1574 SPOE_APPCTX(appctx)->frag_ctx.curfid = 0;
1575 goto end;
1576
1577 end:
1578 return ret;
1579}
1580
1581static int
1582spoe_handle_receiving_frame_appctx(struct appctx *appctx, int *skip)
1583{
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02001584 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001585 struct spoe_context *ctx = NULL;
1586 char *frame;
1587 int ret;
1588
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001589 frame = trash.area; trash.data = 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001590 ret = spoe_recv_frame(appctx, frame,
1591 SPOE_APPCTX(appctx)->max_frame_size);
1592 if (ret > 1) {
1593 if (*frame == SPOE_FRM_T_AGENT_DISCON) {
1594 appctx->st0 = SPOE_APPCTX_ST_DISCONNECTING;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001595 ret = -1;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001596 goto end;
1597 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001598 trash.data = ret + 4;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001599 ret = spoe_handle_agentack_frame(appctx, &ctx, frame, ret);
1600 }
1601 switch (ret) {
1602 case -1: /* error */
1603 appctx->st0 = SPOE_APPCTX_ST_DISCONNECT;
1604 break;
1605
1606 case 0: /* ignore */
1607 break;
1608
1609 case 1: /* retry */
1610 *skip = 1;
1611 break;
1612
1613 default:
1614 LIST_DEL(&ctx->list);
1615 LIST_INIT(&ctx->list);
Olivier Houchard9e7ae282019-03-08 18:50:42 +01001616 _HA_ATOMIC_SUB(&agent->counters.nb_waiting, 1);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01001617 spoe_update_stat_time(&ctx->stats.tv_wait, &ctx->stats.t_waiting);
1618 ctx->stats.tv_response = now;
Christopher Faulet8f82b202018-01-24 16:23:03 +01001619 if (ctx->spoe_appctx) {
1620 ctx->spoe_appctx->cur_fpa--;
Christopher Fauletfce747b2018-01-24 15:59:32 +01001621 ctx->spoe_appctx = NULL;
Christopher Faulet8f82b202018-01-24 16:23:03 +01001622 }
Christopher Faulet8eda93f2017-02-09 09:44:33 +01001623 if (appctx->st0 == SPOE_APPCTX_ST_SENDING_FRAG_NOTIFY &&
1624 ctx == SPOE_APPCTX(appctx)->frag_ctx.ctx) {
1625 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
1626 SPOE_APPCTX(appctx)->frag_ctx.ctx = NULL;
1627 SPOE_APPCTX(appctx)->frag_ctx.cursid = 0;
1628 SPOE_APPCTX(appctx)->frag_ctx.curfid = 0;
1629 }
1630 else if (appctx->st0 == SPOE_APPCTX_ST_WAITING_SYNC_ACK)
1631 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001632 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
1633 break;
1634 }
1635
1636 /* Do not forget to remove processed frame from the output buffer */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001637 if (trash.data)
1638 co_skip(si_oc(appctx->owner), trash.data);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001639 end:
1640 return ret;
1641}
1642
1643static int
1644spoe_handle_processing_appctx(struct appctx *appctx)
1645{
1646 struct stream_interface *si = appctx->owner;
1647 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Faulet8f82b202018-01-24 16:23:03 +01001648 int ret, skip_sending = 0, skip_receiving = 0, active_s = 0, active_r = 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001649
1650 if (si->state == SI_ST_CLO || si_opposite(si)->state == SI_ST_CLO) {
1651 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO;
1652 goto exit;
1653 }
1654
1655 if (appctx->st1 == SPOE_APPCTX_ERR_TOUT) {
1656 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOUT;
1657 appctx->st0 = SPOE_APPCTX_ST_DISCONNECT;
1658 appctx->st1 = SPOE_APPCTX_ERR_NONE;
1659 goto next;
1660 }
1661
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001662 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001663 " - process: fpa=%u/%u - appctx-state=%s - weight=%u - flags=0x%08x\n",
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001664 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Faulet8f82b202018-01-24 16:23:03 +01001665 __FUNCTION__, appctx, SPOE_APPCTX(appctx)->cur_fpa,
1666 agent->max_fpa, spoe_appctx_state_str[appctx->st0],
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001667 SPOE_APPCTX(appctx)->node.key, SPOE_APPCTX(appctx)->flags);
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001668
Christopher Faulet8f82b202018-01-24 16:23:03 +01001669 if (appctx->st0 == SPOE_APPCTX_ST_WAITING_SYNC_ACK)
1670 skip_sending = 1;
Christopher Faulet4596fb72017-01-11 14:05:19 +01001671
Christopher Faulet8f82b202018-01-24 16:23:03 +01001672 /* receiving_frame loop */
1673 while (!skip_receiving) {
1674 ret = spoe_handle_receiving_frame_appctx(appctx, &skip_receiving);
1675 switch (ret) {
1676 case -1: /* error */
1677 goto next;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001678
Christopher Faulet8f82b202018-01-24 16:23:03 +01001679 case 0: /* ignore */
1680 active_r = 1;
1681 break;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001682
Christopher Faulet8f82b202018-01-24 16:23:03 +01001683 case 1: /* retry */
1684 break;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001685
Christopher Faulet8f82b202018-01-24 16:23:03 +01001686 default:
1687 active_r = 1;
1688 break;
1689 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001690 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001691
Christopher Faulet8f82b202018-01-24 16:23:03 +01001692 /* send_frame loop */
1693 while (!skip_sending && SPOE_APPCTX(appctx)->cur_fpa < agent->max_fpa) {
1694 ret = spoe_handle_sending_frame_appctx(appctx, &skip_sending);
1695 switch (ret) {
1696 case -1: /* error */
1697 goto next;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001698
Christopher Faulet8f82b202018-01-24 16:23:03 +01001699 case 0: /* ignore */
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001700 if (SPOE_APPCTX(appctx)->node.key)
1701 SPOE_APPCTX(appctx)->node.key--;
Christopher Faulet8f82b202018-01-24 16:23:03 +01001702 active_s++;
1703 break;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001704
Christopher Faulet8f82b202018-01-24 16:23:03 +01001705 case 1: /* retry */
1706 break;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001707
Christopher Faulet8f82b202018-01-24 16:23:03 +01001708 default:
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001709 if (SPOE_APPCTX(appctx)->node.key)
1710 SPOE_APPCTX(appctx)->node.key--;
Christopher Faulet8f82b202018-01-24 16:23:03 +01001711 active_s++;
1712 break;
1713 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001714 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001715
Christopher Faulet8f82b202018-01-24 16:23:03 +01001716 if (active_s || active_r) {
Christopher Faulet8f82b202018-01-24 16:23:03 +01001717 update_freq_ctr(&agent->rt[tid].processing_per_sec, active_s);
1718 SPOE_APPCTX(appctx)->task->expire = tick_add_ifset(now_ms, agent->timeout.idle);
1719 }
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001720
Christopher Faulet8f82b202018-01-24 16:23:03 +01001721 if (appctx->st0 == SPOE_APPCTX_ST_PROCESSING && SPOE_APPCTX(appctx)->cur_fpa < agent->max_fpa) {
Christopher Faulet9e647e52021-03-01 15:01:14 +01001722 struct server *srv = objt_server(si_strm(si)->target);
1723
1724 /* With several threads, close the applet if there are pending
1725 * connections or if the server is full. Otherwise, add the
1726 * applet in the idle list.
1727 */
1728 if (global.nbthread > 1 &&
1729 (agent->b.be->nbpend ||
1730 (srv && (srv->nbpend || (srv->maxconn && srv->served >=srv_dynamic_maxconn(srv)))))) {
1731 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_NONE;
1732 appctx->st0 = SPOE_APPCTX_ST_DISCONNECT;
1733 appctx->st1 = SPOE_APPCTX_ERR_NONE;
1734 goto next;
1735 }
Olivier Houchard9e7ae282019-03-08 18:50:42 +01001736 _HA_ATOMIC_ADD(&agent->counters.idles, 1);
Christopher Faulet8f82b202018-01-24 16:23:03 +01001737 appctx->st0 = SPOE_APPCTX_ST_IDLE;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001738 eb32_insert(&agent->rt[tid].idle_applets, &SPOE_APPCTX(appctx)->node);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001739 }
1740 return 1;
1741
Christopher Faulet8f82b202018-01-24 16:23:03 +01001742 next:
1743 SPOE_APPCTX(appctx)->task->expire = tick_add_ifset(now_ms, agent->timeout.idle);
1744 return 0;
1745
Christopher Fauleta1cda022016-12-21 08:58:06 +01001746 exit:
1747 appctx->st0 = SPOE_APPCTX_ST_EXIT;
1748 return 0;
1749}
1750
1751static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001752spoe_handle_disconnect_appctx(struct appctx *appctx)
Christopher Fauleta1cda022016-12-21 08:58:06 +01001753{
1754 struct stream_interface *si = appctx->owner;
Christopher Faulet42bfa462017-01-04 14:14:19 +01001755 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001756 char *frame, *buf;
1757 int ret;
Christopher Fauletb067b062017-01-04 16:39:11 +01001758
Christopher Fauleta1cda022016-12-21 08:58:06 +01001759 if (si->state == SI_ST_CLO || si_opposite(si)->state == SI_ST_CLO)
1760 goto exit;
1761
1762 if (appctx->st1 == SPOE_APPCTX_ERR_TOUT)
1763 goto exit;
1764
Christopher Faulet8ef75252017-02-20 22:56:03 +01001765 /* 4 bytes are reserved at the beginning of <buf> to store the frame
1766 * length. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001767 buf = trash.area; frame = buf+4;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001768 ret = spoe_prepare_hadiscon_frame(appctx, frame,
1769 SPOE_APPCTX(appctx)->max_frame_size);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001770 if (ret > 1)
Christopher Faulet8ef75252017-02-20 22:56:03 +01001771 ret = spoe_send_frame(appctx, buf, ret);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001772
1773 switch (ret) {
1774 case -1: /* error */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001775 case 0: /* ignore => an error, cannot be ignored */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001776 goto exit;
1777
1778 case 1: /* retry */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001779 goto stop;
1780
1781 default:
1782 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
1783 " - disconnected by HAProxy (%d): %s\n",
1784 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Faulet8ef75252017-02-20 22:56:03 +01001785 __FUNCTION__, appctx,
1786 SPOE_APPCTX(appctx)->status_code,
1787 spoe_frm_err_reasons[SPOE_APPCTX(appctx)->status_code]);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001788
1789 appctx->st0 = SPOE_APPCTX_ST_DISCONNECTING;
1790 goto next;
1791 }
1792
1793 next:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001794 SPOE_APPCTX(appctx)->task->expire =
1795 tick_add_ifset(now_ms, agent->timeout.idle);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001796 return 0;
1797 stop:
1798 return 1;
1799 exit:
1800 appctx->st0 = SPOE_APPCTX_ST_EXIT;
1801 return 0;
1802}
1803
1804static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001805spoe_handle_disconnecting_appctx(struct appctx *appctx)
Christopher Fauleta1cda022016-12-21 08:58:06 +01001806{
1807 struct stream_interface *si = appctx->owner;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001808 char *frame;
1809 int ret;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001810
Christopher Fauletb067b062017-01-04 16:39:11 +01001811 if (si->state == SI_ST_CLO || si_opposite(si)->state == SI_ST_CLO) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001812 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001813 goto exit;
Christopher Fauletb067b062017-01-04 16:39:11 +01001814 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001815
Christopher Fauletb067b062017-01-04 16:39:11 +01001816 if (appctx->st1 == SPOE_APPCTX_ERR_TOUT) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001817 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOUT;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001818 goto exit;
Christopher Fauletb067b062017-01-04 16:39:11 +01001819 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001820
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001821 frame = trash.area; trash.data = 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001822 ret = spoe_recv_frame(appctx, frame,
1823 SPOE_APPCTX(appctx)->max_frame_size);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001824 if (ret > 1) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001825 trash.data = ret + 4;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001826 ret = spoe_handle_agentdiscon_frame(appctx, frame, ret);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001827 }
1828
1829 switch (ret) {
1830 case -1: /* error */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001831 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
1832 " - error on frame (%s)\n",
1833 (int)now.tv_sec, (int)now.tv_usec,
Christopher Faulet42bfa462017-01-04 14:14:19 +01001834 ((struct spoe_agent *)SPOE_APPCTX(appctx)->agent)->id,
Christopher Fauleta1cda022016-12-21 08:58:06 +01001835 __FUNCTION__, appctx,
Christopher Faulet8ef75252017-02-20 22:56:03 +01001836 spoe_frm_err_reasons[SPOE_APPCTX(appctx)->status_code]);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001837 goto exit;
1838
1839 case 0: /* ignore */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001840 goto next;
1841
1842 case 1: /* retry */
1843 goto stop;
1844
1845 default:
Christopher Fauleta1cda022016-12-21 08:58:06 +01001846 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
Christopher Faulet8ef75252017-02-20 22:56:03 +01001847 " - disconnected by peer (%d): %.*s\n",
Christopher Fauleta1cda022016-12-21 08:58:06 +01001848 (int)now.tv_sec, (int)now.tv_usec,
Christopher Faulet42bfa462017-01-04 14:14:19 +01001849 ((struct spoe_agent *)SPOE_APPCTX(appctx)->agent)->id,
Christopher Faulet8ef75252017-02-20 22:56:03 +01001850 __FUNCTION__, appctx, SPOE_APPCTX(appctx)->status_code,
1851 SPOE_APPCTX(appctx)->rlen, SPOE_APPCTX(appctx)->reason);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001852 goto exit;
1853 }
1854
1855 next:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001856 /* Do not forget to remove processed frame from the output buffer */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001857 if (trash.data)
1858 co_skip(si_oc(appctx->owner), trash.data);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001859
Christopher Fauleta1cda022016-12-21 08:58:06 +01001860 return 0;
1861 stop:
1862 return 1;
1863 exit:
1864 appctx->st0 = SPOE_APPCTX_ST_EXIT;
1865 return 0;
1866}
1867
1868/* I/O Handler processing messages exchanged with the agent */
1869static void
Christopher Faulet8ef75252017-02-20 22:56:03 +01001870spoe_handle_appctx(struct appctx *appctx)
Christopher Fauleta1cda022016-12-21 08:58:06 +01001871{
Christopher Faulet8ef75252017-02-20 22:56:03 +01001872 struct stream_interface *si = appctx->owner;
1873 struct spoe_agent *agent;
1874
1875 if (SPOE_APPCTX(appctx) == NULL)
1876 return;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001877
Christopher Faulet8ef75252017-02-20 22:56:03 +01001878 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_NONE;
1879 agent = SPOE_APPCTX(appctx)->agent;
Christopher Fauletb067b062017-01-04 16:39:11 +01001880
Christopher Fauleta1cda022016-12-21 08:58:06 +01001881 switchstate:
1882 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
1883 " - appctx-state=%s\n",
1884 (int)now.tv_sec, (int)now.tv_usec, agent->id,
1885 __FUNCTION__, appctx, spoe_appctx_state_str[appctx->st0]);
1886
1887 switch (appctx->st0) {
1888 case SPOE_APPCTX_ST_CONNECT:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001889 if (spoe_handle_connect_appctx(appctx))
Christopher Fauleta1cda022016-12-21 08:58:06 +01001890 goto out;
1891 goto switchstate;
1892
1893 case SPOE_APPCTX_ST_CONNECTING:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001894 if (spoe_handle_connecting_appctx(appctx))
Christopher Fauleta1cda022016-12-21 08:58:06 +01001895 goto out;
1896 goto switchstate;
1897
1898 case SPOE_APPCTX_ST_IDLE:
Olivier Houchard9e7ae282019-03-08 18:50:42 +01001899 _HA_ATOMIC_SUB(&agent->counters.idles, 1);
Christopher Faulet7d9f1ba2018-02-28 13:33:26 +01001900 eb32_delete(&SPOE_APPCTX(appctx)->node);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001901 if (stopping &&
Christopher Faulet24289f22017-09-25 14:48:02 +02001902 LIST_ISEMPTY(&agent->rt[tid].sending_queue) &&
Christopher Faulet42bfa462017-01-04 14:14:19 +01001903 LIST_ISEMPTY(&SPOE_APPCTX(appctx)->waiting_queue)) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001904 SPOE_APPCTX(appctx)->task->expire =
1905 tick_add_ifset(now_ms, agent->timeout.idle);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001906 appctx->st0 = SPOE_APPCTX_ST_DISCONNECT;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001907 goto switchstate;
1908 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001909 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
1910 /* fall through */
1911
1912 case SPOE_APPCTX_ST_PROCESSING:
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001913 case SPOE_APPCTX_ST_SENDING_FRAG_NOTIFY:
1914 case SPOE_APPCTX_ST_WAITING_SYNC_ACK:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001915 if (spoe_handle_processing_appctx(appctx))
Christopher Fauleta1cda022016-12-21 08:58:06 +01001916 goto out;
1917 goto switchstate;
1918
1919 case SPOE_APPCTX_ST_DISCONNECT:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001920 if (spoe_handle_disconnect_appctx(appctx))
Christopher Fauleta1cda022016-12-21 08:58:06 +01001921 goto out;
1922 goto switchstate;
1923
1924 case SPOE_APPCTX_ST_DISCONNECTING:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001925 if (spoe_handle_disconnecting_appctx(appctx))
Christopher Fauleta1cda022016-12-21 08:58:06 +01001926 goto out;
1927 goto switchstate;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001928
1929 case SPOE_APPCTX_ST_EXIT:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001930 appctx->st0 = SPOE_APPCTX_ST_END;
1931 SPOE_APPCTX(appctx)->task->expire = TICK_ETERNITY;
1932
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001933 si_shutw(si);
1934 si_shutr(si);
1935 si_ic(si)->flags |= CF_READ_NULL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001936 /* fall through */
1937
1938 case SPOE_APPCTX_ST_END:
Christopher Fauleta73e59b2016-12-09 17:30:18 +01001939 return;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001940 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001941 out:
Christopher Faulet24289f22017-09-25 14:48:02 +02001942 if (stopping)
1943 spoe_wakeup_appctx(appctx);
1944
Christopher Faulet42bfa462017-01-04 14:14:19 +01001945 if (SPOE_APPCTX(appctx)->task->expire != TICK_ETERNITY)
1946 task_queue(SPOE_APPCTX(appctx)->task);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001947}
1948
1949struct applet spoe_applet = {
1950 .obj_type = OBJ_TYPE_APPLET,
1951 .name = "<SPOE>", /* used for logging */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001952 .fct = spoe_handle_appctx,
1953 .release = spoe_release_appctx,
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001954};
1955
1956/* Create a SPOE applet. On success, the created applet is returned, else
1957 * NULL. */
1958static struct appctx *
Christopher Faulet8ef75252017-02-20 22:56:03 +01001959spoe_create_appctx(struct spoe_config *conf)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001960{
1961 struct appctx *appctx;
1962 struct session *sess;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001963 struct stream *strm;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001964
Emeric Brun1138fd02017-06-19 12:38:55 +02001965 if ((appctx = appctx_new(&spoe_applet, tid_bit)) == NULL)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001966 goto out_error;
1967
Willy Tarreaubafbe012017-11-24 17:34:44 +01001968 appctx->ctx.spoe.ptr = pool_alloc_dirty(pool_head_spoe_appctx);
Christopher Faulet42bfa462017-01-04 14:14:19 +01001969 if (SPOE_APPCTX(appctx) == NULL)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001970 goto out_free_appctx;
Willy Tarreaubafbe012017-11-24 17:34:44 +01001971 memset(appctx->ctx.spoe.ptr, 0, pool_head_spoe_appctx->size);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001972
Christopher Faulet42bfa462017-01-04 14:14:19 +01001973 appctx->st0 = SPOE_APPCTX_ST_CONNECT;
Willy Tarreau5f4a47b2017-10-31 15:59:32 +01001974 if ((SPOE_APPCTX(appctx)->task = task_new(tid_bit)) == NULL)
Christopher Faulet42bfa462017-01-04 14:14:19 +01001975 goto out_free_spoe_appctx;
1976
1977 SPOE_APPCTX(appctx)->owner = appctx;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001978 SPOE_APPCTX(appctx)->task->process = spoe_process_appctx;
Christopher Faulet42bfa462017-01-04 14:14:19 +01001979 SPOE_APPCTX(appctx)->task->context = appctx;
1980 SPOE_APPCTX(appctx)->agent = conf->agent;
1981 SPOE_APPCTX(appctx)->version = 0;
1982 SPOE_APPCTX(appctx)->max_frame_size = conf->agent->max_frame_size;
1983 SPOE_APPCTX(appctx)->flags = 0;
Christopher Fauletb067b062017-01-04 16:39:11 +01001984 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_NONE;
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001985 SPOE_APPCTX(appctx)->buffer = BUF_NULL;
Christopher Faulet8f82b202018-01-24 16:23:03 +01001986 SPOE_APPCTX(appctx)->cur_fpa = 0;
Christopher Faulet4596fb72017-01-11 14:05:19 +01001987
Willy Tarreau90f366b2021-02-20 11:49:49 +01001988 LIST_INIT(&SPOE_APPCTX(appctx)->buffer_wait.list);
Christopher Faulet4596fb72017-01-11 14:05:19 +01001989 SPOE_APPCTX(appctx)->buffer_wait.target = appctx;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001990 SPOE_APPCTX(appctx)->buffer_wait.wakeup_cb = (int (*)(void *))spoe_wakeup_appctx;
Christopher Faulet42bfa462017-01-04 14:14:19 +01001991
1992 LIST_INIT(&SPOE_APPCTX(appctx)->list);
1993 LIST_INIT(&SPOE_APPCTX(appctx)->waiting_queue);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001994
Willy Tarreau5820a362016-12-22 15:59:02 +01001995 sess = session_new(&conf->agent_fe, NULL, &appctx->obj_type);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001996 if (!sess)
1997 goto out_free_spoe;
1998
Christopher Faulet26256f82020-09-14 11:40:13 +02001999 if ((strm = stream_new(sess, &appctx->obj_type, &BUF_NULL)) == NULL)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002000 goto out_free_sess;
2001
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002002 stream_set_backend(strm, conf->agent->b.be);
2003
2004 /* applet is waiting for data */
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01002005 si_cant_get(&strm->si[0]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002006 appctx_wakeup(appctx);
2007
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002008 strm->do_log = NULL;
2009 strm->res.flags |= CF_READ_DONTWAIT;
2010
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002011 HA_SPIN_LOCK(SPOE_APPLET_LOCK, &conf->agent->rt[tid].lock);
Christopher Faulet24289f22017-09-25 14:48:02 +02002012 LIST_ADDQ(&conf->agent->rt[tid].applets, &SPOE_APPCTX(appctx)->list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002013 HA_SPIN_UNLOCK(SPOE_APPLET_LOCK, &conf->agent->rt[tid].lock);
Olivier Houchard9e7ae282019-03-08 18:50:42 +01002014 _HA_ATOMIC_ADD(&conf->agent->counters.applets, 1);
Emeric Brun5f77fef2017-05-29 15:26:51 +02002015
Emeric Brunc60def82017-09-27 14:59:38 +02002016 task_wakeup(SPOE_APPCTX(appctx)->task, TASK_WOKEN_INIT);
Willy Tarreau87787ac2017-08-28 16:22:54 +02002017 task_wakeup(strm->task, TASK_WOKEN_INIT);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002018 return appctx;
2019
2020 /* Error unrolling */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002021 out_free_sess:
2022 session_free(sess);
2023 out_free_spoe:
Olivier Houchard3f795f72019-04-17 22:51:06 +02002024 task_destroy(SPOE_APPCTX(appctx)->task);
Christopher Faulet42bfa462017-01-04 14:14:19 +01002025 out_free_spoe_appctx:
Willy Tarreaubafbe012017-11-24 17:34:44 +01002026 pool_free(pool_head_spoe_appctx, SPOE_APPCTX(appctx));
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002027 out_free_appctx:
2028 appctx_free(appctx);
2029 out_error:
2030 return NULL;
2031}
2032
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002033static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01002034spoe_queue_context(struct spoe_context *ctx)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002035{
2036 struct spoe_config *conf = FLT_CONF(ctx->filter);
2037 struct spoe_agent *agent = conf->agent;
2038 struct appctx *appctx;
Christopher Faulet42bfa462017-01-04 14:14:19 +01002039 struct spoe_appctx *spoe_appctx;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002040
Christopher Fauleta1cda022016-12-21 08:58:06 +01002041 /* Check if we need to create a new SPOE applet or not. */
Christopher Fauletb077cdc2018-01-24 16:37:57 +01002042 if (!eb_is_empty(&agent->rt[tid].idle_applets) &&
Christopher Fauleteccfa612020-06-22 15:32:14 +02002043 (agent->rt[tid].processing == 1 || agent->rt[tid].processing < read_freq_ctr(&agent->rt[tid].processing_per_sec)))
Christopher Fauleta1cda022016-12-21 08:58:06 +01002044 goto end;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002045
2046 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Fauleta1cda022016-12-21 08:58:06 +01002047 " - try to create new SPOE appctx\n",
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002048 (int)now.tv_sec, (int)now.tv_usec, agent->id, __FUNCTION__,
2049 ctx->strm);
2050
Christopher Fauleta1cda022016-12-21 08:58:06 +01002051 /* Do not try to create a new applet if there is no server up for the
2052 * agent's backend. */
2053 if (!agent->b.be->srv_act && !agent->b.be->srv_bck) {
2054 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2055 " - cannot create SPOE appctx: no server up\n",
2056 (int)now.tv_sec, (int)now.tv_usec, agent->id,
2057 __FUNCTION__, ctx->strm);
2058 goto end;
2059 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002060
Christopher Fauleta1cda022016-12-21 08:58:06 +01002061 /* Do not try to create a new applet if we have reached the maximum of
2062 * connection per seconds */
Christopher Faulet48026722016-11-16 15:01:12 +01002063 if (agent->cps_max > 0) {
Christopher Faulet24289f22017-09-25 14:48:02 +02002064 if (!freq_ctr_remain(&agent->rt[tid].conn_per_sec, agent->cps_max, 0)) {
Christopher Fauleta1cda022016-12-21 08:58:06 +01002065 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2066 " - cannot create SPOE appctx: max CPS reached\n",
2067 (int)now.tv_sec, (int)now.tv_usec, agent->id,
2068 __FUNCTION__, ctx->strm);
2069 goto end;
2070 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002071 }
2072
Christopher Faulet8ef75252017-02-20 22:56:03 +01002073 appctx = spoe_create_appctx(conf);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002074 if (appctx == NULL) {
2075 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2076 " - failed to create SPOE appctx\n",
2077 (int)now.tv_sec, (int)now.tv_usec, agent->id,
2078 __FUNCTION__, ctx->strm);
Christopher Faulet3b8e3492018-03-26 17:20:58 +02002079 send_log(&conf->agent_fe, LOG_EMERG,
Christopher Faulet72bcc472017-01-04 16:39:41 +01002080 "SPOE: [%s] failed to create SPOE applet\n",
2081 agent->id);
2082
Christopher Fauleta1cda022016-12-21 08:58:06 +01002083 goto end;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002084 }
2085
Christopher Fauleta1cda022016-12-21 08:58:06 +01002086 /* Increase the per-process number of cumulated connections */
2087 if (agent->cps_max > 0)
Christopher Faulet24289f22017-09-25 14:48:02 +02002088 update_freq_ctr(&agent->rt[tid].conn_per_sec, 1);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002089
Christopher Fauleta1cda022016-12-21 08:58:06 +01002090 end:
2091 /* The only reason to return an error is when there is no applet */
Christopher Faulet24289f22017-09-25 14:48:02 +02002092 if (LIST_ISEMPTY(&agent->rt[tid].applets)) {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002093 ctx->status_code = SPOE_CTX_ERR_RES;
2094 return -1;
2095 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002096
Christopher Faulet3e86cec2019-04-10 14:02:12 +02002097 /* Add the SPOE context in the sending queue if the stream has no applet
2098 * already assigned and wakeup all idle applets. Otherwise, don't queue
2099 * it. */
Olivier Houchard9e7ae282019-03-08 18:50:42 +01002100 _HA_ATOMIC_ADD(&agent->counters.nb_sending, 1);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002101 spoe_update_stat_time(&ctx->stats.tv_request, &ctx->stats.t_request);
2102 ctx->stats.tv_queue = now;
Christopher Faulet3e86cec2019-04-10 14:02:12 +02002103 if (ctx->spoe_appctx)
2104 return 1;
2105 LIST_ADDQ(&agent->rt[tid].sending_queue, &ctx->list);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002106
2107 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Faulet8ef75252017-02-20 22:56:03 +01002108 " - Add stream in sending queue"
Christopher Faulet68db0232018-04-06 11:34:12 +02002109 " - applets=%u - idles=%u - processing=%u\n",
Christopher Fauleta1cda022016-12-21 08:58:06 +01002110 (int)now.tv_sec, (int)now.tv_usec, agent->id, __FUNCTION__,
Christopher Faulet68db0232018-04-06 11:34:12 +02002111 ctx->strm, agent->counters.applets, agent->counters.idles,
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002112 agent->rt[tid].processing);
Christopher Fauletf7a30922016-11-10 15:04:51 +01002113
Christopher Fauletb077cdc2018-01-24 16:37:57 +01002114 /* Finally try to wakeup an IDLE applet. */
2115 if (!eb_is_empty(&agent->rt[tid].idle_applets)) {
2116 struct eb32_node *node;
2117
2118 node = eb32_first(&agent->rt[tid].idle_applets);
2119 spoe_appctx = eb32_entry(node, struct spoe_appctx, node);
2120 if (node && spoe_appctx) {
2121 eb32_delete(&spoe_appctx->node);
2122 spoe_appctx->node.key++;
2123 eb32_insert(&agent->rt[tid].idle_applets, &spoe_appctx->node);
2124 spoe_wakeup_appctx(spoe_appctx->owner);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002125 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002126 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01002127 return 1;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002128}
2129
2130/***************************************************************************
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002131 * Functions that encode SPOE messages
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002132 **************************************************************************/
Christopher Faulet10e37672017-09-21 16:38:22 +02002133/* Encode a SPOE message. Info in <ctx->frag_ctx>, if any, are used to handle
2134 * fragmented_content. If the next message can be processed, it returns 0. If
2135 * the message is too big, it returns -1.*/
2136static int
2137spoe_encode_message(struct stream *s, struct spoe_context *ctx,
2138 struct spoe_message *msg, int dir,
2139 char **buf, char *end)
2140{
2141 struct sample *smp;
2142 struct spoe_arg *arg;
2143 int ret;
2144
2145 if (msg->cond) {
2146 ret = acl_exec_cond(msg->cond, s->be, s->sess, s, dir|SMP_OPT_FINAL);
2147 ret = acl_pass(ret);
2148 if (msg->cond->pol == ACL_COND_UNLESS)
2149 ret = !ret;
2150
2151 /* the rule does not match */
2152 if (!ret)
2153 goto next;
2154 }
2155
2156 /* Resume encoding of a SPOE argument */
2157 if (ctx->frag_ctx.curarg != NULL) {
2158 arg = ctx->frag_ctx.curarg;
2159 goto encode_argument;
2160 }
2161
2162 if (ctx->frag_ctx.curoff != UINT_MAX)
2163 goto encode_msg_payload;
2164
2165 /* Check if there is enough space for the message name and the
2166 * number of arguments. It implies <msg->id_len> is encoded on 2
2167 * bytes, at most (< 2288). */
2168 if (*buf + 2 + msg->id_len + 1 > end)
2169 goto too_big;
2170
2171 /* Encode the message name */
2172 if (spoe_encode_buffer(msg->id, msg->id_len, buf, end) == -1)
2173 goto too_big;
2174
2175 /* Set the number of arguments for this message */
2176 **buf = msg->nargs;
2177 (*buf)++;
2178
2179 ctx->frag_ctx.curoff = 0;
2180 encode_msg_payload:
2181
2182 /* Loop on arguments */
2183 list_for_each_entry(arg, &msg->args, list) {
2184 ctx->frag_ctx.curarg = arg;
2185 ctx->frag_ctx.curoff = UINT_MAX;
Kevin Zhuf7f54282019-04-26 14:00:01 +08002186 ctx->frag_ctx.curlen = 0;
Christopher Faulet10e37672017-09-21 16:38:22 +02002187
2188 encode_argument:
2189 if (ctx->frag_ctx.curoff != UINT_MAX)
2190 goto encode_arg_value;
2191
Joseph Herlantf7f60312018-11-15 13:46:49 -08002192 /* Encode the argument name as a string. It can by NULL */
Christopher Faulet10e37672017-09-21 16:38:22 +02002193 if (spoe_encode_buffer(arg->name, arg->name_len, buf, end) == -1)
2194 goto too_big;
2195
2196 ctx->frag_ctx.curoff = 0;
2197 encode_arg_value:
2198
Joseph Herlantf7f60312018-11-15 13:46:49 -08002199 /* Fetch the argument value */
Christopher Faulet10e37672017-09-21 16:38:22 +02002200 smp = sample_process(s->be, s->sess, s, dir|SMP_OPT_FINAL, arg->expr, NULL);
Christopher Faulet3b1d0042019-05-06 09:53:10 +02002201 if (smp) {
2202 smp->ctx.a[0] = &ctx->frag_ctx.curlen;
2203 smp->ctx.a[1] = &ctx->frag_ctx.curoff;
2204 }
Christopher Faulet85db3212019-04-26 14:30:15 +02002205 ret = spoe_encode_data(smp, buf, end);
Christopher Faulet10e37672017-09-21 16:38:22 +02002206 if (ret == -1 || ctx->frag_ctx.curoff)
2207 goto too_big;
2208 }
2209
2210 next:
2211 return 0;
2212
2213 too_big:
2214 return -1;
2215}
2216
Christopher Fauletc718b822017-09-21 16:50:56 +02002217/* Encode list of SPOE messages. Info in <ctx->frag_ctx>, if any, are used to
2218 * handle fragmented content. On success it returns 1. If an error occurred, -1
2219 * is returned. If nothing has been encoded, it returns 0 (this is only possible
2220 * for unfragmented payload). */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002221static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01002222spoe_encode_messages(struct stream *s, struct spoe_context *ctx,
Christopher Fauletc718b822017-09-21 16:50:56 +02002223 struct list *messages, int dir, int type)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002224{
Christopher Fauleta1cda022016-12-21 08:58:06 +01002225 struct spoe_config *conf = FLT_CONF(ctx->filter);
2226 struct spoe_agent *agent = conf->agent;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002227 struct spoe_message *msg;
Christopher Faulet8ef75252017-02-20 22:56:03 +01002228 char *p, *end;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002229
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002230 p = b_head(&ctx->buffer);
Christopher Faulet24289f22017-09-25 14:48:02 +02002231 end = p + agent->rt[tid].frame_size - FRAME_HDR_SIZE;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002232
Christopher Fauletc718b822017-09-21 16:50:56 +02002233 if (type == SPOE_MSGS_BY_EVENT) { /* Loop on messages by event */
2234 /* Resume encoding of a SPOE message */
2235 if (ctx->frag_ctx.curmsg != NULL) {
2236 msg = ctx->frag_ctx.curmsg;
2237 goto encode_evt_message;
2238 }
2239
2240 list_for_each_entry(msg, messages, by_evt) {
2241 ctx->frag_ctx.curmsg = msg;
2242 ctx->frag_ctx.curarg = NULL;
2243 ctx->frag_ctx.curoff = UINT_MAX;
2244
2245 encode_evt_message:
2246 if (spoe_encode_message(s, ctx, msg, dir, &p, end) == -1)
2247 goto too_big;
2248 }
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002249 }
Christopher Fauletc718b822017-09-21 16:50:56 +02002250 else if (type == SPOE_MSGS_BY_GROUP) { /* Loop on messages by group */
2251 /* Resume encoding of a SPOE message */
2252 if (ctx->frag_ctx.curmsg != NULL) {
2253 msg = ctx->frag_ctx.curmsg;
2254 goto encode_grp_message;
2255 }
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002256
Christopher Fauletc718b822017-09-21 16:50:56 +02002257 list_for_each_entry(msg, messages, by_grp) {
2258 ctx->frag_ctx.curmsg = msg;
2259 ctx->frag_ctx.curarg = NULL;
2260 ctx->frag_ctx.curoff = UINT_MAX;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002261
Christopher Fauletc718b822017-09-21 16:50:56 +02002262 encode_grp_message:
2263 if (spoe_encode_message(s, ctx, msg, dir, &p, end) == -1)
2264 goto too_big;
2265 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002266 }
Christopher Fauletc718b822017-09-21 16:50:56 +02002267 else
2268 goto skip;
2269
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002270
Christopher Faulet57583e42017-09-04 15:41:09 +02002271 /* nothing has been encoded for an unfragmented payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002272 if (!(ctx->flags & SPOE_CTX_FL_FRAGMENTED) && p == b_head(&ctx->buffer))
Christopher Faulet57583e42017-09-04 15:41:09 +02002273 goto skip;
2274
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002275 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Faulet8ef75252017-02-20 22:56:03 +01002276 " - encode %s messages - spoe_appctx=%p"
2277 "- max_size=%u - encoded=%ld\n",
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002278 (int)now.tv_sec, (int)now.tv_usec,
2279 agent->id, __FUNCTION__, s,
2280 ((ctx->flags & SPOE_CTX_FL_FRAGMENTED) ? "last fragment of" : "unfragmented"),
Christopher Fauletfce747b2018-01-24 15:59:32 +01002281 ctx->spoe_appctx, (agent->rt[tid].frame_size - FRAME_HDR_SIZE),
Christopher Faulet45073512018-07-20 10:16:29 +02002282 p - b_head(&ctx->buffer));
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002283
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002284 b_set_data(&ctx->buffer, p - b_head(&ctx->buffer));
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002285 ctx->frag_ctx.curmsg = NULL;
2286 ctx->frag_ctx.curarg = NULL;
2287 ctx->frag_ctx.curoff = 0;
2288 ctx->frag_ctx.flags = SPOE_FRM_FL_FIN;
Christopher Faulet57583e42017-09-04 15:41:09 +02002289
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002290 return 1;
2291
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002292 too_big:
Christopher Fauleta715ea82019-04-10 14:21:51 +02002293 /* Return an error if fragmentation is unsupported or if nothing has
2294 * been encoded because its too big and not splittable. */
2295 if (!(agent->flags & SPOE_FL_SND_FRAGMENTATION) || p == b_head(&ctx->buffer)) {
Christopher Fauletcecd8522017-02-24 22:11:21 +01002296 ctx->status_code = SPOE_CTX_ERR_TOO_BIG;
2297 return -1;
2298 }
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002299
2300 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Faulet8ef75252017-02-20 22:56:03 +01002301 " - encode fragmented messages - spoe_appctx=%p"
2302 " - curmsg=%p - curarg=%p - curoff=%u"
2303 " - max_size=%u - encoded=%ld\n",
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002304 (int)now.tv_sec, (int)now.tv_usec,
Christopher Fauletfce747b2018-01-24 15:59:32 +01002305 agent->id, __FUNCTION__, s, ctx->spoe_appctx,
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002306 ctx->frag_ctx.curmsg, ctx->frag_ctx.curarg, ctx->frag_ctx.curoff,
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002307 (agent->rt[tid].frame_size - FRAME_HDR_SIZE), p - b_head(&ctx->buffer));
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002308
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002309 b_set_data(&ctx->buffer, p - b_head(&ctx->buffer));
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002310 ctx->flags |= SPOE_CTX_FL_FRAGMENTED;
2311 ctx->frag_ctx.flags &= ~SPOE_FRM_FL_FIN;
2312 return 1;
Christopher Faulet57583e42017-09-04 15:41:09 +02002313
2314 skip:
2315 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2316 " - skip the frame because nothing has been encoded\n",
2317 (int)now.tv_sec, (int)now.tv_usec,
2318 agent->id, __FUNCTION__, s);
2319 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002320}
2321
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002322
2323/***************************************************************************
2324 * Functions that handle SPOE actions
2325 **************************************************************************/
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002326/* Helper function to set a variable */
2327static void
Christopher Faulet8ef75252017-02-20 22:56:03 +01002328spoe_set_var(struct spoe_context *ctx, char *scope, char *name, int len,
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002329 struct sample *smp)
2330{
2331 struct spoe_config *conf = FLT_CONF(ctx->filter);
2332 struct spoe_agent *agent = conf->agent;
2333 char varname[64];
2334
2335 memset(varname, 0, sizeof(varname));
2336 len = snprintf(varname, sizeof(varname), "%s.%s.%.*s",
2337 scope, agent->var_pfx, len, name);
Etienne Carriereaec89892017-12-14 09:36:40 +00002338 if (agent->flags & SPOE_FL_FORCE_SET_VAR)
2339 vars_set_by_name(varname, len, smp);
2340 else
2341 vars_set_by_name_ifexist(varname, len, smp);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002342}
2343
2344/* Helper function to unset a variable */
2345static void
Christopher Faulet8ef75252017-02-20 22:56:03 +01002346spoe_unset_var(struct spoe_context *ctx, char *scope, char *name, int len,
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002347 struct sample *smp)
2348{
2349 struct spoe_config *conf = FLT_CONF(ctx->filter);
2350 struct spoe_agent *agent = conf->agent;
2351 char varname[64];
2352
2353 memset(varname, 0, sizeof(varname));
2354 len = snprintf(varname, sizeof(varname), "%s.%s.%.*s",
2355 scope, agent->var_pfx, len, name);
2356 vars_unset_by_name_ifexist(varname, len, smp);
2357}
2358
2359
Christopher Faulet8ef75252017-02-20 22:56:03 +01002360static inline int
2361spoe_decode_action_set_var(struct stream *s, struct spoe_context *ctx,
2362 char **buf, char *end, int dir)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002363{
Christopher Faulet8ef75252017-02-20 22:56:03 +01002364 char *str, *scope, *p = *buf;
2365 struct sample smp;
2366 uint64_t sz;
2367 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002368
Christopher Faulet8ef75252017-02-20 22:56:03 +01002369 if (p + 2 >= end)
2370 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002371
Christopher Faulet8ef75252017-02-20 22:56:03 +01002372 /* SET-VAR requires 3 arguments */
2373 if (*p++ != 3)
2374 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002375
Christopher Faulet8ef75252017-02-20 22:56:03 +01002376 switch (*p++) {
2377 case SPOE_SCOPE_PROC: scope = "proc"; break;
2378 case SPOE_SCOPE_SESS: scope = "sess"; break;
2379 case SPOE_SCOPE_TXN : scope = "txn"; break;
2380 case SPOE_SCOPE_REQ : scope = "req"; break;
2381 case SPOE_SCOPE_RES : scope = "res"; break;
2382 default: goto skip;
2383 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002384
Christopher Faulet8ef75252017-02-20 22:56:03 +01002385 if (spoe_decode_buffer(&p, end, &str, &sz) == -1)
2386 goto skip;
2387 memset(&smp, 0, sizeof(smp));
2388 smp_set_owner(&smp, s->be, s->sess, s, dir|SMP_OPT_FINAL);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002389
Christopher Faulet8ef75252017-02-20 22:56:03 +01002390 if (spoe_decode_data(&p, end, &smp) == -1)
2391 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002392
Christopher Faulet8ef75252017-02-20 22:56:03 +01002393 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2394 " - set-var '%s.%s.%.*s'\n",
2395 (int)now.tv_sec, (int)now.tv_usec,
2396 ((struct spoe_config *)FLT_CONF(ctx->filter))->agent->id,
2397 __FUNCTION__, s, scope,
2398 ((struct spoe_config *)FLT_CONF(ctx->filter))->agent->var_pfx,
2399 (int)sz, str);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002400
Christopher Faulet2469eba2020-10-15 16:08:30 +02002401 if (smp.data.type == SMP_T_ANY)
2402 spoe_unset_var(ctx, scope, str, sz, &smp);
2403 else
2404 spoe_set_var(ctx, scope, str, sz, &smp);
Christopher Fauletb5cff602016-11-24 14:53:22 +01002405
Christopher Faulet8ef75252017-02-20 22:56:03 +01002406 ret = (p - *buf);
2407 *buf = p;
2408 return ret;
2409 skip:
2410 return 0;
2411}
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002412
Christopher Faulet8ef75252017-02-20 22:56:03 +01002413static inline int
2414spoe_decode_action_unset_var(struct stream *s, struct spoe_context *ctx,
2415 char **buf, char *end, int dir)
2416{
2417 char *str, *scope, *p = *buf;
2418 struct sample smp;
2419 uint64_t sz;
2420 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002421
Christopher Faulet8ef75252017-02-20 22:56:03 +01002422 if (p + 2 >= end)
2423 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002424
Christopher Faulet8ef75252017-02-20 22:56:03 +01002425 /* UNSET-VAR requires 2 arguments */
2426 if (*p++ != 2)
2427 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002428
Christopher Faulet8ef75252017-02-20 22:56:03 +01002429 switch (*p++) {
2430 case SPOE_SCOPE_PROC: scope = "proc"; break;
2431 case SPOE_SCOPE_SESS: scope = "sess"; break;
2432 case SPOE_SCOPE_TXN : scope = "txn"; break;
2433 case SPOE_SCOPE_REQ : scope = "req"; break;
2434 case SPOE_SCOPE_RES : scope = "res"; break;
2435 default: goto skip;
2436 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002437
Christopher Faulet8ef75252017-02-20 22:56:03 +01002438 if (spoe_decode_buffer(&p, end, &str, &sz) == -1)
2439 goto skip;
2440 memset(&smp, 0, sizeof(smp));
2441 smp_set_owner(&smp, s->be, s->sess, s, dir|SMP_OPT_FINAL);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002442
Christopher Faulet8ef75252017-02-20 22:56:03 +01002443 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2444 " - unset-var '%s.%s.%.*s'\n",
2445 (int)now.tv_sec, (int)now.tv_usec,
2446 ((struct spoe_config *)FLT_CONF(ctx->filter))->agent->id,
2447 __FUNCTION__, s, scope,
2448 ((struct spoe_config *)FLT_CONF(ctx->filter))->agent->var_pfx,
2449 (int)sz, str);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002450
Christopher Faulet8ef75252017-02-20 22:56:03 +01002451 spoe_unset_var(ctx, scope, str, sz, &smp);
2452
2453 ret = (p - *buf);
2454 *buf = p;
2455 return ret;
2456 skip:
2457 return 0;
2458}
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002459
Christopher Faulet8ef75252017-02-20 22:56:03 +01002460/* Process SPOE actions for a specific event. It returns 1 on success. If an
2461 * error occurred, 0 is returned. */
2462static int
Christopher Faulet58d03682017-09-21 16:57:24 +02002463spoe_process_actions(struct stream *s, struct spoe_context *ctx, int dir)
Christopher Faulet8ef75252017-02-20 22:56:03 +01002464{
2465 char *p, *end;
2466 int ret;
2467
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002468 p = b_head(&ctx->buffer);
2469 end = p + b_data(&ctx->buffer);
Christopher Faulet8ef75252017-02-20 22:56:03 +01002470
2471 while (p < end) {
2472 enum spoe_action_type type;
2473
2474 type = *p++;
2475 switch (type) {
2476 case SPOE_ACT_T_SET_VAR:
2477 ret = spoe_decode_action_set_var(s, ctx, &p, end, dir);
2478 if (!ret)
2479 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002480 break;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002481
Christopher Faulet8ef75252017-02-20 22:56:03 +01002482 case SPOE_ACT_T_UNSET_VAR:
2483 ret = spoe_decode_action_unset_var(s, ctx, &p, end, dir);
2484 if (!ret)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002485 goto skip;
Christopher Faulet8ef75252017-02-20 22:56:03 +01002486 break;
2487
2488 default:
2489 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002490 }
2491 }
2492
2493 return 1;
2494 skip:
2495 return 0;
2496}
2497
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002498/***************************************************************************
2499 * Functions that process SPOE events
2500 **************************************************************************/
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002501static void
2502spoe_update_stats(struct stream *s, struct spoe_agent *agent,
2503 struct spoe_context *ctx, int dir)
2504{
2505 if (!tv_iszero(&ctx->stats.tv_start)) {
2506 spoe_update_stat_time(&ctx->stats.tv_start, &ctx->stats.t_process);
2507 ctx->stats.t_total += ctx->stats.t_process;
2508 tv_zero(&ctx->stats.tv_request);
2509 tv_zero(&ctx->stats.tv_queue);
2510 tv_zero(&ctx->stats.tv_wait);
2511 tv_zero(&ctx->stats.tv_response);
2512 }
2513
2514 if (agent->var_t_process) {
2515 struct sample smp;
2516
2517 memset(&smp, 0, sizeof(smp));
2518 smp_set_owner(&smp, s->be, s->sess, s, dir|SMP_OPT_FINAL);
2519 smp.data.u.sint = ctx->stats.t_process;
2520 smp.data.type = SMP_T_SINT;
2521
2522 spoe_set_var(ctx, "txn", agent->var_t_process,
2523 strlen(agent->var_t_process), &smp);
2524 }
2525
2526 if (agent->var_t_total) {
2527 struct sample smp;
2528
2529 memset(&smp, 0, sizeof(smp));
2530 smp_set_owner(&smp, s->be, s->sess, s, dir|SMP_OPT_FINAL);
2531 smp.data.u.sint = ctx->stats.t_total;
2532 smp.data.type = SMP_T_SINT;
2533
2534 spoe_set_var(ctx, "txn", agent->var_t_total,
2535 strlen(agent->var_t_total), &smp);
2536 }
2537}
2538
2539static void
2540spoe_handle_processing_error(struct stream *s, struct spoe_agent *agent,
2541 struct spoe_context *ctx, int dir)
2542{
2543 if (agent->eps_max > 0)
2544 update_freq_ctr(&agent->rt[tid].err_per_sec, 1);
2545
2546 if (agent->var_on_error) {
2547 struct sample smp;
2548
2549 memset(&smp, 0, sizeof(smp));
2550 smp_set_owner(&smp, s->be, s->sess, s, dir|SMP_OPT_FINAL);
2551 smp.data.u.sint = ctx->status_code;
2552 smp.data.type = SMP_T_BOOL;
2553
2554 spoe_set_var(ctx, "txn", agent->var_on_error,
2555 strlen(agent->var_on_error), &smp);
2556 }
2557
2558 ctx->state = ((agent->flags & SPOE_FL_CONT_ON_ERR)
2559 ? SPOE_CTX_ST_READY
2560 : SPOE_CTX_ST_NONE);
2561}
2562
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002563static inline int
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002564spoe_start_processing(struct spoe_agent *agent, struct spoe_context *ctx, int dir)
Christopher Fauleta1cda022016-12-21 08:58:06 +01002565{
Christopher Fauleta1cda022016-12-21 08:58:06 +01002566 /* If a process is already started for this SPOE context, retry
2567 * later. */
2568 if (ctx->flags & SPOE_CTX_FL_PROCESS)
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002569 return 0;
Christopher Fauleta1cda022016-12-21 08:58:06 +01002570
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002571 agent->rt[tid].processing++;
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002572 ctx->stats.tv_start = now;
2573 ctx->stats.tv_request = now;
2574 ctx->stats.t_request = -1;
2575 ctx->stats.t_queue = -1;
2576 ctx->stats.t_waiting = -1;
2577 ctx->stats.t_response = -1;
2578 ctx->stats.t_process = -1;
2579
2580 ctx->status_code = 0;
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002581
Christopher Fauleta1cda022016-12-21 08:58:06 +01002582 /* Set the right flag to prevent request and response processing
2583 * in same time. */
2584 ctx->flags |= ((dir == SMP_OPT_DIR_REQ)
2585 ? SPOE_CTX_FL_REQ_PROCESS
2586 : SPOE_CTX_FL_RSP_PROCESS);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002587 return 1;
Christopher Fauleta1cda022016-12-21 08:58:06 +01002588}
2589
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002590static inline void
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002591spoe_stop_processing(struct spoe_agent *agent, struct spoe_context *ctx)
Christopher Fauleta1cda022016-12-21 08:58:06 +01002592{
Christopher Fauletfce747b2018-01-24 15:59:32 +01002593 struct spoe_appctx *sa = ctx->spoe_appctx;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002594
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002595 if (!(ctx->flags & SPOE_CTX_FL_PROCESS))
2596 return;
Olivier Houchard9e7ae282019-03-08 18:50:42 +01002597 _HA_ATOMIC_ADD(&agent->counters.nb_processed, 1);
Christopher Faulet879dca92018-03-23 11:53:24 +01002598 if (sa) {
2599 if (sa->frag_ctx.ctx == ctx) {
2600 sa->frag_ctx.ctx = NULL;
2601 spoe_wakeup_appctx(sa->owner);
2602 }
2603 else
2604 sa->cur_fpa--;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002605 }
2606
Christopher Fauleta1cda022016-12-21 08:58:06 +01002607 /* Reset the flag to allow next processing */
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002608 agent->rt[tid].processing--;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002609 ctx->flags &= ~(SPOE_CTX_FL_PROCESS|SPOE_CTX_FL_FRAGMENTED);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002610
2611 /* Reset processing timer */
2612 ctx->process_exp = TICK_ETERNITY;
2613
Christopher Faulet8ef75252017-02-20 22:56:03 +01002614 spoe_release_buffer(&ctx->buffer, &ctx->buffer_wait);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002615
Christopher Fauletfce747b2018-01-24 15:59:32 +01002616 ctx->spoe_appctx = NULL;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002617 ctx->frag_ctx.curmsg = NULL;
2618 ctx->frag_ctx.curarg = NULL;
2619 ctx->frag_ctx.curoff = 0;
2620 ctx->frag_ctx.flags = 0;
2621
Christopher Fauleta1cda022016-12-21 08:58:06 +01002622 if (!LIST_ISEMPTY(&ctx->list)) {
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002623 if (ctx->state == SPOE_CTX_ST_SENDING_MSGS)
Olivier Houchard9e7ae282019-03-08 18:50:42 +01002624 _HA_ATOMIC_SUB(&agent->counters.nb_sending, 1);
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002625 else
Olivier Houchard9e7ae282019-03-08 18:50:42 +01002626 _HA_ATOMIC_SUB(&agent->counters.nb_waiting, 1);
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002627
Christopher Fauleta1cda022016-12-21 08:58:06 +01002628 LIST_DEL(&ctx->list);
2629 LIST_INIT(&ctx->list);
2630 }
Christopher Faulet344c4ab2017-09-22 10:20:13 +02002631}
2632
Christopher Faulet58d03682017-09-21 16:57:24 +02002633/* Process a list of SPOE messages. First, this functions will process messages
2634 * and send them to an agent in a NOTIFY frame. Then, it will wait a ACK frame
2635 * to process corresponding actions. During all the processing, it returns 0
2636 * and it returns 1 when the processing is finished. If an error occurred, -1
2637 * is returned. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002638static int
Christopher Faulet58d03682017-09-21 16:57:24 +02002639spoe_process_messages(struct stream *s, struct spoe_context *ctx,
2640 struct list *messages, int dir, int type)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002641{
Christopher Fauletf7a30922016-11-10 15:04:51 +01002642 struct spoe_config *conf = FLT_CONF(ctx->filter);
2643 struct spoe_agent *agent = conf->agent;
Christopher Faulet58d03682017-09-21 16:57:24 +02002644 int ret = 1;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002645
2646 if (ctx->state == SPOE_CTX_ST_ERROR)
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002647 goto end;
Christopher Fauletf7a30922016-11-10 15:04:51 +01002648
2649 if (tick_is_expired(ctx->process_exp, now_ms) && ctx->state != SPOE_CTX_ST_DONE) {
2650 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Faulet58d03682017-09-21 16:57:24 +02002651 " - failed to process messages: timeout\n",
Christopher Fauletf7a30922016-11-10 15:04:51 +01002652 (int)now.tv_sec, (int)now.tv_usec,
Christopher Faulet58d03682017-09-21 16:57:24 +02002653 agent->id, __FUNCTION__, s);
Christopher Fauletb067b062017-01-04 16:39:11 +01002654 ctx->status_code = SPOE_CTX_ERR_TOUT;
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002655 goto end;
Christopher Fauletf7a30922016-11-10 15:04:51 +01002656 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002657
2658 if (ctx->state == SPOE_CTX_ST_READY) {
Christopher Fauleta1cda022016-12-21 08:58:06 +01002659 if (agent->eps_max > 0) {
Christopher Faulet24289f22017-09-25 14:48:02 +02002660 if (!freq_ctr_remain(&agent->rt[tid].err_per_sec, agent->eps_max, 0)) {
Christopher Fauleta1cda022016-12-21 08:58:06 +01002661 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Faulet58d03682017-09-21 16:57:24 +02002662 " - skip processing of messages: max EPS reached\n",
Christopher Fauleta1cda022016-12-21 08:58:06 +01002663 (int)now.tv_sec, (int)now.tv_usec,
Christopher Faulet58d03682017-09-21 16:57:24 +02002664 agent->id, __FUNCTION__, s);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002665 goto skip;
2666 }
2667 }
2668
Christopher Fauletf7a30922016-11-10 15:04:51 +01002669 if (!tick_isset(ctx->process_exp)) {
2670 ctx->process_exp = tick_add_ifset(now_ms, agent->timeout.processing);
2671 s->task->expire = tick_first((tick_is_expired(s->task->expire, now_ms) ? 0 : s->task->expire),
2672 ctx->process_exp);
2673 }
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002674 ret = spoe_start_processing(agent, ctx, dir);
Christopher Fauletb067b062017-01-04 16:39:11 +01002675 if (!ret)
2676 goto out;
Christopher Fauleta1cda022016-12-21 08:58:06 +01002677
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002678 ctx->state = SPOE_CTX_ST_ENCODING_MSGS;
Christopher Fauleta1cda022016-12-21 08:58:06 +01002679 /* fall through */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002680 }
2681
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002682 if (ctx->state == SPOE_CTX_ST_ENCODING_MSGS) {
Christopher Faulet63263e52019-04-10 14:47:18 +02002683 if (tv_iszero(&ctx->stats.tv_request))
2684 ctx->stats.tv_request = now;
Christopher Faulet8ef75252017-02-20 22:56:03 +01002685 if (!spoe_acquire_buffer(&ctx->buffer, &ctx->buffer_wait))
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002686 goto out;
Christopher Faulet58d03682017-09-21 16:57:24 +02002687 ret = spoe_encode_messages(s, ctx, messages, dir, type);
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002688 if (ret < 0)
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002689 goto end;
Christopher Faulet57583e42017-09-04 15:41:09 +02002690 if (!ret)
2691 goto skip;
Christopher Faulet333694d2018-01-12 10:45:47 +01002692 if (spoe_queue_context(ctx) < 0)
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002693 goto end;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002694 ctx->state = SPOE_CTX_ST_SENDING_MSGS;
2695 }
2696
2697 if (ctx->state == SPOE_CTX_ST_SENDING_MSGS) {
Christopher Fauletfce747b2018-01-24 15:59:32 +01002698 if (ctx->spoe_appctx)
2699 spoe_wakeup_appctx(ctx->spoe_appctx->owner);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002700 ret = 0;
2701 goto out;
2702 }
2703
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002704 if (ctx->state == SPOE_CTX_ST_WAITING_ACK) {
2705 ret = 0;
2706 goto out;
2707 }
2708
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002709 if (ctx->state == SPOE_CTX_ST_DONE) {
Christopher Faulet58d03682017-09-21 16:57:24 +02002710 spoe_process_actions(s, ctx, dir);
Christopher Faulet8ef75252017-02-20 22:56:03 +01002711 ret = 1;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002712 ctx->frame_id++;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002713 ctx->state = SPOE_CTX_ST_READY;
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002714 spoe_update_stat_time(&ctx->stats.tv_response, &ctx->stats.t_response);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002715 goto end;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002716 }
2717
2718 out:
2719 return ret;
2720
Christopher Fauleta1cda022016-12-21 08:58:06 +01002721 skip:
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002722 tv_zero(&ctx->stats.tv_start);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002723 ctx->state = SPOE_CTX_ST_READY;
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002724 spoe_stop_processing(agent, ctx);
2725 return 1;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002726
Christopher Fauleta1cda022016-12-21 08:58:06 +01002727 end:
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002728 spoe_update_stats(s, agent, ctx, dir);
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002729 spoe_stop_processing(agent, ctx);
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002730 if (ctx->status_code) {
Olivier Houchard9e7ae282019-03-08 18:50:42 +01002731 _HA_ATOMIC_ADD(&agent->counters.nb_errors, 1);
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002732 spoe_handle_processing_error(s, agent, ctx, dir);
2733 ret = 1;
2734 }
Christopher Faulet58d03682017-09-21 16:57:24 +02002735 return ret;
2736}
2737
Christopher Faulet344c4ab2017-09-22 10:20:13 +02002738/* Process a SPOE group, ie the list of messages attached to the group <grp>.
2739 * See spoe_process_message for details. */
2740static int
2741spoe_process_group(struct stream *s, struct spoe_context *ctx,
2742 struct spoe_group *group, int dir)
2743{
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002744 struct spoe_config *conf = FLT_CONF(ctx->filter);
2745 struct spoe_agent *agent = conf->agent;
Christopher Faulet344c4ab2017-09-22 10:20:13 +02002746 int ret;
2747
2748 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2749 " - ctx-state=%s - Process messages for group=%s\n",
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002750 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Faulet344c4ab2017-09-22 10:20:13 +02002751 __FUNCTION__, s, spoe_ctx_state_str[ctx->state],
2752 group->id);
2753
2754 if (LIST_ISEMPTY(&group->messages))
2755 return 1;
2756
2757 ret = spoe_process_messages(s, ctx, &group->messages, dir, SPOE_MSGS_BY_GROUP);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002758 if (ret && ctx->stats.t_process != -1) {
2759 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002760 " - <GROUP:%s> sid=%u st=%u %ld/%ld/%ld/%ld/%ld %u/%u %u/%u %llu/%llu %u/%u\n",
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002761 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002762 __FUNCTION__, s, group->id, s->uniq_id, ctx->status_code,
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002763 ctx->stats.t_request, ctx->stats.t_queue, ctx->stats.t_waiting,
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002764 ctx->stats.t_response, ctx->stats.t_process,
2765 agent->counters.idles, agent->counters.applets,
2766 agent->counters.nb_sending, agent->counters.nb_waiting,
2767 agent->counters.nb_errors, agent->counters.nb_processed,
2768 agent->rt[tid].processing, read_freq_ctr(&agent->rt[tid].processing_per_sec));
2769 if (ctx->status_code || !(conf->agent_fe.options2 & PR_O2_NOLOGNORM))
2770 send_log(&conf->agent_fe, (!ctx->status_code ? LOG_NOTICE : LOG_WARNING),
2771 "SPOE: [%s] <GROUP:%s> sid=%u st=%u %ld/%ld/%ld/%ld/%ld %u/%u %u/%u %llu/%llu\n",
2772 agent->id, group->id, s->uniq_id, ctx->status_code,
2773 ctx->stats.t_request, ctx->stats.t_queue, ctx->stats.t_waiting,
2774 ctx->stats.t_response, ctx->stats.t_process,
2775 agent->counters.idles, agent->counters.applets,
2776 agent->counters.nb_sending, agent->counters.nb_waiting,
2777 agent->counters.nb_errors, agent->counters.nb_processed);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002778 }
Christopher Faulet344c4ab2017-09-22 10:20:13 +02002779 return ret;
2780}
2781
Christopher Faulet58d03682017-09-21 16:57:24 +02002782/* Process a SPOE event, ie the list of messages attached to the event <ev>.
2783 * See spoe_process_message for details. */
2784static int
2785spoe_process_event(struct stream *s, struct spoe_context *ctx,
2786 enum spoe_event ev)
2787{
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002788 struct spoe_config *conf = FLT_CONF(ctx->filter);
2789 struct spoe_agent *agent = conf->agent;
Christopher Faulet58d03682017-09-21 16:57:24 +02002790 int dir, ret;
2791
2792 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Faulet344c4ab2017-09-22 10:20:13 +02002793 " - ctx-state=%s - Process messages for event=%s\n",
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002794 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Faulet58d03682017-09-21 16:57:24 +02002795 __FUNCTION__, s, spoe_ctx_state_str[ctx->state],
2796 spoe_event_str[ev]);
2797
2798 dir = ((ev < SPOE_EV_ON_SERVER_SESS) ? SMP_OPT_DIR_REQ : SMP_OPT_DIR_RES);
2799
2800 if (LIST_ISEMPTY(&(ctx->events[ev])))
2801 return 1;
2802
2803 ret = spoe_process_messages(s, ctx, &(ctx->events[ev]), dir, SPOE_MSGS_BY_EVENT);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002804 if (ret && ctx->stats.t_process != -1) {
2805 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002806 " - <EVENT:%s> sid=%u st=%u %ld/%ld/%ld/%ld/%ld %u/%u %u/%u %llu/%llu %u/%u\n",
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002807 (int)now.tv_sec, (int)now.tv_usec, agent->id,
2808 __FUNCTION__, s, spoe_event_str[ev], s->uniq_id, ctx->status_code,
2809 ctx->stats.t_request, ctx->stats.t_queue, ctx->stats.t_waiting,
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002810 ctx->stats.t_response, ctx->stats.t_process,
2811 agent->counters.idles, agent->counters.applets,
2812 agent->counters.nb_sending, agent->counters.nb_waiting,
2813 agent->counters.nb_errors, agent->counters.nb_processed,
2814 agent->rt[tid].processing, read_freq_ctr(&agent->rt[tid].processing_per_sec));
2815 if (ctx->status_code || !(conf->agent_fe.options2 & PR_O2_NOLOGNORM))
2816 send_log(&conf->agent_fe, (!ctx->status_code ? LOG_NOTICE : LOG_WARNING),
2817 "SPOE: [%s] <EVENT:%s> sid=%u st=%u %ld/%ld/%ld/%ld/%ld %u/%u %u/%u %llu/%llu\n",
2818 agent->id, spoe_event_str[ev], s->uniq_id, ctx->status_code,
2819 ctx->stats.t_request, ctx->stats.t_queue, ctx->stats.t_waiting,
2820 ctx->stats.t_response, ctx->stats.t_process,
2821 agent->counters.idles, agent->counters.applets,
2822 agent->counters.nb_sending, agent->counters.nb_waiting,
2823 agent->counters.nb_errors, agent->counters.nb_processed);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002824 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01002825 return ret;
2826}
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002827
2828/***************************************************************************
2829 * Functions that create/destroy SPOE contexts
2830 **************************************************************************/
Christopher Fauleta1cda022016-12-21 08:58:06 +01002831static int
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002832spoe_acquire_buffer(struct buffer *buf, struct buffer_wait *buffer_wait)
Christopher Fauleta1cda022016-12-21 08:58:06 +01002833{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002834 if (buf->size)
Christopher Fauleta1cda022016-12-21 08:58:06 +01002835 return 1;
2836
Willy Tarreau90f366b2021-02-20 11:49:49 +01002837 if (LIST_ADDED(&buffer_wait->list))
2838 LIST_DEL_INIT(&buffer_wait->list);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002839
Christopher Faulet4596fb72017-01-11 14:05:19 +01002840 if (b_alloc_margin(buf, global.tune.reserved_bufs))
Christopher Fauleta1cda022016-12-21 08:58:06 +01002841 return 1;
2842
Willy Tarreau90f366b2021-02-20 11:49:49 +01002843 LIST_ADDQ(&ti->buffer_wq, &buffer_wait->list);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002844 return 0;
2845}
2846
2847static void
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002848spoe_release_buffer(struct buffer *buf, struct buffer_wait *buffer_wait)
Christopher Fauleta1cda022016-12-21 08:58:06 +01002849{
Willy Tarreau90f366b2021-02-20 11:49:49 +01002850 if (LIST_ADDED(&buffer_wait->list))
2851 LIST_DEL_INIT(&buffer_wait->list);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002852
2853 /* Release the buffer if needed */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002854 if (buf->size) {
Christopher Faulet4596fb72017-01-11 14:05:19 +01002855 b_free(buf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01002856 offer_buffers(buffer_wait->target, 1);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002857 }
2858}
2859
Christopher Faulet4596fb72017-01-11 14:05:19 +01002860static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01002861spoe_wakeup_context(struct spoe_context *ctx)
Christopher Fauleta73e59b2016-12-09 17:30:18 +01002862{
2863 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
2864 return 1;
2865}
2866
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002867static struct spoe_context *
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002868spoe_create_context(struct stream *s, struct filter *filter)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002869{
2870 struct spoe_config *conf = FLT_CONF(filter);
2871 struct spoe_context *ctx;
2872
Willy Tarreaubafbe012017-11-24 17:34:44 +01002873 ctx = pool_alloc_dirty(pool_head_spoe_ctx);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002874 if (ctx == NULL) {
2875 return NULL;
2876 }
2877 memset(ctx, 0, sizeof(*ctx));
Christopher Fauletb067b062017-01-04 16:39:11 +01002878 ctx->filter = filter;
2879 ctx->state = SPOE_CTX_ST_NONE;
2880 ctx->status_code = SPOE_CTX_ERR_NONE;
2881 ctx->flags = 0;
Christopher Faulet11610f32017-09-21 10:23:10 +02002882 ctx->events = conf->agent->events;
Christopher Faulet76c09ef2017-09-21 11:03:52 +02002883 ctx->groups = &conf->agent->groups;
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002884 ctx->buffer = BUF_NULL;
Willy Tarreau90f366b2021-02-20 11:49:49 +01002885 LIST_INIT(&ctx->buffer_wait.list);
Christopher Fauleta73e59b2016-12-09 17:30:18 +01002886 ctx->buffer_wait.target = ctx;
Christopher Faulet8ef75252017-02-20 22:56:03 +01002887 ctx->buffer_wait.wakeup_cb = (int (*)(void *))spoe_wakeup_context;
Christopher Fauleta1cda022016-12-21 08:58:06 +01002888 LIST_INIT(&ctx->list);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002889
Christopher Fauletf7a30922016-11-10 15:04:51 +01002890 ctx->stream_id = 0;
2891 ctx->frame_id = 1;
2892 ctx->process_exp = TICK_ETERNITY;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002893
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002894 tv_zero(&ctx->stats.tv_start);
2895 tv_zero(&ctx->stats.tv_request);
2896 tv_zero(&ctx->stats.tv_queue);
2897 tv_zero(&ctx->stats.tv_wait);
2898 tv_zero(&ctx->stats.tv_response);
2899 ctx->stats.t_request = -1;
2900 ctx->stats.t_queue = -1;
2901 ctx->stats.t_waiting = -1;
2902 ctx->stats.t_response = -1;
2903 ctx->stats.t_process = -1;
2904 ctx->stats.t_total = 0;
2905
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002906 ctx->strm = s;
2907 ctx->state = SPOE_CTX_ST_READY;
2908 filter->ctx = ctx;
2909
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002910 return ctx;
2911}
2912
2913static void
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002914spoe_destroy_context(struct filter *filter)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002915{
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002916 struct spoe_config *conf = FLT_CONF(filter);
2917 struct spoe_context *ctx = filter->ctx;
2918
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002919 if (!ctx)
2920 return;
2921
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002922 spoe_stop_processing(conf->agent, ctx);
Willy Tarreaubafbe012017-11-24 17:34:44 +01002923 pool_free(pool_head_spoe_ctx, ctx);
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002924 filter->ctx = NULL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002925}
2926
2927static void
Christopher Faulet8ef75252017-02-20 22:56:03 +01002928spoe_reset_context(struct spoe_context *ctx)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002929{
2930 ctx->state = SPOE_CTX_ST_READY;
Christopher Fauletf032c3e2017-02-17 15:18:35 +01002931 ctx->flags &= ~(SPOE_CTX_FL_PROCESS|SPOE_CTX_FL_FRAGMENTED);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002932
2933 tv_zero(&ctx->stats.tv_start);
2934 tv_zero(&ctx->stats.tv_request);
2935 tv_zero(&ctx->stats.tv_queue);
2936 tv_zero(&ctx->stats.tv_wait);
2937 tv_zero(&ctx->stats.tv_response);
2938 ctx->stats.t_request = -1;
2939 ctx->stats.t_queue = -1;
2940 ctx->stats.t_waiting = -1;
2941 ctx->stats.t_response = -1;
2942 ctx->stats.t_process = -1;
2943 ctx->stats.t_total = 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002944}
2945
2946
2947/***************************************************************************
2948 * Hooks that manage the filter lifecycle (init/check/deinit)
2949 **************************************************************************/
2950/* Signal handler: Do a soft stop, wakeup SPOE applet */
2951static void
Christopher Faulet8ef75252017-02-20 22:56:03 +01002952spoe_sig_stop(struct sig_handler *sh)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002953{
2954 struct proxy *p;
2955
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002956 p = proxies_list;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002957 while (p) {
2958 struct flt_conf *fconf;
2959
2960 list_for_each_entry(fconf, &p->filter_configs, list) {
Christopher Faulet3b386a32017-02-23 10:17:15 +01002961 struct spoe_config *conf;
2962 struct spoe_agent *agent;
Christopher Faulet42bfa462017-01-04 14:14:19 +01002963 struct spoe_appctx *spoe_appctx;
Christopher Faulet24289f22017-09-25 14:48:02 +02002964 int i;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002965
Christopher Faulet3b386a32017-02-23 10:17:15 +01002966 if (fconf->id != spoe_filter_id)
2967 continue;
2968
2969 conf = fconf->conf;
2970 agent = conf->agent;
2971
Christopher Faulet24289f22017-09-25 14:48:02 +02002972 for (i = 0; i < global.nbthread; ++i) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002973 HA_SPIN_LOCK(SPOE_APPLET_LOCK, &agent->rt[i].lock);
Christopher Faulet24289f22017-09-25 14:48:02 +02002974 list_for_each_entry(spoe_appctx, &agent->rt[i].applets, list)
2975 spoe_wakeup_appctx(spoe_appctx->owner);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002976 HA_SPIN_UNLOCK(SPOE_APPLET_LOCK, &agent->rt[i].lock);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002977 }
2978 }
2979 p = p->next;
2980 }
2981}
2982
2983
2984/* Initialize the SPOE filter. Returns -1 on error, else 0. */
2985static int
2986spoe_init(struct proxy *px, struct flt_conf *fconf)
2987{
2988 struct spoe_config *conf = fconf->conf;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002989
Christopher Faulet7250b8f2018-03-26 17:19:01 +02002990 /* conf->agent_fe was already initialized during the config
2991 * parsing. Finish initialization. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002992 conf->agent_fe.last_change = now.tv_sec;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002993 conf->agent_fe.cap = PR_CAP_FE;
2994 conf->agent_fe.mode = PR_MODE_TCP;
2995 conf->agent_fe.maxconn = 0;
2996 conf->agent_fe.options2 |= PR_O2_INDEPSTR;
2997 conf->agent_fe.conn_retries = CONN_RETRIES;
2998 conf->agent_fe.accept = frontend_accept;
2999 conf->agent_fe.srv = NULL;
3000 conf->agent_fe.timeout.client = TICK_ETERNITY;
3001 conf->agent_fe.default_target = &spoe_applet.obj_type;
3002 conf->agent_fe.fe_req_ana = AN_REQ_SWITCHING_RULES;
3003
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003004 if (!sighandler_registered) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01003005 signal_register_fct(0, spoe_sig_stop, 0);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003006 sighandler_registered = 1;
3007 }
3008
Christopher Faulet00292352019-01-09 15:05:10 +01003009 fconf->flags |= FLT_CFG_FL_HTX;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003010 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003011}
3012
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05003013/* Free resources allocated by the SPOE filter. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003014static void
3015spoe_deinit(struct proxy *px, struct flt_conf *fconf)
3016{
3017 struct spoe_config *conf = fconf->conf;
3018
3019 if (conf) {
3020 struct spoe_agent *agent = conf->agent;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003021
Christopher Faulet8ef75252017-02-20 22:56:03 +01003022 spoe_release_agent(agent);
Christopher Faulet7ee86672017-09-19 11:08:28 +02003023 free(conf->id);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003024 free(conf);
3025 }
3026 fconf->conf = NULL;
3027}
3028
3029/* Check configuration of a SPOE filter for a specified proxy.
3030 * Return 1 on error, else 0. */
3031static int
3032spoe_check(struct proxy *px, struct flt_conf *fconf)
3033{
Christopher Faulet7ee86672017-09-19 11:08:28 +02003034 struct flt_conf *f;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003035 struct spoe_config *conf = fconf->conf;
3036 struct proxy *target;
Christopher Faulet1d7d0f82021-02-19 10:56:41 +01003037 struct logsrv *logsrv;
Willy Tarreaub0769b22019-02-07 13:40:33 +01003038 int i;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003039
Christopher Faulet7ee86672017-09-19 11:08:28 +02003040 /* Check all SPOE filters for proxy <px> to be sure all SPOE agent names
3041 * are uniq */
3042 list_for_each_entry(f, &px->filter_configs, list) {
3043 struct spoe_config *c = f->conf;
3044
3045 /* This is not an SPOE filter */
3046 if (f->id != spoe_filter_id)
3047 continue;
3048 /* This is the current SPOE filter */
3049 if (f == fconf)
3050 continue;
3051
3052 /* Check engine Id. It should be uniq */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003053 if (strcmp(conf->id, c->id) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003054 ha_alert("Proxy %s : duplicated name for SPOE engine '%s'.\n",
3055 px->id, conf->id);
Christopher Faulet7ee86672017-09-19 11:08:28 +02003056 return 1;
3057 }
3058 }
3059
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003060 target = proxy_be_by_name(conf->agent->b.name);
3061 if (target == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003062 ha_alert("Proxy %s : unknown backend '%s' used by SPOE agent '%s'"
3063 " declared at %s:%d.\n",
3064 px->id, conf->agent->b.name, conf->agent->id,
3065 conf->agent->conf.file, conf->agent->conf.line);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003066 return 1;
3067 }
3068 if (target->mode != PR_MODE_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003069 ha_alert("Proxy %s : backend '%s' used by SPOE agent '%s' declared"
3070 " at %s:%d does not support HTTP mode.\n",
3071 px->id, target->id, conf->agent->id,
3072 conf->agent->conf.file, conf->agent->conf.line);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003073 return 1;
3074 }
3075
Willy Tarreau2bdcfde2019-02-05 13:37:19 +01003076 if (px->bind_proc & ~target->bind_proc) {
3077 ha_alert("Proxy %s : backend '%s' used by SPOE agent '%s' declared"
3078 " at %s:%d does not cover all of its processes.\n",
3079 px->id, target->id, conf->agent->id,
3080 conf->agent->conf.file, conf->agent->conf.line);
3081 return 1;
3082 }
3083
Christopher Fauletfe261552019-03-18 13:57:42 +01003084 if ((conf->agent->rt = calloc(global.nbthread, sizeof(*conf->agent->rt))) == NULL) {
Willy Tarreaub0769b22019-02-07 13:40:33 +01003085 ha_alert("Proxy %s : out of memory initializing SPOE agent '%s' declared at %s:%d.\n",
3086 px->id, conf->agent->id, conf->agent->conf.file, conf->agent->conf.line);
3087 return 1;
3088 }
3089 for (i = 0; i < global.nbthread; ++i) {
Christopher Fauletb1bb1af2019-09-17 11:55:52 +02003090 conf->agent->rt[i].engine_id = NULL;
Christopher Fauletfe261552019-03-18 13:57:42 +01003091 conf->agent->rt[i].frame_size = conf->agent->max_frame_size;
3092 conf->agent->rt[i].processing = 0;
3093 LIST_INIT(&conf->agent->rt[i].applets);
3094 LIST_INIT(&conf->agent->rt[i].sending_queue);
3095 LIST_INIT(&conf->agent->rt[i].waiting_queue);
3096 HA_SPIN_INIT(&conf->agent->rt[i].lock);
Willy Tarreaub0769b22019-02-07 13:40:33 +01003097 }
3098
Christopher Faulet1d7d0f82021-02-19 10:56:41 +01003099 list_for_each_entry(logsrv, &conf->agent_fe.logsrvs, list) {
3100 if (logsrv->type == LOG_TARGET_BUFFER) {
3101 struct sink *sink = sink_find(logsrv->ring_name);
3102
3103 if (!sink || sink->type != SINK_TYPE_BUFFER) {
3104 ha_alert("Proxy %s : log server used by SPOE agent '%s' declared"
Ilya Shipitsind7a988c2021-03-04 23:26:15 +05003105 " at %s:%d uses unknown ring named '%s'.\n",
Christopher Faulet1d7d0f82021-02-19 10:56:41 +01003106 px->id, conf->agent->id, conf->agent->conf.file,
3107 conf->agent->conf.line, logsrv->ring_name);
3108 return 1;
3109 }
3110 logsrv->sink = sink;
3111 }
3112 }
3113
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003114 ha_free(&conf->agent->b.name);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003115 conf->agent->b.be = target;
3116 return 0;
3117}
3118
Kevin Zhud87b1a52019-09-17 15:05:45 +02003119/* Initializes the SPOE filter for a proxy for a specific thread.
3120 * Returns a negative value if an error occurs. */
3121static int
3122spoe_init_per_thread(struct proxy *p, struct flt_conf *fconf)
3123{
3124 struct spoe_config *conf = fconf->conf;
3125 struct spoe_agent *agent = conf->agent;
3126
Christopher Fauletb1bb1af2019-09-17 11:55:52 +02003127 agent->rt[tid].engine_id = generate_pseudo_uuid();
3128 if (agent->rt[tid].engine_id == NULL)
3129 return -1;
Kevin Zhud87b1a52019-09-17 15:05:45 +02003130 return 0;
3131}
3132
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003133/**************************************************************************
3134 * Hooks attached to a stream
3135 *************************************************************************/
3136/* Called when a filter instance is created and attach to a stream. It creates
3137 * the context that will be used to process this stream. */
3138static int
3139spoe_start(struct stream *s, struct filter *filter)
3140{
Christopher Faulet72bcc472017-01-04 16:39:41 +01003141 struct spoe_config *conf = FLT_CONF(filter);
3142 struct spoe_agent *agent = conf->agent;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003143 struct spoe_context *ctx;
3144
3145 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p\n",
Christopher Faulet72bcc472017-01-04 16:39:41 +01003146 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003147 __FUNCTION__, s);
3148
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01003149 if ((ctx = spoe_create_context(s, filter)) == NULL) {
Christopher Faulet72bcc472017-01-04 16:39:41 +01003150 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
3151 " - failed to create SPOE context\n",
3152 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Fauletccbc3fd2017-09-15 11:51:18 +02003153 __FUNCTION__, s);
Christopher Faulet3b8e3492018-03-26 17:20:58 +02003154 send_log(&conf->agent_fe, LOG_EMERG,
Christopher Faulet72bcc472017-01-04 16:39:41 +01003155 "SPOE: [%s] failed to create SPOE context\n",
3156 agent->id);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003157 return 0;
3158 }
3159
Christopher Faulet11610f32017-09-21 10:23:10 +02003160 if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_TCP_REQ_FE]))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003161 filter->pre_analyzers |= AN_REQ_INSPECT_FE;
3162
Christopher Faulet11610f32017-09-21 10:23:10 +02003163 if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_TCP_REQ_BE]))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003164 filter->pre_analyzers |= AN_REQ_INSPECT_BE;
3165
Christopher Faulet11610f32017-09-21 10:23:10 +02003166 if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_TCP_RSP]))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003167 filter->pre_analyzers |= AN_RES_INSPECT;
3168
Christopher Faulet11610f32017-09-21 10:23:10 +02003169 if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_HTTP_REQ_FE]))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003170 filter->pre_analyzers |= AN_REQ_HTTP_PROCESS_FE;
3171
Christopher Faulet11610f32017-09-21 10:23:10 +02003172 if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_HTTP_REQ_BE]))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003173 filter->pre_analyzers |= AN_REQ_HTTP_PROCESS_BE;
3174
Christopher Faulet11610f32017-09-21 10:23:10 +02003175 if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_HTTP_RSP]))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003176 filter->pre_analyzers |= AN_RES_HTTP_PROCESS_FE;
3177
3178 return 1;
3179}
3180
3181/* Called when a filter instance is detached from a stream. It release the
3182 * attached SPOE context. */
3183static void
3184spoe_stop(struct stream *s, struct filter *filter)
3185{
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003186 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p\n",
3187 (int)now.tv_sec, (int)now.tv_usec,
3188 ((struct spoe_config *)FLT_CONF(filter))->agent->id,
3189 __FUNCTION__, s);
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01003190 spoe_destroy_context(filter);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003191}
3192
Christopher Fauletf7a30922016-11-10 15:04:51 +01003193
3194/*
3195 * Called when the stream is woken up because of expired timer.
3196 */
3197static void
3198spoe_check_timeouts(struct stream *s, struct filter *filter)
3199{
3200 struct spoe_context *ctx = filter->ctx;
3201
Christopher Fauletac580602018-03-20 16:09:20 +01003202 if (tick_is_expired(ctx->process_exp, now_ms))
Christopher Fauleta73e59b2016-12-09 17:30:18 +01003203 s->pending_events |= TASK_WOKEN_MSG;
Christopher Fauletf7a30922016-11-10 15:04:51 +01003204}
3205
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003206/* Called when we are ready to filter data on a channel */
3207static int
3208spoe_start_analyze(struct stream *s, struct filter *filter, struct channel *chn)
3209{
3210 struct spoe_context *ctx = filter->ctx;
3211 int ret = 1;
3212
3213 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p - ctx-state=%s"
3214 " - ctx-flags=0x%08x\n",
3215 (int)now.tv_sec, (int)now.tv_usec,
3216 ((struct spoe_config *)FLT_CONF(filter))->agent->id,
3217 __FUNCTION__, s, spoe_ctx_state_str[ctx->state], ctx->flags);
3218
Christopher Fauletb067b062017-01-04 16:39:11 +01003219 if (ctx->state == SPOE_CTX_ST_NONE)
3220 goto out;
3221
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003222 if (!(chn->flags & CF_ISRESP)) {
3223 if (filter->pre_analyzers & AN_REQ_INSPECT_FE)
3224 chn->analysers |= AN_REQ_INSPECT_FE;
3225 if (filter->pre_analyzers & AN_REQ_INSPECT_BE)
3226 chn->analysers |= AN_REQ_INSPECT_BE;
3227
3228 if (ctx->flags & SPOE_CTX_FL_CLI_CONNECTED)
3229 goto out;
3230
3231 ctx->stream_id = s->uniq_id;
Christopher Faulet8ef75252017-02-20 22:56:03 +01003232 ret = spoe_process_event(s, ctx, SPOE_EV_ON_CLIENT_SESS);
Christopher Fauletb067b062017-01-04 16:39:11 +01003233 if (!ret)
3234 goto out;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003235 ctx->flags |= SPOE_CTX_FL_CLI_CONNECTED;
3236 }
3237 else {
Miroslav Zagorac88403262020-06-19 22:17:17 +02003238 if (filter->pre_analyzers & AN_RES_INSPECT)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003239 chn->analysers |= AN_RES_INSPECT;
3240
3241 if (ctx->flags & SPOE_CTX_FL_SRV_CONNECTED)
3242 goto out;
3243
Christopher Faulet8ef75252017-02-20 22:56:03 +01003244 ret = spoe_process_event(s, ctx, SPOE_EV_ON_SERVER_SESS);
Christopher Fauleta1cda022016-12-21 08:58:06 +01003245 if (!ret) {
3246 channel_dont_read(chn);
3247 channel_dont_close(chn);
Christopher Fauletb067b062017-01-04 16:39:11 +01003248 goto out;
Christopher Fauleta1cda022016-12-21 08:58:06 +01003249 }
Christopher Fauletb067b062017-01-04 16:39:11 +01003250 ctx->flags |= SPOE_CTX_FL_SRV_CONNECTED;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003251 }
3252
3253 out:
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003254 return ret;
3255}
3256
3257/* Called before a processing happens on a given channel */
3258static int
3259spoe_chn_pre_analyze(struct stream *s, struct filter *filter,
3260 struct channel *chn, unsigned an_bit)
3261{
3262 struct spoe_context *ctx = filter->ctx;
3263 int ret = 1;
3264
3265 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p - ctx-state=%s"
3266 " - ctx-flags=0x%08x - ana=0x%08x\n",
3267 (int)now.tv_sec, (int)now.tv_usec,
3268 ((struct spoe_config *)FLT_CONF(filter))->agent->id,
3269 __FUNCTION__, s, spoe_ctx_state_str[ctx->state],
3270 ctx->flags, an_bit);
3271
Christopher Fauletb067b062017-01-04 16:39:11 +01003272 if (ctx->state == SPOE_CTX_ST_NONE)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003273 goto out;
3274
3275 switch (an_bit) {
3276 case AN_REQ_INSPECT_FE:
Christopher Faulet8ef75252017-02-20 22:56:03 +01003277 ret = spoe_process_event(s, ctx, SPOE_EV_ON_TCP_REQ_FE);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003278 break;
3279 case AN_REQ_INSPECT_BE:
Christopher Faulet8ef75252017-02-20 22:56:03 +01003280 ret = spoe_process_event(s, ctx, SPOE_EV_ON_TCP_REQ_BE);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003281 break;
3282 case AN_RES_INSPECT:
Christopher Faulet8ef75252017-02-20 22:56:03 +01003283 ret = spoe_process_event(s, ctx, SPOE_EV_ON_TCP_RSP);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003284 break;
3285 case AN_REQ_HTTP_PROCESS_FE:
Christopher Faulet8ef75252017-02-20 22:56:03 +01003286 ret = spoe_process_event(s, ctx, SPOE_EV_ON_HTTP_REQ_FE);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003287 break;
3288 case AN_REQ_HTTP_PROCESS_BE:
Christopher Faulet8ef75252017-02-20 22:56:03 +01003289 ret = spoe_process_event(s, ctx, SPOE_EV_ON_HTTP_REQ_BE);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003290 break;
3291 case AN_RES_HTTP_PROCESS_FE:
Christopher Faulet8ef75252017-02-20 22:56:03 +01003292 ret = spoe_process_event(s, ctx, SPOE_EV_ON_HTTP_RSP);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003293 break;
3294 }
3295
3296 out:
Christopher Faulet9cdca972018-02-01 08:45:45 +01003297 if (!ret && (chn->flags & CF_ISRESP)) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003298 channel_dont_read(chn);
3299 channel_dont_close(chn);
3300 }
3301 return ret;
3302}
3303
3304/* Called when the filtering on the channel ends. */
3305static int
3306spoe_end_analyze(struct stream *s, struct filter *filter, struct channel *chn)
3307{
3308 struct spoe_context *ctx = filter->ctx;
3309
3310 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p - ctx-state=%s"
3311 " - ctx-flags=0x%08x\n",
3312 (int)now.tv_sec, (int)now.tv_usec,
3313 ((struct spoe_config *)FLT_CONF(filter))->agent->id,
3314 __FUNCTION__, s, spoe_ctx_state_str[ctx->state], ctx->flags);
3315
3316 if (!(ctx->flags & SPOE_CTX_FL_PROCESS)) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01003317 spoe_reset_context(ctx);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003318 }
3319
3320 return 1;
3321}
3322
3323/********************************************************************
3324 * Functions that manage the filter initialization
3325 ********************************************************************/
3326struct flt_ops spoe_ops = {
3327 /* Manage SPOE filter, called for each filter declaration */
3328 .init = spoe_init,
3329 .deinit = spoe_deinit,
3330 .check = spoe_check,
Kevin Zhud87b1a52019-09-17 15:05:45 +02003331 .init_per_thread = spoe_init_per_thread,
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003332
3333 /* Handle start/stop of SPOE */
Christopher Fauletf7a30922016-11-10 15:04:51 +01003334 .attach = spoe_start,
3335 .detach = spoe_stop,
3336 .check_timeouts = spoe_check_timeouts,
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003337
3338 /* Handle channels activity */
3339 .channel_start_analyze = spoe_start_analyze,
3340 .channel_pre_analyze = spoe_chn_pre_analyze,
3341 .channel_end_analyze = spoe_end_analyze,
3342};
3343
3344
3345static int
3346cfg_parse_spoe_agent(const char *file, int linenum, char **args, int kwm)
3347{
3348 const char *err;
3349 int i, err_code = 0;
3350
3351 if ((cfg_scope == NULL && curengine != NULL) ||
3352 (cfg_scope != NULL && curengine == NULL) ||
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003353 (curengine != NULL && cfg_scope != NULL && strcmp(curengine, cfg_scope) != 0))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003354 goto out;
3355
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003356 if (strcmp(args[0], "spoe-agent") == 0) { /* new spoe-agent section */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003357 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003358 ha_alert("parsing [%s:%d] : missing name for spoe-agent section.\n",
3359 file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003360 err_code |= ERR_ALERT | ERR_ABORT;
3361 goto out;
3362 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003363 if (alertif_too_many_args(1, file, linenum, args, &err_code)) {
3364 err_code |= ERR_ABORT;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003365 goto out;
3366 }
3367
3368 err = invalid_char(args[1]);
3369 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003370 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
3371 file, linenum, *err, args[0], args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003372 err_code |= ERR_ALERT | ERR_ABORT;
3373 goto out;
3374 }
3375
3376 if (curagent != NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003377 ha_alert("parsing [%s:%d] : another spoe-agent section previously defined.\n",
3378 file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003379 err_code |= ERR_ALERT | ERR_ABORT;
3380 goto out;
3381 }
3382 if ((curagent = calloc(1, sizeof(*curagent))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003383 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003384 err_code |= ERR_ALERT | ERR_ABORT;
3385 goto out;
3386 }
3387
3388 curagent->id = strdup(args[1]);
Christopher Fauleta1cda022016-12-21 08:58:06 +01003389
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003390 curagent->conf.file = strdup(file);
3391 curagent->conf.line = linenum;
Christopher Fauleta1cda022016-12-21 08:58:06 +01003392
3393 curagent->timeout.hello = TICK_ETERNITY;
3394 curagent->timeout.idle = TICK_ETERNITY;
Christopher Fauletf7a30922016-11-10 15:04:51 +01003395 curagent->timeout.processing = TICK_ETERNITY;
Christopher Fauleta1cda022016-12-21 08:58:06 +01003396
Christopher Fauleta1cda022016-12-21 08:58:06 +01003397 curagent->var_pfx = NULL;
3398 curagent->var_on_error = NULL;
Christopher Faulet36bda1c2018-03-22 09:08:20 +01003399 curagent->var_t_process = NULL;
3400 curagent->var_t_total = NULL;
Christopher Fauletb1bb1af2019-09-17 11:55:52 +02003401 curagent->flags = (SPOE_FL_ASYNC | SPOE_FL_PIPELINING | SPOE_FL_SND_FRAGMENTATION);
Christopher Fauleta1cda022016-12-21 08:58:06 +01003402 curagent->cps_max = 0;
3403 curagent->eps_max = 0;
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01003404 curagent->max_frame_size = MAX_FRAME_SIZE;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01003405 curagent->max_fpa = 20;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003406
3407 for (i = 0; i < SPOE_EV_EVENTS; ++i)
Christopher Faulet11610f32017-09-21 10:23:10 +02003408 LIST_INIT(&curagent->events[i]);
3409 LIST_INIT(&curagent->groups);
3410 LIST_INIT(&curagent->messages);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003411 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003412 else if (strcmp(args[0], "use-backend") == 0) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003413 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003414 ha_alert("parsing [%s:%d] : '%s' expects a backend name.\n",
3415 file, linenum, args[0]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003416 err_code |= ERR_ALERT | ERR_FATAL;
3417 goto out;
3418 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003419 if (alertif_too_many_args(1, file, linenum, args, &err_code))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003420 goto out;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003421 free(curagent->b.name);
3422 curagent->b.name = strdup(args[1]);
3423 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003424 else if (strcmp(args[0], "messages") == 0) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003425 int cur_arg = 1;
3426 while (*args[cur_arg]) {
Christopher Faulet11610f32017-09-21 10:23:10 +02003427 struct spoe_placeholder *ph = NULL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003428
Christopher Faulet11610f32017-09-21 10:23:10 +02003429 list_for_each_entry(ph, &curmphs, list) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003430 if (strcmp(ph->id, args[cur_arg]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003431 ha_alert("parsing [%s:%d]: spoe-message '%s' already used.\n",
3432 file, linenum, args[cur_arg]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003433 err_code |= ERR_ALERT | ERR_FATAL;
3434 goto out;
3435 }
3436 }
3437
Christopher Faulet11610f32017-09-21 10:23:10 +02003438 if ((ph = calloc(1, sizeof(*ph))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003439 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003440 err_code |= ERR_ALERT | ERR_ABORT;
3441 goto out;
3442 }
Christopher Faulet11610f32017-09-21 10:23:10 +02003443 ph->id = strdup(args[cur_arg]);
3444 LIST_ADDQ(&curmphs, &ph->list);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003445 cur_arg++;
3446 }
3447 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003448 else if (strcmp(args[0], "groups") == 0) {
Christopher Faulet11610f32017-09-21 10:23:10 +02003449 int cur_arg = 1;
3450 while (*args[cur_arg]) {
3451 struct spoe_placeholder *ph = NULL;
3452
3453 list_for_each_entry(ph, &curgphs, list) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003454 if (strcmp(ph->id, args[cur_arg]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003455 ha_alert("parsing [%s:%d]: spoe-group '%s' already used.\n",
3456 file, linenum, args[cur_arg]);
Christopher Faulet11610f32017-09-21 10:23:10 +02003457 err_code |= ERR_ALERT | ERR_FATAL;
3458 goto out;
3459 }
3460 }
3461
3462 if ((ph = calloc(1, sizeof(*ph))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003463 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Faulet11610f32017-09-21 10:23:10 +02003464 err_code |= ERR_ALERT | ERR_ABORT;
3465 goto out;
3466 }
3467 ph->id = strdup(args[cur_arg]);
3468 LIST_ADDQ(&curgphs, &ph->list);
3469 cur_arg++;
3470 }
3471 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003472 else if (strcmp(args[0], "timeout") == 0) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003473 unsigned int *tv = NULL;
3474 const char *res;
3475 unsigned timeout;
3476
3477 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003478 ha_alert("parsing [%s:%d] : 'timeout' expects 'hello', 'idle' and 'processing'.\n",
3479 file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003480 err_code |= ERR_ALERT | ERR_FATAL;
3481 goto out;
3482 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003483 if (alertif_too_many_args(2, file, linenum, args, &err_code))
3484 goto out;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003485 if (strcmp(args[1], "hello") == 0)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003486 tv = &curagent->timeout.hello;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003487 else if (strcmp(args[1], "idle") == 0)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003488 tv = &curagent->timeout.idle;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003489 else if (strcmp(args[1], "processing") == 0)
Christopher Fauletf7a30922016-11-10 15:04:51 +01003490 tv = &curagent->timeout.processing;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003491 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003492 ha_alert("parsing [%s:%d] : 'timeout' supports 'hello', 'idle' or 'processing' (got %s).\n",
3493 file, linenum, args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003494 err_code |= ERR_ALERT | ERR_FATAL;
3495 goto out;
3496 }
3497 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003498 ha_alert("parsing [%s:%d] : 'timeout %s' expects an integer value (in milliseconds).\n",
3499 file, linenum, args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003500 err_code |= ERR_ALERT | ERR_FATAL;
3501 goto out;
3502 }
3503 res = parse_time_err(args[2], &timeout, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02003504 if (res == PARSE_TIME_OVER) {
3505 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
3506 file, linenum, args[2], args[0], args[1]);
3507 err_code |= ERR_ALERT | ERR_FATAL;
3508 goto out;
3509 }
3510 else if (res == PARSE_TIME_UNDER) {
3511 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
3512 file, linenum, args[2], args[0], args[1]);
3513 err_code |= ERR_ALERT | ERR_FATAL;
3514 goto out;
3515 }
3516 else if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003517 ha_alert("parsing [%s:%d] : unexpected character '%c' in 'timeout %s'.\n",
3518 file, linenum, *res, args[1]);
Christopher Fauletecc537a2017-02-23 22:52:39 +01003519 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003520 goto out;
3521 }
3522 *tv = MS_TO_TICKS(timeout);
3523 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003524 else if (strcmp(args[0], "option") == 0) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003525 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003526 ha_alert("parsing [%s:%d]: '%s' expects an option name.\n",
3527 file, linenum, args[0]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003528 err_code |= ERR_ALERT | ERR_FATAL;
3529 goto out;
3530 }
Christopher Faulet6a2940c2017-02-23 15:06:26 +01003531
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003532 if (strcmp(args[1], "pipelining") == 0) {
Christopher Fauletecc537a2017-02-23 22:52:39 +01003533 if (alertif_too_many_args(1, file, linenum, args, &err_code))
Christopher Faulet305c6072017-02-23 16:17:53 +01003534 goto out;
Christopher Faulet305c6072017-02-23 16:17:53 +01003535 if (kwm == 1)
3536 curagent->flags &= ~SPOE_FL_PIPELINING;
3537 else
3538 curagent->flags |= SPOE_FL_PIPELINING;
3539 goto out;
3540 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003541 else if (strcmp(args[1], "async") == 0) {
Christopher Fauletecc537a2017-02-23 22:52:39 +01003542 if (alertif_too_many_args(1, file, linenum, args, &err_code))
Christopher Faulet305c6072017-02-23 16:17:53 +01003543 goto out;
Christopher Faulet305c6072017-02-23 16:17:53 +01003544 if (kwm == 1)
3545 curagent->flags &= ~SPOE_FL_ASYNC;
Christopher Fauletb1bb1af2019-09-17 11:55:52 +02003546 else
3547 curagent->flags |= SPOE_FL_ASYNC;
Christopher Faulet305c6072017-02-23 16:17:53 +01003548 goto out;
3549 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003550 else if (strcmp(args[1], "send-frag-payload") == 0) {
Christopher Fauletcecd8522017-02-24 22:11:21 +01003551 if (alertif_too_many_args(1, file, linenum, args, &err_code))
3552 goto out;
3553 if (kwm == 1)
3554 curagent->flags &= ~SPOE_FL_SND_FRAGMENTATION;
3555 else
3556 curagent->flags |= SPOE_FL_SND_FRAGMENTATION;
3557 goto out;
3558 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003559 else if (strcmp(args[1], "dontlog-normal") == 0) {
Christopher Faulet0e0f0852018-03-26 17:20:36 +02003560 if (alertif_too_many_args(1, file, linenum, args, &err_code))
3561 goto out;
3562 if (kwm == 1)
3563 curpxopts2 &= ~PR_O2_NOLOGNORM;
3564 else
3565 curpxopts2 |= PR_O2_NOLOGNORM;
Christopher Faulet799f5182018-04-26 11:36:34 +02003566 goto out;
Christopher Faulet0e0f0852018-03-26 17:20:36 +02003567 }
Christopher Faulet305c6072017-02-23 16:17:53 +01003568
Christopher Faulet6a2940c2017-02-23 15:06:26 +01003569 /* Following options does not support negation */
3570 if (kwm == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003571 ha_alert("parsing [%s:%d]: negation is not supported for option '%s'.\n",
3572 file, linenum, args[1]);
Christopher Faulet6a2940c2017-02-23 15:06:26 +01003573 err_code |= ERR_ALERT | ERR_FATAL;
3574 goto out;
3575 }
3576
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003577 if (strcmp(args[1], "var-prefix") == 0) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003578 char *tmp;
3579
3580 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003581 ha_alert("parsing [%s:%d]: '%s %s' expects a value.\n",
3582 file, linenum, args[0],
3583 args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003584 err_code |= ERR_ALERT | ERR_FATAL;
3585 goto out;
3586 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003587 if (alertif_too_many_args(2, file, linenum, args, &err_code))
3588 goto out;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003589 tmp = args[2];
3590 while (*tmp) {
Willy Tarreau90807112020-02-25 08:16:33 +01003591 if (!isalnum((unsigned char)*tmp) && *tmp != '_' && *tmp != '.') {
Thierry FOURNIER01a3f202018-05-10 16:41:26 +02003592 ha_alert("parsing [%s:%d]: '%s %s' only supports [a-zA-Z0-9_.] chars.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003593 file, linenum, args[0], args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003594 err_code |= ERR_ALERT | ERR_FATAL;
3595 goto out;
3596 }
3597 tmp++;
3598 }
3599 curagent->var_pfx = strdup(args[2]);
3600 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003601 else if (strcmp(args[1], "force-set-var") == 0) {
Etienne Carriereaec89892017-12-14 09:36:40 +00003602 if (alertif_too_many_args(1, file, linenum, args, &err_code))
3603 goto out;
3604 curagent->flags |= SPOE_FL_FORCE_SET_VAR;
3605 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003606 else if (strcmp(args[1], "continue-on-error") == 0) {
Christopher Fauletecc537a2017-02-23 22:52:39 +01003607 if (alertif_too_many_args(1, file, linenum, args, &err_code))
Christopher Fauletea62c2a2016-11-14 10:54:21 +01003608 goto out;
Christopher Fauletea62c2a2016-11-14 10:54:21 +01003609 curagent->flags |= SPOE_FL_CONT_ON_ERR;
3610 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003611 else if (strcmp(args[1], "set-on-error") == 0) {
Christopher Faulet985532d2016-11-16 15:36:19 +01003612 char *tmp;
3613
3614 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003615 ha_alert("parsing [%s:%d]: '%s %s' expects a value.\n",
3616 file, linenum, args[0],
3617 args[1]);
Christopher Faulet985532d2016-11-16 15:36:19 +01003618 err_code |= ERR_ALERT | ERR_FATAL;
3619 goto out;
3620 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003621 if (alertif_too_many_args(2, file, linenum, args, &err_code))
3622 goto out;
Christopher Faulet985532d2016-11-16 15:36:19 +01003623 tmp = args[2];
3624 while (*tmp) {
Willy Tarreau90807112020-02-25 08:16:33 +01003625 if (!isalnum((unsigned char)*tmp) && *tmp != '_' && *tmp != '.') {
Thierry FOURNIER01a3f202018-05-10 16:41:26 +02003626 ha_alert("parsing [%s:%d]: '%s %s' only supports [a-zA-Z0-9_.] chars.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003627 file, linenum, args[0], args[1]);
Christopher Faulet985532d2016-11-16 15:36:19 +01003628 err_code |= ERR_ALERT | ERR_FATAL;
3629 goto out;
3630 }
3631 tmp++;
3632 }
3633 curagent->var_on_error = strdup(args[2]);
3634 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003635 else if (strcmp(args[1], "set-process-time") == 0) {
Christopher Faulet36bda1c2018-03-22 09:08:20 +01003636 char *tmp;
3637
3638 if (!*args[2]) {
3639 ha_alert("parsing [%s:%d]: '%s %s' expects a value.\n",
3640 file, linenum, args[0],
3641 args[1]);
3642 err_code |= ERR_ALERT | ERR_FATAL;
3643 goto out;
3644 }
3645 if (alertif_too_many_args(2, file, linenum, args, &err_code))
3646 goto out;
3647 tmp = args[2];
3648 while (*tmp) {
Willy Tarreau90807112020-02-25 08:16:33 +01003649 if (!isalnum((unsigned char)*tmp) && *tmp != '_' && *tmp != '.') {
Thierry FOURNIER01a3f202018-05-10 16:41:26 +02003650 ha_alert("parsing [%s:%d]: '%s %s' only supports [a-zA-Z0-9_.] chars.\n",
Christopher Faulet36bda1c2018-03-22 09:08:20 +01003651 file, linenum, args[0], args[1]);
3652 err_code |= ERR_ALERT | ERR_FATAL;
3653 goto out;
3654 }
3655 tmp++;
3656 }
3657 curagent->var_t_process = strdup(args[2]);
3658 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003659 else if (strcmp(args[1], "set-total-time") == 0) {
Christopher Faulet36bda1c2018-03-22 09:08:20 +01003660 char *tmp;
3661
3662 if (!*args[2]) {
3663 ha_alert("parsing [%s:%d]: '%s %s' expects a value.\n",
3664 file, linenum, args[0],
3665 args[1]);
3666 err_code |= ERR_ALERT | ERR_FATAL;
3667 goto out;
3668 }
3669 if (alertif_too_many_args(2, file, linenum, args, &err_code))
3670 goto out;
3671 tmp = args[2];
3672 while (*tmp) {
Willy Tarreau90807112020-02-25 08:16:33 +01003673 if (!isalnum((unsigned char)*tmp) && *tmp != '_' && *tmp != '.') {
Thierry FOURNIER01a3f202018-05-10 16:41:26 +02003674 ha_alert("parsing [%s:%d]: '%s %s' only supports [a-zA-Z0-9_.] chars.\n",
Christopher Faulet36bda1c2018-03-22 09:08:20 +01003675 file, linenum, args[0], args[1]);
3676 err_code |= ERR_ALERT | ERR_FATAL;
3677 goto out;
3678 }
3679 tmp++;
3680 }
3681 curagent->var_t_total = strdup(args[2]);
3682 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003683 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003684 ha_alert("parsing [%s:%d]: option '%s' is not supported.\n",
3685 file, linenum, args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003686 err_code |= ERR_ALERT | ERR_FATAL;
3687 goto out;
3688 }
Christopher Faulet48026722016-11-16 15:01:12 +01003689 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003690 else if (strcmp(args[0], "maxconnrate") == 0) {
Christopher Faulet48026722016-11-16 15:01:12 +01003691 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003692 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n",
3693 file, linenum, args[0]);
Christopher Faulet48026722016-11-16 15:01:12 +01003694 err_code |= ERR_ALERT | ERR_FATAL;
3695 goto out;
3696 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003697 if (alertif_too_many_args(1, file, linenum, args, &err_code))
Christopher Faulet48026722016-11-16 15:01:12 +01003698 goto out;
Christopher Faulet48026722016-11-16 15:01:12 +01003699 curagent->cps_max = atol(args[1]);
3700 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003701 else if (strcmp(args[0], "maxerrrate") == 0) {
Christopher Faulet48026722016-11-16 15:01:12 +01003702 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003703 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n",
3704 file, linenum, args[0]);
Christopher Faulet48026722016-11-16 15:01:12 +01003705 err_code |= ERR_ALERT | ERR_FATAL;
3706 goto out;
3707 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003708 if (alertif_too_many_args(1, file, linenum, args, &err_code))
Christopher Faulet48026722016-11-16 15:01:12 +01003709 goto out;
Christopher Faulet48026722016-11-16 15:01:12 +01003710 curagent->eps_max = atol(args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003711 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003712 else if (strcmp(args[0], "max-frame-size") == 0) {
Christopher Faulet2eca6b52017-02-27 09:40:34 +01003713 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003714 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n",
3715 file, linenum, args[0]);
Christopher Faulet2eca6b52017-02-27 09:40:34 +01003716 err_code |= ERR_ALERT | ERR_FATAL;
3717 goto out;
3718 }
3719 if (alertif_too_many_args(1, file, linenum, args, &err_code))
3720 goto out;
3721 curagent->max_frame_size = atol(args[1]);
3722 if (curagent->max_frame_size < MIN_FRAME_SIZE ||
3723 curagent->max_frame_size > MAX_FRAME_SIZE) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003724 ha_alert("parsing [%s:%d] : '%s' expects a positive integer argument in the range [%d, %d].\n",
3725 file, linenum, args[0], MIN_FRAME_SIZE, MAX_FRAME_SIZE);
Christopher Faulet2eca6b52017-02-27 09:40:34 +01003726 err_code |= ERR_ALERT | ERR_FATAL;
3727 goto out;
3728 }
3729 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003730 else if (strcmp(args[0], "max-waiting-frames") == 0) {
Christopher Faulete8ade382018-01-25 15:32:22 +01003731 if (!*args[1]) {
3732 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n",
3733 file, linenum, args[0]);
3734 err_code |= ERR_ALERT | ERR_FATAL;
3735 goto out;
3736 }
3737 if (alertif_too_many_args(1, file, linenum, args, &err_code))
3738 goto out;
3739 curagent->max_fpa = atol(args[1]);
3740 if (curagent->max_fpa < 1) {
3741 ha_alert("parsing [%s:%d] : '%s' expects a positive integer argument.\n",
3742 file, linenum, args[0]);
3743 err_code |= ERR_ALERT | ERR_FATAL;
3744 goto out;
3745 }
3746 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003747 else if (strcmp(args[0], "register-var-names") == 0) {
Christopher Faulet336d3ef2017-12-22 10:00:55 +01003748 int cur_arg;
3749
3750 if (!*args[1]) {
3751 ha_alert("parsing [%s:%d] : '%s' expects one or more variable names.\n",
3752 file, linenum, args[0]);
3753 err_code |= ERR_ALERT | ERR_FATAL;
3754 goto out;
3755 }
3756 cur_arg = 1;
3757 while (*args[cur_arg]) {
3758 struct spoe_var_placeholder *vph;
3759
3760 if ((vph = calloc(1, sizeof(*vph))) == NULL) {
3761 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
3762 err_code |= ERR_ALERT | ERR_ABORT;
3763 goto out;
3764 }
3765 if ((vph->name = strdup(args[cur_arg])) == NULL) {
Tim Duesterhusb2986132019-06-23 22:10:13 +02003766 free(vph);
Christopher Faulet336d3ef2017-12-22 10:00:55 +01003767 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
3768 err_code |= ERR_ALERT | ERR_ABORT;
3769 goto out;
3770 }
3771 LIST_ADDQ(&curvars, &vph->list);
3772 cur_arg++;
3773 }
3774 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003775 else if (strcmp(args[0], "log") == 0) {
Christopher Faulet7250b8f2018-03-26 17:19:01 +02003776 char *errmsg = NULL;
3777
3778 if (!parse_logsrv(args, &curlogsrvs, (kwm == 1), &errmsg)) {
3779 ha_alert("parsing [%s:%d] : %s : %s\n", file, linenum, args[0], errmsg);
3780 err_code |= ERR_ALERT | ERR_FATAL;
3781 goto out;
3782 }
3783 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003784 else if (*args[0]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003785 ha_alert("parsing [%s:%d] : unknown keyword '%s' in spoe-agent section.\n",
3786 file, linenum, args[0]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003787 err_code |= ERR_ALERT | ERR_FATAL;
3788 goto out;
3789 }
3790 out:
3791 return err_code;
3792}
Christopher Faulet11610f32017-09-21 10:23:10 +02003793static int
3794cfg_parse_spoe_group(const char *file, int linenum, char **args, int kwm)
3795{
3796 struct spoe_group *grp;
3797 const char *err;
3798 int err_code = 0;
3799
3800 if ((cfg_scope == NULL && curengine != NULL) ||
3801 (cfg_scope != NULL && curengine == NULL) ||
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003802 (curengine != NULL && cfg_scope != NULL && strcmp(curengine, cfg_scope) != 0))
Christopher Faulet11610f32017-09-21 10:23:10 +02003803 goto out;
3804
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003805 if (strcmp(args[0], "spoe-group") == 0) { /* new spoe-group section */
Christopher Faulet11610f32017-09-21 10:23:10 +02003806 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003807 ha_alert("parsing [%s:%d] : missing name for spoe-group section.\n",
3808 file, linenum);
Christopher Faulet11610f32017-09-21 10:23:10 +02003809 err_code |= ERR_ALERT | ERR_ABORT;
3810 goto out;
3811 }
3812 if (alertif_too_many_args(1, file, linenum, args, &err_code)) {
3813 err_code |= ERR_ABORT;
3814 goto out;
3815 }
3816
3817 err = invalid_char(args[1]);
3818 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003819 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
3820 file, linenum, *err, args[0], args[1]);
Christopher Faulet11610f32017-09-21 10:23:10 +02003821 err_code |= ERR_ALERT | ERR_ABORT;
3822 goto out;
3823 }
3824
3825 list_for_each_entry(grp, &curgrps, list) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003826 if (strcmp(grp->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003827 ha_alert("parsing [%s:%d]: spoe-group section '%s' has the same"
3828 " name as another one declared at %s:%d.\n",
3829 file, linenum, args[1], grp->conf.file, grp->conf.line);
Christopher Faulet11610f32017-09-21 10:23:10 +02003830 err_code |= ERR_ALERT | ERR_FATAL;
3831 goto out;
3832 }
3833 }
3834
3835 if ((curgrp = calloc(1, sizeof(*curgrp))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003836 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Faulet11610f32017-09-21 10:23:10 +02003837 err_code |= ERR_ALERT | ERR_ABORT;
3838 goto out;
3839 }
3840
3841 curgrp->id = strdup(args[1]);
3842 curgrp->conf.file = strdup(file);
3843 curgrp->conf.line = linenum;
3844 LIST_INIT(&curgrp->phs);
3845 LIST_INIT(&curgrp->messages);
3846 LIST_ADDQ(&curgrps, &curgrp->list);
3847 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003848 else if (strcmp(args[0], "messages") == 0) {
Christopher Faulet11610f32017-09-21 10:23:10 +02003849 int cur_arg = 1;
3850 while (*args[cur_arg]) {
3851 struct spoe_placeholder *ph = NULL;
3852
3853 list_for_each_entry(ph, &curgrp->phs, list) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003854 if (strcmp(ph->id, args[cur_arg]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003855 ha_alert("parsing [%s:%d]: spoe-message '%s' already used.\n",
3856 file, linenum, args[cur_arg]);
Christopher Faulet11610f32017-09-21 10:23:10 +02003857 err_code |= ERR_ALERT | ERR_FATAL;
3858 goto out;
3859 }
3860 }
3861
3862 if ((ph = calloc(1, sizeof(*ph))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003863 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Faulet11610f32017-09-21 10:23:10 +02003864 err_code |= ERR_ALERT | ERR_ABORT;
3865 goto out;
3866 }
3867 ph->id = strdup(args[cur_arg]);
3868 LIST_ADDQ(&curgrp->phs, &ph->list);
3869 cur_arg++;
3870 }
3871 }
3872 else if (*args[0]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003873 ha_alert("parsing [%s:%d] : unknown keyword '%s' in spoe-group section.\n",
3874 file, linenum, args[0]);
Christopher Faulet11610f32017-09-21 10:23:10 +02003875 err_code |= ERR_ALERT | ERR_FATAL;
3876 goto out;
3877 }
3878 out:
3879 return err_code;
3880}
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003881
3882static int
3883cfg_parse_spoe_message(const char *file, int linenum, char **args, int kwm)
3884{
3885 struct spoe_message *msg;
3886 struct spoe_arg *arg;
3887 const char *err;
3888 char *errmsg = NULL;
3889 int err_code = 0;
3890
3891 if ((cfg_scope == NULL && curengine != NULL) ||
3892 (cfg_scope != NULL && curengine == NULL) ||
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003893 (curengine != NULL && cfg_scope != NULL && strcmp(curengine, cfg_scope) != 0))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003894 goto out;
3895
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003896 if (strcmp(args[0], "spoe-message") == 0) { /* new spoe-message section */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003897 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003898 ha_alert("parsing [%s:%d] : missing name for spoe-message section.\n",
3899 file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003900 err_code |= ERR_ALERT | ERR_ABORT;
3901 goto out;
3902 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003903 if (alertif_too_many_args(1, file, linenum, args, &err_code)) {
3904 err_code |= ERR_ABORT;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003905 goto out;
3906 }
3907
3908 err = invalid_char(args[1]);
3909 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003910 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
3911 file, linenum, *err, args[0], args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003912 err_code |= ERR_ALERT | ERR_ABORT;
3913 goto out;
3914 }
3915
3916 list_for_each_entry(msg, &curmsgs, list) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003917 if (strcmp(msg->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003918 ha_alert("parsing [%s:%d]: spoe-message section '%s' has the same"
3919 " name as another one declared at %s:%d.\n",
3920 file, linenum, args[1], msg->conf.file, msg->conf.line);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003921 err_code |= ERR_ALERT | ERR_FATAL;
3922 goto out;
3923 }
3924 }
3925
3926 if ((curmsg = calloc(1, sizeof(*curmsg))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003927 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003928 err_code |= ERR_ALERT | ERR_ABORT;
3929 goto out;
3930 }
3931
3932 curmsg->id = strdup(args[1]);
3933 curmsg->id_len = strlen(curmsg->id);
3934 curmsg->event = SPOE_EV_NONE;
3935 curmsg->conf.file = strdup(file);
3936 curmsg->conf.line = linenum;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01003937 curmsg->nargs = 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003938 LIST_INIT(&curmsg->args);
Christopher Faulet57583e42017-09-04 15:41:09 +02003939 LIST_INIT(&curmsg->acls);
Christopher Faulet11610f32017-09-21 10:23:10 +02003940 LIST_INIT(&curmsg->by_evt);
3941 LIST_INIT(&curmsg->by_grp);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003942 LIST_ADDQ(&curmsgs, &curmsg->list);
3943 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003944 else if (strcmp(args[0], "args") == 0) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003945 int cur_arg = 1;
3946
3947 curproxy->conf.args.ctx = ARGC_SPOE;
3948 curproxy->conf.args.file = file;
3949 curproxy->conf.args.line = linenum;
3950 while (*args[cur_arg]) {
3951 char *delim = strchr(args[cur_arg], '=');
3952 int idx = 0;
3953
3954 if ((arg = calloc(1, sizeof(*arg))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003955 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003956 err_code |= ERR_ALERT | ERR_ABORT;
3957 goto out;
3958 }
3959
3960 if (!delim) {
3961 arg->name = NULL;
3962 arg->name_len = 0;
3963 delim = args[cur_arg];
3964 }
3965 else {
3966 arg->name = my_strndup(args[cur_arg], delim - args[cur_arg]);
3967 arg->name_len = delim - args[cur_arg];
3968 delim++;
3969 }
Christopher Fauletb0b42382017-02-23 22:41:09 +01003970 arg->expr = sample_parse_expr((char*[]){delim, NULL},
3971 &idx, file, linenum, &errmsg,
Willy Tarreaue3b57bf2020-02-14 16:50:14 +01003972 &curproxy->conf.args, NULL);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003973 if (arg->expr == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003974 ha_alert("parsing [%s:%d] : '%s': %s.\n", file, linenum, args[0], errmsg);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003975 err_code |= ERR_ALERT | ERR_FATAL;
3976 free(arg->name);
3977 free(arg);
3978 goto out;
3979 }
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01003980 curmsg->nargs++;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003981 LIST_ADDQ(&curmsg->args, &arg->list);
3982 cur_arg++;
3983 }
3984 curproxy->conf.args.file = NULL;
3985 curproxy->conf.args.line = 0;
3986 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003987 else if (strcmp(args[0], "acl") == 0) {
Christopher Faulet57583e42017-09-04 15:41:09 +02003988 err = invalid_char(args[1]);
3989 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003990 ha_alert("parsing [%s:%d] : character '%c' is not permitted in acl name '%s'.\n",
3991 file, linenum, *err, args[1]);
Christopher Faulet57583e42017-09-04 15:41:09 +02003992 err_code |= ERR_ALERT | ERR_FATAL;
3993 goto out;
3994 }
Tim Duesterhus0cf811a2020-02-05 21:00:50 +01003995 if (strcasecmp(args[1], "or") == 0) {
Tim Duesterhusf1bc24c2020-02-06 22:04:03 +01003996 ha_alert("parsing [%s:%d] : acl name '%s' will never match. 'or' is used to express a "
Tim Duesterhus0cf811a2020-02-05 21:00:50 +01003997 "logical disjunction within a condition.\n",
3998 file, linenum, args[1]);
3999 err_code |= ERR_ALERT | ERR_FATAL;
4000 goto out;
4001 }
Christopher Faulet57583e42017-09-04 15:41:09 +02004002 if (parse_acl((const char **)args + 1, &curmsg->acls, &errmsg, &curproxy->conf.args, file, linenum) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004003 ha_alert("parsing [%s:%d] : error detected while parsing ACL '%s' : %s.\n",
4004 file, linenum, args[1], errmsg);
Christopher Faulet57583e42017-09-04 15:41:09 +02004005 err_code |= ERR_ALERT | ERR_FATAL;
4006 goto out;
4007 }
4008 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004009 else if (strcmp(args[0], "event") == 0) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004010 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004011 ha_alert("parsing [%s:%d] : missing event name.\n", file, linenum);
Christopher Fauletecc537a2017-02-23 22:52:39 +01004012 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004013 goto out;
4014 }
Christopher Faulet57583e42017-09-04 15:41:09 +02004015 /* if (alertif_too_many_args(1, file, linenum, args, &err_code)) */
4016 /* goto out; */
Christopher Fauletecc537a2017-02-23 22:52:39 +01004017
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004018 if (strcmp(args[1], spoe_event_str[SPOE_EV_ON_CLIENT_SESS]) == 0)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004019 curmsg->event = SPOE_EV_ON_CLIENT_SESS;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004020 else if (strcmp(args[1], spoe_event_str[SPOE_EV_ON_SERVER_SESS]) == 0)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004021 curmsg->event = SPOE_EV_ON_SERVER_SESS;
4022
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004023 else if (strcmp(args[1], spoe_event_str[SPOE_EV_ON_TCP_REQ_FE]) == 0)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004024 curmsg->event = SPOE_EV_ON_TCP_REQ_FE;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004025 else if (strcmp(args[1], spoe_event_str[SPOE_EV_ON_TCP_REQ_BE]) == 0)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004026 curmsg->event = SPOE_EV_ON_TCP_REQ_BE;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004027 else if (strcmp(args[1], spoe_event_str[SPOE_EV_ON_TCP_RSP]) == 0)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004028 curmsg->event = SPOE_EV_ON_TCP_RSP;
4029
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004030 else if (strcmp(args[1], spoe_event_str[SPOE_EV_ON_HTTP_REQ_FE]) == 0)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004031 curmsg->event = SPOE_EV_ON_HTTP_REQ_FE;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004032 else if (strcmp(args[1], spoe_event_str[SPOE_EV_ON_HTTP_REQ_BE]) == 0)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004033 curmsg->event = SPOE_EV_ON_HTTP_REQ_BE;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004034 else if (strcmp(args[1], spoe_event_str[SPOE_EV_ON_HTTP_RSP]) == 0)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004035 curmsg->event = SPOE_EV_ON_HTTP_RSP;
4036 else {
Joseph Herlantf1da69d2018-11-15 13:49:02 -08004037 ha_alert("parsing [%s:%d] : unknown event '%s'.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01004038 file, linenum, args[1]);
Christopher Fauletecc537a2017-02-23 22:52:39 +01004039 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004040 goto out;
4041 }
Christopher Faulet57583e42017-09-04 15:41:09 +02004042
4043 if (strcmp(args[2], "if") == 0 || strcmp(args[2], "unless") == 0) {
4044 struct acl_cond *cond;
4045
4046 cond = build_acl_cond(file, linenum, &curmsg->acls,
4047 curproxy, (const char **)args+2,
4048 &errmsg);
4049 if (cond == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004050 ha_alert("parsing [%s:%d] : error detected while "
4051 "parsing an 'event %s' condition : %s.\n",
4052 file, linenum, args[1], errmsg);
Christopher Faulet57583e42017-09-04 15:41:09 +02004053 err_code |= ERR_ALERT | ERR_FATAL;
4054 goto out;
4055 }
4056 curmsg->cond = cond;
4057 }
4058 else if (*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004059 ha_alert("parsing [%s:%d]: 'event %s' expects either 'if' "
4060 "or 'unless' followed by a condition but found '%s'.\n",
4061 file, linenum, args[1], args[2]);
Christopher Faulet57583e42017-09-04 15:41:09 +02004062 err_code |= ERR_ALERT | ERR_FATAL;
4063 goto out;
4064 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004065 }
4066 else if (!*args[0]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004067 ha_alert("parsing [%s:%d] : unknown keyword '%s' in spoe-message section.\n",
4068 file, linenum, args[0]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004069 err_code |= ERR_ALERT | ERR_FATAL;
4070 goto out;
4071 }
4072 out:
4073 free(errmsg);
4074 return err_code;
4075}
4076
4077/* Return -1 on error, else 0 */
4078static int
4079parse_spoe_flt(char **args, int *cur_arg, struct proxy *px,
4080 struct flt_conf *fconf, char **err, void *private)
4081{
4082 struct list backup_sections;
4083 struct spoe_config *conf;
4084 struct spoe_message *msg, *msgback;
Christopher Faulet11610f32017-09-21 10:23:10 +02004085 struct spoe_group *grp, *grpback;
4086 struct spoe_placeholder *ph, *phback;
Christopher Faulet336d3ef2017-12-22 10:00:55 +01004087 struct spoe_var_placeholder *vph, *vphback;
Christopher Faulet7250b8f2018-03-26 17:19:01 +02004088 struct logsrv *logsrv, *logsrvback;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004089 char *file = NULL, *engine = NULL;
4090 int ret, pos = *cur_arg + 1;
4091
Christopher Faulet84c844e2018-03-23 14:37:14 +01004092 LIST_INIT(&curmsgs);
4093 LIST_INIT(&curgrps);
4094 LIST_INIT(&curmphs);
4095 LIST_INIT(&curgphs);
4096 LIST_INIT(&curvars);
Christopher Faulet7250b8f2018-03-26 17:19:01 +02004097 LIST_INIT(&curlogsrvs);
Christopher Faulet0e0f0852018-03-26 17:20:36 +02004098 curpxopts = 0;
4099 curpxopts2 = 0;
Christopher Faulet84c844e2018-03-23 14:37:14 +01004100
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004101 conf = calloc(1, sizeof(*conf));
4102 if (conf == NULL) {
4103 memprintf(err, "%s: out of memory", args[*cur_arg]);
4104 goto error;
4105 }
4106 conf->proxy = px;
4107
4108 while (*args[pos]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004109 if (strcmp(args[pos], "config") == 0) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004110 if (!*args[pos+1]) {
4111 memprintf(err, "'%s' : '%s' option without value",
4112 args[*cur_arg], args[pos]);
4113 goto error;
4114 }
4115 file = args[pos+1];
4116 pos += 2;
4117 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004118 else if (strcmp(args[pos], "engine") == 0) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004119 if (!*args[pos+1]) {
4120 memprintf(err, "'%s' : '%s' option without value",
4121 args[*cur_arg], args[pos]);
4122 goto error;
4123 }
4124 engine = args[pos+1];
4125 pos += 2;
4126 }
4127 else {
4128 memprintf(err, "unknown keyword '%s'", args[pos]);
4129 goto error;
4130 }
4131 }
4132 if (file == NULL) {
4133 memprintf(err, "'%s' : missing config file", args[*cur_arg]);
4134 goto error;
4135 }
4136
4137 /* backup sections and register SPOE sections */
4138 LIST_INIT(&backup_sections);
4139 cfg_backup_sections(&backup_sections);
Christopher Faulet11610f32017-09-21 10:23:10 +02004140 cfg_register_section("spoe-agent", cfg_parse_spoe_agent, NULL);
4141 cfg_register_section("spoe-group", cfg_parse_spoe_group, NULL);
William Lallemandd2ff56d2017-10-16 11:06:50 +02004142 cfg_register_section("spoe-message", cfg_parse_spoe_message, NULL);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004143
4144 /* Parse SPOE filter configuration file */
4145 curengine = engine;
4146 curproxy = px;
4147 curagent = NULL;
4148 curmsg = NULL;
4149 ret = readcfgfile(file);
4150 curproxy = NULL;
4151
4152 /* unregister SPOE sections and restore previous sections */
4153 cfg_unregister_sections();
4154 cfg_restore_sections(&backup_sections);
4155
4156 if (ret == -1) {
4157 memprintf(err, "Could not open configuration file %s : %s",
4158 file, strerror(errno));
4159 goto error;
4160 }
4161 if (ret & (ERR_ABORT|ERR_FATAL)) {
4162 memprintf(err, "Error(s) found in configuration file %s", file);
4163 goto error;
4164 }
4165
4166 /* Check SPOE agent */
4167 if (curagent == NULL) {
4168 memprintf(err, "No SPOE agent found in file %s", file);
4169 goto error;
4170 }
4171 if (curagent->b.name == NULL) {
4172 memprintf(err, "No backend declared for SPOE agent '%s' declared at %s:%d",
4173 curagent->id, curagent->conf.file, curagent->conf.line);
4174 goto error;
4175 }
Christopher Fauletf7a30922016-11-10 15:04:51 +01004176 if (curagent->timeout.hello == TICK_ETERNITY ||
4177 curagent->timeout.idle == TICK_ETERNITY ||
Christopher Fauletf7a30922016-11-10 15:04:51 +01004178 curagent->timeout.processing == TICK_ETERNITY) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004179 ha_warning("Proxy '%s': missing timeouts for SPOE agent '%s' declare at %s:%d.\n"
4180 " | While not properly invalid, you will certainly encounter various problems\n"
4181 " | with such a configuration. To fix this, please ensure that all following\n"
4182 " | timeouts are set to a non-zero value: 'hello', 'idle', 'processing'.\n",
4183 px->id, curagent->id, curagent->conf.file, curagent->conf.line);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004184 }
4185 if (curagent->var_pfx == NULL) {
4186 char *tmp = curagent->id;
4187
4188 while (*tmp) {
Willy Tarreau90807112020-02-25 08:16:33 +01004189 if (!isalnum((unsigned char)*tmp) && *tmp != '_' && *tmp != '.') {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004190 memprintf(err, "Invalid variable prefix '%s' for SPOE agent '%s' declared at %s:%d. "
4191 "Use 'option var-prefix' to set it. Only [a-zA-Z0-9_.] chars are supported.\n",
4192 curagent->id, curagent->id, curagent->conf.file, curagent->conf.line);
4193 goto error;
4194 }
4195 tmp++;
4196 }
4197 curagent->var_pfx = strdup(curagent->id);
4198 }
4199
Christopher Fauletb7426d12018-03-21 14:12:17 +01004200 if (curagent->var_on_error) {
4201 struct arg arg;
4202
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004203 trash.data = snprintf(trash.area, trash.size, "txn.%s.%s",
Christopher Fauletb7426d12018-03-21 14:12:17 +01004204 curagent->var_pfx, curagent->var_on_error);
4205
4206 arg.type = ARGT_STR;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004207 arg.data.str.area = trash.area;
4208 arg.data.str.data = trash.data;
William Dauchyafb93682021-01-05 11:14:58 +01004209 arg.data.str.size = 0; /* Set it to 0 to not release it in vars_check_arg() */
Christopher Fauletb7426d12018-03-21 14:12:17 +01004210 if (!vars_check_arg(&arg, err)) {
4211 memprintf(err, "SPOE agent '%s': failed to register variable %s.%s (%s)",
4212 curagent->id, curagent->var_pfx, curagent->var_on_error, *err);
4213 goto error;
4214 }
4215 }
4216
Christopher Faulet36bda1c2018-03-22 09:08:20 +01004217 if (curagent->var_t_process) {
4218 struct arg arg;
4219
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004220 trash.data = snprintf(trash.area, trash.size, "txn.%s.%s",
Christopher Faulet36bda1c2018-03-22 09:08:20 +01004221 curagent->var_pfx, curagent->var_t_process);
4222
4223 arg.type = ARGT_STR;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004224 arg.data.str.area = trash.area;
4225 arg.data.str.data = trash.data;
William Dauchyafb93682021-01-05 11:14:58 +01004226 arg.data.str.size = 0; /* Set it to 0 to not release it in vars_check_arg() */
Christopher Faulet36bda1c2018-03-22 09:08:20 +01004227 if (!vars_check_arg(&arg, err)) {
4228 memprintf(err, "SPOE agent '%s': failed to register variable %s.%s (%s)",
4229 curagent->id, curagent->var_pfx, curagent->var_t_process, *err);
4230 goto error;
4231 }
4232 }
4233
4234 if (curagent->var_t_total) {
4235 struct arg arg;
4236
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004237 trash.data = snprintf(trash.area, trash.size, "txn.%s.%s",
Christopher Faulet36bda1c2018-03-22 09:08:20 +01004238 curagent->var_pfx, curagent->var_t_total);
4239
4240 arg.type = ARGT_STR;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004241 arg.data.str.area = trash.area;
4242 arg.data.str.data = trash.data;
William Dauchyafb93682021-01-05 11:14:58 +01004243 arg.data.str.size = 0; /* Set it to 0 to not release it in vars_check_arg() */
Christopher Faulet36bda1c2018-03-22 09:08:20 +01004244 if (!vars_check_arg(&arg, err)) {
4245 memprintf(err, "SPOE agent '%s': failed to register variable %s.%s (%s)",
4246 curagent->id, curagent->var_pfx, curagent->var_t_process, *err);
4247 goto error;
4248 }
4249 }
4250
Christopher Faulet11610f32017-09-21 10:23:10 +02004251 if (LIST_ISEMPTY(&curmphs) && LIST_ISEMPTY(&curgphs)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004252 ha_warning("Proxy '%s': No message/group used by SPOE agent '%s' declared at %s:%d.\n",
4253 px->id, curagent->id, curagent->conf.file, curagent->conf.line);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004254 goto finish;
4255 }
4256
Christopher Faulet11610f32017-09-21 10:23:10 +02004257 /* Replace placeholders by the corresponding messages for the SPOE
4258 * agent */
4259 list_for_each_entry(ph, &curmphs, list) {
4260 list_for_each_entry(msg, &curmsgs, list) {
Christopher Fauleta21b0642017-01-09 16:56:23 +01004261 struct spoe_arg *arg;
4262 unsigned int where;
4263
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004264 if (strcmp(msg->id, ph->id) == 0) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004265 if ((px->cap & (PR_CAP_FE|PR_CAP_BE)) == (PR_CAP_FE|PR_CAP_BE)) {
4266 if (msg->event == SPOE_EV_ON_TCP_REQ_BE)
4267 msg->event = SPOE_EV_ON_TCP_REQ_FE;
4268 if (msg->event == SPOE_EV_ON_HTTP_REQ_BE)
4269 msg->event = SPOE_EV_ON_HTTP_REQ_FE;
4270 }
4271 if (!(px->cap & PR_CAP_FE) && (msg->event == SPOE_EV_ON_CLIENT_SESS ||
4272 msg->event == SPOE_EV_ON_TCP_REQ_FE ||
4273 msg->event == SPOE_EV_ON_HTTP_REQ_FE)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004274 ha_warning("Proxy '%s': frontend event used on a backend proxy at %s:%d.\n",
4275 px->id, msg->conf.file, msg->conf.line);
Christopher Faulet11610f32017-09-21 10:23:10 +02004276 goto next_mph;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004277 }
4278 if (msg->event == SPOE_EV_NONE) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004279 ha_warning("Proxy '%s': Ignore SPOE message '%s' without event at %s:%d.\n",
4280 px->id, msg->id, msg->conf.file, msg->conf.line);
Christopher Faulet11610f32017-09-21 10:23:10 +02004281 goto next_mph;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004282 }
Christopher Fauleta21b0642017-01-09 16:56:23 +01004283
4284 where = 0;
4285 switch (msg->event) {
4286 case SPOE_EV_ON_CLIENT_SESS:
4287 where |= SMP_VAL_FE_CON_ACC;
4288 break;
4289
4290 case SPOE_EV_ON_TCP_REQ_FE:
4291 where |= SMP_VAL_FE_REQ_CNT;
4292 break;
4293
4294 case SPOE_EV_ON_HTTP_REQ_FE:
4295 where |= SMP_VAL_FE_HRQ_HDR;
4296 break;
4297
4298 case SPOE_EV_ON_TCP_REQ_BE:
4299 if (px->cap & PR_CAP_FE)
4300 where |= SMP_VAL_FE_REQ_CNT;
4301 if (px->cap & PR_CAP_BE)
4302 where |= SMP_VAL_BE_REQ_CNT;
4303 break;
4304
4305 case SPOE_EV_ON_HTTP_REQ_BE:
4306 if (px->cap & PR_CAP_FE)
4307 where |= SMP_VAL_FE_HRQ_HDR;
4308 if (px->cap & PR_CAP_BE)
4309 where |= SMP_VAL_BE_HRQ_HDR;
4310 break;
4311
4312 case SPOE_EV_ON_SERVER_SESS:
4313 where |= SMP_VAL_BE_SRV_CON;
4314 break;
4315
4316 case SPOE_EV_ON_TCP_RSP:
4317 if (px->cap & PR_CAP_FE)
4318 where |= SMP_VAL_FE_RES_CNT;
4319 if (px->cap & PR_CAP_BE)
4320 where |= SMP_VAL_BE_RES_CNT;
4321 break;
4322
4323 case SPOE_EV_ON_HTTP_RSP:
4324 if (px->cap & PR_CAP_FE)
4325 where |= SMP_VAL_FE_HRS_HDR;
4326 if (px->cap & PR_CAP_BE)
4327 where |= SMP_VAL_BE_HRS_HDR;
4328 break;
4329
4330 default:
4331 break;
4332 }
4333
4334 list_for_each_entry(arg, &msg->args, list) {
4335 if (!(arg->expr->fetch->val & where)) {
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004336 memprintf(err, "Ignore SPOE message '%s' at %s:%d: "
Christopher Fauleta21b0642017-01-09 16:56:23 +01004337 "some args extract information from '%s', "
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004338 "none of which is available here ('%s')",
4339 msg->id, msg->conf.file, msg->conf.line,
Christopher Fauleta21b0642017-01-09 16:56:23 +01004340 sample_ckp_names(arg->expr->fetch->use),
4341 sample_ckp_names(where));
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004342 goto error;
Christopher Fauleta21b0642017-01-09 16:56:23 +01004343 }
4344 }
4345
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004346 msg->agent = curagent;
Christopher Faulet11610f32017-09-21 10:23:10 +02004347 LIST_ADDQ(&curagent->events[msg->event], &msg->by_evt);
4348 goto next_mph;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004349 }
4350 }
4351 memprintf(err, "SPOE agent '%s' try to use undefined SPOE message '%s' at %s:%d",
Christopher Faulet11610f32017-09-21 10:23:10 +02004352 curagent->id, ph->id, curagent->conf.file, curagent->conf.line);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004353 goto error;
Christopher Faulet11610f32017-09-21 10:23:10 +02004354 next_mph:
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004355 continue;
4356 }
4357
Christopher Faulet11610f32017-09-21 10:23:10 +02004358 /* Replace placeholders by the corresponding groups for the SPOE
4359 * agent */
4360 list_for_each_entry(ph, &curgphs, list) {
4361 list_for_each_entry_safe(grp, grpback, &curgrps, list) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004362 if (strcmp(grp->id, ph->id) == 0) {
Christopher Faulet11610f32017-09-21 10:23:10 +02004363 grp->agent = curagent;
4364 LIST_DEL(&grp->list);
4365 LIST_ADDQ(&curagent->groups, &grp->list);
4366 goto next_aph;
4367 }
4368 }
4369 memprintf(err, "SPOE agent '%s' try to use undefined SPOE group '%s' at %s:%d",
4370 curagent->id, ph->id, curagent->conf.file, curagent->conf.line);
4371 goto error;
4372 next_aph:
4373 continue;
4374 }
4375
4376 /* Replace placeholders by the corresponding message for each SPOE
4377 * group of the SPOE agent */
4378 list_for_each_entry(grp, &curagent->groups, list) {
4379 list_for_each_entry_safe(ph, phback, &grp->phs, list) {
4380 list_for_each_entry(msg, &curmsgs, list) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004381 if (strcmp(msg->id, ph->id) == 0) {
Christopher Faulet11610f32017-09-21 10:23:10 +02004382 if (msg->group != NULL) {
4383 memprintf(err, "SPOE message '%s' already belongs to "
4384 "the SPOE group '%s' declare at %s:%d",
4385 msg->id, msg->group->id,
4386 msg->group->conf.file,
4387 msg->group->conf.line);
4388 goto error;
4389 }
4390
4391 /* Scope for arguments are not checked for now. We will check
4392 * them only if a rule use the corresponding SPOE group. */
4393 msg->agent = curagent;
4394 msg->group = grp;
4395 LIST_DEL(&ph->list);
4396 LIST_ADDQ(&grp->messages, &msg->by_grp);
4397 goto next_mph_grp;
4398 }
4399 }
4400 memprintf(err, "SPOE group '%s' try to use undefined SPOE message '%s' at %s:%d",
4401 grp->id, ph->id, curagent->conf.file, curagent->conf.line);
4402 goto error;
4403 next_mph_grp:
4404 continue;
4405 }
4406 }
4407
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004408 finish:
Christopher Faulet11610f32017-09-21 10:23:10 +02004409 /* move curmsgs to the agent message list */
4410 curmsgs.n->p = &curagent->messages;
4411 curmsgs.p->n = &curagent->messages;
4412 curagent->messages = curmsgs;
4413 LIST_INIT(&curmsgs);
4414
Christopher Faulet7ee86672017-09-19 11:08:28 +02004415 conf->id = strdup(engine ? engine : curagent->id);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004416 conf->agent = curagent;
Christopher Faulet7250b8f2018-03-26 17:19:01 +02004417
4418 /* Start agent's proxy initialization here. It will be finished during
4419 * the filter init. */
4420 memset(&conf->agent_fe, 0, sizeof(conf->agent_fe));
4421 init_new_proxy(&conf->agent_fe);
4422 conf->agent_fe.id = conf->agent->id;
4423 conf->agent_fe.parent = conf->agent;
Christopher Faulet0e0f0852018-03-26 17:20:36 +02004424 conf->agent_fe.options |= curpxopts;
4425 conf->agent_fe.options2 |= curpxopts2;
Christopher Faulet7250b8f2018-03-26 17:19:01 +02004426
4427 list_for_each_entry_safe(logsrv, logsrvback, &curlogsrvs, list) {
4428 LIST_DEL(&logsrv->list);
4429 LIST_ADDQ(&conf->agent_fe.logsrvs, &logsrv->list);
4430 }
4431
Christopher Faulet11610f32017-09-21 10:23:10 +02004432 list_for_each_entry_safe(ph, phback, &curmphs, list) {
4433 LIST_DEL(&ph->list);
4434 spoe_release_placeholder(ph);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004435 }
Christopher Faulet11610f32017-09-21 10:23:10 +02004436 list_for_each_entry_safe(ph, phback, &curgphs, list) {
4437 LIST_DEL(&ph->list);
4438 spoe_release_placeholder(ph);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004439 }
Christopher Faulet336d3ef2017-12-22 10:00:55 +01004440 list_for_each_entry_safe(vph, vphback, &curvars, list) {
4441 struct arg arg;
4442
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004443 trash.data = snprintf(trash.area, trash.size, "proc.%s.%s",
Christopher Faulet336d3ef2017-12-22 10:00:55 +01004444 curagent->var_pfx, vph->name);
4445
4446 arg.type = ARGT_STR;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004447 arg.data.str.area = trash.area;
4448 arg.data.str.data = trash.data;
William Dauchyafb93682021-01-05 11:14:58 +01004449 arg.data.str.size = 0; /* Set it to 0 to not release it in vars_check_arg() */
Christopher Faulet336d3ef2017-12-22 10:00:55 +01004450 if (!vars_check_arg(&arg, err)) {
4451 memprintf(err, "SPOE agent '%s': failed to register variable %s.%s (%s)",
4452 curagent->id, curagent->var_pfx, vph->name, *err);
4453 goto error;
4454 }
4455
4456 LIST_DEL(&vph->list);
4457 free(vph->name);
4458 free(vph);
4459 }
Christopher Faulet11610f32017-09-21 10:23:10 +02004460 list_for_each_entry_safe(grp, grpback, &curgrps, list) {
4461 LIST_DEL(&grp->list);
4462 spoe_release_group(grp);
4463 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004464 *cur_arg = pos;
Christopher Faulet3b386a32017-02-23 10:17:15 +01004465 fconf->id = spoe_filter_id;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004466 fconf->ops = &spoe_ops;
4467 fconf->conf = conf;
4468 return 0;
4469
4470 error:
Christopher Faulet8ef75252017-02-20 22:56:03 +01004471 spoe_release_agent(curagent);
Christopher Faulet11610f32017-09-21 10:23:10 +02004472 list_for_each_entry_safe(ph, phback, &curmphs, list) {
4473 LIST_DEL(&ph->list);
4474 spoe_release_placeholder(ph);
4475 }
4476 list_for_each_entry_safe(ph, phback, &curgphs, list) {
4477 LIST_DEL(&ph->list);
4478 spoe_release_placeholder(ph);
4479 }
Christopher Faulet336d3ef2017-12-22 10:00:55 +01004480 list_for_each_entry_safe(vph, vphback, &curvars, list) {
4481 LIST_DEL(&vph->list);
4482 free(vph->name);
4483 free(vph);
4484 }
Christopher Faulet11610f32017-09-21 10:23:10 +02004485 list_for_each_entry_safe(grp, grpback, &curgrps, list) {
4486 LIST_DEL(&grp->list);
4487 spoe_release_group(grp);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004488 }
4489 list_for_each_entry_safe(msg, msgback, &curmsgs, list) {
4490 LIST_DEL(&msg->list);
Christopher Faulet8ef75252017-02-20 22:56:03 +01004491 spoe_release_message(msg);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004492 }
Christopher Faulet7250b8f2018-03-26 17:19:01 +02004493 list_for_each_entry_safe(logsrv, logsrvback, &curlogsrvs, list) {
4494 LIST_DEL(&logsrv->list);
4495 free(logsrv);
4496 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004497 free(conf);
4498 return -1;
4499}
4500
Christopher Faulet344c4ab2017-09-22 10:20:13 +02004501/* Send message of a SPOE group. This is the action_ptr callback of a rule
4502 * associated to a "send-spoe-group" action.
4503 *
Christopher Faulet13403762019-12-13 09:01:57 +01004504 * It returns ACT_RET_CONT if processing is finished (with error or not), it returns
4505 * ACT_RET_YIELD if the action is in progress. */
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004506static enum act_return
4507spoe_send_group(struct act_rule *rule, struct proxy *px,
4508 struct session *sess, struct stream *s, int flags)
4509{
4510 struct filter *filter;
4511 struct spoe_agent *agent = NULL;
4512 struct spoe_group *group = NULL;
4513 struct spoe_context *ctx = NULL;
4514 int ret, dir;
4515
4516 list_for_each_entry(filter, &s->strm_flt.filters, list) {
4517 if (filter->config == rule->arg.act.p[0]) {
4518 agent = rule->arg.act.p[2];
4519 group = rule->arg.act.p[3];
4520 ctx = filter->ctx;
4521 break;
4522 }
4523 }
4524 if (agent == NULL || group == NULL || ctx == NULL)
Christopher Faulet13403762019-12-13 09:01:57 +01004525 return ACT_RET_CONT;
Christopher Faulet344c4ab2017-09-22 10:20:13 +02004526 if (ctx->state == SPOE_CTX_ST_NONE)
4527 return ACT_RET_CONT;
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004528
Christopher Faulet344c4ab2017-09-22 10:20:13 +02004529 switch (rule->from) {
4530 case ACT_F_TCP_REQ_SES: dir = SMP_OPT_DIR_REQ; break;
4531 case ACT_F_TCP_REQ_CNT: dir = SMP_OPT_DIR_REQ; break;
4532 case ACT_F_TCP_RES_CNT: dir = SMP_OPT_DIR_RES; break;
4533 case ACT_F_HTTP_REQ: dir = SMP_OPT_DIR_REQ; break;
4534 case ACT_F_HTTP_RES: dir = SMP_OPT_DIR_RES; break;
4535 default:
4536 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
4537 " - internal error while execute spoe-send-group\n",
4538 (int)now.tv_sec, (int)now.tv_usec, agent->id,
4539 __FUNCTION__, s);
4540 send_log(px, LOG_ERR, "SPOE: [%s] internal error while execute spoe-send-group\n",
4541 agent->id);
4542 return ACT_RET_CONT;
4543 }
4544
4545 ret = spoe_process_group(s, ctx, group, dir);
4546 if (ret == 1)
4547 return ACT_RET_CONT;
4548 else if (ret == 0) {
Christopher Faulet105ba6c2019-12-18 14:41:51 +01004549 if (flags & ACT_OPT_FINAL) {
Christopher Faulet344c4ab2017-09-22 10:20:13 +02004550 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
4551 " - failed to process group '%s': interrupted by caller\n",
4552 (int)now.tv_sec, (int)now.tv_usec,
4553 agent->id, __FUNCTION__, s, group->id);
4554 ctx->status_code = SPOE_CTX_ERR_INTERRUPT;
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01004555 spoe_stop_processing(agent, ctx);
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02004556 spoe_handle_processing_error(s, agent, ctx, dir);
Christopher Faulet344c4ab2017-09-22 10:20:13 +02004557 return ACT_RET_CONT;
4558 }
4559 return ACT_RET_YIELD;
4560 }
4561 else
Christopher Faulet13403762019-12-13 09:01:57 +01004562 return ACT_RET_CONT;
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004563}
4564
4565/* Check an "send-spoe-group" action. Here, we'll try to find the real SPOE
4566 * group associated to <rule>. The format of an rule using 'send-spoe-group'
4567 * action should be:
4568 *
4569 * (http|tcp)-(request|response) send-spoe-group <engine-id> <group-id>
4570 *
4571 * So, we'll loop on each configured SPOE filter for the proxy <px> to find the
4572 * SPOE engine matching <engine-id>. And then, we'll try to find the good group
4573 * matching <group-id>. Finally, we'll check all messages referenced by the SPOE
4574 * group.
4575 *
4576 * The function returns 1 in success case, otherwise, it returns 0 and err is
4577 * filled.
4578 */
4579static int
4580check_send_spoe_group(struct act_rule *rule, struct proxy *px, char **err)
4581{
4582 struct flt_conf *fconf;
4583 struct spoe_config *conf;
4584 struct spoe_agent *agent = NULL;
4585 struct spoe_group *group;
4586 struct spoe_message *msg;
4587 char *engine_id = rule->arg.act.p[0];
4588 char *group_id = rule->arg.act.p[1];
4589 unsigned int where = 0;
4590
4591 switch (rule->from) {
4592 case ACT_F_TCP_REQ_SES: where = SMP_VAL_FE_SES_ACC; break;
4593 case ACT_F_TCP_REQ_CNT: where = SMP_VAL_FE_REQ_CNT; break;
4594 case ACT_F_TCP_RES_CNT: where = SMP_VAL_BE_RES_CNT; break;
4595 case ACT_F_HTTP_REQ: where = SMP_VAL_FE_HRQ_HDR; break;
4596 case ACT_F_HTTP_RES: where = SMP_VAL_BE_HRS_HDR; break;
4597 default:
4598 memprintf(err,
4599 "internal error, unexpected rule->from=%d, please report this bug!",
4600 rule->from);
4601 goto error;
4602 }
4603
4604 /* Try to find the SPOE engine by checking all SPOE filters for proxy
4605 * <px> */
4606 list_for_each_entry(fconf, &px->filter_configs, list) {
4607 conf = fconf->conf;
4608
4609 /* This is not an SPOE filter */
4610 if (fconf->id != spoe_filter_id)
4611 continue;
4612
4613 /* This is the good engine */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004614 if (strcmp(conf->id, engine_id) == 0) {
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004615 agent = conf->agent;
4616 break;
4617 }
4618 }
4619 if (agent == NULL) {
4620 memprintf(err, "unable to find SPOE engine '%s' used by the send-spoe-group '%s'",
4621 engine_id, group_id);
4622 goto error;
4623 }
4624
4625 /* Try to find the right group */
4626 list_for_each_entry(group, &agent->groups, list) {
4627 /* This is the good group */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004628 if (strcmp(group->id, group_id) == 0)
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004629 break;
4630 }
4631 if (&group->list == &agent->groups) {
4632 memprintf(err, "unable to find SPOE group '%s' into SPOE engine '%s' configuration",
4633 group_id, engine_id);
4634 goto error;
4635 }
4636
4637 /* Ok, we found the group, we need to check messages and their
4638 * arguments */
4639 list_for_each_entry(msg, &group->messages, by_grp) {
4640 struct spoe_arg *arg;
4641
4642 list_for_each_entry(arg, &msg->args, list) {
4643 if (!(arg->expr->fetch->val & where)) {
4644 memprintf(err, "Invalid SPOE message '%s' used by SPOE group '%s' at %s:%d: "
4645 "some args extract information from '%s',"
4646 "none of which is available here ('%s')",
4647 msg->id, group->id, msg->conf.file, msg->conf.line,
4648 sample_ckp_names(arg->expr->fetch->use),
4649 sample_ckp_names(where));
4650 goto error;
4651 }
4652 }
4653 }
4654
4655 free(engine_id);
4656 free(group_id);
4657 rule->arg.act.p[0] = fconf; /* Associate filter config with the rule */
4658 rule->arg.act.p[1] = conf; /* Associate SPOE config with the rule */
4659 rule->arg.act.p[2] = agent; /* Associate SPOE agent with the rule */
4660 rule->arg.act.p[3] = group; /* Associate SPOE group with the rule */
4661 return 1;
4662
4663 error:
4664 free(engine_id);
4665 free(group_id);
4666 return 0;
4667}
4668
4669/* Parse 'send-spoe-group' action following the format:
4670 *
4671 * ... send-spoe-group <engine-id> <group-id>
4672 *
4673 * It returns ACT_RET_PRS_ERR if fails and <err> is filled with an error
4674 * message. Otherwise, it returns ACT_RET_PRS_OK and parsing engine and group
4675 * ids are saved and used later, when the rule will be checked.
4676 */
4677static enum act_parse_ret
4678parse_send_spoe_group(const char **args, int *orig_arg, struct proxy *px,
4679 struct act_rule *rule, char **err)
4680{
4681 if (!*args[*orig_arg] || !*args[*orig_arg+1] ||
4682 (*args[*orig_arg+2] && strcmp(args[*orig_arg+2], "if") != 0 && strcmp(args[*orig_arg+2], "unless") != 0)) {
4683 memprintf(err, "expects 2 arguments: <engine-id> <group-id>");
4684 return ACT_RET_PRS_ERR;
4685 }
4686 rule->arg.act.p[0] = strdup(args[*orig_arg]); /* Copy the SPOE engine id */
4687 rule->arg.act.p[1] = strdup(args[*orig_arg+1]); /* Cope the SPOE group id */
4688
4689 (*orig_arg) += 2;
4690
4691 rule->action = ACT_CUSTOM;
4692 rule->action_ptr = spoe_send_group;
4693 rule->check_ptr = check_send_spoe_group;
4694 return ACT_RET_PRS_OK;
4695}
4696
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004697
4698/* Declare the filter parser for "spoe" keyword */
4699static struct flt_kw_list flt_kws = { "SPOE", { }, {
4700 { "spoe", parse_spoe_flt, NULL },
4701 { NULL, NULL, NULL },
4702 }
4703};
4704
Willy Tarreau0108d902018-11-25 19:14:37 +01004705INITCALL1(STG_REGISTER, flt_register_keywords, &flt_kws);
4706
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004707/* Delcate the action parser for "spoe-action" keyword */
4708static struct action_kw_list tcp_req_action_kws = { { }, {
4709 { "send-spoe-group", parse_send_spoe_group },
4710 { /* END */ },
4711 }
4712};
Willy Tarreau0108d902018-11-25 19:14:37 +01004713
4714INITCALL1(STG_REGISTER, tcp_req_cont_keywords_register, &tcp_req_action_kws);
4715
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004716static struct action_kw_list tcp_res_action_kws = { { }, {
4717 { "send-spoe-group", parse_send_spoe_group },
4718 { /* END */ },
4719 }
4720};
Willy Tarreau0108d902018-11-25 19:14:37 +01004721
4722INITCALL1(STG_REGISTER, tcp_res_cont_keywords_register, &tcp_res_action_kws);
4723
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004724static struct action_kw_list http_req_action_kws = { { }, {
4725 { "send-spoe-group", parse_send_spoe_group },
4726 { /* END */ },
4727 }
4728};
Willy Tarreau0108d902018-11-25 19:14:37 +01004729
4730INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_action_kws);
4731
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004732static struct action_kw_list http_res_action_kws = { { }, {
4733 { "send-spoe-group", parse_send_spoe_group },
4734 { /* END */ },
4735 }
4736};
4737
Willy Tarreau0108d902018-11-25 19:14:37 +01004738INITCALL1(STG_REGISTER, http_res_keywords_register, &http_res_action_kws);