blob: 853452f5335c4bddbc780c5d14c1ee609559d761 [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>
Christopher Faulet6b0a0fb2022-04-04 11:29:28 +020016#include <haproxy/applet.h>
Willy Tarreau122eba92020-06-04 10:15:32 +020017#include <haproxy/action-t.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020018#include <haproxy/api.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020019#include <haproxy/arg.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020020#include <haproxy/cfgparse.h>
Tim Duesterhus75e2f8d2021-09-16 17:38:26 +020021#include <haproxy/check.h>
Willy Tarreauc7babd82020-06-04 21:29:29 +020022#include <haproxy/filters.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020023#include <haproxy/freq_ctr.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020024#include <haproxy/frontend.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020025#include <haproxy/global.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020026#include <haproxy/http_rules.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020027#include <haproxy/log.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020028#include <haproxy/pool.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020029#include <haproxy/proxy.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020030#include <haproxy/sample.h>
Willy Tarreau5edca2f2022-05-27 09:25:10 +020031#include <haproxy/sc_strm.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020032#include <haproxy/session.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020033#include <haproxy/signal.h>
Christopher Faulet1d7d0f82021-02-19 10:56:41 +010034#include <haproxy/sink.h>
Willy Tarreau6c58ab02020-06-04 22:35:49 +020035#include <haproxy/spoe.h>
Willy Tarreaucb086c62022-05-27 09:47:12 +020036#include <haproxy/stconn.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020037#include <haproxy/stream.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020038#include <haproxy/task.h>
Willy Tarreau8b550af2020-06-04 17:42:48 +020039#include <haproxy/tcp_rules.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020040#include <haproxy/thread.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020041#include <haproxy/time.h>
Willy Tarreaue16ada12021-05-08 12:57:17 +020042#include <haproxy/tools.h>
Willy Tarreaua1718922020-06-04 16:25:31 +020043#include <haproxy/vars.h>
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020044
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020045
46#if defined(DEBUG_SPOE) || defined(DEBUG_FULL)
47#define SPOE_PRINTF(x...) fprintf(x)
Christopher Fauletb077cdc2018-01-24 16:37:57 +010048#define SPOE_DEBUG_STMT(statement) statement
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020049#else
50#define SPOE_PRINTF(x...)
Christopher Fauletb077cdc2018-01-24 16:37:57 +010051#define SPOE_DEBUG_STMT(statement)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020052#endif
53
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +010054/* Reserved 4 bytes to the frame size. So a frame and its size can be written
55 * together in a buffer */
56#define MAX_FRAME_SIZE global.tune.bufsize - 4
57
58/* The minimum size for a frame */
59#define MIN_FRAME_SIZE 256
60
Christopher Fauletf51f5fa2017-01-19 10:01:12 +010061/* Reserved for the metadata and the frame type.
62 * So <MAX_FRAME_SIZE> - <FRAME_HDR_SIZE> is the maximum payload size */
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +010063#define FRAME_HDR_SIZE 32
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020064
Christopher Fauletf51f5fa2017-01-19 10:01:12 +010065/* Helper to get SPOE ctx inside an appctx */
Willy Tarreau23a24072022-05-05 20:18:44 +020066#define SPOE_APPCTX(appctx) ((struct spoe_appctx *)((appctx)->svcctx))
Christopher Faulet42bfa462017-01-04 14:14:19 +010067
Christopher Faulet3b386a32017-02-23 10:17:15 +010068/* SPOE filter id. Used to identify SPOE filters */
69const char *spoe_filter_id = "SPOE filter";
70
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020071/* Set if the handle on SIGUSR1 is registered */
72static int sighandler_registered = 0;
73
74/* proxy used during the parsing */
75struct proxy *curproxy = NULL;
76
77/* The name of the SPOE engine, used during the parsing */
78char *curengine = NULL;
79
80/* SPOE agent used during the parsing */
Christopher Faulet11610f32017-09-21 10:23:10 +020081/* SPOE agent/group/message used during the parsing */
82struct spoe_agent *curagent = NULL;
83struct spoe_group *curgrp = NULL;
84struct spoe_message *curmsg = NULL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020085
86/* list of SPOE messages and placeholders used during the parsing */
87struct list curmsgs;
Christopher Faulet11610f32017-09-21 10:23:10 +020088struct list curgrps;
89struct list curmphs;
90struct list curgphs;
Christopher Faulet336d3ef2017-12-22 10:00:55 +010091struct list curvars;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020092
Christopher Faulet7250b8f2018-03-26 17:19:01 +020093/* list of log servers used during the parsing */
94struct list curlogsrvs;
95
Christopher Faulet0e0f0852018-03-26 17:20:36 +020096/* agent's proxy flags (PR_O_* and PR_O2_*) used during parsing */
97int curpxopts;
98int curpxopts2;
99
Christopher Faulet42bfa462017-01-04 14:14:19 +0100100/* Pools used to allocate SPOE structs */
Willy Tarreau8ceae722018-11-26 11:58:30 +0100101DECLARE_STATIC_POOL(pool_head_spoe_ctx, "spoe_ctx", sizeof(struct spoe_context));
102DECLARE_STATIC_POOL(pool_head_spoe_appctx, "spoe_appctx", sizeof(struct spoe_appctx));
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200103
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200104struct flt_ops spoe_ops;
105
Christopher Faulet8ef75252017-02-20 22:56:03 +0100106static int spoe_queue_context(struct spoe_context *ctx);
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200107static int spoe_acquire_buffer(struct buffer *buf, struct buffer_wait *buffer_wait);
108static void spoe_release_buffer(struct buffer *buf, struct buffer_wait *buffer_wait);
Christopher Faulet6f1296b2021-08-02 17:53:56 +0200109static struct appctx *spoe_create_appctx(struct spoe_config *conf);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200110
111/********************************************************************
112 * helper functions/globals
113 ********************************************************************/
114static void
Christopher Faulet11610f32017-09-21 10:23:10 +0200115spoe_release_placeholder(struct spoe_placeholder *ph)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200116{
Christopher Faulet11610f32017-09-21 10:23:10 +0200117 if (!ph)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200118 return;
Christopher Faulet11610f32017-09-21 10:23:10 +0200119 free(ph->id);
120 free(ph);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200121}
122
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200123static void
Christopher Faulet8ef75252017-02-20 22:56:03 +0100124spoe_release_message(struct spoe_message *msg)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200125{
Christopher Faulet57583e42017-09-04 15:41:09 +0200126 struct spoe_arg *arg, *argback;
127 struct acl *acl, *aclback;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200128
129 if (!msg)
130 return;
131 free(msg->id);
132 free(msg->conf.file);
Christopher Faulet57583e42017-09-04 15:41:09 +0200133 list_for_each_entry_safe(arg, argback, &msg->args, list) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200134 release_sample_expr(arg->expr);
135 free(arg->name);
Willy Tarreau2b718102021-04-21 07:32:39 +0200136 LIST_DELETE(&arg->list);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200137 free(arg);
138 }
Christopher Faulet57583e42017-09-04 15:41:09 +0200139 list_for_each_entry_safe(acl, aclback, &msg->acls, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200140 LIST_DELETE(&acl->list);
Christopher Faulet57583e42017-09-04 15:41:09 +0200141 prune_acl(acl);
142 free(acl);
143 }
144 if (msg->cond) {
145 prune_acl_cond(msg->cond);
146 free(msg->cond);
147 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200148 free(msg);
149}
150
151static void
Christopher Faulet11610f32017-09-21 10:23:10 +0200152spoe_release_group(struct spoe_group *grp)
153{
154 if (!grp)
155 return;
156 free(grp->id);
157 free(grp->conf.file);
158 free(grp);
159}
160
161static void
Christopher Faulet8ef75252017-02-20 22:56:03 +0100162spoe_release_agent(struct spoe_agent *agent)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200163{
Christopher Faulet11610f32017-09-21 10:23:10 +0200164 struct spoe_message *msg, *msgback;
165 struct spoe_group *grp, *grpback;
Christopher Faulet24289f22017-09-25 14:48:02 +0200166 int i;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200167
168 if (!agent)
169 return;
170 free(agent->id);
171 free(agent->conf.file);
172 free(agent->var_pfx);
Christopher Faulet985532d2016-11-16 15:36:19 +0100173 free(agent->var_on_error);
Christopher Faulet36bda1c2018-03-22 09:08:20 +0100174 free(agent->var_t_process);
175 free(agent->var_t_total);
Christopher Faulet11610f32017-09-21 10:23:10 +0200176 list_for_each_entry_safe(msg, msgback, &agent->messages, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200177 LIST_DELETE(&msg->list);
Christopher Faulet11610f32017-09-21 10:23:10 +0200178 spoe_release_message(msg);
179 }
180 list_for_each_entry_safe(grp, grpback, &agent->groups, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200181 LIST_DELETE(&grp->list);
Christopher Faulet11610f32017-09-21 10:23:10 +0200182 spoe_release_group(grp);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200183 }
Willy Tarreau3ddcf762019-02-07 14:22:52 +0100184 if (agent->rt) {
Christopher Fauletb1bb1af2019-09-17 11:55:52 +0200185 for (i = 0; i < global.nbthread; ++i) {
186 free(agent->rt[i].engine_id);
Willy Tarreau3ddcf762019-02-07 14:22:52 +0100187 HA_SPIN_DESTROY(&agent->rt[i].lock);
Christopher Fauletb1bb1af2019-09-17 11:55:52 +0200188 }
Willy Tarreau3ddcf762019-02-07 14:22:52 +0100189 }
Christopher Faulet24289f22017-09-25 14:48:02 +0200190 free(agent->rt);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200191 free(agent);
192}
193
194static const char *spoe_frm_err_reasons[SPOE_FRM_ERRS] = {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100195 [SPOE_FRM_ERR_NONE] = "normal",
196 [SPOE_FRM_ERR_IO] = "I/O error",
197 [SPOE_FRM_ERR_TOUT] = "a timeout occurred",
198 [SPOE_FRM_ERR_TOO_BIG] = "frame is too big",
199 [SPOE_FRM_ERR_INVALID] = "invalid frame received",
200 [SPOE_FRM_ERR_NO_VSN] = "version value not found",
201 [SPOE_FRM_ERR_NO_FRAME_SIZE] = "max-frame-size value not found",
202 [SPOE_FRM_ERR_NO_CAP] = "capabilities value not found",
203 [SPOE_FRM_ERR_BAD_VSN] = "unsupported version",
204 [SPOE_FRM_ERR_BAD_FRAME_SIZE] = "max-frame-size too big or too small",
205 [SPOE_FRM_ERR_FRAG_NOT_SUPPORTED] = "fragmentation not supported",
206 [SPOE_FRM_ERR_INTERLACED_FRAMES] = "invalid interlaced frames",
Christopher Faulet8eda93f2017-02-09 09:44:33 +0100207 [SPOE_FRM_ERR_FRAMEID_NOTFOUND] = "frame-id not found",
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100208 [SPOE_FRM_ERR_RES] = "resource allocation error",
209 [SPOE_FRM_ERR_UNKNOWN] = "an unknown error occurred",
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200210};
211
212static const char *spoe_event_str[SPOE_EV_EVENTS] = {
213 [SPOE_EV_ON_CLIENT_SESS] = "on-client-session",
214 [SPOE_EV_ON_TCP_REQ_FE] = "on-frontend-tcp-request",
215 [SPOE_EV_ON_TCP_REQ_BE] = "on-backend-tcp-request",
216 [SPOE_EV_ON_HTTP_REQ_FE] = "on-frontend-http-request",
217 [SPOE_EV_ON_HTTP_REQ_BE] = "on-backend-http-request",
218
219 [SPOE_EV_ON_SERVER_SESS] = "on-server-session",
220 [SPOE_EV_ON_TCP_RSP] = "on-tcp-response",
221 [SPOE_EV_ON_HTTP_RSP] = "on-http-response",
222};
223
224
225#if defined(DEBUG_SPOE) || defined(DEBUG_FULL)
226
227static const char *spoe_ctx_state_str[SPOE_CTX_ST_ERROR+1] = {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100228 [SPOE_CTX_ST_NONE] = "NONE",
229 [SPOE_CTX_ST_READY] = "READY",
230 [SPOE_CTX_ST_ENCODING_MSGS] = "ENCODING_MSGS",
231 [SPOE_CTX_ST_SENDING_MSGS] = "SENDING_MSGS",
232 [SPOE_CTX_ST_WAITING_ACK] = "WAITING_ACK",
233 [SPOE_CTX_ST_DONE] = "DONE",
234 [SPOE_CTX_ST_ERROR] = "ERROR",
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200235};
236
237static const char *spoe_appctx_state_str[SPOE_APPCTX_ST_END+1] = {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100238 [SPOE_APPCTX_ST_CONNECT] = "CONNECT",
239 [SPOE_APPCTX_ST_CONNECTING] = "CONNECTING",
240 [SPOE_APPCTX_ST_IDLE] = "IDLE",
241 [SPOE_APPCTX_ST_PROCESSING] = "PROCESSING",
242 [SPOE_APPCTX_ST_SENDING_FRAG_NOTIFY] = "SENDING_FRAG_NOTIFY",
243 [SPOE_APPCTX_ST_WAITING_SYNC_ACK] = "WAITING_SYNC_ACK",
244 [SPOE_APPCTX_ST_DISCONNECT] = "DISCONNECT",
245 [SPOE_APPCTX_ST_DISCONNECTING] = "DISCONNECTING",
246 [SPOE_APPCTX_ST_EXIT] = "EXIT",
247 [SPOE_APPCTX_ST_END] = "END",
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200248};
249
250#endif
Christopher Fauleta1cda022016-12-21 08:58:06 +0100251
Christopher Faulet8ef75252017-02-20 22:56:03 +0100252/* Used to generates a unique id for an engine. On success, it returns a
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +0500253 * allocated string. So it is the caller's responsibility to release it. If the
Christopher Faulet8ef75252017-02-20 22:56:03 +0100254 * allocation failed, it returns NULL. */
Christopher Fauleta1cda022016-12-21 08:58:06 +0100255static char *
256generate_pseudo_uuid()
257{
Willy Tarreauee3bcdd2020-03-08 17:48:17 +0100258 ha_generate_uuid(&trash);
Kevin Zhu079f8082020-03-13 10:39:51 +0800259 return my_strndup(trash.area, trash.data);
Christopher Fauleta1cda022016-12-21 08:58:06 +0100260}
261
Christopher Fauletb2dd1e02018-03-22 09:07:41 +0100262
263static inline void
264spoe_update_stat_time(struct timeval *tv, long *t)
265{
266 if (*t == -1)
267 *t = tv_ms_elapsed(tv, &now);
268 else
269 *t += tv_ms_elapsed(tv, &now);
270 tv_zero(tv);
271}
272
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200273/********************************************************************
274 * Functions that encode/decode SPOE frames
275 ********************************************************************/
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200276/* Helper to get static string length, excluding the terminating null byte */
277#define SLEN(str) (sizeof(str)-1)
278
279/* Predefined key used in HELLO/DISCONNECT frames */
280#define SUPPORTED_VERSIONS_KEY "supported-versions"
281#define VERSION_KEY "version"
282#define MAX_FRAME_SIZE_KEY "max-frame-size"
283#define CAPABILITIES_KEY "capabilities"
Christopher Fauleta1cda022016-12-21 08:58:06 +0100284#define ENGINE_ID_KEY "engine-id"
Christopher Fauletba7bc162016-11-07 21:07:38 +0100285#define HEALTHCHECK_KEY "healthcheck"
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200286#define STATUS_CODE_KEY "status-code"
287#define MSG_KEY "message"
288
289struct spoe_version {
290 char *str;
291 int min;
292 int max;
293};
294
295/* All supported versions */
296static struct spoe_version supported_versions[] = {
Christopher Faulet63816502018-05-31 14:56:42 +0200297 /* 1.0 is now unsupported because of a bug about frame's flags*/
298 {"2.0", 2000, 2000},
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200299 {NULL, 0, 0}
300};
301
302/* Comma-separated list of supported versions */
Christopher Faulet63816502018-05-31 14:56:42 +0200303#define SUPPORTED_VERSIONS_VAL "2.0"
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200304
Christopher Faulet8ef75252017-02-20 22:56:03 +0100305/* Convert a string to a SPOE version value. The string must follow the format
306 * "MAJOR.MINOR". It will be concerted into the integer (1000 * MAJOR + MINOR).
307 * If an error occurred, -1 is returned. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200308static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100309spoe_str_to_vsn(const char *str, size_t len)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200310{
Christopher Faulet8ef75252017-02-20 22:56:03 +0100311 const char *p, *end;
312 int maj, min, vsn;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200313
Christopher Faulet8ef75252017-02-20 22:56:03 +0100314 p = str;
315 end = str+len;
316 maj = min = 0;
317 vsn = -1;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200318
Christopher Faulet8ef75252017-02-20 22:56:03 +0100319 /* skip leading spaces */
Willy Tarreau90807112020-02-25 08:16:33 +0100320 while (p < end && isspace((unsigned char)*p))
Christopher Faulet8ef75252017-02-20 22:56:03 +0100321 p++;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200322
Christopher Faulet8ef75252017-02-20 22:56:03 +0100323 /* parse Major number, until the '.' */
324 while (*p != '.') {
325 if (p >= end || *p < '0' || *p > '9')
326 goto out;
327 maj *= 10;
328 maj += (*p - '0');
329 p++;
330 }
331
332 /* check Major version */
333 if (!maj)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200334 goto out;
335
Christopher Faulet8ef75252017-02-20 22:56:03 +0100336 p++; /* skip the '.' */
337 if (p >= end || *p < '0' || *p > '9') /* Minor number is missing */
338 goto out;
339
340 /* Parse Minor number */
341 while (p < end) {
342 if (*p < '0' || *p > '9')
343 break;
344 min *= 10;
345 min += (*p - '0');
346 p++;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200347 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100348
349 /* check Minor number */
350 if (min > 999)
351 goto out;
352
353 /* skip trailing spaces */
Willy Tarreau90807112020-02-25 08:16:33 +0100354 while (p < end && isspace((unsigned char)*p))
Christopher Faulet8ef75252017-02-20 22:56:03 +0100355 p++;
356 if (p != end)
357 goto out;
358
359 vsn = maj * 1000 + min;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200360 out:
361 return vsn;
362}
363
Christopher Faulet8ef75252017-02-20 22:56:03 +0100364/* Encode the HELLO frame sent by HAProxy to an agent. It returns the number of
Joseph Herlantf7f60312018-11-15 13:46:49 -0800365 * encoded bytes in the frame on success, 0 if an encoding error occurred and -1
Christopher Faulet8ef75252017-02-20 22:56:03 +0100366 * if a fatal error occurred. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200367static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100368spoe_prepare_hahello_frame(struct appctx *appctx, char *frame, size_t size)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200369{
Willy Tarreau83061a82018-07-13 11:56:34 +0200370 struct buffer *chk;
Christopher Faulet42bfa462017-01-04 14:14:19 +0100371 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100372 char *p, *end;
373 unsigned int flags = SPOE_FRM_FL_FIN;
374 size_t sz;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200375
Christopher Faulet8ef75252017-02-20 22:56:03 +0100376 p = frame;
377 end = frame+size;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200378
Christopher Faulet8ef75252017-02-20 22:56:03 +0100379 /* Set Frame type */
380 *p++ = SPOE_FRM_T_HAPROXY_HELLO;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200381
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100382 /* Set flags */
Thierry FOURNIERc4dcaff2018-05-18 12:25:39 +0200383 flags = htonl(flags);
Christopher Faulet8ef75252017-02-20 22:56:03 +0100384 memcpy(p, (char *)&flags, 4);
385 p += 4;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200386
387 /* No stream-id and frame-id for HELLO frames */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100388 *p++ = 0; *p++ = 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200389
390 /* There are 3 mandatory items: "supported-versions", "max-frame-size"
391 * and "capabilities" */
392
393 /* "supported-versions" K/V item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100394 sz = SLEN(SUPPORTED_VERSIONS_KEY);
395 if (spoe_encode_buffer(SUPPORTED_VERSIONS_KEY, sz, &p, end) == -1)
396 goto too_big;
397
398 *p++ = SPOE_DATA_T_STR;
399 sz = SLEN(SUPPORTED_VERSIONS_VAL);
400 if (spoe_encode_buffer(SUPPORTED_VERSIONS_VAL, sz, &p, end) == -1)
401 goto too_big;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200402
403 /* "max-fram-size" K/V item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100404 sz = SLEN(MAX_FRAME_SIZE_KEY);
405 if (spoe_encode_buffer(MAX_FRAME_SIZE_KEY, sz, &p, end) == -1)
406 goto too_big;
407
408 *p++ = SPOE_DATA_T_UINT32;
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200409 if (encode_varint(SPOE_APPCTX(appctx)->max_frame_size, &p, end) == -1)
Christopher Faulet8ef75252017-02-20 22:56:03 +0100410 goto too_big;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200411
412 /* "capabilities" K/V item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100413 sz = SLEN(CAPABILITIES_KEY);
414 if (spoe_encode_buffer(CAPABILITIES_KEY, sz, &p, end) == -1)
415 goto too_big;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200416
Christopher Faulet8ef75252017-02-20 22:56:03 +0100417 *p++ = SPOE_DATA_T_STR;
Christopher Faulet305c6072017-02-23 16:17:53 +0100418 chk = get_trash_chunk();
419 if (agent != NULL && (agent->flags & SPOE_FL_PIPELINING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200420 memcpy(chk->area, "pipelining", 10);
421 chk->data += 10;
Christopher Faulet305c6072017-02-23 16:17:53 +0100422 }
423 if (agent != NULL && (agent->flags & SPOE_FL_ASYNC)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200424 if (chk->data) chk->area[chk->data++] = ',';
425 memcpy(chk->area+chk->data, "async", 5);
426 chk->data += 5;
Christopher Faulet305c6072017-02-23 16:17:53 +0100427 }
Christopher Fauletcecd8522017-02-24 22:11:21 +0100428 if (agent != NULL && (agent->flags & SPOE_FL_RCV_FRAGMENTATION)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200429 if (chk->data) chk->area[chk->data++] = ',';
430 memcpy(chk->area+chk->data, "fragmentation", 13);
Miroslav Zagorac6b3690b2019-01-13 16:55:01 +0100431 chk->data += 13;
Christopher Fauletcecd8522017-02-24 22:11:21 +0100432 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200433 if (spoe_encode_buffer(chk->area, chk->data, &p, end) == -1)
Christopher Faulet8ef75252017-02-20 22:56:03 +0100434 goto too_big;
435
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +0500436 /* (optional) "engine-id" K/V item, if present */
Christopher Fauletb1bb1af2019-09-17 11:55:52 +0200437 if (agent != NULL && agent->rt[tid].engine_id != NULL) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100438 sz = SLEN(ENGINE_ID_KEY);
439 if (spoe_encode_buffer(ENGINE_ID_KEY, sz, &p, end) == -1)
440 goto too_big;
441
442 *p++ = SPOE_DATA_T_STR;
Christopher Fauletb1bb1af2019-09-17 11:55:52 +0200443 sz = strlen(agent->rt[tid].engine_id);
444 if (spoe_encode_buffer(agent->rt[tid].engine_id, sz, &p, end) == -1)
Christopher Faulet8ef75252017-02-20 22:56:03 +0100445 goto too_big;
Christopher Fauleta1cda022016-12-21 08:58:06 +0100446 }
447
Christopher Faulet8ef75252017-02-20 22:56:03 +0100448 return (p - frame);
449
450 too_big:
451 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOO_BIG;
452 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200453}
454
Christopher Faulet8ef75252017-02-20 22:56:03 +0100455/* Encode DISCONNECT frame sent by HAProxy to an agent. It returns the number of
456 * encoded bytes in the frame on success, 0 if an encoding error occurred and -1
457 * if a fatal error occurred. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200458static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100459spoe_prepare_hadiscon_frame(struct appctx *appctx, char *frame, size_t size)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200460{
Christopher Faulet8ef75252017-02-20 22:56:03 +0100461 const char *reason;
462 char *p, *end;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100463 unsigned int flags = SPOE_FRM_FL_FIN;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100464 size_t sz;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200465
Christopher Faulet8ef75252017-02-20 22:56:03 +0100466 p = frame;
467 end = frame+size;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200468
Christopher Faulet8ef75252017-02-20 22:56:03 +0100469 /* Set Frame type */
470 *p++ = SPOE_FRM_T_HAPROXY_DISCON;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200471
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100472 /* Set flags */
Thierry FOURNIERc4dcaff2018-05-18 12:25:39 +0200473 flags = htonl(flags);
Christopher Faulet8ef75252017-02-20 22:56:03 +0100474 memcpy(p, (char *)&flags, 4);
475 p += 4;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200476
477 /* No stream-id and frame-id for DISCONNECT frames */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100478 *p++ = 0; *p++ = 0;
479
480 if (SPOE_APPCTX(appctx)->status_code >= SPOE_FRM_ERRS)
481 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_UNKNOWN;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200482
483 /* There are 2 mandatory items: "status-code" and "message" */
484
485 /* "status-code" K/V item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100486 sz = SLEN(STATUS_CODE_KEY);
487 if (spoe_encode_buffer(STATUS_CODE_KEY, sz, &p, end) == -1)
488 goto too_big;
489
490 *p++ = SPOE_DATA_T_UINT32;
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200491 if (encode_varint(SPOE_APPCTX(appctx)->status_code, &p, end) == -1)
Christopher Faulet8ef75252017-02-20 22:56:03 +0100492 goto too_big;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200493
494 /* "message" K/V item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100495 sz = SLEN(MSG_KEY);
496 if (spoe_encode_buffer(MSG_KEY, sz, &p, end) == -1)
497 goto too_big;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200498
Christopher Faulet8ef75252017-02-20 22:56:03 +0100499 /*Get the message corresponding to the status code */
500 reason = spoe_frm_err_reasons[SPOE_APPCTX(appctx)->status_code];
501
502 *p++ = SPOE_DATA_T_STR;
503 sz = strlen(reason);
504 if (spoe_encode_buffer(reason, sz, &p, end) == -1)
505 goto too_big;
506
507 return (p - frame);
508
509 too_big:
510 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOO_BIG;
511 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200512}
513
Christopher Faulet8ef75252017-02-20 22:56:03 +0100514/* Encode the NOTIFY frame sent by HAProxy to an agent. It returns the number of
515 * encoded bytes in the frame on success, 0 if an encoding error occurred and -1
516 * if a fatal error occurred. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200517static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100518spoe_prepare_hanotify_frame(struct appctx *appctx, struct spoe_context *ctx,
Christopher Fauleta1cda022016-12-21 08:58:06 +0100519 char *frame, size_t size)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200520{
Christopher Faulet8ef75252017-02-20 22:56:03 +0100521 char *p, *end;
522 unsigned int stream_id, frame_id;
523 unsigned int flags = SPOE_FRM_FL_FIN;
524 size_t sz;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200525
Christopher Faulet8ef75252017-02-20 22:56:03 +0100526 p = frame;
527 end = frame+size;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200528
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100529 stream_id = ctx->stream_id;
530 frame_id = ctx->frame_id;
531
532 if (ctx->flags & SPOE_CTX_FL_FRAGMENTED) {
533 /* The fragmentation is not supported by the applet */
534 if (!(SPOE_APPCTX(appctx)->flags & SPOE_APPCTX_FL_FRAGMENTATION)) {
535 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_FRAG_NOT_SUPPORTED;
536 return -1;
537 }
538 flags = ctx->frag_ctx.flags;
539 }
540
541 /* Set Frame type */
542 *p++ = SPOE_FRM_T_HAPROXY_NOTIFY;
543
544 /* Set flags */
Thierry FOURNIERc4dcaff2018-05-18 12:25:39 +0200545 flags = htonl(flags);
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100546 memcpy(p, (char *)&flags, 4);
547 p += 4;
548
549 /* Set stream-id and frame-id */
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200550 if (encode_varint(stream_id, &p, end) == -1)
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100551 goto too_big;
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200552 if (encode_varint(frame_id, &p, end) == -1)
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100553 goto too_big;
554
555 /* Copy encoded messages, if possible */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200556 sz = b_data(&ctx->buffer);
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100557 if (p + sz >= end)
558 goto too_big;
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200559 memcpy(p, b_head(&ctx->buffer), sz);
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100560 p += sz;
561
562 return (p - frame);
563
564 too_big:
565 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOO_BIG;
566 return 0;
567}
568
569/* Encode next part of a fragmented frame sent by HAProxy to an agent. It
570 * returns the number of encoded bytes in the frame on success, 0 if an encoding
571 * error occurred and -1 if a fatal error occurred. */
572static int
573spoe_prepare_hafrag_frame(struct appctx *appctx, struct spoe_context *ctx,
574 char *frame, size_t size)
575{
576 char *p, *end;
577 unsigned int stream_id, frame_id;
578 unsigned int flags;
579 size_t sz;
580
581 p = frame;
582 end = frame+size;
583
Christopher Faulet8ef75252017-02-20 22:56:03 +0100584 /* <ctx> is null when the stream has aborted the processing of a
585 * fragmented frame. In this case, we must notify the corresponding
586 * agent using ids stored in <frag_ctx>. */
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100587 if (ctx == NULL) {
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100588 flags = (SPOE_FRM_FL_FIN|SPOE_FRM_FL_ABRT);
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100589 stream_id = SPOE_APPCTX(appctx)->frag_ctx.cursid;
590 frame_id = SPOE_APPCTX(appctx)->frag_ctx.curfid;
591 }
592 else {
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100593 flags = ctx->frag_ctx.flags;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100594 stream_id = ctx->stream_id;
595 frame_id = ctx->frame_id;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100596 }
597
Christopher Faulet8ef75252017-02-20 22:56:03 +0100598 /* Set Frame type */
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100599 *p++ = SPOE_FRM_T_UNSET;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100600
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100601 /* Set flags */
Thierry FOURNIERc4dcaff2018-05-18 12:25:39 +0200602 flags = htonl(flags);
Christopher Faulet8ef75252017-02-20 22:56:03 +0100603 memcpy(p, (char *)&flags, 4);
604 p += 4;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200605
606 /* Set stream-id and frame-id */
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200607 if (encode_varint(stream_id, &p, end) == -1)
Christopher Faulet8ef75252017-02-20 22:56:03 +0100608 goto too_big;
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200609 if (encode_varint(frame_id, &p, end) == -1)
Christopher Faulet8ef75252017-02-20 22:56:03 +0100610 goto too_big;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200611
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100612 if (ctx == NULL)
613 goto end;
614
Christopher Faulet8ef75252017-02-20 22:56:03 +0100615 /* Copy encoded messages, if possible */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200616 sz = b_data(&ctx->buffer);
Christopher Faulet8ef75252017-02-20 22:56:03 +0100617 if (p + sz >= end)
618 goto too_big;
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200619 memcpy(p, b_head(&ctx->buffer), sz);
Christopher Faulet8ef75252017-02-20 22:56:03 +0100620 p += sz;
Christopher Fauleta1cda022016-12-21 08:58:06 +0100621
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100622 end:
Christopher Faulet8ef75252017-02-20 22:56:03 +0100623 return (p - frame);
624
625 too_big:
626 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOO_BIG;
627 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200628}
629
Christopher Faulet8ef75252017-02-20 22:56:03 +0100630/* Decode and process the HELLO frame sent by an agent. It returns the number of
631 * read bytes on success, 0 if a decoding error occurred, and -1 if a fatal
632 * error occurred. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200633static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100634spoe_handle_agenthello_frame(struct appctx *appctx, char *frame, size_t size)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200635{
Christopher Faulet305c6072017-02-23 16:17:53 +0100636 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
637 char *p, *end;
638 int vsn, max_frame_size;
639 unsigned int flags;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100640
641 p = frame;
642 end = frame + size;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200643
644 /* Check frame type */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100645 if (*p++ != SPOE_FRM_T_AGENT_HELLO) {
646 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200647 return 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100648 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200649
Christopher Faulet8ef75252017-02-20 22:56:03 +0100650 if (size < 7 /* TYPE + METADATA */) {
651 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
652 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200653 }
654
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100655 /* Retrieve flags */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100656 memcpy((char *)&flags, p, 4);
Thierry FOURNIERc4dcaff2018-05-18 12:25:39 +0200657 flags = ntohl(flags);
Christopher Faulet8ef75252017-02-20 22:56:03 +0100658 p += 4;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200659
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100660 /* Fragmentation is not supported for HELLO frame */
661 if (!(flags & SPOE_FRM_FL_FIN)) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100662 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_FRAG_NOT_SUPPORTED;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100663 return -1;
664 }
665
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200666 /* stream-id and frame-id must be cleared */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100667 if (*p != 0 || *(p+1) != 0) {
668 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
669 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200670 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100671 p += 2;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200672
673 /* There are 3 mandatory items: "version", "max-frame-size" and
674 * "capabilities" */
675
676 /* Loop on K/V items */
Christopher Fauleta1cda022016-12-21 08:58:06 +0100677 vsn = max_frame_size = flags = 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100678 while (p < end) {
679 char *str;
Frédéric Lécaille6ca71a92017-08-22 10:33:14 +0200680 uint64_t sz;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100681 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200682
683 /* Decode the item key */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100684 ret = spoe_decode_buffer(&p, end, &str, &sz);
685 if (ret == -1 || !sz) {
686 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
687 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200688 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100689
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200690 /* Check "version" K/V item */
Willy Tarreauda21ed12020-06-16 17:58:14 +0200691 if (sz >= strlen(VERSION_KEY) && !memcmp(str, VERSION_KEY, strlen(VERSION_KEY))) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100692 int i, type = *p++;
693
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200694 /* The value must be a string */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100695 if ((type & SPOE_DATA_T_MASK) != SPOE_DATA_T_STR) {
696 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
697 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200698 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100699 if (spoe_decode_buffer(&p, end, &str, &sz) == -1) {
700 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
701 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200702 }
703
Christopher Faulet8ef75252017-02-20 22:56:03 +0100704 vsn = spoe_str_to_vsn(str, sz);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200705 if (vsn == -1) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100706 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_BAD_VSN;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200707 return -1;
708 }
709 for (i = 0; supported_versions[i].str != NULL; ++i) {
710 if (vsn >= supported_versions[i].min &&
711 vsn <= supported_versions[i].max)
712 break;
713 }
714 if (supported_versions[i].str == NULL) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100715 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_BAD_VSN;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200716 return -1;
717 }
718 }
719 /* Check "max-frame-size" K/V item */
Willy Tarreauda21ed12020-06-16 17:58:14 +0200720 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 +0100721 int type = *p++;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200722
723 /* The value must be integer */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200724 if ((type & SPOE_DATA_T_MASK) != SPOE_DATA_T_INT32 &&
725 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_INT64 &&
726 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_UINT32 &&
727 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_UINT64) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100728 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
729 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200730 }
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200731 if (decode_varint(&p, end, &sz) == -1) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100732 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
733 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200734 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100735 if (sz < MIN_FRAME_SIZE ||
736 sz > SPOE_APPCTX(appctx)->max_frame_size) {
737 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_BAD_FRAME_SIZE;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200738 return -1;
739 }
740 max_frame_size = sz;
741 }
Christopher Fauleta1cda022016-12-21 08:58:06 +0100742 /* Check "capabilities" K/V item */
Willy Tarreauda21ed12020-06-16 17:58:14 +0200743 else if (sz >= strlen(CAPABILITIES_KEY) && !memcmp(str, CAPABILITIES_KEY, strlen(CAPABILITIES_KEY))) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100744 int type = *p++;
Christopher Fauleta1cda022016-12-21 08:58:06 +0100745
746 /* The value must be a string */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100747 if ((type & SPOE_DATA_T_MASK) != SPOE_DATA_T_STR) {
748 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
749 return 0;
Christopher Fauleta1cda022016-12-21 08:58:06 +0100750 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100751 if (spoe_decode_buffer(&p, end, &str, &sz) == -1) {
752 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
753 return 0;
754 }
Christopher Fauleta1cda022016-12-21 08:58:06 +0100755
Christopher Faulet8ef75252017-02-20 22:56:03 +0100756 while (sz) {
Christopher Fauleta1cda022016-12-21 08:58:06 +0100757 char *delim;
758
759 /* Skip leading spaces */
Willy Tarreau90807112020-02-25 08:16:33 +0100760 for (; isspace((unsigned char)*str) && sz; str++, sz--);
Christopher Fauleta1cda022016-12-21 08:58:06 +0100761
Christopher Faulet8ef75252017-02-20 22:56:03 +0100762 if (sz >= 10 && !strncmp(str, "pipelining", 10)) {
763 str += 10; sz -= 10;
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_PIPELINING;
766 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100767 else if (sz >= 5 && !strncmp(str, "async", 5)) {
768 str += 5; sz -= 5;
Willy Tarreau90807112020-02-25 08:16:33 +0100769 if (!sz || isspace((unsigned char)*str) || *str == ',')
Christopher Fauleta1cda022016-12-21 08:58:06 +0100770 flags |= SPOE_APPCTX_FL_ASYNC;
771 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100772 else if (sz >= 13 && !strncmp(str, "fragmentation", 13)) {
773 str += 13; sz -= 13;
Willy Tarreau90807112020-02-25 08:16:33 +0100774 if (!sz || isspace((unsigned char)*str) || *str == ',')
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100775 flags |= SPOE_APPCTX_FL_FRAGMENTATION;
776 }
Christopher Fauleta1cda022016-12-21 08:58:06 +0100777
Christopher Faulet8ef75252017-02-20 22:56:03 +0100778 /* Get the next comma or break */
779 if (!sz || (delim = memchr(str, ',', sz)) == NULL)
Christopher Fauleta1cda022016-12-21 08:58:06 +0100780 break;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100781 delim++;
782 sz -= (delim - str);
783 str = delim;
Christopher Fauleta1cda022016-12-21 08:58:06 +0100784 }
785 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200786 else {
787 /* Silently ignore unknown item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100788 if (spoe_skip_data(&p, end) == -1) {
789 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
790 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200791 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200792 }
793 }
794
795 /* Final checks */
796 if (!vsn) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100797 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_NO_VSN;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200798 return -1;
799 }
800 if (!max_frame_size) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100801 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_NO_FRAME_SIZE;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200802 return -1;
803 }
Christopher Faulet11389012019-02-07 16:13:26 +0100804 if (!agent)
805 flags &= ~(SPOE_APPCTX_FL_PIPELINING|SPOE_APPCTX_FL_ASYNC);
806 else {
807 if ((flags & SPOE_APPCTX_FL_PIPELINING) && !(agent->flags & SPOE_FL_PIPELINING))
808 flags &= ~SPOE_APPCTX_FL_PIPELINING;
809 if ((flags & SPOE_APPCTX_FL_ASYNC) && !(agent->flags & SPOE_FL_ASYNC))
810 flags &= ~SPOE_APPCTX_FL_ASYNC;
811 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200812
Christopher Faulet42bfa462017-01-04 14:14:19 +0100813 SPOE_APPCTX(appctx)->version = (unsigned int)vsn;
814 SPOE_APPCTX(appctx)->max_frame_size = (unsigned int)max_frame_size;
815 SPOE_APPCTX(appctx)->flags |= flags;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100816
817 return (p - frame);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200818}
819
820/* Decode DISCONNECT frame sent by an agent. It returns the number of by read
821 * bytes on success, 0 if the frame can be ignored and -1 if an error
822 * occurred. */
823static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100824spoe_handle_agentdiscon_frame(struct appctx *appctx, char *frame, size_t size)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200825{
Christopher Faulet8ef75252017-02-20 22:56:03 +0100826 char *p, *end;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100827 unsigned int flags;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100828
829 p = frame;
830 end = frame + size;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200831
832 /* Check frame type */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100833 if (*p++ != SPOE_FRM_T_AGENT_DISCON) {
834 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200835 return 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100836 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200837
Christopher Faulet8ef75252017-02-20 22:56:03 +0100838 if (size < 7 /* TYPE + METADATA */) {
839 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
840 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200841 }
842
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100843 /* Retrieve flags */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100844 memcpy((char *)&flags, p, 4);
Thierry FOURNIERc4dcaff2018-05-18 12:25:39 +0200845 flags = ntohl(flags);
Christopher Faulet8ef75252017-02-20 22:56:03 +0100846 p += 4;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200847
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100848 /* Fragmentation is not supported for DISCONNECT frame */
849 if (!(flags & SPOE_FRM_FL_FIN)) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100850 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_FRAG_NOT_SUPPORTED;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100851 return -1;
852 }
853
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200854 /* stream-id and frame-id must be cleared */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100855 if (*p != 0 || *(p+1) != 0) {
856 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
857 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200858 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100859 p += 2;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200860
861 /* There are 2 mandatory items: "status-code" and "message" */
862
863 /* Loop on K/V items */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100864 while (p < end) {
865 char *str;
Frédéric Lécaille6ca71a92017-08-22 10:33:14 +0200866 uint64_t sz;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100867 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200868
869 /* Decode the item key */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100870 ret = spoe_decode_buffer(&p, end, &str, &sz);
871 if (ret == -1 || !sz) {
872 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
873 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200874 }
875
876 /* Check "status-code" K/V item */
Willy Tarreauda21ed12020-06-16 17:58:14 +0200877 if (sz >= strlen(STATUS_CODE_KEY) && !memcmp(str, STATUS_CODE_KEY, strlen(STATUS_CODE_KEY))) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100878 int type = *p++;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200879
880 /* The value must be an integer */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200881 if ((type & SPOE_DATA_T_MASK) != SPOE_DATA_T_INT32 &&
882 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_INT64 &&
883 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_UINT32 &&
884 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_UINT64) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100885 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
886 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200887 }
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200888 if (decode_varint(&p, end, &sz) == -1) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100889 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
890 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200891 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100892 SPOE_APPCTX(appctx)->status_code = sz;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200893 }
894
895 /* Check "message" K/V item */
Willy Tarreauda21ed12020-06-16 17:58:14 +0200896 else if (sz >= strlen(MSG_KEY) && !memcmp(str, MSG_KEY, strlen(MSG_KEY))) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100897 int type = *p++;
898
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200899 /* The value must be a string */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100900 if ((type & SPOE_DATA_T_MASK) != SPOE_DATA_T_STR) {
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 ret = spoe_decode_buffer(&p, end, &str, &sz);
905 if (ret == -1 || sz > 255) {
906 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
907 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200908 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100909#if defined(DEBUG_SPOE) || defined(DEBUG_FULL)
910 SPOE_APPCTX(appctx)->reason = str;
911 SPOE_APPCTX(appctx)->rlen = sz;
912#endif
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200913 }
914 else {
915 /* Silently ignore unknown item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100916 if (spoe_skip_data(&p, end) == -1) {
917 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
918 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200919 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200920 }
921 }
922
Christopher Faulet8ef75252017-02-20 22:56:03 +0100923 return (p - frame);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200924}
925
926
Christopher Fauleta1cda022016-12-21 08:58:06 +0100927/* Decode ACK frame sent by an agent. It returns the number of read bytes on
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200928 * success, 0 if the frame can be ignored and -1 if an error occurred. */
929static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100930spoe_handle_agentack_frame(struct appctx *appctx, struct spoe_context **ctx,
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100931 char *frame, size_t size)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200932{
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100933 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100934 char *p, *end;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100935 uint64_t stream_id, frame_id;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100936 int len;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100937 unsigned int flags;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100938
939 p = frame;
940 end = frame + size;
941 *ctx = NULL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200942
943 /* Check frame type */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100944 if (*p++ != SPOE_FRM_T_AGENT_ACK) {
945 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200946 return 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100947 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200948
Christopher Faulet8ef75252017-02-20 22:56:03 +0100949 if (size < 7 /* TYPE + METADATA */) {
950 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
951 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200952 }
953
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100954 /* Retrieve flags */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100955 memcpy((char *)&flags, p, 4);
Thierry FOURNIERc4dcaff2018-05-18 12:25:39 +0200956 flags = ntohl(flags);
Christopher Faulet8ef75252017-02-20 22:56:03 +0100957 p += 4;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200958
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100959 /* Fragmentation is not supported for now */
960 if (!(flags & SPOE_FRM_FL_FIN)) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100961 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_FRAG_NOT_SUPPORTED;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100962 return -1;
963 }
964
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200965 /* Get the stream-id and the frame-id */
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200966 if (decode_varint(&p, end, &stream_id) == -1) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100967 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
Christopher Fauleta1cda022016-12-21 08:58:06 +0100968 return 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100969 }
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200970 if (decode_varint(&p, end, &frame_id) == -1) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100971 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200972 return 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100973 }
Christopher Fauleta1cda022016-12-21 08:58:06 +0100974
Christopher Faulet8ef75252017-02-20 22:56:03 +0100975 /* Try to find the corresponding SPOE context */
Christopher Faulet42bfa462017-01-04 14:14:19 +0100976 if (SPOE_APPCTX(appctx)->flags & SPOE_APPCTX_FL_ASYNC) {
Christopher Faulet24289f22017-09-25 14:48:02 +0200977 list_for_each_entry((*ctx), &agent->rt[tid].waiting_queue, list) {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100978 if ((*ctx)->stream_id == (unsigned int)stream_id &&
979 (*ctx)->frame_id == (unsigned int)frame_id)
Christopher Fauleta1cda022016-12-21 08:58:06 +0100980 goto found;
981 }
982 }
983 else {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100984 list_for_each_entry((*ctx), &SPOE_APPCTX(appctx)->waiting_queue, list) {
985 if ((*ctx)->stream_id == (unsigned int)stream_id &&
Christopher Faulet8ef75252017-02-20 22:56:03 +0100986 (*ctx)->frame_id == (unsigned int)frame_id)
Christopher Fauleta1cda022016-12-21 08:58:06 +0100987 goto found;
988 }
989 }
990
Christopher Faulet8eda93f2017-02-09 09:44:33 +0100991 if (SPOE_APPCTX(appctx)->frag_ctx.ctx &&
992 SPOE_APPCTX(appctx)->frag_ctx.cursid == (unsigned int)stream_id &&
993 SPOE_APPCTX(appctx)->frag_ctx.curfid == (unsigned int)frame_id) {
994
995 /* ABRT bit is set for an unfinished fragmented frame */
996 if (flags & SPOE_FRM_FL_ABRT) {
997 *ctx = SPOE_APPCTX(appctx)->frag_ctx.ctx;
Christopher Faulet8eda93f2017-02-09 09:44:33 +0100998 (*ctx)->state = SPOE_CTX_ST_ERROR;
999 (*ctx)->status_code = SPOE_CTX_ERR_FRAG_FRAME_ABRT;
1000 /* Ignore the payload */
1001 goto end;
1002 }
1003 /* TODO: Handle more flags for fragmented frames: RESUME, FINISH... */
1004 /* For now, we ignore the ack */
1005 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
1006 return 0;
1007 }
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001008
Christopher Fauleta1cda022016-12-21 08:58:06 +01001009 /* No Stream found, ignore the frame */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001010 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
1011 " - Ignore ACK frame"
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001012 " - stream-id=%u - frame-id=%u\n",
1013 (int)now.tv_sec, (int)now.tv_usec, agent->id,
1014 __FUNCTION__, appctx,
1015 (unsigned int)stream_id, (unsigned int)frame_id);
1016
Christopher Faulet8eda93f2017-02-09 09:44:33 +01001017 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_FRAMEID_NOTFOUND;
Christopher Fauletc7ba9102020-11-10 14:31:39 +01001018 if (appctx->st0 == SPOE_APPCTX_ST_WAITING_SYNC_ACK) {
1019 /* Report an error if we are waiting the ack for another frame,
1020 * but not if there is no longer frame waiting for a ack
1021 * (timeout)
1022 */
1023 if (!LIST_ISEMPTY(&SPOE_APPCTX(appctx)->waiting_queue) ||
1024 SPOE_APPCTX(appctx)->frag_ctx.ctx)
1025 return -1;
1026 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
1027 SPOE_APPCTX(appctx)->cur_fpa = 0;
1028 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001029 return 0;
1030
1031 found:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001032 if (!spoe_acquire_buffer(&SPOE_APPCTX(appctx)->buffer,
1033 &SPOE_APPCTX(appctx)->buffer_wait)) {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001034 *ctx = NULL;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001035 return 1; /* Retry later */
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001036 }
Christopher Faulet4596fb72017-01-11 14:05:19 +01001037
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001038 /* Copy encoded actions */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001039 len = (end - p);
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001040 memcpy(b_head(&SPOE_APPCTX(appctx)->buffer), p, len);
1041 b_set_data(&SPOE_APPCTX(appctx)->buffer, len);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001042 p += len;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001043
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001044 /* Transfer the buffer ownership to the SPOE context */
1045 (*ctx)->buffer = SPOE_APPCTX(appctx)->buffer;
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001046 SPOE_APPCTX(appctx)->buffer = BUF_NULL;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001047
Christopher Faulet8ef75252017-02-20 22:56:03 +01001048 (*ctx)->state = SPOE_CTX_ST_DONE;
1049
Christopher Faulet8eda93f2017-02-09 09:44:33 +01001050 end:
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001051 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
Christopher Faulet8ef75252017-02-20 22:56:03 +01001052 " - ACK frame received"
1053 " - ctx=%p - stream-id=%u - frame-id=%u - flags=0x%08x\n",
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001054 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Faulet8ef75252017-02-20 22:56:03 +01001055 __FUNCTION__, appctx, *ctx, (*ctx)->stream_id,
1056 (*ctx)->frame_id, flags);
1057 return (p - frame);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001058}
1059
Christopher Fauletba7bc162016-11-07 21:07:38 +01001060/* This function is used in cfgparse.c and declared in proto/checks.h. It
1061 * prepare the request to send to agents during a healthcheck. It returns 0 on
1062 * success and -1 if an error occurred. */
1063int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001064spoe_prepare_healthcheck_request(char **req, int *len)
Christopher Fauletba7bc162016-11-07 21:07:38 +01001065{
Christopher Faulet8ef75252017-02-20 22:56:03 +01001066 struct appctx appctx;
1067 struct spoe_appctx spoe_appctx;
1068 char *frame, *end, buf[MAX_FRAME_SIZE+4];
1069 size_t sz;
1070 int ret;
Christopher Fauletba7bc162016-11-07 21:07:38 +01001071
Christopher Faulet42bfa462017-01-04 14:14:19 +01001072 memset(&appctx, 0, sizeof(appctx));
1073 memset(&spoe_appctx, 0, sizeof(spoe_appctx));
Christopher Fauletba7bc162016-11-07 21:07:38 +01001074 memset(buf, 0, sizeof(buf));
Christopher Faulet42bfa462017-01-04 14:14:19 +01001075
Willy Tarreau23a24072022-05-05 20:18:44 +02001076 appctx.svcctx = &spoe_appctx;
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01001077 SPOE_APPCTX(&appctx)->max_frame_size = MAX_FRAME_SIZE;
Christopher Fauletba7bc162016-11-07 21:07:38 +01001078
Christopher Faulet8ef75252017-02-20 22:56:03 +01001079 frame = buf+4; /* Reserved the 4 first bytes for the frame size */
1080 end = frame + MAX_FRAME_SIZE;
1081
1082 ret = spoe_prepare_hahello_frame(&appctx, frame, MAX_FRAME_SIZE);
1083 if (ret <= 0)
Christopher Fauletba7bc162016-11-07 21:07:38 +01001084 return -1;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001085 frame += ret;
Christopher Fauletba7bc162016-11-07 21:07:38 +01001086
Christopher Faulet8ef75252017-02-20 22:56:03 +01001087 /* Add "healthcheck" K/V item */
1088 sz = SLEN(HEALTHCHECK_KEY);
1089 if (spoe_encode_buffer(HEALTHCHECK_KEY, sz, &frame, end) == -1)
1090 return -1;
1091 *frame++ = (SPOE_DATA_T_BOOL | SPOE_DATA_FL_TRUE);
Christopher Fauletba7bc162016-11-07 21:07:38 +01001092
Christopher Faulet8ef75252017-02-20 22:56:03 +01001093 *len = frame - buf;
1094 sz = htonl(*len - 4);
1095 memcpy(buf, (char *)&sz, 4);
Christopher Fauletba7bc162016-11-07 21:07:38 +01001096
Christopher Faulet8ef75252017-02-20 22:56:03 +01001097 if ((*req = malloc(*len)) == NULL)
Christopher Fauletba7bc162016-11-07 21:07:38 +01001098 return -1;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001099 memcpy(*req, buf, *len);
Christopher Fauletba7bc162016-11-07 21:07:38 +01001100 return 0;
1101}
1102
1103/* This function is used in checks.c and declared in proto/checks.h. It decode
1104 * the response received from an agent during a healthcheck. It returns 0 on
1105 * success and -1 if an error occurred. */
1106int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001107spoe_handle_healthcheck_response(char *frame, size_t size, char *err, int errlen)
Christopher Fauletba7bc162016-11-07 21:07:38 +01001108{
Christopher Faulet42bfa462017-01-04 14:14:19 +01001109 struct appctx appctx;
1110 struct spoe_appctx spoe_appctx;
Christopher Fauletba7bc162016-11-07 21:07:38 +01001111
Christopher Faulet42bfa462017-01-04 14:14:19 +01001112 memset(&appctx, 0, sizeof(appctx));
1113 memset(&spoe_appctx, 0, sizeof(spoe_appctx));
Christopher Fauletba7bc162016-11-07 21:07:38 +01001114
Willy Tarreau23a24072022-05-05 20:18:44 +02001115 appctx.svcctx = &spoe_appctx;
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01001116 SPOE_APPCTX(&appctx)->max_frame_size = MAX_FRAME_SIZE;
Christopher Faulet42bfa462017-01-04 14:14:19 +01001117
Christopher Faulet8ef75252017-02-20 22:56:03 +01001118 if (*frame == SPOE_FRM_T_AGENT_DISCON) {
1119 spoe_handle_agentdiscon_frame(&appctx, frame, size);
Christopher Fauletba7bc162016-11-07 21:07:38 +01001120 goto error;
1121 }
Christopher Faulet8ef75252017-02-20 22:56:03 +01001122 if (spoe_handle_agenthello_frame(&appctx, frame, size) <= 0)
1123 goto error;
Christopher Fauletba7bc162016-11-07 21:07:38 +01001124
1125 return 0;
1126
1127 error:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001128 if (SPOE_APPCTX(&appctx)->status_code >= SPOE_FRM_ERRS)
1129 SPOE_APPCTX(&appctx)->status_code = SPOE_FRM_ERR_UNKNOWN;
1130 strncpy(err, spoe_frm_err_reasons[SPOE_APPCTX(&appctx)->status_code], errlen);
Christopher Fauletba7bc162016-11-07 21:07:38 +01001131 return -1;
1132}
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001133
Christopher Fauleta1cda022016-12-21 08:58:06 +01001134/* Send a SPOE frame to an agent. It returns -1 when an error occurred, 0 when
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05001135 * the frame can be ignored, 1 to retry later, and the frame length on
Christopher Fauleta1cda022016-12-21 08:58:06 +01001136 * success. */
1137static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001138spoe_send_frame(struct appctx *appctx, char *buf, size_t framesz)
Christopher Fauleta1cda022016-12-21 08:58:06 +01001139{
Willy Tarreauc12b3212022-05-27 11:08:15 +02001140 struct stconn *sc = appctx_sc(appctx);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001141 int ret;
1142 uint32_t netint;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001143
Christopher Faulet8ef75252017-02-20 22:56:03 +01001144 /* 4 bytes are reserved at the beginning of <buf> to store the frame
1145 * length. */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001146 netint = htonl(framesz);
1147 memcpy(buf, (char *)&netint, 4);
Willy Tarreaud0a06d52022-05-18 15:07:19 +02001148 ret = applet_putblk(appctx, buf, framesz+4);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001149 if (ret <= 0) {
Willy Tarreau9002a2e2022-05-27 10:34:25 +02001150 if ((ret == -3 && b_is_null(&sc_ic(sc)->buf)) || ret == -1) {
Willy Tarreaud0a06d52022-05-18 15:07:19 +02001151 /* WT: is this still needed for the case ret==-3 ? */
Willy Tarreau9002a2e2022-05-27 10:34:25 +02001152 sc_need_room(sc);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001153 return 1; /* retry */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001154 }
1155 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001156 return -1; /* error */
1157 }
1158 return framesz;
1159}
1160
1161/* Receive a SPOE frame from an agent. It return -1 when an error occurred, 0
1162 * when the frame can be ignored, 1 to retry later and the frame length on
1163 * success. */
1164static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001165spoe_recv_frame(struct appctx *appctx, char *buf, size_t framesz)
Christopher Fauleta1cda022016-12-21 08:58:06 +01001166{
Willy Tarreauc12b3212022-05-27 11:08:15 +02001167 struct stconn *sc = appctx_sc(appctx);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001168 int ret;
1169 uint32_t netint;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001170
Willy Tarreau9002a2e2022-05-27 10:34:25 +02001171 ret = co_getblk(sc_oc(sc), (char *)&netint, 4, 0);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001172 if (ret > 0) {
1173 framesz = ntohl(netint);
Christopher Faulet42bfa462017-01-04 14:14:19 +01001174 if (framesz > SPOE_APPCTX(appctx)->max_frame_size) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001175 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOO_BIG;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001176 return -1;
1177 }
Willy Tarreau9002a2e2022-05-27 10:34:25 +02001178 ret = co_getblk(sc_oc(sc), buf, framesz, 4);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001179 }
1180 if (ret <= 0) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001181 if (ret == 0) {
Christopher Fauleta1cda022016-12-21 08:58:06 +01001182 return 1; /* retry */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001183 }
1184 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001185 return -1; /* error */
1186 }
1187 return framesz;
1188}
1189
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001190/********************************************************************
1191 * Functions that manage the SPOE applet
1192 ********************************************************************/
Christopher Faulet4596fb72017-01-11 14:05:19 +01001193static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001194spoe_wakeup_appctx(struct appctx *appctx)
Christopher Faulet4596fb72017-01-11 14:05:19 +01001195{
Willy Tarreau75a8f8e2022-05-25 18:12:11 +02001196 applet_will_consume(appctx);
Willy Tarreau4164eb92022-05-25 15:42:03 +02001197 applet_have_more_data(appctx);
Christopher Faulet4596fb72017-01-11 14:05:19 +01001198 appctx_wakeup(appctx);
1199 return 1;
1200}
1201
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001202/* Callback function that catches applet timeouts. If a timeout occurred, we set
1203 * <appctx->st1> flag and the SPOE applet is woken up. */
1204static struct task *
Willy Tarreau144f84a2021-03-02 16:09:26 +01001205spoe_process_appctx(struct task * task, void *context, unsigned int state)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001206{
Olivier Houchard9f6af332018-05-25 14:04:04 +02001207 struct appctx *appctx = context;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001208
1209 appctx->st1 = SPOE_APPCTX_ERR_NONE;
1210 if (tick_is_expired(task->expire, now_ms)) {
1211 task->expire = TICK_ETERNITY;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001212 appctx->st1 = SPOE_APPCTX_ERR_TOUT;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001213 }
Christopher Faulet8ef75252017-02-20 22:56:03 +01001214 spoe_wakeup_appctx(appctx);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001215 return task;
1216}
1217
Christopher Faulet69ebc302022-05-12 15:28:51 +02001218static int
1219spoe_init_appctx(struct appctx *appctx)
1220{
1221 struct spoe_appctx *spoe_appctx = SPOE_APPCTX(appctx);
1222 struct spoe_agent *agent = spoe_appctx->agent;
1223 struct task *task;
1224 struct stream *s;
1225
1226 if ((task = task_new_here()) == NULL)
Christopher Fauletfa463af2022-05-18 07:42:49 +02001227 goto out_error;
Christopher Faulet69ebc302022-05-12 15:28:51 +02001228 task->process = spoe_process_appctx;
1229 task->context = appctx;
1230
1231 if (appctx_finalize_startup(appctx, &agent->spoe_conf->agent_fe, &BUF_NULL) == -1)
Christopher Fauletfa463af2022-05-18 07:42:49 +02001232 goto out_free_task;
Christopher Faulet69ebc302022-05-12 15:28:51 +02001233
1234 spoe_appctx->owner = appctx;
1235 spoe_appctx->task = task;
1236
1237 LIST_INIT(&spoe_appctx->buffer_wait.list);
1238 spoe_appctx->buffer_wait.target = appctx;
1239 spoe_appctx->buffer_wait.wakeup_cb = (int (*)(void *))spoe_wakeup_appctx;
1240
1241 s = appctx_strm(appctx);
1242 stream_set_backend(s, agent->b.be);
1243
1244 /* applet is waiting for data */
Willy Tarreau90e8b452022-05-25 18:21:43 +02001245 applet_need_more_data(appctx);
Christopher Faulet69ebc302022-05-12 15:28:51 +02001246
1247 s->do_log = NULL;
1248 s->res.flags |= CF_READ_DONTWAIT;
1249
1250 HA_SPIN_LOCK(SPOE_APPLET_LOCK, &agent->rt[tid].lock);
1251 LIST_APPEND(&agent->rt[tid].applets, &spoe_appctx->list);
1252 HA_SPIN_UNLOCK(SPOE_APPLET_LOCK, &agent->rt[tid].lock);
1253 _HA_ATOMIC_INC(&agent->counters.applets);
1254
1255 appctx->st0 = SPOE_APPCTX_ST_CONNECT;
1256 task_wakeup(spoe_appctx->task, TASK_WOKEN_INIT);
1257 return 0;
1258 out_free_task:
1259 task_destroy(task);
1260 out_error:
1261 return -1;
1262}
1263
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001264/* Callback function that releases a SPOE applet. This happens when the
1265 * connection with the agent is closed. */
1266static void
Christopher Faulet8ef75252017-02-20 22:56:03 +01001267spoe_release_appctx(struct appctx *appctx)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001268{
Willy Tarreauc12b3212022-05-27 11:08:15 +02001269 struct stconn *sc = appctx_sc(appctx);
Christopher Faulet908628c2022-03-25 16:43:49 +01001270 struct spoe_appctx *spoe_appctx = SPOE_APPCTX(appctx);
1271 struct spoe_agent *agent;
1272 struct spoe_context *ctx, *back;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001273
1274 if (spoe_appctx == NULL)
1275 return;
1276
Willy Tarreau23a24072022-05-05 20:18:44 +02001277 appctx->svcctx = NULL;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001278 agent = spoe_appctx->agent;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001279
1280 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p\n",
1281 (int)now.tv_sec, (int)now.tv_usec, agent->id,
1282 __FUNCTION__, appctx);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001283
Christopher Faulet8ef75252017-02-20 22:56:03 +01001284 /* Remove applet from the list of running applets */
Willy Tarreau4781b152021-04-06 13:53:36 +02001285 _HA_ATOMIC_DEC(&agent->counters.applets);
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001286 HA_SPIN_LOCK(SPOE_APPLET_LOCK, &agent->rt[tid].lock);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001287 if (!LIST_ISEMPTY(&spoe_appctx->list)) {
Willy Tarreau2b718102021-04-21 07:32:39 +02001288 LIST_DELETE(&spoe_appctx->list);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001289 LIST_INIT(&spoe_appctx->list);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001290 }
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001291 HA_SPIN_UNLOCK(SPOE_APPLET_LOCK, &agent->rt[tid].lock);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001292
Christopher Faulet8ef75252017-02-20 22:56:03 +01001293 /* Shutdown the server connection, if needed */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001294 if (appctx->st0 != SPOE_APPCTX_ST_END) {
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001295 if (appctx->st0 == SPOE_APPCTX_ST_IDLE) {
1296 eb32_delete(&spoe_appctx->node);
Willy Tarreau4781b152021-04-06 13:53:36 +02001297 _HA_ATOMIC_DEC(&agent->counters.idles);
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001298 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001299
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001300 appctx->st0 = SPOE_APPCTX_ST_END;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001301 if (spoe_appctx->status_code == SPOE_FRM_ERR_NONE)
1302 spoe_appctx->status_code = SPOE_FRM_ERR_IO;
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001303
Willy Tarreau9002a2e2022-05-27 10:34:25 +02001304 sc_shutw(sc);
1305 sc_shutr(sc);
1306 sc_ic(sc)->flags |= CF_READ_NULL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001307 }
1308
Christopher Faulet8ef75252017-02-20 22:56:03 +01001309 /* Destroy the task attached to this applet */
Willy Tarreauf6562792019-05-07 19:05:35 +02001310 task_destroy(spoe_appctx->task);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001311
Christopher Faulet42a06622022-08-25 18:50:18 +02001312 /* Report an error to all streams in the appctx waiting queue */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001313 list_for_each_entry_safe(ctx, back, &spoe_appctx->waiting_queue, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02001314 LIST_DELETE(&ctx->list);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001315 LIST_INIT(&ctx->list);
Willy Tarreau4781b152021-04-06 13:53:36 +02001316 _HA_ATOMIC_DEC(&agent->counters.nb_waiting);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01001317 spoe_update_stat_time(&ctx->stats.tv_wait, &ctx->stats.t_waiting);
Christopher Fauletcf181c72020-11-10 18:45:34 +01001318 ctx->spoe_appctx = NULL;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001319 ctx->state = SPOE_CTX_ST_ERROR;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001320 ctx->status_code = (spoe_appctx->status_code + 0x100);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001321 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001322 }
1323
Christopher Faulet42a06622022-08-25 18:50:18 +02001324 /* If the applet was processing a fragmented frame, report an error to
1325 * the corresponding stream. */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001326 if (spoe_appctx->frag_ctx.ctx) {
1327 ctx = spoe_appctx->frag_ctx.ctx;
Christopher Fauletfce747b2018-01-24 15:59:32 +01001328 ctx->spoe_appctx = NULL;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001329 ctx->state = SPOE_CTX_ST_ERROR;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001330 ctx->status_code = (spoe_appctx->status_code + 0x100);
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001331 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
1332 }
1333
Christopher Faulet42a06622022-08-25 18:50:18 +02001334 if (!LIST_ISEMPTY(&agent->rt[tid].applets)) {
1335 /* If there are still some running applets, remove reference on
1336 * the current one from streams in the async waiting queue. In
1337 * async mode, the ACK may be received from another appctx.
1338 */
Christopher Fauletcf181c72020-11-10 18:45:34 +01001339 list_for_each_entry_safe(ctx, back, &agent->rt[tid].waiting_queue, list) {
1340 if (ctx->spoe_appctx == spoe_appctx)
1341 ctx->spoe_appctx = NULL;
1342 }
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01001343 goto end;
Christopher Fauletcf181c72020-11-10 18:45:34 +01001344 }
Christopher Faulet6f1296b2021-08-02 17:53:56 +02001345 else {
Christopher Faulet42a06622022-08-25 18:50:18 +02001346 /* It is the last running applet and the sending and async
1347 * waiting queues are not empty. So try to start a new applet if
1348 * HAproxy is not stopping. On success, we remove reference on
1349 * the current appctx from streams in the async waiting queue.
1350 * In async mode, the ACK may be received from another appctx.
Christopher Faulet6f1296b2021-08-02 17:53:56 +02001351 */
1352 if (!stopping &&
1353 (!LIST_ISEMPTY(&agent->rt[tid].sending_queue) || !LIST_ISEMPTY(&agent->rt[tid].waiting_queue)) &&
Christopher Faulet42a06622022-08-25 18:50:18 +02001354 spoe_create_appctx(agent->spoe_conf)) {
1355 list_for_each_entry_safe(ctx, back, &agent->rt[tid].waiting_queue, list) {
1356 if (ctx->spoe_appctx == spoe_appctx)
1357 ctx->spoe_appctx = NULL;
1358 }
Christopher Faulet6f1296b2021-08-02 17:53:56 +02001359 goto end;
Christopher Faulet42a06622022-08-25 18:50:18 +02001360 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001361
Christopher Faulet42a06622022-08-25 18:50:18 +02001362 /* Otherwise, report an error to all streams in the sending and
1363 * async waiting queues.
1364 */
Christopher Faulet6f1296b2021-08-02 17:53:56 +02001365 list_for_each_entry_safe(ctx, back, &agent->rt[tid].sending_queue, list) {
1366 LIST_DELETE(&ctx->list);
1367 LIST_INIT(&ctx->list);
1368 _HA_ATOMIC_DEC(&agent->counters.nb_sending);
1369 spoe_update_stat_time(&ctx->stats.tv_queue, &ctx->stats.t_queue);
1370 ctx->spoe_appctx = NULL;
1371 ctx->state = SPOE_CTX_ST_ERROR;
1372 ctx->status_code = (spoe_appctx->status_code + 0x100);
1373 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
1374 }
1375 list_for_each_entry_safe(ctx, back, &agent->rt[tid].waiting_queue, list) {
1376 LIST_DELETE(&ctx->list);
1377 LIST_INIT(&ctx->list);
1378 _HA_ATOMIC_DEC(&agent->counters.nb_waiting);
1379 spoe_update_stat_time(&ctx->stats.tv_wait, &ctx->stats.t_waiting);
1380 ctx->spoe_appctx = NULL;
1381 ctx->state = SPOE_CTX_ST_ERROR;
1382 ctx->status_code = (spoe_appctx->status_code + 0x100);
1383 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
1384 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001385 }
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01001386
1387 end:
Christopher Faulet55ae8a62019-05-23 22:47:48 +02001388 /* Release allocated memory */
1389 spoe_release_buffer(&spoe_appctx->buffer,
1390 &spoe_appctx->buffer_wait);
1391 pool_free(pool_head_spoe_appctx, spoe_appctx);
1392
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01001393 /* Update runtinme agent info */
Christopher Faulet24289f22017-09-25 14:48:02 +02001394 agent->rt[tid].frame_size = agent->max_frame_size;
1395 list_for_each_entry(spoe_appctx, &agent->rt[tid].applets, list)
1396 HA_ATOMIC_UPDATE_MIN(&agent->rt[tid].frame_size, spoe_appctx->max_frame_size);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001397}
1398
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001399static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001400spoe_handle_connect_appctx(struct appctx *appctx)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001401{
Willy Tarreauc12b3212022-05-27 11:08:15 +02001402 struct stconn *sc = appctx_sc(appctx);
Christopher Faulet908628c2022-03-25 16:43:49 +01001403 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001404 char *frame, *buf;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001405 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001406
Willy Tarreau9002a2e2022-05-27 10:34:25 +02001407 if (sc_state_in(sc->state, SC_SB_CER|SC_SB_DIS|SC_SB_CLO)) {
Willy Tarreau7ab22adb2019-06-05 14:53:22 +02001408 /* closed */
1409 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO;
1410 goto exit;
1411 }
1412
Willy Tarreau9002a2e2022-05-27 10:34:25 +02001413 if (!sc_state_in(sc->state, SC_SB_RDY|SC_SB_EST)) {
Willy Tarreau7ab22adb2019-06-05 14:53:22 +02001414 /* not connected yet */
Willy Tarreau4164eb92022-05-25 15:42:03 +02001415 applet_have_more_data(appctx);
Willy Tarreau9002a2e2022-05-27 10:34:25 +02001416 task_wakeup(__sc_strm(sc)->task, TASK_WOKEN_MSG);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001417 goto stop;
1418 }
Christopher Fauleta73e59b2016-12-09 17:30:18 +01001419
Christopher Fauleta1cda022016-12-21 08:58:06 +01001420 if (appctx->st1 == SPOE_APPCTX_ERR_TOUT) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001421 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
1422 " - Connection timed out\n",
1423 (int)now.tv_sec, (int)now.tv_usec, agent->id,
1424 __FUNCTION__, appctx);
1425 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOUT;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001426 goto exit;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001427 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001428
Christopher Faulet42bfa462017-01-04 14:14:19 +01001429 if (SPOE_APPCTX(appctx)->task->expire == TICK_ETERNITY)
Christopher Faulet8ef75252017-02-20 22:56:03 +01001430 SPOE_APPCTX(appctx)->task->expire =
1431 tick_add_ifset(now_ms, agent->timeout.hello);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001432
Christopher Faulet8ef75252017-02-20 22:56:03 +01001433 /* 4 bytes are reserved at the beginning of <buf> to store the frame
1434 * length. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001435 buf = trash.area; frame = buf+4;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001436 ret = spoe_prepare_hahello_frame(appctx, frame,
1437 SPOE_APPCTX(appctx)->max_frame_size);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001438 if (ret > 1)
Christopher Faulet8ef75252017-02-20 22:56:03 +01001439 ret = spoe_send_frame(appctx, buf, ret);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001440
1441 switch (ret) {
1442 case -1: /* error */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001443 case 0: /* ignore => an error, cannot be ignored */
1444 goto exit;
1445
1446 case 1: /* retry later */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001447 goto stop;
1448
Christopher Faulet8ef75252017-02-20 22:56:03 +01001449 default:
1450 /* HELLO frame successfully sent, now wait for the
1451 * reply. */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001452 appctx->st0 = SPOE_APPCTX_ST_CONNECTING;
1453 goto next;
1454 }
1455
1456 next:
1457 return 0;
1458 stop:
1459 return 1;
1460 exit:
1461 appctx->st0 = SPOE_APPCTX_ST_EXIT;
1462 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001463}
1464
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001465static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001466spoe_handle_connecting_appctx(struct appctx *appctx)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001467{
Willy Tarreauc12b3212022-05-27 11:08:15 +02001468 struct stconn *sc = appctx_sc(appctx);
Christopher Faulet908628c2022-03-25 16:43:49 +01001469 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001470 char *frame;
1471 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001472
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001473
Willy Tarreau9002a2e2022-05-27 10:34:25 +02001474 if (sc->state == SC_ST_CLO || sc_opposite(sc)->state == SC_ST_CLO) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001475 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001476 goto exit;
Christopher Fauletb067b062017-01-04 16:39:11 +01001477 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001478
Christopher Fauleta1cda022016-12-21 08:58:06 +01001479 if (appctx->st1 == SPOE_APPCTX_ERR_TOUT) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001480 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
1481 " - Connection timed out\n",
1482 (int)now.tv_sec, (int)now.tv_usec, agent->id,
1483 __FUNCTION__, appctx);
1484 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOUT;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001485 goto exit;
1486 }
1487
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001488 frame = trash.area; trash.data = 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001489 ret = spoe_recv_frame(appctx, frame,
1490 SPOE_APPCTX(appctx)->max_frame_size);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001491 if (ret > 1) {
1492 if (*frame == SPOE_FRM_T_AGENT_DISCON) {
1493 appctx->st0 = SPOE_APPCTX_ST_DISCONNECTING;
1494 goto next;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001495 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001496 trash.data = ret + 4;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001497 ret = spoe_handle_agenthello_frame(appctx, frame, ret);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001498 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001499
Christopher Fauleta1cda022016-12-21 08:58:06 +01001500 switch (ret) {
1501 case -1: /* error */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001502 case 0: /* ignore => an error, cannot be ignored */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001503 appctx->st0 = SPOE_APPCTX_ST_DISCONNECT;
1504 goto next;
1505
1506 case 1: /* retry later */
1507 goto stop;
1508
1509 default:
Willy Tarreau4781b152021-04-06 13:53:36 +02001510 _HA_ATOMIC_INC(&agent->counters.idles);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001511 appctx->st0 = SPOE_APPCTX_ST_IDLE;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001512 SPOE_APPCTX(appctx)->node.key = 0;
1513 eb32_insert(&agent->rt[tid].idle_applets, &SPOE_APPCTX(appctx)->node);
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01001514
1515 /* Update runtinme agent info */
Christopher Faulet24289f22017-09-25 14:48:02 +02001516 HA_ATOMIC_UPDATE_MIN(&agent->rt[tid].frame_size, SPOE_APPCTX(appctx)->max_frame_size);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001517 goto next;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001518 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001519
Christopher Fauleta1cda022016-12-21 08:58:06 +01001520 next:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001521 /* Do not forget to remove processed frame from the output buffer */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001522 if (trash.data)
Willy Tarreau9002a2e2022-05-27 10:34:25 +02001523 co_skip(sc_oc(sc), trash.data);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001524
1525 SPOE_APPCTX(appctx)->task->expire =
1526 tick_add_ifset(now_ms, agent->timeout.idle);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001527 return 0;
1528 stop:
1529 return 1;
1530 exit:
1531 appctx->st0 = SPOE_APPCTX_ST_EXIT;
1532 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001533}
1534
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001535
Christopher Fauleta1cda022016-12-21 08:58:06 +01001536static int
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001537spoe_handle_sending_frame_appctx(struct appctx *appctx, int *skip)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001538{
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001539 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
1540 struct spoe_context *ctx = NULL;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001541 char *frame, *buf;
1542 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001543
Christopher Faulet8ef75252017-02-20 22:56:03 +01001544 /* 4 bytes are reserved at the beginning of <buf> to store the frame
1545 * length. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001546 buf = trash.area; frame = buf+4;
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001547
1548 if (appctx->st0 == SPOE_APPCTX_ST_SENDING_FRAG_NOTIFY) {
1549 ctx = SPOE_APPCTX(appctx)->frag_ctx.ctx;
1550 ret = spoe_prepare_hafrag_frame(appctx, ctx, frame,
1551 SPOE_APPCTX(appctx)->max_frame_size);
1552 }
Christopher Faulet24289f22017-09-25 14:48:02 +02001553 else if (LIST_ISEMPTY(&agent->rt[tid].sending_queue)) {
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001554 *skip = 1;
1555 ret = 1;
1556 goto end;
1557 }
1558 else {
Christopher Faulet24289f22017-09-25 14:48:02 +02001559 ctx = LIST_NEXT(&agent->rt[tid].sending_queue, typeof(ctx), list);
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001560 ret = spoe_prepare_hanotify_frame(appctx, ctx, frame,
1561 SPOE_APPCTX(appctx)->max_frame_size);
1562
1563 }
1564
Christopher Faulet8ef75252017-02-20 22:56:03 +01001565 if (ret > 1)
1566 ret = spoe_send_frame(appctx, buf, ret);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001567
Christopher Faulet8ef75252017-02-20 22:56:03 +01001568 switch (ret) {
1569 case -1: /* error */
1570 appctx->st0 = SPOE_APPCTX_ST_DISCONNECT;
1571 goto end;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001572
Christopher Faulet8ef75252017-02-20 22:56:03 +01001573 case 0: /* ignore */
1574 if (ctx == NULL)
1575 goto abort_frag_frame;
1576
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001577 spoe_release_buffer(&ctx->buffer, &ctx->buffer_wait);
Willy Tarreau2b718102021-04-21 07:32:39 +02001578 LIST_DELETE(&ctx->list);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001579 LIST_INIT(&ctx->list);
Willy Tarreau4781b152021-04-06 13:53:36 +02001580 _HA_ATOMIC_DEC(&agent->counters.nb_sending);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01001581 spoe_update_stat_time(&ctx->stats.tv_queue, &ctx->stats.t_queue);
Christopher Fauletfce747b2018-01-24 15:59:32 +01001582 ctx->spoe_appctx = NULL;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001583 ctx->state = SPOE_CTX_ST_ERROR;
1584 ctx->status_code = (SPOE_APPCTX(appctx)->status_code + 0x100);
1585 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001586 *skip = 1;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001587 break;
1588
1589 case 1: /* retry */
1590 *skip = 1;
1591 break;
1592
1593 default:
1594 if (ctx == NULL)
1595 goto abort_frag_frame;
1596
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001597 spoe_release_buffer(&ctx->buffer, &ctx->buffer_wait);
Willy Tarreau2b718102021-04-21 07:32:39 +02001598 LIST_DELETE(&ctx->list);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001599 LIST_INIT(&ctx->list);
Willy Tarreau4781b152021-04-06 13:53:36 +02001600 _HA_ATOMIC_DEC(&agent->counters.nb_sending);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01001601 spoe_update_stat_time(&ctx->stats.tv_queue, &ctx->stats.t_queue);
Christopher Fauletfce747b2018-01-24 15:59:32 +01001602 ctx->spoe_appctx = SPOE_APPCTX(appctx);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001603 if (!(ctx->flags & SPOE_CTX_FL_FRAGMENTED) ||
1604 (ctx->frag_ctx.flags & SPOE_FRM_FL_FIN))
1605 goto no_frag_frame_sent;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001606 else
Christopher Faulet8ef75252017-02-20 22:56:03 +01001607 goto frag_frame_sent;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001608 }
1609 goto end;
1610
1611 frag_frame_sent:
1612 appctx->st0 = SPOE_APPCTX_ST_SENDING_FRAG_NOTIFY;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001613 *skip = 1;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001614 SPOE_APPCTX(appctx)->frag_ctx.ctx = ctx;
1615 SPOE_APPCTX(appctx)->frag_ctx.cursid = ctx->stream_id;
1616 SPOE_APPCTX(appctx)->frag_ctx.curfid = ctx->frame_id;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001617 ctx->state = SPOE_CTX_ST_ENCODING_MSGS;
1618 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
1619 goto end;
1620
1621 no_frag_frame_sent:
1622 if (SPOE_APPCTX(appctx)->flags & SPOE_APPCTX_FL_ASYNC) {
1623 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
Willy Tarreau2b718102021-04-21 07:32:39 +02001624 LIST_APPEND(&agent->rt[tid].waiting_queue, &ctx->list);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001625 }
1626 else if (SPOE_APPCTX(appctx)->flags & SPOE_APPCTX_FL_PIPELINING) {
1627 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
Willy Tarreau2b718102021-04-21 07:32:39 +02001628 LIST_APPEND(&SPOE_APPCTX(appctx)->waiting_queue, &ctx->list);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001629 }
1630 else {
1631 appctx->st0 = SPOE_APPCTX_ST_WAITING_SYNC_ACK;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001632 *skip = 1;
Willy Tarreau2b718102021-04-21 07:32:39 +02001633 LIST_APPEND(&SPOE_APPCTX(appctx)->waiting_queue, &ctx->list);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001634 }
Willy Tarreau4781b152021-04-06 13:53:36 +02001635 _HA_ATOMIC_INC(&agent->counters.nb_waiting);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01001636 ctx->stats.tv_wait = now;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001637 SPOE_APPCTX(appctx)->frag_ctx.ctx = NULL;
1638 SPOE_APPCTX(appctx)->frag_ctx.cursid = 0;
1639 SPOE_APPCTX(appctx)->frag_ctx.curfid = 0;
Christopher Faulet8f82b202018-01-24 16:23:03 +01001640 SPOE_APPCTX(appctx)->cur_fpa++;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001641
Christopher Faulet8ef75252017-02-20 22:56:03 +01001642 ctx->state = SPOE_CTX_ST_WAITING_ACK;
1643 goto end;
1644
1645 abort_frag_frame:
1646 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
1647 SPOE_APPCTX(appctx)->frag_ctx.ctx = NULL;
1648 SPOE_APPCTX(appctx)->frag_ctx.cursid = 0;
1649 SPOE_APPCTX(appctx)->frag_ctx.curfid = 0;
1650 goto end;
1651
1652 end:
1653 return ret;
1654}
1655
1656static int
1657spoe_handle_receiving_frame_appctx(struct appctx *appctx, int *skip)
1658{
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02001659 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001660 struct spoe_context *ctx = NULL;
1661 char *frame;
1662 int ret;
1663
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001664 frame = trash.area; trash.data = 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001665 ret = spoe_recv_frame(appctx, frame,
1666 SPOE_APPCTX(appctx)->max_frame_size);
1667 if (ret > 1) {
1668 if (*frame == SPOE_FRM_T_AGENT_DISCON) {
1669 appctx->st0 = SPOE_APPCTX_ST_DISCONNECTING;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001670 ret = -1;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001671 goto end;
1672 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001673 trash.data = ret + 4;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001674 ret = spoe_handle_agentack_frame(appctx, &ctx, frame, ret);
1675 }
1676 switch (ret) {
1677 case -1: /* error */
1678 appctx->st0 = SPOE_APPCTX_ST_DISCONNECT;
1679 break;
1680
1681 case 0: /* ignore */
1682 break;
1683
1684 case 1: /* retry */
1685 *skip = 1;
1686 break;
1687
1688 default:
Willy Tarreau2b718102021-04-21 07:32:39 +02001689 LIST_DELETE(&ctx->list);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001690 LIST_INIT(&ctx->list);
Willy Tarreau4781b152021-04-06 13:53:36 +02001691 _HA_ATOMIC_DEC(&agent->counters.nb_waiting);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01001692 spoe_update_stat_time(&ctx->stats.tv_wait, &ctx->stats.t_waiting);
1693 ctx->stats.tv_response = now;
Christopher Faulet8f82b202018-01-24 16:23:03 +01001694 if (ctx->spoe_appctx) {
1695 ctx->spoe_appctx->cur_fpa--;
Christopher Fauletfce747b2018-01-24 15:59:32 +01001696 ctx->spoe_appctx = NULL;
Christopher Faulet8f82b202018-01-24 16:23:03 +01001697 }
Christopher Faulet8eda93f2017-02-09 09:44:33 +01001698 if (appctx->st0 == SPOE_APPCTX_ST_SENDING_FRAG_NOTIFY &&
1699 ctx == SPOE_APPCTX(appctx)->frag_ctx.ctx) {
1700 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
1701 SPOE_APPCTX(appctx)->frag_ctx.ctx = NULL;
1702 SPOE_APPCTX(appctx)->frag_ctx.cursid = 0;
1703 SPOE_APPCTX(appctx)->frag_ctx.curfid = 0;
1704 }
1705 else if (appctx->st0 == SPOE_APPCTX_ST_WAITING_SYNC_ACK)
1706 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001707 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
1708 break;
1709 }
1710
1711 /* Do not forget to remove processed frame from the output buffer */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001712 if (trash.data)
Willy Tarreauc12b3212022-05-27 11:08:15 +02001713 co_skip(sc_oc(appctx_sc(appctx)), trash.data);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001714 end:
1715 return ret;
1716}
1717
1718static int
1719spoe_handle_processing_appctx(struct appctx *appctx)
1720{
Willy Tarreauc12b3212022-05-27 11:08:15 +02001721 struct stconn *sc = appctx_sc(appctx);
Willy Tarreau9002a2e2022-05-27 10:34:25 +02001722 struct server *srv = objt_server(__sc_strm(sc)->target);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001723 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Fauletd7da3dd2021-08-02 18:13:27 +02001724 int ret, skip_sending = 0, skip_receiving = 0, active_s = 0, active_r = 0, close_asap = 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001725
Willy Tarreau9002a2e2022-05-27 10:34:25 +02001726 if (sc->state == SC_ST_CLO || sc_opposite(sc)->state == SC_ST_CLO) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001727 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO;
1728 goto exit;
1729 }
1730
1731 if (appctx->st1 == SPOE_APPCTX_ERR_TOUT) {
1732 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOUT;
1733 appctx->st0 = SPOE_APPCTX_ST_DISCONNECT;
1734 appctx->st1 = SPOE_APPCTX_ERR_NONE;
1735 goto next;
1736 }
1737
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001738 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001739 " - process: fpa=%u/%u - appctx-state=%s - weight=%u - flags=0x%08x\n",
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001740 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Faulet8f82b202018-01-24 16:23:03 +01001741 __FUNCTION__, appctx, SPOE_APPCTX(appctx)->cur_fpa,
1742 agent->max_fpa, spoe_appctx_state_str[appctx->st0],
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001743 SPOE_APPCTX(appctx)->node.key, SPOE_APPCTX(appctx)->flags);
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001744
Christopher Fauletd7da3dd2021-08-02 18:13:27 +02001745
1746 /* Close the applet ASAP because some sessions are waiting for a free
1747 * connection slot. It is only an issue in multithreaded mode.
1748 */
1749 close_asap = (global.nbthread > 1 &&
1750 (agent->b.be->queue.length ||
1751 (srv && (srv->queue.length || (srv->maxconn && srv->served >= srv_dynamic_maxconn(srv))))));
1752
1753 /* Don"t try to send new frame we are waiting for at lease a ack, in
1754 * sync mode or if applet must be closed ASAP
1755 */
1756 if (appctx->st0 == SPOE_APPCTX_ST_WAITING_SYNC_ACK || (close_asap && SPOE_APPCTX(appctx)->cur_fpa))
Christopher Faulet8f82b202018-01-24 16:23:03 +01001757 skip_sending = 1;
Christopher Faulet4596fb72017-01-11 14:05:19 +01001758
Christopher Faulet8f82b202018-01-24 16:23:03 +01001759 /* receiving_frame loop */
1760 while (!skip_receiving) {
1761 ret = spoe_handle_receiving_frame_appctx(appctx, &skip_receiving);
1762 switch (ret) {
1763 case -1: /* error */
1764 goto next;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001765
Christopher Faulet8f82b202018-01-24 16:23:03 +01001766 case 0: /* ignore */
1767 active_r = 1;
1768 break;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001769
Christopher Faulet8f82b202018-01-24 16:23:03 +01001770 case 1: /* retry */
1771 break;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001772
Christopher Faulet8f82b202018-01-24 16:23:03 +01001773 default:
1774 active_r = 1;
1775 break;
1776 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001777 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001778
Christopher Faulet8f82b202018-01-24 16:23:03 +01001779 /* send_frame loop */
1780 while (!skip_sending && SPOE_APPCTX(appctx)->cur_fpa < agent->max_fpa) {
1781 ret = spoe_handle_sending_frame_appctx(appctx, &skip_sending);
1782 switch (ret) {
1783 case -1: /* error */
1784 goto next;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001785
Christopher Faulet8f82b202018-01-24 16:23:03 +01001786 case 0: /* ignore */
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001787 if (SPOE_APPCTX(appctx)->node.key)
1788 SPOE_APPCTX(appctx)->node.key--;
Christopher Faulet8f82b202018-01-24 16:23:03 +01001789 active_s++;
1790 break;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001791
Christopher Faulet8f82b202018-01-24 16:23:03 +01001792 case 1: /* retry */
1793 break;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001794
Christopher Faulet8f82b202018-01-24 16:23:03 +01001795 default:
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001796 if (SPOE_APPCTX(appctx)->node.key)
1797 SPOE_APPCTX(appctx)->node.key--;
Christopher Faulet8f82b202018-01-24 16:23:03 +01001798 active_s++;
1799 break;
1800 }
Christopher Fauletd7da3dd2021-08-02 18:13:27 +02001801
1802 /* if applet must be close ASAP, don't send more than a frame */
1803 if (close_asap)
1804 break;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001805 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001806
Christopher Faulet8f82b202018-01-24 16:23:03 +01001807 if (active_s || active_r) {
Christopher Faulet8f82b202018-01-24 16:23:03 +01001808 update_freq_ctr(&agent->rt[tid].processing_per_sec, active_s);
1809 SPOE_APPCTX(appctx)->task->expire = tick_add_ifset(now_ms, agent->timeout.idle);
1810 }
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001811
Christopher Faulet8f82b202018-01-24 16:23:03 +01001812 if (appctx->st0 == SPOE_APPCTX_ST_PROCESSING && SPOE_APPCTX(appctx)->cur_fpa < agent->max_fpa) {
Christopher Fauletd7da3dd2021-08-02 18:13:27 +02001813 /* If applet must be closed, don't switch it in IDLE state and
1814 * close it when the last waiting frame is acknowledged.
Christopher Faulet9e647e52021-03-01 15:01:14 +01001815 */
Christopher Fauletd7da3dd2021-08-02 18:13:27 +02001816 if (close_asap) {
1817 if (SPOE_APPCTX(appctx)->cur_fpa)
1818 goto out;
Christopher Faulet9e647e52021-03-01 15:01:14 +01001819 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_NONE;
1820 appctx->st0 = SPOE_APPCTX_ST_DISCONNECT;
1821 appctx->st1 = SPOE_APPCTX_ERR_NONE;
1822 goto next;
1823 }
Willy Tarreau4781b152021-04-06 13:53:36 +02001824 _HA_ATOMIC_INC(&agent->counters.idles);
Christopher Faulet8f82b202018-01-24 16:23:03 +01001825 appctx->st0 = SPOE_APPCTX_ST_IDLE;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001826 eb32_insert(&agent->rt[tid].idle_applets, &SPOE_APPCTX(appctx)->node);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001827 }
Christopher Fauletd7da3dd2021-08-02 18:13:27 +02001828
1829 out:
Christopher Fauleta1cda022016-12-21 08:58:06 +01001830 return 1;
1831
Christopher Faulet8f82b202018-01-24 16:23:03 +01001832 next:
1833 SPOE_APPCTX(appctx)->task->expire = tick_add_ifset(now_ms, agent->timeout.idle);
1834 return 0;
1835
Christopher Fauleta1cda022016-12-21 08:58:06 +01001836 exit:
1837 appctx->st0 = SPOE_APPCTX_ST_EXIT;
1838 return 0;
1839}
1840
1841static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001842spoe_handle_disconnect_appctx(struct appctx *appctx)
Christopher Fauleta1cda022016-12-21 08:58:06 +01001843{
Willy Tarreauc12b3212022-05-27 11:08:15 +02001844 struct stconn *sc = appctx_sc(appctx);
Christopher Faulet908628c2022-03-25 16:43:49 +01001845 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001846 char *frame, *buf;
1847 int ret;
Christopher Fauletb067b062017-01-04 16:39:11 +01001848
Willy Tarreau9002a2e2022-05-27 10:34:25 +02001849 if (sc->state == SC_ST_CLO || sc_opposite(sc)->state == SC_ST_CLO)
Christopher Fauleta1cda022016-12-21 08:58:06 +01001850 goto exit;
1851
1852 if (appctx->st1 == SPOE_APPCTX_ERR_TOUT)
1853 goto exit;
1854
Christopher Faulet8ef75252017-02-20 22:56:03 +01001855 /* 4 bytes are reserved at the beginning of <buf> to store the frame
1856 * length. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001857 buf = trash.area; frame = buf+4;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001858 ret = spoe_prepare_hadiscon_frame(appctx, frame,
1859 SPOE_APPCTX(appctx)->max_frame_size);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001860 if (ret > 1)
Christopher Faulet8ef75252017-02-20 22:56:03 +01001861 ret = spoe_send_frame(appctx, buf, ret);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001862
1863 switch (ret) {
1864 case -1: /* error */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001865 case 0: /* ignore => an error, cannot be ignored */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001866 goto exit;
1867
1868 case 1: /* retry */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001869 goto stop;
1870
1871 default:
1872 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
1873 " - disconnected by HAProxy (%d): %s\n",
1874 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Faulet8ef75252017-02-20 22:56:03 +01001875 __FUNCTION__, appctx,
1876 SPOE_APPCTX(appctx)->status_code,
1877 spoe_frm_err_reasons[SPOE_APPCTX(appctx)->status_code]);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001878
1879 appctx->st0 = SPOE_APPCTX_ST_DISCONNECTING;
1880 goto next;
1881 }
1882
1883 next:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001884 SPOE_APPCTX(appctx)->task->expire =
1885 tick_add_ifset(now_ms, agent->timeout.idle);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001886 return 0;
1887 stop:
1888 return 1;
1889 exit:
1890 appctx->st0 = SPOE_APPCTX_ST_EXIT;
1891 return 0;
1892}
1893
1894static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001895spoe_handle_disconnecting_appctx(struct appctx *appctx)
Christopher Fauleta1cda022016-12-21 08:58:06 +01001896{
Willy Tarreauc12b3212022-05-27 11:08:15 +02001897 struct stconn *sc = appctx_sc(appctx);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001898 char *frame;
1899 int ret;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001900
Willy Tarreau9002a2e2022-05-27 10:34:25 +02001901 if (sc->state == SC_ST_CLO || sc_opposite(sc)->state == SC_ST_CLO) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001902 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001903 goto exit;
Christopher Fauletb067b062017-01-04 16:39:11 +01001904 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001905
Christopher Fauletb067b062017-01-04 16:39:11 +01001906 if (appctx->st1 == SPOE_APPCTX_ERR_TOUT) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001907 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOUT;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001908 goto exit;
Christopher Fauletb067b062017-01-04 16:39:11 +01001909 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001910
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001911 frame = trash.area; trash.data = 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001912 ret = spoe_recv_frame(appctx, frame,
1913 SPOE_APPCTX(appctx)->max_frame_size);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001914 if (ret > 1) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001915 trash.data = ret + 4;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001916 ret = spoe_handle_agentdiscon_frame(appctx, frame, ret);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001917 }
1918
1919 switch (ret) {
1920 case -1: /* error */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001921 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
1922 " - error on frame (%s)\n",
1923 (int)now.tv_sec, (int)now.tv_usec,
Christopher Faulet42bfa462017-01-04 14:14:19 +01001924 ((struct spoe_agent *)SPOE_APPCTX(appctx)->agent)->id,
Christopher Fauleta1cda022016-12-21 08:58:06 +01001925 __FUNCTION__, appctx,
Christopher Faulet8ef75252017-02-20 22:56:03 +01001926 spoe_frm_err_reasons[SPOE_APPCTX(appctx)->status_code]);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001927 goto exit;
1928
1929 case 0: /* ignore */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001930 goto next;
1931
1932 case 1: /* retry */
1933 goto stop;
1934
1935 default:
Christopher Fauleta1cda022016-12-21 08:58:06 +01001936 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
Christopher Faulet8ef75252017-02-20 22:56:03 +01001937 " - disconnected by peer (%d): %.*s\n",
Christopher Fauleta1cda022016-12-21 08:58:06 +01001938 (int)now.tv_sec, (int)now.tv_usec,
Christopher Faulet42bfa462017-01-04 14:14:19 +01001939 ((struct spoe_agent *)SPOE_APPCTX(appctx)->agent)->id,
Christopher Faulet8ef75252017-02-20 22:56:03 +01001940 __FUNCTION__, appctx, SPOE_APPCTX(appctx)->status_code,
1941 SPOE_APPCTX(appctx)->rlen, SPOE_APPCTX(appctx)->reason);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001942 goto exit;
1943 }
1944
1945 next:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001946 /* Do not forget to remove processed frame from the output buffer */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001947 if (trash.data)
Willy Tarreau9002a2e2022-05-27 10:34:25 +02001948 co_skip(sc_oc(sc), trash.data);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001949
Christopher Fauleta1cda022016-12-21 08:58:06 +01001950 return 0;
1951 stop:
1952 return 1;
1953 exit:
1954 appctx->st0 = SPOE_APPCTX_ST_EXIT;
1955 return 0;
1956}
1957
1958/* I/O Handler processing messages exchanged with the agent */
1959static void
Christopher Faulet8ef75252017-02-20 22:56:03 +01001960spoe_handle_appctx(struct appctx *appctx)
Christopher Fauleta1cda022016-12-21 08:58:06 +01001961{
Willy Tarreauc12b3212022-05-27 11:08:15 +02001962 struct stconn *sc = appctx_sc(appctx);
Christopher Faulet908628c2022-03-25 16:43:49 +01001963 struct spoe_agent *agent;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001964
1965 if (SPOE_APPCTX(appctx) == NULL)
1966 return;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001967
Christopher Faulet8ef75252017-02-20 22:56:03 +01001968 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_NONE;
1969 agent = SPOE_APPCTX(appctx)->agent;
Christopher Fauletb067b062017-01-04 16:39:11 +01001970
Christopher Fauleta1cda022016-12-21 08:58:06 +01001971 switchstate:
1972 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
1973 " - appctx-state=%s\n",
1974 (int)now.tv_sec, (int)now.tv_usec, agent->id,
1975 __FUNCTION__, appctx, spoe_appctx_state_str[appctx->st0]);
1976
1977 switch (appctx->st0) {
1978 case SPOE_APPCTX_ST_CONNECT:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001979 if (spoe_handle_connect_appctx(appctx))
Christopher Fauleta1cda022016-12-21 08:58:06 +01001980 goto out;
1981 goto switchstate;
1982
1983 case SPOE_APPCTX_ST_CONNECTING:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001984 if (spoe_handle_connecting_appctx(appctx))
Christopher Fauleta1cda022016-12-21 08:58:06 +01001985 goto out;
1986 goto switchstate;
1987
1988 case SPOE_APPCTX_ST_IDLE:
Willy Tarreau4781b152021-04-06 13:53:36 +02001989 _HA_ATOMIC_DEC(&agent->counters.idles);
Christopher Faulet7d9f1ba2018-02-28 13:33:26 +01001990 eb32_delete(&SPOE_APPCTX(appctx)->node);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001991 if (stopping &&
Christopher Faulet24289f22017-09-25 14:48:02 +02001992 LIST_ISEMPTY(&agent->rt[tid].sending_queue) &&
Christopher Faulet42bfa462017-01-04 14:14:19 +01001993 LIST_ISEMPTY(&SPOE_APPCTX(appctx)->waiting_queue)) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001994 SPOE_APPCTX(appctx)->task->expire =
1995 tick_add_ifset(now_ms, agent->timeout.idle);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001996 appctx->st0 = SPOE_APPCTX_ST_DISCONNECT;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001997 goto switchstate;
1998 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001999 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
2000 /* fall through */
2001
2002 case SPOE_APPCTX_ST_PROCESSING:
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002003 case SPOE_APPCTX_ST_SENDING_FRAG_NOTIFY:
2004 case SPOE_APPCTX_ST_WAITING_SYNC_ACK:
Christopher Faulet8ef75252017-02-20 22:56:03 +01002005 if (spoe_handle_processing_appctx(appctx))
Christopher Fauleta1cda022016-12-21 08:58:06 +01002006 goto out;
2007 goto switchstate;
2008
2009 case SPOE_APPCTX_ST_DISCONNECT:
Christopher Faulet8ef75252017-02-20 22:56:03 +01002010 if (spoe_handle_disconnect_appctx(appctx))
Christopher Fauleta1cda022016-12-21 08:58:06 +01002011 goto out;
2012 goto switchstate;
2013
2014 case SPOE_APPCTX_ST_DISCONNECTING:
Christopher Faulet8ef75252017-02-20 22:56:03 +01002015 if (spoe_handle_disconnecting_appctx(appctx))
Christopher Fauleta1cda022016-12-21 08:58:06 +01002016 goto out;
2017 goto switchstate;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002018
2019 case SPOE_APPCTX_ST_EXIT:
Christopher Faulet8ef75252017-02-20 22:56:03 +01002020 appctx->st0 = SPOE_APPCTX_ST_END;
2021 SPOE_APPCTX(appctx)->task->expire = TICK_ETERNITY;
2022
Willy Tarreau9002a2e2022-05-27 10:34:25 +02002023 sc_shutw(sc);
2024 sc_shutr(sc);
2025 sc_ic(sc)->flags |= CF_READ_NULL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002026 /* fall through */
2027
2028 case SPOE_APPCTX_ST_END:
Christopher Fauleta73e59b2016-12-09 17:30:18 +01002029 return;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002030 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01002031 out:
Christopher Faulet24289f22017-09-25 14:48:02 +02002032 if (stopping)
2033 spoe_wakeup_appctx(appctx);
2034
Christopher Faulet42bfa462017-01-04 14:14:19 +01002035 if (SPOE_APPCTX(appctx)->task->expire != TICK_ETERNITY)
2036 task_queue(SPOE_APPCTX(appctx)->task);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002037}
2038
2039struct applet spoe_applet = {
2040 .obj_type = OBJ_TYPE_APPLET,
2041 .name = "<SPOE>", /* used for logging */
Christopher Faulet8ef75252017-02-20 22:56:03 +01002042 .fct = spoe_handle_appctx,
Christopher Faulet69ebc302022-05-12 15:28:51 +02002043 .init = spoe_init_appctx,
Christopher Faulet8ef75252017-02-20 22:56:03 +01002044 .release = spoe_release_appctx,
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002045};
2046
2047/* Create a SPOE applet. On success, the created applet is returned, else
2048 * NULL. */
2049static struct appctx *
Christopher Faulet8ef75252017-02-20 22:56:03 +01002050spoe_create_appctx(struct spoe_config *conf)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002051{
Christopher Faulet69ebc302022-05-12 15:28:51 +02002052 struct spoe_appctx *spoe_appctx;
2053 struct appctx *appctx;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002054
Christopher Faulet69ebc302022-05-12 15:28:51 +02002055 spoe_appctx = pool_zalloc(pool_head_spoe_appctx);
2056 if (spoe_appctx == NULL)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002057 goto out_error;
2058
Christopher Faulet69ebc302022-05-12 15:28:51 +02002059 spoe_appctx->agent = conf->agent;
2060 spoe_appctx->version = 0;
2061 spoe_appctx->max_frame_size = conf->agent->max_frame_size;
2062 spoe_appctx->flags = 0;
2063 spoe_appctx->status_code = SPOE_FRM_ERR_NONE;
2064 spoe_appctx->buffer = BUF_NULL;
2065 spoe_appctx->cur_fpa = 0;
2066 LIST_INIT(&spoe_appctx->list);
2067 LIST_INIT(&spoe_appctx->waiting_queue);
Christopher Faulet42bfa462017-01-04 14:14:19 +01002068
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002069
Christopher Faulet6095d572022-05-16 17:09:48 +02002070 if ((appctx = appctx_new_here(&spoe_applet, NULL)) == NULL)
Christopher Faulet69ebc302022-05-12 15:28:51 +02002071 goto out_free_spoe_appctx;
Christopher Faulet13a35e52021-12-20 15:34:16 +01002072
Christopher Faulet69ebc302022-05-12 15:28:51 +02002073 appctx->svcctx = spoe_appctx;
2074 if (appctx_init(appctx) == -1)
2075 goto out_free_appctx;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002076
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002077 appctx_wakeup(appctx);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002078 return appctx;
2079
2080 /* Error unrolling */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002081 out_free_appctx:
Christopher Faulet69ebc302022-05-12 15:28:51 +02002082 appctx_free_on_early_error(appctx);
2083 out_free_spoe_appctx:
2084 pool_free(pool_head_spoe_appctx, spoe_appctx);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002085 out_error:
2086 return NULL;
2087}
2088
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002089static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01002090spoe_queue_context(struct spoe_context *ctx)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002091{
2092 struct spoe_config *conf = FLT_CONF(ctx->filter);
2093 struct spoe_agent *agent = conf->agent;
2094 struct appctx *appctx;
Christopher Faulet42bfa462017-01-04 14:14:19 +01002095 struct spoe_appctx *spoe_appctx;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002096
Christopher Fauleta1cda022016-12-21 08:58:06 +01002097 /* Check if we need to create a new SPOE applet or not. */
Christopher Fauletb077cdc2018-01-24 16:37:57 +01002098 if (!eb_is_empty(&agent->rt[tid].idle_applets) &&
Christopher Fauleteccfa612020-06-22 15:32:14 +02002099 (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 +01002100 goto end;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002101
2102 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Fauleta1cda022016-12-21 08:58:06 +01002103 " - try to create new SPOE appctx\n",
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002104 (int)now.tv_sec, (int)now.tv_usec, agent->id, __FUNCTION__,
2105 ctx->strm);
2106
Christopher Fauleta1cda022016-12-21 08:58:06 +01002107 /* Do not try to create a new applet if there is no server up for the
2108 * agent's backend. */
2109 if (!agent->b.be->srv_act && !agent->b.be->srv_bck) {
2110 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2111 " - cannot create SPOE appctx: no server up\n",
2112 (int)now.tv_sec, (int)now.tv_usec, agent->id,
2113 __FUNCTION__, ctx->strm);
2114 goto end;
2115 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002116
Christopher Fauleta1cda022016-12-21 08:58:06 +01002117 /* Do not try to create a new applet if we have reached the maximum of
2118 * connection per seconds */
Christopher Faulet48026722016-11-16 15:01:12 +01002119 if (agent->cps_max > 0) {
Christopher Faulet24289f22017-09-25 14:48:02 +02002120 if (!freq_ctr_remain(&agent->rt[tid].conn_per_sec, agent->cps_max, 0)) {
Christopher Fauleta1cda022016-12-21 08:58:06 +01002121 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2122 " - cannot create SPOE appctx: max CPS reached\n",
2123 (int)now.tv_sec, (int)now.tv_usec, agent->id,
2124 __FUNCTION__, ctx->strm);
2125 goto end;
2126 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002127 }
2128
Christopher Faulet8ef75252017-02-20 22:56:03 +01002129 appctx = spoe_create_appctx(conf);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002130 if (appctx == NULL) {
2131 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2132 " - failed to create SPOE appctx\n",
2133 (int)now.tv_sec, (int)now.tv_usec, agent->id,
2134 __FUNCTION__, ctx->strm);
Christopher Faulet3b8e3492018-03-26 17:20:58 +02002135 send_log(&conf->agent_fe, LOG_EMERG,
Christopher Faulet72bcc472017-01-04 16:39:41 +01002136 "SPOE: [%s] failed to create SPOE applet\n",
2137 agent->id);
2138
Christopher Fauleta1cda022016-12-21 08:58:06 +01002139 goto end;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002140 }
2141
Christopher Fauleta1cda022016-12-21 08:58:06 +01002142 /* Increase the per-process number of cumulated connections */
2143 if (agent->cps_max > 0)
Christopher Faulet24289f22017-09-25 14:48:02 +02002144 update_freq_ctr(&agent->rt[tid].conn_per_sec, 1);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002145
Christopher Fauleta1cda022016-12-21 08:58:06 +01002146 end:
2147 /* The only reason to return an error is when there is no applet */
Christopher Faulet24289f22017-09-25 14:48:02 +02002148 if (LIST_ISEMPTY(&agent->rt[tid].applets)) {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002149 ctx->status_code = SPOE_CTX_ERR_RES;
2150 return -1;
2151 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002152
Christopher Faulet3e86cec2019-04-10 14:02:12 +02002153 /* Add the SPOE context in the sending queue if the stream has no applet
2154 * already assigned and wakeup all idle applets. Otherwise, don't queue
2155 * it. */
Willy Tarreau4781b152021-04-06 13:53:36 +02002156 _HA_ATOMIC_INC(&agent->counters.nb_sending);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002157 spoe_update_stat_time(&ctx->stats.tv_request, &ctx->stats.t_request);
2158 ctx->stats.tv_queue = now;
Christopher Faulet3e86cec2019-04-10 14:02:12 +02002159 if (ctx->spoe_appctx)
2160 return 1;
Willy Tarreau2b718102021-04-21 07:32:39 +02002161 LIST_APPEND(&agent->rt[tid].sending_queue, &ctx->list);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002162
2163 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Faulet8ef75252017-02-20 22:56:03 +01002164 " - Add stream in sending queue"
Christopher Faulet68db0232018-04-06 11:34:12 +02002165 " - applets=%u - idles=%u - processing=%u\n",
Christopher Fauleta1cda022016-12-21 08:58:06 +01002166 (int)now.tv_sec, (int)now.tv_usec, agent->id, __FUNCTION__,
Christopher Faulet68db0232018-04-06 11:34:12 +02002167 ctx->strm, agent->counters.applets, agent->counters.idles,
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002168 agent->rt[tid].processing);
Christopher Fauletf7a30922016-11-10 15:04:51 +01002169
Christopher Fauletb077cdc2018-01-24 16:37:57 +01002170 /* Finally try to wakeup an IDLE applet. */
2171 if (!eb_is_empty(&agent->rt[tid].idle_applets)) {
2172 struct eb32_node *node;
2173
2174 node = eb32_first(&agent->rt[tid].idle_applets);
2175 spoe_appctx = eb32_entry(node, struct spoe_appctx, node);
2176 if (node && spoe_appctx) {
2177 eb32_delete(&spoe_appctx->node);
2178 spoe_appctx->node.key++;
2179 eb32_insert(&agent->rt[tid].idle_applets, &spoe_appctx->node);
2180 spoe_wakeup_appctx(spoe_appctx->owner);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002181 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002182 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01002183 return 1;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002184}
2185
2186/***************************************************************************
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002187 * Functions that encode SPOE messages
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002188 **************************************************************************/
Christopher Faulet10e37672017-09-21 16:38:22 +02002189/* Encode a SPOE message. Info in <ctx->frag_ctx>, if any, are used to handle
2190 * fragmented_content. If the next message can be processed, it returns 0. If
2191 * the message is too big, it returns -1.*/
2192static int
2193spoe_encode_message(struct stream *s, struct spoe_context *ctx,
2194 struct spoe_message *msg, int dir,
2195 char **buf, char *end)
2196{
2197 struct sample *smp;
2198 struct spoe_arg *arg;
2199 int ret;
2200
2201 if (msg->cond) {
2202 ret = acl_exec_cond(msg->cond, s->be, s->sess, s, dir|SMP_OPT_FINAL);
2203 ret = acl_pass(ret);
2204 if (msg->cond->pol == ACL_COND_UNLESS)
2205 ret = !ret;
2206
2207 /* the rule does not match */
2208 if (!ret)
2209 goto next;
2210 }
2211
2212 /* Resume encoding of a SPOE argument */
2213 if (ctx->frag_ctx.curarg != NULL) {
2214 arg = ctx->frag_ctx.curarg;
2215 goto encode_argument;
2216 }
2217
2218 if (ctx->frag_ctx.curoff != UINT_MAX)
2219 goto encode_msg_payload;
2220
2221 /* Check if there is enough space for the message name and the
2222 * number of arguments. It implies <msg->id_len> is encoded on 2
2223 * bytes, at most (< 2288). */
2224 if (*buf + 2 + msg->id_len + 1 > end)
2225 goto too_big;
2226
2227 /* Encode the message name */
2228 if (spoe_encode_buffer(msg->id, msg->id_len, buf, end) == -1)
2229 goto too_big;
2230
2231 /* Set the number of arguments for this message */
2232 **buf = msg->nargs;
2233 (*buf)++;
2234
2235 ctx->frag_ctx.curoff = 0;
2236 encode_msg_payload:
2237
2238 /* Loop on arguments */
2239 list_for_each_entry(arg, &msg->args, list) {
2240 ctx->frag_ctx.curarg = arg;
2241 ctx->frag_ctx.curoff = UINT_MAX;
Kevin Zhuf7f54282019-04-26 14:00:01 +08002242 ctx->frag_ctx.curlen = 0;
Christopher Faulet10e37672017-09-21 16:38:22 +02002243
2244 encode_argument:
2245 if (ctx->frag_ctx.curoff != UINT_MAX)
2246 goto encode_arg_value;
2247
Joseph Herlantf7f60312018-11-15 13:46:49 -08002248 /* Encode the argument name as a string. It can by NULL */
Christopher Faulet10e37672017-09-21 16:38:22 +02002249 if (spoe_encode_buffer(arg->name, arg->name_len, buf, end) == -1)
2250 goto too_big;
2251
2252 ctx->frag_ctx.curoff = 0;
2253 encode_arg_value:
2254
Joseph Herlantf7f60312018-11-15 13:46:49 -08002255 /* Fetch the argument value */
Christopher Faulet10e37672017-09-21 16:38:22 +02002256 smp = sample_process(s->be, s->sess, s, dir|SMP_OPT_FINAL, arg->expr, NULL);
Christopher Faulet3b1d0042019-05-06 09:53:10 +02002257 if (smp) {
2258 smp->ctx.a[0] = &ctx->frag_ctx.curlen;
2259 smp->ctx.a[1] = &ctx->frag_ctx.curoff;
2260 }
Christopher Faulet85db3212019-04-26 14:30:15 +02002261 ret = spoe_encode_data(smp, buf, end);
Christopher Faulet10e37672017-09-21 16:38:22 +02002262 if (ret == -1 || ctx->frag_ctx.curoff)
2263 goto too_big;
2264 }
2265
2266 next:
2267 return 0;
2268
2269 too_big:
2270 return -1;
2271}
2272
Christopher Fauletc718b822017-09-21 16:50:56 +02002273/* Encode list of SPOE messages. Info in <ctx->frag_ctx>, if any, are used to
2274 * handle fragmented content. On success it returns 1. If an error occurred, -1
2275 * is returned. If nothing has been encoded, it returns 0 (this is only possible
2276 * for unfragmented payload). */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002277static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01002278spoe_encode_messages(struct stream *s, struct spoe_context *ctx,
Christopher Fauletc718b822017-09-21 16:50:56 +02002279 struct list *messages, int dir, int type)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002280{
Christopher Fauleta1cda022016-12-21 08:58:06 +01002281 struct spoe_config *conf = FLT_CONF(ctx->filter);
2282 struct spoe_agent *agent = conf->agent;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002283 struct spoe_message *msg;
Christopher Faulet8ef75252017-02-20 22:56:03 +01002284 char *p, *end;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002285
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002286 p = b_head(&ctx->buffer);
Christopher Faulet24289f22017-09-25 14:48:02 +02002287 end = p + agent->rt[tid].frame_size - FRAME_HDR_SIZE;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002288
Christopher Fauletc718b822017-09-21 16:50:56 +02002289 if (type == SPOE_MSGS_BY_EVENT) { /* Loop on messages by event */
2290 /* Resume encoding of a SPOE message */
2291 if (ctx->frag_ctx.curmsg != NULL) {
2292 msg = ctx->frag_ctx.curmsg;
2293 goto encode_evt_message;
2294 }
2295
2296 list_for_each_entry(msg, messages, by_evt) {
2297 ctx->frag_ctx.curmsg = msg;
2298 ctx->frag_ctx.curarg = NULL;
2299 ctx->frag_ctx.curoff = UINT_MAX;
2300
2301 encode_evt_message:
2302 if (spoe_encode_message(s, ctx, msg, dir, &p, end) == -1)
2303 goto too_big;
2304 }
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002305 }
Christopher Fauletc718b822017-09-21 16:50:56 +02002306 else if (type == SPOE_MSGS_BY_GROUP) { /* Loop on messages by group */
2307 /* Resume encoding of a SPOE message */
2308 if (ctx->frag_ctx.curmsg != NULL) {
2309 msg = ctx->frag_ctx.curmsg;
2310 goto encode_grp_message;
2311 }
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002312
Christopher Fauletc718b822017-09-21 16:50:56 +02002313 list_for_each_entry(msg, messages, by_grp) {
2314 ctx->frag_ctx.curmsg = msg;
2315 ctx->frag_ctx.curarg = NULL;
2316 ctx->frag_ctx.curoff = UINT_MAX;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002317
Christopher Fauletc718b822017-09-21 16:50:56 +02002318 encode_grp_message:
2319 if (spoe_encode_message(s, ctx, msg, dir, &p, end) == -1)
2320 goto too_big;
2321 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002322 }
Christopher Fauletc718b822017-09-21 16:50:56 +02002323 else
2324 goto skip;
2325
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002326
Christopher Faulet57583e42017-09-04 15:41:09 +02002327 /* nothing has been encoded for an unfragmented payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002328 if (!(ctx->flags & SPOE_CTX_FL_FRAGMENTED) && p == b_head(&ctx->buffer))
Christopher Faulet57583e42017-09-04 15:41:09 +02002329 goto skip;
2330
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002331 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Faulet8ef75252017-02-20 22:56:03 +01002332 " - encode %s messages - spoe_appctx=%p"
2333 "- max_size=%u - encoded=%ld\n",
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002334 (int)now.tv_sec, (int)now.tv_usec,
2335 agent->id, __FUNCTION__, s,
2336 ((ctx->flags & SPOE_CTX_FL_FRAGMENTED) ? "last fragment of" : "unfragmented"),
Christopher Fauletfce747b2018-01-24 15:59:32 +01002337 ctx->spoe_appctx, (agent->rt[tid].frame_size - FRAME_HDR_SIZE),
Christopher Faulet45073512018-07-20 10:16:29 +02002338 p - b_head(&ctx->buffer));
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002339
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002340 b_set_data(&ctx->buffer, p - b_head(&ctx->buffer));
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002341 ctx->frag_ctx.curmsg = NULL;
2342 ctx->frag_ctx.curarg = NULL;
2343 ctx->frag_ctx.curoff = 0;
2344 ctx->frag_ctx.flags = SPOE_FRM_FL_FIN;
Christopher Faulet57583e42017-09-04 15:41:09 +02002345
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002346 return 1;
2347
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002348 too_big:
Christopher Fauleta715ea82019-04-10 14:21:51 +02002349 /* Return an error if fragmentation is unsupported or if nothing has
2350 * been encoded because its too big and not splittable. */
2351 if (!(agent->flags & SPOE_FL_SND_FRAGMENTATION) || p == b_head(&ctx->buffer)) {
Christopher Fauletcecd8522017-02-24 22:11:21 +01002352 ctx->status_code = SPOE_CTX_ERR_TOO_BIG;
2353 return -1;
2354 }
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002355
2356 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Faulet8ef75252017-02-20 22:56:03 +01002357 " - encode fragmented messages - spoe_appctx=%p"
2358 " - curmsg=%p - curarg=%p - curoff=%u"
2359 " - max_size=%u - encoded=%ld\n",
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002360 (int)now.tv_sec, (int)now.tv_usec,
Christopher Fauletfce747b2018-01-24 15:59:32 +01002361 agent->id, __FUNCTION__, s, ctx->spoe_appctx,
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002362 ctx->frag_ctx.curmsg, ctx->frag_ctx.curarg, ctx->frag_ctx.curoff,
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002363 (agent->rt[tid].frame_size - FRAME_HDR_SIZE), p - b_head(&ctx->buffer));
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002364
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002365 b_set_data(&ctx->buffer, p - b_head(&ctx->buffer));
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002366 ctx->flags |= SPOE_CTX_FL_FRAGMENTED;
2367 ctx->frag_ctx.flags &= ~SPOE_FRM_FL_FIN;
2368 return 1;
Christopher Faulet57583e42017-09-04 15:41:09 +02002369
2370 skip:
2371 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2372 " - skip the frame because nothing has been encoded\n",
2373 (int)now.tv_sec, (int)now.tv_usec,
2374 agent->id, __FUNCTION__, s);
2375 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002376}
2377
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002378
2379/***************************************************************************
2380 * Functions that handle SPOE actions
2381 **************************************************************************/
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002382/* Helper function to set a variable */
2383static void
Christopher Faulet8ef75252017-02-20 22:56:03 +01002384spoe_set_var(struct spoe_context *ctx, char *scope, char *name, int len,
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002385 struct sample *smp)
2386{
2387 struct spoe_config *conf = FLT_CONF(ctx->filter);
2388 struct spoe_agent *agent = conf->agent;
2389 char varname[64];
2390
2391 memset(varname, 0, sizeof(varname));
2392 len = snprintf(varname, sizeof(varname), "%s.%s.%.*s",
2393 scope, agent->var_pfx, len, name);
Etienne Carriereaec89892017-12-14 09:36:40 +00002394 if (agent->flags & SPOE_FL_FORCE_SET_VAR)
2395 vars_set_by_name(varname, len, smp);
2396 else
2397 vars_set_by_name_ifexist(varname, len, smp);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002398}
2399
2400/* Helper function to unset a variable */
2401static void
Christopher Faulet8ef75252017-02-20 22:56:03 +01002402spoe_unset_var(struct spoe_context *ctx, char *scope, char *name, int len,
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002403 struct sample *smp)
2404{
2405 struct spoe_config *conf = FLT_CONF(ctx->filter);
2406 struct spoe_agent *agent = conf->agent;
2407 char varname[64];
2408
2409 memset(varname, 0, sizeof(varname));
2410 len = snprintf(varname, sizeof(varname), "%s.%s.%.*s",
2411 scope, agent->var_pfx, len, name);
2412 vars_unset_by_name_ifexist(varname, len, smp);
2413}
2414
2415
Christopher Faulet8ef75252017-02-20 22:56:03 +01002416static inline int
2417spoe_decode_action_set_var(struct stream *s, struct spoe_context *ctx,
2418 char **buf, char *end, int dir)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002419{
Christopher Faulet8ef75252017-02-20 22:56:03 +01002420 char *str, *scope, *p = *buf;
2421 struct sample smp;
2422 uint64_t sz;
2423 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002424
Christopher Faulet8ef75252017-02-20 22:56:03 +01002425 if (p + 2 >= end)
2426 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002427
Christopher Faulet8ef75252017-02-20 22:56:03 +01002428 /* SET-VAR requires 3 arguments */
2429 if (*p++ != 3)
2430 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002431
Christopher Faulet8ef75252017-02-20 22:56:03 +01002432 switch (*p++) {
2433 case SPOE_SCOPE_PROC: scope = "proc"; break;
2434 case SPOE_SCOPE_SESS: scope = "sess"; break;
2435 case SPOE_SCOPE_TXN : scope = "txn"; break;
2436 case SPOE_SCOPE_REQ : scope = "req"; break;
2437 case SPOE_SCOPE_RES : scope = "res"; break;
2438 default: goto skip;
2439 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002440
Christopher Faulet8ef75252017-02-20 22:56:03 +01002441 if (spoe_decode_buffer(&p, end, &str, &sz) == -1)
2442 goto skip;
2443 memset(&smp, 0, sizeof(smp));
2444 smp_set_owner(&smp, s->be, s->sess, s, dir|SMP_OPT_FINAL);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002445
Christopher Faulet8ef75252017-02-20 22:56:03 +01002446 if (spoe_decode_data(&p, end, &smp) == -1)
2447 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002448
Christopher Faulet8ef75252017-02-20 22:56:03 +01002449 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2450 " - set-var '%s.%s.%.*s'\n",
2451 (int)now.tv_sec, (int)now.tv_usec,
2452 ((struct spoe_config *)FLT_CONF(ctx->filter))->agent->id,
2453 __FUNCTION__, s, scope,
2454 ((struct spoe_config *)FLT_CONF(ctx->filter))->agent->var_pfx,
2455 (int)sz, str);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002456
Christopher Faulet2469eba2020-10-15 16:08:30 +02002457 if (smp.data.type == SMP_T_ANY)
2458 spoe_unset_var(ctx, scope, str, sz, &smp);
2459 else
2460 spoe_set_var(ctx, scope, str, sz, &smp);
Christopher Fauletb5cff602016-11-24 14:53:22 +01002461
Christopher Faulet8ef75252017-02-20 22:56:03 +01002462 ret = (p - *buf);
2463 *buf = p;
2464 return ret;
2465 skip:
2466 return 0;
2467}
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002468
Christopher Faulet8ef75252017-02-20 22:56:03 +01002469static inline int
2470spoe_decode_action_unset_var(struct stream *s, struct spoe_context *ctx,
2471 char **buf, char *end, int dir)
2472{
2473 char *str, *scope, *p = *buf;
2474 struct sample smp;
2475 uint64_t sz;
2476 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002477
Christopher Faulet8ef75252017-02-20 22:56:03 +01002478 if (p + 2 >= end)
2479 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002480
Christopher Faulet8ef75252017-02-20 22:56:03 +01002481 /* UNSET-VAR requires 2 arguments */
2482 if (*p++ != 2)
2483 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002484
Christopher Faulet8ef75252017-02-20 22:56:03 +01002485 switch (*p++) {
2486 case SPOE_SCOPE_PROC: scope = "proc"; break;
2487 case SPOE_SCOPE_SESS: scope = "sess"; break;
2488 case SPOE_SCOPE_TXN : scope = "txn"; break;
2489 case SPOE_SCOPE_REQ : scope = "req"; break;
2490 case SPOE_SCOPE_RES : scope = "res"; break;
2491 default: goto skip;
2492 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002493
Christopher Faulet8ef75252017-02-20 22:56:03 +01002494 if (spoe_decode_buffer(&p, end, &str, &sz) == -1)
2495 goto skip;
2496 memset(&smp, 0, sizeof(smp));
2497 smp_set_owner(&smp, s->be, s->sess, s, dir|SMP_OPT_FINAL);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002498
Christopher Faulet8ef75252017-02-20 22:56:03 +01002499 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2500 " - unset-var '%s.%s.%.*s'\n",
2501 (int)now.tv_sec, (int)now.tv_usec,
2502 ((struct spoe_config *)FLT_CONF(ctx->filter))->agent->id,
2503 __FUNCTION__, s, scope,
2504 ((struct spoe_config *)FLT_CONF(ctx->filter))->agent->var_pfx,
2505 (int)sz, str);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002506
Christopher Faulet8ef75252017-02-20 22:56:03 +01002507 spoe_unset_var(ctx, scope, str, sz, &smp);
2508
2509 ret = (p - *buf);
2510 *buf = p;
2511 return ret;
2512 skip:
2513 return 0;
2514}
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002515
Christopher Faulet8ef75252017-02-20 22:56:03 +01002516/* Process SPOE actions for a specific event. It returns 1 on success. If an
2517 * error occurred, 0 is returned. */
2518static int
Christopher Faulet58d03682017-09-21 16:57:24 +02002519spoe_process_actions(struct stream *s, struct spoe_context *ctx, int dir)
Christopher Faulet8ef75252017-02-20 22:56:03 +01002520{
2521 char *p, *end;
2522 int ret;
2523
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002524 p = b_head(&ctx->buffer);
2525 end = p + b_data(&ctx->buffer);
Christopher Faulet8ef75252017-02-20 22:56:03 +01002526
2527 while (p < end) {
2528 enum spoe_action_type type;
2529
2530 type = *p++;
2531 switch (type) {
2532 case SPOE_ACT_T_SET_VAR:
2533 ret = spoe_decode_action_set_var(s, ctx, &p, end, dir);
2534 if (!ret)
2535 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002536 break;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002537
Christopher Faulet8ef75252017-02-20 22:56:03 +01002538 case SPOE_ACT_T_UNSET_VAR:
2539 ret = spoe_decode_action_unset_var(s, ctx, &p, end, dir);
2540 if (!ret)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002541 goto skip;
Christopher Faulet8ef75252017-02-20 22:56:03 +01002542 break;
2543
2544 default:
2545 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002546 }
2547 }
2548
2549 return 1;
2550 skip:
2551 return 0;
2552}
2553
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002554/***************************************************************************
2555 * Functions that process SPOE events
2556 **************************************************************************/
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002557static void
2558spoe_update_stats(struct stream *s, struct spoe_agent *agent,
2559 struct spoe_context *ctx, int dir)
2560{
2561 if (!tv_iszero(&ctx->stats.tv_start)) {
2562 spoe_update_stat_time(&ctx->stats.tv_start, &ctx->stats.t_process);
2563 ctx->stats.t_total += ctx->stats.t_process;
2564 tv_zero(&ctx->stats.tv_request);
2565 tv_zero(&ctx->stats.tv_queue);
2566 tv_zero(&ctx->stats.tv_wait);
2567 tv_zero(&ctx->stats.tv_response);
2568 }
2569
2570 if (agent->var_t_process) {
2571 struct sample smp;
2572
2573 memset(&smp, 0, sizeof(smp));
2574 smp_set_owner(&smp, s->be, s->sess, s, dir|SMP_OPT_FINAL);
2575 smp.data.u.sint = ctx->stats.t_process;
2576 smp.data.type = SMP_T_SINT;
2577
2578 spoe_set_var(ctx, "txn", agent->var_t_process,
2579 strlen(agent->var_t_process), &smp);
2580 }
2581
2582 if (agent->var_t_total) {
2583 struct sample smp;
2584
2585 memset(&smp, 0, sizeof(smp));
2586 smp_set_owner(&smp, s->be, s->sess, s, dir|SMP_OPT_FINAL);
2587 smp.data.u.sint = ctx->stats.t_total;
2588 smp.data.type = SMP_T_SINT;
2589
2590 spoe_set_var(ctx, "txn", agent->var_t_total,
2591 strlen(agent->var_t_total), &smp);
2592 }
2593}
2594
2595static void
2596spoe_handle_processing_error(struct stream *s, struct spoe_agent *agent,
2597 struct spoe_context *ctx, int dir)
2598{
2599 if (agent->eps_max > 0)
2600 update_freq_ctr(&agent->rt[tid].err_per_sec, 1);
2601
2602 if (agent->var_on_error) {
2603 struct sample smp;
2604
2605 memset(&smp, 0, sizeof(smp));
2606 smp_set_owner(&smp, s->be, s->sess, s, dir|SMP_OPT_FINAL);
2607 smp.data.u.sint = ctx->status_code;
2608 smp.data.type = SMP_T_BOOL;
2609
2610 spoe_set_var(ctx, "txn", agent->var_on_error,
2611 strlen(agent->var_on_error), &smp);
2612 }
2613
2614 ctx->state = ((agent->flags & SPOE_FL_CONT_ON_ERR)
2615 ? SPOE_CTX_ST_READY
2616 : SPOE_CTX_ST_NONE);
2617}
2618
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002619static inline int
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002620spoe_start_processing(struct spoe_agent *agent, struct spoe_context *ctx, int dir)
Christopher Fauleta1cda022016-12-21 08:58:06 +01002621{
Christopher Fauleta1cda022016-12-21 08:58:06 +01002622 /* If a process is already started for this SPOE context, retry
2623 * later. */
2624 if (ctx->flags & SPOE_CTX_FL_PROCESS)
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002625 return 0;
Christopher Fauleta1cda022016-12-21 08:58:06 +01002626
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002627 agent->rt[tid].processing++;
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002628 ctx->stats.tv_start = now;
2629 ctx->stats.tv_request = now;
2630 ctx->stats.t_request = -1;
2631 ctx->stats.t_queue = -1;
2632 ctx->stats.t_waiting = -1;
2633 ctx->stats.t_response = -1;
2634 ctx->stats.t_process = -1;
2635
2636 ctx->status_code = 0;
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002637
Christopher Fauleta1cda022016-12-21 08:58:06 +01002638 /* Set the right flag to prevent request and response processing
2639 * in same time. */
2640 ctx->flags |= ((dir == SMP_OPT_DIR_REQ)
2641 ? SPOE_CTX_FL_REQ_PROCESS
2642 : SPOE_CTX_FL_RSP_PROCESS);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002643 return 1;
Christopher Fauleta1cda022016-12-21 08:58:06 +01002644}
2645
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002646static inline void
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002647spoe_stop_processing(struct spoe_agent *agent, struct spoe_context *ctx)
Christopher Fauleta1cda022016-12-21 08:58:06 +01002648{
Christopher Fauletfce747b2018-01-24 15:59:32 +01002649 struct spoe_appctx *sa = ctx->spoe_appctx;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002650
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002651 if (!(ctx->flags & SPOE_CTX_FL_PROCESS))
2652 return;
Willy Tarreau4781b152021-04-06 13:53:36 +02002653 _HA_ATOMIC_INC(&agent->counters.nb_processed);
Christopher Faulet879dca92018-03-23 11:53:24 +01002654 if (sa) {
2655 if (sa->frag_ctx.ctx == ctx) {
2656 sa->frag_ctx.ctx = NULL;
2657 spoe_wakeup_appctx(sa->owner);
2658 }
2659 else
2660 sa->cur_fpa--;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002661 }
2662
Christopher Fauleta1cda022016-12-21 08:58:06 +01002663 /* Reset the flag to allow next processing */
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002664 agent->rt[tid].processing--;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002665 ctx->flags &= ~(SPOE_CTX_FL_PROCESS|SPOE_CTX_FL_FRAGMENTED);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002666
2667 /* Reset processing timer */
2668 ctx->process_exp = TICK_ETERNITY;
2669
Christopher Faulet8ef75252017-02-20 22:56:03 +01002670 spoe_release_buffer(&ctx->buffer, &ctx->buffer_wait);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002671
Christopher Fauletfce747b2018-01-24 15:59:32 +01002672 ctx->spoe_appctx = NULL;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002673 ctx->frag_ctx.curmsg = NULL;
2674 ctx->frag_ctx.curarg = NULL;
2675 ctx->frag_ctx.curoff = 0;
2676 ctx->frag_ctx.flags = 0;
2677
Christopher Fauleta1cda022016-12-21 08:58:06 +01002678 if (!LIST_ISEMPTY(&ctx->list)) {
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002679 if (ctx->state == SPOE_CTX_ST_SENDING_MSGS)
Willy Tarreau4781b152021-04-06 13:53:36 +02002680 _HA_ATOMIC_DEC(&agent->counters.nb_sending);
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002681 else
Willy Tarreau4781b152021-04-06 13:53:36 +02002682 _HA_ATOMIC_DEC(&agent->counters.nb_waiting);
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002683
Willy Tarreau2b718102021-04-21 07:32:39 +02002684 LIST_DELETE(&ctx->list);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002685 LIST_INIT(&ctx->list);
2686 }
Christopher Faulet344c4ab2017-09-22 10:20:13 +02002687}
2688
Christopher Faulet58d03682017-09-21 16:57:24 +02002689/* Process a list of SPOE messages. First, this functions will process messages
2690 * and send them to an agent in a NOTIFY frame. Then, it will wait a ACK frame
2691 * to process corresponding actions. During all the processing, it returns 0
2692 * and it returns 1 when the processing is finished. If an error occurred, -1
2693 * is returned. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002694static int
Christopher Faulet58d03682017-09-21 16:57:24 +02002695spoe_process_messages(struct stream *s, struct spoe_context *ctx,
2696 struct list *messages, int dir, int type)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002697{
Christopher Fauletf7a30922016-11-10 15:04:51 +01002698 struct spoe_config *conf = FLT_CONF(ctx->filter);
2699 struct spoe_agent *agent = conf->agent;
Christopher Faulet58d03682017-09-21 16:57:24 +02002700 int ret = 1;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002701
2702 if (ctx->state == SPOE_CTX_ST_ERROR)
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002703 goto end;
Christopher Fauletf7a30922016-11-10 15:04:51 +01002704
2705 if (tick_is_expired(ctx->process_exp, now_ms) && ctx->state != SPOE_CTX_ST_DONE) {
2706 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Faulet58d03682017-09-21 16:57:24 +02002707 " - failed to process messages: timeout\n",
Christopher Fauletf7a30922016-11-10 15:04:51 +01002708 (int)now.tv_sec, (int)now.tv_usec,
Christopher Faulet58d03682017-09-21 16:57:24 +02002709 agent->id, __FUNCTION__, s);
Christopher Fauletb067b062017-01-04 16:39:11 +01002710 ctx->status_code = SPOE_CTX_ERR_TOUT;
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002711 goto end;
Christopher Fauletf7a30922016-11-10 15:04:51 +01002712 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002713
2714 if (ctx->state == SPOE_CTX_ST_READY) {
Christopher Fauleta1cda022016-12-21 08:58:06 +01002715 if (agent->eps_max > 0) {
Christopher Faulet24289f22017-09-25 14:48:02 +02002716 if (!freq_ctr_remain(&agent->rt[tid].err_per_sec, agent->eps_max, 0)) {
Christopher Fauleta1cda022016-12-21 08:58:06 +01002717 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Faulet58d03682017-09-21 16:57:24 +02002718 " - skip processing of messages: max EPS reached\n",
Christopher Fauleta1cda022016-12-21 08:58:06 +01002719 (int)now.tv_sec, (int)now.tv_usec,
Christopher Faulet58d03682017-09-21 16:57:24 +02002720 agent->id, __FUNCTION__, s);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002721 goto skip;
2722 }
2723 }
2724
Christopher Fauletf7a30922016-11-10 15:04:51 +01002725 if (!tick_isset(ctx->process_exp)) {
2726 ctx->process_exp = tick_add_ifset(now_ms, agent->timeout.processing);
2727 s->task->expire = tick_first((tick_is_expired(s->task->expire, now_ms) ? 0 : s->task->expire),
2728 ctx->process_exp);
2729 }
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002730 ret = spoe_start_processing(agent, ctx, dir);
Christopher Fauletb067b062017-01-04 16:39:11 +01002731 if (!ret)
2732 goto out;
Christopher Fauleta1cda022016-12-21 08:58:06 +01002733
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002734 ctx->state = SPOE_CTX_ST_ENCODING_MSGS;
Christopher Fauleta1cda022016-12-21 08:58:06 +01002735 /* fall through */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002736 }
2737
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002738 if (ctx->state == SPOE_CTX_ST_ENCODING_MSGS) {
Christopher Faulet63263e52019-04-10 14:47:18 +02002739 if (tv_iszero(&ctx->stats.tv_request))
2740 ctx->stats.tv_request = now;
Christopher Faulet8ef75252017-02-20 22:56:03 +01002741 if (!spoe_acquire_buffer(&ctx->buffer, &ctx->buffer_wait))
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002742 goto out;
Christopher Faulet58d03682017-09-21 16:57:24 +02002743 ret = spoe_encode_messages(s, ctx, messages, dir, type);
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002744 if (ret < 0)
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002745 goto end;
Christopher Faulet57583e42017-09-04 15:41:09 +02002746 if (!ret)
2747 goto skip;
Christopher Faulet333694d2018-01-12 10:45:47 +01002748 if (spoe_queue_context(ctx) < 0)
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002749 goto end;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002750 ctx->state = SPOE_CTX_ST_SENDING_MSGS;
2751 }
2752
2753 if (ctx->state == SPOE_CTX_ST_SENDING_MSGS) {
Christopher Fauletfce747b2018-01-24 15:59:32 +01002754 if (ctx->spoe_appctx)
2755 spoe_wakeup_appctx(ctx->spoe_appctx->owner);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002756 ret = 0;
2757 goto out;
2758 }
2759
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002760 if (ctx->state == SPOE_CTX_ST_WAITING_ACK) {
2761 ret = 0;
2762 goto out;
2763 }
2764
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002765 if (ctx->state == SPOE_CTX_ST_DONE) {
Christopher Faulet58d03682017-09-21 16:57:24 +02002766 spoe_process_actions(s, ctx, dir);
Christopher Faulet8ef75252017-02-20 22:56:03 +01002767 ret = 1;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002768 ctx->frame_id++;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002769 ctx->state = SPOE_CTX_ST_READY;
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002770 spoe_update_stat_time(&ctx->stats.tv_response, &ctx->stats.t_response);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002771 goto end;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002772 }
2773
2774 out:
2775 return ret;
2776
Christopher Fauleta1cda022016-12-21 08:58:06 +01002777 skip:
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002778 tv_zero(&ctx->stats.tv_start);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002779 ctx->state = SPOE_CTX_ST_READY;
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002780 spoe_stop_processing(agent, ctx);
2781 return 1;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002782
Christopher Fauleta1cda022016-12-21 08:58:06 +01002783 end:
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002784 spoe_update_stats(s, agent, ctx, dir);
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002785 spoe_stop_processing(agent, ctx);
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002786 if (ctx->status_code) {
Willy Tarreau4781b152021-04-06 13:53:36 +02002787 _HA_ATOMIC_INC(&agent->counters.nb_errors);
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002788 spoe_handle_processing_error(s, agent, ctx, dir);
2789 ret = 1;
2790 }
Christopher Faulet58d03682017-09-21 16:57:24 +02002791 return ret;
2792}
2793
Christopher Faulet344c4ab2017-09-22 10:20:13 +02002794/* Process a SPOE group, ie the list of messages attached to the group <grp>.
2795 * See spoe_process_message for details. */
2796static int
2797spoe_process_group(struct stream *s, struct spoe_context *ctx,
2798 struct spoe_group *group, int dir)
2799{
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002800 struct spoe_config *conf = FLT_CONF(ctx->filter);
2801 struct spoe_agent *agent = conf->agent;
Christopher Faulet344c4ab2017-09-22 10:20:13 +02002802 int ret;
2803
2804 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2805 " - ctx-state=%s - Process messages for group=%s\n",
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002806 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Faulet344c4ab2017-09-22 10:20:13 +02002807 __FUNCTION__, s, spoe_ctx_state_str[ctx->state],
2808 group->id);
2809
2810 if (LIST_ISEMPTY(&group->messages))
2811 return 1;
2812
2813 ret = spoe_process_messages(s, ctx, &group->messages, dir, SPOE_MSGS_BY_GROUP);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002814 if (ret && ctx->stats.t_process != -1) {
2815 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002816 " - <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 +01002817 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002818 __FUNCTION__, s, group->id, s->uniq_id, ctx->status_code,
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002819 ctx->stats.t_request, ctx->stats.t_queue, ctx->stats.t_waiting,
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002820 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,
2824 agent->rt[tid].processing, read_freq_ctr(&agent->rt[tid].processing_per_sec));
2825 if (ctx->status_code || !(conf->agent_fe.options2 & PR_O2_NOLOGNORM))
2826 send_log(&conf->agent_fe, (!ctx->status_code ? LOG_NOTICE : LOG_WARNING),
2827 "SPOE: [%s] <GROUP:%s> sid=%u st=%u %ld/%ld/%ld/%ld/%ld %u/%u %u/%u %llu/%llu\n",
2828 agent->id, group->id, s->uniq_id, ctx->status_code,
2829 ctx->stats.t_request, ctx->stats.t_queue, ctx->stats.t_waiting,
2830 ctx->stats.t_response, ctx->stats.t_process,
2831 agent->counters.idles, agent->counters.applets,
2832 agent->counters.nb_sending, agent->counters.nb_waiting,
2833 agent->counters.nb_errors, agent->counters.nb_processed);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002834 }
Christopher Faulet344c4ab2017-09-22 10:20:13 +02002835 return ret;
2836}
2837
Christopher Faulet58d03682017-09-21 16:57:24 +02002838/* Process a SPOE event, ie the list of messages attached to the event <ev>.
2839 * See spoe_process_message for details. */
2840static int
2841spoe_process_event(struct stream *s, struct spoe_context *ctx,
2842 enum spoe_event ev)
2843{
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002844 struct spoe_config *conf = FLT_CONF(ctx->filter);
2845 struct spoe_agent *agent = conf->agent;
Christopher Faulet58d03682017-09-21 16:57:24 +02002846 int dir, ret;
2847
2848 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Faulet344c4ab2017-09-22 10:20:13 +02002849 " - ctx-state=%s - Process messages for event=%s\n",
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002850 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Faulet58d03682017-09-21 16:57:24 +02002851 __FUNCTION__, s, spoe_ctx_state_str[ctx->state],
2852 spoe_event_str[ev]);
2853
2854 dir = ((ev < SPOE_EV_ON_SERVER_SESS) ? SMP_OPT_DIR_REQ : SMP_OPT_DIR_RES);
2855
2856 if (LIST_ISEMPTY(&(ctx->events[ev])))
2857 return 1;
2858
2859 ret = spoe_process_messages(s, ctx, &(ctx->events[ev]), dir, SPOE_MSGS_BY_EVENT);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002860 if (ret && ctx->stats.t_process != -1) {
2861 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002862 " - <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 +01002863 (int)now.tv_sec, (int)now.tv_usec, agent->id,
2864 __FUNCTION__, s, spoe_event_str[ev], s->uniq_id, ctx->status_code,
2865 ctx->stats.t_request, ctx->stats.t_queue, ctx->stats.t_waiting,
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002866 ctx->stats.t_response, ctx->stats.t_process,
2867 agent->counters.idles, agent->counters.applets,
2868 agent->counters.nb_sending, agent->counters.nb_waiting,
2869 agent->counters.nb_errors, agent->counters.nb_processed,
2870 agent->rt[tid].processing, read_freq_ctr(&agent->rt[tid].processing_per_sec));
2871 if (ctx->status_code || !(conf->agent_fe.options2 & PR_O2_NOLOGNORM))
2872 send_log(&conf->agent_fe, (!ctx->status_code ? LOG_NOTICE : LOG_WARNING),
2873 "SPOE: [%s] <EVENT:%s> sid=%u st=%u %ld/%ld/%ld/%ld/%ld %u/%u %u/%u %llu/%llu\n",
2874 agent->id, spoe_event_str[ev], s->uniq_id, ctx->status_code,
2875 ctx->stats.t_request, ctx->stats.t_queue, ctx->stats.t_waiting,
2876 ctx->stats.t_response, ctx->stats.t_process,
2877 agent->counters.idles, agent->counters.applets,
2878 agent->counters.nb_sending, agent->counters.nb_waiting,
2879 agent->counters.nb_errors, agent->counters.nb_processed);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002880 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01002881 return ret;
2882}
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002883
2884/***************************************************************************
2885 * Functions that create/destroy SPOE contexts
2886 **************************************************************************/
Christopher Fauleta1cda022016-12-21 08:58:06 +01002887static int
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002888spoe_acquire_buffer(struct buffer *buf, struct buffer_wait *buffer_wait)
Christopher Fauleta1cda022016-12-21 08:58:06 +01002889{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002890 if (buf->size)
Christopher Fauleta1cda022016-12-21 08:58:06 +01002891 return 1;
2892
Willy Tarreau2b718102021-04-21 07:32:39 +02002893 if (LIST_INLIST(&buffer_wait->list))
Willy Tarreau90f366b2021-02-20 11:49:49 +01002894 LIST_DEL_INIT(&buffer_wait->list);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002895
Willy Tarreaud68d4f12021-03-22 14:44:31 +01002896 if (b_alloc(buf))
Christopher Fauleta1cda022016-12-21 08:58:06 +01002897 return 1;
2898
Willy Tarreaub4e34762021-09-30 19:02:18 +02002899 LIST_APPEND(&th_ctx->buffer_wq, &buffer_wait->list);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002900 return 0;
2901}
2902
2903static void
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002904spoe_release_buffer(struct buffer *buf, struct buffer_wait *buffer_wait)
Christopher Fauleta1cda022016-12-21 08:58:06 +01002905{
Willy Tarreau2b718102021-04-21 07:32:39 +02002906 if (LIST_INLIST(&buffer_wait->list))
Willy Tarreau90f366b2021-02-20 11:49:49 +01002907 LIST_DEL_INIT(&buffer_wait->list);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002908
2909 /* Release the buffer if needed */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002910 if (buf->size) {
Christopher Faulet4596fb72017-01-11 14:05:19 +01002911 b_free(buf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01002912 offer_buffers(buffer_wait->target, 1);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002913 }
2914}
2915
Christopher Faulet4596fb72017-01-11 14:05:19 +01002916static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01002917spoe_wakeup_context(struct spoe_context *ctx)
Christopher Fauleta73e59b2016-12-09 17:30:18 +01002918{
2919 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
2920 return 1;
2921}
2922
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002923static struct spoe_context *
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002924spoe_create_context(struct stream *s, struct filter *filter)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002925{
2926 struct spoe_config *conf = FLT_CONF(filter);
2927 struct spoe_context *ctx;
2928
Willy Tarreauc9ef9bc2021-03-22 21:04:50 +01002929 ctx = pool_zalloc(pool_head_spoe_ctx);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002930 if (ctx == NULL) {
2931 return NULL;
2932 }
Christopher Fauletb067b062017-01-04 16:39:11 +01002933 ctx->filter = filter;
2934 ctx->state = SPOE_CTX_ST_NONE;
2935 ctx->status_code = SPOE_CTX_ERR_NONE;
2936 ctx->flags = 0;
Christopher Faulet11610f32017-09-21 10:23:10 +02002937 ctx->events = conf->agent->events;
Christopher Faulet76c09ef2017-09-21 11:03:52 +02002938 ctx->groups = &conf->agent->groups;
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002939 ctx->buffer = BUF_NULL;
Willy Tarreau90f366b2021-02-20 11:49:49 +01002940 LIST_INIT(&ctx->buffer_wait.list);
Christopher Fauleta73e59b2016-12-09 17:30:18 +01002941 ctx->buffer_wait.target = ctx;
Christopher Faulet8ef75252017-02-20 22:56:03 +01002942 ctx->buffer_wait.wakeup_cb = (int (*)(void *))spoe_wakeup_context;
Christopher Fauleta1cda022016-12-21 08:58:06 +01002943 LIST_INIT(&ctx->list);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002944
Christopher Fauletf7a30922016-11-10 15:04:51 +01002945 ctx->stream_id = 0;
2946 ctx->frame_id = 1;
2947 ctx->process_exp = TICK_ETERNITY;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002948
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002949 tv_zero(&ctx->stats.tv_start);
2950 tv_zero(&ctx->stats.tv_request);
2951 tv_zero(&ctx->stats.tv_queue);
2952 tv_zero(&ctx->stats.tv_wait);
2953 tv_zero(&ctx->stats.tv_response);
2954 ctx->stats.t_request = -1;
2955 ctx->stats.t_queue = -1;
2956 ctx->stats.t_waiting = -1;
2957 ctx->stats.t_response = -1;
2958 ctx->stats.t_process = -1;
2959 ctx->stats.t_total = 0;
2960
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002961 ctx->strm = s;
2962 ctx->state = SPOE_CTX_ST_READY;
2963 filter->ctx = ctx;
2964
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002965 return ctx;
2966}
2967
2968static void
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002969spoe_destroy_context(struct filter *filter)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002970{
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002971 struct spoe_config *conf = FLT_CONF(filter);
2972 struct spoe_context *ctx = filter->ctx;
2973
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002974 if (!ctx)
2975 return;
2976
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002977 spoe_stop_processing(conf->agent, ctx);
Willy Tarreaubafbe012017-11-24 17:34:44 +01002978 pool_free(pool_head_spoe_ctx, ctx);
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002979 filter->ctx = NULL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002980}
2981
2982static void
Christopher Faulet8ef75252017-02-20 22:56:03 +01002983spoe_reset_context(struct spoe_context *ctx)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002984{
2985 ctx->state = SPOE_CTX_ST_READY;
Christopher Fauletf032c3e2017-02-17 15:18:35 +01002986 ctx->flags &= ~(SPOE_CTX_FL_PROCESS|SPOE_CTX_FL_FRAGMENTED);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002987
2988 tv_zero(&ctx->stats.tv_start);
2989 tv_zero(&ctx->stats.tv_request);
2990 tv_zero(&ctx->stats.tv_queue);
2991 tv_zero(&ctx->stats.tv_wait);
2992 tv_zero(&ctx->stats.tv_response);
2993 ctx->stats.t_request = -1;
2994 ctx->stats.t_queue = -1;
2995 ctx->stats.t_waiting = -1;
2996 ctx->stats.t_response = -1;
2997 ctx->stats.t_process = -1;
2998 ctx->stats.t_total = 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002999}
3000
3001
3002/***************************************************************************
3003 * Hooks that manage the filter lifecycle (init/check/deinit)
3004 **************************************************************************/
3005/* Signal handler: Do a soft stop, wakeup SPOE applet */
3006static void
Christopher Faulet8ef75252017-02-20 22:56:03 +01003007spoe_sig_stop(struct sig_handler *sh)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003008{
3009 struct proxy *p;
3010
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003011 p = proxies_list;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003012 while (p) {
3013 struct flt_conf *fconf;
3014
3015 list_for_each_entry(fconf, &p->filter_configs, list) {
Christopher Faulet3b386a32017-02-23 10:17:15 +01003016 struct spoe_config *conf;
3017 struct spoe_agent *agent;
Christopher Faulet42bfa462017-01-04 14:14:19 +01003018 struct spoe_appctx *spoe_appctx;
Christopher Faulet24289f22017-09-25 14:48:02 +02003019 int i;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003020
Christopher Faulet3b386a32017-02-23 10:17:15 +01003021 if (fconf->id != spoe_filter_id)
3022 continue;
3023
3024 conf = fconf->conf;
3025 agent = conf->agent;
3026
Christopher Faulet24289f22017-09-25 14:48:02 +02003027 for (i = 0; i < global.nbthread; ++i) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003028 HA_SPIN_LOCK(SPOE_APPLET_LOCK, &agent->rt[i].lock);
Christopher Faulet24289f22017-09-25 14:48:02 +02003029 list_for_each_entry(spoe_appctx, &agent->rt[i].applets, list)
3030 spoe_wakeup_appctx(spoe_appctx->owner);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003031 HA_SPIN_UNLOCK(SPOE_APPLET_LOCK, &agent->rt[i].lock);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003032 }
3033 }
3034 p = p->next;
3035 }
3036}
3037
3038
3039/* Initialize the SPOE filter. Returns -1 on error, else 0. */
3040static int
3041spoe_init(struct proxy *px, struct flt_conf *fconf)
3042{
3043 struct spoe_config *conf = fconf->conf;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003044
Christopher Faulet7250b8f2018-03-26 17:19:01 +02003045 /* conf->agent_fe was already initialized during the config
3046 * parsing. Finish initialization. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003047 conf->agent_fe.last_change = now.tv_sec;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003048 conf->agent_fe.cap = PR_CAP_FE;
3049 conf->agent_fe.mode = PR_MODE_TCP;
3050 conf->agent_fe.maxconn = 0;
3051 conf->agent_fe.options2 |= PR_O2_INDEPSTR;
3052 conf->agent_fe.conn_retries = CONN_RETRIES;
3053 conf->agent_fe.accept = frontend_accept;
3054 conf->agent_fe.srv = NULL;
3055 conf->agent_fe.timeout.client = TICK_ETERNITY;
3056 conf->agent_fe.default_target = &spoe_applet.obj_type;
3057 conf->agent_fe.fe_req_ana = AN_REQ_SWITCHING_RULES;
3058
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003059 if (!sighandler_registered) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01003060 signal_register_fct(0, spoe_sig_stop, 0);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003061 sighandler_registered = 1;
3062 }
3063
Christopher Faulet00292352019-01-09 15:05:10 +01003064 fconf->flags |= FLT_CFG_FL_HTX;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003065 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003066}
3067
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05003068/* Free resources allocated by the SPOE filter. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003069static void
3070spoe_deinit(struct proxy *px, struct flt_conf *fconf)
3071{
3072 struct spoe_config *conf = fconf->conf;
3073
3074 if (conf) {
3075 struct spoe_agent *agent = conf->agent;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003076
Christopher Faulet8ef75252017-02-20 22:56:03 +01003077 spoe_release_agent(agent);
Christopher Faulet7ee86672017-09-19 11:08:28 +02003078 free(conf->id);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003079 free(conf);
3080 }
3081 fconf->conf = NULL;
3082}
3083
3084/* Check configuration of a SPOE filter for a specified proxy.
3085 * Return 1 on error, else 0. */
3086static int
3087spoe_check(struct proxy *px, struct flt_conf *fconf)
3088{
Christopher Faulet7ee86672017-09-19 11:08:28 +02003089 struct flt_conf *f;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003090 struct spoe_config *conf = fconf->conf;
3091 struct proxy *target;
Christopher Faulet1d7d0f82021-02-19 10:56:41 +01003092 struct logsrv *logsrv;
Willy Tarreaub0769b22019-02-07 13:40:33 +01003093 int i;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003094
Christopher Faulet7ee86672017-09-19 11:08:28 +02003095 /* Check all SPOE filters for proxy <px> to be sure all SPOE agent names
3096 * are uniq */
3097 list_for_each_entry(f, &px->filter_configs, list) {
3098 struct spoe_config *c = f->conf;
3099
3100 /* This is not an SPOE filter */
3101 if (f->id != spoe_filter_id)
3102 continue;
3103 /* This is the current SPOE filter */
3104 if (f == fconf)
3105 continue;
3106
3107 /* Check engine Id. It should be uniq */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003108 if (strcmp(conf->id, c->id) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003109 ha_alert("Proxy %s : duplicated name for SPOE engine '%s'.\n",
3110 px->id, conf->id);
Christopher Faulet7ee86672017-09-19 11:08:28 +02003111 return 1;
3112 }
3113 }
3114
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003115 target = proxy_be_by_name(conf->agent->b.name);
3116 if (target == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003117 ha_alert("Proxy %s : unknown backend '%s' used by SPOE agent '%s'"
3118 " declared at %s:%d.\n",
3119 px->id, conf->agent->b.name, conf->agent->id,
3120 conf->agent->conf.file, conf->agent->conf.line);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003121 return 1;
3122 }
3123 if (target->mode != PR_MODE_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003124 ha_alert("Proxy %s : backend '%s' used by SPOE agent '%s' declared"
3125 " at %s:%d does not support HTTP mode.\n",
3126 px->id, target->id, conf->agent->id,
3127 conf->agent->conf.file, conf->agent->conf.line);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003128 return 1;
3129 }
3130
Christopher Fauletfe261552019-03-18 13:57:42 +01003131 if ((conf->agent->rt = calloc(global.nbthread, sizeof(*conf->agent->rt))) == NULL) {
Willy Tarreaub0769b22019-02-07 13:40:33 +01003132 ha_alert("Proxy %s : out of memory initializing SPOE agent '%s' declared at %s:%d.\n",
3133 px->id, conf->agent->id, conf->agent->conf.file, conf->agent->conf.line);
3134 return 1;
3135 }
3136 for (i = 0; i < global.nbthread; ++i) {
Christopher Fauletb1bb1af2019-09-17 11:55:52 +02003137 conf->agent->rt[i].engine_id = NULL;
Christopher Fauletfe261552019-03-18 13:57:42 +01003138 conf->agent->rt[i].frame_size = conf->agent->max_frame_size;
3139 conf->agent->rt[i].processing = 0;
3140 LIST_INIT(&conf->agent->rt[i].applets);
3141 LIST_INIT(&conf->agent->rt[i].sending_queue);
3142 LIST_INIT(&conf->agent->rt[i].waiting_queue);
3143 HA_SPIN_INIT(&conf->agent->rt[i].lock);
Willy Tarreaub0769b22019-02-07 13:40:33 +01003144 }
3145
Christopher Faulet1d7d0f82021-02-19 10:56:41 +01003146 list_for_each_entry(logsrv, &conf->agent_fe.logsrvs, list) {
3147 if (logsrv->type == LOG_TARGET_BUFFER) {
3148 struct sink *sink = sink_find(logsrv->ring_name);
3149
3150 if (!sink || sink->type != SINK_TYPE_BUFFER) {
3151 ha_alert("Proxy %s : log server used by SPOE agent '%s' declared"
Ilya Shipitsind7a988c2021-03-04 23:26:15 +05003152 " at %s:%d uses unknown ring named '%s'.\n",
Christopher Faulet1d7d0f82021-02-19 10:56:41 +01003153 px->id, conf->agent->id, conf->agent->conf.file,
3154 conf->agent->conf.line, logsrv->ring_name);
3155 return 1;
3156 }
3157 logsrv->sink = sink;
3158 }
3159 }
3160
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003161 ha_free(&conf->agent->b.name);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003162 conf->agent->b.be = target;
3163 return 0;
3164}
3165
Kevin Zhud87b1a52019-09-17 15:05:45 +02003166/* Initializes the SPOE filter for a proxy for a specific thread.
3167 * Returns a negative value if an error occurs. */
3168static int
3169spoe_init_per_thread(struct proxy *p, struct flt_conf *fconf)
3170{
3171 struct spoe_config *conf = fconf->conf;
3172 struct spoe_agent *agent = conf->agent;
3173
Christopher Fauletb1bb1af2019-09-17 11:55:52 +02003174 agent->rt[tid].engine_id = generate_pseudo_uuid();
3175 if (agent->rt[tid].engine_id == NULL)
3176 return -1;
Kevin Zhud87b1a52019-09-17 15:05:45 +02003177 return 0;
3178}
3179
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003180/**************************************************************************
3181 * Hooks attached to a stream
3182 *************************************************************************/
3183/* Called when a filter instance is created and attach to a stream. It creates
3184 * the context that will be used to process this stream. */
3185static int
3186spoe_start(struct stream *s, struct filter *filter)
3187{
Christopher Faulet72bcc472017-01-04 16:39:41 +01003188 struct spoe_config *conf = FLT_CONF(filter);
3189 struct spoe_agent *agent = conf->agent;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003190 struct spoe_context *ctx;
3191
3192 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p\n",
Christopher Faulet72bcc472017-01-04 16:39:41 +01003193 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003194 __FUNCTION__, s);
3195
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01003196 if ((ctx = spoe_create_context(s, filter)) == NULL) {
Christopher Faulet72bcc472017-01-04 16:39:41 +01003197 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
3198 " - failed to create SPOE context\n",
3199 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Fauletccbc3fd2017-09-15 11:51:18 +02003200 __FUNCTION__, s);
Christopher Faulet3b8e3492018-03-26 17:20:58 +02003201 send_log(&conf->agent_fe, LOG_EMERG,
Christopher Faulet72bcc472017-01-04 16:39:41 +01003202 "SPOE: [%s] failed to create SPOE context\n",
3203 agent->id);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003204 return 0;
3205 }
3206
Christopher Faulet11610f32017-09-21 10:23:10 +02003207 if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_TCP_REQ_FE]))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003208 filter->pre_analyzers |= AN_REQ_INSPECT_FE;
3209
Christopher Faulet11610f32017-09-21 10:23:10 +02003210 if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_TCP_REQ_BE]))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003211 filter->pre_analyzers |= AN_REQ_INSPECT_BE;
3212
Christopher Faulet11610f32017-09-21 10:23:10 +02003213 if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_TCP_RSP]))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003214 filter->pre_analyzers |= AN_RES_INSPECT;
3215
Christopher Faulet11610f32017-09-21 10:23:10 +02003216 if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_HTTP_REQ_FE]))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003217 filter->pre_analyzers |= AN_REQ_HTTP_PROCESS_FE;
3218
Christopher Faulet11610f32017-09-21 10:23:10 +02003219 if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_HTTP_REQ_BE]))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003220 filter->pre_analyzers |= AN_REQ_HTTP_PROCESS_BE;
3221
Christopher Faulet11610f32017-09-21 10:23:10 +02003222 if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_HTTP_RSP]))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003223 filter->pre_analyzers |= AN_RES_HTTP_PROCESS_FE;
3224
3225 return 1;
3226}
3227
3228/* Called when a filter instance is detached from a stream. It release the
3229 * attached SPOE context. */
3230static void
3231spoe_stop(struct stream *s, struct filter *filter)
3232{
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003233 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p\n",
3234 (int)now.tv_sec, (int)now.tv_usec,
3235 ((struct spoe_config *)FLT_CONF(filter))->agent->id,
3236 __FUNCTION__, s);
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01003237 spoe_destroy_context(filter);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003238}
3239
Christopher Fauletf7a30922016-11-10 15:04:51 +01003240
3241/*
3242 * Called when the stream is woken up because of expired timer.
3243 */
3244static void
3245spoe_check_timeouts(struct stream *s, struct filter *filter)
3246{
3247 struct spoe_context *ctx = filter->ctx;
3248
Christopher Fauletac580602018-03-20 16:09:20 +01003249 if (tick_is_expired(ctx->process_exp, now_ms))
Christopher Fauleta73e59b2016-12-09 17:30:18 +01003250 s->pending_events |= TASK_WOKEN_MSG;
Christopher Fauletf7a30922016-11-10 15:04:51 +01003251}
3252
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003253/* Called when we are ready to filter data on a channel */
3254static int
3255spoe_start_analyze(struct stream *s, struct filter *filter, struct channel *chn)
3256{
3257 struct spoe_context *ctx = filter->ctx;
3258 int ret = 1;
3259
3260 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p - ctx-state=%s"
3261 " - ctx-flags=0x%08x\n",
3262 (int)now.tv_sec, (int)now.tv_usec,
3263 ((struct spoe_config *)FLT_CONF(filter))->agent->id,
3264 __FUNCTION__, s, spoe_ctx_state_str[ctx->state], ctx->flags);
3265
Christopher Fauletb067b062017-01-04 16:39:11 +01003266 if (ctx->state == SPOE_CTX_ST_NONE)
3267 goto out;
3268
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003269 if (!(chn->flags & CF_ISRESP)) {
3270 if (filter->pre_analyzers & AN_REQ_INSPECT_FE)
3271 chn->analysers |= AN_REQ_INSPECT_FE;
3272 if (filter->pre_analyzers & AN_REQ_INSPECT_BE)
3273 chn->analysers |= AN_REQ_INSPECT_BE;
3274
3275 if (ctx->flags & SPOE_CTX_FL_CLI_CONNECTED)
3276 goto out;
3277
3278 ctx->stream_id = s->uniq_id;
Christopher Faulet8ef75252017-02-20 22:56:03 +01003279 ret = spoe_process_event(s, ctx, SPOE_EV_ON_CLIENT_SESS);
Christopher Fauletb067b062017-01-04 16:39:11 +01003280 if (!ret)
3281 goto out;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003282 ctx->flags |= SPOE_CTX_FL_CLI_CONNECTED;
3283 }
3284 else {
Miroslav Zagorac88403262020-06-19 22:17:17 +02003285 if (filter->pre_analyzers & AN_RES_INSPECT)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003286 chn->analysers |= AN_RES_INSPECT;
3287
3288 if (ctx->flags & SPOE_CTX_FL_SRV_CONNECTED)
3289 goto out;
3290
Christopher Faulet8ef75252017-02-20 22:56:03 +01003291 ret = spoe_process_event(s, ctx, SPOE_EV_ON_SERVER_SESS);
Christopher Fauleta1cda022016-12-21 08:58:06 +01003292 if (!ret) {
3293 channel_dont_read(chn);
3294 channel_dont_close(chn);
Christopher Fauletb067b062017-01-04 16:39:11 +01003295 goto out;
Christopher Fauleta1cda022016-12-21 08:58:06 +01003296 }
Christopher Fauletb067b062017-01-04 16:39:11 +01003297 ctx->flags |= SPOE_CTX_FL_SRV_CONNECTED;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003298 }
3299
3300 out:
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003301 return ret;
3302}
3303
3304/* Called before a processing happens on a given channel */
3305static int
3306spoe_chn_pre_analyze(struct stream *s, struct filter *filter,
3307 struct channel *chn, unsigned an_bit)
3308{
3309 struct spoe_context *ctx = filter->ctx;
3310 int ret = 1;
3311
3312 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p - ctx-state=%s"
3313 " - ctx-flags=0x%08x - ana=0x%08x\n",
3314 (int)now.tv_sec, (int)now.tv_usec,
3315 ((struct spoe_config *)FLT_CONF(filter))->agent->id,
3316 __FUNCTION__, s, spoe_ctx_state_str[ctx->state],
3317 ctx->flags, an_bit);
3318
Christopher Fauletb067b062017-01-04 16:39:11 +01003319 if (ctx->state == SPOE_CTX_ST_NONE)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003320 goto out;
3321
3322 switch (an_bit) {
3323 case AN_REQ_INSPECT_FE:
Christopher Faulet8ef75252017-02-20 22:56:03 +01003324 ret = spoe_process_event(s, ctx, SPOE_EV_ON_TCP_REQ_FE);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003325 break;
3326 case AN_REQ_INSPECT_BE:
Christopher Faulet8ef75252017-02-20 22:56:03 +01003327 ret = spoe_process_event(s, ctx, SPOE_EV_ON_TCP_REQ_BE);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003328 break;
3329 case AN_RES_INSPECT:
Christopher Faulet8ef75252017-02-20 22:56:03 +01003330 ret = spoe_process_event(s, ctx, SPOE_EV_ON_TCP_RSP);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003331 break;
3332 case AN_REQ_HTTP_PROCESS_FE:
Christopher Faulet8ef75252017-02-20 22:56:03 +01003333 ret = spoe_process_event(s, ctx, SPOE_EV_ON_HTTP_REQ_FE);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003334 break;
3335 case AN_REQ_HTTP_PROCESS_BE:
Christopher Faulet8ef75252017-02-20 22:56:03 +01003336 ret = spoe_process_event(s, ctx, SPOE_EV_ON_HTTP_REQ_BE);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003337 break;
3338 case AN_RES_HTTP_PROCESS_FE:
Christopher Faulet8ef75252017-02-20 22:56:03 +01003339 ret = spoe_process_event(s, ctx, SPOE_EV_ON_HTTP_RSP);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003340 break;
3341 }
3342
3343 out:
Christopher Faulet9cdca972018-02-01 08:45:45 +01003344 if (!ret && (chn->flags & CF_ISRESP)) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003345 channel_dont_read(chn);
3346 channel_dont_close(chn);
3347 }
3348 return ret;
3349}
3350
3351/* Called when the filtering on the channel ends. */
3352static int
3353spoe_end_analyze(struct stream *s, struct filter *filter, struct channel *chn)
3354{
3355 struct spoe_context *ctx = filter->ctx;
3356
3357 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p - ctx-state=%s"
3358 " - ctx-flags=0x%08x\n",
3359 (int)now.tv_sec, (int)now.tv_usec,
3360 ((struct spoe_config *)FLT_CONF(filter))->agent->id,
3361 __FUNCTION__, s, spoe_ctx_state_str[ctx->state], ctx->flags);
3362
3363 if (!(ctx->flags & SPOE_CTX_FL_PROCESS)) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01003364 spoe_reset_context(ctx);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003365 }
3366
3367 return 1;
3368}
3369
3370/********************************************************************
3371 * Functions that manage the filter initialization
3372 ********************************************************************/
3373struct flt_ops spoe_ops = {
3374 /* Manage SPOE filter, called for each filter declaration */
3375 .init = spoe_init,
3376 .deinit = spoe_deinit,
3377 .check = spoe_check,
Kevin Zhud87b1a52019-09-17 15:05:45 +02003378 .init_per_thread = spoe_init_per_thread,
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003379
3380 /* Handle start/stop of SPOE */
Christopher Fauletf7a30922016-11-10 15:04:51 +01003381 .attach = spoe_start,
3382 .detach = spoe_stop,
3383 .check_timeouts = spoe_check_timeouts,
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003384
3385 /* Handle channels activity */
3386 .channel_start_analyze = spoe_start_analyze,
3387 .channel_pre_analyze = spoe_chn_pre_analyze,
3388 .channel_end_analyze = spoe_end_analyze,
3389};
3390
3391
3392static int
3393cfg_parse_spoe_agent(const char *file, int linenum, char **args, int kwm)
3394{
3395 const char *err;
3396 int i, err_code = 0;
3397
3398 if ((cfg_scope == NULL && curengine != NULL) ||
3399 (cfg_scope != NULL && curengine == NULL) ||
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003400 (curengine != NULL && cfg_scope != NULL && strcmp(curengine, cfg_scope) != 0))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003401 goto out;
3402
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003403 if (strcmp(args[0], "spoe-agent") == 0) { /* new spoe-agent section */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003404 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003405 ha_alert("parsing [%s:%d] : missing name for spoe-agent section.\n",
3406 file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003407 err_code |= ERR_ALERT | ERR_ABORT;
3408 goto out;
3409 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003410 if (alertif_too_many_args(1, file, linenum, args, &err_code)) {
3411 err_code |= ERR_ABORT;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003412 goto out;
3413 }
3414
3415 err = invalid_char(args[1]);
3416 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003417 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
3418 file, linenum, *err, args[0], args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003419 err_code |= ERR_ALERT | ERR_ABORT;
3420 goto out;
3421 }
3422
3423 if (curagent != NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003424 ha_alert("parsing [%s:%d] : another spoe-agent section previously defined.\n",
3425 file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003426 err_code |= ERR_ALERT | ERR_ABORT;
3427 goto out;
3428 }
3429 if ((curagent = calloc(1, sizeof(*curagent))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003430 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003431 err_code |= ERR_ALERT | ERR_ABORT;
3432 goto out;
3433 }
3434
3435 curagent->id = strdup(args[1]);
Christopher Fauleta1cda022016-12-21 08:58:06 +01003436
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003437 curagent->conf.file = strdup(file);
3438 curagent->conf.line = linenum;
Christopher Fauleta1cda022016-12-21 08:58:06 +01003439
3440 curagent->timeout.hello = TICK_ETERNITY;
3441 curagent->timeout.idle = TICK_ETERNITY;
Christopher Fauletf7a30922016-11-10 15:04:51 +01003442 curagent->timeout.processing = TICK_ETERNITY;
Christopher Fauleta1cda022016-12-21 08:58:06 +01003443
Christopher Fauleta1cda022016-12-21 08:58:06 +01003444 curagent->var_pfx = NULL;
3445 curagent->var_on_error = NULL;
Christopher Faulet36bda1c2018-03-22 09:08:20 +01003446 curagent->var_t_process = NULL;
3447 curagent->var_t_total = NULL;
Christopher Fauletb1bb1af2019-09-17 11:55:52 +02003448 curagent->flags = (SPOE_FL_ASYNC | SPOE_FL_PIPELINING | SPOE_FL_SND_FRAGMENTATION);
Christopher Fauleta1cda022016-12-21 08:58:06 +01003449 curagent->cps_max = 0;
3450 curagent->eps_max = 0;
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01003451 curagent->max_frame_size = MAX_FRAME_SIZE;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01003452 curagent->max_fpa = 20;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003453
3454 for (i = 0; i < SPOE_EV_EVENTS; ++i)
Christopher Faulet11610f32017-09-21 10:23:10 +02003455 LIST_INIT(&curagent->events[i]);
3456 LIST_INIT(&curagent->groups);
3457 LIST_INIT(&curagent->messages);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003458 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003459 else if (strcmp(args[0], "use-backend") == 0) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003460 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003461 ha_alert("parsing [%s:%d] : '%s' expects a backend name.\n",
3462 file, linenum, args[0]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003463 err_code |= ERR_ALERT | ERR_FATAL;
3464 goto out;
3465 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003466 if (alertif_too_many_args(1, file, linenum, args, &err_code))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003467 goto out;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003468 free(curagent->b.name);
3469 curagent->b.name = strdup(args[1]);
3470 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003471 else if (strcmp(args[0], "messages") == 0) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003472 int cur_arg = 1;
3473 while (*args[cur_arg]) {
Christopher Faulet11610f32017-09-21 10:23:10 +02003474 struct spoe_placeholder *ph = NULL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003475
Christopher Faulet11610f32017-09-21 10:23:10 +02003476 list_for_each_entry(ph, &curmphs, list) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003477 if (strcmp(ph->id, args[cur_arg]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003478 ha_alert("parsing [%s:%d]: spoe-message '%s' already used.\n",
3479 file, linenum, args[cur_arg]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003480 err_code |= ERR_ALERT | ERR_FATAL;
3481 goto out;
3482 }
3483 }
3484
Christopher Faulet11610f32017-09-21 10:23:10 +02003485 if ((ph = calloc(1, sizeof(*ph))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003486 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003487 err_code |= ERR_ALERT | ERR_ABORT;
3488 goto out;
3489 }
Christopher Faulet11610f32017-09-21 10:23:10 +02003490 ph->id = strdup(args[cur_arg]);
Willy Tarreau2b718102021-04-21 07:32:39 +02003491 LIST_APPEND(&curmphs, &ph->list);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003492 cur_arg++;
3493 }
3494 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003495 else if (strcmp(args[0], "groups") == 0) {
Christopher Faulet11610f32017-09-21 10:23:10 +02003496 int cur_arg = 1;
3497 while (*args[cur_arg]) {
3498 struct spoe_placeholder *ph = NULL;
3499
3500 list_for_each_entry(ph, &curgphs, list) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003501 if (strcmp(ph->id, args[cur_arg]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003502 ha_alert("parsing [%s:%d]: spoe-group '%s' already used.\n",
3503 file, linenum, args[cur_arg]);
Christopher Faulet11610f32017-09-21 10:23:10 +02003504 err_code |= ERR_ALERT | ERR_FATAL;
3505 goto out;
3506 }
3507 }
3508
3509 if ((ph = calloc(1, sizeof(*ph))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003510 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Faulet11610f32017-09-21 10:23:10 +02003511 err_code |= ERR_ALERT | ERR_ABORT;
3512 goto out;
3513 }
3514 ph->id = strdup(args[cur_arg]);
Willy Tarreau2b718102021-04-21 07:32:39 +02003515 LIST_APPEND(&curgphs, &ph->list);
Christopher Faulet11610f32017-09-21 10:23:10 +02003516 cur_arg++;
3517 }
3518 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003519 else if (strcmp(args[0], "timeout") == 0) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003520 unsigned int *tv = NULL;
3521 const char *res;
3522 unsigned timeout;
3523
3524 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003525 ha_alert("parsing [%s:%d] : 'timeout' expects 'hello', 'idle' and 'processing'.\n",
3526 file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003527 err_code |= ERR_ALERT | ERR_FATAL;
3528 goto out;
3529 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003530 if (alertif_too_many_args(2, file, linenum, args, &err_code))
3531 goto out;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003532 if (strcmp(args[1], "hello") == 0)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003533 tv = &curagent->timeout.hello;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003534 else if (strcmp(args[1], "idle") == 0)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003535 tv = &curagent->timeout.idle;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003536 else if (strcmp(args[1], "processing") == 0)
Christopher Fauletf7a30922016-11-10 15:04:51 +01003537 tv = &curagent->timeout.processing;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003538 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003539 ha_alert("parsing [%s:%d] : 'timeout' supports 'hello', 'idle' or 'processing' (got %s).\n",
3540 file, linenum, args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003541 err_code |= ERR_ALERT | ERR_FATAL;
3542 goto out;
3543 }
3544 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003545 ha_alert("parsing [%s:%d] : 'timeout %s' expects an integer value (in milliseconds).\n",
3546 file, linenum, args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003547 err_code |= ERR_ALERT | ERR_FATAL;
3548 goto out;
3549 }
3550 res = parse_time_err(args[2], &timeout, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02003551 if (res == PARSE_TIME_OVER) {
3552 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
3553 file, linenum, args[2], args[0], args[1]);
3554 err_code |= ERR_ALERT | ERR_FATAL;
3555 goto out;
3556 }
3557 else if (res == PARSE_TIME_UNDER) {
3558 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
3559 file, linenum, args[2], args[0], args[1]);
3560 err_code |= ERR_ALERT | ERR_FATAL;
3561 goto out;
3562 }
3563 else if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003564 ha_alert("parsing [%s:%d] : unexpected character '%c' in 'timeout %s'.\n",
3565 file, linenum, *res, args[1]);
Christopher Fauletecc537a2017-02-23 22:52:39 +01003566 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003567 goto out;
3568 }
3569 *tv = MS_TO_TICKS(timeout);
3570 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003571 else if (strcmp(args[0], "option") == 0) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003572 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003573 ha_alert("parsing [%s:%d]: '%s' expects an option name.\n",
3574 file, linenum, args[0]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003575 err_code |= ERR_ALERT | ERR_FATAL;
3576 goto out;
3577 }
Christopher Faulet6a2940c2017-02-23 15:06:26 +01003578
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003579 if (strcmp(args[1], "pipelining") == 0) {
Christopher Fauletecc537a2017-02-23 22:52:39 +01003580 if (alertif_too_many_args(1, file, linenum, args, &err_code))
Christopher Faulet305c6072017-02-23 16:17:53 +01003581 goto out;
Christopher Faulet305c6072017-02-23 16:17:53 +01003582 if (kwm == 1)
3583 curagent->flags &= ~SPOE_FL_PIPELINING;
3584 else
3585 curagent->flags |= SPOE_FL_PIPELINING;
3586 goto out;
3587 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003588 else if (strcmp(args[1], "async") == 0) {
Christopher Fauletecc537a2017-02-23 22:52:39 +01003589 if (alertif_too_many_args(1, file, linenum, args, &err_code))
Christopher Faulet305c6072017-02-23 16:17:53 +01003590 goto out;
Christopher Faulet305c6072017-02-23 16:17:53 +01003591 if (kwm == 1)
3592 curagent->flags &= ~SPOE_FL_ASYNC;
Christopher Fauletb1bb1af2019-09-17 11:55:52 +02003593 else
3594 curagent->flags |= SPOE_FL_ASYNC;
Christopher Faulet305c6072017-02-23 16:17:53 +01003595 goto out;
3596 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003597 else if (strcmp(args[1], "send-frag-payload") == 0) {
Christopher Fauletcecd8522017-02-24 22:11:21 +01003598 if (alertif_too_many_args(1, file, linenum, args, &err_code))
3599 goto out;
3600 if (kwm == 1)
3601 curagent->flags &= ~SPOE_FL_SND_FRAGMENTATION;
3602 else
3603 curagent->flags |= SPOE_FL_SND_FRAGMENTATION;
3604 goto out;
3605 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003606 else if (strcmp(args[1], "dontlog-normal") == 0) {
Christopher Faulet0e0f0852018-03-26 17:20:36 +02003607 if (alertif_too_many_args(1, file, linenum, args, &err_code))
3608 goto out;
3609 if (kwm == 1)
3610 curpxopts2 &= ~PR_O2_NOLOGNORM;
3611 else
3612 curpxopts2 |= PR_O2_NOLOGNORM;
Christopher Faulet799f5182018-04-26 11:36:34 +02003613 goto out;
Christopher Faulet0e0f0852018-03-26 17:20:36 +02003614 }
Christopher Faulet305c6072017-02-23 16:17:53 +01003615
Christopher Faulet6a2940c2017-02-23 15:06:26 +01003616 /* Following options does not support negation */
3617 if (kwm == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003618 ha_alert("parsing [%s:%d]: negation is not supported for option '%s'.\n",
3619 file, linenum, args[1]);
Christopher Faulet6a2940c2017-02-23 15:06:26 +01003620 err_code |= ERR_ALERT | ERR_FATAL;
3621 goto out;
3622 }
3623
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003624 if (strcmp(args[1], "var-prefix") == 0) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003625 char *tmp;
3626
3627 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003628 ha_alert("parsing [%s:%d]: '%s %s' expects a value.\n",
3629 file, linenum, args[0],
3630 args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003631 err_code |= ERR_ALERT | ERR_FATAL;
3632 goto out;
3633 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003634 if (alertif_too_many_args(2, file, linenum, args, &err_code))
3635 goto out;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003636 tmp = args[2];
3637 while (*tmp) {
Willy Tarreau90807112020-02-25 08:16:33 +01003638 if (!isalnum((unsigned char)*tmp) && *tmp != '_' && *tmp != '.') {
Thierry FOURNIER01a3f202018-05-10 16:41:26 +02003639 ha_alert("parsing [%s:%d]: '%s %s' only supports [a-zA-Z0-9_.] chars.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003640 file, linenum, args[0], args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003641 err_code |= ERR_ALERT | ERR_FATAL;
3642 goto out;
3643 }
3644 tmp++;
3645 }
3646 curagent->var_pfx = strdup(args[2]);
3647 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003648 else if (strcmp(args[1], "force-set-var") == 0) {
Etienne Carriereaec89892017-12-14 09:36:40 +00003649 if (alertif_too_many_args(1, file, linenum, args, &err_code))
3650 goto out;
3651 curagent->flags |= SPOE_FL_FORCE_SET_VAR;
3652 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003653 else if (strcmp(args[1], "continue-on-error") == 0) {
Christopher Fauletecc537a2017-02-23 22:52:39 +01003654 if (alertif_too_many_args(1, file, linenum, args, &err_code))
Christopher Fauletea62c2a2016-11-14 10:54:21 +01003655 goto out;
Christopher Fauletea62c2a2016-11-14 10:54:21 +01003656 curagent->flags |= SPOE_FL_CONT_ON_ERR;
3657 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003658 else if (strcmp(args[1], "set-on-error") == 0) {
Christopher Faulet985532d2016-11-16 15:36:19 +01003659 char *tmp;
3660
3661 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003662 ha_alert("parsing [%s:%d]: '%s %s' expects a value.\n",
3663 file, linenum, args[0],
3664 args[1]);
Christopher Faulet985532d2016-11-16 15:36:19 +01003665 err_code |= ERR_ALERT | ERR_FATAL;
3666 goto out;
3667 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003668 if (alertif_too_many_args(2, file, linenum, args, &err_code))
3669 goto out;
Christopher Faulet985532d2016-11-16 15:36:19 +01003670 tmp = args[2];
3671 while (*tmp) {
Willy Tarreau90807112020-02-25 08:16:33 +01003672 if (!isalnum((unsigned char)*tmp) && *tmp != '_' && *tmp != '.') {
Thierry FOURNIER01a3f202018-05-10 16:41:26 +02003673 ha_alert("parsing [%s:%d]: '%s %s' only supports [a-zA-Z0-9_.] chars.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003674 file, linenum, args[0], args[1]);
Christopher Faulet985532d2016-11-16 15:36:19 +01003675 err_code |= ERR_ALERT | ERR_FATAL;
3676 goto out;
3677 }
3678 tmp++;
3679 }
3680 curagent->var_on_error = strdup(args[2]);
3681 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003682 else if (strcmp(args[1], "set-process-time") == 0) {
Christopher Faulet36bda1c2018-03-22 09:08:20 +01003683 char *tmp;
3684
3685 if (!*args[2]) {
3686 ha_alert("parsing [%s:%d]: '%s %s' expects a value.\n",
3687 file, linenum, args[0],
3688 args[1]);
3689 err_code |= ERR_ALERT | ERR_FATAL;
3690 goto out;
3691 }
3692 if (alertif_too_many_args(2, file, linenum, args, &err_code))
3693 goto out;
3694 tmp = args[2];
3695 while (*tmp) {
Willy Tarreau90807112020-02-25 08:16:33 +01003696 if (!isalnum((unsigned char)*tmp) && *tmp != '_' && *tmp != '.') {
Thierry FOURNIER01a3f202018-05-10 16:41:26 +02003697 ha_alert("parsing [%s:%d]: '%s %s' only supports [a-zA-Z0-9_.] chars.\n",
Christopher Faulet36bda1c2018-03-22 09:08:20 +01003698 file, linenum, args[0], args[1]);
3699 err_code |= ERR_ALERT | ERR_FATAL;
3700 goto out;
3701 }
3702 tmp++;
3703 }
3704 curagent->var_t_process = strdup(args[2]);
3705 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003706 else if (strcmp(args[1], "set-total-time") == 0) {
Christopher Faulet36bda1c2018-03-22 09:08:20 +01003707 char *tmp;
3708
3709 if (!*args[2]) {
3710 ha_alert("parsing [%s:%d]: '%s %s' expects a value.\n",
3711 file, linenum, args[0],
3712 args[1]);
3713 err_code |= ERR_ALERT | ERR_FATAL;
3714 goto out;
3715 }
3716 if (alertif_too_many_args(2, file, linenum, args, &err_code))
3717 goto out;
3718 tmp = args[2];
3719 while (*tmp) {
Willy Tarreau90807112020-02-25 08:16:33 +01003720 if (!isalnum((unsigned char)*tmp) && *tmp != '_' && *tmp != '.') {
Thierry FOURNIER01a3f202018-05-10 16:41:26 +02003721 ha_alert("parsing [%s:%d]: '%s %s' only supports [a-zA-Z0-9_.] chars.\n",
Christopher Faulet36bda1c2018-03-22 09:08:20 +01003722 file, linenum, args[0], args[1]);
3723 err_code |= ERR_ALERT | ERR_FATAL;
3724 goto out;
3725 }
3726 tmp++;
3727 }
3728 curagent->var_t_total = strdup(args[2]);
3729 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003730 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003731 ha_alert("parsing [%s:%d]: option '%s' is not supported.\n",
3732 file, linenum, args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003733 err_code |= ERR_ALERT | ERR_FATAL;
3734 goto out;
3735 }
Christopher Faulet48026722016-11-16 15:01:12 +01003736 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003737 else if (strcmp(args[0], "maxconnrate") == 0) {
Christopher Faulet48026722016-11-16 15:01:12 +01003738 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003739 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n",
3740 file, linenum, args[0]);
Christopher Faulet48026722016-11-16 15:01:12 +01003741 err_code |= ERR_ALERT | ERR_FATAL;
3742 goto out;
3743 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003744 if (alertif_too_many_args(1, file, linenum, args, &err_code))
Christopher Faulet48026722016-11-16 15:01:12 +01003745 goto out;
Christopher Faulet48026722016-11-16 15:01:12 +01003746 curagent->cps_max = atol(args[1]);
3747 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003748 else if (strcmp(args[0], "maxerrrate") == 0) {
Christopher Faulet48026722016-11-16 15:01:12 +01003749 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003750 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n",
3751 file, linenum, args[0]);
Christopher Faulet48026722016-11-16 15:01:12 +01003752 err_code |= ERR_ALERT | ERR_FATAL;
3753 goto out;
3754 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003755 if (alertif_too_many_args(1, file, linenum, args, &err_code))
Christopher Faulet48026722016-11-16 15:01:12 +01003756 goto out;
Christopher Faulet48026722016-11-16 15:01:12 +01003757 curagent->eps_max = atol(args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003758 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003759 else if (strcmp(args[0], "max-frame-size") == 0) {
Christopher Faulet2eca6b52017-02-27 09:40:34 +01003760 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003761 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n",
3762 file, linenum, args[0]);
Christopher Faulet2eca6b52017-02-27 09:40:34 +01003763 err_code |= ERR_ALERT | ERR_FATAL;
3764 goto out;
3765 }
3766 if (alertif_too_many_args(1, file, linenum, args, &err_code))
3767 goto out;
3768 curagent->max_frame_size = atol(args[1]);
3769 if (curagent->max_frame_size < MIN_FRAME_SIZE ||
3770 curagent->max_frame_size > MAX_FRAME_SIZE) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003771 ha_alert("parsing [%s:%d] : '%s' expects a positive integer argument in the range [%d, %d].\n",
3772 file, linenum, args[0], MIN_FRAME_SIZE, MAX_FRAME_SIZE);
Christopher Faulet2eca6b52017-02-27 09:40:34 +01003773 err_code |= ERR_ALERT | ERR_FATAL;
3774 goto out;
3775 }
3776 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003777 else if (strcmp(args[0], "max-waiting-frames") == 0) {
Christopher Faulete8ade382018-01-25 15:32:22 +01003778 if (!*args[1]) {
3779 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n",
3780 file, linenum, args[0]);
3781 err_code |= ERR_ALERT | ERR_FATAL;
3782 goto out;
3783 }
3784 if (alertif_too_many_args(1, file, linenum, args, &err_code))
3785 goto out;
3786 curagent->max_fpa = atol(args[1]);
3787 if (curagent->max_fpa < 1) {
3788 ha_alert("parsing [%s:%d] : '%s' expects a positive integer argument.\n",
3789 file, linenum, args[0]);
3790 err_code |= ERR_ALERT | ERR_FATAL;
3791 goto out;
3792 }
3793 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003794 else if (strcmp(args[0], "register-var-names") == 0) {
Christopher Faulet336d3ef2017-12-22 10:00:55 +01003795 int cur_arg;
3796
3797 if (!*args[1]) {
3798 ha_alert("parsing [%s:%d] : '%s' expects one or more variable names.\n",
3799 file, linenum, args[0]);
3800 err_code |= ERR_ALERT | ERR_FATAL;
3801 goto out;
3802 }
3803 cur_arg = 1;
3804 while (*args[cur_arg]) {
3805 struct spoe_var_placeholder *vph;
3806
3807 if ((vph = calloc(1, sizeof(*vph))) == NULL) {
3808 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
3809 err_code |= ERR_ALERT | ERR_ABORT;
3810 goto out;
3811 }
3812 if ((vph->name = strdup(args[cur_arg])) == NULL) {
Tim Duesterhusb2986132019-06-23 22:10:13 +02003813 free(vph);
Christopher Faulet336d3ef2017-12-22 10:00:55 +01003814 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
3815 err_code |= ERR_ALERT | ERR_ABORT;
3816 goto out;
3817 }
Willy Tarreau2b718102021-04-21 07:32:39 +02003818 LIST_APPEND(&curvars, &vph->list);
Christopher Faulet336d3ef2017-12-22 10:00:55 +01003819 cur_arg++;
3820 }
3821 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003822 else if (strcmp(args[0], "log") == 0) {
Christopher Faulet7250b8f2018-03-26 17:19:01 +02003823 char *errmsg = NULL;
3824
Emeric Brun9533a702021-04-02 10:13:43 +02003825 if (!parse_logsrv(args, &curlogsrvs, (kwm == 1), file, linenum, &errmsg)) {
Christopher Faulet7250b8f2018-03-26 17:19:01 +02003826 ha_alert("parsing [%s:%d] : %s : %s\n", file, linenum, args[0], errmsg);
3827 err_code |= ERR_ALERT | ERR_FATAL;
3828 goto out;
3829 }
3830 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003831 else if (*args[0]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003832 ha_alert("parsing [%s:%d] : unknown keyword '%s' in spoe-agent section.\n",
3833 file, linenum, args[0]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003834 err_code |= ERR_ALERT | ERR_FATAL;
3835 goto out;
3836 }
3837 out:
3838 return err_code;
3839}
Christopher Faulet11610f32017-09-21 10:23:10 +02003840static int
3841cfg_parse_spoe_group(const char *file, int linenum, char **args, int kwm)
3842{
3843 struct spoe_group *grp;
3844 const char *err;
3845 int err_code = 0;
3846
3847 if ((cfg_scope == NULL && curengine != NULL) ||
3848 (cfg_scope != NULL && curengine == NULL) ||
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003849 (curengine != NULL && cfg_scope != NULL && strcmp(curengine, cfg_scope) != 0))
Christopher Faulet11610f32017-09-21 10:23:10 +02003850 goto out;
3851
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003852 if (strcmp(args[0], "spoe-group") == 0) { /* new spoe-group section */
Christopher Faulet11610f32017-09-21 10:23:10 +02003853 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003854 ha_alert("parsing [%s:%d] : missing name for spoe-group section.\n",
3855 file, linenum);
Christopher Faulet11610f32017-09-21 10:23:10 +02003856 err_code |= ERR_ALERT | ERR_ABORT;
3857 goto out;
3858 }
3859 if (alertif_too_many_args(1, file, linenum, args, &err_code)) {
3860 err_code |= ERR_ABORT;
3861 goto out;
3862 }
3863
3864 err = invalid_char(args[1]);
3865 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003866 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
3867 file, linenum, *err, args[0], args[1]);
Christopher Faulet11610f32017-09-21 10:23:10 +02003868 err_code |= ERR_ALERT | ERR_ABORT;
3869 goto out;
3870 }
3871
3872 list_for_each_entry(grp, &curgrps, list) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003873 if (strcmp(grp->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003874 ha_alert("parsing [%s:%d]: spoe-group section '%s' has the same"
3875 " name as another one declared at %s:%d.\n",
3876 file, linenum, args[1], grp->conf.file, grp->conf.line);
Christopher Faulet11610f32017-09-21 10:23:10 +02003877 err_code |= ERR_ALERT | ERR_FATAL;
3878 goto out;
3879 }
3880 }
3881
3882 if ((curgrp = calloc(1, sizeof(*curgrp))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003883 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Faulet11610f32017-09-21 10:23:10 +02003884 err_code |= ERR_ALERT | ERR_ABORT;
3885 goto out;
3886 }
3887
3888 curgrp->id = strdup(args[1]);
3889 curgrp->conf.file = strdup(file);
3890 curgrp->conf.line = linenum;
3891 LIST_INIT(&curgrp->phs);
3892 LIST_INIT(&curgrp->messages);
Willy Tarreau2b718102021-04-21 07:32:39 +02003893 LIST_APPEND(&curgrps, &curgrp->list);
Christopher Faulet11610f32017-09-21 10:23:10 +02003894 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003895 else if (strcmp(args[0], "messages") == 0) {
Christopher Faulet11610f32017-09-21 10:23:10 +02003896 int cur_arg = 1;
3897 while (*args[cur_arg]) {
3898 struct spoe_placeholder *ph = NULL;
3899
3900 list_for_each_entry(ph, &curgrp->phs, list) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003901 if (strcmp(ph->id, args[cur_arg]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003902 ha_alert("parsing [%s:%d]: spoe-message '%s' already used.\n",
3903 file, linenum, args[cur_arg]);
Christopher Faulet11610f32017-09-21 10:23:10 +02003904 err_code |= ERR_ALERT | ERR_FATAL;
3905 goto out;
3906 }
3907 }
3908
3909 if ((ph = calloc(1, sizeof(*ph))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003910 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Faulet11610f32017-09-21 10:23:10 +02003911 err_code |= ERR_ALERT | ERR_ABORT;
3912 goto out;
3913 }
3914 ph->id = strdup(args[cur_arg]);
Willy Tarreau2b718102021-04-21 07:32:39 +02003915 LIST_APPEND(&curgrp->phs, &ph->list);
Christopher Faulet11610f32017-09-21 10:23:10 +02003916 cur_arg++;
3917 }
3918 }
3919 else if (*args[0]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003920 ha_alert("parsing [%s:%d] : unknown keyword '%s' in spoe-group section.\n",
3921 file, linenum, args[0]);
Christopher Faulet11610f32017-09-21 10:23:10 +02003922 err_code |= ERR_ALERT | ERR_FATAL;
3923 goto out;
3924 }
3925 out:
3926 return err_code;
3927}
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003928
3929static int
3930cfg_parse_spoe_message(const char *file, int linenum, char **args, int kwm)
3931{
3932 struct spoe_message *msg;
3933 struct spoe_arg *arg;
3934 const char *err;
3935 char *errmsg = NULL;
3936 int err_code = 0;
3937
3938 if ((cfg_scope == NULL && curengine != NULL) ||
3939 (cfg_scope != NULL && curengine == NULL) ||
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003940 (curengine != NULL && cfg_scope != NULL && strcmp(curengine, cfg_scope) != 0))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003941 goto out;
3942
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003943 if (strcmp(args[0], "spoe-message") == 0) { /* new spoe-message section */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003944 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003945 ha_alert("parsing [%s:%d] : missing name for spoe-message section.\n",
3946 file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003947 err_code |= ERR_ALERT | ERR_ABORT;
3948 goto out;
3949 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003950 if (alertif_too_many_args(1, file, linenum, args, &err_code)) {
3951 err_code |= ERR_ABORT;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003952 goto out;
3953 }
3954
3955 err = invalid_char(args[1]);
3956 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003957 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
3958 file, linenum, *err, args[0], args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003959 err_code |= ERR_ALERT | ERR_ABORT;
3960 goto out;
3961 }
3962
3963 list_for_each_entry(msg, &curmsgs, list) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003964 if (strcmp(msg->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003965 ha_alert("parsing [%s:%d]: spoe-message section '%s' has the same"
3966 " name as another one declared at %s:%d.\n",
3967 file, linenum, args[1], msg->conf.file, msg->conf.line);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003968 err_code |= ERR_ALERT | ERR_FATAL;
3969 goto out;
3970 }
3971 }
3972
3973 if ((curmsg = calloc(1, sizeof(*curmsg))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003974 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003975 err_code |= ERR_ALERT | ERR_ABORT;
3976 goto out;
3977 }
3978
3979 curmsg->id = strdup(args[1]);
3980 curmsg->id_len = strlen(curmsg->id);
3981 curmsg->event = SPOE_EV_NONE;
3982 curmsg->conf.file = strdup(file);
3983 curmsg->conf.line = linenum;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01003984 curmsg->nargs = 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003985 LIST_INIT(&curmsg->args);
Christopher Faulet57583e42017-09-04 15:41:09 +02003986 LIST_INIT(&curmsg->acls);
Christopher Faulet11610f32017-09-21 10:23:10 +02003987 LIST_INIT(&curmsg->by_evt);
3988 LIST_INIT(&curmsg->by_grp);
Willy Tarreau2b718102021-04-21 07:32:39 +02003989 LIST_APPEND(&curmsgs, &curmsg->list);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003990 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003991 else if (strcmp(args[0], "args") == 0) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003992 int cur_arg = 1;
3993
3994 curproxy->conf.args.ctx = ARGC_SPOE;
3995 curproxy->conf.args.file = file;
3996 curproxy->conf.args.line = linenum;
3997 while (*args[cur_arg]) {
3998 char *delim = strchr(args[cur_arg], '=');
3999 int idx = 0;
4000
4001 if ((arg = calloc(1, sizeof(*arg))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004002 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004003 err_code |= ERR_ALERT | ERR_ABORT;
4004 goto out;
4005 }
4006
4007 if (!delim) {
4008 arg->name = NULL;
4009 arg->name_len = 0;
4010 delim = args[cur_arg];
4011 }
4012 else {
4013 arg->name = my_strndup(args[cur_arg], delim - args[cur_arg]);
4014 arg->name_len = delim - args[cur_arg];
4015 delim++;
4016 }
Christopher Fauletb0b42382017-02-23 22:41:09 +01004017 arg->expr = sample_parse_expr((char*[]){delim, NULL},
4018 &idx, file, linenum, &errmsg,
Willy Tarreaue3b57bf2020-02-14 16:50:14 +01004019 &curproxy->conf.args, NULL);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004020 if (arg->expr == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004021 ha_alert("parsing [%s:%d] : '%s': %s.\n", file, linenum, args[0], errmsg);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004022 err_code |= ERR_ALERT | ERR_FATAL;
4023 free(arg->name);
4024 free(arg);
4025 goto out;
4026 }
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01004027 curmsg->nargs++;
Willy Tarreau2b718102021-04-21 07:32:39 +02004028 LIST_APPEND(&curmsg->args, &arg->list);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004029 cur_arg++;
4030 }
4031 curproxy->conf.args.file = NULL;
4032 curproxy->conf.args.line = 0;
4033 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004034 else if (strcmp(args[0], "acl") == 0) {
Christopher Faulet57583e42017-09-04 15:41:09 +02004035 err = invalid_char(args[1]);
4036 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004037 ha_alert("parsing [%s:%d] : character '%c' is not permitted in acl name '%s'.\n",
4038 file, linenum, *err, args[1]);
Christopher Faulet57583e42017-09-04 15:41:09 +02004039 err_code |= ERR_ALERT | ERR_FATAL;
4040 goto out;
4041 }
Tim Duesterhus0cf811a2020-02-05 21:00:50 +01004042 if (strcasecmp(args[1], "or") == 0) {
Tim Duesterhusf1bc24c2020-02-06 22:04:03 +01004043 ha_alert("parsing [%s:%d] : acl name '%s' will never match. 'or' is used to express a "
Tim Duesterhus0cf811a2020-02-05 21:00:50 +01004044 "logical disjunction within a condition.\n",
4045 file, linenum, args[1]);
4046 err_code |= ERR_ALERT | ERR_FATAL;
4047 goto out;
4048 }
Christopher Faulet57583e42017-09-04 15:41:09 +02004049 if (parse_acl((const char **)args + 1, &curmsg->acls, &errmsg, &curproxy->conf.args, file, linenum) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004050 ha_alert("parsing [%s:%d] : error detected while parsing ACL '%s' : %s.\n",
4051 file, linenum, args[1], errmsg);
Christopher Faulet57583e42017-09-04 15:41:09 +02004052 err_code |= ERR_ALERT | ERR_FATAL;
4053 goto out;
4054 }
4055 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004056 else if (strcmp(args[0], "event") == 0) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004057 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004058 ha_alert("parsing [%s:%d] : missing event name.\n", file, linenum);
Christopher Fauletecc537a2017-02-23 22:52:39 +01004059 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004060 goto out;
4061 }
Christopher Faulet57583e42017-09-04 15:41:09 +02004062 /* if (alertif_too_many_args(1, file, linenum, args, &err_code)) */
4063 /* goto out; */
Christopher Fauletecc537a2017-02-23 22:52:39 +01004064
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004065 if (strcmp(args[1], spoe_event_str[SPOE_EV_ON_CLIENT_SESS]) == 0)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004066 curmsg->event = SPOE_EV_ON_CLIENT_SESS;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004067 else if (strcmp(args[1], spoe_event_str[SPOE_EV_ON_SERVER_SESS]) == 0)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004068 curmsg->event = SPOE_EV_ON_SERVER_SESS;
4069
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004070 else if (strcmp(args[1], spoe_event_str[SPOE_EV_ON_TCP_REQ_FE]) == 0)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004071 curmsg->event = SPOE_EV_ON_TCP_REQ_FE;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004072 else if (strcmp(args[1], spoe_event_str[SPOE_EV_ON_TCP_REQ_BE]) == 0)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004073 curmsg->event = SPOE_EV_ON_TCP_REQ_BE;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004074 else if (strcmp(args[1], spoe_event_str[SPOE_EV_ON_TCP_RSP]) == 0)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004075 curmsg->event = SPOE_EV_ON_TCP_RSP;
4076
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004077 else if (strcmp(args[1], spoe_event_str[SPOE_EV_ON_HTTP_REQ_FE]) == 0)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004078 curmsg->event = SPOE_EV_ON_HTTP_REQ_FE;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004079 else if (strcmp(args[1], spoe_event_str[SPOE_EV_ON_HTTP_REQ_BE]) == 0)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004080 curmsg->event = SPOE_EV_ON_HTTP_REQ_BE;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004081 else if (strcmp(args[1], spoe_event_str[SPOE_EV_ON_HTTP_RSP]) == 0)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004082 curmsg->event = SPOE_EV_ON_HTTP_RSP;
4083 else {
Joseph Herlantf1da69d2018-11-15 13:49:02 -08004084 ha_alert("parsing [%s:%d] : unknown event '%s'.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01004085 file, linenum, args[1]);
Christopher Fauletecc537a2017-02-23 22:52:39 +01004086 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004087 goto out;
4088 }
Christopher Faulet57583e42017-09-04 15:41:09 +02004089
4090 if (strcmp(args[2], "if") == 0 || strcmp(args[2], "unless") == 0) {
4091 struct acl_cond *cond;
4092
4093 cond = build_acl_cond(file, linenum, &curmsg->acls,
4094 curproxy, (const char **)args+2,
4095 &errmsg);
4096 if (cond == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004097 ha_alert("parsing [%s:%d] : error detected while "
4098 "parsing an 'event %s' condition : %s.\n",
4099 file, linenum, args[1], errmsg);
Christopher Faulet57583e42017-09-04 15:41:09 +02004100 err_code |= ERR_ALERT | ERR_FATAL;
4101 goto out;
4102 }
4103 curmsg->cond = cond;
4104 }
4105 else if (*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004106 ha_alert("parsing [%s:%d]: 'event %s' expects either 'if' "
4107 "or 'unless' followed by a condition but found '%s'.\n",
4108 file, linenum, args[1], args[2]);
Christopher Faulet57583e42017-09-04 15:41:09 +02004109 err_code |= ERR_ALERT | ERR_FATAL;
4110 goto out;
4111 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004112 }
4113 else if (!*args[0]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004114 ha_alert("parsing [%s:%d] : unknown keyword '%s' in spoe-message section.\n",
4115 file, linenum, args[0]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004116 err_code |= ERR_ALERT | ERR_FATAL;
4117 goto out;
4118 }
4119 out:
4120 free(errmsg);
4121 return err_code;
4122}
4123
4124/* Return -1 on error, else 0 */
4125static int
4126parse_spoe_flt(char **args, int *cur_arg, struct proxy *px,
4127 struct flt_conf *fconf, char **err, void *private)
4128{
4129 struct list backup_sections;
4130 struct spoe_config *conf;
4131 struct spoe_message *msg, *msgback;
Christopher Faulet11610f32017-09-21 10:23:10 +02004132 struct spoe_group *grp, *grpback;
4133 struct spoe_placeholder *ph, *phback;
Christopher Faulet336d3ef2017-12-22 10:00:55 +01004134 struct spoe_var_placeholder *vph, *vphback;
Christopher Faulet7250b8f2018-03-26 17:19:01 +02004135 struct logsrv *logsrv, *logsrvback;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004136 char *file = NULL, *engine = NULL;
4137 int ret, pos = *cur_arg + 1;
4138
Christopher Faulet84c844e2018-03-23 14:37:14 +01004139 LIST_INIT(&curmsgs);
4140 LIST_INIT(&curgrps);
4141 LIST_INIT(&curmphs);
4142 LIST_INIT(&curgphs);
4143 LIST_INIT(&curvars);
Christopher Faulet7250b8f2018-03-26 17:19:01 +02004144 LIST_INIT(&curlogsrvs);
Christopher Faulet0e0f0852018-03-26 17:20:36 +02004145 curpxopts = 0;
4146 curpxopts2 = 0;
Christopher Faulet84c844e2018-03-23 14:37:14 +01004147
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004148 conf = calloc(1, sizeof(*conf));
4149 if (conf == NULL) {
4150 memprintf(err, "%s: out of memory", args[*cur_arg]);
4151 goto error;
4152 }
4153 conf->proxy = px;
4154
4155 while (*args[pos]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004156 if (strcmp(args[pos], "config") == 0) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004157 if (!*args[pos+1]) {
4158 memprintf(err, "'%s' : '%s' option without value",
4159 args[*cur_arg], args[pos]);
4160 goto error;
4161 }
4162 file = args[pos+1];
4163 pos += 2;
4164 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004165 else if (strcmp(args[pos], "engine") == 0) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004166 if (!*args[pos+1]) {
4167 memprintf(err, "'%s' : '%s' option without value",
4168 args[*cur_arg], args[pos]);
4169 goto error;
4170 }
4171 engine = args[pos+1];
4172 pos += 2;
4173 }
4174 else {
4175 memprintf(err, "unknown keyword '%s'", args[pos]);
4176 goto error;
4177 }
4178 }
4179 if (file == NULL) {
4180 memprintf(err, "'%s' : missing config file", args[*cur_arg]);
4181 goto error;
4182 }
4183
4184 /* backup sections and register SPOE sections */
4185 LIST_INIT(&backup_sections);
4186 cfg_backup_sections(&backup_sections);
Christopher Faulet11610f32017-09-21 10:23:10 +02004187 cfg_register_section("spoe-agent", cfg_parse_spoe_agent, NULL);
4188 cfg_register_section("spoe-group", cfg_parse_spoe_group, NULL);
William Lallemandd2ff56d2017-10-16 11:06:50 +02004189 cfg_register_section("spoe-message", cfg_parse_spoe_message, NULL);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004190
4191 /* Parse SPOE filter configuration file */
4192 curengine = engine;
4193 curproxy = px;
4194 curagent = NULL;
4195 curmsg = NULL;
4196 ret = readcfgfile(file);
4197 curproxy = NULL;
4198
4199 /* unregister SPOE sections and restore previous sections */
4200 cfg_unregister_sections();
4201 cfg_restore_sections(&backup_sections);
4202
4203 if (ret == -1) {
4204 memprintf(err, "Could not open configuration file %s : %s",
4205 file, strerror(errno));
4206 goto error;
4207 }
4208 if (ret & (ERR_ABORT|ERR_FATAL)) {
4209 memprintf(err, "Error(s) found in configuration file %s", file);
4210 goto error;
4211 }
4212
4213 /* Check SPOE agent */
4214 if (curagent == NULL) {
4215 memprintf(err, "No SPOE agent found in file %s", file);
4216 goto error;
4217 }
4218 if (curagent->b.name == NULL) {
4219 memprintf(err, "No backend declared for SPOE agent '%s' declared at %s:%d",
4220 curagent->id, curagent->conf.file, curagent->conf.line);
4221 goto error;
4222 }
Christopher Fauletf7a30922016-11-10 15:04:51 +01004223 if (curagent->timeout.hello == TICK_ETERNITY ||
4224 curagent->timeout.idle == TICK_ETERNITY ||
Christopher Fauletf7a30922016-11-10 15:04:51 +01004225 curagent->timeout.processing == TICK_ETERNITY) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004226 ha_warning("Proxy '%s': missing timeouts for SPOE agent '%s' declare at %s:%d.\n"
4227 " | While not properly invalid, you will certainly encounter various problems\n"
4228 " | with such a configuration. To fix this, please ensure that all following\n"
4229 " | timeouts are set to a non-zero value: 'hello', 'idle', 'processing'.\n",
4230 px->id, curagent->id, curagent->conf.file, curagent->conf.line);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004231 }
4232 if (curagent->var_pfx == NULL) {
4233 char *tmp = curagent->id;
4234
4235 while (*tmp) {
Willy Tarreau90807112020-02-25 08:16:33 +01004236 if (!isalnum((unsigned char)*tmp) && *tmp != '_' && *tmp != '.') {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004237 memprintf(err, "Invalid variable prefix '%s' for SPOE agent '%s' declared at %s:%d. "
4238 "Use 'option var-prefix' to set it. Only [a-zA-Z0-9_.] chars are supported.\n",
4239 curagent->id, curagent->id, curagent->conf.file, curagent->conf.line);
4240 goto error;
4241 }
4242 tmp++;
4243 }
4244 curagent->var_pfx = strdup(curagent->id);
4245 }
4246
Christopher Fauletb7426d12018-03-21 14:12:17 +01004247 if (curagent->var_on_error) {
4248 struct arg arg;
4249
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004250 trash.data = snprintf(trash.area, trash.size, "txn.%s.%s",
Christopher Fauletb7426d12018-03-21 14:12:17 +01004251 curagent->var_pfx, curagent->var_on_error);
4252
4253 arg.type = ARGT_STR;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004254 arg.data.str.area = trash.area;
4255 arg.data.str.data = trash.data;
William Dauchyafb93682021-01-05 11:14:58 +01004256 arg.data.str.size = 0; /* Set it to 0 to not release it in vars_check_arg() */
Christopher Fauletb7426d12018-03-21 14:12:17 +01004257 if (!vars_check_arg(&arg, err)) {
4258 memprintf(err, "SPOE agent '%s': failed to register variable %s.%s (%s)",
4259 curagent->id, curagent->var_pfx, curagent->var_on_error, *err);
4260 goto error;
4261 }
4262 }
4263
Christopher Faulet36bda1c2018-03-22 09:08:20 +01004264 if (curagent->var_t_process) {
4265 struct arg arg;
4266
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004267 trash.data = snprintf(trash.area, trash.size, "txn.%s.%s",
Christopher Faulet36bda1c2018-03-22 09:08:20 +01004268 curagent->var_pfx, curagent->var_t_process);
4269
4270 arg.type = ARGT_STR;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004271 arg.data.str.area = trash.area;
4272 arg.data.str.data = trash.data;
William Dauchyafb93682021-01-05 11:14:58 +01004273 arg.data.str.size = 0; /* Set it to 0 to not release it in vars_check_arg() */
Christopher Faulet36bda1c2018-03-22 09:08:20 +01004274 if (!vars_check_arg(&arg, err)) {
4275 memprintf(err, "SPOE agent '%s': failed to register variable %s.%s (%s)",
4276 curagent->id, curagent->var_pfx, curagent->var_t_process, *err);
4277 goto error;
4278 }
4279 }
4280
4281 if (curagent->var_t_total) {
4282 struct arg arg;
4283
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004284 trash.data = snprintf(trash.area, trash.size, "txn.%s.%s",
Christopher Faulet36bda1c2018-03-22 09:08:20 +01004285 curagent->var_pfx, curagent->var_t_total);
4286
4287 arg.type = ARGT_STR;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004288 arg.data.str.area = trash.area;
4289 arg.data.str.data = trash.data;
William Dauchyafb93682021-01-05 11:14:58 +01004290 arg.data.str.size = 0; /* Set it to 0 to not release it in vars_check_arg() */
Christopher Faulet36bda1c2018-03-22 09:08:20 +01004291 if (!vars_check_arg(&arg, err)) {
4292 memprintf(err, "SPOE agent '%s': failed to register variable %s.%s (%s)",
4293 curagent->id, curagent->var_pfx, curagent->var_t_process, *err);
4294 goto error;
4295 }
4296 }
4297
Christopher Faulet11610f32017-09-21 10:23:10 +02004298 if (LIST_ISEMPTY(&curmphs) && LIST_ISEMPTY(&curgphs)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004299 ha_warning("Proxy '%s': No message/group used by SPOE agent '%s' declared at %s:%d.\n",
4300 px->id, curagent->id, curagent->conf.file, curagent->conf.line);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004301 goto finish;
4302 }
4303
Christopher Faulet11610f32017-09-21 10:23:10 +02004304 /* Replace placeholders by the corresponding messages for the SPOE
4305 * agent */
4306 list_for_each_entry(ph, &curmphs, list) {
4307 list_for_each_entry(msg, &curmsgs, list) {
Christopher Fauleta21b0642017-01-09 16:56:23 +01004308 struct spoe_arg *arg;
4309 unsigned int where;
4310
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004311 if (strcmp(msg->id, ph->id) == 0) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004312 if ((px->cap & (PR_CAP_FE|PR_CAP_BE)) == (PR_CAP_FE|PR_CAP_BE)) {
4313 if (msg->event == SPOE_EV_ON_TCP_REQ_BE)
4314 msg->event = SPOE_EV_ON_TCP_REQ_FE;
4315 if (msg->event == SPOE_EV_ON_HTTP_REQ_BE)
4316 msg->event = SPOE_EV_ON_HTTP_REQ_FE;
4317 }
4318 if (!(px->cap & PR_CAP_FE) && (msg->event == SPOE_EV_ON_CLIENT_SESS ||
4319 msg->event == SPOE_EV_ON_TCP_REQ_FE ||
4320 msg->event == SPOE_EV_ON_HTTP_REQ_FE)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004321 ha_warning("Proxy '%s': frontend event used on a backend proxy at %s:%d.\n",
4322 px->id, msg->conf.file, msg->conf.line);
Christopher Faulet11610f32017-09-21 10:23:10 +02004323 goto next_mph;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004324 }
4325 if (msg->event == SPOE_EV_NONE) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004326 ha_warning("Proxy '%s': Ignore SPOE message '%s' without event at %s:%d.\n",
4327 px->id, msg->id, msg->conf.file, msg->conf.line);
Christopher Faulet11610f32017-09-21 10:23:10 +02004328 goto next_mph;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004329 }
Christopher Fauleta21b0642017-01-09 16:56:23 +01004330
4331 where = 0;
4332 switch (msg->event) {
4333 case SPOE_EV_ON_CLIENT_SESS:
4334 where |= SMP_VAL_FE_CON_ACC;
4335 break;
4336
4337 case SPOE_EV_ON_TCP_REQ_FE:
4338 where |= SMP_VAL_FE_REQ_CNT;
4339 break;
4340
4341 case SPOE_EV_ON_HTTP_REQ_FE:
4342 where |= SMP_VAL_FE_HRQ_HDR;
4343 break;
4344
4345 case SPOE_EV_ON_TCP_REQ_BE:
4346 if (px->cap & PR_CAP_FE)
4347 where |= SMP_VAL_FE_REQ_CNT;
4348 if (px->cap & PR_CAP_BE)
4349 where |= SMP_VAL_BE_REQ_CNT;
4350 break;
4351
4352 case SPOE_EV_ON_HTTP_REQ_BE:
4353 if (px->cap & PR_CAP_FE)
4354 where |= SMP_VAL_FE_HRQ_HDR;
4355 if (px->cap & PR_CAP_BE)
4356 where |= SMP_VAL_BE_HRQ_HDR;
4357 break;
4358
4359 case SPOE_EV_ON_SERVER_SESS:
4360 where |= SMP_VAL_BE_SRV_CON;
4361 break;
4362
4363 case SPOE_EV_ON_TCP_RSP:
4364 if (px->cap & PR_CAP_FE)
4365 where |= SMP_VAL_FE_RES_CNT;
4366 if (px->cap & PR_CAP_BE)
4367 where |= SMP_VAL_BE_RES_CNT;
4368 break;
4369
4370 case SPOE_EV_ON_HTTP_RSP:
4371 if (px->cap & PR_CAP_FE)
4372 where |= SMP_VAL_FE_HRS_HDR;
4373 if (px->cap & PR_CAP_BE)
4374 where |= SMP_VAL_BE_HRS_HDR;
4375 break;
4376
4377 default:
4378 break;
4379 }
4380
4381 list_for_each_entry(arg, &msg->args, list) {
4382 if (!(arg->expr->fetch->val & where)) {
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004383 memprintf(err, "Ignore SPOE message '%s' at %s:%d: "
Christopher Fauleta21b0642017-01-09 16:56:23 +01004384 "some args extract information from '%s', "
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004385 "none of which is available here ('%s')",
4386 msg->id, msg->conf.file, msg->conf.line,
Christopher Fauleta21b0642017-01-09 16:56:23 +01004387 sample_ckp_names(arg->expr->fetch->use),
4388 sample_ckp_names(where));
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004389 goto error;
Christopher Fauleta21b0642017-01-09 16:56:23 +01004390 }
4391 }
4392
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004393 msg->agent = curagent;
Willy Tarreau2b718102021-04-21 07:32:39 +02004394 LIST_APPEND(&curagent->events[msg->event], &msg->by_evt);
Christopher Faulet11610f32017-09-21 10:23:10 +02004395 goto next_mph;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004396 }
4397 }
4398 memprintf(err, "SPOE agent '%s' try to use undefined SPOE message '%s' at %s:%d",
Christopher Faulet11610f32017-09-21 10:23:10 +02004399 curagent->id, ph->id, curagent->conf.file, curagent->conf.line);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004400 goto error;
Christopher Faulet11610f32017-09-21 10:23:10 +02004401 next_mph:
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004402 continue;
4403 }
4404
Christopher Faulet11610f32017-09-21 10:23:10 +02004405 /* Replace placeholders by the corresponding groups for the SPOE
4406 * agent */
4407 list_for_each_entry(ph, &curgphs, list) {
4408 list_for_each_entry_safe(grp, grpback, &curgrps, list) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004409 if (strcmp(grp->id, ph->id) == 0) {
Christopher Faulet11610f32017-09-21 10:23:10 +02004410 grp->agent = curagent;
Willy Tarreau2b718102021-04-21 07:32:39 +02004411 LIST_DELETE(&grp->list);
4412 LIST_APPEND(&curagent->groups, &grp->list);
Christopher Faulet11610f32017-09-21 10:23:10 +02004413 goto next_aph;
4414 }
4415 }
4416 memprintf(err, "SPOE agent '%s' try to use undefined SPOE group '%s' at %s:%d",
4417 curagent->id, ph->id, curagent->conf.file, curagent->conf.line);
4418 goto error;
4419 next_aph:
4420 continue;
4421 }
4422
4423 /* Replace placeholders by the corresponding message for each SPOE
4424 * group of the SPOE agent */
4425 list_for_each_entry(grp, &curagent->groups, list) {
4426 list_for_each_entry_safe(ph, phback, &grp->phs, list) {
4427 list_for_each_entry(msg, &curmsgs, list) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004428 if (strcmp(msg->id, ph->id) == 0) {
Christopher Faulet11610f32017-09-21 10:23:10 +02004429 if (msg->group != NULL) {
4430 memprintf(err, "SPOE message '%s' already belongs to "
4431 "the SPOE group '%s' declare at %s:%d",
4432 msg->id, msg->group->id,
4433 msg->group->conf.file,
4434 msg->group->conf.line);
4435 goto error;
4436 }
4437
4438 /* Scope for arguments are not checked for now. We will check
4439 * them only if a rule use the corresponding SPOE group. */
4440 msg->agent = curagent;
4441 msg->group = grp;
Willy Tarreau2b718102021-04-21 07:32:39 +02004442 LIST_DELETE(&ph->list);
4443 LIST_APPEND(&grp->messages, &msg->by_grp);
Christopher Faulet11610f32017-09-21 10:23:10 +02004444 goto next_mph_grp;
4445 }
4446 }
4447 memprintf(err, "SPOE group '%s' try to use undefined SPOE message '%s' at %s:%d",
4448 grp->id, ph->id, curagent->conf.file, curagent->conf.line);
4449 goto error;
4450 next_mph_grp:
4451 continue;
4452 }
4453 }
4454
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004455 finish:
Christopher Faulet11610f32017-09-21 10:23:10 +02004456 /* move curmsgs to the agent message list */
4457 curmsgs.n->p = &curagent->messages;
4458 curmsgs.p->n = &curagent->messages;
4459 curagent->messages = curmsgs;
4460 LIST_INIT(&curmsgs);
4461
Christopher Faulet7ee86672017-09-19 11:08:28 +02004462 conf->id = strdup(engine ? engine : curagent->id);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004463 conf->agent = curagent;
Christopher Faulet434b8522021-08-02 17:51:01 +02004464 curagent->spoe_conf = conf;
Christopher Faulet7250b8f2018-03-26 17:19:01 +02004465
4466 /* Start agent's proxy initialization here. It will be finished during
4467 * the filter init. */
4468 memset(&conf->agent_fe, 0, sizeof(conf->agent_fe));
4469 init_new_proxy(&conf->agent_fe);
4470 conf->agent_fe.id = conf->agent->id;
4471 conf->agent_fe.parent = conf->agent;
Christopher Faulet0e0f0852018-03-26 17:20:36 +02004472 conf->agent_fe.options |= curpxopts;
4473 conf->agent_fe.options2 |= curpxopts2;
Christopher Faulet7250b8f2018-03-26 17:19:01 +02004474
4475 list_for_each_entry_safe(logsrv, logsrvback, &curlogsrvs, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004476 LIST_DELETE(&logsrv->list);
4477 LIST_APPEND(&conf->agent_fe.logsrvs, &logsrv->list);
Christopher Faulet7250b8f2018-03-26 17:19:01 +02004478 }
4479
Christopher Faulet11610f32017-09-21 10:23:10 +02004480 list_for_each_entry_safe(ph, phback, &curmphs, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004481 LIST_DELETE(&ph->list);
Christopher Faulet11610f32017-09-21 10:23:10 +02004482 spoe_release_placeholder(ph);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004483 }
Christopher Faulet11610f32017-09-21 10:23:10 +02004484 list_for_each_entry_safe(ph, phback, &curgphs, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004485 LIST_DELETE(&ph->list);
Christopher Faulet11610f32017-09-21 10:23:10 +02004486 spoe_release_placeholder(ph);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004487 }
Christopher Faulet336d3ef2017-12-22 10:00:55 +01004488 list_for_each_entry_safe(vph, vphback, &curvars, list) {
4489 struct arg arg;
4490
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004491 trash.data = snprintf(trash.area, trash.size, "proc.%s.%s",
Christopher Faulet336d3ef2017-12-22 10:00:55 +01004492 curagent->var_pfx, vph->name);
4493
4494 arg.type = ARGT_STR;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004495 arg.data.str.area = trash.area;
4496 arg.data.str.data = trash.data;
William Dauchyafb93682021-01-05 11:14:58 +01004497 arg.data.str.size = 0; /* Set it to 0 to not release it in vars_check_arg() */
Christopher Faulet336d3ef2017-12-22 10:00:55 +01004498 if (!vars_check_arg(&arg, err)) {
4499 memprintf(err, "SPOE agent '%s': failed to register variable %s.%s (%s)",
4500 curagent->id, curagent->var_pfx, vph->name, *err);
4501 goto error;
4502 }
4503
Willy Tarreau2b718102021-04-21 07:32:39 +02004504 LIST_DELETE(&vph->list);
Christopher Faulet336d3ef2017-12-22 10:00:55 +01004505 free(vph->name);
4506 free(vph);
4507 }
Christopher Faulet11610f32017-09-21 10:23:10 +02004508 list_for_each_entry_safe(grp, grpback, &curgrps, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004509 LIST_DELETE(&grp->list);
Christopher Faulet11610f32017-09-21 10:23:10 +02004510 spoe_release_group(grp);
4511 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004512 *cur_arg = pos;
Christopher Faulet3b386a32017-02-23 10:17:15 +01004513 fconf->id = spoe_filter_id;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004514 fconf->ops = &spoe_ops;
4515 fconf->conf = conf;
4516 return 0;
4517
4518 error:
Christopher Faulet8ef75252017-02-20 22:56:03 +01004519 spoe_release_agent(curagent);
Christopher Faulet11610f32017-09-21 10:23:10 +02004520 list_for_each_entry_safe(ph, phback, &curmphs, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004521 LIST_DELETE(&ph->list);
Christopher Faulet11610f32017-09-21 10:23:10 +02004522 spoe_release_placeholder(ph);
4523 }
4524 list_for_each_entry_safe(ph, phback, &curgphs, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004525 LIST_DELETE(&ph->list);
Christopher Faulet11610f32017-09-21 10:23:10 +02004526 spoe_release_placeholder(ph);
4527 }
Christopher Faulet336d3ef2017-12-22 10:00:55 +01004528 list_for_each_entry_safe(vph, vphback, &curvars, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004529 LIST_DELETE(&vph->list);
Christopher Faulet336d3ef2017-12-22 10:00:55 +01004530 free(vph->name);
4531 free(vph);
4532 }
Christopher Faulet11610f32017-09-21 10:23:10 +02004533 list_for_each_entry_safe(grp, grpback, &curgrps, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004534 LIST_DELETE(&grp->list);
Christopher Faulet11610f32017-09-21 10:23:10 +02004535 spoe_release_group(grp);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004536 }
4537 list_for_each_entry_safe(msg, msgback, &curmsgs, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004538 LIST_DELETE(&msg->list);
Christopher Faulet8ef75252017-02-20 22:56:03 +01004539 spoe_release_message(msg);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004540 }
Christopher Faulet7250b8f2018-03-26 17:19:01 +02004541 list_for_each_entry_safe(logsrv, logsrvback, &curlogsrvs, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004542 LIST_DELETE(&logsrv->list);
Christopher Faulet7250b8f2018-03-26 17:19:01 +02004543 free(logsrv);
4544 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004545 free(conf);
4546 return -1;
4547}
4548
Christopher Faulet344c4ab2017-09-22 10:20:13 +02004549/* Send message of a SPOE group. This is the action_ptr callback of a rule
4550 * associated to a "send-spoe-group" action.
4551 *
Christopher Faulet13403762019-12-13 09:01:57 +01004552 * It returns ACT_RET_CONT if processing is finished (with error or not), it returns
4553 * ACT_RET_YIELD if the action is in progress. */
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004554static enum act_return
4555spoe_send_group(struct act_rule *rule, struct proxy *px,
4556 struct session *sess, struct stream *s, int flags)
4557{
4558 struct filter *filter;
4559 struct spoe_agent *agent = NULL;
4560 struct spoe_group *group = NULL;
4561 struct spoe_context *ctx = NULL;
4562 int ret, dir;
4563
4564 list_for_each_entry(filter, &s->strm_flt.filters, list) {
4565 if (filter->config == rule->arg.act.p[0]) {
4566 agent = rule->arg.act.p[2];
4567 group = rule->arg.act.p[3];
4568 ctx = filter->ctx;
4569 break;
4570 }
4571 }
4572 if (agent == NULL || group == NULL || ctx == NULL)
Christopher Faulet13403762019-12-13 09:01:57 +01004573 return ACT_RET_CONT;
Christopher Faulet344c4ab2017-09-22 10:20:13 +02004574 if (ctx->state == SPOE_CTX_ST_NONE)
4575 return ACT_RET_CONT;
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004576
Christopher Faulet344c4ab2017-09-22 10:20:13 +02004577 switch (rule->from) {
4578 case ACT_F_TCP_REQ_SES: dir = SMP_OPT_DIR_REQ; break;
4579 case ACT_F_TCP_REQ_CNT: dir = SMP_OPT_DIR_REQ; break;
4580 case ACT_F_TCP_RES_CNT: dir = SMP_OPT_DIR_RES; break;
4581 case ACT_F_HTTP_REQ: dir = SMP_OPT_DIR_REQ; break;
4582 case ACT_F_HTTP_RES: dir = SMP_OPT_DIR_RES; break;
4583 default:
4584 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
4585 " - internal error while execute spoe-send-group\n",
4586 (int)now.tv_sec, (int)now.tv_usec, agent->id,
4587 __FUNCTION__, s);
4588 send_log(px, LOG_ERR, "SPOE: [%s] internal error while execute spoe-send-group\n",
4589 agent->id);
4590 return ACT_RET_CONT;
4591 }
4592
4593 ret = spoe_process_group(s, ctx, group, dir);
4594 if (ret == 1)
4595 return ACT_RET_CONT;
4596 else if (ret == 0) {
Christopher Faulet105ba6c2019-12-18 14:41:51 +01004597 if (flags & ACT_OPT_FINAL) {
Christopher Faulet344c4ab2017-09-22 10:20:13 +02004598 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
4599 " - failed to process group '%s': interrupted by caller\n",
4600 (int)now.tv_sec, (int)now.tv_usec,
4601 agent->id, __FUNCTION__, s, group->id);
4602 ctx->status_code = SPOE_CTX_ERR_INTERRUPT;
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01004603 spoe_stop_processing(agent, ctx);
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02004604 spoe_handle_processing_error(s, agent, ctx, dir);
Christopher Faulet344c4ab2017-09-22 10:20:13 +02004605 return ACT_RET_CONT;
4606 }
4607 return ACT_RET_YIELD;
4608 }
4609 else
Christopher Faulet13403762019-12-13 09:01:57 +01004610 return ACT_RET_CONT;
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004611}
4612
4613/* Check an "send-spoe-group" action. Here, we'll try to find the real SPOE
4614 * group associated to <rule>. The format of an rule using 'send-spoe-group'
4615 * action should be:
4616 *
4617 * (http|tcp)-(request|response) send-spoe-group <engine-id> <group-id>
4618 *
4619 * So, we'll loop on each configured SPOE filter for the proxy <px> to find the
4620 * SPOE engine matching <engine-id>. And then, we'll try to find the good group
4621 * matching <group-id>. Finally, we'll check all messages referenced by the SPOE
4622 * group.
4623 *
4624 * The function returns 1 in success case, otherwise, it returns 0 and err is
4625 * filled.
4626 */
4627static int
4628check_send_spoe_group(struct act_rule *rule, struct proxy *px, char **err)
4629{
4630 struct flt_conf *fconf;
4631 struct spoe_config *conf;
4632 struct spoe_agent *agent = NULL;
4633 struct spoe_group *group;
4634 struct spoe_message *msg;
4635 char *engine_id = rule->arg.act.p[0];
4636 char *group_id = rule->arg.act.p[1];
4637 unsigned int where = 0;
4638
4639 switch (rule->from) {
4640 case ACT_F_TCP_REQ_SES: where = SMP_VAL_FE_SES_ACC; break;
4641 case ACT_F_TCP_REQ_CNT: where = SMP_VAL_FE_REQ_CNT; break;
4642 case ACT_F_TCP_RES_CNT: where = SMP_VAL_BE_RES_CNT; break;
4643 case ACT_F_HTTP_REQ: where = SMP_VAL_FE_HRQ_HDR; break;
4644 case ACT_F_HTTP_RES: where = SMP_VAL_BE_HRS_HDR; break;
4645 default:
4646 memprintf(err,
4647 "internal error, unexpected rule->from=%d, please report this bug!",
4648 rule->from);
4649 goto error;
4650 }
4651
4652 /* Try to find the SPOE engine by checking all SPOE filters for proxy
4653 * <px> */
4654 list_for_each_entry(fconf, &px->filter_configs, list) {
4655 conf = fconf->conf;
4656
4657 /* This is not an SPOE filter */
4658 if (fconf->id != spoe_filter_id)
4659 continue;
4660
4661 /* This is the good engine */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004662 if (strcmp(conf->id, engine_id) == 0) {
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004663 agent = conf->agent;
4664 break;
4665 }
4666 }
4667 if (agent == NULL) {
4668 memprintf(err, "unable to find SPOE engine '%s' used by the send-spoe-group '%s'",
4669 engine_id, group_id);
4670 goto error;
4671 }
4672
4673 /* Try to find the right group */
4674 list_for_each_entry(group, &agent->groups, list) {
4675 /* This is the good group */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004676 if (strcmp(group->id, group_id) == 0)
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004677 break;
4678 }
4679 if (&group->list == &agent->groups) {
4680 memprintf(err, "unable to find SPOE group '%s' into SPOE engine '%s' configuration",
4681 group_id, engine_id);
4682 goto error;
4683 }
4684
4685 /* Ok, we found the group, we need to check messages and their
4686 * arguments */
4687 list_for_each_entry(msg, &group->messages, by_grp) {
4688 struct spoe_arg *arg;
4689
4690 list_for_each_entry(arg, &msg->args, list) {
4691 if (!(arg->expr->fetch->val & where)) {
4692 memprintf(err, "Invalid SPOE message '%s' used by SPOE group '%s' at %s:%d: "
4693 "some args extract information from '%s',"
4694 "none of which is available here ('%s')",
4695 msg->id, group->id, msg->conf.file, msg->conf.line,
4696 sample_ckp_names(arg->expr->fetch->use),
4697 sample_ckp_names(where));
4698 goto error;
4699 }
4700 }
4701 }
4702
4703 free(engine_id);
4704 free(group_id);
4705 rule->arg.act.p[0] = fconf; /* Associate filter config with the rule */
4706 rule->arg.act.p[1] = conf; /* Associate SPOE config with the rule */
4707 rule->arg.act.p[2] = agent; /* Associate SPOE agent with the rule */
4708 rule->arg.act.p[3] = group; /* Associate SPOE group with the rule */
4709 return 1;
4710
4711 error:
4712 free(engine_id);
4713 free(group_id);
4714 return 0;
4715}
4716
4717/* Parse 'send-spoe-group' action following the format:
4718 *
4719 * ... send-spoe-group <engine-id> <group-id>
4720 *
4721 * It returns ACT_RET_PRS_ERR if fails and <err> is filled with an error
4722 * message. Otherwise, it returns ACT_RET_PRS_OK and parsing engine and group
4723 * ids are saved and used later, when the rule will be checked.
4724 */
4725static enum act_parse_ret
4726parse_send_spoe_group(const char **args, int *orig_arg, struct proxy *px,
4727 struct act_rule *rule, char **err)
4728{
4729 if (!*args[*orig_arg] || !*args[*orig_arg+1] ||
4730 (*args[*orig_arg+2] && strcmp(args[*orig_arg+2], "if") != 0 && strcmp(args[*orig_arg+2], "unless") != 0)) {
4731 memprintf(err, "expects 2 arguments: <engine-id> <group-id>");
4732 return ACT_RET_PRS_ERR;
4733 }
4734 rule->arg.act.p[0] = strdup(args[*orig_arg]); /* Copy the SPOE engine id */
4735 rule->arg.act.p[1] = strdup(args[*orig_arg+1]); /* Cope the SPOE group id */
4736
4737 (*orig_arg) += 2;
4738
4739 rule->action = ACT_CUSTOM;
4740 rule->action_ptr = spoe_send_group;
4741 rule->check_ptr = check_send_spoe_group;
4742 return ACT_RET_PRS_OK;
4743}
4744
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004745
4746/* Declare the filter parser for "spoe" keyword */
4747static struct flt_kw_list flt_kws = { "SPOE", { }, {
4748 { "spoe", parse_spoe_flt, NULL },
4749 { NULL, NULL, NULL },
4750 }
4751};
4752
Willy Tarreau0108d902018-11-25 19:14:37 +01004753INITCALL1(STG_REGISTER, flt_register_keywords, &flt_kws);
4754
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004755/* Delcate the action parser for "spoe-action" keyword */
4756static struct action_kw_list tcp_req_action_kws = { { }, {
4757 { "send-spoe-group", parse_send_spoe_group },
4758 { /* END */ },
4759 }
4760};
Willy Tarreau0108d902018-11-25 19:14:37 +01004761
4762INITCALL1(STG_REGISTER, tcp_req_cont_keywords_register, &tcp_req_action_kws);
4763
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004764static struct action_kw_list tcp_res_action_kws = { { }, {
4765 { "send-spoe-group", parse_send_spoe_group },
4766 { /* END */ },
4767 }
4768};
Willy Tarreau0108d902018-11-25 19:14:37 +01004769
4770INITCALL1(STG_REGISTER, tcp_res_cont_keywords_register, &tcp_res_action_kws);
4771
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004772static struct action_kw_list http_req_action_kws = { { }, {
4773 { "send-spoe-group", parse_send_spoe_group },
4774 { /* END */ },
4775 }
4776};
Willy Tarreau0108d902018-11-25 19:14:37 +01004777
4778INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_action_kws);
4779
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004780static struct action_kw_list http_res_action_kws = { { }, {
4781 { "send-spoe-group", parse_send_spoe_group },
4782 { /* END */ },
4783 }
4784};
4785
Willy Tarreau0108d902018-11-25 19:14:37 +01004786INITCALL1(STG_REGISTER, http_res_keywords_register, &http_res_action_kws);