blob: ff900436e510997757191cecce3b940cbf8df04f [file] [log] [blame]
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001/*
2 * Stream processing offload engine management.
3 *
4 * Copyright 2016 HAProxy Technologies, Christopher Faulet <cfaulet@haproxy.com>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12#include <ctype.h>
13#include <errno.h>
14
Willy Tarreaudcc048a2020-06-04 19:11:43 +020015#include <haproxy/acl.h>
Willy Tarreau122eba92020-06-04 10:15:32 +020016#include <haproxy/action-t.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020017#include <haproxy/api.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020018#include <haproxy/arg.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020019#include <haproxy/cfgparse.h>
Willy Tarreauc7babd82020-06-04 21:29:29 +020020#include <haproxy/filters.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020021#include <haproxy/freq_ctr.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020022#include <haproxy/frontend.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020023#include <haproxy/global.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020024#include <haproxy/http_rules.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020025#include <haproxy/log.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020026#include <haproxy/pool.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020027#include <haproxy/proxy.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020028#include <haproxy/sample.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020029#include <haproxy/session.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020030#include <haproxy/signal.h>
Christopher Faulet1d7d0f82021-02-19 10:56:41 +010031#include <haproxy/sink.h>
Willy Tarreau6c58ab02020-06-04 22:35:49 +020032#include <haproxy/spoe.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020033#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020034#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020035#include <haproxy/task.h>
Willy Tarreau8b550af2020-06-04 17:42:48 +020036#include <haproxy/tcp_rules.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020037#include <haproxy/thread.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020038#include <haproxy/time.h>
Willy Tarreaue16ada12021-05-08 12:57:17 +020039#include <haproxy/tools.h>
Willy Tarreaua1718922020-06-04 16:25:31 +020040#include <haproxy/vars.h>
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020041
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020042
43#if defined(DEBUG_SPOE) || defined(DEBUG_FULL)
44#define SPOE_PRINTF(x...) fprintf(x)
Christopher Fauletb077cdc2018-01-24 16:37:57 +010045#define SPOE_DEBUG_STMT(statement) statement
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020046#else
47#define SPOE_PRINTF(x...)
Christopher Fauletb077cdc2018-01-24 16:37:57 +010048#define SPOE_DEBUG_STMT(statement)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020049#endif
50
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +010051/* Reserved 4 bytes to the frame size. So a frame and its size can be written
52 * together in a buffer */
53#define MAX_FRAME_SIZE global.tune.bufsize - 4
54
55/* The minimum size for a frame */
56#define MIN_FRAME_SIZE 256
57
Christopher Fauletf51f5fa2017-01-19 10:01:12 +010058/* Reserved for the metadata and the frame type.
59 * So <MAX_FRAME_SIZE> - <FRAME_HDR_SIZE> is the maximum payload size */
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +010060#define FRAME_HDR_SIZE 32
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020061
Christopher Fauletf51f5fa2017-01-19 10:01:12 +010062/* Helper to get SPOE ctx inside an appctx */
Christopher Faulet42bfa462017-01-04 14:14:19 +010063#define SPOE_APPCTX(appctx) ((struct spoe_appctx *)((appctx)->ctx.spoe.ptr))
64
Christopher Faulet3b386a32017-02-23 10:17:15 +010065/* SPOE filter id. Used to identify SPOE filters */
66const char *spoe_filter_id = "SPOE filter";
67
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020068/* Set if the handle on SIGUSR1 is registered */
69static int sighandler_registered = 0;
70
71/* proxy used during the parsing */
72struct proxy *curproxy = NULL;
73
74/* The name of the SPOE engine, used during the parsing */
75char *curengine = NULL;
76
77/* SPOE agent used during the parsing */
Christopher Faulet11610f32017-09-21 10:23:10 +020078/* SPOE agent/group/message used during the parsing */
79struct spoe_agent *curagent = NULL;
80struct spoe_group *curgrp = NULL;
81struct spoe_message *curmsg = NULL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020082
83/* list of SPOE messages and placeholders used during the parsing */
84struct list curmsgs;
Christopher Faulet11610f32017-09-21 10:23:10 +020085struct list curgrps;
86struct list curmphs;
87struct list curgphs;
Christopher Faulet336d3ef2017-12-22 10:00:55 +010088struct list curvars;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +020089
Christopher Faulet7250b8f2018-03-26 17:19:01 +020090/* list of log servers used during the parsing */
91struct list curlogsrvs;
92
Christopher Faulet0e0f0852018-03-26 17:20:36 +020093/* agent's proxy flags (PR_O_* and PR_O2_*) used during parsing */
94int curpxopts;
95int curpxopts2;
96
Christopher Faulet42bfa462017-01-04 14:14:19 +010097/* Pools used to allocate SPOE structs */
Willy Tarreau8ceae722018-11-26 11:58:30 +010098DECLARE_STATIC_POOL(pool_head_spoe_ctx, "spoe_ctx", sizeof(struct spoe_context));
99DECLARE_STATIC_POOL(pool_head_spoe_appctx, "spoe_appctx", sizeof(struct spoe_appctx));
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200100
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200101struct flt_ops spoe_ops;
102
Christopher Faulet8ef75252017-02-20 22:56:03 +0100103static int spoe_queue_context(struct spoe_context *ctx);
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200104static int spoe_acquire_buffer(struct buffer *buf, struct buffer_wait *buffer_wait);
105static void spoe_release_buffer(struct buffer *buf, struct buffer_wait *buffer_wait);
Christopher Faulet4d350af2021-08-02 17:53:56 +0200106static struct appctx *spoe_create_appctx(struct spoe_config *conf);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200107
108/********************************************************************
109 * helper functions/globals
110 ********************************************************************/
111static void
Christopher Faulet11610f32017-09-21 10:23:10 +0200112spoe_release_placeholder(struct spoe_placeholder *ph)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200113{
Christopher Faulet11610f32017-09-21 10:23:10 +0200114 if (!ph)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200115 return;
Christopher Faulet11610f32017-09-21 10:23:10 +0200116 free(ph->id);
117 free(ph);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200118}
119
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200120static void
Christopher Faulet8ef75252017-02-20 22:56:03 +0100121spoe_release_message(struct spoe_message *msg)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200122{
Christopher Faulet57583e42017-09-04 15:41:09 +0200123 struct spoe_arg *arg, *argback;
124 struct acl *acl, *aclback;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200125
126 if (!msg)
127 return;
128 free(msg->id);
129 free(msg->conf.file);
Christopher Faulet57583e42017-09-04 15:41:09 +0200130 list_for_each_entry_safe(arg, argback, &msg->args, list) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200131 release_sample_expr(arg->expr);
132 free(arg->name);
Willy Tarreau2b718102021-04-21 07:32:39 +0200133 LIST_DELETE(&arg->list);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200134 free(arg);
135 }
Christopher Faulet57583e42017-09-04 15:41:09 +0200136 list_for_each_entry_safe(acl, aclback, &msg->acls, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200137 LIST_DELETE(&acl->list);
Christopher Faulet57583e42017-09-04 15:41:09 +0200138 prune_acl(acl);
139 free(acl);
140 }
141 if (msg->cond) {
142 prune_acl_cond(msg->cond);
143 free(msg->cond);
144 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200145 free(msg);
146}
147
148static void
Christopher Faulet11610f32017-09-21 10:23:10 +0200149spoe_release_group(struct spoe_group *grp)
150{
151 if (!grp)
152 return;
153 free(grp->id);
154 free(grp->conf.file);
155 free(grp);
156}
157
158static void
Christopher Faulet8ef75252017-02-20 22:56:03 +0100159spoe_release_agent(struct spoe_agent *agent)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200160{
Christopher Faulet11610f32017-09-21 10:23:10 +0200161 struct spoe_message *msg, *msgback;
162 struct spoe_group *grp, *grpback;
Christopher Faulet24289f22017-09-25 14:48:02 +0200163 int i;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200164
165 if (!agent)
166 return;
167 free(agent->id);
168 free(agent->conf.file);
169 free(agent->var_pfx);
Christopher Faulet985532d2016-11-16 15:36:19 +0100170 free(agent->var_on_error);
Christopher Faulet36bda1c2018-03-22 09:08:20 +0100171 free(agent->var_t_process);
172 free(agent->var_t_total);
Christopher Faulet11610f32017-09-21 10:23:10 +0200173 list_for_each_entry_safe(msg, msgback, &agent->messages, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200174 LIST_DELETE(&msg->list);
Christopher Faulet11610f32017-09-21 10:23:10 +0200175 spoe_release_message(msg);
176 }
177 list_for_each_entry_safe(grp, grpback, &agent->groups, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200178 LIST_DELETE(&grp->list);
Christopher Faulet11610f32017-09-21 10:23:10 +0200179 spoe_release_group(grp);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200180 }
Willy Tarreau3ddcf762019-02-07 14:22:52 +0100181 if (agent->rt) {
Christopher Fauletb1bb1af2019-09-17 11:55:52 +0200182 for (i = 0; i < global.nbthread; ++i) {
183 free(agent->rt[i].engine_id);
Willy Tarreau3ddcf762019-02-07 14:22:52 +0100184 HA_SPIN_DESTROY(&agent->rt[i].lock);
Christopher Fauletb1bb1af2019-09-17 11:55:52 +0200185 }
Willy Tarreau3ddcf762019-02-07 14:22:52 +0100186 }
Christopher Faulet24289f22017-09-25 14:48:02 +0200187 free(agent->rt);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200188 free(agent);
189}
190
191static const char *spoe_frm_err_reasons[SPOE_FRM_ERRS] = {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100192 [SPOE_FRM_ERR_NONE] = "normal",
193 [SPOE_FRM_ERR_IO] = "I/O error",
194 [SPOE_FRM_ERR_TOUT] = "a timeout occurred",
195 [SPOE_FRM_ERR_TOO_BIG] = "frame is too big",
196 [SPOE_FRM_ERR_INVALID] = "invalid frame received",
197 [SPOE_FRM_ERR_NO_VSN] = "version value not found",
198 [SPOE_FRM_ERR_NO_FRAME_SIZE] = "max-frame-size value not found",
199 [SPOE_FRM_ERR_NO_CAP] = "capabilities value not found",
200 [SPOE_FRM_ERR_BAD_VSN] = "unsupported version",
201 [SPOE_FRM_ERR_BAD_FRAME_SIZE] = "max-frame-size too big or too small",
202 [SPOE_FRM_ERR_FRAG_NOT_SUPPORTED] = "fragmentation not supported",
203 [SPOE_FRM_ERR_INTERLACED_FRAMES] = "invalid interlaced frames",
Christopher Faulet8eda93f2017-02-09 09:44:33 +0100204 [SPOE_FRM_ERR_FRAMEID_NOTFOUND] = "frame-id not found",
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100205 [SPOE_FRM_ERR_RES] = "resource allocation error",
206 [SPOE_FRM_ERR_UNKNOWN] = "an unknown error occurred",
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200207};
208
209static const char *spoe_event_str[SPOE_EV_EVENTS] = {
210 [SPOE_EV_ON_CLIENT_SESS] = "on-client-session",
211 [SPOE_EV_ON_TCP_REQ_FE] = "on-frontend-tcp-request",
212 [SPOE_EV_ON_TCP_REQ_BE] = "on-backend-tcp-request",
213 [SPOE_EV_ON_HTTP_REQ_FE] = "on-frontend-http-request",
214 [SPOE_EV_ON_HTTP_REQ_BE] = "on-backend-http-request",
215
216 [SPOE_EV_ON_SERVER_SESS] = "on-server-session",
217 [SPOE_EV_ON_TCP_RSP] = "on-tcp-response",
218 [SPOE_EV_ON_HTTP_RSP] = "on-http-response",
219};
220
221
222#if defined(DEBUG_SPOE) || defined(DEBUG_FULL)
223
224static const char *spoe_ctx_state_str[SPOE_CTX_ST_ERROR+1] = {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100225 [SPOE_CTX_ST_NONE] = "NONE",
226 [SPOE_CTX_ST_READY] = "READY",
227 [SPOE_CTX_ST_ENCODING_MSGS] = "ENCODING_MSGS",
228 [SPOE_CTX_ST_SENDING_MSGS] = "SENDING_MSGS",
229 [SPOE_CTX_ST_WAITING_ACK] = "WAITING_ACK",
230 [SPOE_CTX_ST_DONE] = "DONE",
231 [SPOE_CTX_ST_ERROR] = "ERROR",
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200232};
233
234static const char *spoe_appctx_state_str[SPOE_APPCTX_ST_END+1] = {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100235 [SPOE_APPCTX_ST_CONNECT] = "CONNECT",
236 [SPOE_APPCTX_ST_CONNECTING] = "CONNECTING",
237 [SPOE_APPCTX_ST_IDLE] = "IDLE",
238 [SPOE_APPCTX_ST_PROCESSING] = "PROCESSING",
239 [SPOE_APPCTX_ST_SENDING_FRAG_NOTIFY] = "SENDING_FRAG_NOTIFY",
240 [SPOE_APPCTX_ST_WAITING_SYNC_ACK] = "WAITING_SYNC_ACK",
241 [SPOE_APPCTX_ST_DISCONNECT] = "DISCONNECT",
242 [SPOE_APPCTX_ST_DISCONNECTING] = "DISCONNECTING",
243 [SPOE_APPCTX_ST_EXIT] = "EXIT",
244 [SPOE_APPCTX_ST_END] = "END",
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200245};
246
247#endif
Christopher Fauleta1cda022016-12-21 08:58:06 +0100248
Christopher Faulet8ef75252017-02-20 22:56:03 +0100249/* Used to generates a unique id for an engine. On success, it returns a
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +0500250 * allocated string. So it is the caller's responsibility to release it. If the
Christopher Faulet8ef75252017-02-20 22:56:03 +0100251 * allocation failed, it returns NULL. */
Christopher Fauleta1cda022016-12-21 08:58:06 +0100252static char *
253generate_pseudo_uuid()
254{
Willy Tarreauee3bcdd2020-03-08 17:48:17 +0100255 ha_generate_uuid(&trash);
Kevin Zhu079f8082020-03-13 10:39:51 +0800256 return my_strndup(trash.area, trash.data);
Christopher Fauleta1cda022016-12-21 08:58:06 +0100257}
258
Christopher Fauletb2dd1e02018-03-22 09:07:41 +0100259
260static inline void
261spoe_update_stat_time(struct timeval *tv, long *t)
262{
263 if (*t == -1)
264 *t = tv_ms_elapsed(tv, &now);
265 else
266 *t += tv_ms_elapsed(tv, &now);
267 tv_zero(tv);
268}
269
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200270/********************************************************************
271 * Functions that encode/decode SPOE frames
272 ********************************************************************/
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200273/* Helper to get static string length, excluding the terminating null byte */
274#define SLEN(str) (sizeof(str)-1)
275
276/* Predefined key used in HELLO/DISCONNECT frames */
277#define SUPPORTED_VERSIONS_KEY "supported-versions"
278#define VERSION_KEY "version"
279#define MAX_FRAME_SIZE_KEY "max-frame-size"
280#define CAPABILITIES_KEY "capabilities"
Christopher Fauleta1cda022016-12-21 08:58:06 +0100281#define ENGINE_ID_KEY "engine-id"
Christopher Fauletba7bc162016-11-07 21:07:38 +0100282#define HEALTHCHECK_KEY "healthcheck"
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200283#define STATUS_CODE_KEY "status-code"
284#define MSG_KEY "message"
285
286struct spoe_version {
287 char *str;
288 int min;
289 int max;
290};
291
292/* All supported versions */
293static struct spoe_version supported_versions[] = {
Christopher Faulet63816502018-05-31 14:56:42 +0200294 /* 1.0 is now unsupported because of a bug about frame's flags*/
295 {"2.0", 2000, 2000},
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200296 {NULL, 0, 0}
297};
298
299/* Comma-separated list of supported versions */
Christopher Faulet63816502018-05-31 14:56:42 +0200300#define SUPPORTED_VERSIONS_VAL "2.0"
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200301
Christopher Faulet8ef75252017-02-20 22:56:03 +0100302/* Convert a string to a SPOE version value. The string must follow the format
303 * "MAJOR.MINOR". It will be concerted into the integer (1000 * MAJOR + MINOR).
304 * If an error occurred, -1 is returned. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200305static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100306spoe_str_to_vsn(const char *str, size_t len)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200307{
Christopher Faulet8ef75252017-02-20 22:56:03 +0100308 const char *p, *end;
309 int maj, min, vsn;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200310
Christopher Faulet8ef75252017-02-20 22:56:03 +0100311 p = str;
312 end = str+len;
313 maj = min = 0;
314 vsn = -1;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200315
Christopher Faulet8ef75252017-02-20 22:56:03 +0100316 /* skip leading spaces */
Willy Tarreau90807112020-02-25 08:16:33 +0100317 while (p < end && isspace((unsigned char)*p))
Christopher Faulet8ef75252017-02-20 22:56:03 +0100318 p++;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200319
Christopher Faulet8ef75252017-02-20 22:56:03 +0100320 /* parse Major number, until the '.' */
321 while (*p != '.') {
322 if (p >= end || *p < '0' || *p > '9')
323 goto out;
324 maj *= 10;
325 maj += (*p - '0');
326 p++;
327 }
328
329 /* check Major version */
330 if (!maj)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200331 goto out;
332
Christopher Faulet8ef75252017-02-20 22:56:03 +0100333 p++; /* skip the '.' */
334 if (p >= end || *p < '0' || *p > '9') /* Minor number is missing */
335 goto out;
336
337 /* Parse Minor number */
338 while (p < end) {
339 if (*p < '0' || *p > '9')
340 break;
341 min *= 10;
342 min += (*p - '0');
343 p++;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200344 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100345
346 /* check Minor number */
347 if (min > 999)
348 goto out;
349
350 /* skip trailing spaces */
Willy Tarreau90807112020-02-25 08:16:33 +0100351 while (p < end && isspace((unsigned char)*p))
Christopher Faulet8ef75252017-02-20 22:56:03 +0100352 p++;
353 if (p != end)
354 goto out;
355
356 vsn = maj * 1000 + min;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200357 out:
358 return vsn;
359}
360
Christopher Faulet8ef75252017-02-20 22:56:03 +0100361/* Encode the HELLO frame sent by HAProxy to an agent. It returns the number of
Joseph Herlantf7f60312018-11-15 13:46:49 -0800362 * encoded bytes in the frame on success, 0 if an encoding error occurred and -1
Christopher Faulet8ef75252017-02-20 22:56:03 +0100363 * if a fatal error occurred. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200364static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100365spoe_prepare_hahello_frame(struct appctx *appctx, char *frame, size_t size)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200366{
Willy Tarreau83061a82018-07-13 11:56:34 +0200367 struct buffer *chk;
Christopher Faulet42bfa462017-01-04 14:14:19 +0100368 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100369 char *p, *end;
370 unsigned int flags = SPOE_FRM_FL_FIN;
371 size_t sz;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200372
Christopher Faulet8ef75252017-02-20 22:56:03 +0100373 p = frame;
374 end = frame+size;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200375
Christopher Faulet8ef75252017-02-20 22:56:03 +0100376 /* Set Frame type */
377 *p++ = SPOE_FRM_T_HAPROXY_HELLO;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200378
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100379 /* Set flags */
Thierry FOURNIERc4dcaff2018-05-18 12:25:39 +0200380 flags = htonl(flags);
Christopher Faulet8ef75252017-02-20 22:56:03 +0100381 memcpy(p, (char *)&flags, 4);
382 p += 4;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200383
384 /* No stream-id and frame-id for HELLO frames */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100385 *p++ = 0; *p++ = 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200386
387 /* There are 3 mandatory items: "supported-versions", "max-frame-size"
388 * and "capabilities" */
389
390 /* "supported-versions" K/V item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100391 sz = SLEN(SUPPORTED_VERSIONS_KEY);
392 if (spoe_encode_buffer(SUPPORTED_VERSIONS_KEY, sz, &p, end) == -1)
393 goto too_big;
394
395 *p++ = SPOE_DATA_T_STR;
396 sz = SLEN(SUPPORTED_VERSIONS_VAL);
397 if (spoe_encode_buffer(SUPPORTED_VERSIONS_VAL, sz, &p, end) == -1)
398 goto too_big;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200399
400 /* "max-fram-size" K/V item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100401 sz = SLEN(MAX_FRAME_SIZE_KEY);
402 if (spoe_encode_buffer(MAX_FRAME_SIZE_KEY, sz, &p, end) == -1)
403 goto too_big;
404
405 *p++ = SPOE_DATA_T_UINT32;
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200406 if (encode_varint(SPOE_APPCTX(appctx)->max_frame_size, &p, end) == -1)
Christopher Faulet8ef75252017-02-20 22:56:03 +0100407 goto too_big;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200408
409 /* "capabilities" K/V item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100410 sz = SLEN(CAPABILITIES_KEY);
411 if (spoe_encode_buffer(CAPABILITIES_KEY, sz, &p, end) == -1)
412 goto too_big;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200413
Christopher Faulet8ef75252017-02-20 22:56:03 +0100414 *p++ = SPOE_DATA_T_STR;
Christopher Faulet305c6072017-02-23 16:17:53 +0100415 chk = get_trash_chunk();
416 if (agent != NULL && (agent->flags & SPOE_FL_PIPELINING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200417 memcpy(chk->area, "pipelining", 10);
418 chk->data += 10;
Christopher Faulet305c6072017-02-23 16:17:53 +0100419 }
420 if (agent != NULL && (agent->flags & SPOE_FL_ASYNC)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200421 if (chk->data) chk->area[chk->data++] = ',';
422 memcpy(chk->area+chk->data, "async", 5);
423 chk->data += 5;
Christopher Faulet305c6072017-02-23 16:17:53 +0100424 }
Christopher Fauletcecd8522017-02-24 22:11:21 +0100425 if (agent != NULL && (agent->flags & SPOE_FL_RCV_FRAGMENTATION)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200426 if (chk->data) chk->area[chk->data++] = ',';
427 memcpy(chk->area+chk->data, "fragmentation", 13);
Miroslav Zagorac6b3690b2019-01-13 16:55:01 +0100428 chk->data += 13;
Christopher Fauletcecd8522017-02-24 22:11:21 +0100429 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200430 if (spoe_encode_buffer(chk->area, chk->data, &p, end) == -1)
Christopher Faulet8ef75252017-02-20 22:56:03 +0100431 goto too_big;
432
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +0500433 /* (optional) "engine-id" K/V item, if present */
Christopher Fauletb1bb1af2019-09-17 11:55:52 +0200434 if (agent != NULL && agent->rt[tid].engine_id != NULL) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100435 sz = SLEN(ENGINE_ID_KEY);
436 if (spoe_encode_buffer(ENGINE_ID_KEY, sz, &p, end) == -1)
437 goto too_big;
438
439 *p++ = SPOE_DATA_T_STR;
Christopher Fauletb1bb1af2019-09-17 11:55:52 +0200440 sz = strlen(agent->rt[tid].engine_id);
441 if (spoe_encode_buffer(agent->rt[tid].engine_id, sz, &p, end) == -1)
Christopher Faulet8ef75252017-02-20 22:56:03 +0100442 goto too_big;
Christopher Fauleta1cda022016-12-21 08:58:06 +0100443 }
444
Christopher Faulet8ef75252017-02-20 22:56:03 +0100445 return (p - frame);
446
447 too_big:
448 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOO_BIG;
449 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200450}
451
Christopher Faulet8ef75252017-02-20 22:56:03 +0100452/* Encode DISCONNECT frame sent by HAProxy to an agent. It returns the number of
453 * encoded bytes in the frame on success, 0 if an encoding error occurred and -1
454 * if a fatal error occurred. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200455static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100456spoe_prepare_hadiscon_frame(struct appctx *appctx, char *frame, size_t size)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200457{
Christopher Faulet8ef75252017-02-20 22:56:03 +0100458 const char *reason;
459 char *p, *end;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100460 unsigned int flags = SPOE_FRM_FL_FIN;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100461 size_t sz;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200462
Christopher Faulet8ef75252017-02-20 22:56:03 +0100463 p = frame;
464 end = frame+size;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200465
Christopher Faulet8ef75252017-02-20 22:56:03 +0100466 /* Set Frame type */
467 *p++ = SPOE_FRM_T_HAPROXY_DISCON;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200468
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100469 /* Set flags */
Thierry FOURNIERc4dcaff2018-05-18 12:25:39 +0200470 flags = htonl(flags);
Christopher Faulet8ef75252017-02-20 22:56:03 +0100471 memcpy(p, (char *)&flags, 4);
472 p += 4;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200473
474 /* No stream-id and frame-id for DISCONNECT frames */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100475 *p++ = 0; *p++ = 0;
476
477 if (SPOE_APPCTX(appctx)->status_code >= SPOE_FRM_ERRS)
478 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_UNKNOWN;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200479
480 /* There are 2 mandatory items: "status-code" and "message" */
481
482 /* "status-code" K/V item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100483 sz = SLEN(STATUS_CODE_KEY);
484 if (spoe_encode_buffer(STATUS_CODE_KEY, sz, &p, end) == -1)
485 goto too_big;
486
487 *p++ = SPOE_DATA_T_UINT32;
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200488 if (encode_varint(SPOE_APPCTX(appctx)->status_code, &p, end) == -1)
Christopher Faulet8ef75252017-02-20 22:56:03 +0100489 goto too_big;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200490
491 /* "message" K/V item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100492 sz = SLEN(MSG_KEY);
493 if (spoe_encode_buffer(MSG_KEY, sz, &p, end) == -1)
494 goto too_big;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200495
Christopher Faulet8ef75252017-02-20 22:56:03 +0100496 /*Get the message corresponding to the status code */
497 reason = spoe_frm_err_reasons[SPOE_APPCTX(appctx)->status_code];
498
499 *p++ = SPOE_DATA_T_STR;
500 sz = strlen(reason);
501 if (spoe_encode_buffer(reason, sz, &p, end) == -1)
502 goto too_big;
503
504 return (p - frame);
505
506 too_big:
507 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOO_BIG;
508 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200509}
510
Christopher Faulet8ef75252017-02-20 22:56:03 +0100511/* Encode the NOTIFY frame sent by HAProxy to an agent. It returns the number of
512 * encoded bytes in the frame on success, 0 if an encoding error occurred and -1
513 * if a fatal error occurred. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200514static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100515spoe_prepare_hanotify_frame(struct appctx *appctx, struct spoe_context *ctx,
Christopher Fauleta1cda022016-12-21 08:58:06 +0100516 char *frame, size_t size)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200517{
Christopher Faulet8ef75252017-02-20 22:56:03 +0100518 char *p, *end;
519 unsigned int stream_id, frame_id;
520 unsigned int flags = SPOE_FRM_FL_FIN;
521 size_t sz;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200522
Christopher Faulet8ef75252017-02-20 22:56:03 +0100523 p = frame;
524 end = frame+size;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200525
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100526 stream_id = ctx->stream_id;
527 frame_id = ctx->frame_id;
528
529 if (ctx->flags & SPOE_CTX_FL_FRAGMENTED) {
530 /* The fragmentation is not supported by the applet */
531 if (!(SPOE_APPCTX(appctx)->flags & SPOE_APPCTX_FL_FRAGMENTATION)) {
532 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_FRAG_NOT_SUPPORTED;
533 return -1;
534 }
535 flags = ctx->frag_ctx.flags;
536 }
537
538 /* Set Frame type */
539 *p++ = SPOE_FRM_T_HAPROXY_NOTIFY;
540
541 /* Set flags */
Thierry FOURNIERc4dcaff2018-05-18 12:25:39 +0200542 flags = htonl(flags);
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100543 memcpy(p, (char *)&flags, 4);
544 p += 4;
545
546 /* Set stream-id and frame-id */
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200547 if (encode_varint(stream_id, &p, end) == -1)
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100548 goto too_big;
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200549 if (encode_varint(frame_id, &p, end) == -1)
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100550 goto too_big;
551
552 /* Copy encoded messages, if possible */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200553 sz = b_data(&ctx->buffer);
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100554 if (p + sz >= end)
555 goto too_big;
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200556 memcpy(p, b_head(&ctx->buffer), sz);
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100557 p += sz;
558
559 return (p - frame);
560
561 too_big:
562 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOO_BIG;
563 return 0;
564}
565
566/* Encode next part of a fragmented frame sent by HAProxy to an agent. It
567 * returns the number of encoded bytes in the frame on success, 0 if an encoding
568 * error occurred and -1 if a fatal error occurred. */
569static int
570spoe_prepare_hafrag_frame(struct appctx *appctx, struct spoe_context *ctx,
571 char *frame, size_t size)
572{
573 char *p, *end;
574 unsigned int stream_id, frame_id;
575 unsigned int flags;
576 size_t sz;
577
578 p = frame;
579 end = frame+size;
580
Christopher Faulet8ef75252017-02-20 22:56:03 +0100581 /* <ctx> is null when the stream has aborted the processing of a
582 * fragmented frame. In this case, we must notify the corresponding
583 * agent using ids stored in <frag_ctx>. */
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100584 if (ctx == NULL) {
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100585 flags = (SPOE_FRM_FL_FIN|SPOE_FRM_FL_ABRT);
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100586 stream_id = SPOE_APPCTX(appctx)->frag_ctx.cursid;
587 frame_id = SPOE_APPCTX(appctx)->frag_ctx.curfid;
588 }
589 else {
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100590 flags = ctx->frag_ctx.flags;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100591 stream_id = ctx->stream_id;
592 frame_id = ctx->frame_id;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100593 }
594
Christopher Faulet8ef75252017-02-20 22:56:03 +0100595 /* Set Frame type */
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100596 *p++ = SPOE_FRM_T_UNSET;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100597
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100598 /* Set flags */
Thierry FOURNIERc4dcaff2018-05-18 12:25:39 +0200599 flags = htonl(flags);
Christopher Faulet8ef75252017-02-20 22:56:03 +0100600 memcpy(p, (char *)&flags, 4);
601 p += 4;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200602
603 /* Set stream-id and frame-id */
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200604 if (encode_varint(stream_id, &p, end) == -1)
Christopher Faulet8ef75252017-02-20 22:56:03 +0100605 goto too_big;
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200606 if (encode_varint(frame_id, &p, end) == -1)
Christopher Faulet8ef75252017-02-20 22:56:03 +0100607 goto too_big;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200608
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100609 if (ctx == NULL)
610 goto end;
611
Christopher Faulet8ef75252017-02-20 22:56:03 +0100612 /* Copy encoded messages, if possible */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200613 sz = b_data(&ctx->buffer);
Christopher Faulet8ef75252017-02-20 22:56:03 +0100614 if (p + sz >= end)
615 goto too_big;
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200616 memcpy(p, b_head(&ctx->buffer), sz);
Christopher Faulet8ef75252017-02-20 22:56:03 +0100617 p += sz;
Christopher Fauleta1cda022016-12-21 08:58:06 +0100618
Christopher Fauletf032c3e2017-02-17 15:18:35 +0100619 end:
Christopher Faulet8ef75252017-02-20 22:56:03 +0100620 return (p - frame);
621
622 too_big:
623 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOO_BIG;
624 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200625}
626
Christopher Faulet8ef75252017-02-20 22:56:03 +0100627/* Decode and process the HELLO frame sent by an agent. It returns the number of
628 * read bytes on success, 0 if a decoding error occurred, and -1 if a fatal
629 * error occurred. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200630static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100631spoe_handle_agenthello_frame(struct appctx *appctx, char *frame, size_t size)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200632{
Christopher Faulet305c6072017-02-23 16:17:53 +0100633 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
634 char *p, *end;
635 int vsn, max_frame_size;
636 unsigned int flags;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100637
638 p = frame;
639 end = frame + size;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200640
641 /* Check frame type */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100642 if (*p++ != SPOE_FRM_T_AGENT_HELLO) {
643 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200644 return 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100645 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200646
Christopher Faulet8ef75252017-02-20 22:56:03 +0100647 if (size < 7 /* TYPE + METADATA */) {
648 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
649 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200650 }
651
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100652 /* Retrieve flags */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100653 memcpy((char *)&flags, p, 4);
Thierry FOURNIERc4dcaff2018-05-18 12:25:39 +0200654 flags = ntohl(flags);
Christopher Faulet8ef75252017-02-20 22:56:03 +0100655 p += 4;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200656
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100657 /* Fragmentation is not supported for HELLO frame */
658 if (!(flags & SPOE_FRM_FL_FIN)) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100659 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_FRAG_NOT_SUPPORTED;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100660 return -1;
661 }
662
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200663 /* stream-id and frame-id must be cleared */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100664 if (*p != 0 || *(p+1) != 0) {
665 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
666 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200667 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100668 p += 2;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200669
670 /* There are 3 mandatory items: "version", "max-frame-size" and
671 * "capabilities" */
672
673 /* Loop on K/V items */
Christopher Fauleta1cda022016-12-21 08:58:06 +0100674 vsn = max_frame_size = flags = 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100675 while (p < end) {
676 char *str;
Frédéric Lécaille6ca71a92017-08-22 10:33:14 +0200677 uint64_t sz;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100678 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200679
680 /* Decode the item key */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100681 ret = spoe_decode_buffer(&p, end, &str, &sz);
682 if (ret == -1 || !sz) {
683 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
684 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200685 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100686
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200687 /* Check "version" K/V item */
Willy Tarreauda21ed12020-06-16 17:58:14 +0200688 if (sz >= strlen(VERSION_KEY) && !memcmp(str, VERSION_KEY, strlen(VERSION_KEY))) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100689 int i, type = *p++;
690
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200691 /* The value must be a string */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100692 if ((type & SPOE_DATA_T_MASK) != SPOE_DATA_T_STR) {
693 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
694 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200695 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100696 if (spoe_decode_buffer(&p, end, &str, &sz) == -1) {
697 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
698 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200699 }
700
Christopher Faulet8ef75252017-02-20 22:56:03 +0100701 vsn = spoe_str_to_vsn(str, sz);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200702 if (vsn == -1) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100703 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_BAD_VSN;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200704 return -1;
705 }
706 for (i = 0; supported_versions[i].str != NULL; ++i) {
707 if (vsn >= supported_versions[i].min &&
708 vsn <= supported_versions[i].max)
709 break;
710 }
711 if (supported_versions[i].str == NULL) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100712 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_BAD_VSN;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200713 return -1;
714 }
715 }
716 /* Check "max-frame-size" K/V item */
Willy Tarreauda21ed12020-06-16 17:58:14 +0200717 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 +0100718 int type = *p++;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200719
720 /* The value must be integer */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200721 if ((type & SPOE_DATA_T_MASK) != SPOE_DATA_T_INT32 &&
722 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_INT64 &&
723 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_UINT32 &&
724 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_UINT64) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100725 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
726 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200727 }
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200728 if (decode_varint(&p, end, &sz) == -1) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100729 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
730 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200731 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100732 if (sz < MIN_FRAME_SIZE ||
733 sz > SPOE_APPCTX(appctx)->max_frame_size) {
734 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_BAD_FRAME_SIZE;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200735 return -1;
736 }
737 max_frame_size = sz;
738 }
Christopher Fauleta1cda022016-12-21 08:58:06 +0100739 /* Check "capabilities" K/V item */
Willy Tarreauda21ed12020-06-16 17:58:14 +0200740 else if (sz >= strlen(CAPABILITIES_KEY) && !memcmp(str, CAPABILITIES_KEY, strlen(CAPABILITIES_KEY))) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100741 int type = *p++;
Christopher Fauleta1cda022016-12-21 08:58:06 +0100742
743 /* The value must be a string */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100744 if ((type & SPOE_DATA_T_MASK) != SPOE_DATA_T_STR) {
745 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
746 return 0;
Christopher Fauleta1cda022016-12-21 08:58:06 +0100747 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100748 if (spoe_decode_buffer(&p, end, &str, &sz) == -1) {
749 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
750 return 0;
751 }
Christopher Fauleta1cda022016-12-21 08:58:06 +0100752
Christopher Faulet8ef75252017-02-20 22:56:03 +0100753 while (sz) {
Christopher Fauleta1cda022016-12-21 08:58:06 +0100754 char *delim;
755
756 /* Skip leading spaces */
Willy Tarreau90807112020-02-25 08:16:33 +0100757 for (; isspace((unsigned char)*str) && sz; str++, sz--);
Christopher Fauleta1cda022016-12-21 08:58:06 +0100758
Christopher Faulet8ef75252017-02-20 22:56:03 +0100759 if (sz >= 10 && !strncmp(str, "pipelining", 10)) {
760 str += 10; sz -= 10;
Willy Tarreau90807112020-02-25 08:16:33 +0100761 if (!sz || isspace((unsigned char)*str) || *str == ',')
Christopher Fauleta1cda022016-12-21 08:58:06 +0100762 flags |= SPOE_APPCTX_FL_PIPELINING;
763 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100764 else if (sz >= 5 && !strncmp(str, "async", 5)) {
765 str += 5; sz -= 5;
Willy Tarreau90807112020-02-25 08:16:33 +0100766 if (!sz || isspace((unsigned char)*str) || *str == ',')
Christopher Fauleta1cda022016-12-21 08:58:06 +0100767 flags |= SPOE_APPCTX_FL_ASYNC;
768 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100769 else if (sz >= 13 && !strncmp(str, "fragmentation", 13)) {
770 str += 13; sz -= 13;
Willy Tarreau90807112020-02-25 08:16:33 +0100771 if (!sz || isspace((unsigned char)*str) || *str == ',')
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100772 flags |= SPOE_APPCTX_FL_FRAGMENTATION;
773 }
Christopher Fauleta1cda022016-12-21 08:58:06 +0100774
Christopher Faulet8ef75252017-02-20 22:56:03 +0100775 /* Get the next comma or break */
776 if (!sz || (delim = memchr(str, ',', sz)) == NULL)
Christopher Fauleta1cda022016-12-21 08:58:06 +0100777 break;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100778 delim++;
779 sz -= (delim - str);
780 str = delim;
Christopher Fauleta1cda022016-12-21 08:58:06 +0100781 }
782 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200783 else {
784 /* Silently ignore unknown item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100785 if (spoe_skip_data(&p, end) == -1) {
786 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
787 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200788 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200789 }
790 }
791
792 /* Final checks */
793 if (!vsn) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100794 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_NO_VSN;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200795 return -1;
796 }
797 if (!max_frame_size) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100798 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_NO_FRAME_SIZE;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200799 return -1;
800 }
Christopher Faulet11389012019-02-07 16:13:26 +0100801 if (!agent)
802 flags &= ~(SPOE_APPCTX_FL_PIPELINING|SPOE_APPCTX_FL_ASYNC);
803 else {
804 if ((flags & SPOE_APPCTX_FL_PIPELINING) && !(agent->flags & SPOE_FL_PIPELINING))
805 flags &= ~SPOE_APPCTX_FL_PIPELINING;
806 if ((flags & SPOE_APPCTX_FL_ASYNC) && !(agent->flags & SPOE_FL_ASYNC))
807 flags &= ~SPOE_APPCTX_FL_ASYNC;
808 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200809
Christopher Faulet42bfa462017-01-04 14:14:19 +0100810 SPOE_APPCTX(appctx)->version = (unsigned int)vsn;
811 SPOE_APPCTX(appctx)->max_frame_size = (unsigned int)max_frame_size;
812 SPOE_APPCTX(appctx)->flags |= flags;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100813
814 return (p - frame);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200815}
816
817/* Decode DISCONNECT frame sent by an agent. It returns the number of by read
818 * bytes on success, 0 if the frame can be ignored and -1 if an error
819 * occurred. */
820static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100821spoe_handle_agentdiscon_frame(struct appctx *appctx, char *frame, size_t size)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200822{
Christopher Faulet8ef75252017-02-20 22:56:03 +0100823 char *p, *end;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100824 unsigned int flags;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100825
826 p = frame;
827 end = frame + size;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200828
829 /* Check frame type */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100830 if (*p++ != SPOE_FRM_T_AGENT_DISCON) {
831 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200832 return 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100833 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200834
Christopher Faulet8ef75252017-02-20 22:56:03 +0100835 if (size < 7 /* TYPE + METADATA */) {
836 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
837 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200838 }
839
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100840 /* Retrieve flags */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100841 memcpy((char *)&flags, p, 4);
Thierry FOURNIERc4dcaff2018-05-18 12:25:39 +0200842 flags = ntohl(flags);
Christopher Faulet8ef75252017-02-20 22:56:03 +0100843 p += 4;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200844
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100845 /* Fragmentation is not supported for DISCONNECT frame */
846 if (!(flags & SPOE_FRM_FL_FIN)) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100847 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_FRAG_NOT_SUPPORTED;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100848 return -1;
849 }
850
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200851 /* stream-id and frame-id must be cleared */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100852 if (*p != 0 || *(p+1) != 0) {
853 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
854 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200855 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100856 p += 2;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200857
858 /* There are 2 mandatory items: "status-code" and "message" */
859
860 /* Loop on K/V items */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100861 while (p < end) {
862 char *str;
Frédéric Lécaille6ca71a92017-08-22 10:33:14 +0200863 uint64_t sz;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100864 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200865
866 /* Decode the item key */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100867 ret = spoe_decode_buffer(&p, end, &str, &sz);
868 if (ret == -1 || !sz) {
869 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
870 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200871 }
872
873 /* Check "status-code" K/V item */
Willy Tarreauda21ed12020-06-16 17:58:14 +0200874 if (sz >= strlen(STATUS_CODE_KEY) && !memcmp(str, STATUS_CODE_KEY, strlen(STATUS_CODE_KEY))) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100875 int type = *p++;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200876
877 /* The value must be an integer */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200878 if ((type & SPOE_DATA_T_MASK) != SPOE_DATA_T_INT32 &&
879 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_INT64 &&
880 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_UINT32 &&
881 (type & SPOE_DATA_T_MASK) != SPOE_DATA_T_UINT64) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100882 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
883 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200884 }
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200885 if (decode_varint(&p, end, &sz) == -1) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100886 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
887 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200888 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100889 SPOE_APPCTX(appctx)->status_code = sz;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200890 }
891
892 /* Check "message" K/V item */
Willy Tarreauda21ed12020-06-16 17:58:14 +0200893 else if (sz >= strlen(MSG_KEY) && !memcmp(str, MSG_KEY, strlen(MSG_KEY))) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100894 int type = *p++;
895
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200896 /* The value must be a string */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100897 if ((type & SPOE_DATA_T_MASK) != SPOE_DATA_T_STR) {
898 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
899 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200900 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100901 ret = spoe_decode_buffer(&p, end, &str, &sz);
902 if (ret == -1 || sz > 255) {
903 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
904 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200905 }
Christopher Faulet8ef75252017-02-20 22:56:03 +0100906#if defined(DEBUG_SPOE) || defined(DEBUG_FULL)
907 SPOE_APPCTX(appctx)->reason = str;
908 SPOE_APPCTX(appctx)->rlen = sz;
909#endif
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200910 }
911 else {
912 /* Silently ignore unknown item */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100913 if (spoe_skip_data(&p, end) == -1) {
914 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
915 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200916 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200917 }
918 }
919
Christopher Faulet8ef75252017-02-20 22:56:03 +0100920 return (p - frame);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200921}
922
923
Christopher Fauleta1cda022016-12-21 08:58:06 +0100924/* Decode ACK frame sent by an agent. It returns the number of read bytes on
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200925 * success, 0 if the frame can be ignored and -1 if an error occurred. */
926static int
Christopher Faulet8ef75252017-02-20 22:56:03 +0100927spoe_handle_agentack_frame(struct appctx *appctx, struct spoe_context **ctx,
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100928 char *frame, size_t size)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200929{
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100930 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100931 char *p, *end;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100932 uint64_t stream_id, frame_id;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100933 int len;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100934 unsigned int flags;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100935
936 p = frame;
937 end = frame + size;
938 *ctx = NULL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200939
940 /* Check frame type */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100941 if (*p++ != SPOE_FRM_T_AGENT_ACK) {
942 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200943 return 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100944 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200945
Christopher Faulet8ef75252017-02-20 22:56:03 +0100946 if (size < 7 /* TYPE + METADATA */) {
947 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
948 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200949 }
950
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100951 /* Retrieve flags */
Christopher Faulet8ef75252017-02-20 22:56:03 +0100952 memcpy((char *)&flags, p, 4);
Thierry FOURNIERc4dcaff2018-05-18 12:25:39 +0200953 flags = ntohl(flags);
Christopher Faulet8ef75252017-02-20 22:56:03 +0100954 p += 4;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200955
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100956 /* Fragmentation is not supported for now */
957 if (!(flags & SPOE_FRM_FL_FIN)) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100958 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_FRAG_NOT_SUPPORTED;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100959 return -1;
960 }
961
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200962 /* Get the stream-id and the frame-id */
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200963 if (decode_varint(&p, end, &stream_id) == -1) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100964 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
Christopher Fauleta1cda022016-12-21 08:58:06 +0100965 return 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100966 }
Thierry FOURNIER6ab2bae2017-04-19 11:49:44 +0200967 if (decode_varint(&p, end, &frame_id) == -1) {
Christopher Faulet8ef75252017-02-20 22:56:03 +0100968 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +0200969 return 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +0100970 }
Christopher Fauleta1cda022016-12-21 08:58:06 +0100971
Christopher Faulet8ef75252017-02-20 22:56:03 +0100972 /* Try to find the corresponding SPOE context */
Christopher Faulet42bfa462017-01-04 14:14:19 +0100973 if (SPOE_APPCTX(appctx)->flags & SPOE_APPCTX_FL_ASYNC) {
Christopher Faulet24289f22017-09-25 14:48:02 +0200974 list_for_each_entry((*ctx), &agent->rt[tid].waiting_queue, list) {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100975 if ((*ctx)->stream_id == (unsigned int)stream_id &&
976 (*ctx)->frame_id == (unsigned int)frame_id)
Christopher Fauleta1cda022016-12-21 08:58:06 +0100977 goto found;
978 }
979 }
980 else {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +0100981 list_for_each_entry((*ctx), &SPOE_APPCTX(appctx)->waiting_queue, list) {
982 if ((*ctx)->stream_id == (unsigned int)stream_id &&
Christopher Faulet8ef75252017-02-20 22:56:03 +0100983 (*ctx)->frame_id == (unsigned int)frame_id)
Christopher Fauleta1cda022016-12-21 08:58:06 +0100984 goto found;
985 }
986 }
987
Christopher Faulet8eda93f2017-02-09 09:44:33 +0100988 if (SPOE_APPCTX(appctx)->frag_ctx.ctx &&
989 SPOE_APPCTX(appctx)->frag_ctx.cursid == (unsigned int)stream_id &&
990 SPOE_APPCTX(appctx)->frag_ctx.curfid == (unsigned int)frame_id) {
991
992 /* ABRT bit is set for an unfinished fragmented frame */
993 if (flags & SPOE_FRM_FL_ABRT) {
994 *ctx = SPOE_APPCTX(appctx)->frag_ctx.ctx;
Christopher Faulet8eda93f2017-02-09 09:44:33 +0100995 (*ctx)->state = SPOE_CTX_ST_ERROR;
996 (*ctx)->status_code = SPOE_CTX_ERR_FRAG_FRAME_ABRT;
997 /* Ignore the payload */
998 goto end;
999 }
1000 /* TODO: Handle more flags for fragmented frames: RESUME, FINISH... */
1001 /* For now, we ignore the ack */
1002 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_INVALID;
1003 return 0;
1004 }
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001005
Christopher Fauleta1cda022016-12-21 08:58:06 +01001006 /* No Stream found, ignore the frame */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001007 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
1008 " - Ignore ACK frame"
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001009 " - stream-id=%u - frame-id=%u\n",
1010 (int)now.tv_sec, (int)now.tv_usec, agent->id,
1011 __FUNCTION__, appctx,
1012 (unsigned int)stream_id, (unsigned int)frame_id);
1013
Christopher Faulet8eda93f2017-02-09 09:44:33 +01001014 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_FRAMEID_NOTFOUND;
Christopher Fauletc7ba9102020-11-10 14:31:39 +01001015 if (appctx->st0 == SPOE_APPCTX_ST_WAITING_SYNC_ACK) {
1016 /* Report an error if we are waiting the ack for another frame,
1017 * but not if there is no longer frame waiting for a ack
1018 * (timeout)
1019 */
1020 if (!LIST_ISEMPTY(&SPOE_APPCTX(appctx)->waiting_queue) ||
1021 SPOE_APPCTX(appctx)->frag_ctx.ctx)
1022 return -1;
1023 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
1024 SPOE_APPCTX(appctx)->cur_fpa = 0;
1025 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001026 return 0;
1027
1028 found:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001029 if (!spoe_acquire_buffer(&SPOE_APPCTX(appctx)->buffer,
1030 &SPOE_APPCTX(appctx)->buffer_wait)) {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001031 *ctx = NULL;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001032 return 1; /* Retry later */
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001033 }
Christopher Faulet4596fb72017-01-11 14:05:19 +01001034
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001035 /* Copy encoded actions */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001036 len = (end - p);
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001037 memcpy(b_head(&SPOE_APPCTX(appctx)->buffer), p, len);
1038 b_set_data(&SPOE_APPCTX(appctx)->buffer, len);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001039 p += len;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001040
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001041 /* Transfer the buffer ownership to the SPOE context */
1042 (*ctx)->buffer = SPOE_APPCTX(appctx)->buffer;
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001043 SPOE_APPCTX(appctx)->buffer = BUF_NULL;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001044
Christopher Faulet8ef75252017-02-20 22:56:03 +01001045 (*ctx)->state = SPOE_CTX_ST_DONE;
1046
Christopher Faulet8eda93f2017-02-09 09:44:33 +01001047 end:
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001048 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
Christopher Faulet8ef75252017-02-20 22:56:03 +01001049 " - ACK frame received"
1050 " - ctx=%p - stream-id=%u - frame-id=%u - flags=0x%08x\n",
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001051 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Faulet8ef75252017-02-20 22:56:03 +01001052 __FUNCTION__, appctx, *ctx, (*ctx)->stream_id,
1053 (*ctx)->frame_id, flags);
1054 return (p - frame);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001055}
1056
Christopher Fauletba7bc162016-11-07 21:07:38 +01001057/* This function is used in cfgparse.c and declared in proto/checks.h. It
1058 * prepare the request to send to agents during a healthcheck. It returns 0 on
1059 * success and -1 if an error occurred. */
1060int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001061spoe_prepare_healthcheck_request(char **req, int *len)
Christopher Fauletba7bc162016-11-07 21:07:38 +01001062{
Christopher Faulet8ef75252017-02-20 22:56:03 +01001063 struct appctx appctx;
1064 struct spoe_appctx spoe_appctx;
1065 char *frame, *end, buf[MAX_FRAME_SIZE+4];
1066 size_t sz;
1067 int ret;
Christopher Fauletba7bc162016-11-07 21:07:38 +01001068
Christopher Faulet42bfa462017-01-04 14:14:19 +01001069 memset(&appctx, 0, sizeof(appctx));
1070 memset(&spoe_appctx, 0, sizeof(spoe_appctx));
Christopher Fauletba7bc162016-11-07 21:07:38 +01001071 memset(buf, 0, sizeof(buf));
Christopher Faulet42bfa462017-01-04 14:14:19 +01001072
1073 appctx.ctx.spoe.ptr = &spoe_appctx;
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01001074 SPOE_APPCTX(&appctx)->max_frame_size = MAX_FRAME_SIZE;
Christopher Fauletba7bc162016-11-07 21:07:38 +01001075
Christopher Faulet8ef75252017-02-20 22:56:03 +01001076 frame = buf+4; /* Reserved the 4 first bytes for the frame size */
1077 end = frame + MAX_FRAME_SIZE;
1078
1079 ret = spoe_prepare_hahello_frame(&appctx, frame, MAX_FRAME_SIZE);
1080 if (ret <= 0)
Christopher Fauletba7bc162016-11-07 21:07:38 +01001081 return -1;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001082 frame += ret;
Christopher Fauletba7bc162016-11-07 21:07:38 +01001083
Christopher Faulet8ef75252017-02-20 22:56:03 +01001084 /* Add "healthcheck" K/V item */
1085 sz = SLEN(HEALTHCHECK_KEY);
1086 if (spoe_encode_buffer(HEALTHCHECK_KEY, sz, &frame, end) == -1)
1087 return -1;
1088 *frame++ = (SPOE_DATA_T_BOOL | SPOE_DATA_FL_TRUE);
Christopher Fauletba7bc162016-11-07 21:07:38 +01001089
Christopher Faulet8ef75252017-02-20 22:56:03 +01001090 *len = frame - buf;
1091 sz = htonl(*len - 4);
1092 memcpy(buf, (char *)&sz, 4);
Christopher Fauletba7bc162016-11-07 21:07:38 +01001093
Christopher Faulet8ef75252017-02-20 22:56:03 +01001094 if ((*req = malloc(*len)) == NULL)
Christopher Fauletba7bc162016-11-07 21:07:38 +01001095 return -1;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001096 memcpy(*req, buf, *len);
Christopher Fauletba7bc162016-11-07 21:07:38 +01001097 return 0;
1098}
1099
1100/* This function is used in checks.c and declared in proto/checks.h. It decode
1101 * the response received from an agent during a healthcheck. It returns 0 on
1102 * success and -1 if an error occurred. */
1103int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001104spoe_handle_healthcheck_response(char *frame, size_t size, char *err, int errlen)
Christopher Fauletba7bc162016-11-07 21:07:38 +01001105{
Christopher Faulet42bfa462017-01-04 14:14:19 +01001106 struct appctx appctx;
1107 struct spoe_appctx spoe_appctx;
Christopher Fauletba7bc162016-11-07 21:07:38 +01001108
Christopher Faulet42bfa462017-01-04 14:14:19 +01001109 memset(&appctx, 0, sizeof(appctx));
1110 memset(&spoe_appctx, 0, sizeof(spoe_appctx));
Christopher Fauletba7bc162016-11-07 21:07:38 +01001111
Christopher Faulet42bfa462017-01-04 14:14:19 +01001112 appctx.ctx.spoe.ptr = &spoe_appctx;
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01001113 SPOE_APPCTX(&appctx)->max_frame_size = MAX_FRAME_SIZE;
Christopher Faulet42bfa462017-01-04 14:14:19 +01001114
Christopher Faulet8ef75252017-02-20 22:56:03 +01001115 if (*frame == SPOE_FRM_T_AGENT_DISCON) {
1116 spoe_handle_agentdiscon_frame(&appctx, frame, size);
Christopher Fauletba7bc162016-11-07 21:07:38 +01001117 goto error;
1118 }
Christopher Faulet8ef75252017-02-20 22:56:03 +01001119 if (spoe_handle_agenthello_frame(&appctx, frame, size) <= 0)
1120 goto error;
Christopher Fauletba7bc162016-11-07 21:07:38 +01001121
1122 return 0;
1123
1124 error:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001125 if (SPOE_APPCTX(&appctx)->status_code >= SPOE_FRM_ERRS)
1126 SPOE_APPCTX(&appctx)->status_code = SPOE_FRM_ERR_UNKNOWN;
1127 strncpy(err, spoe_frm_err_reasons[SPOE_APPCTX(&appctx)->status_code], errlen);
Christopher Fauletba7bc162016-11-07 21:07:38 +01001128 return -1;
1129}
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001130
Christopher Fauleta1cda022016-12-21 08:58:06 +01001131/* Send a SPOE frame to an agent. It returns -1 when an error occurred, 0 when
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05001132 * the frame can be ignored, 1 to retry later, and the frame length on
Christopher Fauleta1cda022016-12-21 08:58:06 +01001133 * success. */
1134static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001135spoe_send_frame(struct appctx *appctx, char *buf, size_t framesz)
Christopher Fauleta1cda022016-12-21 08:58:06 +01001136{
1137 struct stream_interface *si = appctx->owner;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001138 int ret;
1139 uint32_t netint;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001140
Christopher Faulet8ef75252017-02-20 22:56:03 +01001141 /* 4 bytes are reserved at the beginning of <buf> to store the frame
1142 * length. */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001143 netint = htonl(framesz);
1144 memcpy(buf, (char *)&netint, 4);
Willy Tarreau06d80a92017-10-19 14:32:15 +02001145 ret = ci_putblk(si_ic(si), buf, framesz+4);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001146 if (ret <= 0) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001147 if ((ret == -3 && b_is_null(&si_ic(si)->buf)) || ret == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001148 si_rx_room_blk(si);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001149 return 1; /* retry */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001150 }
1151 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001152 return -1; /* error */
1153 }
1154 return framesz;
1155}
1156
1157/* Receive a SPOE frame from an agent. It return -1 when an error occurred, 0
1158 * when the frame can be ignored, 1 to retry later and the frame length on
1159 * success. */
1160static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001161spoe_recv_frame(struct appctx *appctx, char *buf, size_t framesz)
Christopher Fauleta1cda022016-12-21 08:58:06 +01001162{
1163 struct stream_interface *si = appctx->owner;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001164 int ret;
1165 uint32_t netint;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001166
Willy Tarreau06d80a92017-10-19 14:32:15 +02001167 ret = co_getblk(si_oc(si), (char *)&netint, 4, 0);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001168 if (ret > 0) {
1169 framesz = ntohl(netint);
Christopher Faulet42bfa462017-01-04 14:14:19 +01001170 if (framesz > SPOE_APPCTX(appctx)->max_frame_size) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001171 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOO_BIG;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001172 return -1;
1173 }
Willy Tarreau06d80a92017-10-19 14:32:15 +02001174 ret = co_getblk(si_oc(si), buf, framesz, 4);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001175 }
1176 if (ret <= 0) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001177 if (ret == 0) {
Christopher Fauleta1cda022016-12-21 08:58:06 +01001178 return 1; /* retry */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001179 }
1180 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001181 return -1; /* error */
1182 }
1183 return framesz;
1184}
1185
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001186/********************************************************************
1187 * Functions that manage the SPOE applet
1188 ********************************************************************/
Christopher Faulet4596fb72017-01-11 14:05:19 +01001189static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001190spoe_wakeup_appctx(struct appctx *appctx)
Christopher Faulet4596fb72017-01-11 14:05:19 +01001191{
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01001192 si_want_get(appctx->owner);
Willy Tarreau8bb2ffb2018-11-14 17:54:13 +01001193 si_rx_endp_more(appctx->owner);
Christopher Faulet4596fb72017-01-11 14:05:19 +01001194 appctx_wakeup(appctx);
1195 return 1;
1196}
1197
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001198/* Callback function that catches applet timeouts. If a timeout occurred, we set
1199 * <appctx->st1> flag and the SPOE applet is woken up. */
1200static struct task *
Willy Tarreau144f84a2021-03-02 16:09:26 +01001201spoe_process_appctx(struct task * task, void *context, unsigned int state)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001202{
Olivier Houchard9f6af332018-05-25 14:04:04 +02001203 struct appctx *appctx = context;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001204
1205 appctx->st1 = SPOE_APPCTX_ERR_NONE;
1206 if (tick_is_expired(task->expire, now_ms)) {
1207 task->expire = TICK_ETERNITY;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001208 appctx->st1 = SPOE_APPCTX_ERR_TOUT;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001209 }
Christopher Faulet8ef75252017-02-20 22:56:03 +01001210 spoe_wakeup_appctx(appctx);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001211 return task;
1212}
1213
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001214/* Callback function that releases a SPOE applet. This happens when the
1215 * connection with the agent is closed. */
1216static void
Christopher Faulet8ef75252017-02-20 22:56:03 +01001217spoe_release_appctx(struct appctx *appctx)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001218{
Christopher Faulet8ef75252017-02-20 22:56:03 +01001219 struct stream_interface *si = appctx->owner;
1220 struct spoe_appctx *spoe_appctx = SPOE_APPCTX(appctx);
1221 struct spoe_agent *agent;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001222 struct spoe_context *ctx, *back;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001223
1224 if (spoe_appctx == NULL)
1225 return;
1226
1227 appctx->ctx.spoe.ptr = NULL;
1228 agent = spoe_appctx->agent;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001229
1230 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p\n",
1231 (int)now.tv_sec, (int)now.tv_usec, agent->id,
1232 __FUNCTION__, appctx);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001233
Christopher Faulet8ef75252017-02-20 22:56:03 +01001234 /* Remove applet from the list of running applets */
Willy Tarreau4781b152021-04-06 13:53:36 +02001235 _HA_ATOMIC_DEC(&agent->counters.applets);
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001236 HA_SPIN_LOCK(SPOE_APPLET_LOCK, &agent->rt[tid].lock);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001237 if (!LIST_ISEMPTY(&spoe_appctx->list)) {
Willy Tarreau2b718102021-04-21 07:32:39 +02001238 LIST_DELETE(&spoe_appctx->list);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001239 LIST_INIT(&spoe_appctx->list);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001240 }
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001241 HA_SPIN_UNLOCK(SPOE_APPLET_LOCK, &agent->rt[tid].lock);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001242
Christopher Faulet8ef75252017-02-20 22:56:03 +01001243 /* Shutdown the server connection, if needed */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001244 if (appctx->st0 != SPOE_APPCTX_ST_END) {
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001245 if (appctx->st0 == SPOE_APPCTX_ST_IDLE) {
1246 eb32_delete(&spoe_appctx->node);
Willy Tarreau4781b152021-04-06 13:53:36 +02001247 _HA_ATOMIC_DEC(&agent->counters.idles);
Christopher Fauletd1e1aa02023-04-26 15:56:59 +02001248 agent->rt[tid].idles--;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001249 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001250
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001251 appctx->st0 = SPOE_APPCTX_ST_END;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001252 if (spoe_appctx->status_code == SPOE_FRM_ERR_NONE)
1253 spoe_appctx->status_code = SPOE_FRM_ERR_IO;
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001254
1255 si_shutw(si);
1256 si_shutr(si);
1257 si_ic(si)->flags |= CF_READ_NULL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001258 }
1259
Christopher Faulet8ef75252017-02-20 22:56:03 +01001260 /* Destroy the task attached to this applet */
Willy Tarreauf6562792019-05-07 19:05:35 +02001261 task_destroy(spoe_appctx->task);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001262
Christopher Fauletee9b4a62022-08-25 18:50:18 +02001263 /* Report an error to all streams in the appctx waiting queue */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001264 list_for_each_entry_safe(ctx, back, &spoe_appctx->waiting_queue, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02001265 LIST_DELETE(&ctx->list);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001266 LIST_INIT(&ctx->list);
Willy Tarreau4781b152021-04-06 13:53:36 +02001267 _HA_ATOMIC_DEC(&agent->counters.nb_waiting);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01001268 spoe_update_stat_time(&ctx->stats.tv_wait, &ctx->stats.t_waiting);
Christopher Fauletcf181c72020-11-10 18:45:34 +01001269 ctx->spoe_appctx = NULL;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001270 ctx->state = SPOE_CTX_ST_ERROR;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001271 ctx->status_code = (spoe_appctx->status_code + 0x100);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001272 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001273 }
1274
Christopher Fauletee9b4a62022-08-25 18:50:18 +02001275 /* If the applet was processing a fragmented frame, report an error to
1276 * the corresponding stream. */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001277 if (spoe_appctx->frag_ctx.ctx) {
1278 ctx = spoe_appctx->frag_ctx.ctx;
Christopher Fauletfce747b2018-01-24 15:59:32 +01001279 ctx->spoe_appctx = NULL;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001280 ctx->state = SPOE_CTX_ST_ERROR;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001281 ctx->status_code = (spoe_appctx->status_code + 0x100);
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001282 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
1283 }
1284
Christopher Fauletee9b4a62022-08-25 18:50:18 +02001285 if (!LIST_ISEMPTY(&agent->rt[tid].applets)) {
1286 /* If there are still some running applets, remove reference on
1287 * the current one from streams in the async waiting queue. In
1288 * async mode, the ACK may be received from another appctx.
1289 */
Christopher Fauletcf181c72020-11-10 18:45:34 +01001290 list_for_each_entry_safe(ctx, back, &agent->rt[tid].waiting_queue, list) {
1291 if (ctx->spoe_appctx == spoe_appctx)
1292 ctx->spoe_appctx = NULL;
1293 }
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01001294 goto end;
Christopher Fauletcf181c72020-11-10 18:45:34 +01001295 }
Christopher Faulet4d350af2021-08-02 17:53:56 +02001296 else {
Christopher Fauletee9b4a62022-08-25 18:50:18 +02001297 /* It is the last running applet and the sending and async
1298 * waiting queues are not empty. So try to start a new applet if
1299 * HAproxy is not stopping. On success, we remove reference on
1300 * the current appctx from streams in the async waiting queue.
1301 * In async mode, the ACK may be received from another appctx.
Christopher Faulet4d350af2021-08-02 17:53:56 +02001302 */
1303 if (!stopping &&
1304 (!LIST_ISEMPTY(&agent->rt[tid].sending_queue) || !LIST_ISEMPTY(&agent->rt[tid].waiting_queue)) &&
Christopher Fauletee9b4a62022-08-25 18:50:18 +02001305 spoe_create_appctx(agent->spoe_conf)) {
1306 list_for_each_entry_safe(ctx, back, &agent->rt[tid].waiting_queue, list) {
1307 if (ctx->spoe_appctx == spoe_appctx)
1308 ctx->spoe_appctx = NULL;
1309 }
Christopher Faulet4d350af2021-08-02 17:53:56 +02001310 goto end;
Christopher Fauletee9b4a62022-08-25 18:50:18 +02001311 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001312
Christopher Fauletee9b4a62022-08-25 18:50:18 +02001313 /* Otherwise, report an error to all streams in the sending and
1314 * async waiting queues.
1315 */
Christopher Faulet4d350af2021-08-02 17:53:56 +02001316 list_for_each_entry_safe(ctx, back, &agent->rt[tid].sending_queue, list) {
1317 LIST_DELETE(&ctx->list);
1318 LIST_INIT(&ctx->list);
1319 _HA_ATOMIC_DEC(&agent->counters.nb_sending);
1320 spoe_update_stat_time(&ctx->stats.tv_queue, &ctx->stats.t_queue);
1321 ctx->spoe_appctx = NULL;
1322 ctx->state = SPOE_CTX_ST_ERROR;
1323 ctx->status_code = (spoe_appctx->status_code + 0x100);
1324 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
1325 }
1326 list_for_each_entry_safe(ctx, back, &agent->rt[tid].waiting_queue, list) {
1327 LIST_DELETE(&ctx->list);
1328 LIST_INIT(&ctx->list);
1329 _HA_ATOMIC_DEC(&agent->counters.nb_waiting);
1330 spoe_update_stat_time(&ctx->stats.tv_wait, &ctx->stats.t_waiting);
1331 ctx->spoe_appctx = NULL;
1332 ctx->state = SPOE_CTX_ST_ERROR;
1333 ctx->status_code = (spoe_appctx->status_code + 0x100);
1334 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
1335 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001336 }
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01001337
1338 end:
Christopher Faulet55ae8a62019-05-23 22:47:48 +02001339 /* Release allocated memory */
1340 spoe_release_buffer(&spoe_appctx->buffer,
1341 &spoe_appctx->buffer_wait);
1342 pool_free(pool_head_spoe_appctx, spoe_appctx);
1343
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01001344 /* Update runtinme agent info */
Christopher Faulet24289f22017-09-25 14:48:02 +02001345 agent->rt[tid].frame_size = agent->max_frame_size;
1346 list_for_each_entry(spoe_appctx, &agent->rt[tid].applets, list)
1347 HA_ATOMIC_UPDATE_MIN(&agent->rt[tid].frame_size, spoe_appctx->max_frame_size);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001348}
1349
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001350static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001351spoe_handle_connect_appctx(struct appctx *appctx)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001352{
Christopher Fauleta1cda022016-12-21 08:58:06 +01001353 struct stream_interface *si = appctx->owner;
Christopher Faulet42bfa462017-01-04 14:14:19 +01001354 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001355 char *frame, *buf;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001356 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001357
Willy Tarreau7ab22adb2019-06-05 14:53:22 +02001358 if (si_state_in(si->state, SI_SB_CER|SI_SB_DIS|SI_SB_CLO)) {
1359 /* closed */
1360 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO;
1361 goto exit;
1362 }
1363
Willy Tarreau4f283fa2019-06-05 14:34:03 +02001364 if (!si_state_in(si->state, SI_SB_RDY|SI_SB_EST)) {
Willy Tarreau7ab22adb2019-06-05 14:53:22 +02001365 /* not connected yet */
Willy Tarreau8bb2ffb2018-11-14 17:54:13 +01001366 si_rx_endp_more(si);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001367 task_wakeup(si_strm(si)->task, TASK_WOKEN_MSG);
1368 goto stop;
1369 }
Christopher Fauleta73e59b2016-12-09 17:30:18 +01001370
Christopher Fauleta1cda022016-12-21 08:58:06 +01001371 if (appctx->st1 == SPOE_APPCTX_ERR_TOUT) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001372 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
1373 " - Connection timed out\n",
1374 (int)now.tv_sec, (int)now.tv_usec, agent->id,
1375 __FUNCTION__, appctx);
1376 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOUT;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001377 goto exit;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001378 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001379
Christopher Faulet42bfa462017-01-04 14:14:19 +01001380 if (SPOE_APPCTX(appctx)->task->expire == TICK_ETERNITY)
Christopher Faulet8ef75252017-02-20 22:56:03 +01001381 SPOE_APPCTX(appctx)->task->expire =
1382 tick_add_ifset(now_ms, agent->timeout.hello);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001383
Christopher Faulet8ef75252017-02-20 22:56:03 +01001384 /* 4 bytes are reserved at the beginning of <buf> to store the frame
1385 * length. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001386 buf = trash.area; frame = buf+4;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001387 ret = spoe_prepare_hahello_frame(appctx, frame,
1388 SPOE_APPCTX(appctx)->max_frame_size);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001389 if (ret > 1)
Christopher Faulet8ef75252017-02-20 22:56:03 +01001390 ret = spoe_send_frame(appctx, buf, ret);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001391
1392 switch (ret) {
1393 case -1: /* error */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001394 case 0: /* ignore => an error, cannot be ignored */
1395 goto exit;
1396
1397 case 1: /* retry later */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001398 goto stop;
1399
Christopher Faulet8ef75252017-02-20 22:56:03 +01001400 default:
1401 /* HELLO frame successfully sent, now wait for the
1402 * reply. */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001403 appctx->st0 = SPOE_APPCTX_ST_CONNECTING;
1404 goto next;
1405 }
1406
1407 next:
1408 return 0;
1409 stop:
1410 return 1;
1411 exit:
1412 appctx->st0 = SPOE_APPCTX_ST_EXIT;
1413 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001414}
1415
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001416static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001417spoe_handle_connecting_appctx(struct appctx *appctx)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001418{
Christopher Fauleta1cda022016-12-21 08:58:06 +01001419 struct stream_interface *si = appctx->owner;
Christopher Faulet42bfa462017-01-04 14:14:19 +01001420 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001421 char *frame;
1422 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001423
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001424
Christopher Fauletb067b062017-01-04 16:39:11 +01001425 if (si->state == SI_ST_CLO || si_opposite(si)->state == SI_ST_CLO) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001426 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001427 goto exit;
Christopher Fauletb067b062017-01-04 16:39:11 +01001428 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001429
Christopher Fauleta1cda022016-12-21 08:58:06 +01001430 if (appctx->st1 == SPOE_APPCTX_ERR_TOUT) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001431 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
1432 " - Connection timed out\n",
1433 (int)now.tv_sec, (int)now.tv_usec, agent->id,
1434 __FUNCTION__, appctx);
1435 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOUT;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001436 goto exit;
1437 }
1438
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001439 frame = trash.area; trash.data = 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001440 ret = spoe_recv_frame(appctx, frame,
1441 SPOE_APPCTX(appctx)->max_frame_size);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001442 if (ret > 1) {
1443 if (*frame == SPOE_FRM_T_AGENT_DISCON) {
1444 appctx->st0 = SPOE_APPCTX_ST_DISCONNECTING;
1445 goto next;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001446 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001447 trash.data = ret + 4;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001448 ret = spoe_handle_agenthello_frame(appctx, frame, ret);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001449 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001450
Christopher Fauleta1cda022016-12-21 08:58:06 +01001451 switch (ret) {
1452 case -1: /* error */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001453 case 0: /* ignore => an error, cannot be ignored */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001454 appctx->st0 = SPOE_APPCTX_ST_DISCONNECT;
1455 goto next;
1456
1457 case 1: /* retry later */
1458 goto stop;
1459
1460 default:
Willy Tarreau4781b152021-04-06 13:53:36 +02001461 _HA_ATOMIC_INC(&agent->counters.idles);
Christopher Fauletd1e1aa02023-04-26 15:56:59 +02001462 agent->rt[tid].idles++;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001463 appctx->st0 = SPOE_APPCTX_ST_IDLE;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001464 SPOE_APPCTX(appctx)->node.key = 0;
1465 eb32_insert(&agent->rt[tid].idle_applets, &SPOE_APPCTX(appctx)->node);
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01001466
1467 /* Update runtinme agent info */
Christopher Faulet24289f22017-09-25 14:48:02 +02001468 HA_ATOMIC_UPDATE_MIN(&agent->rt[tid].frame_size, SPOE_APPCTX(appctx)->max_frame_size);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001469 goto next;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001470 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001471
Christopher Fauleta1cda022016-12-21 08:58:06 +01001472 next:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001473 /* Do not forget to remove processed frame from the output buffer */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001474 if (trash.data)
1475 co_skip(si_oc(si), trash.data);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001476
1477 SPOE_APPCTX(appctx)->task->expire =
1478 tick_add_ifset(now_ms, agent->timeout.idle);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001479 return 0;
1480 stop:
1481 return 1;
1482 exit:
1483 appctx->st0 = SPOE_APPCTX_ST_EXIT;
1484 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001485}
1486
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001487
Christopher Fauleta1cda022016-12-21 08:58:06 +01001488static int
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001489spoe_handle_sending_frame_appctx(struct appctx *appctx, int *skip)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001490{
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001491 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
1492 struct spoe_context *ctx = NULL;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001493 char *frame, *buf;
1494 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001495
Christopher Faulet8ef75252017-02-20 22:56:03 +01001496 /* 4 bytes are reserved at the beginning of <buf> to store the frame
1497 * length. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001498 buf = trash.area; frame = buf+4;
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001499
1500 if (appctx->st0 == SPOE_APPCTX_ST_SENDING_FRAG_NOTIFY) {
1501 ctx = SPOE_APPCTX(appctx)->frag_ctx.ctx;
1502 ret = spoe_prepare_hafrag_frame(appctx, ctx, frame,
1503 SPOE_APPCTX(appctx)->max_frame_size);
1504 }
Christopher Faulet24289f22017-09-25 14:48:02 +02001505 else if (LIST_ISEMPTY(&agent->rt[tid].sending_queue)) {
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001506 *skip = 1;
1507 ret = 1;
1508 goto end;
1509 }
1510 else {
Christopher Faulet24289f22017-09-25 14:48:02 +02001511 ctx = LIST_NEXT(&agent->rt[tid].sending_queue, typeof(ctx), list);
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001512 ret = spoe_prepare_hanotify_frame(appctx, ctx, frame,
1513 SPOE_APPCTX(appctx)->max_frame_size);
1514
1515 }
1516
Christopher Faulet8ef75252017-02-20 22:56:03 +01001517 if (ret > 1)
1518 ret = spoe_send_frame(appctx, buf, ret);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001519
Christopher Faulet8ef75252017-02-20 22:56:03 +01001520 switch (ret) {
1521 case -1: /* error */
1522 appctx->st0 = SPOE_APPCTX_ST_DISCONNECT;
1523 goto end;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001524
Christopher Faulet8ef75252017-02-20 22:56:03 +01001525 case 0: /* ignore */
1526 if (ctx == NULL)
1527 goto abort_frag_frame;
1528
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001529 spoe_release_buffer(&ctx->buffer, &ctx->buffer_wait);
Willy Tarreau2b718102021-04-21 07:32:39 +02001530 LIST_DELETE(&ctx->list);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001531 LIST_INIT(&ctx->list);
Willy Tarreau4781b152021-04-06 13:53:36 +02001532 _HA_ATOMIC_DEC(&agent->counters.nb_sending);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01001533 spoe_update_stat_time(&ctx->stats.tv_queue, &ctx->stats.t_queue);
Christopher Fauletfce747b2018-01-24 15:59:32 +01001534 ctx->spoe_appctx = NULL;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001535 ctx->state = SPOE_CTX_ST_ERROR;
1536 ctx->status_code = (SPOE_APPCTX(appctx)->status_code + 0x100);
1537 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001538 *skip = 1;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001539 break;
1540
1541 case 1: /* retry */
1542 *skip = 1;
1543 break;
1544
1545 default:
1546 if (ctx == NULL)
1547 goto abort_frag_frame;
1548
Christopher Fauletf032c3e2017-02-17 15:18:35 +01001549 spoe_release_buffer(&ctx->buffer, &ctx->buffer_wait);
Willy Tarreau2b718102021-04-21 07:32:39 +02001550 LIST_DELETE(&ctx->list);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001551 LIST_INIT(&ctx->list);
Willy Tarreau4781b152021-04-06 13:53:36 +02001552 _HA_ATOMIC_DEC(&agent->counters.nb_sending);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01001553 spoe_update_stat_time(&ctx->stats.tv_queue, &ctx->stats.t_queue);
Christopher Fauletfce747b2018-01-24 15:59:32 +01001554 ctx->spoe_appctx = SPOE_APPCTX(appctx);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001555 if (!(ctx->flags & SPOE_CTX_FL_FRAGMENTED) ||
1556 (ctx->frag_ctx.flags & SPOE_FRM_FL_FIN))
1557 goto no_frag_frame_sent;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001558 else
Christopher Faulet8ef75252017-02-20 22:56:03 +01001559 goto frag_frame_sent;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001560 }
1561 goto end;
1562
1563 frag_frame_sent:
1564 appctx->st0 = SPOE_APPCTX_ST_SENDING_FRAG_NOTIFY;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001565 *skip = 1;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001566 SPOE_APPCTX(appctx)->frag_ctx.ctx = ctx;
1567 SPOE_APPCTX(appctx)->frag_ctx.cursid = ctx->stream_id;
1568 SPOE_APPCTX(appctx)->frag_ctx.curfid = ctx->frame_id;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001569 ctx->state = SPOE_CTX_ST_ENCODING_MSGS;
1570 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
1571 goto end;
1572
1573 no_frag_frame_sent:
1574 if (SPOE_APPCTX(appctx)->flags & SPOE_APPCTX_FL_ASYNC) {
1575 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
Willy Tarreau2b718102021-04-21 07:32:39 +02001576 LIST_APPEND(&agent->rt[tid].waiting_queue, &ctx->list);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001577 }
1578 else if (SPOE_APPCTX(appctx)->flags & SPOE_APPCTX_FL_PIPELINING) {
1579 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
Willy Tarreau2b718102021-04-21 07:32:39 +02001580 LIST_APPEND(&SPOE_APPCTX(appctx)->waiting_queue, &ctx->list);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001581 }
1582 else {
1583 appctx->st0 = SPOE_APPCTX_ST_WAITING_SYNC_ACK;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001584 *skip = 1;
Willy Tarreau2b718102021-04-21 07:32:39 +02001585 LIST_APPEND(&SPOE_APPCTX(appctx)->waiting_queue, &ctx->list);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001586 }
Willy Tarreau4781b152021-04-06 13:53:36 +02001587 _HA_ATOMIC_INC(&agent->counters.nb_waiting);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01001588 ctx->stats.tv_wait = now;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001589 SPOE_APPCTX(appctx)->frag_ctx.ctx = NULL;
1590 SPOE_APPCTX(appctx)->frag_ctx.cursid = 0;
1591 SPOE_APPCTX(appctx)->frag_ctx.curfid = 0;
Christopher Faulet8f82b202018-01-24 16:23:03 +01001592 SPOE_APPCTX(appctx)->cur_fpa++;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001593
Christopher Faulet8ef75252017-02-20 22:56:03 +01001594 ctx->state = SPOE_CTX_ST_WAITING_ACK;
1595 goto end;
1596
1597 abort_frag_frame:
1598 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
1599 SPOE_APPCTX(appctx)->frag_ctx.ctx = NULL;
1600 SPOE_APPCTX(appctx)->frag_ctx.cursid = 0;
1601 SPOE_APPCTX(appctx)->frag_ctx.curfid = 0;
1602 goto end;
1603
1604 end:
1605 return ret;
1606}
1607
1608static int
1609spoe_handle_receiving_frame_appctx(struct appctx *appctx, int *skip)
1610{
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02001611 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001612 struct spoe_context *ctx = NULL;
1613 char *frame;
1614 int ret;
1615
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001616 frame = trash.area; trash.data = 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001617 ret = spoe_recv_frame(appctx, frame,
1618 SPOE_APPCTX(appctx)->max_frame_size);
1619 if (ret > 1) {
1620 if (*frame == SPOE_FRM_T_AGENT_DISCON) {
1621 appctx->st0 = SPOE_APPCTX_ST_DISCONNECTING;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001622 ret = -1;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001623 goto end;
1624 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001625 trash.data = ret + 4;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001626 ret = spoe_handle_agentack_frame(appctx, &ctx, frame, ret);
1627 }
1628 switch (ret) {
1629 case -1: /* error */
1630 appctx->st0 = SPOE_APPCTX_ST_DISCONNECT;
1631 break;
1632
1633 case 0: /* ignore */
1634 break;
1635
1636 case 1: /* retry */
1637 *skip = 1;
1638 break;
1639
1640 default:
Willy Tarreau2b718102021-04-21 07:32:39 +02001641 LIST_DELETE(&ctx->list);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001642 LIST_INIT(&ctx->list);
Willy Tarreau4781b152021-04-06 13:53:36 +02001643 _HA_ATOMIC_DEC(&agent->counters.nb_waiting);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01001644 spoe_update_stat_time(&ctx->stats.tv_wait, &ctx->stats.t_waiting);
1645 ctx->stats.tv_response = now;
Christopher Faulet8f82b202018-01-24 16:23:03 +01001646 if (ctx->spoe_appctx) {
1647 ctx->spoe_appctx->cur_fpa--;
Christopher Fauletfce747b2018-01-24 15:59:32 +01001648 ctx->spoe_appctx = NULL;
Christopher Faulet8f82b202018-01-24 16:23:03 +01001649 }
Christopher Faulet8eda93f2017-02-09 09:44:33 +01001650 if (appctx->st0 == SPOE_APPCTX_ST_SENDING_FRAG_NOTIFY &&
1651 ctx == SPOE_APPCTX(appctx)->frag_ctx.ctx) {
1652 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
1653 SPOE_APPCTX(appctx)->frag_ctx.ctx = NULL;
1654 SPOE_APPCTX(appctx)->frag_ctx.cursid = 0;
1655 SPOE_APPCTX(appctx)->frag_ctx.curfid = 0;
1656 }
1657 else if (appctx->st0 == SPOE_APPCTX_ST_WAITING_SYNC_ACK)
1658 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001659 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
1660 break;
1661 }
1662
1663 /* Do not forget to remove processed frame from the output buffer */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001664 if (trash.data)
1665 co_skip(si_oc(appctx->owner), trash.data);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001666 end:
1667 return ret;
1668}
1669
1670static int
1671spoe_handle_processing_appctx(struct appctx *appctx)
1672{
1673 struct stream_interface *si = appctx->owner;
Christopher Fauletf028bb62021-08-02 18:13:27 +02001674 struct server *srv = objt_server(si_strm(si)->target);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001675 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Fauletf028bb62021-08-02 18:13:27 +02001676 int ret, skip_sending = 0, skip_receiving = 0, active_s = 0, active_r = 0, close_asap = 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001677
1678 if (si->state == SI_ST_CLO || si_opposite(si)->state == SI_ST_CLO) {
1679 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO;
1680 goto exit;
1681 }
1682
1683 if (appctx->st1 == SPOE_APPCTX_ERR_TOUT) {
1684 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOUT;
1685 appctx->st0 = SPOE_APPCTX_ST_DISCONNECT;
1686 appctx->st1 = SPOE_APPCTX_ERR_NONE;
1687 goto next;
1688 }
1689
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001690 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001691 " - process: fpa=%u/%u - appctx-state=%s - weight=%u - flags=0x%08x\n",
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001692 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Faulet8f82b202018-01-24 16:23:03 +01001693 __FUNCTION__, appctx, SPOE_APPCTX(appctx)->cur_fpa,
1694 agent->max_fpa, spoe_appctx_state_str[appctx->st0],
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001695 SPOE_APPCTX(appctx)->node.key, SPOE_APPCTX(appctx)->flags);
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001696
Christopher Fauletf028bb62021-08-02 18:13:27 +02001697
1698 /* Close the applet ASAP because some sessions are waiting for a free
1699 * connection slot. It is only an issue in multithreaded mode.
1700 */
1701 close_asap = (global.nbthread > 1 &&
1702 (agent->b.be->nbpend ||
1703 (srv && (srv->nbpend || (srv->maxconn && srv->served >= srv_dynamic_maxconn(srv))))));
1704
Christopher Faulet8f82b202018-01-24 16:23:03 +01001705 /* receiving_frame loop */
1706 while (!skip_receiving) {
1707 ret = spoe_handle_receiving_frame_appctx(appctx, &skip_receiving);
1708 switch (ret) {
1709 case -1: /* error */
1710 goto next;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001711
Christopher Faulet8f82b202018-01-24 16:23:03 +01001712 case 0: /* ignore */
1713 active_r = 1;
1714 break;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001715
Christopher Faulet8f82b202018-01-24 16:23:03 +01001716 case 1: /* retry */
1717 break;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001718
Christopher Faulet8f82b202018-01-24 16:23:03 +01001719 default:
1720 active_r = 1;
1721 break;
1722 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001723 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001724
Christopher Faulet887d1c42023-06-05 08:15:59 +02001725 /* Don"t try to send new frame we are waiting for at lease a ack, in
1726 * sync mode or if applet must be closed ASAP
1727 */
1728 if (appctx->st0 == SPOE_APPCTX_ST_WAITING_SYNC_ACK || (close_asap && SPOE_APPCTX(appctx)->cur_fpa))
1729 skip_sending = 1;
1730
Christopher Faulet8f82b202018-01-24 16:23:03 +01001731 /* send_frame loop */
1732 while (!skip_sending && SPOE_APPCTX(appctx)->cur_fpa < agent->max_fpa) {
1733 ret = spoe_handle_sending_frame_appctx(appctx, &skip_sending);
1734 switch (ret) {
1735 case -1: /* error */
1736 goto next;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001737
Christopher Faulet8f82b202018-01-24 16:23:03 +01001738 case 0: /* ignore */
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001739 if (SPOE_APPCTX(appctx)->node.key)
1740 SPOE_APPCTX(appctx)->node.key--;
Christopher Faulet8f82b202018-01-24 16:23:03 +01001741 active_s++;
1742 break;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001743
Christopher Faulet8f82b202018-01-24 16:23:03 +01001744 case 1: /* retry */
1745 break;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001746
Christopher Faulet8f82b202018-01-24 16:23:03 +01001747 default:
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001748 if (SPOE_APPCTX(appctx)->node.key)
1749 SPOE_APPCTX(appctx)->node.key--;
Christopher Faulet8f82b202018-01-24 16:23:03 +01001750 active_s++;
1751 break;
1752 }
Christopher Fauletf028bb62021-08-02 18:13:27 +02001753
1754 /* if applet must be close ASAP, don't send more than a frame */
1755 if (close_asap)
1756 break;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001757 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001758
Christopher Faulet8f82b202018-01-24 16:23:03 +01001759 if (active_s || active_r) {
Christopher Faulet8f82b202018-01-24 16:23:03 +01001760 update_freq_ctr(&agent->rt[tid].processing_per_sec, active_s);
1761 SPOE_APPCTX(appctx)->task->expire = tick_add_ifset(now_ms, agent->timeout.idle);
1762 }
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001763
Christopher Faulet8f82b202018-01-24 16:23:03 +01001764 if (appctx->st0 == SPOE_APPCTX_ST_PROCESSING && SPOE_APPCTX(appctx)->cur_fpa < agent->max_fpa) {
Christopher Fauletf028bb62021-08-02 18:13:27 +02001765 /* If applet must be closed, don't switch it in IDLE state and
1766 * close it when the last waiting frame is acknowledged.
Christopher Faulet9e647e52021-03-01 15:01:14 +01001767 */
Christopher Fauletf028bb62021-08-02 18:13:27 +02001768 if (close_asap) {
1769 if (SPOE_APPCTX(appctx)->cur_fpa)
1770 goto out;
Christopher Faulet9e647e52021-03-01 15:01:14 +01001771 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_NONE;
1772 appctx->st0 = SPOE_APPCTX_ST_DISCONNECT;
1773 appctx->st1 = SPOE_APPCTX_ERR_NONE;
1774 goto next;
1775 }
Willy Tarreau4781b152021-04-06 13:53:36 +02001776 _HA_ATOMIC_INC(&agent->counters.idles);
Christopher Fauletd1e1aa02023-04-26 15:56:59 +02001777 agent->rt[tid].idles++;
Christopher Faulet8f82b202018-01-24 16:23:03 +01001778 appctx->st0 = SPOE_APPCTX_ST_IDLE;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01001779 eb32_insert(&agent->rt[tid].idle_applets, &SPOE_APPCTX(appctx)->node);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001780 }
Christopher Fauletf028bb62021-08-02 18:13:27 +02001781
1782 out:
Christopher Fauleta1cda022016-12-21 08:58:06 +01001783 return 1;
1784
Christopher Faulet8f82b202018-01-24 16:23:03 +01001785 next:
1786 SPOE_APPCTX(appctx)->task->expire = tick_add_ifset(now_ms, agent->timeout.idle);
1787 return 0;
1788
Christopher Fauleta1cda022016-12-21 08:58:06 +01001789 exit:
1790 appctx->st0 = SPOE_APPCTX_ST_EXIT;
1791 return 0;
1792}
1793
1794static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001795spoe_handle_disconnect_appctx(struct appctx *appctx)
Christopher Fauleta1cda022016-12-21 08:58:06 +01001796{
1797 struct stream_interface *si = appctx->owner;
Christopher Faulet42bfa462017-01-04 14:14:19 +01001798 struct spoe_agent *agent = SPOE_APPCTX(appctx)->agent;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001799 char *frame, *buf;
1800 int ret;
Christopher Fauletb067b062017-01-04 16:39:11 +01001801
Christopher Fauleta1cda022016-12-21 08:58:06 +01001802 if (si->state == SI_ST_CLO || si_opposite(si)->state == SI_ST_CLO)
1803 goto exit;
1804
1805 if (appctx->st1 == SPOE_APPCTX_ERR_TOUT)
1806 goto exit;
1807
Christopher Faulet8ef75252017-02-20 22:56:03 +01001808 /* 4 bytes are reserved at the beginning of <buf> to store the frame
1809 * length. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001810 buf = trash.area; frame = buf+4;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001811 ret = spoe_prepare_hadiscon_frame(appctx, frame,
1812 SPOE_APPCTX(appctx)->max_frame_size);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001813 if (ret > 1)
Christopher Faulet8ef75252017-02-20 22:56:03 +01001814 ret = spoe_send_frame(appctx, buf, ret);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001815
1816 switch (ret) {
1817 case -1: /* error */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001818 case 0: /* ignore => an error, cannot be ignored */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001819 goto exit;
1820
1821 case 1: /* retry */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001822 goto stop;
1823
1824 default:
1825 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
1826 " - disconnected by HAProxy (%d): %s\n",
1827 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Faulet8ef75252017-02-20 22:56:03 +01001828 __FUNCTION__, appctx,
1829 SPOE_APPCTX(appctx)->status_code,
1830 spoe_frm_err_reasons[SPOE_APPCTX(appctx)->status_code]);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001831
1832 appctx->st0 = SPOE_APPCTX_ST_DISCONNECTING;
1833 goto next;
1834 }
1835
1836 next:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001837 SPOE_APPCTX(appctx)->task->expire =
1838 tick_add_ifset(now_ms, agent->timeout.idle);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001839 return 0;
1840 stop:
1841 return 1;
1842 exit:
1843 appctx->st0 = SPOE_APPCTX_ST_EXIT;
1844 return 0;
1845}
1846
1847static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01001848spoe_handle_disconnecting_appctx(struct appctx *appctx)
Christopher Fauleta1cda022016-12-21 08:58:06 +01001849{
1850 struct stream_interface *si = appctx->owner;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001851 char *frame;
1852 int ret;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001853
Christopher Fauletb067b062017-01-04 16:39:11 +01001854 if (si->state == SI_ST_CLO || si_opposite(si)->state == SI_ST_CLO) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001855 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_IO;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001856 goto exit;
Christopher Fauletb067b062017-01-04 16:39:11 +01001857 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001858
Christopher Fauletb067b062017-01-04 16:39:11 +01001859 if (appctx->st1 == SPOE_APPCTX_ERR_TOUT) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001860 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_TOUT;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001861 goto exit;
Christopher Fauletb067b062017-01-04 16:39:11 +01001862 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001863
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001864 frame = trash.area; trash.data = 0;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001865 ret = spoe_recv_frame(appctx, frame,
1866 SPOE_APPCTX(appctx)->max_frame_size);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001867 if (ret > 1) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001868 trash.data = ret + 4;
Christopher Faulet8ef75252017-02-20 22:56:03 +01001869 ret = spoe_handle_agentdiscon_frame(appctx, frame, ret);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001870 }
1871
1872 switch (ret) {
1873 case -1: /* error */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001874 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
1875 " - error on frame (%s)\n",
1876 (int)now.tv_sec, (int)now.tv_usec,
Christopher Faulet42bfa462017-01-04 14:14:19 +01001877 ((struct spoe_agent *)SPOE_APPCTX(appctx)->agent)->id,
Christopher Fauleta1cda022016-12-21 08:58:06 +01001878 __FUNCTION__, appctx,
Christopher Faulet8ef75252017-02-20 22:56:03 +01001879 spoe_frm_err_reasons[SPOE_APPCTX(appctx)->status_code]);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001880 goto exit;
1881
1882 case 0: /* ignore */
Christopher Fauleta1cda022016-12-21 08:58:06 +01001883 goto next;
1884
1885 case 1: /* retry */
1886 goto stop;
1887
1888 default:
Christopher Fauleta1cda022016-12-21 08:58:06 +01001889 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
Christopher Faulet8ef75252017-02-20 22:56:03 +01001890 " - disconnected by peer (%d): %.*s\n",
Christopher Fauleta1cda022016-12-21 08:58:06 +01001891 (int)now.tv_sec, (int)now.tv_usec,
Christopher Faulet42bfa462017-01-04 14:14:19 +01001892 ((struct spoe_agent *)SPOE_APPCTX(appctx)->agent)->id,
Christopher Faulet8ef75252017-02-20 22:56:03 +01001893 __FUNCTION__, appctx, SPOE_APPCTX(appctx)->status_code,
1894 SPOE_APPCTX(appctx)->rlen, SPOE_APPCTX(appctx)->reason);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001895 goto exit;
1896 }
1897
1898 next:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001899 /* Do not forget to remove processed frame from the output buffer */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001900 if (trash.data)
1901 co_skip(si_oc(appctx->owner), trash.data);
Christopher Faulet8ef75252017-02-20 22:56:03 +01001902
Christopher Fauleta1cda022016-12-21 08:58:06 +01001903 return 0;
1904 stop:
1905 return 1;
1906 exit:
1907 appctx->st0 = SPOE_APPCTX_ST_EXIT;
1908 return 0;
1909}
1910
1911/* I/O Handler processing messages exchanged with the agent */
1912static void
Christopher Faulet8ef75252017-02-20 22:56:03 +01001913spoe_handle_appctx(struct appctx *appctx)
Christopher Fauleta1cda022016-12-21 08:58:06 +01001914{
Christopher Faulet8ef75252017-02-20 22:56:03 +01001915 struct stream_interface *si = appctx->owner;
1916 struct spoe_agent *agent;
1917
1918 if (SPOE_APPCTX(appctx) == NULL)
1919 return;
Christopher Fauleta1cda022016-12-21 08:58:06 +01001920
Christopher Faulet8ef75252017-02-20 22:56:03 +01001921 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_NONE;
1922 agent = SPOE_APPCTX(appctx)->agent;
Christopher Fauletb067b062017-01-04 16:39:11 +01001923
Christopher Fauleta1cda022016-12-21 08:58:06 +01001924 switchstate:
1925 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: appctx=%p"
1926 " - appctx-state=%s\n",
1927 (int)now.tv_sec, (int)now.tv_usec, agent->id,
1928 __FUNCTION__, appctx, spoe_appctx_state_str[appctx->st0]);
1929
1930 switch (appctx->st0) {
1931 case SPOE_APPCTX_ST_CONNECT:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001932 if (spoe_handle_connect_appctx(appctx))
Christopher Fauleta1cda022016-12-21 08:58:06 +01001933 goto out;
1934 goto switchstate;
1935
1936 case SPOE_APPCTX_ST_CONNECTING:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001937 if (spoe_handle_connecting_appctx(appctx))
Christopher Fauleta1cda022016-12-21 08:58:06 +01001938 goto out;
1939 goto switchstate;
1940
1941 case SPOE_APPCTX_ST_IDLE:
Willy Tarreau4781b152021-04-06 13:53:36 +02001942 _HA_ATOMIC_DEC(&agent->counters.idles);
Christopher Fauletd1e1aa02023-04-26 15:56:59 +02001943 agent->rt[tid].idles--;
Christopher Faulet7d9f1ba2018-02-28 13:33:26 +01001944 eb32_delete(&SPOE_APPCTX(appctx)->node);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001945 if (stopping &&
Christopher Faulet24289f22017-09-25 14:48:02 +02001946 LIST_ISEMPTY(&agent->rt[tid].sending_queue) &&
Christopher Faulet42bfa462017-01-04 14:14:19 +01001947 LIST_ISEMPTY(&SPOE_APPCTX(appctx)->waiting_queue)) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01001948 SPOE_APPCTX(appctx)->task->expire =
1949 tick_add_ifset(now_ms, agent->timeout.idle);
Christopher Fauleta1cda022016-12-21 08:58:06 +01001950 appctx->st0 = SPOE_APPCTX_ST_DISCONNECT;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001951 goto switchstate;
1952 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001953 appctx->st0 = SPOE_APPCTX_ST_PROCESSING;
1954 /* fall through */
1955
1956 case SPOE_APPCTX_ST_PROCESSING:
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01001957 case SPOE_APPCTX_ST_SENDING_FRAG_NOTIFY:
1958 case SPOE_APPCTX_ST_WAITING_SYNC_ACK:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001959 if (spoe_handle_processing_appctx(appctx))
Christopher Fauleta1cda022016-12-21 08:58:06 +01001960 goto out;
1961 goto switchstate;
1962
1963 case SPOE_APPCTX_ST_DISCONNECT:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001964 if (spoe_handle_disconnect_appctx(appctx))
Christopher Fauleta1cda022016-12-21 08:58:06 +01001965 goto out;
1966 goto switchstate;
1967
1968 case SPOE_APPCTX_ST_DISCONNECTING:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001969 if (spoe_handle_disconnecting_appctx(appctx))
Christopher Fauleta1cda022016-12-21 08:58:06 +01001970 goto out;
1971 goto switchstate;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001972
1973 case SPOE_APPCTX_ST_EXIT:
Christopher Faulet8ef75252017-02-20 22:56:03 +01001974 appctx->st0 = SPOE_APPCTX_ST_END;
1975 SPOE_APPCTX(appctx)->task->expire = TICK_ETERNITY;
1976
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001977 si_shutw(si);
1978 si_shutr(si);
1979 si_ic(si)->flags |= CF_READ_NULL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001980 /* fall through */
1981
1982 case SPOE_APPCTX_ST_END:
Christopher Fauleta73e59b2016-12-09 17:30:18 +01001983 return;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001984 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01001985 out:
Christopher Faulet24289f22017-09-25 14:48:02 +02001986 if (stopping)
1987 spoe_wakeup_appctx(appctx);
1988
Christopher Faulet42bfa462017-01-04 14:14:19 +01001989 if (SPOE_APPCTX(appctx)->task->expire != TICK_ETERNITY)
1990 task_queue(SPOE_APPCTX(appctx)->task);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001991}
1992
1993struct applet spoe_applet = {
1994 .obj_type = OBJ_TYPE_APPLET,
1995 .name = "<SPOE>", /* used for logging */
Christopher Faulet8ef75252017-02-20 22:56:03 +01001996 .fct = spoe_handle_appctx,
1997 .release = spoe_release_appctx,
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001998};
1999
2000/* Create a SPOE applet. On success, the created applet is returned, else
2001 * NULL. */
2002static struct appctx *
Christopher Faulet8ef75252017-02-20 22:56:03 +01002003spoe_create_appctx(struct spoe_config *conf)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002004{
2005 struct appctx *appctx;
2006 struct session *sess;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002007 struct stream *strm;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002008
Emeric Brun1138fd02017-06-19 12:38:55 +02002009 if ((appctx = appctx_new(&spoe_applet, tid_bit)) == NULL)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002010 goto out_error;
2011
Willy Tarreauc9ef9bc2021-03-22 21:04:50 +01002012 appctx->ctx.spoe.ptr = pool_zalloc(pool_head_spoe_appctx);
Christopher Faulet42bfa462017-01-04 14:14:19 +01002013 if (SPOE_APPCTX(appctx) == NULL)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002014 goto out_free_appctx;
Christopher Fauleta1cda022016-12-21 08:58:06 +01002015
Christopher Faulet42bfa462017-01-04 14:14:19 +01002016 appctx->st0 = SPOE_APPCTX_ST_CONNECT;
Willy Tarreau5f4a47b2017-10-31 15:59:32 +01002017 if ((SPOE_APPCTX(appctx)->task = task_new(tid_bit)) == NULL)
Christopher Faulet42bfa462017-01-04 14:14:19 +01002018 goto out_free_spoe_appctx;
2019
2020 SPOE_APPCTX(appctx)->owner = appctx;
Christopher Faulet8ef75252017-02-20 22:56:03 +01002021 SPOE_APPCTX(appctx)->task->process = spoe_process_appctx;
Christopher Faulet42bfa462017-01-04 14:14:19 +01002022 SPOE_APPCTX(appctx)->task->context = appctx;
2023 SPOE_APPCTX(appctx)->agent = conf->agent;
2024 SPOE_APPCTX(appctx)->version = 0;
2025 SPOE_APPCTX(appctx)->max_frame_size = conf->agent->max_frame_size;
2026 SPOE_APPCTX(appctx)->flags = 0;
Christopher Fauletb067b062017-01-04 16:39:11 +01002027 SPOE_APPCTX(appctx)->status_code = SPOE_FRM_ERR_NONE;
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002028 SPOE_APPCTX(appctx)->buffer = BUF_NULL;
Christopher Faulet8f82b202018-01-24 16:23:03 +01002029 SPOE_APPCTX(appctx)->cur_fpa = 0;
Christopher Faulet4596fb72017-01-11 14:05:19 +01002030
Willy Tarreau90f366b2021-02-20 11:49:49 +01002031 LIST_INIT(&SPOE_APPCTX(appctx)->buffer_wait.list);
Christopher Faulet4596fb72017-01-11 14:05:19 +01002032 SPOE_APPCTX(appctx)->buffer_wait.target = appctx;
Christopher Faulet8ef75252017-02-20 22:56:03 +01002033 SPOE_APPCTX(appctx)->buffer_wait.wakeup_cb = (int (*)(void *))spoe_wakeup_appctx;
Christopher Faulet42bfa462017-01-04 14:14:19 +01002034
2035 LIST_INIT(&SPOE_APPCTX(appctx)->list);
2036 LIST_INIT(&SPOE_APPCTX(appctx)->waiting_queue);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002037
Willy Tarreau5820a362016-12-22 15:59:02 +01002038 sess = session_new(&conf->agent_fe, NULL, &appctx->obj_type);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002039 if (!sess)
2040 goto out_free_spoe;
2041
Christopher Faulet26256f82020-09-14 11:40:13 +02002042 if ((strm = stream_new(sess, &appctx->obj_type, &BUF_NULL)) == NULL)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002043 goto out_free_sess;
2044
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002045 stream_set_backend(strm, conf->agent->b.be);
2046
2047 /* applet is waiting for data */
Willy Tarreau0cd3bd62018-11-06 18:46:37 +01002048 si_cant_get(&strm->si[0]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002049 appctx_wakeup(appctx);
2050
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002051 strm->do_log = NULL;
2052 strm->res.flags |= CF_READ_DONTWAIT;
2053
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002054 HA_SPIN_LOCK(SPOE_APPLET_LOCK, &conf->agent->rt[tid].lock);
Willy Tarreau2b718102021-04-21 07:32:39 +02002055 LIST_APPEND(&conf->agent->rt[tid].applets, &SPOE_APPCTX(appctx)->list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002056 HA_SPIN_UNLOCK(SPOE_APPLET_LOCK, &conf->agent->rt[tid].lock);
Willy Tarreau4781b152021-04-06 13:53:36 +02002057 _HA_ATOMIC_INC(&conf->agent->counters.applets);
Emeric Brun5f77fef2017-05-29 15:26:51 +02002058
Emeric Brunc60def82017-09-27 14:59:38 +02002059 task_wakeup(SPOE_APPCTX(appctx)->task, TASK_WOKEN_INIT);
Willy Tarreau87787ac2017-08-28 16:22:54 +02002060 task_wakeup(strm->task, TASK_WOKEN_INIT);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002061 return appctx;
2062
2063 /* Error unrolling */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002064 out_free_sess:
2065 session_free(sess);
2066 out_free_spoe:
Olivier Houchard3f795f72019-04-17 22:51:06 +02002067 task_destroy(SPOE_APPCTX(appctx)->task);
Christopher Faulet42bfa462017-01-04 14:14:19 +01002068 out_free_spoe_appctx:
Willy Tarreaubafbe012017-11-24 17:34:44 +01002069 pool_free(pool_head_spoe_appctx, SPOE_APPCTX(appctx));
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002070 out_free_appctx:
2071 appctx_free(appctx);
2072 out_error:
2073 return NULL;
2074}
2075
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002076static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01002077spoe_queue_context(struct spoe_context *ctx)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002078{
2079 struct spoe_config *conf = FLT_CONF(ctx->filter);
2080 struct spoe_agent *agent = conf->agent;
2081 struct appctx *appctx;
Christopher Faulet42bfa462017-01-04 14:14:19 +01002082 struct spoe_appctx *spoe_appctx;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002083
Christopher Fauleta1cda022016-12-21 08:58:06 +01002084 /* Check if we need to create a new SPOE applet or not. */
Christopher Fauletd1e1aa02023-04-26 15:56:59 +02002085 if (agent->rt[tid].processing < agent->rt[tid].idles ||
2086 agent->rt[tid].processing < read_freq_ctr(&agent->rt[tid].processing_per_sec))
Christopher Fauleta1cda022016-12-21 08:58:06 +01002087 goto end;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002088
2089 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Fauleta1cda022016-12-21 08:58:06 +01002090 " - try to create new SPOE appctx\n",
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002091 (int)now.tv_sec, (int)now.tv_usec, agent->id, __FUNCTION__,
2092 ctx->strm);
2093
Christopher Fauleta1cda022016-12-21 08:58:06 +01002094 /* Do not try to create a new applet if there is no server up for the
2095 * agent's backend. */
2096 if (!agent->b.be->srv_act && !agent->b.be->srv_bck) {
2097 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2098 " - cannot create SPOE appctx: no server up\n",
2099 (int)now.tv_sec, (int)now.tv_usec, agent->id,
2100 __FUNCTION__, ctx->strm);
2101 goto end;
2102 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002103
Christopher Fauleta1cda022016-12-21 08:58:06 +01002104 /* Do not try to create a new applet if we have reached the maximum of
2105 * connection per seconds */
Christopher Faulet48026722016-11-16 15:01:12 +01002106 if (agent->cps_max > 0) {
Christopher Faulet24289f22017-09-25 14:48:02 +02002107 if (!freq_ctr_remain(&agent->rt[tid].conn_per_sec, agent->cps_max, 0)) {
Christopher Fauleta1cda022016-12-21 08:58:06 +01002108 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2109 " - cannot create SPOE appctx: max CPS reached\n",
2110 (int)now.tv_sec, (int)now.tv_usec, agent->id,
2111 __FUNCTION__, ctx->strm);
2112 goto end;
2113 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002114 }
2115
Christopher Faulet8ef75252017-02-20 22:56:03 +01002116 appctx = spoe_create_appctx(conf);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002117 if (appctx == NULL) {
2118 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2119 " - failed to create SPOE appctx\n",
2120 (int)now.tv_sec, (int)now.tv_usec, agent->id,
2121 __FUNCTION__, ctx->strm);
Christopher Faulet3b8e3492018-03-26 17:20:58 +02002122 send_log(&conf->agent_fe, LOG_EMERG,
Christopher Faulet72bcc472017-01-04 16:39:41 +01002123 "SPOE: [%s] failed to create SPOE applet\n",
2124 agent->id);
2125
Christopher Fauleta1cda022016-12-21 08:58:06 +01002126 goto end;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002127 }
2128
Christopher Fauleta1cda022016-12-21 08:58:06 +01002129 /* Increase the per-process number of cumulated connections */
2130 if (agent->cps_max > 0)
Christopher Faulet24289f22017-09-25 14:48:02 +02002131 update_freq_ctr(&agent->rt[tid].conn_per_sec, 1);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002132
Christopher Fauleta1cda022016-12-21 08:58:06 +01002133 end:
2134 /* The only reason to return an error is when there is no applet */
Christopher Faulet24289f22017-09-25 14:48:02 +02002135 if (LIST_ISEMPTY(&agent->rt[tid].applets)) {
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002136 ctx->status_code = SPOE_CTX_ERR_RES;
2137 return -1;
2138 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002139
Christopher Faulet3e86cec2019-04-10 14:02:12 +02002140 /* Add the SPOE context in the sending queue if the stream has no applet
2141 * already assigned and wakeup all idle applets. Otherwise, don't queue
2142 * it. */
Willy Tarreau4781b152021-04-06 13:53:36 +02002143 _HA_ATOMIC_INC(&agent->counters.nb_sending);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002144 spoe_update_stat_time(&ctx->stats.tv_request, &ctx->stats.t_request);
2145 ctx->stats.tv_queue = now;
Christopher Faulet3e86cec2019-04-10 14:02:12 +02002146 if (ctx->spoe_appctx)
2147 return 1;
Willy Tarreau2b718102021-04-21 07:32:39 +02002148 LIST_APPEND(&agent->rt[tid].sending_queue, &ctx->list);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002149
2150 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Faulet8ef75252017-02-20 22:56:03 +01002151 " - Add stream in sending queue"
Christopher Faulet68db0232018-04-06 11:34:12 +02002152 " - applets=%u - idles=%u - processing=%u\n",
Christopher Fauleta1cda022016-12-21 08:58:06 +01002153 (int)now.tv_sec, (int)now.tv_usec, agent->id, __FUNCTION__,
Christopher Faulet68db0232018-04-06 11:34:12 +02002154 ctx->strm, agent->counters.applets, agent->counters.idles,
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002155 agent->rt[tid].processing);
Christopher Fauletf7a30922016-11-10 15:04:51 +01002156
Christopher Fauletb077cdc2018-01-24 16:37:57 +01002157 /* Finally try to wakeup an IDLE applet. */
2158 if (!eb_is_empty(&agent->rt[tid].idle_applets)) {
2159 struct eb32_node *node;
2160
2161 node = eb32_first(&agent->rt[tid].idle_applets);
2162 spoe_appctx = eb32_entry(node, struct spoe_appctx, node);
2163 if (node && spoe_appctx) {
2164 eb32_delete(&spoe_appctx->node);
2165 spoe_appctx->node.key++;
2166 eb32_insert(&agent->rt[tid].idle_applets, &spoe_appctx->node);
2167 spoe_wakeup_appctx(spoe_appctx->owner);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002168 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002169 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01002170 return 1;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002171}
2172
2173/***************************************************************************
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002174 * Functions that encode SPOE messages
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002175 **************************************************************************/
Christopher Faulet10e37672017-09-21 16:38:22 +02002176/* Encode a SPOE message. Info in <ctx->frag_ctx>, if any, are used to handle
2177 * fragmented_content. If the next message can be processed, it returns 0. If
2178 * the message is too big, it returns -1.*/
2179static int
2180spoe_encode_message(struct stream *s, struct spoe_context *ctx,
2181 struct spoe_message *msg, int dir,
2182 char **buf, char *end)
2183{
2184 struct sample *smp;
2185 struct spoe_arg *arg;
2186 int ret;
2187
2188 if (msg->cond) {
2189 ret = acl_exec_cond(msg->cond, s->be, s->sess, s, dir|SMP_OPT_FINAL);
2190 ret = acl_pass(ret);
2191 if (msg->cond->pol == ACL_COND_UNLESS)
2192 ret = !ret;
2193
2194 /* the rule does not match */
2195 if (!ret)
2196 goto next;
2197 }
2198
2199 /* Resume encoding of a SPOE argument */
2200 if (ctx->frag_ctx.curarg != NULL) {
2201 arg = ctx->frag_ctx.curarg;
2202 goto encode_argument;
2203 }
2204
2205 if (ctx->frag_ctx.curoff != UINT_MAX)
2206 goto encode_msg_payload;
2207
2208 /* Check if there is enough space for the message name and the
2209 * number of arguments. It implies <msg->id_len> is encoded on 2
2210 * bytes, at most (< 2288). */
2211 if (*buf + 2 + msg->id_len + 1 > end)
2212 goto too_big;
2213
2214 /* Encode the message name */
2215 if (spoe_encode_buffer(msg->id, msg->id_len, buf, end) == -1)
2216 goto too_big;
2217
2218 /* Set the number of arguments for this message */
2219 **buf = msg->nargs;
2220 (*buf)++;
2221
2222 ctx->frag_ctx.curoff = 0;
2223 encode_msg_payload:
2224
2225 /* Loop on arguments */
2226 list_for_each_entry(arg, &msg->args, list) {
2227 ctx->frag_ctx.curarg = arg;
2228 ctx->frag_ctx.curoff = UINT_MAX;
Kevin Zhuf7f54282019-04-26 14:00:01 +08002229 ctx->frag_ctx.curlen = 0;
Christopher Faulet10e37672017-09-21 16:38:22 +02002230
2231 encode_argument:
2232 if (ctx->frag_ctx.curoff != UINT_MAX)
2233 goto encode_arg_value;
2234
Joseph Herlantf7f60312018-11-15 13:46:49 -08002235 /* Encode the argument name as a string. It can by NULL */
Christopher Faulet10e37672017-09-21 16:38:22 +02002236 if (spoe_encode_buffer(arg->name, arg->name_len, buf, end) == -1)
2237 goto too_big;
2238
2239 ctx->frag_ctx.curoff = 0;
2240 encode_arg_value:
2241
Joseph Herlantf7f60312018-11-15 13:46:49 -08002242 /* Fetch the argument value */
Christopher Faulet10e37672017-09-21 16:38:22 +02002243 smp = sample_process(s->be, s->sess, s, dir|SMP_OPT_FINAL, arg->expr, NULL);
Christopher Faulet3b1d0042019-05-06 09:53:10 +02002244 if (smp) {
2245 smp->ctx.a[0] = &ctx->frag_ctx.curlen;
2246 smp->ctx.a[1] = &ctx->frag_ctx.curoff;
2247 }
Christopher Faulet85db3212019-04-26 14:30:15 +02002248 ret = spoe_encode_data(smp, buf, end);
Christopher Faulet10e37672017-09-21 16:38:22 +02002249 if (ret == -1 || ctx->frag_ctx.curoff)
2250 goto too_big;
2251 }
2252
2253 next:
2254 return 0;
2255
2256 too_big:
2257 return -1;
2258}
2259
Christopher Fauletc718b822017-09-21 16:50:56 +02002260/* Encode list of SPOE messages. Info in <ctx->frag_ctx>, if any, are used to
2261 * handle fragmented content. On success it returns 1. If an error occurred, -1
2262 * is returned. If nothing has been encoded, it returns 0 (this is only possible
2263 * for unfragmented payload). */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002264static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01002265spoe_encode_messages(struct stream *s, struct spoe_context *ctx,
Christopher Fauletc718b822017-09-21 16:50:56 +02002266 struct list *messages, int dir, int type)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002267{
Christopher Fauleta1cda022016-12-21 08:58:06 +01002268 struct spoe_config *conf = FLT_CONF(ctx->filter);
2269 struct spoe_agent *agent = conf->agent;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002270 struct spoe_message *msg;
Christopher Faulet8ef75252017-02-20 22:56:03 +01002271 char *p, *end;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002272
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002273 p = b_head(&ctx->buffer);
Christopher Faulet24289f22017-09-25 14:48:02 +02002274 end = p + agent->rt[tid].frame_size - FRAME_HDR_SIZE;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002275
Christopher Fauletc718b822017-09-21 16:50:56 +02002276 if (type == SPOE_MSGS_BY_EVENT) { /* Loop on messages by event */
2277 /* Resume encoding of a SPOE message */
2278 if (ctx->frag_ctx.curmsg != NULL) {
2279 msg = ctx->frag_ctx.curmsg;
2280 goto encode_evt_message;
2281 }
2282
2283 list_for_each_entry(msg, messages, by_evt) {
2284 ctx->frag_ctx.curmsg = msg;
2285 ctx->frag_ctx.curarg = NULL;
2286 ctx->frag_ctx.curoff = UINT_MAX;
2287
2288 encode_evt_message:
2289 if (spoe_encode_message(s, ctx, msg, dir, &p, end) == -1)
2290 goto too_big;
2291 }
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002292 }
Christopher Fauletc718b822017-09-21 16:50:56 +02002293 else if (type == SPOE_MSGS_BY_GROUP) { /* Loop on messages by group */
2294 /* Resume encoding of a SPOE message */
2295 if (ctx->frag_ctx.curmsg != NULL) {
2296 msg = ctx->frag_ctx.curmsg;
2297 goto encode_grp_message;
2298 }
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002299
Christopher Fauletc718b822017-09-21 16:50:56 +02002300 list_for_each_entry(msg, messages, by_grp) {
2301 ctx->frag_ctx.curmsg = msg;
2302 ctx->frag_ctx.curarg = NULL;
2303 ctx->frag_ctx.curoff = UINT_MAX;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002304
Christopher Fauletc718b822017-09-21 16:50:56 +02002305 encode_grp_message:
2306 if (spoe_encode_message(s, ctx, msg, dir, &p, end) == -1)
2307 goto too_big;
2308 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002309 }
Christopher Fauletc718b822017-09-21 16:50:56 +02002310 else
2311 goto skip;
2312
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002313
Christopher Faulet57583e42017-09-04 15:41:09 +02002314 /* nothing has been encoded for an unfragmented payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002315 if (!(ctx->flags & SPOE_CTX_FL_FRAGMENTED) && p == b_head(&ctx->buffer))
Christopher Faulet57583e42017-09-04 15:41:09 +02002316 goto skip;
2317
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002318 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Faulet8ef75252017-02-20 22:56:03 +01002319 " - encode %s messages - spoe_appctx=%p"
2320 "- max_size=%u - encoded=%ld\n",
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002321 (int)now.tv_sec, (int)now.tv_usec,
2322 agent->id, __FUNCTION__, s,
2323 ((ctx->flags & SPOE_CTX_FL_FRAGMENTED) ? "last fragment of" : "unfragmented"),
Christopher Fauletfce747b2018-01-24 15:59:32 +01002324 ctx->spoe_appctx, (agent->rt[tid].frame_size - FRAME_HDR_SIZE),
Christopher Faulet45073512018-07-20 10:16:29 +02002325 p - b_head(&ctx->buffer));
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002326
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002327 b_set_data(&ctx->buffer, p - b_head(&ctx->buffer));
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002328 ctx->frag_ctx.curmsg = NULL;
2329 ctx->frag_ctx.curarg = NULL;
2330 ctx->frag_ctx.curoff = 0;
2331 ctx->frag_ctx.flags = SPOE_FRM_FL_FIN;
Christopher Faulet57583e42017-09-04 15:41:09 +02002332
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002333 return 1;
2334
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002335 too_big:
Christopher Fauleta715ea82019-04-10 14:21:51 +02002336 /* Return an error if fragmentation is unsupported or if nothing has
2337 * been encoded because its too big and not splittable. */
2338 if (!(agent->flags & SPOE_FL_SND_FRAGMENTATION) || p == b_head(&ctx->buffer)) {
Christopher Fauletcecd8522017-02-24 22:11:21 +01002339 ctx->status_code = SPOE_CTX_ERR_TOO_BIG;
2340 return -1;
2341 }
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002342
2343 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Faulet8ef75252017-02-20 22:56:03 +01002344 " - encode fragmented messages - spoe_appctx=%p"
2345 " - curmsg=%p - curarg=%p - curoff=%u"
2346 " - max_size=%u - encoded=%ld\n",
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002347 (int)now.tv_sec, (int)now.tv_usec,
Christopher Fauletfce747b2018-01-24 15:59:32 +01002348 agent->id, __FUNCTION__, s, ctx->spoe_appctx,
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002349 ctx->frag_ctx.curmsg, ctx->frag_ctx.curarg, ctx->frag_ctx.curoff,
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002350 (agent->rt[tid].frame_size - FRAME_HDR_SIZE), p - b_head(&ctx->buffer));
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002351
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002352 b_set_data(&ctx->buffer, p - b_head(&ctx->buffer));
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002353 ctx->flags |= SPOE_CTX_FL_FRAGMENTED;
2354 ctx->frag_ctx.flags &= ~SPOE_FRM_FL_FIN;
2355 return 1;
Christopher Faulet57583e42017-09-04 15:41:09 +02002356
2357 skip:
2358 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2359 " - skip the frame because nothing has been encoded\n",
2360 (int)now.tv_sec, (int)now.tv_usec,
2361 agent->id, __FUNCTION__, s);
2362 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002363}
2364
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002365
2366/***************************************************************************
2367 * Functions that handle SPOE actions
2368 **************************************************************************/
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002369/* Helper function to set a variable */
2370static void
Christopher Faulet8ef75252017-02-20 22:56:03 +01002371spoe_set_var(struct spoe_context *ctx, char *scope, char *name, int len,
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002372 struct sample *smp)
2373{
2374 struct spoe_config *conf = FLT_CONF(ctx->filter);
2375 struct spoe_agent *agent = conf->agent;
2376 char varname[64];
2377
2378 memset(varname, 0, sizeof(varname));
2379 len = snprintf(varname, sizeof(varname), "%s.%s.%.*s",
2380 scope, agent->var_pfx, len, name);
Etienne Carriereaec89892017-12-14 09:36:40 +00002381 if (agent->flags & SPOE_FL_FORCE_SET_VAR)
2382 vars_set_by_name(varname, len, smp);
2383 else
2384 vars_set_by_name_ifexist(varname, len, smp);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002385}
2386
2387/* Helper function to unset a variable */
2388static void
Christopher Faulet8ef75252017-02-20 22:56:03 +01002389spoe_unset_var(struct spoe_context *ctx, char *scope, char *name, int len,
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002390 struct sample *smp)
2391{
2392 struct spoe_config *conf = FLT_CONF(ctx->filter);
2393 struct spoe_agent *agent = conf->agent;
2394 char varname[64];
2395
2396 memset(varname, 0, sizeof(varname));
2397 len = snprintf(varname, sizeof(varname), "%s.%s.%.*s",
2398 scope, agent->var_pfx, len, name);
2399 vars_unset_by_name_ifexist(varname, len, smp);
2400}
2401
2402
Christopher Faulet8ef75252017-02-20 22:56:03 +01002403static inline int
2404spoe_decode_action_set_var(struct stream *s, struct spoe_context *ctx,
2405 char **buf, char *end, int dir)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002406{
Christopher Faulet8ef75252017-02-20 22:56:03 +01002407 char *str, *scope, *p = *buf;
2408 struct sample smp;
2409 uint64_t sz;
2410 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002411
Christopher Faulet8ef75252017-02-20 22:56:03 +01002412 if (p + 2 >= end)
2413 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002414
Christopher Faulet8ef75252017-02-20 22:56:03 +01002415 /* SET-VAR requires 3 arguments */
2416 if (*p++ != 3)
2417 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002418
Christopher Faulet8ef75252017-02-20 22:56:03 +01002419 switch (*p++) {
2420 case SPOE_SCOPE_PROC: scope = "proc"; break;
2421 case SPOE_SCOPE_SESS: scope = "sess"; break;
2422 case SPOE_SCOPE_TXN : scope = "txn"; break;
2423 case SPOE_SCOPE_REQ : scope = "req"; break;
2424 case SPOE_SCOPE_RES : scope = "res"; break;
2425 default: goto skip;
2426 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002427
Christopher Faulet8ef75252017-02-20 22:56:03 +01002428 if (spoe_decode_buffer(&p, end, &str, &sz) == -1)
2429 goto skip;
2430 memset(&smp, 0, sizeof(smp));
2431 smp_set_owner(&smp, s->be, s->sess, s, dir|SMP_OPT_FINAL);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002432
Christopher Faulet8ef75252017-02-20 22:56:03 +01002433 if (spoe_decode_data(&p, end, &smp) == -1)
2434 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002435
Christopher Faulet8ef75252017-02-20 22:56:03 +01002436 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2437 " - set-var '%s.%s.%.*s'\n",
2438 (int)now.tv_sec, (int)now.tv_usec,
2439 ((struct spoe_config *)FLT_CONF(ctx->filter))->agent->id,
2440 __FUNCTION__, s, scope,
2441 ((struct spoe_config *)FLT_CONF(ctx->filter))->agent->var_pfx,
2442 (int)sz, str);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002443
Christopher Faulet2469eba2020-10-15 16:08:30 +02002444 if (smp.data.type == SMP_T_ANY)
2445 spoe_unset_var(ctx, scope, str, sz, &smp);
2446 else
2447 spoe_set_var(ctx, scope, str, sz, &smp);
Christopher Fauletb5cff602016-11-24 14:53:22 +01002448
Christopher Faulet8ef75252017-02-20 22:56:03 +01002449 ret = (p - *buf);
2450 *buf = p;
2451 return ret;
2452 skip:
2453 return 0;
2454}
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002455
Christopher Faulet8ef75252017-02-20 22:56:03 +01002456static inline int
2457spoe_decode_action_unset_var(struct stream *s, struct spoe_context *ctx,
2458 char **buf, char *end, int dir)
2459{
2460 char *str, *scope, *p = *buf;
2461 struct sample smp;
2462 uint64_t sz;
2463 int ret;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002464
Christopher Faulet8ef75252017-02-20 22:56:03 +01002465 if (p + 2 >= end)
2466 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002467
Christopher Faulet8ef75252017-02-20 22:56:03 +01002468 /* UNSET-VAR requires 2 arguments */
2469 if (*p++ != 2)
2470 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002471
Christopher Faulet8ef75252017-02-20 22:56:03 +01002472 switch (*p++) {
2473 case SPOE_SCOPE_PROC: scope = "proc"; break;
2474 case SPOE_SCOPE_SESS: scope = "sess"; break;
2475 case SPOE_SCOPE_TXN : scope = "txn"; break;
2476 case SPOE_SCOPE_REQ : scope = "req"; break;
2477 case SPOE_SCOPE_RES : scope = "res"; break;
2478 default: goto skip;
2479 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002480
Christopher Faulet8ef75252017-02-20 22:56:03 +01002481 if (spoe_decode_buffer(&p, end, &str, &sz) == -1)
2482 goto skip;
2483 memset(&smp, 0, sizeof(smp));
2484 smp_set_owner(&smp, s->be, s->sess, s, dir|SMP_OPT_FINAL);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002485
Christopher Faulet8ef75252017-02-20 22:56:03 +01002486 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2487 " - unset-var '%s.%s.%.*s'\n",
2488 (int)now.tv_sec, (int)now.tv_usec,
2489 ((struct spoe_config *)FLT_CONF(ctx->filter))->agent->id,
2490 __FUNCTION__, s, scope,
2491 ((struct spoe_config *)FLT_CONF(ctx->filter))->agent->var_pfx,
2492 (int)sz, str);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002493
Christopher Faulet8ef75252017-02-20 22:56:03 +01002494 spoe_unset_var(ctx, scope, str, sz, &smp);
2495
2496 ret = (p - *buf);
2497 *buf = p;
2498 return ret;
2499 skip:
2500 return 0;
2501}
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002502
Christopher Faulet8ef75252017-02-20 22:56:03 +01002503/* Process SPOE actions for a specific event. It returns 1 on success. If an
2504 * error occurred, 0 is returned. */
2505static int
Christopher Faulet58d03682017-09-21 16:57:24 +02002506spoe_process_actions(struct stream *s, struct spoe_context *ctx, int dir)
Christopher Faulet8ef75252017-02-20 22:56:03 +01002507{
2508 char *p, *end;
2509 int ret;
2510
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002511 p = b_head(&ctx->buffer);
2512 end = p + b_data(&ctx->buffer);
Christopher Faulet8ef75252017-02-20 22:56:03 +01002513
2514 while (p < end) {
2515 enum spoe_action_type type;
2516
2517 type = *p++;
2518 switch (type) {
2519 case SPOE_ACT_T_SET_VAR:
2520 ret = spoe_decode_action_set_var(s, ctx, &p, end, dir);
2521 if (!ret)
2522 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002523 break;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002524
Christopher Faulet8ef75252017-02-20 22:56:03 +01002525 case SPOE_ACT_T_UNSET_VAR:
2526 ret = spoe_decode_action_unset_var(s, ctx, &p, end, dir);
2527 if (!ret)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002528 goto skip;
Christopher Faulet8ef75252017-02-20 22:56:03 +01002529 break;
2530
2531 default:
2532 goto skip;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002533 }
2534 }
2535
2536 return 1;
2537 skip:
2538 return 0;
2539}
2540
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002541/***************************************************************************
2542 * Functions that process SPOE events
2543 **************************************************************************/
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002544static void
2545spoe_update_stats(struct stream *s, struct spoe_agent *agent,
2546 struct spoe_context *ctx, int dir)
2547{
2548 if (!tv_iszero(&ctx->stats.tv_start)) {
2549 spoe_update_stat_time(&ctx->stats.tv_start, &ctx->stats.t_process);
2550 ctx->stats.t_total += ctx->stats.t_process;
2551 tv_zero(&ctx->stats.tv_request);
2552 tv_zero(&ctx->stats.tv_queue);
2553 tv_zero(&ctx->stats.tv_wait);
2554 tv_zero(&ctx->stats.tv_response);
2555 }
2556
2557 if (agent->var_t_process) {
2558 struct sample smp;
2559
2560 memset(&smp, 0, sizeof(smp));
2561 smp_set_owner(&smp, s->be, s->sess, s, dir|SMP_OPT_FINAL);
2562 smp.data.u.sint = ctx->stats.t_process;
2563 smp.data.type = SMP_T_SINT;
2564
2565 spoe_set_var(ctx, "txn", agent->var_t_process,
2566 strlen(agent->var_t_process), &smp);
2567 }
2568
2569 if (agent->var_t_total) {
2570 struct sample smp;
2571
2572 memset(&smp, 0, sizeof(smp));
2573 smp_set_owner(&smp, s->be, s->sess, s, dir|SMP_OPT_FINAL);
2574 smp.data.u.sint = ctx->stats.t_total;
2575 smp.data.type = SMP_T_SINT;
2576
2577 spoe_set_var(ctx, "txn", agent->var_t_total,
2578 strlen(agent->var_t_total), &smp);
2579 }
2580}
2581
2582static void
2583spoe_handle_processing_error(struct stream *s, struct spoe_agent *agent,
2584 struct spoe_context *ctx, int dir)
2585{
2586 if (agent->eps_max > 0)
2587 update_freq_ctr(&agent->rt[tid].err_per_sec, 1);
2588
2589 if (agent->var_on_error) {
2590 struct sample smp;
2591
2592 memset(&smp, 0, sizeof(smp));
2593 smp_set_owner(&smp, s->be, s->sess, s, dir|SMP_OPT_FINAL);
2594 smp.data.u.sint = ctx->status_code;
2595 smp.data.type = SMP_T_BOOL;
2596
2597 spoe_set_var(ctx, "txn", agent->var_on_error,
2598 strlen(agent->var_on_error), &smp);
2599 }
2600
2601 ctx->state = ((agent->flags & SPOE_FL_CONT_ON_ERR)
2602 ? SPOE_CTX_ST_READY
2603 : SPOE_CTX_ST_NONE);
2604}
2605
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002606static inline int
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002607spoe_start_processing(struct spoe_agent *agent, struct spoe_context *ctx, int dir)
Christopher Fauleta1cda022016-12-21 08:58:06 +01002608{
Christopher Fauleta1cda022016-12-21 08:58:06 +01002609 /* If a process is already started for this SPOE context, retry
2610 * later. */
2611 if (ctx->flags & SPOE_CTX_FL_PROCESS)
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002612 return 0;
Christopher Fauleta1cda022016-12-21 08:58:06 +01002613
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002614 agent->rt[tid].processing++;
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002615 ctx->stats.tv_start = now;
2616 ctx->stats.tv_request = now;
2617 ctx->stats.t_request = -1;
2618 ctx->stats.t_queue = -1;
2619 ctx->stats.t_waiting = -1;
2620 ctx->stats.t_response = -1;
2621 ctx->stats.t_process = -1;
2622
2623 ctx->status_code = 0;
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002624
Christopher Fauleta1cda022016-12-21 08:58:06 +01002625 /* Set the right flag to prevent request and response processing
2626 * in same time. */
2627 ctx->flags |= ((dir == SMP_OPT_DIR_REQ)
2628 ? SPOE_CTX_FL_REQ_PROCESS
2629 : SPOE_CTX_FL_RSP_PROCESS);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002630 return 1;
Christopher Fauleta1cda022016-12-21 08:58:06 +01002631}
2632
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002633static inline void
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002634spoe_stop_processing(struct spoe_agent *agent, struct spoe_context *ctx)
Christopher Fauleta1cda022016-12-21 08:58:06 +01002635{
Christopher Fauletfce747b2018-01-24 15:59:32 +01002636 struct spoe_appctx *sa = ctx->spoe_appctx;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002637
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002638 if (!(ctx->flags & SPOE_CTX_FL_PROCESS))
2639 return;
Willy Tarreau4781b152021-04-06 13:53:36 +02002640 _HA_ATOMIC_INC(&agent->counters.nb_processed);
Christopher Faulet879dca92018-03-23 11:53:24 +01002641 if (sa) {
2642 if (sa->frag_ctx.ctx == ctx) {
2643 sa->frag_ctx.ctx = NULL;
2644 spoe_wakeup_appctx(sa->owner);
2645 }
2646 else
2647 sa->cur_fpa--;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002648 }
2649
Christopher Fauleta1cda022016-12-21 08:58:06 +01002650 /* Reset the flag to allow next processing */
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002651 agent->rt[tid].processing--;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002652 ctx->flags &= ~(SPOE_CTX_FL_PROCESS|SPOE_CTX_FL_FRAGMENTED);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002653
2654 /* Reset processing timer */
2655 ctx->process_exp = TICK_ETERNITY;
2656
Christopher Faulet8ef75252017-02-20 22:56:03 +01002657 spoe_release_buffer(&ctx->buffer, &ctx->buffer_wait);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002658
Christopher Fauletfce747b2018-01-24 15:59:32 +01002659 ctx->spoe_appctx = NULL;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002660 ctx->frag_ctx.curmsg = NULL;
2661 ctx->frag_ctx.curarg = NULL;
2662 ctx->frag_ctx.curoff = 0;
2663 ctx->frag_ctx.flags = 0;
2664
Christopher Fauleta1cda022016-12-21 08:58:06 +01002665 if (!LIST_ISEMPTY(&ctx->list)) {
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002666 if (ctx->state == SPOE_CTX_ST_SENDING_MSGS)
Willy Tarreau4781b152021-04-06 13:53:36 +02002667 _HA_ATOMIC_DEC(&agent->counters.nb_sending);
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002668 else
Willy Tarreau4781b152021-04-06 13:53:36 +02002669 _HA_ATOMIC_DEC(&agent->counters.nb_waiting);
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002670
Willy Tarreau2b718102021-04-21 07:32:39 +02002671 LIST_DELETE(&ctx->list);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002672 LIST_INIT(&ctx->list);
2673 }
Christopher Faulet344c4ab2017-09-22 10:20:13 +02002674}
2675
Christopher Faulet58d03682017-09-21 16:57:24 +02002676/* Process a list of SPOE messages. First, this functions will process messages
2677 * and send them to an agent in a NOTIFY frame. Then, it will wait a ACK frame
2678 * to process corresponding actions. During all the processing, it returns 0
2679 * and it returns 1 when the processing is finished. If an error occurred, -1
2680 * is returned. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002681static int
Christopher Faulet58d03682017-09-21 16:57:24 +02002682spoe_process_messages(struct stream *s, struct spoe_context *ctx,
2683 struct list *messages, int dir, int type)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002684{
Christopher Fauletf7a30922016-11-10 15:04:51 +01002685 struct spoe_config *conf = FLT_CONF(ctx->filter);
2686 struct spoe_agent *agent = conf->agent;
Christopher Faulet58d03682017-09-21 16:57:24 +02002687 int ret = 1;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002688
2689 if (ctx->state == SPOE_CTX_ST_ERROR)
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002690 goto end;
Christopher Fauletf7a30922016-11-10 15:04:51 +01002691
2692 if (tick_is_expired(ctx->process_exp, now_ms) && ctx->state != SPOE_CTX_ST_DONE) {
2693 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Faulet58d03682017-09-21 16:57:24 +02002694 " - failed to process messages: timeout\n",
Christopher Fauletf7a30922016-11-10 15:04:51 +01002695 (int)now.tv_sec, (int)now.tv_usec,
Christopher Faulet58d03682017-09-21 16:57:24 +02002696 agent->id, __FUNCTION__, s);
Christopher Fauletb067b062017-01-04 16:39:11 +01002697 ctx->status_code = SPOE_CTX_ERR_TOUT;
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002698 goto end;
Christopher Fauletf7a30922016-11-10 15:04:51 +01002699 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002700
2701 if (ctx->state == SPOE_CTX_ST_READY) {
Christopher Fauleta1cda022016-12-21 08:58:06 +01002702 if (agent->eps_max > 0) {
Christopher Faulet24289f22017-09-25 14:48:02 +02002703 if (!freq_ctr_remain(&agent->rt[tid].err_per_sec, agent->eps_max, 0)) {
Christopher Fauleta1cda022016-12-21 08:58:06 +01002704 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Faulet58d03682017-09-21 16:57:24 +02002705 " - skip processing of messages: max EPS reached\n",
Christopher Fauleta1cda022016-12-21 08:58:06 +01002706 (int)now.tv_sec, (int)now.tv_usec,
Christopher Faulet58d03682017-09-21 16:57:24 +02002707 agent->id, __FUNCTION__, s);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002708 goto skip;
2709 }
2710 }
2711
Christopher Fauletf7a30922016-11-10 15:04:51 +01002712 if (!tick_isset(ctx->process_exp)) {
2713 ctx->process_exp = tick_add_ifset(now_ms, agent->timeout.processing);
2714 s->task->expire = tick_first((tick_is_expired(s->task->expire, now_ms) ? 0 : s->task->expire),
2715 ctx->process_exp);
2716 }
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002717 ret = spoe_start_processing(agent, ctx, dir);
Christopher Fauletb067b062017-01-04 16:39:11 +01002718 if (!ret)
2719 goto out;
Christopher Fauleta1cda022016-12-21 08:58:06 +01002720
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002721 ctx->state = SPOE_CTX_ST_ENCODING_MSGS;
Christopher Fauleta1cda022016-12-21 08:58:06 +01002722 /* fall through */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002723 }
2724
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002725 if (ctx->state == SPOE_CTX_ST_ENCODING_MSGS) {
Christopher Faulet63263e52019-04-10 14:47:18 +02002726 if (tv_iszero(&ctx->stats.tv_request))
2727 ctx->stats.tv_request = now;
Christopher Faulet8ef75252017-02-20 22:56:03 +01002728 if (!spoe_acquire_buffer(&ctx->buffer, &ctx->buffer_wait))
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002729 goto out;
Christopher Faulet58d03682017-09-21 16:57:24 +02002730 ret = spoe_encode_messages(s, ctx, messages, dir, type);
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002731 if (ret < 0)
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002732 goto end;
Christopher Faulet57583e42017-09-04 15:41:09 +02002733 if (!ret)
2734 goto skip;
Christopher Faulet333694d2018-01-12 10:45:47 +01002735 if (spoe_queue_context(ctx) < 0)
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002736 goto end;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002737 ctx->state = SPOE_CTX_ST_SENDING_MSGS;
2738 }
2739
2740 if (ctx->state == SPOE_CTX_ST_SENDING_MSGS) {
Christopher Fauletfce747b2018-01-24 15:59:32 +01002741 if (ctx->spoe_appctx)
2742 spoe_wakeup_appctx(ctx->spoe_appctx->owner);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002743 ret = 0;
2744 goto out;
2745 }
2746
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01002747 if (ctx->state == SPOE_CTX_ST_WAITING_ACK) {
2748 ret = 0;
2749 goto out;
2750 }
2751
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002752 if (ctx->state == SPOE_CTX_ST_DONE) {
Christopher Faulet58d03682017-09-21 16:57:24 +02002753 spoe_process_actions(s, ctx, dir);
Christopher Faulet8ef75252017-02-20 22:56:03 +01002754 ret = 1;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002755 ctx->frame_id++;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002756 ctx->state = SPOE_CTX_ST_READY;
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002757 spoe_update_stat_time(&ctx->stats.tv_response, &ctx->stats.t_response);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002758 goto end;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002759 }
2760
2761 out:
2762 return ret;
2763
Christopher Fauleta1cda022016-12-21 08:58:06 +01002764 skip:
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002765 tv_zero(&ctx->stats.tv_start);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002766 ctx->state = SPOE_CTX_ST_READY;
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002767 spoe_stop_processing(agent, ctx);
2768 return 1;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002769
Christopher Fauleta1cda022016-12-21 08:58:06 +01002770 end:
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002771 spoe_update_stats(s, agent, ctx, dir);
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002772 spoe_stop_processing(agent, ctx);
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002773 if (ctx->status_code) {
Willy Tarreau4781b152021-04-06 13:53:36 +02002774 _HA_ATOMIC_INC(&agent->counters.nb_errors);
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002775 spoe_handle_processing_error(s, agent, ctx, dir);
2776 ret = 1;
2777 }
Christopher Faulet58d03682017-09-21 16:57:24 +02002778 return ret;
2779}
2780
Christopher Faulet344c4ab2017-09-22 10:20:13 +02002781/* Process a SPOE group, ie the list of messages attached to the group <grp>.
2782 * See spoe_process_message for details. */
2783static int
2784spoe_process_group(struct stream *s, struct spoe_context *ctx,
2785 struct spoe_group *group, int dir)
2786{
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002787 struct spoe_config *conf = FLT_CONF(ctx->filter);
2788 struct spoe_agent *agent = conf->agent;
Christopher Faulet344c4ab2017-09-22 10:20:13 +02002789 int ret;
2790
2791 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
2792 " - ctx-state=%s - Process messages for group=%s\n",
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002793 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Faulet344c4ab2017-09-22 10:20:13 +02002794 __FUNCTION__, s, spoe_ctx_state_str[ctx->state],
2795 group->id);
2796
2797 if (LIST_ISEMPTY(&group->messages))
2798 return 1;
2799
2800 ret = spoe_process_messages(s, ctx, &group->messages, dir, SPOE_MSGS_BY_GROUP);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002801 if (ret && ctx->stats.t_process != -1) {
2802 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002803 " - <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 +01002804 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002805 __FUNCTION__, s, group->id, s->uniq_id, ctx->status_code,
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002806 ctx->stats.t_request, ctx->stats.t_queue, ctx->stats.t_waiting,
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002807 ctx->stats.t_response, ctx->stats.t_process,
2808 agent->counters.idles, agent->counters.applets,
2809 agent->counters.nb_sending, agent->counters.nb_waiting,
2810 agent->counters.nb_errors, agent->counters.nb_processed,
2811 agent->rt[tid].processing, read_freq_ctr(&agent->rt[tid].processing_per_sec));
2812 if (ctx->status_code || !(conf->agent_fe.options2 & PR_O2_NOLOGNORM))
2813 send_log(&conf->agent_fe, (!ctx->status_code ? LOG_NOTICE : LOG_WARNING),
2814 "SPOE: [%s] <GROUP:%s> sid=%u st=%u %ld/%ld/%ld/%ld/%ld %u/%u %u/%u %llu/%llu\n",
2815 agent->id, group->id, s->uniq_id, ctx->status_code,
2816 ctx->stats.t_request, ctx->stats.t_queue, ctx->stats.t_waiting,
2817 ctx->stats.t_response, ctx->stats.t_process,
2818 agent->counters.idles, agent->counters.applets,
2819 agent->counters.nb_sending, agent->counters.nb_waiting,
2820 agent->counters.nb_errors, agent->counters.nb_processed);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002821 }
Christopher Faulet344c4ab2017-09-22 10:20:13 +02002822 return ret;
2823}
2824
Christopher Faulet58d03682017-09-21 16:57:24 +02002825/* Process a SPOE event, ie the list of messages attached to the event <ev>.
2826 * See spoe_process_message for details. */
2827static int
2828spoe_process_event(struct stream *s, struct spoe_context *ctx,
2829 enum spoe_event ev)
2830{
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002831 struct spoe_config *conf = FLT_CONF(ctx->filter);
2832 struct spoe_agent *agent = conf->agent;
Christopher Faulet58d03682017-09-21 16:57:24 +02002833 int dir, ret;
2834
2835 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Faulet344c4ab2017-09-22 10:20:13 +02002836 " - ctx-state=%s - Process messages for event=%s\n",
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002837 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Faulet58d03682017-09-21 16:57:24 +02002838 __FUNCTION__, s, spoe_ctx_state_str[ctx->state],
2839 spoe_event_str[ev]);
2840
2841 dir = ((ev < SPOE_EV_ON_SERVER_SESS) ? SMP_OPT_DIR_REQ : SMP_OPT_DIR_RES);
2842
2843 if (LIST_ISEMPTY(&(ctx->events[ev])))
2844 return 1;
2845
2846 ret = spoe_process_messages(s, ctx, &(ctx->events[ev]), dir, SPOE_MSGS_BY_EVENT);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002847 if (ret && ctx->stats.t_process != -1) {
2848 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002849 " - <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 +01002850 (int)now.tv_sec, (int)now.tv_usec, agent->id,
2851 __FUNCTION__, s, spoe_event_str[ev], s->uniq_id, ctx->status_code,
2852 ctx->stats.t_request, ctx->stats.t_queue, ctx->stats.t_waiting,
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02002853 ctx->stats.t_response, ctx->stats.t_process,
2854 agent->counters.idles, agent->counters.applets,
2855 agent->counters.nb_sending, agent->counters.nb_waiting,
2856 agent->counters.nb_errors, agent->counters.nb_processed,
2857 agent->rt[tid].processing, read_freq_ctr(&agent->rt[tid].processing_per_sec));
2858 if (ctx->status_code || !(conf->agent_fe.options2 & PR_O2_NOLOGNORM))
2859 send_log(&conf->agent_fe, (!ctx->status_code ? LOG_NOTICE : LOG_WARNING),
2860 "SPOE: [%s] <EVENT:%s> sid=%u st=%u %ld/%ld/%ld/%ld/%ld %u/%u %u/%u %llu/%llu\n",
2861 agent->id, spoe_event_str[ev], s->uniq_id, ctx->status_code,
2862 ctx->stats.t_request, ctx->stats.t_queue, ctx->stats.t_waiting,
2863 ctx->stats.t_response, ctx->stats.t_process,
2864 agent->counters.idles, agent->counters.applets,
2865 agent->counters.nb_sending, agent->counters.nb_waiting,
2866 agent->counters.nb_errors, agent->counters.nb_processed);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002867 }
Christopher Fauleta1cda022016-12-21 08:58:06 +01002868 return ret;
2869}
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002870
2871/***************************************************************************
2872 * Functions that create/destroy SPOE contexts
2873 **************************************************************************/
Christopher Fauleta1cda022016-12-21 08:58:06 +01002874static int
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002875spoe_acquire_buffer(struct buffer *buf, struct buffer_wait *buffer_wait)
Christopher Fauleta1cda022016-12-21 08:58:06 +01002876{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002877 if (buf->size)
Christopher Fauleta1cda022016-12-21 08:58:06 +01002878 return 1;
2879
Willy Tarreau2b718102021-04-21 07:32:39 +02002880 if (LIST_INLIST(&buffer_wait->list))
Willy Tarreau90f366b2021-02-20 11:49:49 +01002881 LIST_DEL_INIT(&buffer_wait->list);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002882
Willy Tarreaud68d4f12021-03-22 14:44:31 +01002883 if (b_alloc(buf))
Christopher Fauleta1cda022016-12-21 08:58:06 +01002884 return 1;
2885
Willy Tarreau2b718102021-04-21 07:32:39 +02002886 LIST_APPEND(&ti->buffer_wq, &buffer_wait->list);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002887 return 0;
2888}
2889
2890static void
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002891spoe_release_buffer(struct buffer *buf, struct buffer_wait *buffer_wait)
Christopher Fauleta1cda022016-12-21 08:58:06 +01002892{
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
2896 /* Release the buffer if needed */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002897 if (buf->size) {
Christopher Faulet4596fb72017-01-11 14:05:19 +01002898 b_free(buf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01002899 offer_buffers(buffer_wait->target, 1);
Christopher Fauleta1cda022016-12-21 08:58:06 +01002900 }
2901}
2902
Christopher Faulet4596fb72017-01-11 14:05:19 +01002903static int
Christopher Faulet8ef75252017-02-20 22:56:03 +01002904spoe_wakeup_context(struct spoe_context *ctx)
Christopher Fauleta73e59b2016-12-09 17:30:18 +01002905{
2906 task_wakeup(ctx->strm->task, TASK_WOKEN_MSG);
2907 return 1;
2908}
2909
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002910static struct spoe_context *
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002911spoe_create_context(struct stream *s, struct filter *filter)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002912{
2913 struct spoe_config *conf = FLT_CONF(filter);
2914 struct spoe_context *ctx;
2915
Willy Tarreauc9ef9bc2021-03-22 21:04:50 +01002916 ctx = pool_zalloc(pool_head_spoe_ctx);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002917 if (ctx == NULL) {
2918 return NULL;
2919 }
Christopher Fauletb067b062017-01-04 16:39:11 +01002920 ctx->filter = filter;
2921 ctx->state = SPOE_CTX_ST_NONE;
2922 ctx->status_code = SPOE_CTX_ERR_NONE;
2923 ctx->flags = 0;
Christopher Faulet11610f32017-09-21 10:23:10 +02002924 ctx->events = conf->agent->events;
Christopher Faulet76c09ef2017-09-21 11:03:52 +02002925 ctx->groups = &conf->agent->groups;
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002926 ctx->buffer = BUF_NULL;
Willy Tarreau90f366b2021-02-20 11:49:49 +01002927 LIST_INIT(&ctx->buffer_wait.list);
Christopher Fauleta73e59b2016-12-09 17:30:18 +01002928 ctx->buffer_wait.target = ctx;
Christopher Faulet8ef75252017-02-20 22:56:03 +01002929 ctx->buffer_wait.wakeup_cb = (int (*)(void *))spoe_wakeup_context;
Christopher Fauleta1cda022016-12-21 08:58:06 +01002930 LIST_INIT(&ctx->list);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002931
Christopher Fauletf7a30922016-11-10 15:04:51 +01002932 ctx->stream_id = 0;
2933 ctx->frame_id = 1;
2934 ctx->process_exp = TICK_ETERNITY;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002935
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002936 tv_zero(&ctx->stats.tv_start);
2937 tv_zero(&ctx->stats.tv_request);
2938 tv_zero(&ctx->stats.tv_queue);
2939 tv_zero(&ctx->stats.tv_wait);
2940 tv_zero(&ctx->stats.tv_response);
2941 ctx->stats.t_request = -1;
2942 ctx->stats.t_queue = -1;
2943 ctx->stats.t_waiting = -1;
2944 ctx->stats.t_response = -1;
2945 ctx->stats.t_process = -1;
2946 ctx->stats.t_total = 0;
2947
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002948 ctx->strm = s;
2949 ctx->state = SPOE_CTX_ST_READY;
2950 filter->ctx = ctx;
2951
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002952 return ctx;
2953}
2954
2955static void
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002956spoe_destroy_context(struct filter *filter)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002957{
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002958 struct spoe_config *conf = FLT_CONF(filter);
2959 struct spoe_context *ctx = filter->ctx;
2960
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002961 if (!ctx)
2962 return;
2963
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002964 spoe_stop_processing(conf->agent, ctx);
Willy Tarreaubafbe012017-11-24 17:34:44 +01002965 pool_free(pool_head_spoe_ctx, ctx);
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01002966 filter->ctx = NULL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002967}
2968
2969static void
Christopher Faulet8ef75252017-02-20 22:56:03 +01002970spoe_reset_context(struct spoe_context *ctx)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002971{
2972 ctx->state = SPOE_CTX_ST_READY;
Christopher Fauletf032c3e2017-02-17 15:18:35 +01002973 ctx->flags &= ~(SPOE_CTX_FL_PROCESS|SPOE_CTX_FL_FRAGMENTED);
Christopher Fauletb2dd1e02018-03-22 09:07:41 +01002974
2975 tv_zero(&ctx->stats.tv_start);
2976 tv_zero(&ctx->stats.tv_request);
2977 tv_zero(&ctx->stats.tv_queue);
2978 tv_zero(&ctx->stats.tv_wait);
2979 tv_zero(&ctx->stats.tv_response);
2980 ctx->stats.t_request = -1;
2981 ctx->stats.t_queue = -1;
2982 ctx->stats.t_waiting = -1;
2983 ctx->stats.t_response = -1;
2984 ctx->stats.t_process = -1;
2985 ctx->stats.t_total = 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002986}
2987
2988
2989/***************************************************************************
2990 * Hooks that manage the filter lifecycle (init/check/deinit)
2991 **************************************************************************/
2992/* Signal handler: Do a soft stop, wakeup SPOE applet */
2993static void
Christopher Faulet8ef75252017-02-20 22:56:03 +01002994spoe_sig_stop(struct sig_handler *sh)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002995{
2996 struct proxy *p;
2997
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002998 p = proxies_list;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02002999 while (p) {
3000 struct flt_conf *fconf;
3001
Christopher Faulet27026302023-05-11 09:08:28 +02003002 /* SPOE filter are not initialized for disabled proxoes. Move to
3003 * the next one
3004 */
3005 if (p->disabled) {
3006 p = p->next;
3007 continue;
3008 }
3009
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003010 list_for_each_entry(fconf, &p->filter_configs, list) {
Christopher Faulet3b386a32017-02-23 10:17:15 +01003011 struct spoe_config *conf;
3012 struct spoe_agent *agent;
Christopher Faulet42bfa462017-01-04 14:14:19 +01003013 struct spoe_appctx *spoe_appctx;
Christopher Faulet24289f22017-09-25 14:48:02 +02003014 int i;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003015
Christopher Faulet3b386a32017-02-23 10:17:15 +01003016 if (fconf->id != spoe_filter_id)
3017 continue;
3018
3019 conf = fconf->conf;
3020 agent = conf->agent;
3021
Christopher Faulet24289f22017-09-25 14:48:02 +02003022 for (i = 0; i < global.nbthread; ++i) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003023 HA_SPIN_LOCK(SPOE_APPLET_LOCK, &agent->rt[i].lock);
Christopher Faulet24289f22017-09-25 14:48:02 +02003024 list_for_each_entry(spoe_appctx, &agent->rt[i].applets, list)
3025 spoe_wakeup_appctx(spoe_appctx->owner);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003026 HA_SPIN_UNLOCK(SPOE_APPLET_LOCK, &agent->rt[i].lock);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003027 }
3028 }
3029 p = p->next;
3030 }
3031}
3032
3033
3034/* Initialize the SPOE filter. Returns -1 on error, else 0. */
3035static int
3036spoe_init(struct proxy *px, struct flt_conf *fconf)
3037{
3038 struct spoe_config *conf = fconf->conf;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003039
Christopher Faulet7250b8f2018-03-26 17:19:01 +02003040 /* conf->agent_fe was already initialized during the config
3041 * parsing. Finish initialization. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003042 conf->agent_fe.last_change = now.tv_sec;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003043 conf->agent_fe.cap = PR_CAP_FE;
3044 conf->agent_fe.mode = PR_MODE_TCP;
3045 conf->agent_fe.maxconn = 0;
3046 conf->agent_fe.options2 |= PR_O2_INDEPSTR;
3047 conf->agent_fe.conn_retries = CONN_RETRIES;
3048 conf->agent_fe.accept = frontend_accept;
3049 conf->agent_fe.srv = NULL;
3050 conf->agent_fe.timeout.client = TICK_ETERNITY;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003051 conf->agent_fe.fe_req_ana = AN_REQ_SWITCHING_RULES;
3052
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003053 if (!sighandler_registered) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01003054 signal_register_fct(0, spoe_sig_stop, 0);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003055 sighandler_registered = 1;
3056 }
3057
Christopher Faulet00292352019-01-09 15:05:10 +01003058 fconf->flags |= FLT_CFG_FL_HTX;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003059 return 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003060}
3061
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05003062/* Free resources allocated by the SPOE filter. */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003063static void
3064spoe_deinit(struct proxy *px, struct flt_conf *fconf)
3065{
3066 struct spoe_config *conf = fconf->conf;
3067
3068 if (conf) {
3069 struct spoe_agent *agent = conf->agent;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003070
Christopher Faulet8ef75252017-02-20 22:56:03 +01003071 spoe_release_agent(agent);
Christopher Faulet7ee86672017-09-19 11:08:28 +02003072 free(conf->id);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003073 free(conf);
3074 }
3075 fconf->conf = NULL;
3076}
3077
3078/* Check configuration of a SPOE filter for a specified proxy.
3079 * Return 1 on error, else 0. */
3080static int
3081spoe_check(struct proxy *px, struct flt_conf *fconf)
3082{
Christopher Faulet7ee86672017-09-19 11:08:28 +02003083 struct flt_conf *f;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003084 struct spoe_config *conf = fconf->conf;
3085 struct proxy *target;
Christopher Faulet1d7d0f82021-02-19 10:56:41 +01003086 struct logsrv *logsrv;
Willy Tarreaub0769b22019-02-07 13:40:33 +01003087 int i;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003088
Christopher Faulet7ee86672017-09-19 11:08:28 +02003089 /* Check all SPOE filters for proxy <px> to be sure all SPOE agent names
3090 * are uniq */
3091 list_for_each_entry(f, &px->filter_configs, list) {
3092 struct spoe_config *c = f->conf;
3093
3094 /* This is not an SPOE filter */
3095 if (f->id != spoe_filter_id)
3096 continue;
3097 /* This is the current SPOE filter */
3098 if (f == fconf)
3099 continue;
3100
3101 /* Check engine Id. It should be uniq */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003102 if (strcmp(conf->id, c->id) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003103 ha_alert("Proxy %s : duplicated name for SPOE engine '%s'.\n",
3104 px->id, conf->id);
Christopher Faulet7ee86672017-09-19 11:08:28 +02003105 return 1;
3106 }
3107 }
3108
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003109 target = proxy_be_by_name(conf->agent->b.name);
3110 if (target == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003111 ha_alert("Proxy %s : unknown backend '%s' used by SPOE agent '%s'"
3112 " declared at %s:%d.\n",
3113 px->id, conf->agent->b.name, conf->agent->id,
3114 conf->agent->conf.file, conf->agent->conf.line);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003115 return 1;
3116 }
3117 if (target->mode != PR_MODE_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003118 ha_alert("Proxy %s : backend '%s' used by SPOE agent '%s' declared"
3119 " at %s:%d does not support HTTP mode.\n",
3120 px->id, target->id, conf->agent->id,
3121 conf->agent->conf.file, conf->agent->conf.line);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003122 return 1;
3123 }
3124
Willy Tarreau2bdcfde2019-02-05 13:37:19 +01003125 if (px->bind_proc & ~target->bind_proc) {
3126 ha_alert("Proxy %s : backend '%s' used by SPOE agent '%s' declared"
3127 " at %s:%d does not cover all of its processes.\n",
3128 px->id, target->id, conf->agent->id,
3129 conf->agent->conf.file, conf->agent->conf.line);
3130 return 1;
3131 }
3132
Christopher Fauletfe261552019-03-18 13:57:42 +01003133 if ((conf->agent->rt = calloc(global.nbthread, sizeof(*conf->agent->rt))) == NULL) {
Willy Tarreaub0769b22019-02-07 13:40:33 +01003134 ha_alert("Proxy %s : out of memory initializing SPOE agent '%s' declared at %s:%d.\n",
3135 px->id, conf->agent->id, conf->agent->conf.file, conf->agent->conf.line);
3136 return 1;
3137 }
3138 for (i = 0; i < global.nbthread; ++i) {
Christopher Fauletb1bb1af2019-09-17 11:55:52 +02003139 conf->agent->rt[i].engine_id = NULL;
Christopher Fauletfe261552019-03-18 13:57:42 +01003140 conf->agent->rt[i].frame_size = conf->agent->max_frame_size;
3141 conf->agent->rt[i].processing = 0;
Christopher Fauletd1e1aa02023-04-26 15:56:59 +02003142 conf->agent->rt[i].idles = 0;
Christopher Fauletfe261552019-03-18 13:57:42 +01003143 LIST_INIT(&conf->agent->rt[i].applets);
3144 LIST_INIT(&conf->agent->rt[i].sending_queue);
3145 LIST_INIT(&conf->agent->rt[i].waiting_queue);
3146 HA_SPIN_INIT(&conf->agent->rt[i].lock);
Willy Tarreaub0769b22019-02-07 13:40:33 +01003147 }
3148
Christopher Faulet1d7d0f82021-02-19 10:56:41 +01003149 list_for_each_entry(logsrv, &conf->agent_fe.logsrvs, list) {
3150 if (logsrv->type == LOG_TARGET_BUFFER) {
3151 struct sink *sink = sink_find(logsrv->ring_name);
3152
3153 if (!sink || sink->type != SINK_TYPE_BUFFER) {
3154 ha_alert("Proxy %s : log server used by SPOE agent '%s' declared"
Ilya Shipitsind7a988c2021-03-04 23:26:15 +05003155 " at %s:%d uses unknown ring named '%s'.\n",
Christopher Faulet1d7d0f82021-02-19 10:56:41 +01003156 px->id, conf->agent->id, conf->agent->conf.file,
3157 conf->agent->conf.line, logsrv->ring_name);
3158 return 1;
3159 }
3160 logsrv->sink = sink;
3161 }
3162 }
3163
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003164 ha_free(&conf->agent->b.name);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003165 conf->agent->b.be = target;
3166 return 0;
3167}
3168
Kevin Zhud87b1a52019-09-17 15:05:45 +02003169/* Initializes the SPOE filter for a proxy for a specific thread.
3170 * Returns a negative value if an error occurs. */
3171static int
3172spoe_init_per_thread(struct proxy *p, struct flt_conf *fconf)
3173{
3174 struct spoe_config *conf = fconf->conf;
3175 struct spoe_agent *agent = conf->agent;
3176
Christopher Fauletb1bb1af2019-09-17 11:55:52 +02003177 agent->rt[tid].engine_id = generate_pseudo_uuid();
3178 if (agent->rt[tid].engine_id == NULL)
3179 return -1;
Kevin Zhud87b1a52019-09-17 15:05:45 +02003180 return 0;
3181}
3182
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003183/**************************************************************************
3184 * Hooks attached to a stream
3185 *************************************************************************/
3186/* Called when a filter instance is created and attach to a stream. It creates
3187 * the context that will be used to process this stream. */
3188static int
3189spoe_start(struct stream *s, struct filter *filter)
3190{
Christopher Faulet72bcc472017-01-04 16:39:41 +01003191 struct spoe_config *conf = FLT_CONF(filter);
3192 struct spoe_agent *agent = conf->agent;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003193 struct spoe_context *ctx;
3194
3195 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p\n",
Christopher Faulet72bcc472017-01-04 16:39:41 +01003196 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003197 __FUNCTION__, s);
3198
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01003199 if ((ctx = spoe_create_context(s, filter)) == NULL) {
Christopher Faulet72bcc472017-01-04 16:39:41 +01003200 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
3201 " - failed to create SPOE context\n",
3202 (int)now.tv_sec, (int)now.tv_usec, agent->id,
Christopher Fauletccbc3fd2017-09-15 11:51:18 +02003203 __FUNCTION__, s);
Christopher Faulet3b8e3492018-03-26 17:20:58 +02003204 send_log(&conf->agent_fe, LOG_EMERG,
Christopher Faulet72bcc472017-01-04 16:39:41 +01003205 "SPOE: [%s] failed to create SPOE context\n",
3206 agent->id);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003207 return 0;
3208 }
3209
Christopher Faulet11610f32017-09-21 10:23:10 +02003210 if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_TCP_REQ_FE]))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003211 filter->pre_analyzers |= AN_REQ_INSPECT_FE;
3212
Christopher Faulet11610f32017-09-21 10:23:10 +02003213 if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_TCP_REQ_BE]))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003214 filter->pre_analyzers |= AN_REQ_INSPECT_BE;
3215
Christopher Faulet11610f32017-09-21 10:23:10 +02003216 if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_TCP_RSP]))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003217 filter->pre_analyzers |= AN_RES_INSPECT;
3218
Christopher Faulet11610f32017-09-21 10:23:10 +02003219 if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_HTTP_REQ_FE]))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003220 filter->pre_analyzers |= AN_REQ_HTTP_PROCESS_FE;
3221
Christopher Faulet11610f32017-09-21 10:23:10 +02003222 if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_HTTP_REQ_BE]))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003223 filter->pre_analyzers |= AN_REQ_HTTP_PROCESS_BE;
3224
Christopher Faulet11610f32017-09-21 10:23:10 +02003225 if (!LIST_ISEMPTY(&ctx->events[SPOE_EV_ON_HTTP_RSP]))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003226 filter->pre_analyzers |= AN_RES_HTTP_PROCESS_FE;
3227
3228 return 1;
3229}
3230
3231/* Called when a filter instance is detached from a stream. It release the
3232 * attached SPOE context. */
3233static void
3234spoe_stop(struct stream *s, struct filter *filter)
3235{
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003236 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p\n",
3237 (int)now.tv_sec, (int)now.tv_usec,
3238 ((struct spoe_config *)FLT_CONF(filter))->agent->id,
3239 __FUNCTION__, s);
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01003240 spoe_destroy_context(filter);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003241}
3242
Christopher Fauletf7a30922016-11-10 15:04:51 +01003243
3244/*
3245 * Called when the stream is woken up because of expired timer.
3246 */
3247static void
3248spoe_check_timeouts(struct stream *s, struct filter *filter)
3249{
3250 struct spoe_context *ctx = filter->ctx;
3251
Christopher Fauletac580602018-03-20 16:09:20 +01003252 if (tick_is_expired(ctx->process_exp, now_ms))
Christopher Fauleta73e59b2016-12-09 17:30:18 +01003253 s->pending_events |= TASK_WOKEN_MSG;
Christopher Fauletf7a30922016-11-10 15:04:51 +01003254}
3255
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003256/* Called when we are ready to filter data on a channel */
3257static int
3258spoe_start_analyze(struct stream *s, struct filter *filter, struct channel *chn)
3259{
3260 struct spoe_context *ctx = filter->ctx;
3261 int ret = 1;
3262
3263 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p - ctx-state=%s"
3264 " - ctx-flags=0x%08x\n",
3265 (int)now.tv_sec, (int)now.tv_usec,
3266 ((struct spoe_config *)FLT_CONF(filter))->agent->id,
3267 __FUNCTION__, s, spoe_ctx_state_str[ctx->state], ctx->flags);
3268
Christopher Fauletb067b062017-01-04 16:39:11 +01003269 if (ctx->state == SPOE_CTX_ST_NONE)
3270 goto out;
3271
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003272 if (!(chn->flags & CF_ISRESP)) {
3273 if (filter->pre_analyzers & AN_REQ_INSPECT_FE)
3274 chn->analysers |= AN_REQ_INSPECT_FE;
3275 if (filter->pre_analyzers & AN_REQ_INSPECT_BE)
3276 chn->analysers |= AN_REQ_INSPECT_BE;
3277
3278 if (ctx->flags & SPOE_CTX_FL_CLI_CONNECTED)
3279 goto out;
3280
3281 ctx->stream_id = s->uniq_id;
Christopher Faulet8ef75252017-02-20 22:56:03 +01003282 ret = spoe_process_event(s, ctx, SPOE_EV_ON_CLIENT_SESS);
Christopher Fauletb067b062017-01-04 16:39:11 +01003283 if (!ret)
3284 goto out;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003285 ctx->flags |= SPOE_CTX_FL_CLI_CONNECTED;
3286 }
3287 else {
Miroslav Zagorac88403262020-06-19 22:17:17 +02003288 if (filter->pre_analyzers & AN_RES_INSPECT)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003289 chn->analysers |= AN_RES_INSPECT;
3290
3291 if (ctx->flags & SPOE_CTX_FL_SRV_CONNECTED)
3292 goto out;
3293
Christopher Faulet8ef75252017-02-20 22:56:03 +01003294 ret = spoe_process_event(s, ctx, SPOE_EV_ON_SERVER_SESS);
Christopher Fauleta1cda022016-12-21 08:58:06 +01003295 if (!ret) {
3296 channel_dont_read(chn);
3297 channel_dont_close(chn);
Christopher Fauletb067b062017-01-04 16:39:11 +01003298 goto out;
Christopher Fauleta1cda022016-12-21 08:58:06 +01003299 }
Christopher Fauletb067b062017-01-04 16:39:11 +01003300 ctx->flags |= SPOE_CTX_FL_SRV_CONNECTED;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003301 }
3302
3303 out:
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003304 return ret;
3305}
3306
3307/* Called before a processing happens on a given channel */
3308static int
3309spoe_chn_pre_analyze(struct stream *s, struct filter *filter,
3310 struct channel *chn, unsigned an_bit)
3311{
3312 struct spoe_context *ctx = filter->ctx;
3313 int ret = 1;
3314
3315 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p - ctx-state=%s"
3316 " - ctx-flags=0x%08x - ana=0x%08x\n",
3317 (int)now.tv_sec, (int)now.tv_usec,
3318 ((struct spoe_config *)FLT_CONF(filter))->agent->id,
3319 __FUNCTION__, s, spoe_ctx_state_str[ctx->state],
3320 ctx->flags, an_bit);
3321
Christopher Fauletb067b062017-01-04 16:39:11 +01003322 if (ctx->state == SPOE_CTX_ST_NONE)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003323 goto out;
3324
3325 switch (an_bit) {
3326 case AN_REQ_INSPECT_FE:
Christopher Faulet8ef75252017-02-20 22:56:03 +01003327 ret = spoe_process_event(s, ctx, SPOE_EV_ON_TCP_REQ_FE);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003328 break;
3329 case AN_REQ_INSPECT_BE:
Christopher Faulet8ef75252017-02-20 22:56:03 +01003330 ret = spoe_process_event(s, ctx, SPOE_EV_ON_TCP_REQ_BE);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003331 break;
3332 case AN_RES_INSPECT:
Christopher Faulet8ef75252017-02-20 22:56:03 +01003333 ret = spoe_process_event(s, ctx, SPOE_EV_ON_TCP_RSP);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003334 break;
3335 case AN_REQ_HTTP_PROCESS_FE:
Christopher Faulet8ef75252017-02-20 22:56:03 +01003336 ret = spoe_process_event(s, ctx, SPOE_EV_ON_HTTP_REQ_FE);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003337 break;
3338 case AN_REQ_HTTP_PROCESS_BE:
Christopher Faulet8ef75252017-02-20 22:56:03 +01003339 ret = spoe_process_event(s, ctx, SPOE_EV_ON_HTTP_REQ_BE);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003340 break;
3341 case AN_RES_HTTP_PROCESS_FE:
Christopher Faulet8ef75252017-02-20 22:56:03 +01003342 ret = spoe_process_event(s, ctx, SPOE_EV_ON_HTTP_RSP);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003343 break;
3344 }
3345
3346 out:
Christopher Faulet9cdca972018-02-01 08:45:45 +01003347 if (!ret && (chn->flags & CF_ISRESP)) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003348 channel_dont_read(chn);
3349 channel_dont_close(chn);
3350 }
3351 return ret;
3352}
3353
3354/* Called when the filtering on the channel ends. */
3355static int
3356spoe_end_analyze(struct stream *s, struct filter *filter, struct channel *chn)
3357{
3358 struct spoe_context *ctx = filter->ctx;
3359
3360 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p - ctx-state=%s"
3361 " - ctx-flags=0x%08x\n",
3362 (int)now.tv_sec, (int)now.tv_usec,
3363 ((struct spoe_config *)FLT_CONF(filter))->agent->id,
3364 __FUNCTION__, s, spoe_ctx_state_str[ctx->state], ctx->flags);
3365
3366 if (!(ctx->flags & SPOE_CTX_FL_PROCESS)) {
Christopher Faulet8ef75252017-02-20 22:56:03 +01003367 spoe_reset_context(ctx);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003368 }
3369
3370 return 1;
3371}
3372
3373/********************************************************************
3374 * Functions that manage the filter initialization
3375 ********************************************************************/
3376struct flt_ops spoe_ops = {
3377 /* Manage SPOE filter, called for each filter declaration */
3378 .init = spoe_init,
3379 .deinit = spoe_deinit,
3380 .check = spoe_check,
Kevin Zhud87b1a52019-09-17 15:05:45 +02003381 .init_per_thread = spoe_init_per_thread,
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003382
3383 /* Handle start/stop of SPOE */
Christopher Fauletf7a30922016-11-10 15:04:51 +01003384 .attach = spoe_start,
3385 .detach = spoe_stop,
3386 .check_timeouts = spoe_check_timeouts,
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003387
3388 /* Handle channels activity */
3389 .channel_start_analyze = spoe_start_analyze,
3390 .channel_pre_analyze = spoe_chn_pre_analyze,
3391 .channel_end_analyze = spoe_end_analyze,
3392};
3393
3394
3395static int
3396cfg_parse_spoe_agent(const char *file, int linenum, char **args, int kwm)
3397{
3398 const char *err;
3399 int i, err_code = 0;
3400
3401 if ((cfg_scope == NULL && curengine != NULL) ||
3402 (cfg_scope != NULL && curengine == NULL) ||
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003403 (curengine != NULL && cfg_scope != NULL && strcmp(curengine, cfg_scope) != 0))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003404 goto out;
3405
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003406 if (strcmp(args[0], "spoe-agent") == 0) { /* new spoe-agent section */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003407 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003408 ha_alert("parsing [%s:%d] : missing name for spoe-agent section.\n",
3409 file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003410 err_code |= ERR_ALERT | ERR_ABORT;
3411 goto out;
3412 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003413 if (alertif_too_many_args(1, file, linenum, args, &err_code)) {
3414 err_code |= ERR_ABORT;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003415 goto out;
3416 }
3417
3418 err = invalid_char(args[1]);
3419 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003420 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
3421 file, linenum, *err, args[0], args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003422 err_code |= ERR_ALERT | ERR_ABORT;
3423 goto out;
3424 }
3425
3426 if (curagent != NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003427 ha_alert("parsing [%s:%d] : another spoe-agent section previously defined.\n",
3428 file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003429 err_code |= ERR_ALERT | ERR_ABORT;
3430 goto out;
3431 }
3432 if ((curagent = calloc(1, sizeof(*curagent))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003433 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003434 err_code |= ERR_ALERT | ERR_ABORT;
3435 goto out;
3436 }
3437
3438 curagent->id = strdup(args[1]);
Christopher Fauleta1cda022016-12-21 08:58:06 +01003439
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003440 curagent->conf.file = strdup(file);
3441 curagent->conf.line = linenum;
Christopher Fauleta1cda022016-12-21 08:58:06 +01003442
3443 curagent->timeout.hello = TICK_ETERNITY;
3444 curagent->timeout.idle = TICK_ETERNITY;
Christopher Fauletf7a30922016-11-10 15:04:51 +01003445 curagent->timeout.processing = TICK_ETERNITY;
Christopher Fauleta1cda022016-12-21 08:58:06 +01003446
Christopher Fauleta1cda022016-12-21 08:58:06 +01003447 curagent->var_pfx = NULL;
3448 curagent->var_on_error = NULL;
Christopher Faulet36bda1c2018-03-22 09:08:20 +01003449 curagent->var_t_process = NULL;
3450 curagent->var_t_total = NULL;
Christopher Fauletb1bb1af2019-09-17 11:55:52 +02003451 curagent->flags = (SPOE_FL_ASYNC | SPOE_FL_PIPELINING | SPOE_FL_SND_FRAGMENTATION);
Christopher Fauleta1cda022016-12-21 08:58:06 +01003452 curagent->cps_max = 0;
3453 curagent->eps_max = 0;
Christopher Faulet7aa0b2b2017-01-13 11:30:50 +01003454 curagent->max_frame_size = MAX_FRAME_SIZE;
Christopher Fauletb077cdc2018-01-24 16:37:57 +01003455 curagent->max_fpa = 20;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003456
3457 for (i = 0; i < SPOE_EV_EVENTS; ++i)
Christopher Faulet11610f32017-09-21 10:23:10 +02003458 LIST_INIT(&curagent->events[i]);
3459 LIST_INIT(&curagent->groups);
3460 LIST_INIT(&curagent->messages);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003461 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003462 else if (strcmp(args[0], "use-backend") == 0) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003463 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003464 ha_alert("parsing [%s:%d] : '%s' expects a backend name.\n",
3465 file, linenum, args[0]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003466 err_code |= ERR_ALERT | ERR_FATAL;
3467 goto out;
3468 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003469 if (alertif_too_many_args(1, file, linenum, args, &err_code))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003470 goto out;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003471 free(curagent->b.name);
3472 curagent->b.name = strdup(args[1]);
3473 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003474 else if (strcmp(args[0], "messages") == 0) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003475 int cur_arg = 1;
3476 while (*args[cur_arg]) {
Christopher Faulet11610f32017-09-21 10:23:10 +02003477 struct spoe_placeholder *ph = NULL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003478
Christopher Faulet11610f32017-09-21 10:23:10 +02003479 list_for_each_entry(ph, &curmphs, list) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003480 if (strcmp(ph->id, args[cur_arg]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003481 ha_alert("parsing [%s:%d]: spoe-message '%s' already used.\n",
3482 file, linenum, args[cur_arg]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003483 err_code |= ERR_ALERT | ERR_FATAL;
3484 goto out;
3485 }
3486 }
3487
Christopher Faulet11610f32017-09-21 10:23:10 +02003488 if ((ph = calloc(1, sizeof(*ph))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003489 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003490 err_code |= ERR_ALERT | ERR_ABORT;
3491 goto out;
3492 }
Christopher Faulet11610f32017-09-21 10:23:10 +02003493 ph->id = strdup(args[cur_arg]);
Willy Tarreau2b718102021-04-21 07:32:39 +02003494 LIST_APPEND(&curmphs, &ph->list);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003495 cur_arg++;
3496 }
3497 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003498 else if (strcmp(args[0], "groups") == 0) {
Christopher Faulet11610f32017-09-21 10:23:10 +02003499 int cur_arg = 1;
3500 while (*args[cur_arg]) {
3501 struct spoe_placeholder *ph = NULL;
3502
3503 list_for_each_entry(ph, &curgphs, list) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003504 if (strcmp(ph->id, args[cur_arg]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003505 ha_alert("parsing [%s:%d]: spoe-group '%s' already used.\n",
3506 file, linenum, args[cur_arg]);
Christopher Faulet11610f32017-09-21 10:23:10 +02003507 err_code |= ERR_ALERT | ERR_FATAL;
3508 goto out;
3509 }
3510 }
3511
3512 if ((ph = calloc(1, sizeof(*ph))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003513 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Faulet11610f32017-09-21 10:23:10 +02003514 err_code |= ERR_ALERT | ERR_ABORT;
3515 goto out;
3516 }
3517 ph->id = strdup(args[cur_arg]);
Willy Tarreau2b718102021-04-21 07:32:39 +02003518 LIST_APPEND(&curgphs, &ph->list);
Christopher Faulet11610f32017-09-21 10:23:10 +02003519 cur_arg++;
3520 }
3521 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003522 else if (strcmp(args[0], "timeout") == 0) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003523 unsigned int *tv = NULL;
3524 const char *res;
3525 unsigned timeout;
3526
3527 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003528 ha_alert("parsing [%s:%d] : 'timeout' expects 'hello', 'idle' and 'processing'.\n",
3529 file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003530 err_code |= ERR_ALERT | ERR_FATAL;
3531 goto out;
3532 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003533 if (alertif_too_many_args(2, file, linenum, args, &err_code))
3534 goto out;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003535 if (strcmp(args[1], "hello") == 0)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003536 tv = &curagent->timeout.hello;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003537 else if (strcmp(args[1], "idle") == 0)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003538 tv = &curagent->timeout.idle;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003539 else if (strcmp(args[1], "processing") == 0)
Christopher Fauletf7a30922016-11-10 15:04:51 +01003540 tv = &curagent->timeout.processing;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003541 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003542 ha_alert("parsing [%s:%d] : 'timeout' supports 'hello', 'idle' or 'processing' (got %s).\n",
3543 file, linenum, args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003544 err_code |= ERR_ALERT | ERR_FATAL;
3545 goto out;
3546 }
3547 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003548 ha_alert("parsing [%s:%d] : 'timeout %s' expects an integer value (in milliseconds).\n",
3549 file, linenum, args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003550 err_code |= ERR_ALERT | ERR_FATAL;
3551 goto out;
3552 }
3553 res = parse_time_err(args[2], &timeout, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02003554 if (res == PARSE_TIME_OVER) {
3555 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
3556 file, linenum, args[2], args[0], args[1]);
3557 err_code |= ERR_ALERT | ERR_FATAL;
3558 goto out;
3559 }
3560 else if (res == PARSE_TIME_UNDER) {
3561 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
3562 file, linenum, args[2], args[0], args[1]);
3563 err_code |= ERR_ALERT | ERR_FATAL;
3564 goto out;
3565 }
3566 else if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003567 ha_alert("parsing [%s:%d] : unexpected character '%c' in 'timeout %s'.\n",
3568 file, linenum, *res, args[1]);
Christopher Fauletecc537a2017-02-23 22:52:39 +01003569 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003570 goto out;
3571 }
3572 *tv = MS_TO_TICKS(timeout);
3573 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003574 else if (strcmp(args[0], "option") == 0) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003575 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003576 ha_alert("parsing [%s:%d]: '%s' expects an option name.\n",
3577 file, linenum, args[0]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003578 err_code |= ERR_ALERT | ERR_FATAL;
3579 goto out;
3580 }
Christopher Faulet6a2940c2017-02-23 15:06:26 +01003581
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003582 if (strcmp(args[1], "pipelining") == 0) {
Christopher Fauletecc537a2017-02-23 22:52:39 +01003583 if (alertif_too_many_args(1, file, linenum, args, &err_code))
Christopher Faulet305c6072017-02-23 16:17:53 +01003584 goto out;
Christopher Faulet305c6072017-02-23 16:17:53 +01003585 if (kwm == 1)
3586 curagent->flags &= ~SPOE_FL_PIPELINING;
3587 else
3588 curagent->flags |= SPOE_FL_PIPELINING;
3589 goto out;
3590 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003591 else if (strcmp(args[1], "async") == 0) {
Christopher Fauletecc537a2017-02-23 22:52:39 +01003592 if (alertif_too_many_args(1, file, linenum, args, &err_code))
Christopher Faulet305c6072017-02-23 16:17:53 +01003593 goto out;
Christopher Faulet305c6072017-02-23 16:17:53 +01003594 if (kwm == 1)
3595 curagent->flags &= ~SPOE_FL_ASYNC;
Christopher Fauletb1bb1af2019-09-17 11:55:52 +02003596 else
3597 curagent->flags |= SPOE_FL_ASYNC;
Christopher Faulet305c6072017-02-23 16:17:53 +01003598 goto out;
3599 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003600 else if (strcmp(args[1], "send-frag-payload") == 0) {
Christopher Fauletcecd8522017-02-24 22:11:21 +01003601 if (alertif_too_many_args(1, file, linenum, args, &err_code))
3602 goto out;
3603 if (kwm == 1)
3604 curagent->flags &= ~SPOE_FL_SND_FRAGMENTATION;
3605 else
3606 curagent->flags |= SPOE_FL_SND_FRAGMENTATION;
3607 goto out;
3608 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003609 else if (strcmp(args[1], "dontlog-normal") == 0) {
Christopher Faulet0e0f0852018-03-26 17:20:36 +02003610 if (alertif_too_many_args(1, file, linenum, args, &err_code))
3611 goto out;
3612 if (kwm == 1)
3613 curpxopts2 &= ~PR_O2_NOLOGNORM;
3614 else
3615 curpxopts2 |= PR_O2_NOLOGNORM;
Christopher Faulet799f5182018-04-26 11:36:34 +02003616 goto out;
Christopher Faulet0e0f0852018-03-26 17:20:36 +02003617 }
Christopher Faulet305c6072017-02-23 16:17:53 +01003618
Christopher Faulet6a2940c2017-02-23 15:06:26 +01003619 /* Following options does not support negation */
3620 if (kwm == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003621 ha_alert("parsing [%s:%d]: negation is not supported for option '%s'.\n",
3622 file, linenum, args[1]);
Christopher Faulet6a2940c2017-02-23 15:06:26 +01003623 err_code |= ERR_ALERT | ERR_FATAL;
3624 goto out;
3625 }
3626
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003627 if (strcmp(args[1], "var-prefix") == 0) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003628 char *tmp;
3629
3630 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003631 ha_alert("parsing [%s:%d]: '%s %s' expects a value.\n",
3632 file, linenum, args[0],
3633 args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003634 err_code |= ERR_ALERT | ERR_FATAL;
3635 goto out;
3636 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003637 if (alertif_too_many_args(2, file, linenum, args, &err_code))
3638 goto out;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003639 tmp = args[2];
3640 while (*tmp) {
Willy Tarreau90807112020-02-25 08:16:33 +01003641 if (!isalnum((unsigned char)*tmp) && *tmp != '_' && *tmp != '.') {
Thierry FOURNIER01a3f202018-05-10 16:41:26 +02003642 ha_alert("parsing [%s:%d]: '%s %s' only supports [a-zA-Z0-9_.] chars.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003643 file, linenum, args[0], args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003644 err_code |= ERR_ALERT | ERR_FATAL;
3645 goto out;
3646 }
3647 tmp++;
3648 }
3649 curagent->var_pfx = strdup(args[2]);
3650 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003651 else if (strcmp(args[1], "force-set-var") == 0) {
Etienne Carriereaec89892017-12-14 09:36:40 +00003652 if (alertif_too_many_args(1, file, linenum, args, &err_code))
3653 goto out;
3654 curagent->flags |= SPOE_FL_FORCE_SET_VAR;
3655 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003656 else if (strcmp(args[1], "continue-on-error") == 0) {
Christopher Fauletecc537a2017-02-23 22:52:39 +01003657 if (alertif_too_many_args(1, file, linenum, args, &err_code))
Christopher Fauletea62c2a2016-11-14 10:54:21 +01003658 goto out;
Christopher Fauletea62c2a2016-11-14 10:54:21 +01003659 curagent->flags |= SPOE_FL_CONT_ON_ERR;
3660 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003661 else if (strcmp(args[1], "set-on-error") == 0) {
Christopher Faulet985532d2016-11-16 15:36:19 +01003662 char *tmp;
3663
3664 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003665 ha_alert("parsing [%s:%d]: '%s %s' expects a value.\n",
3666 file, linenum, args[0],
3667 args[1]);
Christopher Faulet985532d2016-11-16 15:36:19 +01003668 err_code |= ERR_ALERT | ERR_FATAL;
3669 goto out;
3670 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003671 if (alertif_too_many_args(2, file, linenum, args, &err_code))
3672 goto out;
Christopher Faulet985532d2016-11-16 15:36:19 +01003673 tmp = args[2];
3674 while (*tmp) {
Willy Tarreau90807112020-02-25 08:16:33 +01003675 if (!isalnum((unsigned char)*tmp) && *tmp != '_' && *tmp != '.') {
Thierry FOURNIER01a3f202018-05-10 16:41:26 +02003676 ha_alert("parsing [%s:%d]: '%s %s' only supports [a-zA-Z0-9_.] chars.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003677 file, linenum, args[0], args[1]);
Christopher Faulet985532d2016-11-16 15:36:19 +01003678 err_code |= ERR_ALERT | ERR_FATAL;
3679 goto out;
3680 }
3681 tmp++;
3682 }
3683 curagent->var_on_error = strdup(args[2]);
3684 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003685 else if (strcmp(args[1], "set-process-time") == 0) {
Christopher Faulet36bda1c2018-03-22 09:08:20 +01003686 char *tmp;
3687
3688 if (!*args[2]) {
3689 ha_alert("parsing [%s:%d]: '%s %s' expects a value.\n",
3690 file, linenum, args[0],
3691 args[1]);
3692 err_code |= ERR_ALERT | ERR_FATAL;
3693 goto out;
3694 }
3695 if (alertif_too_many_args(2, file, linenum, args, &err_code))
3696 goto out;
3697 tmp = args[2];
3698 while (*tmp) {
Willy Tarreau90807112020-02-25 08:16:33 +01003699 if (!isalnum((unsigned char)*tmp) && *tmp != '_' && *tmp != '.') {
Thierry FOURNIER01a3f202018-05-10 16:41:26 +02003700 ha_alert("parsing [%s:%d]: '%s %s' only supports [a-zA-Z0-9_.] chars.\n",
Christopher Faulet36bda1c2018-03-22 09:08:20 +01003701 file, linenum, args[0], args[1]);
3702 err_code |= ERR_ALERT | ERR_FATAL;
3703 goto out;
3704 }
3705 tmp++;
3706 }
3707 curagent->var_t_process = strdup(args[2]);
3708 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003709 else if (strcmp(args[1], "set-total-time") == 0) {
Christopher Faulet36bda1c2018-03-22 09:08:20 +01003710 char *tmp;
3711
3712 if (!*args[2]) {
3713 ha_alert("parsing [%s:%d]: '%s %s' expects a value.\n",
3714 file, linenum, args[0],
3715 args[1]);
3716 err_code |= ERR_ALERT | ERR_FATAL;
3717 goto out;
3718 }
3719 if (alertif_too_many_args(2, file, linenum, args, &err_code))
3720 goto out;
3721 tmp = args[2];
3722 while (*tmp) {
Willy Tarreau90807112020-02-25 08:16:33 +01003723 if (!isalnum((unsigned char)*tmp) && *tmp != '_' && *tmp != '.') {
Thierry FOURNIER01a3f202018-05-10 16:41:26 +02003724 ha_alert("parsing [%s:%d]: '%s %s' only supports [a-zA-Z0-9_.] chars.\n",
Christopher Faulet36bda1c2018-03-22 09:08:20 +01003725 file, linenum, args[0], args[1]);
3726 err_code |= ERR_ALERT | ERR_FATAL;
3727 goto out;
3728 }
3729 tmp++;
3730 }
3731 curagent->var_t_total = strdup(args[2]);
3732 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003733 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003734 ha_alert("parsing [%s:%d]: option '%s' is not supported.\n",
3735 file, linenum, args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003736 err_code |= ERR_ALERT | ERR_FATAL;
3737 goto out;
3738 }
Christopher Faulet48026722016-11-16 15:01:12 +01003739 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003740 else if (strcmp(args[0], "maxconnrate") == 0) {
Christopher Faulet48026722016-11-16 15:01:12 +01003741 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003742 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n",
3743 file, linenum, args[0]);
Christopher Faulet48026722016-11-16 15:01:12 +01003744 err_code |= ERR_ALERT | ERR_FATAL;
3745 goto out;
3746 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003747 if (alertif_too_many_args(1, file, linenum, args, &err_code))
Christopher Faulet48026722016-11-16 15:01:12 +01003748 goto out;
Christopher Faulet48026722016-11-16 15:01:12 +01003749 curagent->cps_max = atol(args[1]);
3750 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003751 else if (strcmp(args[0], "maxerrrate") == 0) {
Christopher Faulet48026722016-11-16 15:01:12 +01003752 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003753 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n",
3754 file, linenum, args[0]);
Christopher Faulet48026722016-11-16 15:01:12 +01003755 err_code |= ERR_ALERT | ERR_FATAL;
3756 goto out;
3757 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003758 if (alertif_too_many_args(1, file, linenum, args, &err_code))
Christopher Faulet48026722016-11-16 15:01:12 +01003759 goto out;
Christopher Faulet48026722016-11-16 15:01:12 +01003760 curagent->eps_max = atol(args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003761 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003762 else if (strcmp(args[0], "max-frame-size") == 0) {
Christopher Faulet2eca6b52017-02-27 09:40:34 +01003763 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003764 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n",
3765 file, linenum, args[0]);
Christopher Faulet2eca6b52017-02-27 09:40:34 +01003766 err_code |= ERR_ALERT | ERR_FATAL;
3767 goto out;
3768 }
3769 if (alertif_too_many_args(1, file, linenum, args, &err_code))
3770 goto out;
3771 curagent->max_frame_size = atol(args[1]);
3772 if (curagent->max_frame_size < MIN_FRAME_SIZE ||
3773 curagent->max_frame_size > MAX_FRAME_SIZE) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003774 ha_alert("parsing [%s:%d] : '%s' expects a positive integer argument in the range [%d, %d].\n",
3775 file, linenum, args[0], MIN_FRAME_SIZE, MAX_FRAME_SIZE);
Christopher Faulet2eca6b52017-02-27 09:40:34 +01003776 err_code |= ERR_ALERT | ERR_FATAL;
3777 goto out;
3778 }
3779 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003780 else if (strcmp(args[0], "max-waiting-frames") == 0) {
Christopher Faulete8ade382018-01-25 15:32:22 +01003781 if (!*args[1]) {
3782 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n",
3783 file, linenum, args[0]);
3784 err_code |= ERR_ALERT | ERR_FATAL;
3785 goto out;
3786 }
3787 if (alertif_too_many_args(1, file, linenum, args, &err_code))
3788 goto out;
3789 curagent->max_fpa = atol(args[1]);
3790 if (curagent->max_fpa < 1) {
3791 ha_alert("parsing [%s:%d] : '%s' expects a positive integer argument.\n",
3792 file, linenum, args[0]);
3793 err_code |= ERR_ALERT | ERR_FATAL;
3794 goto out;
3795 }
3796 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003797 else if (strcmp(args[0], "register-var-names") == 0) {
Christopher Faulet336d3ef2017-12-22 10:00:55 +01003798 int cur_arg;
3799
3800 if (!*args[1]) {
3801 ha_alert("parsing [%s:%d] : '%s' expects one or more variable names.\n",
3802 file, linenum, args[0]);
3803 err_code |= ERR_ALERT | ERR_FATAL;
3804 goto out;
3805 }
3806 cur_arg = 1;
3807 while (*args[cur_arg]) {
3808 struct spoe_var_placeholder *vph;
3809
3810 if ((vph = calloc(1, sizeof(*vph))) == NULL) {
3811 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
3812 err_code |= ERR_ALERT | ERR_ABORT;
3813 goto out;
3814 }
3815 if ((vph->name = strdup(args[cur_arg])) == NULL) {
Tim Duesterhusb2986132019-06-23 22:10:13 +02003816 free(vph);
Christopher Faulet336d3ef2017-12-22 10:00:55 +01003817 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
3818 err_code |= ERR_ALERT | ERR_ABORT;
3819 goto out;
3820 }
Willy Tarreau2b718102021-04-21 07:32:39 +02003821 LIST_APPEND(&curvars, &vph->list);
Christopher Faulet336d3ef2017-12-22 10:00:55 +01003822 cur_arg++;
3823 }
3824 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003825 else if (strcmp(args[0], "log") == 0) {
Christopher Faulet7250b8f2018-03-26 17:19:01 +02003826 char *errmsg = NULL;
3827
Emeric Brun9533a702021-04-02 10:13:43 +02003828 if (!parse_logsrv(args, &curlogsrvs, (kwm == 1), file, linenum, &errmsg)) {
Christopher Faulet7250b8f2018-03-26 17:19:01 +02003829 ha_alert("parsing [%s:%d] : %s : %s\n", file, linenum, args[0], errmsg);
3830 err_code |= ERR_ALERT | ERR_FATAL;
3831 goto out;
3832 }
3833 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003834 else if (*args[0]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003835 ha_alert("parsing [%s:%d] : unknown keyword '%s' in spoe-agent section.\n",
3836 file, linenum, args[0]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003837 err_code |= ERR_ALERT | ERR_FATAL;
3838 goto out;
3839 }
3840 out:
3841 return err_code;
3842}
Christopher Faulet11610f32017-09-21 10:23:10 +02003843static int
3844cfg_parse_spoe_group(const char *file, int linenum, char **args, int kwm)
3845{
3846 struct spoe_group *grp;
3847 const char *err;
3848 int err_code = 0;
3849
3850 if ((cfg_scope == NULL && curengine != NULL) ||
3851 (cfg_scope != NULL && curengine == NULL) ||
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003852 (curengine != NULL && cfg_scope != NULL && strcmp(curengine, cfg_scope) != 0))
Christopher Faulet11610f32017-09-21 10:23:10 +02003853 goto out;
3854
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003855 if (strcmp(args[0], "spoe-group") == 0) { /* new spoe-group section */
Christopher Faulet11610f32017-09-21 10:23:10 +02003856 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003857 ha_alert("parsing [%s:%d] : missing name for spoe-group section.\n",
3858 file, linenum);
Christopher Faulet11610f32017-09-21 10:23:10 +02003859 err_code |= ERR_ALERT | ERR_ABORT;
3860 goto out;
3861 }
3862 if (alertif_too_many_args(1, file, linenum, args, &err_code)) {
3863 err_code |= ERR_ABORT;
3864 goto out;
3865 }
3866
3867 err = invalid_char(args[1]);
3868 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003869 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
3870 file, linenum, *err, args[0], args[1]);
Christopher Faulet11610f32017-09-21 10:23:10 +02003871 err_code |= ERR_ALERT | ERR_ABORT;
3872 goto out;
3873 }
3874
3875 list_for_each_entry(grp, &curgrps, list) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003876 if (strcmp(grp->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003877 ha_alert("parsing [%s:%d]: spoe-group section '%s' has the same"
3878 " name as another one declared at %s:%d.\n",
3879 file, linenum, args[1], grp->conf.file, grp->conf.line);
Christopher Faulet11610f32017-09-21 10:23:10 +02003880 err_code |= ERR_ALERT | ERR_FATAL;
3881 goto out;
3882 }
3883 }
3884
3885 if ((curgrp = calloc(1, sizeof(*curgrp))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003886 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Faulet11610f32017-09-21 10:23:10 +02003887 err_code |= ERR_ALERT | ERR_ABORT;
3888 goto out;
3889 }
3890
3891 curgrp->id = strdup(args[1]);
3892 curgrp->conf.file = strdup(file);
3893 curgrp->conf.line = linenum;
3894 LIST_INIT(&curgrp->phs);
3895 LIST_INIT(&curgrp->messages);
Willy Tarreau2b718102021-04-21 07:32:39 +02003896 LIST_APPEND(&curgrps, &curgrp->list);
Christopher Faulet11610f32017-09-21 10:23:10 +02003897 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003898 else if (strcmp(args[0], "messages") == 0) {
Christopher Faulet11610f32017-09-21 10:23:10 +02003899 int cur_arg = 1;
3900 while (*args[cur_arg]) {
3901 struct spoe_placeholder *ph = NULL;
3902
3903 list_for_each_entry(ph, &curgrp->phs, list) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003904 if (strcmp(ph->id, args[cur_arg]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003905 ha_alert("parsing [%s:%d]: spoe-message '%s' already used.\n",
3906 file, linenum, args[cur_arg]);
Christopher Faulet11610f32017-09-21 10:23:10 +02003907 err_code |= ERR_ALERT | ERR_FATAL;
3908 goto out;
3909 }
3910 }
3911
3912 if ((ph = calloc(1, sizeof(*ph))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003913 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Faulet11610f32017-09-21 10:23:10 +02003914 err_code |= ERR_ALERT | ERR_ABORT;
3915 goto out;
3916 }
3917 ph->id = strdup(args[cur_arg]);
Willy Tarreau2b718102021-04-21 07:32:39 +02003918 LIST_APPEND(&curgrp->phs, &ph->list);
Christopher Faulet11610f32017-09-21 10:23:10 +02003919 cur_arg++;
3920 }
3921 }
3922 else if (*args[0]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003923 ha_alert("parsing [%s:%d] : unknown keyword '%s' in spoe-group section.\n",
3924 file, linenum, args[0]);
Christopher Faulet11610f32017-09-21 10:23:10 +02003925 err_code |= ERR_ALERT | ERR_FATAL;
3926 goto out;
3927 }
3928 out:
3929 return err_code;
3930}
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003931
3932static int
3933cfg_parse_spoe_message(const char *file, int linenum, char **args, int kwm)
3934{
3935 struct spoe_message *msg;
3936 struct spoe_arg *arg;
3937 const char *err;
3938 char *errmsg = NULL;
3939 int err_code = 0;
3940
3941 if ((cfg_scope == NULL && curengine != NULL) ||
3942 (cfg_scope != NULL && curengine == NULL) ||
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003943 (curengine != NULL && cfg_scope != NULL && strcmp(curengine, cfg_scope) != 0))
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003944 goto out;
3945
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003946 if (strcmp(args[0], "spoe-message") == 0) { /* new spoe-message section */
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003947 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003948 ha_alert("parsing [%s:%d] : missing name for spoe-message section.\n",
3949 file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003950 err_code |= ERR_ALERT | ERR_ABORT;
3951 goto out;
3952 }
Christopher Fauletecc537a2017-02-23 22:52:39 +01003953 if (alertif_too_many_args(1, file, linenum, args, &err_code)) {
3954 err_code |= ERR_ABORT;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003955 goto out;
3956 }
3957
3958 err = invalid_char(args[1]);
3959 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003960 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
3961 file, linenum, *err, args[0], args[1]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003962 err_code |= ERR_ALERT | ERR_ABORT;
3963 goto out;
3964 }
3965
3966 list_for_each_entry(msg, &curmsgs, list) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003967 if (strcmp(msg->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003968 ha_alert("parsing [%s:%d]: spoe-message section '%s' has the same"
3969 " name as another one declared at %s:%d.\n",
3970 file, linenum, args[1], msg->conf.file, msg->conf.line);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003971 err_code |= ERR_ALERT | ERR_FATAL;
3972 goto out;
3973 }
3974 }
3975
3976 if ((curmsg = calloc(1, sizeof(*curmsg))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003977 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003978 err_code |= ERR_ALERT | ERR_ABORT;
3979 goto out;
3980 }
3981
3982 curmsg->id = strdup(args[1]);
3983 curmsg->id_len = strlen(curmsg->id);
3984 curmsg->event = SPOE_EV_NONE;
3985 curmsg->conf.file = strdup(file);
3986 curmsg->conf.line = linenum;
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01003987 curmsg->nargs = 0;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003988 LIST_INIT(&curmsg->args);
Christopher Faulet57583e42017-09-04 15:41:09 +02003989 LIST_INIT(&curmsg->acls);
Christopher Faulet11610f32017-09-21 10:23:10 +02003990 LIST_INIT(&curmsg->by_evt);
3991 LIST_INIT(&curmsg->by_grp);
Willy Tarreau2b718102021-04-21 07:32:39 +02003992 LIST_APPEND(&curmsgs, &curmsg->list);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003993 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003994 else if (strcmp(args[0], "args") == 0) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02003995 int cur_arg = 1;
3996
3997 curproxy->conf.args.ctx = ARGC_SPOE;
3998 curproxy->conf.args.file = file;
3999 curproxy->conf.args.line = linenum;
4000 while (*args[cur_arg]) {
4001 char *delim = strchr(args[cur_arg], '=');
4002 int idx = 0;
4003
4004 if ((arg = calloc(1, sizeof(*arg))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004005 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004006 err_code |= ERR_ALERT | ERR_ABORT;
4007 goto out;
4008 }
4009
4010 if (!delim) {
4011 arg->name = NULL;
4012 arg->name_len = 0;
4013 delim = args[cur_arg];
4014 }
4015 else {
4016 arg->name = my_strndup(args[cur_arg], delim - args[cur_arg]);
4017 arg->name_len = delim - args[cur_arg];
4018 delim++;
4019 }
Christopher Fauletb0b42382017-02-23 22:41:09 +01004020 arg->expr = sample_parse_expr((char*[]){delim, NULL},
4021 &idx, file, linenum, &errmsg,
Willy Tarreaue3b57bf2020-02-14 16:50:14 +01004022 &curproxy->conf.args, NULL);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004023 if (arg->expr == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004024 ha_alert("parsing [%s:%d] : '%s': %s.\n", file, linenum, args[0], errmsg);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004025 err_code |= ERR_ALERT | ERR_FATAL;
4026 free(arg->name);
4027 free(arg);
4028 goto out;
4029 }
Christopher Fauletf51f5fa2017-01-19 10:01:12 +01004030 curmsg->nargs++;
Willy Tarreau2b718102021-04-21 07:32:39 +02004031 LIST_APPEND(&curmsg->args, &arg->list);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004032 cur_arg++;
4033 }
4034 curproxy->conf.args.file = NULL;
4035 curproxy->conf.args.line = 0;
4036 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004037 else if (strcmp(args[0], "acl") == 0) {
Christopher Faulet57583e42017-09-04 15:41:09 +02004038 err = invalid_char(args[1]);
4039 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004040 ha_alert("parsing [%s:%d] : character '%c' is not permitted in acl name '%s'.\n",
4041 file, linenum, *err, args[1]);
Christopher Faulet57583e42017-09-04 15:41:09 +02004042 err_code |= ERR_ALERT | ERR_FATAL;
4043 goto out;
4044 }
Tim Duesterhus0cf811a2020-02-05 21:00:50 +01004045 if (strcasecmp(args[1], "or") == 0) {
Tim Duesterhusf1bc24c2020-02-06 22:04:03 +01004046 ha_alert("parsing [%s:%d] : acl name '%s' will never match. 'or' is used to express a "
Tim Duesterhus0cf811a2020-02-05 21:00:50 +01004047 "logical disjunction within a condition.\n",
4048 file, linenum, args[1]);
4049 err_code |= ERR_ALERT | ERR_FATAL;
4050 goto out;
4051 }
Christopher Faulet57583e42017-09-04 15:41:09 +02004052 if (parse_acl((const char **)args + 1, &curmsg->acls, &errmsg, &curproxy->conf.args, file, linenum) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004053 ha_alert("parsing [%s:%d] : error detected while parsing ACL '%s' : %s.\n",
4054 file, linenum, args[1], errmsg);
Christopher Faulet57583e42017-09-04 15:41:09 +02004055 err_code |= ERR_ALERT | ERR_FATAL;
4056 goto out;
4057 }
4058 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004059 else if (strcmp(args[0], "event") == 0) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004060 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004061 ha_alert("parsing [%s:%d] : missing event name.\n", file, linenum);
Christopher Fauletecc537a2017-02-23 22:52:39 +01004062 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004063 goto out;
4064 }
Christopher Faulet57583e42017-09-04 15:41:09 +02004065 /* if (alertif_too_many_args(1, file, linenum, args, &err_code)) */
4066 /* goto out; */
Christopher Fauletecc537a2017-02-23 22:52:39 +01004067
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004068 if (strcmp(args[1], spoe_event_str[SPOE_EV_ON_CLIENT_SESS]) == 0)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004069 curmsg->event = SPOE_EV_ON_CLIENT_SESS;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004070 else if (strcmp(args[1], spoe_event_str[SPOE_EV_ON_SERVER_SESS]) == 0)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004071 curmsg->event = SPOE_EV_ON_SERVER_SESS;
4072
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004073 else if (strcmp(args[1], spoe_event_str[SPOE_EV_ON_TCP_REQ_FE]) == 0)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004074 curmsg->event = SPOE_EV_ON_TCP_REQ_FE;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004075 else if (strcmp(args[1], spoe_event_str[SPOE_EV_ON_TCP_REQ_BE]) == 0)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004076 curmsg->event = SPOE_EV_ON_TCP_REQ_BE;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004077 else if (strcmp(args[1], spoe_event_str[SPOE_EV_ON_TCP_RSP]) == 0)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004078 curmsg->event = SPOE_EV_ON_TCP_RSP;
4079
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004080 else if (strcmp(args[1], spoe_event_str[SPOE_EV_ON_HTTP_REQ_FE]) == 0)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004081 curmsg->event = SPOE_EV_ON_HTTP_REQ_FE;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004082 else if (strcmp(args[1], spoe_event_str[SPOE_EV_ON_HTTP_REQ_BE]) == 0)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004083 curmsg->event = SPOE_EV_ON_HTTP_REQ_BE;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004084 else if (strcmp(args[1], spoe_event_str[SPOE_EV_ON_HTTP_RSP]) == 0)
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004085 curmsg->event = SPOE_EV_ON_HTTP_RSP;
4086 else {
Joseph Herlantf1da69d2018-11-15 13:49:02 -08004087 ha_alert("parsing [%s:%d] : unknown event '%s'.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01004088 file, linenum, args[1]);
Christopher Fauletecc537a2017-02-23 22:52:39 +01004089 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004090 goto out;
4091 }
Christopher Faulet57583e42017-09-04 15:41:09 +02004092
4093 if (strcmp(args[2], "if") == 0 || strcmp(args[2], "unless") == 0) {
4094 struct acl_cond *cond;
4095
4096 cond = build_acl_cond(file, linenum, &curmsg->acls,
4097 curproxy, (const char **)args+2,
4098 &errmsg);
4099 if (cond == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004100 ha_alert("parsing [%s:%d] : error detected while "
4101 "parsing an 'event %s' condition : %s.\n",
4102 file, linenum, args[1], errmsg);
Christopher Faulet57583e42017-09-04 15:41:09 +02004103 err_code |= ERR_ALERT | ERR_FATAL;
4104 goto out;
4105 }
4106 curmsg->cond = cond;
4107 }
4108 else if (*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004109 ha_alert("parsing [%s:%d]: 'event %s' expects either 'if' "
4110 "or 'unless' followed by a condition but found '%s'.\n",
4111 file, linenum, args[1], args[2]);
Christopher Faulet57583e42017-09-04 15:41:09 +02004112 err_code |= ERR_ALERT | ERR_FATAL;
4113 goto out;
4114 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004115 }
4116 else if (!*args[0]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004117 ha_alert("parsing [%s:%d] : unknown keyword '%s' in spoe-message section.\n",
4118 file, linenum, args[0]);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004119 err_code |= ERR_ALERT | ERR_FATAL;
4120 goto out;
4121 }
4122 out:
4123 free(errmsg);
4124 return err_code;
4125}
4126
4127/* Return -1 on error, else 0 */
4128static int
4129parse_spoe_flt(char **args, int *cur_arg, struct proxy *px,
4130 struct flt_conf *fconf, char **err, void *private)
4131{
4132 struct list backup_sections;
4133 struct spoe_config *conf;
4134 struct spoe_message *msg, *msgback;
Christopher Faulet11610f32017-09-21 10:23:10 +02004135 struct spoe_group *grp, *grpback;
4136 struct spoe_placeholder *ph, *phback;
Christopher Faulet336d3ef2017-12-22 10:00:55 +01004137 struct spoe_var_placeholder *vph, *vphback;
Christopher Faulet7250b8f2018-03-26 17:19:01 +02004138 struct logsrv *logsrv, *logsrvback;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004139 char *file = NULL, *engine = NULL;
4140 int ret, pos = *cur_arg + 1;
4141
Christopher Faulet84c844e2018-03-23 14:37:14 +01004142 LIST_INIT(&curmsgs);
4143 LIST_INIT(&curgrps);
4144 LIST_INIT(&curmphs);
4145 LIST_INIT(&curgphs);
4146 LIST_INIT(&curvars);
Christopher Faulet7250b8f2018-03-26 17:19:01 +02004147 LIST_INIT(&curlogsrvs);
Christopher Faulet0e0f0852018-03-26 17:20:36 +02004148 curpxopts = 0;
4149 curpxopts2 = 0;
Christopher Faulet84c844e2018-03-23 14:37:14 +01004150
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004151 conf = calloc(1, sizeof(*conf));
4152 if (conf == NULL) {
4153 memprintf(err, "%s: out of memory", args[*cur_arg]);
4154 goto error;
4155 }
4156 conf->proxy = px;
4157
4158 while (*args[pos]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004159 if (strcmp(args[pos], "config") == 0) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004160 if (!*args[pos+1]) {
4161 memprintf(err, "'%s' : '%s' option without value",
4162 args[*cur_arg], args[pos]);
4163 goto error;
4164 }
4165 file = args[pos+1];
4166 pos += 2;
4167 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004168 else if (strcmp(args[pos], "engine") == 0) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004169 if (!*args[pos+1]) {
4170 memprintf(err, "'%s' : '%s' option without value",
4171 args[*cur_arg], args[pos]);
4172 goto error;
4173 }
4174 engine = args[pos+1];
4175 pos += 2;
4176 }
4177 else {
4178 memprintf(err, "unknown keyword '%s'", args[pos]);
4179 goto error;
4180 }
4181 }
4182 if (file == NULL) {
4183 memprintf(err, "'%s' : missing config file", args[*cur_arg]);
4184 goto error;
4185 }
4186
4187 /* backup sections and register SPOE sections */
4188 LIST_INIT(&backup_sections);
4189 cfg_backup_sections(&backup_sections);
Christopher Faulet11610f32017-09-21 10:23:10 +02004190 cfg_register_section("spoe-agent", cfg_parse_spoe_agent, NULL);
4191 cfg_register_section("spoe-group", cfg_parse_spoe_group, NULL);
William Lallemandd2ff56d2017-10-16 11:06:50 +02004192 cfg_register_section("spoe-message", cfg_parse_spoe_message, NULL);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004193
4194 /* Parse SPOE filter configuration file */
4195 curengine = engine;
4196 curproxy = px;
4197 curagent = NULL;
4198 curmsg = NULL;
4199 ret = readcfgfile(file);
4200 curproxy = NULL;
4201
4202 /* unregister SPOE sections and restore previous sections */
4203 cfg_unregister_sections();
4204 cfg_restore_sections(&backup_sections);
4205
4206 if (ret == -1) {
4207 memprintf(err, "Could not open configuration file %s : %s",
4208 file, strerror(errno));
4209 goto error;
4210 }
4211 if (ret & (ERR_ABORT|ERR_FATAL)) {
4212 memprintf(err, "Error(s) found in configuration file %s", file);
4213 goto error;
4214 }
4215
4216 /* Check SPOE agent */
4217 if (curagent == NULL) {
4218 memprintf(err, "No SPOE agent found in file %s", file);
4219 goto error;
4220 }
4221 if (curagent->b.name == NULL) {
4222 memprintf(err, "No backend declared for SPOE agent '%s' declared at %s:%d",
4223 curagent->id, curagent->conf.file, curagent->conf.line);
4224 goto error;
4225 }
Christopher Fauletf7a30922016-11-10 15:04:51 +01004226 if (curagent->timeout.hello == TICK_ETERNITY ||
4227 curagent->timeout.idle == TICK_ETERNITY ||
Christopher Fauletf7a30922016-11-10 15:04:51 +01004228 curagent->timeout.processing == TICK_ETERNITY) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004229 ha_warning("Proxy '%s': missing timeouts for SPOE agent '%s' declare at %s:%d.\n"
4230 " | While not properly invalid, you will certainly encounter various problems\n"
4231 " | with such a configuration. To fix this, please ensure that all following\n"
4232 " | timeouts are set to a non-zero value: 'hello', 'idle', 'processing'.\n",
4233 px->id, curagent->id, curagent->conf.file, curagent->conf.line);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004234 }
4235 if (curagent->var_pfx == NULL) {
4236 char *tmp = curagent->id;
4237
4238 while (*tmp) {
Willy Tarreau90807112020-02-25 08:16:33 +01004239 if (!isalnum((unsigned char)*tmp) && *tmp != '_' && *tmp != '.') {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004240 memprintf(err, "Invalid variable prefix '%s' for SPOE agent '%s' declared at %s:%d. "
4241 "Use 'option var-prefix' to set it. Only [a-zA-Z0-9_.] chars are supported.\n",
4242 curagent->id, curagent->id, curagent->conf.file, curagent->conf.line);
4243 goto error;
4244 }
4245 tmp++;
4246 }
4247 curagent->var_pfx = strdup(curagent->id);
4248 }
4249
Christopher Fauletb7426d12018-03-21 14:12:17 +01004250 if (curagent->var_on_error) {
4251 struct arg arg;
4252
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004253 trash.data = snprintf(trash.area, trash.size, "txn.%s.%s",
Christopher Fauletb7426d12018-03-21 14:12:17 +01004254 curagent->var_pfx, curagent->var_on_error);
4255
4256 arg.type = ARGT_STR;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004257 arg.data.str.area = trash.area;
4258 arg.data.str.data = trash.data;
William Dauchyafb93682021-01-05 11:14:58 +01004259 arg.data.str.size = 0; /* Set it to 0 to not release it in vars_check_arg() */
Christopher Fauletb7426d12018-03-21 14:12:17 +01004260 if (!vars_check_arg(&arg, err)) {
4261 memprintf(err, "SPOE agent '%s': failed to register variable %s.%s (%s)",
4262 curagent->id, curagent->var_pfx, curagent->var_on_error, *err);
4263 goto error;
4264 }
4265 }
4266
Christopher Faulet36bda1c2018-03-22 09:08:20 +01004267 if (curagent->var_t_process) {
4268 struct arg arg;
4269
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004270 trash.data = snprintf(trash.area, trash.size, "txn.%s.%s",
Christopher Faulet36bda1c2018-03-22 09:08:20 +01004271 curagent->var_pfx, curagent->var_t_process);
4272
4273 arg.type = ARGT_STR;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004274 arg.data.str.area = trash.area;
4275 arg.data.str.data = trash.data;
William Dauchyafb93682021-01-05 11:14:58 +01004276 arg.data.str.size = 0; /* Set it to 0 to not release it in vars_check_arg() */
Christopher Faulet36bda1c2018-03-22 09:08:20 +01004277 if (!vars_check_arg(&arg, err)) {
4278 memprintf(err, "SPOE agent '%s': failed to register variable %s.%s (%s)",
4279 curagent->id, curagent->var_pfx, curagent->var_t_process, *err);
4280 goto error;
4281 }
4282 }
4283
4284 if (curagent->var_t_total) {
4285 struct arg arg;
4286
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004287 trash.data = snprintf(trash.area, trash.size, "txn.%s.%s",
Christopher Faulet36bda1c2018-03-22 09:08:20 +01004288 curagent->var_pfx, curagent->var_t_total);
4289
4290 arg.type = ARGT_STR;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004291 arg.data.str.area = trash.area;
4292 arg.data.str.data = trash.data;
William Dauchyafb93682021-01-05 11:14:58 +01004293 arg.data.str.size = 0; /* Set it to 0 to not release it in vars_check_arg() */
Christopher Faulet36bda1c2018-03-22 09:08:20 +01004294 if (!vars_check_arg(&arg, err)) {
4295 memprintf(err, "SPOE agent '%s': failed to register variable %s.%s (%s)",
4296 curagent->id, curagent->var_pfx, curagent->var_t_process, *err);
4297 goto error;
4298 }
4299 }
4300
Christopher Faulet11610f32017-09-21 10:23:10 +02004301 if (LIST_ISEMPTY(&curmphs) && LIST_ISEMPTY(&curgphs)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004302 ha_warning("Proxy '%s': No message/group used by SPOE agent '%s' declared at %s:%d.\n",
4303 px->id, curagent->id, curagent->conf.file, curagent->conf.line);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004304 goto finish;
4305 }
4306
Christopher Faulet11610f32017-09-21 10:23:10 +02004307 /* Replace placeholders by the corresponding messages for the SPOE
4308 * agent */
4309 list_for_each_entry(ph, &curmphs, list) {
4310 list_for_each_entry(msg, &curmsgs, list) {
Christopher Fauleta21b0642017-01-09 16:56:23 +01004311 struct spoe_arg *arg;
4312 unsigned int where;
4313
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004314 if (strcmp(msg->id, ph->id) == 0) {
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004315 if ((px->cap & (PR_CAP_FE|PR_CAP_BE)) == (PR_CAP_FE|PR_CAP_BE)) {
4316 if (msg->event == SPOE_EV_ON_TCP_REQ_BE)
4317 msg->event = SPOE_EV_ON_TCP_REQ_FE;
4318 if (msg->event == SPOE_EV_ON_HTTP_REQ_BE)
4319 msg->event = SPOE_EV_ON_HTTP_REQ_FE;
4320 }
4321 if (!(px->cap & PR_CAP_FE) && (msg->event == SPOE_EV_ON_CLIENT_SESS ||
4322 msg->event == SPOE_EV_ON_TCP_REQ_FE ||
4323 msg->event == SPOE_EV_ON_HTTP_REQ_FE)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004324 ha_warning("Proxy '%s': frontend event used on a backend proxy at %s:%d.\n",
4325 px->id, msg->conf.file, msg->conf.line);
Christopher Faulet11610f32017-09-21 10:23:10 +02004326 goto next_mph;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004327 }
4328 if (msg->event == SPOE_EV_NONE) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004329 ha_warning("Proxy '%s': Ignore SPOE message '%s' without event at %s:%d.\n",
4330 px->id, msg->id, msg->conf.file, msg->conf.line);
Christopher Faulet11610f32017-09-21 10:23:10 +02004331 goto next_mph;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004332 }
Christopher Fauleta21b0642017-01-09 16:56:23 +01004333
4334 where = 0;
4335 switch (msg->event) {
4336 case SPOE_EV_ON_CLIENT_SESS:
4337 where |= SMP_VAL_FE_CON_ACC;
4338 break;
4339
4340 case SPOE_EV_ON_TCP_REQ_FE:
4341 where |= SMP_VAL_FE_REQ_CNT;
4342 break;
4343
4344 case SPOE_EV_ON_HTTP_REQ_FE:
4345 where |= SMP_VAL_FE_HRQ_HDR;
4346 break;
4347
4348 case SPOE_EV_ON_TCP_REQ_BE:
4349 if (px->cap & PR_CAP_FE)
4350 where |= SMP_VAL_FE_REQ_CNT;
4351 if (px->cap & PR_CAP_BE)
4352 where |= SMP_VAL_BE_REQ_CNT;
4353 break;
4354
4355 case SPOE_EV_ON_HTTP_REQ_BE:
4356 if (px->cap & PR_CAP_FE)
4357 where |= SMP_VAL_FE_HRQ_HDR;
4358 if (px->cap & PR_CAP_BE)
4359 where |= SMP_VAL_BE_HRQ_HDR;
4360 break;
4361
4362 case SPOE_EV_ON_SERVER_SESS:
4363 where |= SMP_VAL_BE_SRV_CON;
4364 break;
4365
4366 case SPOE_EV_ON_TCP_RSP:
4367 if (px->cap & PR_CAP_FE)
4368 where |= SMP_VAL_FE_RES_CNT;
4369 if (px->cap & PR_CAP_BE)
4370 where |= SMP_VAL_BE_RES_CNT;
4371 break;
4372
4373 case SPOE_EV_ON_HTTP_RSP:
4374 if (px->cap & PR_CAP_FE)
4375 where |= SMP_VAL_FE_HRS_HDR;
4376 if (px->cap & PR_CAP_BE)
4377 where |= SMP_VAL_BE_HRS_HDR;
4378 break;
4379
4380 default:
4381 break;
4382 }
4383
4384 list_for_each_entry(arg, &msg->args, list) {
4385 if (!(arg->expr->fetch->val & where)) {
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004386 memprintf(err, "Ignore SPOE message '%s' at %s:%d: "
Christopher Fauleta21b0642017-01-09 16:56:23 +01004387 "some args extract information from '%s', "
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004388 "none of which is available here ('%s')",
4389 msg->id, msg->conf.file, msg->conf.line,
Christopher Fauleta21b0642017-01-09 16:56:23 +01004390 sample_ckp_names(arg->expr->fetch->use),
4391 sample_ckp_names(where));
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004392 goto error;
Christopher Fauleta21b0642017-01-09 16:56:23 +01004393 }
4394 }
4395
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004396 msg->agent = curagent;
Willy Tarreau2b718102021-04-21 07:32:39 +02004397 LIST_APPEND(&curagent->events[msg->event], &msg->by_evt);
Christopher Faulet11610f32017-09-21 10:23:10 +02004398 goto next_mph;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004399 }
4400 }
4401 memprintf(err, "SPOE agent '%s' try to use undefined SPOE message '%s' at %s:%d",
Christopher Faulet11610f32017-09-21 10:23:10 +02004402 curagent->id, ph->id, curagent->conf.file, curagent->conf.line);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004403 goto error;
Christopher Faulet11610f32017-09-21 10:23:10 +02004404 next_mph:
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004405 continue;
4406 }
4407
Christopher Faulet11610f32017-09-21 10:23:10 +02004408 /* Replace placeholders by the corresponding groups for the SPOE
4409 * agent */
4410 list_for_each_entry(ph, &curgphs, list) {
4411 list_for_each_entry_safe(grp, grpback, &curgrps, list) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004412 if (strcmp(grp->id, ph->id) == 0) {
Christopher Faulet11610f32017-09-21 10:23:10 +02004413 grp->agent = curagent;
Willy Tarreau2b718102021-04-21 07:32:39 +02004414 LIST_DELETE(&grp->list);
4415 LIST_APPEND(&curagent->groups, &grp->list);
Christopher Faulet11610f32017-09-21 10:23:10 +02004416 goto next_aph;
4417 }
4418 }
4419 memprintf(err, "SPOE agent '%s' try to use undefined SPOE group '%s' at %s:%d",
4420 curagent->id, ph->id, curagent->conf.file, curagent->conf.line);
4421 goto error;
4422 next_aph:
4423 continue;
4424 }
4425
4426 /* Replace placeholders by the corresponding message for each SPOE
4427 * group of the SPOE agent */
4428 list_for_each_entry(grp, &curagent->groups, list) {
4429 list_for_each_entry_safe(ph, phback, &grp->phs, list) {
4430 list_for_each_entry(msg, &curmsgs, list) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004431 if (strcmp(msg->id, ph->id) == 0) {
Christopher Faulet11610f32017-09-21 10:23:10 +02004432 if (msg->group != NULL) {
4433 memprintf(err, "SPOE message '%s' already belongs to "
4434 "the SPOE group '%s' declare at %s:%d",
4435 msg->id, msg->group->id,
4436 msg->group->conf.file,
4437 msg->group->conf.line);
4438 goto error;
4439 }
4440
4441 /* Scope for arguments are not checked for now. We will check
4442 * them only if a rule use the corresponding SPOE group. */
4443 msg->agent = curagent;
4444 msg->group = grp;
Willy Tarreau2b718102021-04-21 07:32:39 +02004445 LIST_DELETE(&ph->list);
4446 LIST_APPEND(&grp->messages, &msg->by_grp);
Christopher Faulet11610f32017-09-21 10:23:10 +02004447 goto next_mph_grp;
4448 }
4449 }
4450 memprintf(err, "SPOE group '%s' try to use undefined SPOE message '%s' at %s:%d",
4451 grp->id, ph->id, curagent->conf.file, curagent->conf.line);
4452 goto error;
4453 next_mph_grp:
4454 continue;
4455 }
4456 }
4457
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004458 finish:
Christopher Faulet11610f32017-09-21 10:23:10 +02004459 /* move curmsgs to the agent message list */
4460 curmsgs.n->p = &curagent->messages;
4461 curmsgs.p->n = &curagent->messages;
4462 curagent->messages = curmsgs;
4463 LIST_INIT(&curmsgs);
4464
Christopher Faulet7ee86672017-09-19 11:08:28 +02004465 conf->id = strdup(engine ? engine : curagent->id);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004466 conf->agent = curagent;
Christopher Faulet541e2612021-08-02 17:51:01 +02004467 curagent->spoe_conf = conf;
Christopher Faulet7250b8f2018-03-26 17:19:01 +02004468
4469 /* Start agent's proxy initialization here. It will be finished during
4470 * the filter init. */
4471 memset(&conf->agent_fe, 0, sizeof(conf->agent_fe));
4472 init_new_proxy(&conf->agent_fe);
4473 conf->agent_fe.id = conf->agent->id;
4474 conf->agent_fe.parent = conf->agent;
Christopher Faulet0e0f0852018-03-26 17:20:36 +02004475 conf->agent_fe.options |= curpxopts;
4476 conf->agent_fe.options2 |= curpxopts2;
Christopher Faulet7250b8f2018-03-26 17:19:01 +02004477
4478 list_for_each_entry_safe(logsrv, logsrvback, &curlogsrvs, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004479 LIST_DELETE(&logsrv->list);
4480 LIST_APPEND(&conf->agent_fe.logsrvs, &logsrv->list);
Christopher Faulet7250b8f2018-03-26 17:19:01 +02004481 }
4482
Christopher Faulet11610f32017-09-21 10:23:10 +02004483 list_for_each_entry_safe(ph, phback, &curmphs, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004484 LIST_DELETE(&ph->list);
Christopher Faulet11610f32017-09-21 10:23:10 +02004485 spoe_release_placeholder(ph);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004486 }
Christopher Faulet11610f32017-09-21 10:23:10 +02004487 list_for_each_entry_safe(ph, phback, &curgphs, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004488 LIST_DELETE(&ph->list);
Christopher Faulet11610f32017-09-21 10:23:10 +02004489 spoe_release_placeholder(ph);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004490 }
Christopher Faulet336d3ef2017-12-22 10:00:55 +01004491 list_for_each_entry_safe(vph, vphback, &curvars, list) {
4492 struct arg arg;
4493
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004494 trash.data = snprintf(trash.area, trash.size, "proc.%s.%s",
Christopher Faulet336d3ef2017-12-22 10:00:55 +01004495 curagent->var_pfx, vph->name);
4496
4497 arg.type = ARGT_STR;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004498 arg.data.str.area = trash.area;
4499 arg.data.str.data = trash.data;
William Dauchyafb93682021-01-05 11:14:58 +01004500 arg.data.str.size = 0; /* Set it to 0 to not release it in vars_check_arg() */
Christopher Faulet336d3ef2017-12-22 10:00:55 +01004501 if (!vars_check_arg(&arg, err)) {
4502 memprintf(err, "SPOE agent '%s': failed to register variable %s.%s (%s)",
4503 curagent->id, curagent->var_pfx, vph->name, *err);
4504 goto error;
4505 }
4506
Willy Tarreau2b718102021-04-21 07:32:39 +02004507 LIST_DELETE(&vph->list);
Christopher Faulet336d3ef2017-12-22 10:00:55 +01004508 free(vph->name);
4509 free(vph);
4510 }
Christopher Faulet11610f32017-09-21 10:23:10 +02004511 list_for_each_entry_safe(grp, grpback, &curgrps, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004512 LIST_DELETE(&grp->list);
Christopher Faulet11610f32017-09-21 10:23:10 +02004513 spoe_release_group(grp);
4514 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004515 *cur_arg = pos;
Christopher Faulet3b386a32017-02-23 10:17:15 +01004516 fconf->id = spoe_filter_id;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004517 fconf->ops = &spoe_ops;
4518 fconf->conf = conf;
4519 return 0;
4520
4521 error:
Christopher Faulet8ef75252017-02-20 22:56:03 +01004522 spoe_release_agent(curagent);
Christopher Faulet11610f32017-09-21 10:23:10 +02004523 list_for_each_entry_safe(ph, phback, &curmphs, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004524 LIST_DELETE(&ph->list);
Christopher Faulet11610f32017-09-21 10:23:10 +02004525 spoe_release_placeholder(ph);
4526 }
4527 list_for_each_entry_safe(ph, phback, &curgphs, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004528 LIST_DELETE(&ph->list);
Christopher Faulet11610f32017-09-21 10:23:10 +02004529 spoe_release_placeholder(ph);
4530 }
Christopher Faulet336d3ef2017-12-22 10:00:55 +01004531 list_for_each_entry_safe(vph, vphback, &curvars, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004532 LIST_DELETE(&vph->list);
Christopher Faulet336d3ef2017-12-22 10:00:55 +01004533 free(vph->name);
4534 free(vph);
4535 }
Christopher Faulet11610f32017-09-21 10:23:10 +02004536 list_for_each_entry_safe(grp, grpback, &curgrps, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004537 LIST_DELETE(&grp->list);
Christopher Faulet11610f32017-09-21 10:23:10 +02004538 spoe_release_group(grp);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004539 }
4540 list_for_each_entry_safe(msg, msgback, &curmsgs, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004541 LIST_DELETE(&msg->list);
Christopher Faulet8ef75252017-02-20 22:56:03 +01004542 spoe_release_message(msg);
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004543 }
Christopher Faulet7250b8f2018-03-26 17:19:01 +02004544 list_for_each_entry_safe(logsrv, logsrvback, &curlogsrvs, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004545 LIST_DELETE(&logsrv->list);
Christopher Faulet7250b8f2018-03-26 17:19:01 +02004546 free(logsrv);
4547 }
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004548 free(conf);
4549 return -1;
4550}
4551
Christopher Faulet344c4ab2017-09-22 10:20:13 +02004552/* Send message of a SPOE group. This is the action_ptr callback of a rule
4553 * associated to a "send-spoe-group" action.
4554 *
Christopher Faulet13403762019-12-13 09:01:57 +01004555 * It returns ACT_RET_CONT if processing is finished (with error or not), it returns
4556 * ACT_RET_YIELD if the action is in progress. */
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004557static enum act_return
4558spoe_send_group(struct act_rule *rule, struct proxy *px,
4559 struct session *sess, struct stream *s, int flags)
4560{
4561 struct filter *filter;
4562 struct spoe_agent *agent = NULL;
4563 struct spoe_group *group = NULL;
4564 struct spoe_context *ctx = NULL;
4565 int ret, dir;
4566
4567 list_for_each_entry(filter, &s->strm_flt.filters, list) {
4568 if (filter->config == rule->arg.act.p[0]) {
4569 agent = rule->arg.act.p[2];
4570 group = rule->arg.act.p[3];
4571 ctx = filter->ctx;
4572 break;
4573 }
4574 }
4575 if (agent == NULL || group == NULL || ctx == NULL)
Christopher Faulet13403762019-12-13 09:01:57 +01004576 return ACT_RET_CONT;
Christopher Faulet344c4ab2017-09-22 10:20:13 +02004577 if (ctx->state == SPOE_CTX_ST_NONE)
4578 return ACT_RET_CONT;
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004579
Christopher Faulet344c4ab2017-09-22 10:20:13 +02004580 switch (rule->from) {
4581 case ACT_F_TCP_REQ_SES: dir = SMP_OPT_DIR_REQ; break;
4582 case ACT_F_TCP_REQ_CNT: dir = SMP_OPT_DIR_REQ; break;
4583 case ACT_F_TCP_RES_CNT: dir = SMP_OPT_DIR_RES; break;
4584 case ACT_F_HTTP_REQ: dir = SMP_OPT_DIR_REQ; break;
4585 case ACT_F_HTTP_RES: dir = SMP_OPT_DIR_RES; break;
4586 default:
4587 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
4588 " - internal error while execute spoe-send-group\n",
4589 (int)now.tv_sec, (int)now.tv_usec, agent->id,
4590 __FUNCTION__, s);
4591 send_log(px, LOG_ERR, "SPOE: [%s] internal error while execute spoe-send-group\n",
4592 agent->id);
4593 return ACT_RET_CONT;
4594 }
4595
4596 ret = spoe_process_group(s, ctx, group, dir);
4597 if (ret == 1)
4598 return ACT_RET_CONT;
4599 else if (ret == 0) {
Christopher Faulet105ba6c2019-12-18 14:41:51 +01004600 if (flags & ACT_OPT_FINAL) {
Christopher Faulet344c4ab2017-09-22 10:20:13 +02004601 SPOE_PRINTF(stderr, "%d.%06d [SPOE/%-15s] %s: stream=%p"
4602 " - failed to process group '%s': interrupted by caller\n",
4603 (int)now.tv_sec, (int)now.tv_usec,
4604 agent->id, __FUNCTION__, s, group->id);
4605 ctx->status_code = SPOE_CTX_ERR_INTERRUPT;
Christopher Faulet6f9ea4f2018-01-24 16:13:48 +01004606 spoe_stop_processing(agent, ctx);
Christopher Fauletcaf2fec2018-04-04 10:25:50 +02004607 spoe_handle_processing_error(s, agent, ctx, dir);
Christopher Faulet344c4ab2017-09-22 10:20:13 +02004608 return ACT_RET_CONT;
4609 }
4610 return ACT_RET_YIELD;
4611 }
4612 else
Christopher Faulet13403762019-12-13 09:01:57 +01004613 return ACT_RET_CONT;
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004614}
4615
4616/* Check an "send-spoe-group" action. Here, we'll try to find the real SPOE
4617 * group associated to <rule>. The format of an rule using 'send-spoe-group'
4618 * action should be:
4619 *
4620 * (http|tcp)-(request|response) send-spoe-group <engine-id> <group-id>
4621 *
4622 * So, we'll loop on each configured SPOE filter for the proxy <px> to find the
4623 * SPOE engine matching <engine-id>. And then, we'll try to find the good group
4624 * matching <group-id>. Finally, we'll check all messages referenced by the SPOE
4625 * group.
4626 *
4627 * The function returns 1 in success case, otherwise, it returns 0 and err is
4628 * filled.
4629 */
4630static int
4631check_send_spoe_group(struct act_rule *rule, struct proxy *px, char **err)
4632{
4633 struct flt_conf *fconf;
4634 struct spoe_config *conf;
4635 struct spoe_agent *agent = NULL;
4636 struct spoe_group *group;
4637 struct spoe_message *msg;
4638 char *engine_id = rule->arg.act.p[0];
4639 char *group_id = rule->arg.act.p[1];
4640 unsigned int where = 0;
4641
4642 switch (rule->from) {
4643 case ACT_F_TCP_REQ_SES: where = SMP_VAL_FE_SES_ACC; break;
4644 case ACT_F_TCP_REQ_CNT: where = SMP_VAL_FE_REQ_CNT; break;
4645 case ACT_F_TCP_RES_CNT: where = SMP_VAL_BE_RES_CNT; break;
4646 case ACT_F_HTTP_REQ: where = SMP_VAL_FE_HRQ_HDR; break;
4647 case ACT_F_HTTP_RES: where = SMP_VAL_BE_HRS_HDR; break;
4648 default:
4649 memprintf(err,
4650 "internal error, unexpected rule->from=%d, please report this bug!",
4651 rule->from);
4652 goto error;
4653 }
4654
4655 /* Try to find the SPOE engine by checking all SPOE filters for proxy
4656 * <px> */
4657 list_for_each_entry(fconf, &px->filter_configs, list) {
4658 conf = fconf->conf;
4659
4660 /* This is not an SPOE filter */
4661 if (fconf->id != spoe_filter_id)
4662 continue;
4663
4664 /* This is the good engine */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004665 if (strcmp(conf->id, engine_id) == 0) {
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004666 agent = conf->agent;
4667 break;
4668 }
4669 }
4670 if (agent == NULL) {
4671 memprintf(err, "unable to find SPOE engine '%s' used by the send-spoe-group '%s'",
4672 engine_id, group_id);
4673 goto error;
4674 }
4675
4676 /* Try to find the right group */
4677 list_for_each_entry(group, &agent->groups, list) {
4678 /* This is the good group */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004679 if (strcmp(group->id, group_id) == 0)
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004680 break;
4681 }
4682 if (&group->list == &agent->groups) {
4683 memprintf(err, "unable to find SPOE group '%s' into SPOE engine '%s' configuration",
4684 group_id, engine_id);
4685 goto error;
4686 }
4687
4688 /* Ok, we found the group, we need to check messages and their
4689 * arguments */
4690 list_for_each_entry(msg, &group->messages, by_grp) {
4691 struct spoe_arg *arg;
4692
4693 list_for_each_entry(arg, &msg->args, list) {
4694 if (!(arg->expr->fetch->val & where)) {
4695 memprintf(err, "Invalid SPOE message '%s' used by SPOE group '%s' at %s:%d: "
4696 "some args extract information from '%s',"
4697 "none of which is available here ('%s')",
4698 msg->id, group->id, msg->conf.file, msg->conf.line,
4699 sample_ckp_names(arg->expr->fetch->use),
4700 sample_ckp_names(where));
4701 goto error;
4702 }
4703 }
4704 }
4705
4706 free(engine_id);
4707 free(group_id);
4708 rule->arg.act.p[0] = fconf; /* Associate filter config with the rule */
4709 rule->arg.act.p[1] = conf; /* Associate SPOE config with the rule */
4710 rule->arg.act.p[2] = agent; /* Associate SPOE agent with the rule */
4711 rule->arg.act.p[3] = group; /* Associate SPOE group with the rule */
4712 return 1;
4713
4714 error:
4715 free(engine_id);
4716 free(group_id);
4717 return 0;
4718}
4719
4720/* Parse 'send-spoe-group' action following the format:
4721 *
4722 * ... send-spoe-group <engine-id> <group-id>
4723 *
4724 * It returns ACT_RET_PRS_ERR if fails and <err> is filled with an error
4725 * message. Otherwise, it returns ACT_RET_PRS_OK and parsing engine and group
4726 * ids are saved and used later, when the rule will be checked.
4727 */
4728static enum act_parse_ret
4729parse_send_spoe_group(const char **args, int *orig_arg, struct proxy *px,
4730 struct act_rule *rule, char **err)
4731{
4732 if (!*args[*orig_arg] || !*args[*orig_arg+1] ||
4733 (*args[*orig_arg+2] && strcmp(args[*orig_arg+2], "if") != 0 && strcmp(args[*orig_arg+2], "unless") != 0)) {
4734 memprintf(err, "expects 2 arguments: <engine-id> <group-id>");
4735 return ACT_RET_PRS_ERR;
4736 }
4737 rule->arg.act.p[0] = strdup(args[*orig_arg]); /* Copy the SPOE engine id */
4738 rule->arg.act.p[1] = strdup(args[*orig_arg+1]); /* Cope the SPOE group id */
4739
4740 (*orig_arg) += 2;
4741
4742 rule->action = ACT_CUSTOM;
4743 rule->action_ptr = spoe_send_group;
4744 rule->check_ptr = check_send_spoe_group;
4745 return ACT_RET_PRS_OK;
4746}
4747
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02004748
4749/* Declare the filter parser for "spoe" keyword */
4750static struct flt_kw_list flt_kws = { "SPOE", { }, {
4751 { "spoe", parse_spoe_flt, NULL },
4752 { NULL, NULL, NULL },
4753 }
4754};
4755
Willy Tarreau0108d902018-11-25 19:14:37 +01004756INITCALL1(STG_REGISTER, flt_register_keywords, &flt_kws);
4757
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004758/* Delcate the action parser for "spoe-action" keyword */
4759static struct action_kw_list tcp_req_action_kws = { { }, {
4760 { "send-spoe-group", parse_send_spoe_group },
4761 { /* END */ },
4762 }
4763};
Willy Tarreau0108d902018-11-25 19:14:37 +01004764
4765INITCALL1(STG_REGISTER, tcp_req_cont_keywords_register, &tcp_req_action_kws);
4766
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004767static struct action_kw_list tcp_res_action_kws = { { }, {
4768 { "send-spoe-group", parse_send_spoe_group },
4769 { /* END */ },
4770 }
4771};
Willy Tarreau0108d902018-11-25 19:14:37 +01004772
4773INITCALL1(STG_REGISTER, tcp_res_cont_keywords_register, &tcp_res_action_kws);
4774
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004775static struct action_kw_list http_req_action_kws = { { }, {
4776 { "send-spoe-group", parse_send_spoe_group },
4777 { /* END */ },
4778 }
4779};
Willy Tarreau0108d902018-11-25 19:14:37 +01004780
4781INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_action_kws);
4782
Christopher Faulet76c09ef2017-09-21 11:03:52 +02004783static struct action_kw_list http_res_action_kws = { { }, {
4784 { "send-spoe-group", parse_send_spoe_group },
4785 { /* END */ },
4786 }
4787};
4788
Willy Tarreau0108d902018-11-25 19:14:37 +01004789INITCALL1(STG_REGISTER, http_res_keywords_register, &http_res_action_kws);